/*   
Theme Name: Mariejo Ramos
Description: This is the website for Mariejo Ramos
Author: -
Author URI: 
Version: 1.1.0
Tags: full
License: 
License URI: 
*/

/*

TABLE OF CONTENTS

1. Variables
2. Custom CSS

*/

/*******************************************************
 *
 * 1. Variables
 *
 *******************************************************/




:root {
	/** Font default */
	--font-family-default: "Lato", sans-serif;
	--font-family-title: "Playfair Display", serif;
  --font-family-title-alt: "Playfair Display SC", serif;
	--font-size-default: 14px;
	--font-size-title: 18px;
	--font-color-default: #fff;
	--font-color-title: #A4423A;
	/** Use for input, button, and any other element */
	--primary: #A4423A;
	--secondary: #C6847D;
	--success: #28a745;
	--info: #17a2b8;
	--warning: #ffc107;
	--danger: #dc3545;
	--light: #fffff0;
	--dark: #070F12;
  
  --default-transition: all 0.3s ease;
}


/* Global */
html * {
  box-sizing: border-box;
}

body {
  font-family: var(--font-family-default) !important;
  font-size: var(--font-size-default);
  background: #000;
  color: var(--font-color-default);
  margin: 0;
  /* Remove the comment from line 85 to 86 if the font issue in safari occurs */
  /* -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; */
}

body.overflow {
  overflow: hidden;
}

.site-canvas {
  display: block;
  width: 100%;
}

.custom-container {
  max-width: 1440px;
  width: 100%;
  margin: auto;
}

a,
a:focus,
a:hover,
a:focus-within {
  text-decoration: none;
}

input,
textarea,
button {
	outline: none;
}

.home video {
  cursor: pointer;
}

.rel {
  position: relative;
}

.blk {
  display: block !important;
}

.no-padding {
  padding-right: 0 !important;
}

.disable {
  pointer-events: none;
}

.img-object {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.w-bg {
  background: #fff;
}

.img-wrapper {
  position: relative;
}

.img-wrapper canvas {
  display: block;
  width: 100%;
} 

.img-wrapper img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bg-canvas {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}

.bg-canvas-rel {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}

.ios-true .bg-canvas,
.safari .bg-canvas,
.ios-true .bg-fixed,
.safari .bg-fixed {
  background-attachment: scroll !important;
}

.section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.bg-canvas-g {
  filter: grayscale(1);
}

.bg-fixed {
  background-attachment: scroll !important;
}

.bw {
  filter: grayscale(1);
}

.ease {
  transition: var(--default-transition);
  -webkit-transition: var(--default-transition);
  -moz-transition: var(--default-transition);
  -o-transition: var(--default-transition);
}

.ease-1 {
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}

#main-wrapper {
  overflow: hidden;
}

.show-mb {
  display: none !important;
}

.txt-up {
  text-transform: uppercase;
}

.zi-100 {
  z-index: 100;
}

.rel-z {
  position: relative;
  z-index: 100;
}

.hidden {
  display: none !important;
}

.no-margin {
  margin: 0 !important;
}

.n-app {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-progress-appearance: none;
  outline: none;
  background: transparent;
  border: 0;
}

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1170px;
  width: 100%;
  margin: auto;
  padding: 0 15px;
}

.text-center {
  text-align: center;
}

input,
textarea,
button {
  border-radius: 0 !important;
}

/* Flex */
.flex {
  display: flex;
  flex-wrap: wrap;
}

.custom-flex {
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

.ai-fs {
  align-items: flex-start;
}

.ai-fe {
  align-items: flex-end;
}

.ai-c {
  align-items: center;
}

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

.jc-fe {
  justify-content: flex-end;
}

.jc-c {
  justify-content: center;
}

.jc-sb {
  justify-content: space-between;
}

.fd-c{
  flex-direction: column;
}

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

/* Section title */
.section-title h2 {
  font-weight: 400;
  color: #fff;
  line-height: 1;
}

.section-title h2 span {
  display: block;
}

.section-title h2 span:first-of-type {
  text-transform: uppercase;
  font-size: clamp(16px,1.04vw,20px);
  margin: 0 0 10px;
}

.section-title h2 span:last-of-type {
  font-family: var(--font-family-title);
  font-size: clamp(25px,1.82vw,35px);
}

/* Section 1 */
.section {
  background: #000;
}

.section-inner {
  height: 100vh;
}

.col-content {
  width: 100%;
  display: flex;
  align-items: flex-start;
  padding: 15px 0 85px;
}

#section1 .col-content .col-inner {
	width: 100%;
}

.col-img {
    width: 44.4270%;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
}

.col-img::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 20%;
  height: 100%;
  background: #000000;
  background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 10;
}

.col-img::after {
  content: '';
  position: absolute;
  left: -10%;
  top: 0;
  width: 34%;
  height: 100%;
  background: #000000;
  background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 10;
  transform: skewX(-12deg);
}

.col-img img {
  opacity: 0.4;
}

.col-img canvas {
  height: 100vh;
}

#section1 .col-content {
  align-items: flex-end;
}

#section1 .cards-holder {
  max-width: 1650px;
  width: 100%;
  margin: 20vh 0 0;
}

#section1 .card-item {
  width: calc(100% / 6);
  padding-right: 20px;
}

#section1 .section-inner {
  max-width: 1766px;
  width: 100%;
  margin: auto;
  padding: 0 15px;
}

#section1 h1 {
  font-size: clamp(65px,5.21vw,100px);
  font-family: var(--font-family-title-alt);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.4;
  background: -webkit-linear-gradient(var(--primary),var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 20px;
}

#section1 p {
  font-size: clamp(18px,1.56vw,30px);
  font-weight: 300;
  line-height: 1.5;
  color: #fff;
  margin: 0;
  max-width: clamp(500px,44.27vw,850px);
  width: 100%;
}

#section1 .card-item .img-wrapper {
  background: #000;
}

#section1 .card-item img {
  filter: grayscale(100);
  opacity: 0.5;
  transition: var(--default-transition);
}

#section1 .card-item a:hover img {
  filter: grayscale(0) blur(4px);
  transform: scale(1.2);
  opacity: 1;
}

#section1 .card-item a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
}

#section1 .card-item h2 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #fff;
  font-family: var(--font-family-title);
  font-weight: 400;
  font-size: clamp(13px,1.04vw,20px);
  line-height: 1.2;
  margin: 0;
  padding: 0 clamp(10px,1.04vw,20px);
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.6);
}


#section1 .card-item h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: #000000;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  opacity: 0;
  transition: var(--default-transition);
  z-index: -1;
}

#section1 .card-item a:hover h2::before {
  opacity: 1;
  width: 100%;
}

/* Section 2 */
#section2 .overlay-img {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 120px;
  z-index: 200;
}

#section2 .overlay-img .img-wrapper {
  position: relative;
  max-width: clamp(450px,39.9vw,766px);
  width: 100%;
  margin: auto;
}

#section2 .overlay-img .img-wrapper canvas {
    height: auto;
}

#section2 .overlay-img .img-wrapper img {
  filter: grayscale(0);
  opacity: 1;
}

.quote {
  color: #fff;
  font-size: clamp(16px,1.04vw,20px);
  font-weight: 400;
  font-style: italic;
  font-family: var(--font-family-title);
  line-height: 1.5;
  max-width: 958px;
  width: 100%;
  position: relative;
  padding: 12px 0 0 20px;
  margin: 40px 0 20px;
}

.quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 47px;
  background: var(--primary);
}

.quote p {
  margin: 0;
}

.quote span {
  display: block;
  margin: 30px 0 0;
}

#section2 .col-inner {
  max-width: 969px;
  width: 100%;
}

#section2 .col-content {
  padding: 150px 15px 70px 42px;
  width: 55.573%;
}

.global-txt {
  font-weight: 300;
  font-size: clamp(16px,1.04vw,20px);
  line-height: 1.3;
  color: #fff;
}

#section2 .desc {
  margin: 50px 0;
}

#section2 .desc p {
  margin: 0 0 30px;
}

.list-wrap h3 {
  margin: 0 0 20px;
  color: var(--primary);
  text-transform: uppercase;
  font-size: clamp(16px,1.04vw,20px);
  letter-spacing: 0.01em;
  font-weight: 400;
}

.list-wrap ul {
  list-style: none;
  margin: 0 0 50px;
  padding: 0;
}

.list-wrap ul li {
  color: #fff;
  font-size: clamp(16px,1.04vw,20px);
  font-weight: 300;
  line-height: 1.3;
  border-bottom: 1px solid #4D4D4D;
  padding: clamp(8px,0.78vw,15px) 0;
}


/* Webkit browsers (Chrome, Safari, Edge, Opera) */
.section.pp-scrollable::-webkit-scrollbar {
  width: 8px;
}

.section.pp-scrollable::-webkit-scrollbar-track {
  background: rgba(255,255,255, 0.05);
}

.section.pp-scrollable::-webkit-scrollbar-thumb {
  background-color: rgba(255,255,255, 0.3);
  border-radius: 10px;
}

.section.pp-scrollable::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255,255,255, 0.5);
}

/* Firefox */
.section.pp-scrollable {
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255, 0.3) rgba(0, 0, 0, 0.05);
}

.section.pp-scrollable {
  -webkit-overflow-scrolling: touch;
}

/* Section 3 */
#section3 .col-content {
    padding: 150px 15px 70px 42px;
}

.contact-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 500px;
  width: 100%;
}

.contact-list ul li {
  border-bottom: 1px solid #4D4D4D;
  padding: clamp(8px,0.78vw,15px) 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.contact-list ul li span {
  width: 165px;
  display: block;
  text-transform: uppercase;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.01em;
}

.contact-list ul li a {
  color: var(--primary);
  font-size: clamp(16px,1.04vw,20px);
  flex-shrink: 1;
  transition: var(--default-transition);
}

.contact-list ul li a:hover {
  color: var(--secondary);
}

#section3 .global-txt {
  margin: clamp(20px,2.6vw,50px) 0 clamp(80px,7.81vw,150px);
}

.award {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 200;
}

.award h3 {
  font-family: var(--font-family-title);
  font-weight: 400;
  font-size: clamp(50px,5.21vw,100px);
  color: #fff;
  line-height: 1;
  margin: 100px 0 0;
}

.award h3 span {
  display: block;
  font-weight: 300;
  text-transform: uppercase;
  font-family: var(--font-family-default);
  font-size: clamp(20px,1.56vw,30px);
  margin: 20px 0 0;
  letter-spacing: 0.01em;
}

.award-list {
    border-top: 1px solid #fff;
    margin: 60px 0 0;
    padding: 50px 0 0;
}

.award-item {
}

.award-item span {
  display: block;
  font-size: clamp(70px,5.21vw,100px);
  font-family: var(--font-family-title);
  color: var(--primary);
  margin: 0 0 10px;
}

.award-item em {
  font-style: normal;
  color: #fff;
  font-size: clamp(16px,1.04vw,20px);
  font-weight: 300;
}


/* Section 4 */
#section4 .col-content {
    padding: 150px 42px 70px 42px;
}

.reports-holder {
  margin: 0 -9px;
}

.report-col {
  width: calc(100% / 3);
  padding: 0 9px;
}

.report-col-inner {
    border-top: 3px solid var(--primary);
    padding: clamp(8px,0.78vw,15px) 0;
    margin: clamp(50px,4.17vw,80px) 0 0;
}

.report-col h3 {
  font-weight: 300;
  font-size: clamp(16px,1.04vw,20px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 clamp(20px,1.56vw,30px);
}

.report-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.report-col ul li {
  font-size: clamp(14px,1.04vw,20px);
  font-weight: 300;
  line-height: 1.3;
  border-bottom: 1px solid #4D4D4D;
  padding: clamp(8px,0.78vw,15px) 0;
}

.report-col ul li a {
  color: #fff;
  display: block;
  padding: 0 0 0 25px;
  position: relative;
  transition: var(--default-transition);
}

.report-col ul li a:hover {
  color: var(--secondary);
}

.report-col ul li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  height: 7px;
  width: 7px;
  border-radius: 7px;
  background: var(--primary);
}

.report-col ul li span {
  display: block;
  margin: 0 0 10px;
  min-height: 52px;
}

.report-col ul li em {
  display: block;
  font-style: normal;
}

#section4 .col-img img {
    opacity: 0.2;
}


/* Section 5 */
#section5 .col-content {
    padding: 150px 42px 70px 42px;
}

.tearsheets-scroll-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.3) rgba(255, 255, 255, 0.05);
}

.tearsheets-scroll-wrapper::-webkit-scrollbar {
  height: 6px;
}

.tearsheets-scroll-wrapper::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

.tearsheets-scroll-wrapper::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
}

.tearsheets-track {
    display: flex;
    gap: 20px;
    width: calc(100vw - 84px);
}

.tearsheet-card {
  position: relative;
  width: clamp(220px,16.67vw,320px);
  height: clamp(276px,20.83vw,400px);
  flex: 0 0 auto;
  overflow: hidden;
}

.tearsheet-card a {
  display: block;
  overflow: hidden;
}

.tearsheet-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    height: 77px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(164, 67, 58, 0.5));
    color: #fff;
    font-size: clamp(16px,1.04vw,20px);
    font-family: var(--font-family-title);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--default-transition);
}

.tearsheet-card .img-wrapper img {
  transition: var(--default-transition);
}

.tearsheet-card a:hover .tearsheet-caption {
  height: 100%;
}

.tearsheet-card a:hover .img-wrapper img {
  filter: blur(4px) grayscale(100);
  transform: scale(1.2);
}

.pdr {
  margin: clamp(50px,5.21vw,100px) 0 clamp(20px,2.6vw,50px);
}

.tearsheet-note {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #fff;
  margin: clamp(20px,2.6vw,50px) 0 0;
}

.tearsheet-note i {
  font-size: 25px;
  display: block;
  margin: 0 20px 0 0;
}

/* Sidebar nav */
#pp-nav span {
    border-color: #fff !important;
}

#pp-nav li .active span, .pp-slidesNav .active span {
  background: #fff !important;
}

#pp-nav.right {
    right: 0px !important;
}

/* Header */
.header-wrap {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1000;
    width: 100%;
    padding: 30px 42px;
}

.logo a {
  display: block;
}

#primary-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}


#primary-menu li {
  padding: 0 0 0 20px;
}

#primary-menu li a {
  color: #fff;
  font-size: clamp(16px,1.04vw,20px);
  font-family: var(--font-family-title);
  text-transform: uppercase;
  transition: var(--default-transition);
  position: relative;
  display: block;
}

#primary-menu li a:hover {
  color: var(--secondary);
}

#primary-menu li a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  width: 0;
  margin: auto;
  background: var(--secondary);
  transition: var(--default-transition);
}

#primary-menu li a:hover::after {
  width: 100%;
}

@media (max-width: 1024px) {
  html, body {
    overflow: visible !important;
    height: auto !important;
  }

  #pagepiling,
  #pagepiling .section {
    height: auto !important;
    width: auto !important;
    position: relative !important;
    overflow: visible !important;
    transform: none !important;
  }
}

/* Inner pages */
#inner-page-wrapper {
    padding: 150px 0 30px;
}

.entry-title {
    font-family: var(--font-family-title);
    font-size: clamp(25px, 1.82vw, 35px);
    font-weight: 400;
}

.entry-content {
	color: #fff;
	line-height: 1.5;
	font-size: 16px;
}

/* 404 */
.error-page-excerpt h1 {
    font-size: clamp(65px, 5.21vw, 100px);
    font-family: var(--font-family-title-alt);
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.4;
    background: -webkit-linear-gradient(var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 0 20px;
}

.error-page-excerpt p {
	font-size: clamp(18px, 1.56vw, 30px);
    font-weight: 300;
    line-height: 1.5;
    color: #fff;
}

.error-page-excerpt p a {
	text-decoration: underline;
	color: #fff;
}


/*media query*/
@media only screen and (max-width: 1024px) {

  .header-wrap {
      padding: 15px 15px;
      background: #000;
  }

  .section-inner {
      height: auto;
  }

  .col-img::after {
    display: none;
  }

  #section1 .col-content {
    padding: 137px 0 85px;
  }

  #section1 .col-img {
    width: 75.427%;
  }

  #section1 .card-item {
    width: calc(100% / 2);
    padding: 10px;
  }

  #section1 .cards-holder {
    max-width: 500px;
    margin: 50px -10px;
  }

  #section1 h1 {
    line-height: 1;
  }

  .col-img .img-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }

  .col-img canvas {
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
  }

  #section2 .col-content {
    padding: 100px 15px;
    width: 100%;
  }

  #section2 .overlay-img {
    position: relative;
    bottom: 0;
  }

  #section2 .overlay-img .img-wrapper {
      position: relative;
  }

  #section2 .overlay-img .img-wrapper canvas {
      position: relative;
  }

  #section2 .col-img {
      position: relative;
      width: 100%;
      padding: 100px 0;
  }

  #section2 .section-inner {
    flex-direction: column-reverse;
  }

  #section2 .col-img::before {
    display: none;
  }

  #section2 .col-img > .img-wrapper {
    opacity: 0.4;
  }

  #section3 .col-content {
    padding: 10px 15px 100px;
  }

  #section3 .col-img {
    position: relative;
    width: 100%;
  }

  #section3 .col-img .img-wrapper {
    position: relative;
  }

  #section3 .col-img .img-wrapper canvas {
    position: relative;
  }

  #section4 .col-content {
    padding: 100px 15px;
  }

  .report-col {
    width: 100%;
  }

  .report-col ul li {
    font-size: 16px;
  }

  #section5 .col-content {
    padding: 50px 15px;
  }
}

