/* ———————————————————————————————————————— */
/* page / 404 */
/* ———————————————————————————————————————— */

.page-404 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  color: #1f2233;
}
.page-404_content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
}
.page-404_content h1 {
  text-align: center !important;
}
.page-404_content a {
  width: fit-content !important;
}

/* ———————————————————————————————————————— */
/* ———————————————————————————————————————— */

.disclaimers {
  display: block;
  background-color: #1f2233;
  z-index: 998;
  position: absolute;
  top: 0;
  width: 100%;
  font-size: 15px;
  /*height: 40px;*/
  padding-top: 12px;
  text-align: right;
  padding-bottom: 10px;
}

.disclaimer_text {
  padding-right: 20px;
  color: #cecece;
  font-size: 12px;
  font-family: "miller-display", serif;
  letter-spacing: 0.3;
  line-height: 1.5em;
}

.disclaimer_separator {
  display: none;
}
@media (max-width: 580px) {
  .disclaimer_text {
    letter-spacing: 0.1;
    font-size: 11px;
  }
  .disclaimer_separator {
    display: none;
  }
}

@media (min-width: 581px) {
  .disclaimer_text {
    letter-spacing: 0.3;
    font-size: 14px;
  }
  .disclaimer_separator {
    display: inline-block;
  }
}

@font-face {
  font-family: Medium;
  src: url("/assets/fonts/FuturaStd-Medium.otf");
}

@font-face {
  font-family: Light;
  src: url("/assets/fonts/FuturaBT-Light.ttf");
}

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@font-face {
  font-family: Futura;
  src: url("/dist/fonts/Futura.otf");
}

body {
  color: #cecece;
  font-size: 16px;
  font-family: "miller-display", serif;
}

body .white {
  color: white;
}

body section {
  width: 100%;
  height: 100vh;
  display: block;
  /* .logo,.quote,.contact,.arrow-down{
                display:flex;
                flex-direction:column;
                flex:1;
                text-align:center;
                margin:auto;*/
}

body section.cover {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

body section .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 52%;
  height: 75%;
  margin: 0 auto;
}

body section .wrapper .logo {
  width: 250px;
  margin: 0 auto;
  margin-top: 100px;
  height: 55%;
}

body section img {
  width: 100%;
  height: 100%;
}

body section .quote-text {
  font-size: 16px;
  text-align: center;
  letter-spacing: 14px;
  font-family: "miller-display", serif;
  line-height: 34px;
  margin-top: 50px;
}

body section .quote-author {
  font-family: Montserrat;
  text-align: center;
  font-size: 16px;
  line-height: 36px;
  margin-bottom: 40px;
  letter-spacing: 1px;
  color: #1f2233;
}

body section .contact-btn {
  text-align: center;
  border: 1px solid white;
  width: 320px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 6px;
  line-height: 26px;
  margin: 0 auto;
  font-size: 14px;
}

body section .arrow {
  /*FRED - increased width and height to 50px to make SVG look better and have same arrow size everywhere*/
  /*width: 40px;
	height: 40px;*/
  width: 50px;
  height: 50px;
  color: white;
  position: absolute;
  bottom: 10%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  cursor: pointer;
  /* FRED: set opacity 1 to go with the opacity 0 media query below */
  opacity: 1;
}

/* FRED: to make the down arrow at top of page dissappear on small desktop heights to prevent superpositions*/
@media (max-height: 700px) and (min-width: 962px) {
  body section .arrow {
    opacity: 0;
    -webkit-transition:
      visibility 0s,
      opacity 0.5s linear;
    transition:
      visibility 0s,
      opacity 0.5s linear;
  }
}

.scroll-effect {
  padding: 0;
  top: 0;
  background-position: center;
  background-size: cover;
  height: 100vh;
  background-repeat: no-repeat;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  background-attachment: scroll;
  position: relative;
}

.scroll-effect.unsticky {
  position: relative;
}

.scroll-effect.sticky {
  position: -webkit-sticky;
  position: sticky;
}

.scroll-effect div.text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 50%;
  background-color: #1f2233;
  border: 1px solid white;
  font-family: "Miller";
  padding: 10px;
  min-width: 290px;
  max-width: 290px;
  cursor: pointer;
}

.scroll-effect div.text span {
  margin: auto;
  text-transform: uppercase;
  letter-spacing: 3px;
}

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

footer {
  background-color: #1f2233;
  height: 120vh;
  width: 100%;
  padding: 0;
  padding-bottom: 0;
  padding-top: 2%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

footer .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 10%;
  padding-right: 10%;
}

footer .row.disclamer {
  border-bottom: 1px solid white;
  background-color: #1f2233;
}

footer .row.contacts {
  background-color: white;
  -webkit-box-flex: 0.5;
  -ms-flex: 0.5;
  flex: 0.5;
  padding-top: 50px;
  color: #1f2233;
  padding-bottom: 2%;
}

footer .row.contacts a {
  color: #1f2233;
}

footer .row .cell {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

footer .row .cell.about,
footer .row .cell.logo {
  margin: auto;
  font-family: "miller-display", serif;
}

footer .row .cell.logo {
  margin: 0 auto;
  -webkit-box-flex: 0.3;
  -ms-flex: 0.3;
  flex: 0.3;
}

.project-description-wrapper > .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 80%;
  margin: auto;
  padding-top: 100px;
  padding-bottom: 100px;
}

.project-description-wrapper .logo {
  margin: 0 auto;
  -webkit-box-flex: 0.3;
  -ms-flex: 0.3;
  flex: 0.3;
}

.project-description-wrapper img {
  width: auto;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.project-description-wrapper .logo {
  margin: 0 auto;
  -webkit-box-flex: 0.3;
  -ms-flex: 0.3;
  flex: 0.3;
}

.project-description-wrapper .logo img {
  width: 150px;
  margin: 0 auto;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 40%;
}

.project-description-wrapper .project-description {
  -webkit-box-flex: 0.7;
  -ms-flex: 0.7;
  flex: 0.7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

footer .row .cell.logo img {
  width: 150px;
  margin: 0 auto;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 40%;
}

footer .row .cell.about {
  -webkit-box-flex: 0.7;
  -ms-flex: 0.7;
  flex: 0.7;
}

footer .row .cell.about p {
  margin: auto;
  width: 75%;
  line-height: 24px;
  font-size: 14px;
  letter-spacing: 1px;
}

footer .row .cell .top,
footer .row .cell .bottom {
  margin: auto;
  text-align: center;
}

footer .row .cell .top h1 {
  min-width: 200px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 6px;
  line-height: 26px;
  font-size: 13px;
}
/* negative margin class for H1 to make up for extra line on addresses on mobile */

@media (max-width: 1100px) {
  footer .row .cell .top h1.minus-1x-line {
    margin-bottom: -6px;
  }
}

footer .row .cell .bottom {
  font-family: "miller-display", serif;
  line-height: 24px;
  font-size: 14px;
  letter-spacing: 1px;
}

@media (max-width: 1100px) {
  body section .quote-text {
    margin-top: 10px;
  }
  body section .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    height: 100%;
    margin: 0 auto;
  }
  body section .wrapper .logo {
    width: 200px;
    margin: 0 auto;
    margin-top: 30px;
    height: 40%;
  }
  body section .quote-text {
    font-size: 11px;
    text-align: center;
    letter-spacing: 3px;
    font-family: "miller-display", serif;
    line-height: 20px;
  }
  body section .quote {
    padding-right: 10px;
    padding-left: 10px;
  }
  body section .quote-author {
    font-family: Montserrat;
    text-align: center;
    font-size: 10px;
    line-height: 36px;
    margin-bottom: 40px;
    letter-spacing: 1px;
  }
  footer {
    background-color: #1f2233;
    height: auto;
    width: 100vw;
    padding: 10%;
    padding-bottom: 7%;
    padding-top: 2%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: block;
  }
  footer .row {
    display: block;
  }
  footer .row .cell {
    width: 100%;
  }
  footer .row .cell.logo img {
    margin-left: auto;
    margin-bottom: 100px;
    margin-top: 100px;
    width: 80px;
  }
  footer .row .cell.about p {
    margin: 0;
    width: 100%;
    margin-bottom: 100px;
  }
  footer .row .cell.contact {
    margin-bottom: 50px;
  }
  footer .row .cell .top h1 {
    min-width: 270px;
    margin-bottom: 20px;
  }
}

/* V3 version EXTENSION */

.project .content {
  width: 100%;
  max-width: 100%;
  min-width: 100vw;
  min-height: 0;
  background: white;
  padding: 0;
  overflow: hidden;
  -webkit-transform: none;
  transform: none;
  top: 0;
  left: 0;
  position: relative;
}

.project .img {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100vw;
  max-width: 100vw;
  height: 100%;
  max-height: 100%;
  padding: 0;
}

.project .content .header {
  width: 100%;
  background-color: #1f2233;
  font-family: "miller-display", serif;
  padding: 10px;
  text-align: center;
  border-left: none;
  border-right: none;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.project .content div {
  position: relative;
  background: transparent;
  -webkit-transform: none;
  transform: none;
  top: 0;
  left: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.project.show {
  height: auto;
  max-height: 100000px;
  position: relative;
}

.project.show .content {
  max-height: 10000px;

  padding-bottom: 30px;
}

.project-description-wrapper .project-description .project-text p,
.page-404 h1 {
  font-size: 14px;
  text-transform: uppercase;
  line-height: 28px;
  /* FRED: color doesnt exist in design, changed to #1f2233*/
  /*color: #3d464d;*/
  color: #1f2233;
  margin: auto;
  width: 75%;
  letter-spacing: 5px;
  /* FRED : I've changed JUSTIFY to text-align: left below*/
  /*text-align: justify;*/
  text-align: left;
}
/* FRED : added media query below to center project text on mobile (as i took out justify on desktop) */
@media (max-width: 1100px) {
  .project-description-wrapper .project-description .project-text p {
    text-align: center;
  }
}

.project-description-wrapper .close-btn {
  height: 15px;
  position: absolute;
  right: 0;
  top: 30px;
  cursor: pointer;
  /* FRED: color doesnt exist in design, changed to #1f2233*/
  /*color: #3d464d;*/
  color: #1f2233;
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.bordered-btn {
  /* FRED : I've changed the color hex of the border and color below */
  /*border: 1px solid #3d464d;
	color: #3d464d;*/
  border: 1px solid #1f2233;
  color: #1f2233;
}

.project-description-wrapper .project-description .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(75% + 14px);
  margin: auto;
  margin-top: 60px;
  margin-bottom: 0;
}

.project-description-wrapper .project-description .links .link {
  -webkit-box-flex: 33.33333333%;
  -ms-flex: 33.33333333%;
  flex: 33.33333333%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 7px;
  margin-right: 7px;
  max-width: 33.33333333%;
}

.project-description-wrapper .project-description .links .link a,
.page-404 a {
  text-align: center;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  padding: 10px 30px;
  display: block;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 5px;
}

footer .row.end {
  position: relative;
  background: white;
  padding-top: 2%;
  padding-bottom: 2%;
  height: 100px !important;
  max-height: 100px !important;
}

footer .row.end img.footer-logo {
  position: absolute;
  height: 40px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

footer .row.end .credits {
  position: absolute;
  right: 0%;
  top: calc(50% + 20px);
  -webkit-transform: translate(-100%, -50%);
  transform: translate(-100%, -50%);
  /* FRED: color doesnt exist in design, changed to #1f2233*/
  /*color: #3d464d;*/
  color: #1f2233;
  letter-spacing: 4px;
  font-size: 12px;
}

/* adding livro de reclamacoes START */
footer .row.end .livro {
  position: absolute;
  left: 0%;
  top: calc(50% + 20px);
  -webkit-transform: translate(100%, -50%);
  transform: translate(100%, -50%);
  color: #1f2233;
  letter-spacing: 4px;
  font-size: 12px;
}
/* adding livro de reclamacoes END */

footer .row.end .credits a,
footer .row.end .credits a:hover,
footer .row.end .livro a,
footer .row.end .livro a:hover {
  color: black !important;
}

.js-slider {
  height: 100vh;
}

.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  /* FRED: increased size to 50 px like other arrows */
  /*width: 30px;
	height: 30px;*/
  /*width: 50px;
	height: 50px;*/
  padding: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
  z-index: 999;
  padding: 30px;
}
.material-icons {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 24px; /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  -webkit-font-feature-settings: "liga";
  font-feature-settings: "liga";
}
.slick-next {
  left: 100%;
  -webkit-transform: translate(-100%, -50%);
  transform: translate(-100%, -50%);
}

.slick-prev:before,
.slick-next:before {
  content: "\e409";
  display: block;
  /* FRED: increased size to 50 px like other arrows */
  /*width: 30px;
	height: 30px;*/
  width: 50px;
  height: 50px;
  font-size: 30px !important;
  border-radius: 50%;
  border: 2px solid #000;
  line-height: 48px !important;
  opacity: 0.75;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: all ease-in-out 0.8s;
  transition: all ease-in-out 0.8s;

  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;

  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  -webkit-font-feature-settings: "liga";
  font-feature-settings: "liga";
}
#scrollDown {
  background: transparent !important;
  outline: none;
  border: none;
  -webkit-transform: rotateZ(90deg) translateY(50%);
  transform: rotateZ(90deg) translateY(50%);
  overflow: visible;
  height: 80px !important;
  width: 80px !important;
  display: inline-block;
  /* FRED : new icon appears higher, which creates superpositions on samsung 9 landscape - to fix this changing padding left to 30px to make up for the 80px height - due to 90deg rotation left = top padding*/
  padding: 0 0 0 0;
}
/* Fred on samsung galaxy s9 landscape the icon still bites a bit into the text, so making a media query just for this device.*/
@media screen and (device-width: 740px) and (device-height: 360px) and (orientation: landscape) {
  #scrollDown {
    height: 60px !important;
    width: 60px !important;
    padding: 0 0 0 30;
  }
}

#scrollDown.arrow:before {
  content: "\e409";
  display: block;
  /* FRED: increased size to 50 px like other arrows */
  /*width: 30px;
	height: 30px;*/
  width: 50px;
  height: 50px;
  font-size: 30px !important;
  border-radius: 50%;
  border: 2px solid #000;
  line-height: 50px !important;
  opacity: 1;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: all ease-in-out 0.8s;
  transition: all ease-in-out 0.8s;

  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;

  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  -webkit-font-feature-settings: "liga";
  font-feature-settings: "liga";
}
.slick-prev:before {
  content: "\e408";
  -webkit-transition: all ease-in-out 0.8s;
  transition: all ease-in-out 0.8s;
}
.slick-next:before {
  color: black;
  -webkit-transition: all ease-in-out 0.8s;
  transition: all ease-in-out 0.8s;
}
.slick-next.light:before {
  color: white;
  border: 2px solid #fff;
  -webkit-transition: all ease-in-out 0.8s;
  transition: all ease-in-out 0.8s;
}

.slick-prev:before {
  color: black;
  -webkit-transition: all ease-in-out 0.8s;
  transition: all ease-in-out 0.8s;
}
.slick-prev.light:before {
  color: white;
  border: 2px solid #fff;
  -webkit-transition: all ease-in-out 0.8s;
  transition: all ease-in-out 0.8s;
}

/*Animation overrides*/
.hvr-underline-from-center:before {
  height: 1px;
  /* FRED: background color doesnt exist in design, changed to #1f2233*/
  /*background: #3d464d;*/
  background: #1f2233;
}
.hvr-sweep-to-top:before {
  /* Not sure what this function is for but it overides project button colors on hover for me, so changed the color*/
  /*background: #3d464d;*/
  background: #1f2233;
}
body {
  overflow: hidden;
  pointer-events: none;
}

body section,
body footer {
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all ease-in-out 1.5s;
  transition: all ease-in-out 1.5s;
}
body .section,
body footer {
  min-height: 900px !important;
}

body.loaded {
  overflow-y: scroll;
  pointer-events: all;
}
body.loaded section,
body.loaded footer {
  -webkit-transition: all ease-in-out 1.5s;

  transition: all ease-in-out 1.5s;
  opacity: 1;
  pointer-events: all;
}

body section.loader-cover {
  -webkit-transition: all ease-in-out 1.5s;
  transition: all ease-in-out 1.5s;
  width: 100vw;
  height: 100vh;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1 !important;
  z-index: 998;
}
body section.loader-cover .quote,
body section.loader-cover .arrow {
  visibility: hidden;
}

body.loaded section.loader-cover {
  -webkit-transition: all ease-in-out 1s;
  transition: all ease-in-out 1s;
  opacity: 0 !important;
  pointer-events: none;
  width: 100vw;
  height: 100vh;
}

body section.loader-cover .wrapper .logo {
  opacity: 0;
  -webkit-transition: opacity ease 1s;
  transition: opacity ease 1s;
}
body.started section.loader-cover .wrapper .logo {
  opacity: 1;
  -webkit-transition: opacity ease 1s;
  transition: opacity ease 1s;
}

footer .row.end .credits {
  cursor: pointer;
}

body .modal {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.308);
  padding: 2em;
  opacity: 0;
  top: 0;
  left: 0;
  pointer-events: none;

  box-sizing: border-box;
  transition: all 0.26s ease-in-out;
  -webkit-transition: all 0.26s ease-in-out;
  -moz-transition: all 0.26s ease-in-out;
  -ms-transition: all 0.26s ease-in-out;
  -o-transition: all 0.26s ease-in-out;
  font-family: "miller-display", serif;
  line-height: 24px;
  font-size: 14px;
  letter-spacing: 1px;

  display: flex;
  color: #292929;

  overflow: scroll;
}
body .modal .container {
  max-width: 1200px;
  transition: all 0.6s ease-in-out;
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  -ms-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  top: -50vh;
  position: relative;
  opacity: 0;
}
body .modal hr {
  border-bottom: 1px solid #292929;
  max-width: 30px;
  margin-left: 0;
  margin-bottom: 0;
  padding: 0;
  display: block;
}
body .modal .close__btn {
  position: absolute;
  right: 0.2em;
  top: 0.2em;
  cursor: pointer;
  transition: all 0.26s ease-in-out;
  -webkit-transition: all 0.26s ease-in-out;
  -moz-transition: all 0.26s ease-in-out;
  -ms-transition: all 0.26s ease-in-out;
  -o-transition: all 0.26s ease-in-out;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}

body .modal .close__btn:hover {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
}

body .modal.active {
  pointer-events: all;

  opacity: 1;
  transition: all 1s ease-in-out;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -ms-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
}
body .modal.active .container {
  transition: all 1s ease-in-out;
  top: 0vh;
  position: relative;
  opacity: 1;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -ms-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
}
body .modal .row {
  width: 100%;
  display: inline-block;
  position: relative;
}

.modal strong {
  font-weight: 600;
  color: #161616;
  margin-bottom: 0.5em;
  font-size: 1.1em;
}
body .modal .container {
  height: auto;
  width: 100%;
  margin: auto;
  display: inline-block;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  background: white;
  padding: 2em;
  box-sizing: border-box;
}
body .modal h2 {
  font-size: 2em;

  line-height: 1.2em;
}

body .modal .footer-logo {
  padding: 2em 0;
  max-width: 100%;
  width: 80%;

  box-sizing: border-box;
}

body .modal a,
body .modal a:visited,
body .modal a:focus {
  color: #3f3f3f;
  transition: color 0.26s ease-in-out;
  cursor: pointer;
  -webkit-transition: color 0.26s ease-in-out;
  -moz-transition: color 0.26s ease-in-out;
  -ms-transition: color 0.26s ease-in-out;
  -o-transition: color 0.26s ease-in-out;
}

body .modal a:hover {
  color: #292929;
  text-decoration: underline;
  transition: color 0.26s ease-in-out;
  -webkit-transition: color 0.26s ease-in-out;
  -moz-transition: color 0.26s ease-in-out;
  -ms-transition: color 0.26s ease-in-out;
  -o-transition: color 0.26s ease-in-out;
}
body .modal h3 {
  font-size: 1.8em;
  line-height: 1.2em;
  margin-bottom: 1em;
}

body .modal p {
  font-size: 1.1em;
  font-weight: 300;
}

body .modal .container .cell {
  width: 33.333%;
  float: left;
  padding: 0.5em;

  box-sizing: border-box;
}

small {
  font-size: 86%;
}

@media only screen and (max-width: 1100px) {
  .js-slider {
    height: 100vh;
  }

  .js-slider .slick-slide > div {
    height: 100%;
  }

  .js-slider img {
    width: 100%;
    display: block;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
  }
  .project-description-wrapper .logo {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: center;
  }
  .project-description-wrapper .logo img {
    margin-left: 0;
  }

  .project-description-wrapper .project-description {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    margin-top: 60px;
  }
  .project-description-wrapper .project-description .project-text p {
    width: 100%;
  }
  .project-description-wrapper .project-description .links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    display: block;
  }
  .project-description-wrapper .project-description .links .link {
    max-width: 160px;
    display: block;
    max-width: 100%;
  }
  .project-description-wrapper .project-description .links .link a {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 30px;
  }
  footer {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
  }
  footer .row.end {
    position: relative;
    background: white;
    padding-top: 2%;
    padding-bottom: 2%;
    height: 200px !important;
    max-height: 200px !important;
    text-align: center;
    margin-top: -1px;
  }

  footer .row.end img.footer-logo {
    position: relative;
    height: 40px;
    left: 0%;
    top: 0%;
    -webkit-transform: none;
    transform: none;
    width: 100%;
    display: block;
  }
  footer .row.end .credits {
    position: relative;
    right: 0%;
    top: 0;
    -webkit-transform: none;
    transform: none;
    /* FRED : color doesn't exist in design, changed for #1f2233*/
    /*color: #3d464d;*/
    color: #1f2233;
    letter-spacing: 4px;
    font-size: 12px;
    display: block;
    /* FRED: added margin and padding to replicate 200% of gap above logo on mobile for credits*/
    /*margin-top:30px;*/
    margin-top: 100px;
    padding-top: 4%;
    margin-bottom: 100px;
  }
  footer .row.end .livro {
    position: relative;
    left: 0%;
    top: 0;
    -webkit-transform: none;
    transform: none;
    /* FRED : color doesn't exist in design, changed for #1f2233*/
    /*color: #3d464d;*/
    color: #1f2233;
    letter-spacing: 4px;
    font-size: 12px;
    display: block;
    /* FRED: added margin and padding to replicate 200% of gap above logo on mobile for credits*/
    /*margin-top:30px;*/
    margin-top: 100px;
    padding-top: 4%;
  }
}

@media only screen and (max-width: 768px) {
  body .modal .container .cell {
    width: 100%;
  }

  body .modal .container {
    border-radius: 0px;
    padding: 0.8em;
  }
  footer .row.end .credits {
    margin-bottom: 100px;
    padding-bottom: 80px;
  }

  body .modal .close__btn {
    position: relative;
    float: right;
    margin-bottom: 10px;
  }
}
