@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem); }
  20% {
    opacity: 0;
    transform: translateX(-10rem); }
  /* 80% {
        transform: translateX(1rem); } */
  100% {
    opacity: 1;
    transform: translateX(0); } }

@keyframes moveInLeftHeader {
  0% {
    opacity: 0;
    transform: translateX(-10rem); }
  10% {
    opacity: 0;
    transform: translateX(-10rem); }
  80% {
    transform: translateX(5rem); }
  100% {
    opacity: 1;
    transform: translateX(0); } }

@keyframes moveInTop {
  0% {
    opacity: 0;
    transform: translateY(-10rem); }
  80% {
    transform: translateY(1rem); }
  100% {
    opacity: 1;
    transform: translateY(0); } }

@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(10rem); }
  100% {
    opacity: 1;
    transform: translateY(0); } }

@keyframes moveInBottomProject {
  0% {
    opacity: 0;
    transform: translateY(1rem); }
  100% {
    opacity: 1;
    transform: translateY(0); } }

* {
  /* margin: 0;
    padding: 0; */
  box-sizing: border-box; }

body, html {
  height: 100%; }

body,
html {
  font-size: 62.5%;
  font-family: "ceragr"; }

@font-face {
  font-family: "ceragr";
  src: url("../../fonts/Cera GR Light.otf");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: "ceragr-medium";
  src: url("../../fonts/Cera GR Medium.otf");
  font-weight: normal;
  font-style: normal; }

.title {
  transform: rotate(180deg);
  margin-top: 7vh;
  font-size: 1.6rem;
  writing-mode: vertical-rl;
  display: inline-block;
  visibility: hidden;
  color: #97999c; }

a {
  color: inherit;
  text-decoration: none; }
  a:hover {
    color: #e0001b; }

.section-title {
  font-size: 4rem;
  font-family: "ceragr-medium";
  margin-bottom: 3rem; }

.contact__section-subtitle {
  margin-bottom: 0;
  font-size: 1.5rem; }
  .contact__section-subtitle:nth-of-type(2) {
    margin-top: 3rem; }

.contact__section-text {
  margin-top: 0; }

.welcome__section-paragraph {
  font-family: "ceragr-medium"; }
  .welcome__section-paragraph:last-of-type {
    font-size: 4.5rem; }

.color-red {
  color: #e0001b; }

.color-gray {
  color: #97999c; }

@media only screen and (max-width: 768px) {
  .title {
    transform: unset;
    padding-left: 1rem;
    margin-top: unset;
    writing-mode: unset;
    display: inline-block;
    visibility: visible; } }

.bottom-of-div {
  position: absolute;
  bottom: 0px; }

.display-none {
  display: none; }

.fs-16 {
  font-size: 1.6rem; }

.fit-content {
  width: -webkit-fill-available; }

.placeholder-1 {
  width: 425px;
  height: 422px; }

.placeholder-2 {
  width: 425px;
  height: 242px; }

.placeholder-3 {
  width: 425px;
  height: 323px; }

.cursor-pointer {
  cursor: pointer; }

.welcome__section {
  background-color: #e0e1e3;
  color: #464749; }
  .welcome__section-logo {
    background-image: url("../../images/PINlogo.png");
    background-size: contain;
    background-repeat: no-repeat;
    height: 20rem;
    width: 20rem;
    margin-bottom: 1rem;
    margin-top: 0;
    animation: moveInLeft 1.2s ease-out;
    margin-left: 8vw; }
  .welcome__section-content p {
    text-align: left;
    font-size: 3rem;
    line-height: 2rem;
    font-weight: 500;
    margin-left: 10vw; }
    .welcome__section-content p:first-of-type {
      margin-bottom: 4rem; }
    .welcome__section-content p:nth-of-type(2) {
      margin-bottom: 5rem; }

@media only screen and (max-width: 768px) {
  .welcome__section-logo {
    height: 10rem;
    width: 15rem;
    animation: unset;
    margin-left: 5vw; }
  .welcome__section-content {
    margin-top: 5rem; }
    .welcome__section-content p {
      line-height: unset;
      font-weight: 500;
      margin-left: 5vw; }
      .welcome__section-content p:first-of-type {
        margin-bottom: 2rem; }
      .welcome__section-content p:nth-of-type(2) {
        margin-bottom: 3rem; } }

.portfolio__section {
  background-color: #f7f7f7;
  height: 100%;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  margin: 0 auto; }
  .portfolio__section-menu {
    margin-top: -10rem;
    text-align: right;
    font-size: 1.4rem;
    width: 80%;
    letter-spacing: 1px;
    margin-bottom: 7rem;
    font-weight: 600;
    cursor: pointer;
    color: grey;
    text-transform: uppercase; }
    .portfolio__section-menu span {
      padding: 3px; }
    .portfolio__section-menu span:hover {
      transition: all .4s;
      color: red; }
  .portfolio__section-content {
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 0 auto; }
  .portfolio__section::-webkit-scrollbar {
    display: none; }
  .portfolio__section-project--small {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: .5rem;
    grid-template-areas: ". . ." ". . ."; }
  .portfolio__section-project {
    position: relative;
    box-shadow: 0 8px 6px -6px black;
    cursor: pointer;
    display: flex;
    flex-direction: column; }
    .portfolio__section-project img {
      width: fit-content; }
    .portfolio__section-project--text {
      position: absolute;
      visibility: hidden;
      color: black;
      font-size: 1.6rem;
      background-color: rgba(255, 255, 255, 0.8);
      height: 30rem;
      width: 30rem; }
      .portfolio__section-project--text .description {
        height: 20%;
        margin-top: 70%;
        margin-left: 10%; }
        .portfolio__section-project--text .description h1 {
          font-size: 1.6rem;
          margin: 0;
          letter-spacing: 0.2rem;
          font-weight: 400; }
        .portfolio__section-project--text .description p {
          font-size: 1.8rem;
          color: #464749;
          font-weight: 600;
          margin-top: 1rem; }
    .portfolio__section-project:hover .portfolio__section-project--text {
      visibility: visible; }
    .portfolio__section-project--individual {
      height: 100%; }
      .portfolio__section-project--individual-big {
        /* background-image: url(images/project.jpg); */
        background-image: linear-gradient(to right bottom, rgba(235, 139, 175, 0.3), rgba(86, 177, 177, 0.3)), url(../images/project.jpg);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        height: 60vh;
        width: 95%;
        box-shadow: 0 8px 6px -6px black;
        margin-bottom: 1rem;
        border-radius: 3px; }
      .portfolio__section-project--individual-header {
        font-weight: 600; }
      .portfolio__section-project--individual-text {
        margin-top: 5rem;
        line-height: 1.6;
        font-size: 1.6rem;
        width: 80%;
        font-weight: 500;
        margin-bottom: 10rem; }

@media only screen and (max-width: 992px) {
  .portfolio__section {
    margin: unset; }
    .portfolio__section-menu {
      margin-top: 5vw;
      text-align: center;
      width: 100%;
      margin-bottom: 2rem; }
    .portfolio__section-project--small {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 1fr 1fr;
      gap: .5rem;
      grid-template-areas: ". ." ". ."; } }

@media only screen and (max-width: 768px) {
  .portfolio__section {
    margin: unset; }
    .portfolio__section-menu {
      margin-top: 5vw;
      text-align: center;
      width: 100%;
      margin-bottom: 2rem; }
    .portfolio__section-project--small {
      display: grid;
      grid-template-columns: 1fr;
      grid-template-rows: 1fr;
      gap: .5rem;
      grid-template-areas: "." "."; } }

.about__section {
  background-color: #c7c9cb;
  width: 80%;
  color: #464749; }
  .about__section-content {
    margin-left: 10vw; }
    .about__section-content p {
      font-size: 1.6rem; }

@media only screen and (max-width: 768px) {
  .about__section-content {
    margin: 5vw; }
    .about__section-content p {
      line-height: unset;
      font-weight: 500; } }

.clients__section {
  color: #464749;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none; }
  .clients__section-color-small {
    background-color: #e0001b; }
  .clients__section-color-big {
    background: linear-gradient(90deg, #e0001b 7%, #dbd7db 7%, #dbd7db 10%, #f7f7f7 10%, #f7f7f7 90%, white 90%); }
  .clients__section::-webkit-scrollbar {
    display: none; }
  .clients__section-content {
    font-size: 1.6rem;
    width: 60%;
    margin: 0 auto;
    margin-top: -20rem; }
    .clients__section-content p {
      font-size: 1.6rem; }
    .clients__section-content ul {
      line-height: 4rem;
      font-size: 1.6rem; }
  .clients__section-images {
    display: flex;
    justify-content: space-between; }

@media only screen and (max-width: 768px) {
  .clients__section-content {
    margin: 5vw 10%;
    width: 90vw; }
    .clients__section-content p {
      line-height: unset;
      font-weight: 500; }
  .clients__section-title.section-big {
    padding: 10px 10%; }
  .clients__section-color-big {
    background: linear-gradient(90deg, #e0001b 7%, #dbd7db 7%, #dbd7db 10%, #f7f7f7 10%, #f7f7f7 100%); } }

.contact__section {
  background-color: #313133;
  color: white;
  height: 7vh;
  transition: height .5s;
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none; }
  .contact__section::-webkit-scrollbar {
    display: none; }
  .contact__section:hover {
    cursor: pointer; }
  .contact__section:hover .contact__section-title {
    transition: transform .4s ease-out;
    transform: translateX(0.7rem);
    cursor: pointer; }
  .contact__section-title {
    text-transform: uppercase;
    margin-top: 0;
    margin-left: 1rem;
    color: #97999c;
    font-size: 1.9rem;
    text-align: left; }
  .contact__section-content {
    margin-left: 10vw;
    display: flex;
    flex-direction: row;
    font-size: 1.6rem;
    margin-top: -5rem;
    line-height: 2rem;
    animation: moveInBottom .8s ease-out;
    padding-top: 4rem;
    min-height: 25rem; }
    .contact__section-content--column {
      position: relative;
      width: 23%; }
      .contact__section-content--column:not(:first-child) {
        margin-left: 3rem; }
      .contact__section-content--column:nth-of-type(4) {
        margin-top: 3rem;
        width: 5%; }
      .contact__section-content--column:last-of-type {
        margin-top: 3rem;
        width: 85%; }
  .contact__section-img {
    filter: invert(1); }

@media only screen and (max-width: 768px) {
  .contact__section {
    position: unset;
    height: 5%; }
    .contact__section-content {
      flex-direction: column;
      margin: 5vw;
      padding-top: unset; }
      .contact__section-content--column {
        position: relative;
        width: 100%; }
        .contact__section-content--column:not(:first-child) {
          margin-left: unset; }
        .contact__section-content--column:nth-of-type(4) {
          margin-top: unset;
          width: unset; }
        .contact__section-content--column:last-of-type {
          margin-top: 1rem;
          width: 100%; }
    .contact__section-newsletter, .contact__section-gdpr {
      position: relative; } }

.site {
  overflow: hidden;
  display: flex;
  flex-direction: row;
  height: 100%;
  /* height: 93vh; */
  transition: height .5s; }

.section__big {
  width: 97%;
  transition: all .5s linear; }

.section__small {
  width: 1%;
  transition: all .8s;
  overflow: hidden; }

.section__small:hover .title {
  visibility: visible !important; }

.section__small:hover {
  cursor: pointer;
  width: 3.33%; }

.content-show {
  animation: moveInLeft 1s ease-in; }

.content-hide {
  display: none; }

.contactBig {
  height: 40vh; }

.rowSmall {
  height: 70vh; }

@media only screen and (max-width: 768px) {
  .site {
    flex-direction: column;
    height: 100%;
    transition: height .5s; }
  .section__big {
    width: 100%;
    height: 92%; }
    .section__big .title {
      padding-top: 10px; }
    .section__big .clients__section-title {
      padding: 10px 10%; }
  .section__small {
    width: 100%;
    height: 5%; }
  .section__small:hover {
    width: unset; }
  .content-show {
    animation: moveInBottom 1s ease-in; }
  .contactBig {
    height: 60vh; }
  .rowSmall {
    height: 70vh; } }
