 /*

* Skeleton V1.2

* Copyright 2011, Dave Gamache

* www.getskeleton.com

* Free to use under the MIT license.

* http://www.opensource.org/licenses/mit-license.php

* 6/20/2012

*/



/* Table of Content

==================================================

	#Site Styles

	#Page Styles

	#Media Queries

	#Font-Face */



/* #Site Styles

================================================== */



/* #Page Styles

================================================== */



/* #Media Queries

================================================== */


	/* Smaller than standard 960 (devices and browsers) */

	@media only screen and (max-width: 959px) {}



	/* Tablet Portrait size to standard 960 (devices and browsers) */

	@media only screen and (min-width: 768px) and (max-width: 959px) {}



	/* All Mobile Sizes (devices and browser) */

	@media only screen and (max-width: 767px) {}



	/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */

	@media only screen and (min-width: 480px) and (max-width: 767px) {}



	/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */

	@media only screen and (max-width: 479px) {}





/* ------ FONT ----- */

@font-face {
  font-family: 'Satoshi-Light';
  src: url('../fonts/Satoshi-Light.woff2') format('woff2'),
       url('../fonts/Satoshi-Light.woff') format('woff'),
       url('../fonts/Satoshi-Light.ttf') format('truetype');
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Satoshi-LightItalic';
  src: url('../fonts/Satoshi-LightItalic.woff2') format('woff2'),
       url('../fonts/Satoshi-LightItalic.woff') format('woff'),
       url('../fonts/Satoshi-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: 'Satoshi-Regular';
  src: url('../fonts/Satoshi-Regular.woff2') format('woff2'),
       url('../fonts/Satoshi-Regular.woff') format('woff'),
       url('../fonts/Satoshi-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Satoshi-Italic';
  src: url('../fonts/Satoshi-Italic.woff2') format('woff2'),
       url('../fonts/Satoshi-Italic.woff') format('woff'),
       url('../fonts/Satoshi-Italic.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: 'Satoshi-Medium';
  src: url('../fonts/Satoshi-Medium.woff2') format('woff2'),
       url('../fonts/Satoshi-Medium.woff') format('woff'),
       url('../fonts/Satoshi-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Satoshi-MediumItalic';
  src: url('../fonts/Satoshi-MediumItalic.woff2') format('woff2'),
       url('../fonts/Satoshi-MediumItalic.woff') format('woff'),
       url('../fonts/Satoshi-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: 'Satoshi-Bold';
  src: url('../fonts/Satoshi-Bold.woff2') format('woff2'),
       url('../fonts/Satoshi-Bold.woff') format('woff'),
       url('../fonts/Satoshi-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Satoshi-BoldItalic';
  src: url('../fonts/Satoshi-BoldItalic.woff2') format('woff2'),
       url('../fonts/Satoshi-BoldItalic.woff') format('woff'),
       url('../fonts/Satoshi-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: 'Satoshi-Black';
  src: url('../fonts/Satoshi-Black.woff2') format('woff2'),
       url('../fonts/Satoshi-Black.woff') format('woff'),
       url('../fonts/Satoshi-Black.ttf') format('truetype');
  font-weight: 900;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Satoshi-BlackItalic';
  src: url('../fonts/Satoshi-BlackItalic.woff2') format('woff2'),
       url('../fonts/Satoshi-BlackItalic.woff') format('woff'),
       url('../fonts/Satoshi-BlackItalic.ttf') format('truetype');
  font-weight: 900;
  font-display: swap;
  font-style: italic;
}

@font-face {
  font-family: 'Satoshi-Variable';
  src: url('../fonts/Satoshi-Variable.woff2') format('woff2'),
       url('../fonts/Satoshi-Variable.woff') format('woff'),
       url('../fonts/Satoshi-Variable.ttf') format('truetype');
  font-weight: 300 900;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'Satoshi-VariableItalic';
  src: url('../fonts/Satoshi-VariableItalic.woff2') format('woff2'),
       url('../fonts/Satoshi-VariableItalic.woff') format('woff'),
       url('../fonts/Satoshi-VariableItalic.ttf') format('truetype');
  font-weight: 300 900;
  font-display: swap;
  font-style: italic;
}





html,body {
  padding:0;
  color: #000;
	font-size: 16px;
}

body {
  margin: 0 auto;
  max-width: 1800px;
  overflow-x: hidden;
  font-family: "Satoshi-Regular";
  background: #102725;
  opacity: 0;
  transition: background 1s ease-in-out, opacity  0.4s ease-in-out 0.2s !important;
}

body.fade-in {
  opacity: 1;
}

body.fade-out {
  opacity: 0;
}

body.acf_content {
  background: #F2F2F2;
  opacity: 1;
}

body.noScroll {
  max-height: 100vh;
  overflow: hidden;
}

body.page‐loaded {
  opacity: 1;
}

strong, b {
  color: #000;
  font-weight: 700;
}
em,i {
  font-style: italic;
  font-weight: 400;
    
}

p {
    margin: 0;
}

h2 {
  font-size: 30px;
  line-height: 40px;
}

::-webkit-input-placeholder {
  color:    lightgrey;
}
:-moz-placeholder {
  color:    lightgrey;
  opacity:  1;
}
::-moz-placeholder {
  color:    lightgrey;
  opacity:  1;
}
:-ms-input-placeholder {
  color:    lightgrey;
}


a {
  outline: medium none !important;
  text-decoration: none !important;
  position: relative;
}

a img {
  border: medium none;
}

a:hover, a:focus, a:visited, a:link {
  color: #000;
}

a:hover {
  text-decoration: underline !important;
}
  
li {
  list-style: none;
  margin: 0;
}


.otgs-development-site-front-end {
  display: none;
}

figcaption {
  display: none;
}

/* ---- HEADER ---- */

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  max-width: 1800px;
  z-index: 100;
  background: #102725;
}

.site-header::after, .site-header::before { 
  position: absolute;
  content: "";
  top: 0;
  width: 25vw;
  height: 100%;
  background: #102725;
}

.site-header::after {
  right: 100%;
}

.site-header::before {
  left: 100%;
}

.site-header {
  display:flex;
  justify-content:space-between;
  align-items: center; 
  padding:64px 54px; 
  width: calc(100vw - 54px - 54px);
  max-width: calc(1800px - 54px - 54px);
  transition: padding 0.3s ease;
}

.site-header.active {
  padding: 24px 54px; 
}


.site-logo a {
  text-decoration:none; 
  font-size: 40px;
  line-height: 40px; 
  font-family: "Satoshi-Regular"; 
  color:#fff;
  text-transform: uppercase;
  text-decoration: none !important;
}


.site-nav ul {
  list-style:none; 
  margin:0; 
  padding:0; 
  display:flex; 
  gap: 54px;
}


.site-nav ul li a { 
  font-size: 20px;
  line-height: 20px; 
  font-family: "Satoshi-Regular";
  color: #fff;
  position: relative;
}

.site-nav ul li a::after { 
  position: absolute;
  bottom: -5px;
  content: "";
  left: 0;
  width: 0%;
  height: 1px;
  background: #fff;
}


.site-nav ul li a:hover::after, .site-nav ul li a.active::after { 
  width: 100%;
}
.site-nav ul li a:hover, .site-nav ul li a.active { 
  text-decoration: none !important;
}


.site-header.black a, .site-header.black .site-nav ul li a { 
  color: #000;
}


/* ---- SINGLE POST ---- */



body.single-post {
  background: #F2F2F2;
}


.article-wrapper {
  padding-top: 220px;
  width: calc(100% - 54px - 54px);
  padding-left: 54px;
  padding-right: 54px; 
}




/* ---- BLOCO PRINCIPAL ---- */
.block-principal {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  width: calc(100% + 25%);
  margin-bottom: 220px;
}

.block-principal .block-principal-text {
  width: 62.5%;
}

.block-principal .block-principal-text h1 {
  font-family: 'Satoshi-Regular';
  font-size: 52px;
  line-height: 58px;
  margin-bottom: 5px;
}

.block-principal .block-principal-text h1 {
  font-family: 'Satoshi-Regular';
  font-size: 52px;
  line-height: 58px;
  margin-bottom: 5px;
}

.block-principal .block-principal-text h2 {
  font-family: 'Satoshi-Regular';
  font-size: 32px;
  line-height: 38px;
  margin-bottom: 40px;
}

.block-principal .block-principal-description {
 font-family: 'Satoshi-Light';
 font-size: 20px;
 line-height: 34px; 
}

.block-principal-feature,
.block-principal-description {
  width: 100%;
}




.block-principal-slideshow {
  position: relative;
  min-height: 200px;
  width: calc(50% + 54px + 0%);
  transform: translateX(25% + 54px);
}

.block-principal-slideshow .slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.block-principal-slideshow .slide figure {
  margin-right: 24px;
}

ul.slick-dots {
  bottom: -60px;
  transform: translateX(calc(-25% + 22.5px));
}

.slick-dots li button {
  transform: scale(1);
}

.slick-dots li button::before {
  font-size: 30px;
}


/* 2) Section Header */
.block-section-header {
  width: 50%;
  /* margin: 100px 0; */
  background: transparent;
  text-align: left;
}

.block-section-header.right {
  margin-left: auto;
  margin-right: 0;
}

.block-section-header-title {
  display: inline-block;
  font-family: 'Satoshi-Medium';
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 23px;
  color: #000;
}



.block-section-header-description {
  font-family: 'Satoshi-Regular';
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 23px;
  color: #000;
}


.block-lista {
  list-style-type: disc;   
  list-style-position: inside;
  margin: 0;
}

.block-lista li::before {
  content: '●';             
  position: absolute;
  left: 0;
  top: calc(9px - 3.55px);
  font-size: 0.35em;
  color: #000;
  line-height: 1;
}

.block-lista li {
  color: inherit; 
  list-style-color: black;
  margin-bottom: 10px;
  position: relative;
  padding-left: 18px; 
}


/* 3) Two Images Section */
  .block-two-images-section {
    background: transparent;
    margin-top: 100px;
  }
  
  .block-two-images-section-images {
    display: flex;
    gap: 24px;
    align-items: flex-start;  
  }
  
  .block-two-images-section-images .image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  .block-two-images-section-images figcaption {
    font-size: 0.875rem;
    color: #000;
    text-align: left;
    margin-top: 0.5rem;
  }
  
  .block-two-images-section-images {
    display: flex;
    width: 100%;
  }
  
  .block-two-images-section-images .image {
    display: flex;
    flex-direction: column;
    width: 50%;
    box-sizing: border-box;
    margin-bottom: 0;
  }
  
  .image.--small img{
    width: 50%;
  }
  
  .image.--big img{
    width: 100%;
  }
  
  .image.--align-top {
    justify-content: flex-start;
  }
  
  .image.--align-middle {
    justify-content: center;
  }
  
  .image-caption {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #000;
    text-align: center;
  }

/* ---- RELATED PROJECTS ---- */

.related-projects {
  margin-top: 100px;
  padding-bottom: 50px;
}

.related-projects__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.related-project {
  display: flex;
  flex-direction: column;

}

.related-project-thumb {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 45px;
}

.related-project-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.related-project-title {
  font-family: 'Satoshi-Medium';
  font-size: 20px;
  line-height: 27px;
  margin-bottom: 23px;
  color: #000;
  margin-bottom: 10px;
}

.related-project-title a {
  color: #000;
  text-decoration: none;
}

.related-project-desc {
  font-family: 'Satoshi-Light';
  font-size: 20px;
  line-height: 34px;
  color: #000;
  margin-bottom: 25px;
}

.related-project-more {
  align-self: flex-start;
  font-family: 'Satoshi-Light';
  font-size: 20px;
  line-height: 27px;
  color: #000;
}

.related-project-more:hover {
  text-decoration: underline;
}


/* ---- WORKS ---- */
.work-index h1 {
  width: 60%;
  font-family: 'Satoshi-Medium';
  font-size: 85px;
  line-height: 100px;
  margin-bottom: 150px;
  color: #000;
}


.article-wrapper.work-wrapper {
  padding-top: 0;
}

.page-about .article-wrapper.work-wrapper { 
  padding-top: 220px;
}


/* ---- FOOTER ---- */

footer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: calc(100% - 54px - 54px);
  padding-left: 54px;
  padding-right: 54px;
  background: #102725;
  position: relative;
  z-index: 1;
}

footer::before {
  content: "";
  position: absolute;
  right: 100%;
  top: 0;
  height: 100%;
  width: 25vw;
  background: #102725;
  z-index: 10;
}

footer::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 0;
  height: 100%;
  width: 25vw;
  background: #102725;
  z-index: 10;
}

footer a { 
  color: #fff !important;
}

.footer-get-touch {
  width: 100%;
  border-bottom: 1px solid #fff;
  font-family: 'Satoshi-Medium';
  font-size: 85px;
  line-height: 100%;
  color: #fff;
  position: relative;
  text-align: center;
  padding-top: 88px;
}

.footer-get-touch span {
  display: inline-block;   
  white-space: nowrap;      
  overflow: hidden;     
  line-height: 100%;   
  /* font-size: clamp(1.5rem, 6vw, 3rem); */
}

.footer-links {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 24px;
  padding: 15px 0;
  align-items: center;
  flex-wrap: wrap; 
}

.footer-links > * {
  flex: 0 0 auto;
  width: auto;
}

.footer-copy, .footer-contact, .footer-policy, .footer-menu {
  font-family: 'Satoshi-Regular';
  font-size: 20px;
  line-height: 27px;
  color: #fff;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.footer-menu li { 
  margin-bottom: 10px;
}



body.home section:not(.two-blocks-header-tc):not(two-blocks-header-oc), body.home section.services-section.text-multi-section {
  width: calc(100% - 54px - 54px);
  padding-left: 54px;
  padding-right: 54px;
}


.block-section-header a[href^="mailto:"] {
  position: relative;
  padding-left: 32px; 
  text-decoration: none; 
  color: inherit; 
}


.block-section-header a[href^="mailto:"]::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-30%);
  width: 22px;
  height: 15px;
  background-image: url("data:image/svg+xml;charset=UTF-8,<svg xmlns='http://www.w3.org/2000/svg' width='29' height='21' viewBox='0 0 29 21'><path fill='white' d='M0 0V20.7589H29V0H0ZM23.737 2.59486L14.5 9.94104L5.26298 2.59486H23.737ZM2.9 18.164V4.18592L14.5 13.4127L26.1 4.18592V18.164H2.9Z'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
}



.block-hover-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  transform: translateY(100%);
  transition:
    transform 0.8s ease-in-out,
    background 1s ease-in-out,
    color 1s ease-in-out;
  z-index: 50;
  text-align: center;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  background: transparent;
  isolation: isolate;
  pointer-events: none;
}

.block-hover-fixed.visible {
  transform: translateY(0);
  pointer-events: auto;
}

.section .block-hover {
  display: none;
}

.fixed-layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease-in;
  will-change: opacity;
  backface-visibility: hidden;
  pointer-events: none;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100vw - 54px - 54px);
  max-width: calc(1800px - 54px - 54px);
}

.fixed-layer.is-visible {
  opacity: 1;
  pointer-events: all;
}

.fixed-sizer { 
  visibility: hidden; 
  pointer-events: none;
  width: calc(100vw - 54px - 54px);
  max-width: calc(1800px - 54px - 54px);
}


.fixed-current { z-index: 1; }
.fixed-next    { z-index: 2; }

.block-hover-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-self: center;
  width: calc(100% - 54px - 54px);
  max-width: calc(1800px - 54px - 54px - 42px);
  padding: 20px 26px;
}

.block-hover-wrapper > div { 
  text-align: left;
}

.block-hover-wrapper .related-project-title {
  font-family: 'Satoshi-Medium';
  font-size: 30px;
  line-height: 41px;
  margin-bottom: 23px;
  transition: color 1s ease-in-out;
}


.block-hover-wrapper .related-project-desc {
  font-family: 'Satoshi-Light';
  font-size: 20px;
  line-height: 27px;
  margin-bottom: 0;
  transition: color 1s ease-in-out;
}

.block-hover-wrapper .related-project-more {
  align-self: flex-start;
  font-family: 'Satoshi-Light';
  font-size: 20px;
  line-height: 27px;
  align-self: flex-end;
  white-space: nowrap;
  margin-left: 20px;
  transition: color 1s ease-in-out;
}

.block-hover-wrapper .related-project-more:hover {
  text-decoration: underline;
}


.slick-prev {
  left: 35px;
  z-index: 1;
  width: 40px;
  height: 40px;
}

.slick-next {
  right: 35px;
  z-index: 1;
  width: 40px;
  height: 40px;
}

.slick-next:focus, .slick-next:hover, .slick-prev:focus, .slick-prev:hover {
  border: none !important;
}

.slick-next::before, .slick-prev::before {
  font-size: 40px;
}

@media only screen and (max-width: 699px) {
  
  html {
    max-width: 100vw;
    overflow-x: hidden;
  }  
  
  .site-header {
    flex-direction: column;
    padding: 64px 20px;
    width: calc(100vw - 20px - 20px);
    align-items: center;
  }
  
  .site-header.active {
    padding: 20px 20px;
  }
  
  .site-nav ul {
    margin-top: 20px;
    gap: 20px;
  }
  
  
  .article-wrapper {
    width: calc(100vw - 20px - 20px);
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .article-wrapper.other-page-wrapper {
    padding-top: calc(30vh - 15%);
  }
  
  .block-hover-wrapper {
    flex-direction: column;
    width: calc(100% - 20px - 20px);
    padding: 20px 20px;
  }
  
  .block-hover-wrapper .related-project-title {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 10px;
  }
  
  
  .block-hover-wrapper .related-project-desc {
    display: none;
  }
  
  .block-hover-wrapper .related-project-more {
    align-self: flex-start;
    margin-left: 0;
  }
  
  .fixed-sizer { 
    width: 100%;
  }
  
  .fixed-layer {
    transform: none;
    left: 0;
    width: 100%;
  }
  
  /* body.page-id-61   .article-wrapper.other-page-wrapper {
    padding-top: 0;
  } */

}
 


 
 
 