html {
  font-family: "MuseoModerno", cursive;
}

@keyframes floating {
  0% {
    transform: translate(0, 0px);
  }
  50% {
    transform: translate(0, 15px);
  }
  100% {
    transform: translate(0, 0px);
  }
}
@-webkit-keyframes highlight {
  to {
    background-position: 0 0;
  }
}
@keyframes highlight {
  to {
    background-position: 0 0;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.margin-b-none {
  margin-bottom: 0 !important;
}

.text-align-center {
  text-align: center;
}

.section {
  padding-top: 0;
  padding-bottom: 0;
}
.section .article-container {
  max-width: 1500px;
  position: relative;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  padding: 100px 0;
}
@media (min-width: 993px) {
  .section .article-container {
    padding: 150px 0;
  }
}
.section__content {
  position: relative;
}
.section__bg {
  position: absolute;
  display: inline-block;
  height: 100%;
  top: 0;
  left: 100%;
  z-index: -1;
  transform: translateX(-100%);
}
.section__bg--left {
  left: auto;
  right: 100%;
  transform: translateX(100%);
}
.section__title {
  position: sticky;
  font-size: 128px;
  font-weight: 100;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  padding: 100px 0;
  right: 0;
  top: 0;
  display: inline-block;
  color: rgba(38, 38, 38, 0.1);
  opacity: 0;
  visibility: hidden;
  margin-right: 50px;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out, color 1s ease-in-out;
}
@media (min-width: 993px) {
  .section__title {
    opacity: 0.9;
    visibility: visible;
  }
}
@media (min-width: 1800px) {
  .section__title {
    color: #cccccc;
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
  }
}
.section__title--left {
  margin-left: 50px;
}

.article--about, .article--portfolio {
  margin-bottom: 100px;
}
@media (min-width: 993px) {
  .article--about, .article--portfolio {
    margin-bottom: 150px;
  }
}
.article--service {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 100px;
}
@media (min-width: 993px) {
  .article--service {
    margin-bottom: 0;
  }
}
.article__image-wrapper {
  visibility: hidden;
  position: relative;
}
.article__image-wrapper.animate {
  animation-name: slideUp;
  animation-duration: 1s;
  visibility: visible;
  animation-iteration-count: 1;
}
.article__image {
  display: block;
  width: 100%;
}
.article__image--about {
  max-width: 400px;
  margin: 0 auto;
  box-shadow: 0px 16px 32px 0px rgba(38, 38, 38, 0.85);
}
@media (min-width: 993px) {
  .article__image--right-bs {
    box-shadow: 16px 16px 32px 0px rgba(38, 38, 38, 0.85);
  }
  .article__image--left-bs {
    box-shadow: -16px 16px 32px 0px rgba(38, 38, 38, 0.85);
  }
}
.article__image--service {
  max-width: 128px;
  height: 139px;
  margin: 0 auto;
}
.article__image--mockup {
  max-width: 800px;
  margin: 0 auto;
}
.article__title {
  line-height: 32px;
  font-size: 32px;
}
.article p {
  font-size: 18px;
  line-height: 32px;
}
.article__text-container {
  height: 100%;
  margin-top: 75px;
  font-weight: 300;
}
@media (min-width: 993px) {
  .article__text-container {
    margin-top: 0;
  }
}
.article__number {
  font-size: 64px;
  color: #800020;
}
@media (min-width: 993px) {
  .article__number {
    line-height: 100px;
    font-weight: 100;
    font-size: 128px;
  }
}
.article__number--center {
  text-align: center;
}
@media (min-width: 993px) {
  .article__number--right {
    text-align: right;
  }
}
@media (min-width: 993px) {
  .article__number--left {
    text-align: left;
  }
}
.article__number--service {
  margin-bottom: 50px;
}
.article .button-wrapper {
  text-align: center;
  width: 100%;
  display: inline-block;
  margin-top: 16px;
}
@media (min-width: 993px) {
  .article .button-wrapper {
    text-align: left;
  }
}
.article--service {
  width: 80%;
}
.article .form-wrapper {
  margin-top: 75px;
}
@media (min-width: 993px) {
  .article .form-wrapper {
    margin-top: 0;
  }
}
.article .icon-wrapper {
  justify-content: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
}

.list--unordered {
  margin-left: 16px;
}
.list--unordered li {
  margin-left: 16px;
  list-style-type: disc !important;
  margin-bottom: 8px;
}
.list--unordered li::marker {
  font-size: 12px;
}
.list--numbered {
  margin-left: 16px;
}
.list--numbered li {
  margin-left: 16px;
  list-style-type: decimal !important;
  margin-bottom: 8px;
}

.button {
  display: inline-block;
  padding: 16px;
  letter-spacing: 2px;
}
.button--burgundy {
  background-color: #800020;
  color: #fff;
  border: 2px solid #fff;
}
.button--burgundy:focus {
  background-color: #800020;
}
.button--trs-color {
  transition: background-color 0.5s ease-in-out, color 0.5s ease-in-out, border 0.5s ease-in-out;
}
.button--trs-color:hover.button--burgundy {
  background-color: #fff;
  color: #800020;
  border: 2px solid #800020;
}

.link--inline-block {
  display: block;
}

.form {
  background-image: linear-gradient(0deg, rgba(38, 38, 38, 0.5) 0%, rgba(38, 38, 38, 0.5) 100%), url("../images/pexels-pexels-user-12927668-com.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  max-width: 450px;
  margin: 0 auto;
  width: 100%;
  padding: 50px 24px;
  visibility: hidden;
}
.form.animate {
  animation-name: slideUp;
  animation-duration: 1s;
  visibility: visible;
  animation-iteration-count: 1;
}
.form.col {
  padding: 50px;
}
.form__button {
  cursor: pointer;
  width: 100px;
  text-align: center;
}
.form .button-wrapper {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.form .error-message {
  display: none;
  color: #cc0000;
  position: absolute;
  top: 100%;
  font-size: 13px;
  color: red;
  background: #ffe6e6;
  padding: 0 4px;
}
.form .error-message.error {
  display: block;
}
.form input {
  color: #fff;
}
.form label {
  color: #fff;
}
.form input[type=text]:not(.browser-default) {
  border-bottom: 1px solid #fff;
}
.form input[type=email]:not(.browser-default) {
  border-bottom: 1px solid #fff;
}
.form input[type=tel]:not(.browser-default) {
  border-bottom: 1px solid #fff;
}
.form textarea.materialize-textarea {
  color: #fff;
  border-bottom: 1px solid #fff;
}
.form input[type=text]:not(.browser-default):focus:not([readonly]) {
  border-bottom: 1px solid #fff;
  box-shadow: 0 1px 0 0 #fff;
}
.form input[type=text]:not(.browser-default):focus:not([readonly]) + label {
  color: #fff;
}
.form input[type=email]:not(.browser-default):focus:not([readonly]) {
  border-bottom: 1px solid #fff;
  box-shadow: 0 1px 0 0 #fff;
}
.form input[type=email]:not(.browser-default):focus:not([readonly]) + label {
  color: #fff;
}
.form input[type=tel]:not(.browser-default):focus:not([readonly]) {
  border-bottom: 1px solid #fff;
  box-shadow: 0 1px 0 0 #fff;
}
.form input[type=tel]:not(.browser-default):focus:not([readonly]) + label {
  color: #fff;
}
.form textarea.materialize-textarea:focus:not([readonly]) {
  border-bottom: 1px solid #fff;
  box-shadow: 0 1px 0 0 #fff;
}
.form textarea.materialize-textarea:focus:not([readonly]) + label {
  color: #fff;
}

.navbar-fixed {
  position: fixed;
}

.nav {
  background-color: rgba(38, 38, 38, 0);
}
.nav .nav-wrapper {
  background-color: rgba(38, 38, 38, 0.85);
}
.nav ul a:hover {
  background-color: #8a0020;
}
.nav .brand-logo {
  display: flex;
  height: 100%;
  align-items: center;
}
@media (min-width: 993px) {
  .nav .brand-logo {
    margin-left: 32px;
  }
}

.header {
  min-height: 500px;
  display: flex;
  align-items: center;
  padding: 100px 0;
}
.header--about {
  display: flex;
  align-items: center;
  background-image: linear-gradient(0deg, rgba(38, 38, 38, 0.85) 0%, rgba(38, 38, 38, 0.85) 100%), url("../images/pexels-photomix-company-224924-com.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}
.header--service {
  background-color: #262626;
}
.header--contact {
  background-color: #262626;
}
.header--portfolio {
  background-color: #262626;
}
.header__title {
  line-height: 2em;
  letter-spacing: 3px;
  color: #fff;
  font-size: 24px;
  width: 80%;
  margin: 0 auto;
  overflow: hidden;
}
.header__title--about {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
  text-align: center;
}
@media (min-width: 993px) {
  .header__title--about {
    font-size: 32px;
  }
}
.header__title--about span:first-child {
  display: inline;
}
.header__title--about span:last-child {
  display: block;
}
.header__title--service {
  max-width: 1050px;
  font-size: 24px;
}
@media (min-width: 993px) {
  .header__title--service {
    font-size: 32px;
  }
}
@media (min-width: 1313px) {
  .header__title--service {
    margin-left: 10%;
    margin-right: 0;
  }
}
.header__title--contact {
  max-width: 1050px;
  font-size: 24px;
}
@media (min-width: 993px) {
  .header__title--contact {
    font-size: 32px;
  }
}
@media (min-width: 1313px) {
  .header__title--contact {
    margin-left: 10%;
    margin-right: 0;
  }
}
.header__title--portfolio {
  max-width: 1050px;
  font-size: 24px;
}
@media (min-width: 993px) {
  .header__title--portfolio {
    font-size: 32px;
  }
}
@media (min-width: 1313px) {
  .header__title--portfolio {
    margin-left: 10%;
    margin-right: 0;
  }
}
.header .customer-container {
  position: relative;
  display: inline-block;
  position: relative;
  vertical-align: bottom;
  box-sizing: content-box;
  transition: width 0.5s ease-in-out;
  background-color: #800020;
}
.header .customer-container.no-transition {
  transition: none;
}
.header .customer-item {
  visibility: hidden;
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translate(-50%, 0);
  opacity: 0;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  white-space: nowrap;
  padding: 0px 16px;
  transform-origin: 50% 50%;
}
.header .customer-item.visible {
  visibility: visible;
  transform: translate(-50%, 100%);
  opacity: 1;
}
.header .customer-item.hidden-down {
  transform: translate(-50%, 200%);
  opacity: 0;
}
.header mark.text-highlight {
  padding: 0 15px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  color: #fff;
  background-color: transparent;
}
.header mark.text-highlight.animate {
  -webkit-animation: 2s highlight 0s 1 normal forwards;
  animation: 2s highlight 0s 1 normal forwards;
  background: linear-gradient(90deg, #800020 50%, rgba(255, 255, 255, 0) 50%);
  background-size: 200% 100%;
  background-position: 100% 0;
}

.footer {
  text-align: center;
  background-color: #262626;
  color: #fff;
  padding: 32px;
}
.footer p {
  margin: 0;
}
.footer .text-highlight {
  background-color: #800020;
  padding: 0 15px;
}

/*# sourceMappingURL=main.css.map */
