/*--- FLEX CONTAINERS ---*/
/* content center */
/* Fit the image on its Container */
/* TRANSITIONS */
@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  animation-name: shake;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -30%, 0);
    transform: translate3d(0, -30%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -30%, 0);
    transform: translate3d(0, -30%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@font-face {
  font-family: "proxima-nova";
  src: url("/assets/fonts/proxima-nova-regular.woff2") format("woff2"), url("/assets/fonts/proxima-nova-regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "proxima-nova";
  src: url("/assets/fonts/proxima-nova-semi-bold.woff2") format("woff2"), url("/assets/fonts/proxima-nova-semi-bold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "proxima-nova";
  src: url("/assets/fonts/proxima-nova-bold.woff2") format("woff2"), url("/assets/fonts/proxima-nova-bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "proxima-nova";
  src: url("/assets/fonts/proxima-nova-extrabold.woff2") format("woff2"), url("/assets/fonts/proxima-nova-extrabold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "proxima-nova";
  src: url("/assets/fonts/proxima-nova-black.woff2") format("woff2"), url("/assets/fonts/proxima-nova-black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-family: "proxima-nova", sans-serif;
  min-height: 100vh;
  scroll-behavior: smooth;
  line-height: 1.5;
  overflow-x: hidden;
  font-size: 18px;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  body {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 17px;
  }
}
@media only screen and (max-width: 479px) {
  body {
    font-size: 16px;
  }
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  /* Required companion to max-width: images carry width/height attributes to
     reserve layout space, and without this a capped width leaves the intrinsic
     height in place and distorts them. */
  height: auto;
  display: block;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
::-webkit-scrollbar {
  background-color: #000;
  width: 5px;
}

::-webkit-scrollbar-thumb {
  background-color: #ffffff;
  border: 0.28em solid #232b2b;
  border-radius: 1em;
}

svg:not(:root) {
  overflow: hidden;
}

/* Sent to assistive tech only, e.g. the visually-hidden name on the gallery region */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.main-wrapper {
  position: relative;
  min-height: 100vh;
}

.main-wrapper,
.mr-sec-header,
.main-footer {
  background-color: #171717;
}

.global-bg-black {
  background-color: #000;
}
.global-bg-black .mr-sec-header {
  background-color: #000;
}
.global-bg-black .main-footer {
  background-color: #000;
}

h1 {
  font-size: 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
@media only screen and (max-width: 1024px) {
  h1 {
    font-size: 2.3rem;
  }
}
@media only screen and (max-width: 767px) {
  h1 {
    font-size: 2rem !important;
  }
}

.headline-one {
  font-size: 2.5rem;
  text-transform: capitalize;
}

p {
  padding-bottom: 1rem;
  line-height: 1.8em;
}

.mr-elem-content.text-left {
  text-align: left;
}
.mr-elem-content.text-center {
  text-align: center;
}
.mr-elem-content.text-right {
  text-align: right;
}
.mr-elem-content .text-left {
  text-align: left;
}
.mr-elem-content.image-center {
  margin: 0 auto;
}
.mr-elem-content.image-right {
  margin: 0 0 0 auto;
}
.mr-elem-content.text-white {
  color: #ffffff;
}
.mr-elem-content.text-black {
  color: #000;
}
.mr-elem-content.column-count {
  column-count: 2;
  column-gap: 2rem;
}
@media only screen and (max-width: 767px) {
  .mr-elem-content.column-count {
    column-count: 1;
    column-gap: 0;
  }
}

.bg-color-black {
  background-color: #000;
}

.bg-color-black-light {
  background-color: #171717;
}

.bg-color-white {
  background-color: #ffffff;
}

.grey-text h1, .grey-text h2, .grey-text p, .grey-text span {
  color: #dfdfdf;
}

.mr-section .mr-elem-content.middle-elements {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  flex-direction: column;
}

button {
  cursor: pointer;
}

.read-more {
  display: inline-block;
  padding: 4px 14px 6px 18px;
  font-weight: bold;
  letter-spacing: 0.5px;
  line-height: 1.5;
  cursor: pointer;
  color: #efefef;
  background: #2b2b2b;
  border-radius: 20px;
  border: 2px solid #444444;
}
.read-more svg {
  width: 16px;
  height: 16px;
  position: relative;
  top: 2px;
}

.btn-text-white {
  color: #ffffff;
}

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

.main-carousel {
  align-items: center;
  padding-bottom: 65px;
}
.main-carousel .swiper-slide {
  width: auto;
  height: auto;
}
.main-carousel img.carousel-image {
  height: 515px;
  width: auto;
  max-width: inherit;
}
@media only screen and (max-width: 980px) {
  .main-carousel img.carousel-image {
    height: 380px;
  }
}
@media only screen and (max-width: 767px) {
  .main-carousel img.carousel-image {
    height: 300px;
  }
}
@media only screen and (max-width: 479px) {
  .main-carousel img.carousel-image {
    height: 250px;
  }
}
@media only screen and (max-width: 390px) {
  .main-carousel img.carousel-image {
    height: 200px;
  }
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 0;
}
.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet {
  background: #ffffff;
  opacity: 0.25;
}
.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}
.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
  opacity: 1;
}

.swiper-button-prev,
.swiper-button-next {
  height: 44px;
  width: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  color: #000;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}
.swiper-button-prev .swiper-navigation-icon,
.swiper-button-next .swiper-navigation-icon {
  height: 16px;
  width: auto;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: #ffffff;
}
.swiper-button-prev:focus-visible,
.swiper-button-next:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.25;
}
@media only screen and (max-width: 767px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 33px;
    height: 33px;
  }
  .swiper-button-prev .swiper-navigation-icon,
  .swiper-button-next .swiper-navigation-icon {
    height: 13px;
  }
}

.section-hdr {
  font-size: 2.5rem;
  letter-spacing: 1px;
  text-transform: capitalize;
}
@media only screen and (max-width: 980px) {
  .section-hdr {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .section-hdr {
    font-size: 1.6rem;
  }
}

#site-content:focus {
  outline: none;
}

footer.main-footer {
  border-top: 2px solid #444444;
  padding: 10px 0;
}
footer.main-footer .mr-social-icons-menu {
  margin: 0 0 0 auto;
  display: flex;
  align-items: center;
}
footer.main-footer .mr-social-icons-menu a {
  display: flex;
  align-items: center;
}
footer.main-footer .mr-social-icons-menu svg {
  width: 1.3rem;
  height: 1.3rem;
  fill: currentColor;
}
footer.main-footer p {
  padding-bottom: 0;
  font-size: 14px;
  letter-spacing: 2px;
}

.main-content section.mr-section.mr-sec-banner {
  padding-top: 0;
}

.mr-section {
  padding: 4rem 0;
}
@media only screen and (max-width: 767px) {
  .mr-section {
    padding: 3rem 0;
  }
}
.mr-section.mr-default-banner {
  padding: 10rem 0 4rem;
}
.mr-section.mr-sec-banner {
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  -webkit-box-align: start;
  align-items: flex-start;
}
.mr-section.mr-sec-banner .mr-elem-content {
  margin-bottom: 20px;
}
.mr-section.mr-sec-banner .mr-elem-content.fullwidth-image {
  margin-bottom: 60px;
}

.mr-row, .mr-container {
  position: relative;
}
.mr-row::after, .mr-container::after {
  content: "";
  display: table;
  clear: both;
}
.mr-row, .mr-container {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mr-row {
  flex-direction: column;
  padding: 1.6rem 0;
}
@media only screen and (max-width: 980px) {
  .mr-row {
    padding: 1rem 0;
  }
}
.mr-row .mr-column {
  position: relative;
}
.mr-row .mr-elem-content {
  display: block;
  width: 100%;
  height: 100%;
}
.mr-row.row-fullwidth {
  width: 100% !important;
  max-width: 100% !important;
}
.mr-row.row-max-medium {
  max-width: 800px;
}

[class^=col-]:not(:last-child) {
  margin-right: 6rem !important;
}
@media only screen and (max-width: 980px) {
  [class^=col-]:not(:last-child) {
    margin-right: 0;
    margin-bottom: 6rem;
  }
}
@media only screen and (max-width: 980px) {
  [class^=col-] {
    width: 100% !important;
  }
}

.mr-row-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  flex-direction: row;
}
.mr-row-columns .col-1-of-2 {
  width: calc((100% - 6rem) / 2);
}
.mr-row-columns .col-1-of-3 {
  width: calc((100% - 2 * 6rem) / 3);
}
.mr-row-columns .col-2-of-3 {
  width: calc(2 * (100% - 2 * 6rem) / 3 + 6rem);
}
.mr-row-columns .col-1-of-4 {
  width: calc((100% - 3 * 6rem) / 4);
}
.mr-row-columns .col-2-of-4 {
  width: calc(2 * (100% - 3 * 6rem) / 4 + 6rem);
}
.mr-row-columns .col-3-of-4 {
  width: calc(3 * (100% - 3 * 6rem) / 4 + 2 * 6rem);
}

@media only screen and (max-width: 767px) {
  .row-two-cloumns {
    flex-direction: column;
  }
  .row-two-cloumns .col-1-of-2 {
    width: 100% !important;
  }
  .row-two-cloumns .col-1-of-2:not(:last-child) {
    padding: 0 0 20px !important;
  }
}

a.skip {
  position: absolute;
  top: -400px;
  left: 0;
  right: 0;
  font-size: 22px;
  z-index: 9999;
  margin: 0 auto;
  max-width: 320px;
  width: 100%;
  -webkit-transition: none;
  transition: none;
  background-color: #000;
  color: #ffffff;
  padding: 15px 15px;
  text-align: center;
}

a.skip:focus {
  top: 10vh;
}

.mr-sec-header {
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  display: block;
  z-index: 999;
}
.mr-sec-header .mr-desktop-nav .mr-header-menu {
  width: 100%;
}
.mr-sec-header .mr-container {
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
}
@media only screen and (max-width: 980px) {
  .mr-sec-header .mr-container {
    display: none;
  }
}
.mr-sec-header ul.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
@media only screen and (max-width: 980px) {
  .mr-sec-header ul.menu {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
.mr-sec-header ul.menu a {
  display: block;
  padding: 20px 45px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
  color: #ffffff;
}
.mr-sec-header .mr-section-primary {
  border-bottom: 1px solid #ffffff;
}
@media only screen and (max-width: 980px) {
  .mr-sec-header .mr-section-primary {
    border-bottom: none;
  }
}
.mr-sec-header .mr-header-language ul.menu li a {
  padding: 20px 40px 20px 0 !important;
}
@media only screen and (max-width: 980px) {
  .mr-sec-header .mr-header-language ul.menu li a {
    padding: 12px 40px 20px 0 !important;
  }
}
.mr-sec-header .mr-header-language ul.menu li:first-child {
  position: relative;
}
.mr-sec-header .mr-header-language ul.menu li:first-child::after {
  content: "";
  height: 17px;
  width: 2px;
  background-color: #ffffff;
  right: 20px;
  position: absolute;
  bottom: 23px;
}
.mr-sec-header .mr-primary-top {
  max-width: none;
  width: 97%;
}
.mr-sec-header .mr-primary-top__col {
  width: 34%;
}
.mr-sec-header .mr-primary-top__col.mr-text-logo a {
  display: block;
  padding: 20px 20px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
  color: #ffffff;
  font-weight: 800;
  text-align: center;
}
.mr-sec-header .mr-primary-top__col.mr-social-icons ul.menu {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.mr-sec-header .mr-primary-top__col.mr-social-icons ul.menu li a {
  padding: 0 !important;
  font-size: 1.3rem !important;
}
.mr-sec-header .mr-primary-top__col.mr-social-icons ul.menu li a svg {
  width: 1.3rem;
  height: 1.3rem;
  fill: currentColor;
}
.mr-sec-header .mr-primary-bottom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  opacity: 1;
}
.did-scroll .mr-sec-header .mr-primary-bottom {
  opacity: 0;
}

.mr-desktop-nav .mr-language-menu ul.menu {
  width: 200px;
}

#fabio-logo {
  position: absolute;
  color: #ffffff;
  padding: 10px 0;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 800;
}

.mr-mobile-nav {
  position: relative;
  display: none;
}
@media only screen and (max-width: 980px) {
  .mr-mobile-nav {
    display: block;
  }
}
.mr-mobile-nav .mr-row {
  padding: 1rem 0;
}
@media only screen and (max-width: 980px) {
  .mr-mobile-nav .mr-row {
    padding: 2rem 0;
  }
}
.mr-mobile-nav .nav-wrapper .mr-mobile-bar-toggle {
  position: relative;
  z-index: 1000000;
  display: block;
  text-align: right;
  cursor: pointer;
  color: #ffffff;
  margin: 2px 15px 0 auto;
  font-size: 35px;
  width: 30px;
  padding: 0;
  border: 0;
  background: none;
  appearance: none;
}
.mr-mobile-nav .nav-wrapper .mr-mobile-bar-toggle .menu-bar-icon {
  display: block;
  position: relative;
}
@media only screen and (max-width: 980px) {
  .menu-active .mr-mobile-nav .nav-wrapper .mr-mobile-bar-toggle .menu-bar-icon {
    position: fixed;
    right: 7%;
  }
}
@media only screen and (max-width: 479px) {
  .menu-active .mr-mobile-nav .nav-wrapper .mr-mobile-bar-toggle .menu-bar-icon {
    right: 8%;
  }
}
.mr-mobile-nav .nav-wrapper .mr-mobile-bar-toggle .menu-bar-icon img,
.mr-mobile-nav .nav-wrapper .mr-mobile-bar-toggle .menu-bar-icon svg {
  width: 30px;
  height: auto;
  display: block;
}
.mr-mobile-nav .nav-wrapper .mr-mobile-bar-toggle .menu-bar-icon .menu-icon-close {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  position: absolute;
  top: 0;
  right: 0;
}
.mr-mobile-nav .nav-wrapper .mr-mobile-bar-toggle .menu-bar-icon .menu-icon-open {
  opacity: 1;
  visibility: visible;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}
.menu-active .mr-mobile-nav .nav-wrapper .mr-mobile-bar-toggle .menu-bar-icon .menu-icon-close {
  opacity: 1;
  visibility: visible;
}
.menu-active .mr-mobile-nav .nav-wrapper .mr-mobile-bar-toggle .menu-bar-icon .menu-icon-open {
  opacity: 0;
  visibility: hidden;
}
.mr-mobile-nav .mr-header-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #000;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  visibility: hidden;
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
  z-index: 1;
  -webkit-transition: visibility 0s 600ms, -webkit-transform 300ms 300ms;
  transition: visibility 0s 600ms, -webkit-transform 300ms 300ms;
  transition: transform 300ms 300ms, visibility 0s 600ms;
  transition: transform 300ms 300ms, visibility 0s 600ms, -webkit-transform 300ms 300ms;
  height: 100%;
  width: 100%;
  z-index: 999999;
  padding: 5rem 1rem;
  overflow-y: auto;
}
.menu-active .mr-mobile-nav .mr-header-menu {
  visibility: visible;
  -webkit-transform: translate3d(0, -1px, 0);
  transform: translate3d(0, -1px, 0);
  -webkit-transition: visibility 0s, -webkit-transform 300ms;
  transition: visibility 0s, -webkit-transform 300ms;
  transition: transform 300ms, visibility 0s;
  transition: transform 300ms, visibility 0s, -webkit-transform 300ms;
}
.mr-mobile-nav .mr-header-menu ul.menu {
  flex-direction: column;
}
.mr-mobile-nav .mr-header-menu ul.menu li a {
  padding: 10px !important;
}
.mr-mobile-nav .mr-header-language ul.menu {
  flex-direction: row !important;
  padding: 30px 0;
}
.mr-mobile-nav .mr-header-language ul.menu li a {
  padding: 10px !important;
}
.mr-mobile-nav .mr-header-language ul.menu li:first-child {
  padding-right: 15px !important;
}
.mr-mobile-nav .mr-header-language ul.menu li:first-child::after {
  right: 7px;
  bottom: 12px;
}

#scroll-cta {
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  position: fixed;
  width: 100%;
  top: 0;
  bottom: auto;
  left: 0;
  right: 0;
  background: #000;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.16);
  z-index: 9999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
@media only screen and (max-width: 980px) {
  #scroll-cta {
    display: none;
  }
}
.no-object-fit #scroll-cta .scroll-cta-body {
  height: 66px;
}
#scroll-cta .nav-pages {
  margin-top: 4px;
}
.did-scroll #scroll-cta {
  opacity: 1;
  visibility: visible;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  pointer-events: auto;
}
.did-scroll-top #scroll-cta {
  opacity: 1;
  visibility: visible;
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.cta-in-view #scroll-cta {
  opacity: 1;
  visibility: visible;
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  pointer-events: none;
}

.mr-sec-hero {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  display: block;
  padding: 0;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .mr-sec-hero {
    padding: 30px 0 50px;
  }
}
.mr-sec-hero .fabio-large-img {
  position: relative;
}
.mr-sec-hero .fabio-large-img img {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .mr-sec-hero .fabio-large-img img {
    width: 450px;
    margin: 0 auto 25px;
  }
}
.mr-sec-hero .fabio-hero-content {
  max-width: 465px;
}
@media only screen and (max-width: 767px) {
  .mr-sec-hero .fabio-hero-content {
    margin: 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  .mr-sec-hero .fabio-hero-content h1 {
    text-align: center;
  }
}
.mr-sec-hero .inner-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  height: calc(100vh - 123px);
}
@media only screen and (max-width: 1024px) {
  .mr-sec-hero .inner-section {
    height: calc(80vh - 123px);
  }
}
@media only screen and (max-width: 980px) {
  .mr-sec-hero .inner-section {
    height: calc(70vh - 123px);
  }
}
@media only screen and (max-width: 767px) {
  .mr-sec-hero .inner-section {
    height: auto;
  }
}
.mr-sec-hero .mr-row-columns .col-1-of-2 {
  width: calc((100% - 0rem) / 2);
}
.mr-sec-hero .mr-row-columns .col-1-of-2:first-child {
  order: 2;
}
@media only screen and (max-width: 767px) {
  .mr-sec-hero .mr-row-columns .col-1-of-2:first-child {
    order: 1;
  }
}
.mr-sec-hero .mr-row-columns .col-1-of-2:last-child {
  order: 1;
}
@media only screen and (max-width: 767px) {
  .mr-sec-hero .mr-row-columns .col-1-of-2:last-child {
    order: 2;
  }
}
.mr-sec-hero .hero-attribution {
  padding-bottom: 0;
  font-weight: bold;
  line-height: 1.5;
}
.mr-sec-hero .mr-column .mr-elem-content p, .mr-sec-hero .mr-column .mr-elem-content h5 {
  font-size: 18px;
}
@media only screen and (max-width: 1024px) {
  .mr-sec-hero .mr-column .mr-elem-content p, .mr-sec-hero .mr-column .mr-elem-content h5 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .mr-sec-hero .mr-column .mr-elem-content p, .mr-sec-hero .mr-column .mr-elem-content h5 {
    font-size: 17px;
  }
}
@media only screen and (max-width: 479px) {
  .mr-sec-hero .mr-column .mr-elem-content p, .mr-sec-hero .mr-column .mr-elem-content h5 {
    font-size: 16px;
  }
}

.mr-sec-about {
  background-color: #171717;
}
.mr-sec-about .section-hdr {
  margin-bottom: 1rem;
}
.mr-sec-about h2, .mr-sec-about p {
  color: #dfdfdf;
}
.mr-sec-about .inner-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
@media only screen and (max-width: 1024px) {
  .mr-sec-about .mr-row:first-child {
    padding: 0;
  }
}
.mr-sec-about .mr-row:first-child .mr-elem-content {
  max-width: 810px;
  margin: 0 auto;
}
.mr-sec-about .mr-elem-content {
  height: 100%;
}
.mr-sec-about .mr-elem-content .mr-img-small-cont {
  height: 50%;
}
@media only screen and (max-width: 479px) {
  .mr-sec-about .mr-elem-content .mr-img-small-cont {
    padding-bottom: 0.5rem;
  }
}
.mr-sec-about .mr-elem-content .mr-img-small-cont:first-child {
  padding-bottom: 0.5rem;
}
.mr-sec-about .mr-elem-content .mr-img-small-cont:last-child {
  padding-top: 0.5rem;
}
.mr-sec-about .row-semi-gallery img {
  border-radius: 6px;
}
@media only screen and (max-width: 980px) {
  .mr-sec-about .row-semi-gallery {
    flex-direction: column;
  }
}
@media only screen and (max-width: 479px) {
  .mr-sec-about .row-semi-gallery .elem-ctn-columns {
    flex-direction: column;
  }
}
.mr-sec-about .row-semi-gallery .elem-ctn-columns .mr-elem-content.mr-left {
  padding-right: 0.5rem;
}
@media only screen and (max-width: 479px) {
  .mr-sec-about .row-semi-gallery .elem-ctn-columns .mr-elem-content.mr-left {
    padding-right: 0;
  }
}
.mr-sec-about .row-semi-gallery .elem-ctn-columns .mr-elem-content.mr-right {
  padding-left: 0.5rem;
}
@media only screen and (max-width: 479px) {
  .mr-sec-about .row-semi-gallery .elem-ctn-columns .mr-elem-content.mr-right {
    padding-left: 0;
    padding-top: 0.5rem;
  }
}
.mr-sec-about .row-semi-gallery .col-1-of-2 {
  width: calc((100% - 0rem) / 2);
  height: 465px;
}
@media only screen and (max-width: 1366px) {
  .mr-sec-about .row-semi-gallery .col-1-of-2 {
    height: 415px;
  }
}
@media only screen and (max-width: 980px) {
  .mr-sec-about .row-semi-gallery .col-1-of-2 {
    height: 500px;
    width: 100% !important;
  }
}
.mr-sec-about .row-semi-gallery .col-1-of-2:first-child {
  padding-right: 0.5rem;
}
@media only screen and (max-width: 980px) {
  .mr-sec-about .row-semi-gallery .col-1-of-2:first-child {
    padding-right: 0;
    padding-bottom: 1rem;
  }
}
@media only screen and (max-width: 479px) {
  .mr-sec-about .row-semi-gallery .col-1-of-2:first-child {
    height: auto;
    padding-bottom: 1rem;
  }
}
.mr-sec-about .row-semi-gallery .col-1-of-2:last-child {
  padding-left: 0.5rem;
}
@media only screen and (max-width: 980px) {
  .mr-sec-about .row-semi-gallery .col-1-of-2:last-child {
    padding-left: 0;
    height: auto;
  }
}
.mr-sec-about .row-semi-gallery .col-1-of-2 .mr-elem-content img.dual-small-img {
  object-position: 50% 50%;
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.mr-sec-about .row-semi-gallery .col-1-of-2 .mr-elem-content img.dual-small-img:not(:last-child) {
  margin-bottom: 20px;
}
.mr-sec-about .row-semi-gallery .col-1-of-2 .mr-elem-content img.dual-large-img {
  object-position: 50% 50%;
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.mr-sec-about .row-semi-gallery .col-1-of-2 .mr-elem-content img.large-img {
  object-position: 50% 50%;
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.mr-sec-about .row-semi-gallery.row-works .col-1-of-2 {
  height: 425px;
}
@media only screen and (max-width: 1240px) {
  .mr-sec-about .row-semi-gallery.row-works .col-1-of-2 {
    height: 355px;
  }
}
@media only screen and (max-width: 980px) {
  .mr-sec-about .row-semi-gallery.row-works .col-1-of-2 {
    height: auto;
  }
}
.mr-sec-about .row-semi-gallery.row-works .mr-elem-content img.large-img {
  height: 100%;
}
.mr-sec-about .row-semi-gallery.row-works .mr-elem-content img.dual-small-img {
  height: 100%;
  width: 100%;
}

.sec-parallax {
  position: relative;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding-top: 50%;
}
@media only screen and (max-width: 980px) {
  .sec-parallax {
    background-attachment: initial;
  }
}
@media only screen and (max-width: 767px) {
  .sec-parallax {
    padding-top: 80%;
  }
}
@media only screen and (max-width: 479px) {
  .sec-parallax {
    padding-top: 100%;
  }
}

.mr-sec-phil {
  padding-bottom: 0;
}
.mr-sec-phil .mr-row:last-child {
  padding-bottom: 0;
}

.mr-gallery-page {
  padding-bottom: 6rem;
}

section.section-slider {
  padding: 90px 0 75px;
}
@media only screen and (max-width: 1400px) {
  section.section-slider {
    padding: 0px 0 65px;
  }
}

.mr-biography-page .bio-image {
  max-width: 600px;
  margin: 0 auto;
}

.mr-contact-page .contact-intro {
  max-width: 34rem;
  margin: 0 auto;
}
.mr-contact-page .contact-email {
  margin-top: 1rem;
  font-size: 1.15rem;
  word-break: break-word;
}
@media only screen and (max-width: 479px) {
  .mr-contact-page .contact-email {
    font-size: 1rem;
  }
}
.mr-contact-page .contact-email a.read-more {
  color: #efefef;
  padding: 8px 22px 10px;
}
