@import url("https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");
#blocker {
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  top: 0px;
  left: 0px;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  display: none;
}

#loader {
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  top: 0px;
  left: 0px;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 1001;
}

#loader li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#loader #loader-ani {
  height: 128px;
  width: 128px;
  -webkit-animation: rotate 1.5s infinite linear;
          animation: rotate 1.5s infinite linear;
  border-radius: 50%;
  border: 4px solid #ffffff18;
  border-top: 4px solid white;
}

#loader #loader-msg {
  color: white;
  padding: 20px;
  height: 60px;
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

#error-msg {
  display: none;
  width: 100%;
  color: white;
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  bottom: 0px;
  padding: 5px 10px;
  left: 0px;
  font-size: 18px;
  font-weight: 400;
  border-left: 10px solid black;
  z-index: 1001;
  line-height: 40px;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}

#error-msg b {
  font-weight: 700;
  padding: 0px 0px 0px 7px;
}

#error-msg b:first-child {
  margin-left: 0px;
}

#error-msg strong {
  font-weight: 700;
}

.nr3-input-wrapper.nr3-messenger {
  padding-bottom: 0px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.nr3-input-wrapper.nr3-error {
  padding-bottom: calc(14px + 4px);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.nr3-input-wrapper.nr3-label-top {
  padding-top: calc((14px + 4px));
  text-transform: uppercase;
}

.nr3-textarea-wrapper {
  padding: 5px 0px;
}

.nr3-textarea-wrapper.nr3-messenger {
  padding-bottom: 0px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.nr3-textarea-wrapper.nr3-error {
  padding-bottom: calc(14px + 4px);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.nr3-textarea-wrapper.nr3-label-top {
  padding-top: calc((14px + 4px));
  text-transform: uppercase;
}

.nr3-input, .nr3-textarea {
  background: rgba(0, 0, 0, 0.2);
  border: 2px solid #fffb00;
  border-radius: 1px;
  display: -ms-grid;
  display: grid;
  gap: 0px;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  -ms-grid-columns: 40px 1fr 40px;
      grid-template-columns: 40px 1fr 40px;
  height: 40px;
}

.nr3-input.nr3-focus, .nr3-textarea.nr3-focus {
  background: rgba(0, 0, 0, 0.8);
  -webkit-animation: pulse 2000ms infinite;
          animation: pulse 2000ms infinite;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.nr3-input.nr3-focus label, .nr3-textarea.nr3-focus label {
  left: 0px !important;
}

.nr3-input.nr3-filled, .nr3-textarea.nr3-filled {
  -webkit-animation: none;
          animation: none;
}

.nr3-input.nr3-filled label, .nr3-textarea.nr3-filled label {
  left: 0px !important;
}

.nr3-input label, .nr3-textarea label {
  position: absolute;
  font-family: 'Roboto', 'Consolas';
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  color: rgba(255, 255, 255, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: 1px;
  height: 36px;
  font-size: 14px;
}

.nr3-input input, .nr3-input textarea, .nr3-textarea input, .nr3-textarea textarea {
  background: none;
  border: none;
  font-family: 'Roboto Mono', 'Consolas';
  z-index: 2;
  color: white;
  height: 100%;
  font-size: 14px;
  resize: none;
}

.nr3-input textarea, .nr3-textarea textarea {
  padding: 10px 0px;
}

.nr3-input span, .nr3-textarea span {
  display: none;
  position: absolute;
  bottom: 16px;
  left: -1px;
  opacity: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-size: 0.8rem;
}

.nr3-input i, .nr3-textarea i {
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #999;
  font-size: 24px;
}

.nr3-input.nr3-focus, .nr3-input.nr3-filled, .nr3-textarea.nr3-focus, .nr3-textarea.nr3-filled {
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  border-color: white;
}

.nr3-input.nr3-focus label, .nr3-input.nr3-filled label, .nr3-textarea.nr3-focus label, .nr3-textarea.nr3-filled label {
  opacity: 1;
  left: -1px;
  top: calc((-40px/1.8 - 14px/1.8));
  -webkit-transition: all 50ms ease;
  transition: all 50ms ease;
  font-size: 0.8rem;
  color: #ffe600;
}

.nr3-input.nr3-filled label, .nr3-textarea.nr3-filled label {
  color: rgba(255, 255, 255, 0.8);
}

.nr3-input.nr3-icon-start input, .nr3-input.nr3-icon-start textarea, .nr3-textarea.nr3-icon-start input, .nr3-textarea.nr3-icon-start textarea {
  -ms-grid-column: 2;
  -ms-grid-column-span: 2;
  grid-column: 2/4;
  padding-right: 10px;
}

.nr3-input.nr3-icon-start label, .nr3-textarea.nr3-icon-start label {
  left: 40px;
}

.nr3-input.nr3-icon-end label, .nr3-textarea.nr3-icon-end label {
  left: 10px;
}

.nr3-input.nr3-icon-end i, .nr3-textarea.nr3-icon-end i {
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-column: 3/4;
}

.nr3-input.nr3-icon-end input, .nr3-input.nr3-icon-end textarea, .nr3-textarea.nr3-icon-end input, .nr3-textarea.nr3-icon-end textarea {
  position: absolute;
  width: calc(100% - 40px - 40px/4);
  left: 10px;
}

.nr3-input.nr3-messenger, .nr3-textarea.nr3-messenger {
  margin-bottom: 0px;
}

.nr3-input.nr3-error, .nr3-textarea.nr3-error {
  background: rgba(180, 0, 0, 0.2);
  border-color: #ff0000 !important;
}

.nr3-input.nr3-error *, .nr3-textarea.nr3-error * {
  color: #ff0000 !important;
}

.nr3-input.nr3-error span, .nr3-textarea.nr3-error span {
  margin-bottom: 0px;
  bottom: -16px;
  opacity: 1;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.nr3-textarea {
  height: 100px;
}

.nr3-textarea i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 7px;
}

@-webkit-keyframes pulse {
  50% {
    border-color: rgba(255, 255, 255, 0.486);
  }
}

@keyframes pulse {
  50% {
    border-color: rgba(255, 255, 255, 0.486);
  }
}

* {
  font-size: 12pt;
  font-weight: 400;
  font-family: 'Titillium Web', sans-serif;
  outline: none;
  list-style: none;
  padding: 0px;
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
}

html, body {
  min-height: 100vh;
  width: 100%;
}

.preload {
  -webkit-transition: none !important;
  transition: none !important;
}

button {
  cursor: pointer;
}

.home {
  background: radial-gradient(ellipse at left top, #313131 0%, #111111 100%);
}

.logo {
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6rem;
  font-weight: 300;
}

.logo b {
  font-size: inherit;
  font-weight: 700;
}

.wrapper {
  display: -ms-grid;
  display: grid;
  min-height: 100vh;
  margin: 0px auto;
  -ms-grid-columns: 80px 1fr;
      grid-template-columns: 80px 1fr;
  -ms-grid-rows: auto 1fr;
      grid-template-rows: auto 1fr;
      grid-template-areas: '_sidebar _header' '_sidebar _main';
}

@media only screen and (max-width: 1000px) {
  .wrapper {
        grid-template-areas: '_mobileheader _mobileheader' '_main _main';
  }
}

.wrapper .mobile-header {
  grid-area: _mobileheader;
  width: 100%;
  height: 80px;
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  z-index: 100;
  display: none;
}

@media only screen and (max-width: 1000px) {
  .wrapper .mobile-header {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto 1fr auto;
        grid-template-columns: auto 1fr auto;
  }
}

.wrapper .mobile-header img {
  width: 20px;
}

.wrapper .mobile-header li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 20px;
}

.wrapper .mobile-header li:last-child {
  -webkit-box-pack: end !important;
      -ms-flex-pack: end !important;
          justify-content: flex-end !important;
}

.wrapper .sidebar {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 1;
  grid-area: _sidebar;
  background: rgba(0, 0, 0, 0.5);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  -ms-grid-rows: 40px 40px 1fr auto;
      grid-template-rows: 40px 40px 1fr auto;
  padding: 28px 0px 5vh 0px;
  width: 80px;
  height: 100vh;
  position: fixed;
  z-index: 101;
}

@media only screen and (max-width: 1000px) {
  .wrapper .sidebar {
    display: none;
  }
}

.wrapper .sidebar a {
  color: white;
}

.wrapper .sidebar li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #666;
  font-size: 1.2rem;
}

.wrapper .sidebar li .social li {
  padding: 1vh 0px;
}

.wrapper .sidebar li .social li img {
  width: 24px;
}

.wrapper .sidebar li.active {
  color: #EBEBEB;
  border-bottom: 3px solid #ffe600;
  font-weight: 700;
}

.wrapper .sidebar li.active a {
  font-weight: 700;
  color: white;
}

.wrapper .header {
  z-index: 10;
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: _header;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1fr;
      grid-template-columns: auto 1fr;
  padding: 5vh 5vh 0px calc(5vh + 80px);
  position: absolute;
  width: 100%;
}

@media only screen and (max-width: 1000px) {
  .wrapper .header {
    display: none;
  }
}

.wrapper .header .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.wrapper .header .nav ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto auto auto;
      grid-template-columns: auto auto auto auto;
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  gap: 40px;
  padding-right: 4px;
}

.wrapper .header .nav ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 40px;
}

.wrapper .header .nav ul li a {
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: #ddd;
  border-top: 4px solid transparent;
  border-bottom: 1px solid transparent;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  font-size: 1.0rem;
}

.wrapper .header .nav ul li a:hover {
  color: #fff;
  border-bottom: 1px dotted #ffe600;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.wrapper .header .nav ul li a.active {
  color: #fff;
  border-bottom: 3px solid #ffe600;
  font-weight: 700;
  cursor: pointer;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.wrapper .main {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: _main;
  position: relative;
}

.wrapper .main .portfolio-wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20vw 20vw 20vw 1fr;
      grid-template-columns: 1fr 20vw 20vw 20vw 1fr;
  -ms-grid-rows: 1fr 70vh 1fr;
      grid-template-rows: 1fr 70vh 1fr;
  min-height: 100vh;
  overflow: hidden;
}

.wrapper .main .portfolio-wrapper .bar {
  background: #ffe600;
  -webkit-box-shadow: 0px 0px 100px rgba(0, 0, 0, 0.8) inset;
          box-shadow: 0px 0px 100px rgba(0, 0, 0, 0.8) inset;
  height: 100%;
  width: 100%;
  z-index: 1;
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-area: 1 / 3 / 4 / 4;
}

.wrapper .main .portfolio-wrapper .filter {
  height: 100%;
  width: 100%;
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-area: 1 / 3 / 4 / 4;
  background-color: #ffe600;
  z-index: 3;
  mix-blend-mode: soft-light;
}

.wrapper .main .portfolio-wrapper .text {
  z-index: 3;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 2 / 1 / 3 / 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 11vh;
  height: 100%;
  width: 100%;
  font-size: 11vh;
  padding-left: 1vw;
  color: rgba(255, 255, 255, 0.1);
  font-weight: 700;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-align: center;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  overflow: hidden;
  text-transform: uppercase;
}

@media only screen and (max-width: 1000px) {
  .wrapper .main .portfolio-wrapper .text {
    -webkit-transform: unset;
            transform: unset;
    -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
            writing-mode: unset;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 5;
    grid-area: 1 / 1/ 3 / 6;
    font-size: 12vw;
    line-height: 12vw;
    color: white;
  }
}

.wrapper .main .portfolio-wrapper .type {
  z-index: 3;
  -webkit-transform: translateX(calc(20vw / 2));
          transform: translateX(calc(20vw / 2));
  font-size: 3rem;
  color: #EBEBEB;
  font-weight: 300;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 4;
  -ms-grid-column-span: 1;
  grid-area: 2 / 4 / 3 / 5;
  text-align: center;
  width: 100%;
}

@media only screen and (max-width: 1000px) {
  .wrapper .main .portfolio-wrapper .type {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 4;
    grid-area: 2 / 1 / 3 / 5;
  }
}

.wrapper .main .portfolio-wrapper .data {
  z-index: 3;
  font-size: 1.5rem;
  color: #EBEBEB;
  font-weight: 300;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  -ms-grid-column: 4;
  -ms-grid-column-span: 1;
  grid-area: 3 / 4 / 4 / 5;
  text-align: right;
  width: 100%;
}

@media only screen and (max-width: 700px) {
  .wrapper .main .portfolio-wrapper .data {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 4;
    -ms-grid-column-span: 2;
    grid-area: 3 / 4 / 4 / 6;
    padding-right: 10px;
  }
}

.wrapper .main .portfolio-wrapper .img-wrapper {
  position: relative;
  background: black;
  height: 100%;
  width: 100%;
  -webkit-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.4);
          box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.4);
  z-index: 2;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 3;
  grid-area: 2 / 2/ 3 / 5;
}

@media only screen and (max-width: 700px) {
  .wrapper .main .portfolio-wrapper .img-wrapper {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 5;
    grid-area: 1 / 1 / 4 / 6;
  }
}

.wrapper .main .portfolio-wrapper .img-wrapper .img {
  width: 100%;
  height: 100%;
  background: url(../img/bg.jpg), #000;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}

.wrapper .main .aaa {
  min-height: 100vh;
  background-color: #EBEBEB;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 80px;
}

@media only screen and (max-width: 700px) {
  .wrapper .main .aaa {
    padding: 20px 20px 80px 20px;
  }
}

.wrapper .main .aaa p {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.4rem;
}

.wrapper .main .aaa h2 {
  line-height: 1.6rem;
  font-size: 1.4rem;
  font-weight: 600;
}

.wrapper .main .aaa .img-wrapper {
  padding: 5px;
}

.wrapper .main .aaa .tb {
  background-size: cover;
  height: 120px;
  cursor: pointer;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.wrapper .main .aaa .slick-prev:before, .wrapper .main .aaa .slick-next:before {
  color: #909090;
}

.cards-wrapper {
  padding: 3vw;
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  margin: 0px auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 300px 300px 300px 300px 300px;
      grid-template-columns: 300px 300px 300px 300px 300px;
  gap: 20px;
}

@media only screen and (max-width: 1800px) {
  .cards-wrapper {
    -ms-grid-columns: 300px 300px 300px 300px;
        grid-template-columns: 300px 300px 300px 300px;
  }
}

@media only screen and (max-width: 1450px) {
  .cards-wrapper {
    -ms-grid-columns: 300px 300px 300px;
        grid-template-columns: 300px 300px 300px;
  }
}

@media only screen and (max-width: 1110px) {
  .cards-wrapper {
    -ms-grid-columns: 300px 300px;
        grid-template-columns: 300px 300px;
  }
}

@media only screen and (max-width: 700px) {
  .cards-wrapper {
    -ms-grid-columns: 300px;
        grid-template-columns: 300px;
  }
}

.cards-wrapper .card {
  background-color: black;
  background-size: cover;
  background-position: center center;
  height: 180px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5);
  border-radius: 2px;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr 40px;
      grid-template-rows: 1fr 40px;
  color: white;
  opacity: 0.3;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.cards-wrapper .card:hover {
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  background-color: #ffe600;
  opacity: 1.0;
  -webkit-filter: none;
          filter: none;
  -webkit-transform: scale(1.02) translateY(-5px);
          transform: scale(1.02) translateY(-5px);
}

.cards-wrapper a {
  color: white;
}

.tipos-wrapper {
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  display: -ms-grid;
  display: grid;
  margin: 30px auto;
  -ms-grid-columns: 250px 250px 250px 250px;
      grid-template-columns: 250px 250px 250px 250px;
  gap: 20px;
}

@media only screen and (max-width: 1400px) {
  .tipos-wrapper {
    width: 80%;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

@media only screen and (max-width: 1000px) {
  .tipos-wrapper {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.tipos-wrapper a {
  width: 100%;
}

.tipos-wrapper .card {
  background-color: black;
  background-size: cover;
  background-position: center center;
  height: 250px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5);
  border-radius: 2px;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr;
      grid-template-rows: 1fr;
  color: white;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.tipos-wrapper .card:hover {
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  opacity: 1.0;
  -webkit-filter: none;
          filter: none;
  -webkit-transform: scale(1.02) translateY(-5px);
          transform: scale(1.02) translateY(-5px);
}

.tipos-wrapper .card img {
  width: 150px;
}

.tipos-wrapper div:nth-child(2) {
  color: white;
  font-size: 2rem;
}

ul.title {
  display: -ms-grid;
  display: grid;
  padding: 0px 5vw;
}

@media only screen and (max-width: 1400px) {
  ul.title {
    margin: 0px;
    padding: 0px;
  }
}

ul.title li {
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

ul.title li:first-child {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 1 / 1 / 2 / 2;
  font-size: clamp(2.6rem, 13vw, 10rem);
  color: rgba(255, 255, 255, 0.03);
  font-weight: 900;
}

ul.title li:last-child {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 1 / 1 / 2 / 2;
  font-size: clamp(1.5rem, 9vw, 5rem);
  color: white;
}

.portefolio, .contactos {
  padding: 0px 5vw;
}

.homepage {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-area: 1 / 2 / 3 / 3;
  width: calc(100vw - 80px);
  overflow: hidden;
}

@media only screen and (max-width: 1000px) {
  .homepage {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 1 / 1 / 2 / 2;
    width: calc(100vw);
  }
}

.homepage .bgs {
  opacity: 0.5;
  width: calc(100vw - 80px);
  height: 100vh;
  background-size: cover;
  background-position: center;
  -webkit-box-shadow: 0px 0px 200px 100px black inset;
          box-shadow: 0px 0px 200px 100px black inset;
}

@media only screen and (max-width: 1000px) {
  .homepage .bgs {
    -webkit-box-shadow: 0px 0px 50px 20px black inset;
            box-shadow: 0px 0px 50px 20px black inset;
  }
}

.servicos {
  padding: 0px 5vw;
  padding-top: 100px;
}

.servicos .block2 {
  padding: 0px 10vw 5vw 10vw;
}

@media only screen and (max-width: 1400px) {
  .servicos .block2 {
    padding: 0px 5vw;
  }
  .servicos .block2 p {
    text-align: left;
  }
}

.servicos .block1 {
  padding: 0px 8vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.servicos p {
  color: white;
  font-size: 1.4rem;
  margin-bottom: 40px;
  font-weight: 300;
  text-align: justify;
  line-height: 1;
}

.servicos p.title {
  font-weight: 600;
}

.servicos .servicos-icons {
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 250px 250px 250px 250px;
      grid-template-columns: 250px 250px 250px 250px;
  margin: 50px auto 100px auto;
  gap: 20px;
}

@media only screen and (max-width: 1400px) {
  .servicos .servicos-icons {
    width: 100%;
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
  }
}

@media only screen and (max-width: 1000px) {
  .servicos .servicos-icons {
    width: 100%;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

@media only screen and (max-width: 760px) {
  .servicos .servicos-icons {
    width: 100%;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.servicos .servicos-icons li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.servicos .servicos-icons li:first-child {
  background-color: black;
  height: 250px;
  border-radius: 3px;
  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
}

.servicos .servicos-icons li:last-child {
  font-size: 1.2rem;
  color: white;
  text-align: center;
  height: 70px;
  font-weight: 300;
  line-height: 1.3;
  text-transform: uppercase;
}

.servicos .servicos-icons img {
  width: 100px;
}

.nav-mobile {
  background: #111;
  position: fixed;
  left: 0px;
  top: 80px;
  height: calc(100vh - 80px);
  z-index: 10;
  width: 100%;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  opacity: 0;
  visibility: collapse;
}

@media only screen and (min-width: 1001px) {
  .nav-mobile {
    display: none;
  }
}

.nav-mobile.open {
  visibility: visible;
  opacity: 1;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.nav-mobile ul.menu {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  -ms-grid-rows: auto auto auto auto 1fr auto;
      grid-template-rows: auto auto auto auto 1fr auto;
  padding: 20px;
  height: 100%;
}

.nav-mobile ul.menu li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 40px;
}

.nav-mobile ul.menu li a {
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: #ddd;
  border-top: 4px solid transparent;
  border-bottom: 1px solid transparent;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  font-size: 1.0rem;
}

.nav-mobile ul.menu li a:hover {
  color: #fff;
  border-bottom: 1px dotted #ffe600;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.nav-mobile ul.menu li a.active {
  color: #fff;
  border-bottom: 3px solid #ffe600;
  font-weight: 700;
  cursor: default;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.nav-mobile ul.menu .social {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
}

@media only screen and (max-width: 1000px) {
  .nav-mobile ul.menu .social {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

.nav-mobile ul.menu .social img {
  width: 40px;
}

.nav-mobile ul.menu .social div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.nav-mobile ul.menu .lang {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  margin-bottom: 40px;
}

.nav-mobile ul.menu .lang img {
  width: 40px;
}

.nav-mobile ul.menu .lang div {
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.nav-mobile ul.menu .lang div a {
  font-size: 1.5rem;
  font-weight: 300;
}

.nav-mobile ul.menu .lang div.active {
  border-bottom: 3px solid #ffe600;
}

.nav-mobile ul.menu .lang div.active a {
  font-weight: 700;
  font-size: 1.5rem;
}

#nav-btn {
  background-color: transparent;
  border: none;
}

#formContactos {
  width: 50%;
  margin: 0px auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2fr;
      grid-template-columns: 1fr 2fr;
}

@media only screen and (max-width: 1400px) {
  #formContactos {
    width: 80%;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 1000px) {
  #formContactos {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

#formContactos ul {
  display: -ms-grid;
  display: grid;
  gap: 20px;
}

#formContactos ul li {
  text-align: center;
  color: white;
}

#formContactos ul li .contact-icon {
  font-size: 22rem;
}

@media only screen and (max-width: 1000px) {
  #formContactos ul li .contact-icon {
    font-size: 50vw;
  }
}

#formContactos ul:last-child {
  margin-bottom: 100px;
}

.nr3-input label, .nr3-textarea label {
  font-family: 'Titillium Web';
}

.btn-send {
  border: 3px solid #ffe600;
  background-color: #ffe600;
  color: black;
  font-weight: 700;
  padding: 5px 10px;
}

.right {
  text-align: right !important;
}

@media only screen and (max-width: 1000px) {
  .detalhes {
    padding: 20px;
  }
}

.detalhes h2 {
  margin-top: 20px;
}

.detalhes p:last-child {
  margin-bottom: 50px;
}

.splide {
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
}

.splide__arrow--prev {
  left: -3em !important;
}

@media only screen and (max-width: 1000px) {
  .splide__arrow--prev {
    display: none !important;
  }
}

.splide__arrow--next {
  right: -3em !important;
}

@media only screen and (max-width: 1000px) {
  .splide__arrow--next {
    display: none !important;
  }
}

.splide__pagination {
  bottom: -1.5em !important;
}

.splide-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.splide-wrapper-home {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.splide__arrow {
  background: none !important;
}

.splide__pagination__page {
  background: #b4b4b4 !important;
}

.splide__pagination__page.is-active {
  -webkit-transform: scale(1.8) !important;
          transform: scale(1.8) !important;
  background: #000000 !important;
}

.splide__slide img {
  max-width: 80vw;
}

@media only screen and (max-width: 1400px) {
  .splide__slide img {
    width: 75vw;
  }
}

@media only screen and (max-width: 1000px) {
  .splide__slide img {
    width: 100vw;
  }
}

#homelogo {
  width: 15vw;
  position: absolute;
  right: 0px;
  bottom: 0px;
  z-index: 10;
}

@media only screen and (max-width: 1000px) {
  #homelogo {
    right: 0px;
    bottom: 0px;
    width: 50vw;
  }
}

.iframe-container {
  position: relative;
  width: 75vw;
  padding-bottom: 56.25%;
  height: 0;
}

@media only screen and (max-width: 1000px) {
  .iframe-container {
    width: 100vw;
  }
}

.iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/*# sourceMappingURL=styles.css.map */