@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap");
*, html, body {
  margin: 0;
  padding: 0; }

html {
  font-size: 62.5%;
  scroll-behavior: smooth; }

body {
  -webkit-font-smoothing: antialiased; }

body, input, button, label, textarea, p {
  font-family: "Montserrat", sans-serif;
  font-size: 16px; }

button {
  cursor: pointer; }

ul {
  margin-block-start: 0;
  margin-block-end: 0; }

@media (max-width: 1280px) {
  html {
    font-size: 54%; } }

@media (max-width: 992px) {
  html {
    font-size: 52%; } }

@media (max-width: 768px) {
  html {
    font-size: 52%; } }

@media (max-width: 480px) {
  html {
    font-size: 50%; } }

.button, button {
  background-color: rgba(4, 19, 52, 1);
  color: white;
  border: 0;
  padding: 1.4rem 2rem;
  font-size: 18px;
  transition: backgroud-color 0.2s;
  text-transform: uppercase;
  align-items: center;
  justify-content: center;
  list-style-type: none;
  display: inline-block;
  text-align: center;
  max-width: 40rem;
  text-decoration: none; }
  .button:disabled, button:disabled {
    background: rgba(4, 19, 52, 1);
    font-weight: 400; }
  .button:hover:not([disabled]), button:hover:not([disabled]) {
    background: #0b307e;
    font-weight: 500;
    cursor: pointer; }
  @media (max-width: 480px) {
  .button, button {
    font-size: 16px; }
    .button .button-segments, button .button-segments {
      padding: 1.4rem 0.5rem; } }

#layout {
  display: flex;
  max-width: 1900px; }

#main {
  display: flex;
  width: 100%;
  flex-direction: column;
  border-right: 1px solid rgba(238, 238, 238, 0.933); }

.layout-portfolio div.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center; }

@media (max-width: 992px) {
  .layout-portfolio .container {
    padding: 0 6rem; } }

@media (max-width: 480px) {
  .layout-portfolio .container {
    padding: 0 3rem; } }

#sidebar {
  z-index: 5; }
  #sidebar .open-button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem;
    padding: 1.5rem;
    position: fixed;
    color: rgba(4, 19, 52, 1);
    background-color: white;
    border: none;
    z-index: 2;
    right: 0; }
    #sidebar .open-button:focus {
      outline: none; }
    #sidebar .open-button:hover {
      background: rgba(4, 19, 52, 1);
      font-weight: 500;
      cursor: pointer;
      color: white; }
  #sidebar .menu {
    background-color: rgba(4, 19, 52, 1);
    position: sticky;
    width: 25rem;
    height: 100vh;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    padding: 0 1rem;
    z-index: 3; }
    #sidebar .menu .close-button {
      display: none;
      justify-content: center;
      align-items: center;
      margin: 2rem;
      padding: 1.5rem;
      background-color: rgba(4, 19, 52, 1);
      color: white;
      width: 4rem;
      border: none;
      right: 0; }
      #sidebar .menu .close-button:focus {
        outline: none; }
      #sidebar .menu .close-button:hover {
        background: white;
        font-weight: 500;
        cursor: pointer;
        color: rgba(4, 19, 52, 1); }
    #sidebar .menu .content-logo {
      padding: 3rem;
      max-width: 32rem; }
      #sidebar .menu .content-logo .logo {
        width: 100%; }
    #sidebar .menu .navigation {
      text-transform: uppercase;
      display: flex;
      flex-direction: column;
      text-align: center;
      justify-content: center;
      align-items: center;
      height: auto;
      padding: 0;
      position: absolute;
      top: 50%;
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      width: 25rem; }
      #sidebar .menu .navigation .item {
        list-style: none;
        font-size: 18px; }
        #sidebar .menu .navigation .item + .item {
          margin-top: 4rem; }
        #sidebar .menu .navigation .item a {
          color: white;
          text-decoration: none;
          font-size: 18px; }
          #sidebar .menu .navigation .item a:hover, #sidebar .menu .navigation .item a.active {
            text-decoration: underline;
            font-weight: 600; }
    #sidebar .menu .social-content {
      display: flex;
      color: white;
      padding: 0;
      align-self: center;
      margin-bottom: 3rem;
      position: fixed;
      bottom: 0;
      z-index: 3; }
      #sidebar .menu .social-content .icon-item {
        list-style: none; }
        #sidebar .menu .social-content .icon-item + .icon-item {
          margin-left: 0.6rem; }
        #sidebar .menu .social-content .icon-item .icon-link {
          color: white;
          text-decoration: none;
          line-height: 4rem;
          height: 3.5rem;
          width: 3.5rem;
          display: block;
          border-style: solid;
          border-radius: 50%;
          border-width: 1px;
          display: flex;
          justify-content: center;
          align-items: center; }
          #sidebar .menu .social-content .icon-item .icon-link:hover {
            background: white;
            color: rgba(4, 19, 52, 1); }

@media (min-width: 992px) {
  #sidebar .open-button {
    display: none; } }

@media (max-width: 992px) {
  #sidebar .toggle-menu {
    display: block; }
    #sidebar .menu {
      position: fixed;
      height: 100%;
      overflow-x: hidden;
      right: -320px;
      transition: right 1s; }
      #sidebar .menu .close-button {
        display: flex;
        align-self: flex-end; }
      #sidebar .menu.open {
        right: 0; } }

@media (max-height: 768px) {
  #sidebar .menu .navigation .item + .item {
    margin-top: 3rem; } }

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 9rem; }
  footer .jobs {
    color: #09193d;
    display: flex;
    padding-inline-start: 0;
    padding-top: 4rem;
    list-style-type: none; }
    footer .jobs p {
      text-decoration: none;
      position: relative;
      margin-top: 0;
      margin-bottom: 0; }
      footer .jobs p + p {
        padding-left: 1.5rem; }
      footer .jobs p + p :before {
        content: "";
        width: 2px;
        height: 2px;
        border-radius: 50%;
        margin-left: 1rem;
        background: #000;
        position: absolute;
        left: -0.2em;
        top: 0.9rem; }
  footer .address {
    margin-top: 1rem;
    color: #09193d; }
  footer .copyright {
    margin-top: 2rem;
    font-size: 12px;
    color: #cdd0d6;
    text-align: center; }

@media (max-width: 992px) {
  footer .jobs {
    flex-flow: wrap;
    justify-content: center; }
    footer .address {
      text-align: center; } }

#welcome {
  display: flex;
  align-items: center;
  justify-content: center; }
  #welcome video {
    width: 100% !important;
    height: auto !important; }
  #welcome img {
    display: none; }
  @media (max-width: 480px) {
  #welcome {
    height: 100vh;
    background: url("../themes/bagattoli/assets/images/background.jpg") no-repeat center;
    padding: 0 3rem; }
    #welcome video {
      display: none; }

    #welcome img {
      display: flex;
      width: 100% !important; } }

#about .section-container {
  display: flex;
  align-items: center;
  padding: 9rem; }
  #about .section-container .title {
    padding-right: 6rem; }
    #about .section-container .title img {
      max-width: 36rem; }
  #about .section-container .content {
    line-height: 2em;
    max-width: 80rem;
    color: rgba(4, 19, 52, 1); }
  #about .video {
    display: flex;
    background: url("../themes/bagattoli/assets/images/background-video.png") no-repeat left;
    background-size: 56rem;
    background-position-x: 9rem;
    background-position-y: 0;
    margin-bottom: -40%;
    position: relative; }
  #about .video video {
    margin-top: 7rem;
    margin-left: 20rem;
    margin-bottom: 20rem;
    width: auto;
    height: 42rem; }

@media (min-width: 1441px) {
  #about .section-container {
    padding: 9rem 18rem; }
    #about .section-container .title {
      padding-right: 9rem; }
      #about .section-container .title img {
        max-width: 40rem; }
    #about .video {
      background-size: 70rem;
      background-position-x: 18rem;
      background-position-y: 0;
      margin-bottom: -33%; }
    #about .video video {
      margin-top: 9rem;
      margin-left: 33rem;
      margin-bottom: 20rem;
      height: 53rem; } }

@media (max-width: 1441px) {
  #about .section-container {
    padding: 9rem; }
    #about .title {
      padding-right: 6rem; }
      #about .title img {
        max-width: 32rem; }
    #about .video {
      margin-bottom: -36%; }
    #about .video {
      background-size: 60rem;
      background-position-x: 9rem; }
      #about .video video {
        margin-top: 8rem;
        margin-left: 22rem;
        height: 44rem; } }

@media (max-width: 1280px) {
  #about .video {
    margin-bottom: -40%; } }

@media (max-width: 992px) {
  #about .section-container {
    flex-direction: column;
    padding: 6rem; }
    #about .section-container .title {
      text-align: center;
      padding-right: 0; }
      #about .section-container .title img {
        max-width: 44rem;
        max-height: 16rem; }
    #about .section-container .content {
      text-align: center;
      margin-top: 3rem; }
    #about .video {
      padding: 0;
      background-position-x: 0;
      background-position-y: 0;
      background: none;
      margin-bottom: -6%;
      z-index: 1; }
    #about .video video {
      margin: 0;
      padding: 0;
      width: 100%; } }

@media (max-width: 768px) {
  #about .section-container .title {
    padding-right: 0;
    text-align: center; } }

@media (max-width: 480px) {
  #about .section-container {
    padding: 3rem; }
    #about .section-container .title img {
      max-width: 25rem; }
    #about .video {
      margin: 0;
      margin-left: 0rem;
      margin-bottom: 0rem; }
    #about .video video {
      height: auto; } }

#segments {
  background: url("../themes/bagattoli/assets/images/vector-segments.png") no-repeat bottom right, url("../themes/bagattoli/assets/images/background.jpg") no-repeat bottom;
  background-size: 70%, cover;
  height: 670px;
  display: flex;
  align-items: flex-end;
  padding: 9rem; }
  #segments .content-text {
    padding-bottom: 10rem;
    display: flex;
    flex-direction: column; }
  #segments .content-title img {
    max-width: 50rem; }
  #segments .content-subtitle {
    font-size: 2.5rem;
    max-width: 45rem;
    line-height: 1.5em;
    color: rgba(4, 19, 52, 1);
    margin: 4rem 0; }
  #segments .content-subtitle div {
    margin-top: 2rem; }

@media (min-width: 1441px) {
  #segments {
    background-size: 80%, cover;
    height: 1050px;
    padding: 9rem 18rem; }
    #segments .content-title img {
      max-width: 70rem; } }

@media (max-width: 1441px) {
  #segments {
    height: 940px;
    padding: 9rem; } }

@media (max-width: 992px) {
  #segments {
    height: auto; }
    #segments .content-text {
      padding: 0; }
    #segments .content-title img {
      max-width: 44rem;
      max-height: 12rem; }
    #segments .content-subtitle {
      max-width: 60rem;
      margin: 2rem 0; } }

@media (max-width: 480px) {
  #segments {
    height: 100vh;
    padding: 3rem;
    background-size: 100%, cover; }
    #segments div {
      width: 100%;
      align-self: center; }
    #segments .content-title {
      text-align: center; }
      #segments .content-title img {
        max-width: 35rem;
        max-height: 9rem; }
    #segments .content-subtitle {
      width: auto;
      text-align: center;
      margin: 6rem 0; } }

#team {
  background: url("../themes/bagattoli/assets/images/background-team.jpg") no-repeat;
  background-size: 75%;
  height: 815px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 9rem 10rem 9rem; }
  #team .content-text {
    width: 50rem; }
  #team .content-text .title img {
    max-width: 40rem; }
  #team .content-text .subtitle {
    font-size: 2.5rem;
    max-width: 46rem;
    line-height: 1.5em;
    color: rgba(4, 19, 52, 1); }
  #team .content {
    display: flex;
    align-self: flex-end; }
  #team .content .slider {
    align-self: flex-end; }
    #team .content .slider .slider-navigation {
      display: flex;
      flex-direction: row; }
      #team .content .slider .slider-navigation .slider-arrow {
        border-style: solid;
        border-color: rgba(4, 19, 52, 1);
        border-width: 1px;
        padding: 1rem;
        color: rgba(4, 19, 52, 1);
        display: block; }
        #team .content .slider .slider-navigation .slider-arrow + a {
          margin-left: 0.5rem; }
        #team .content .slider .slider-navigation .slider-arrow:hover {
          background: rgba(4, 19, 52, 1);
          color: #fff; }
  #team .content .content-image {
    display: flex;
    overflow: hidden;
    width: calc(360px + 1.5rem);
    height: 55rem; }
    #team .content .content-image .carousel-inner {
      display: flex;
      width: 100%; }
    #team .content .content-image img {
      border-top-color: white;
      border-top-width: 1.5rem;
      border-top-style: solid;
      border-left-style: solid;
      border-left-color: white;
      border-left-width: 1.5rem;
      max-height: 54rem; }

@media (min-width: 1441px) {
  #team {
    height: 1120px;
    padding: 0 18rem 13rem 18rem; } }

@media (max-width: 1441px) {
  #team {
    height: 890px; } }

@media (min-width: 992px) {
  #team .mobile-img {
    display: none; } }

@media (max-width: 992px) {
  #team {
    flex-direction: column;
    background: none;
    align-items: center;
    align-self: center;
    padding: 0 0 6rem;
    height: auto;
    width: auto; }
    #team .mobile-img {
      height: auto;
      width: 100%; }
    #team .content-text {
      height: auto;
      text-align: center;
      padding: 6rem 3rem; }
      #team .content-text .content-title img {
        max-width: 44rem;
        max-height: 12rem; }
      #team .content-text .subtitle {
        max-width: 60rem;
        margin: 3rem 0; }
    #team .content {
      width: auto;
      flex-direction: column-reverse;
      align-items: center;
      align-self: center; }
      #team .content .content-image {
        width: calc(311px + 1.5rem); }
      #team .content .slider {
        align-self: center;
        margin-top: 1rem; } }

@media (max-width: 480px) {
  #team .content-text {
    width: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; }
    #team .content-text .content-title img {
      max-width: 35rem;
      max-height: 9rem; }
    #team .content .content-image {
      width: 260px;
      height: 55rem; }
      #team .content .content-image img {
        border-width: 0;
        max-height: 54rem; } }

#contact {
  background: url("../themes/bagattoli/assets/images/background.jpg") no-repeat;
  padding: 9rem 9rem 3rem;
  background-size: cover; }
  #contact .content {
    display: flex; }
  #contact .content .content-form {
    display: flex;
    flex-direction: column;
    max-width: 45rem;
    padding: 4rem;
    background-color: white; }
    #contact .content .content-form .alert {
      margin-bottom: 2rem;
      text-align: center;
      margin-top: -7rem;
      border: 1px solid;
      width: auto;
      padding: 1rem; }
      #contact .content .content-form .alert.alert-danger {
        color: #bf2a2a; }
      #contact .content .content-form .alert.alert-success {
        color: green; }
    #contact .content .content-form form {
      background-color: white; }
      #contact .content .content-form form .invalid-feedback {
        margin-bottom: 2.5rem;
        margin-top: -2.5rem;
        color: #bf2a2a; }
      #contact .content .content-form form .sucess-msg {
        color: green;
        text-align: center; }
      #contact .content .content-form form label {
        text-transform: uppercase;
        font-size: 18px;
        width: 100%; }
      #contact .content .content-form form input {
        width: 100%;
        height: 5rem;
        border-top: none;
        border-left: none;
        border-right: none;
        margin-bottom: 2.5rem;
        border-bottom-color: #cdd0d6;
        border-bottom-width: 1px; }
        #contact .content .content-form form input.error {
          border-bottom: 1.5px solid #bf2a2a; }
        #contact .content .content-form form input:hover {
          border-bottom-color: #ce9584; }
        #contact .content .content-form form input:focus {
          outline: none; }
      #contact .content .content-form form textarea {
        padding-top: 2rem;
        width: 100%;
        border-top: none;
        border-left: none;
        border-right: none;
        border-bottom-color: #cdd0d6;
        border-bottom-width: 1px;
        line-height: 1.5em;
        resize: none;
        margin-bottom: 2.5rem; }
        #contact .content .content-form form textarea.error {
          border-bottom: 1.5px solid #bf2a2a; }
        #contact .content .content-form form textarea:hover {
          border-bottom-color: #ce9584; }
        #contact .content .content-form form textarea:focus {
          outline: none; }
      #contact .content .content-form form .content-button {
        text-align: center; }
  #contact .content .content-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 3rem;
    max-width: 45rem; }
  #contact .content .content-title img {
    max-width: 40rem; }
  #contact .content .content-subtitle {
    font-size: 2.5rem;
    line-height: 1.5em; }

@media (min-width: 1441px) {
  #contact {
    padding: 13rem 18rem 9rem;
    height: 930px; }
    #contact .content {
      height: 67rem;
      justify-content: space-around; }
      #contact .content .content-form {
        width: 72rem;
        padding: 9rem 6rem; }
        #contact .content .content-form textarea {
          height: 20rem; } }

@media (max-width: 1441px) {
  #contact .content-form {
    width: 57rem;
    padding: 9rem 6rem; }
    #contact .content-form textarea {
      height: 20rem; } }

@media (max-width: 992px) {
  #contact {
    padding: 6rem; }
    #contact .content {
      flex-direction: column-reverse;
      align-items: center; }
      #contact .content .content-form {
        max-width: 45rem;
        padding: 6rem 4rem; }
      #contact .content .content-text {
        max-width: 50rem;
        margin-bottom: 6rem;
        padding-left: 0; }
      #contact .content .content-title {
        align-self: center;
        margin-bottom: 3rem; }
        #contact .content .content-title img {
          max-width: 30rem; }
      #contact .content .content-subtitle {
        text-align: center; } }

@media (max-width: 480px) {
  #contact {
    padding: 6rem 3rem; }
    #contact .content .content-text {
      padding: 0; }
      #contact .content .content-title img {
        max-width: 30rem;
        max-height: 8rem; }
      #contact .content .content-form {
        width: auto;
        margin: 0;
        padding: 6rem 3rem; } }

section#cover {
  background: url("../themes/bagattoli/assets/images/cover-segments.jpg") no-repeat left;
  height: 445px;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center; }

@media (max-width: 1441px) {
  section#cover {
    max-height: 32rem; }
    section#cover img {
      max-width: 60rem; } }

@media (max-width: 992px) {
  section#cover {
    max-height: 25rem; }
    section#cover img {
      max-width: 40rem; } }

@media (max-width: 480px) {
  section#cover img {
    max-width: 35rem; } }

#navigation {
  display: flex;
  padding: 3rem 0;
  align-self: center; }
  #navigation .arrow {
    border: none;
    background: white;
    color: rgba(4, 19, 52, 1);
    padding: 0 3rem; }
  #navigation .arrow:hover {
    color: #ce9584; }
  #navigation .arrow:focus {
    outline: none; }
  #navigation .menu {
    width: 810px;
    overflow: hidden;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    display: flex; }
  #navigation .menu .item {
    white-space: nowrap;
    width: auto;
    padding: 0 2rem;
    align-self: center;
    display: inline; }
  #navigation .menu .link {
    text-decoration: none;
    color: rgba(4, 19, 52, 1); }
    #navigation .menu .link:hover {
      color: #ce9584; }
  #navigation .menu .link + .link {
    margin-left: 2rem;
    margin-bottom: 1rem; }

@media (max-width: 992px) {
  #navigation {
    width: 520px; } }

@media (max-width: 480px) {
  #navigation {
    width: 290px; }
    #navigation .arrow {
      padding: 0 2rem; } }

.page-segments .img-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 6rem; }
  .page-segments .img-group .content-img {
    position: relative;
    display: flex;
    margin: 0 auto;
    width: 300px;
    height: 300px;
    margin: 1rem; }
    .page-segments .img-group .content-img > * {
      position: relative;
      display: block;
      width: 100%;
      height: 100%;
      display: flex; }
    .page-segments .img-group .content-img .img-box {
      text-decoration: none; }
      .page-segments .img-group .content-img .img-box .thumbnail-img {
        position: absolute;
        width: 300px;
        height: 300px; }
      .page-segments .img-group .content-img .img-box:hover {
        position: relative;
        width: 100%;
        height: auto; }
        .page-segments .img-group .content-img .img-box:hover .content {
          z-index: 2;
          width: 100%;
          height: 100%;
          display: flex;
          flex-direction: column;
          justify-content: center; }
          .page-segments .img-group .content-img .img-box:hover .content p {
            color: white;
            text-transform: uppercase;
            margin-block-start: 0;
            margin-block-end: 0; }
            .page-segments .img-group .content-img .img-box:hover .content p.project-name {
              font-size: 2.5rem;
              font-weight: 500;
              margin: 0.6rem 0; }
          .page-segments .img-group .content-img .img-box:hover .content .icon {
            width: 5rem;
            height: 5rem;
            align-self: center; }
        .page-segments .img-group .content-img .img-box:hover::before {
          content: "";
          position: absolute;
          top: 0;
          left: 0;
          margin-right: 0;
          z-index: 1;
          width: 100%;
          height: 100%;
          background: #ce9584;
          /* overlay */
          opacity: 0.6; }
        .page-segments .img-group .content-img .img-box:hover .thumbnail-img {
          position: absolute;
          top: 0;
          left: 0;
          margin-right: 0;
          z-index: 0;
          width: 100%;
          height: auto; }
  .page-segments .segment-info {
    padding: 3rem 9rem 3rem;
    max-width: 1150px; }
  .page-segments .segment-info .segment-name {
    font-size: 6rem;
    font-weight: 300;
    color: rgba(4, 19, 52, 1);
    margin-bottom: 3rem;
    text-transform: capitalize; }
  .page-segments .segment-info .segment-description {
    line-height: 2em;
    color: rgba(4, 19, 52, 1);
    margin: 0; }
  @media (max-width: 992px) {
  .page-segments div.segment-info {
    padding: 0; } }

.page-project .project-container {
  display: flex;
  flex-direction: column;
  padding: 0 9rem;
  align-items: center; }
  .page-project .project-container .content-info {
    margin-top: 3rem;
    max-width: 1150px;
    text-align: left; }
    .page-project .project-container .content-info .name {
      text-transform: uppercase;
      margin-bottom: 1rem; }
    .page-project .project-container .content-info .description {
      display: flex;
      line-height: 2em;
      width: auto;
      color: rgba(4, 19, 52, 1);
      margin: 3rem 0;
      text-align: left; }
    .page-project .project-container .content-info .info {
      display: flex;
      flex-direction: row;
      padding: 0.5rem 0; }
      .page-project .project-container .content-info .info p {
        margin: 0;
        padding-left: 0.5rem; }
  .page-project .project-container .content-gallery {
    margin-top: 6rem;
    width: 100%; }
    .page-project .project-container .content-gallery img {
      max-width: 100%;
      height: auto; }
    .page-project .project-container .content-gallery .fotorama__thumb-border {
      border-color: #ce9584; }
  .page-project .project-container .content-navigation {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 6rem 0;
    align-items: center;
    width: 100%; }
    .page-project .project-container .content-navigation .navigation {
      display: flex;
      margin: 0 1rem;
      text-transform: uppercase;
      align-self: center; }
      .page-project .project-container .content-navigation .navigation a {
        text-decoration: none;
        color: rgba(4, 19, 52, 1); }
        .page-project .project-container .content-navigation .navigation a:hover {
          color: #ce9584; }
  @media (max-width: 992px) {
  .page-project .project-container {
    padding: 0 6rem; } }
  @media (max-width: 480px) {
  .page-project .project-container {
    padding: 0; }
    .page-project .project-container .content-gallery {
      margin-top: 0; }

    .page-project .project-container .content-navigation {
      padding: 3rem 0; }
      .page-project .project-container .content-navigation > div {
        padding: 1rem 1rem; }
      .page-project .project-container .content-navigation a {
        font-size: 12px; } }

.page-404 .jumbotron {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%; }
  .page-404 .jumbotron .numero {
    font-size: 20rem;
    color: #ce9584; }
