/* Styles for MHI */
/* Dependencies */
/* ------------------------ Sass Variables ------------------------ */
* {
  font-family: freight-sans-pro;
}

/* ------------------------ Headings ------------------------ */
.h1, h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.4;
  margin: 30px 0;
}

.h2, h2 {
  font-size: 35px;
  font-weight: 700;
  line-height: 1.4;
  margin: 25px 0;
}

.h3, h3 {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.4;
  margin: 20px 0;
}

.h4, h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin: 10px 0;
}

/* ------------------------ Copy ------------------------ */
p {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.4;
}

li, ol {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.4;
}

a {
  color: #000000;
}
a:hover {
  text-decoration: underline;
}

/* ------------------------ Responsive Player Embeds ------------------------ */
.video {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  /* 16:9 */
  margin: 0 auto;
}
.video iframe, .video video {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

@keyframes fadein {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes fadein_center {
  0% {
    opacity: 0;
    transform: translate(-50%, 50px);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}
.hide-start {
  opacity: 0;
}

.animate-fade {
  animation-name: fadein;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-delay: 0.125s;
}

/* page Transition */
@property --start {
  syntax: "<length>";
  inherits: false;
  initial-value: 80px;
}
@keyframes cover {
  to {
    --start: 0px;
  }
}
.slide-leave-active {
  transition: opacity 0.5s;
}
.slide-leave-active:before {
  z-index: 100;
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(-45deg, transparent, transparent var(--start), #f4f4f4 var(--start), #f4f4f4 var(--end, 80px));
  animation: cover 0.5s linear;
}

.slide-leave-to {
  opacity: 0;
}

/* Sections */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 130px;
  z-index: 100;
  display: flex;
  align-items: center;
  background: #f4f4f4;
}
header .header-bar {
  display: flex;
}
header .logo-area {
  flex: 0 0 50%;
  max-width: 50%;
}
header .logo-area .mh-logo {
  height: 17px;
}
header .contact-area {
  flex: 0 0 50%;
  max-width: 50%;
  text-align: right;
}
header .contact-area .mh-phone {
  display: inline-block;
  position: relative;
  top: 3px;
}
header .contact-area .mh-phone a {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 15px;
  font-weight: 300;
  text-decoration: none;
}
header .contact-area .mh-phone a:hover {
  text-decoration: none;
  color: #0c96e5;
}
header .contact-area .social-bar {
  display: inline-block;
  margin-left: 22px;
}
header .contact-area .social-bar a {
  margin: 0 2px;
}
header .contact-area .social-bar a img {
  height: 24px;
}
header .contact-area .social-bar a:hover img {
  filter: invert(54%) sepia(29%) saturate(7495%) hue-rotate(174deg) brightness(94%) contrast(91%);
}

html, body {
  background: #f4f4f4;
}

#main_app {
  min-height: 100vh;
}

/* Pages */
.bottom-link {
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 100%;
  text-align: center;
}
.bottom-link a {
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  text-decoration: none;
}
.bottom-link a .arrow-img {
  height: 43px;
  margin-top: 8px;
}
.bottom-link a:hover {
  text-decoration: none;
  color: #0c96e5;
}
.bottom-link a:hover img {
  filter: invert(54%) sepia(29%) saturate(7495%) hue-rotate(174deg) brightness(94%) contrast(91%);
}

.intro-wrap .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
.intro-wrap .bg-animation {
  position: relative;
  left: 0;
  transform: none;
}
.intro-wrap .bg-animation .bg-anim {
  width: 100%;
  height: auto;
}
.intro-wrap .bg-animation .bg-anim video {
  width: 100%;
  height: auto;
}
.intro-wrap.home-anim {
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  position: relative;
}
.intro-wrap .heart-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 455px;
  width: 33.3333%;
  text-align: center;
  opacity: 0;
}
.intro-wrap .heart-wrap.show {
  animation-name: fadein_center;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
.intro-wrap .heart-wrap h1 {
  font-size: 48px;
  line-height: 1.2;
  position: relative;
  color: #ffffff;
  margin: 0;
  font-weight: 300;
  padding-bottom: 5px;
  margin-bottom: 10px;
  margin-top: 12%;
}
.intro-wrap .heart-wrap h1:after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  width: 12%;
  background: #ffffff;
  content: "";
}
.intro-wrap .heart-wrap p {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.3;
}
.intro-wrap.ty-wrap {
  padding-top: 160px;
}
.intro-wrap.ty-wrap .bg-animation {
  position: relative;
  left: 0;
  transform: none;
}
.intro-wrap.ty-wrap .heart-wrap-lg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 620px;
  width: 75%;
  padding: 160px 60px;
  text-align: center;
  opacity: 0;
  background-image: url(../img/heart_big.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.intro-wrap.ty-wrap .heart-wrap-lg.show {
  animation-name: fadein_center;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
.intro-wrap.ty-wrap .heart-wrap-lg h1 {
  font-size: 30px;
  line-height: 1.2;
  position: relative;
  color: #ffffff;
  margin: 0;
  font-weight: 300;
  padding-bottom: 5px;
  margin-top: 20px;
  flex: 0 0 100%;
  max-width: 100%;
}
.intro-wrap.ty-wrap .heart-wrap-lg h1:after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  width: 12%;
  background: #ffffff;
  content: "";
}
.intro-wrap.ty-wrap .heart-wrap-lg .ty-text p {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  margin: 15px 0;
}
.intro-wrap.ty-wrap .heart-wrap-lg .ty-text .sig-video {
  width: 175px;
  display: inline-block;
}
.intro-wrap.ty-wrap .heart-wrap-lg .ty-text .sig-video video {
  width: 100%;
  height: auto;
}

.form-bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../img/form-bg.jpg);
  padding: 120px 0;
}
.form-bg .form-top {
  background: #000000;
  padding: 40px;
}
.form-bg .form-top p {
  color: #ffffff;
  font-size: 26px;
  line-height: 1.4;
  font-weight: 300;
  text-align: center;
  margin-bottom: 0;
}
.form-bg .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
.form-bg .row {
  margin-left: 0;
  margin-right: 0;
}
.form-bg .row .col-12 {
  padding-left: 0;
  padding-right: 0;
}
.form-bg .mhi-form {
  background: rgba(255, 255, 255, 0.9);
  padding: 40px;
  position: relative;
}
.form-bg .mhi-form:after {
  content: "";
}
.form-bg .form-group .error-message {
  font-size: 12px;
  margin-bottom: 10px;
  line-height: 1.1;
  font-weight: 700;
  color: #e64646;
  display: none;
}
.form-bg .form-group.invalid .form-control, .form-bg .form-group.invalid .form-select {
  border-color: #e64646;
}
.form-bg .form-group.invalid .error-message {
  display: block;
}
.form-bg .form-control {
  border: 1px solid #1a171b;
  color: #1a171b;
  border-radius: 0;
  background: transparent;
  margin: 10px 0 5px 0;
  width: calc(100% - 15px);
}
.form-bg .form-control::placeholder {
  text-transform: uppercase;
}
.form-bg .form-control:focus {
  outline: none;
  box-shadow: 0 0 0 0.15rem rgba(26, 23, 27, 0.15);
}
.form-bg .form-select {
  border: 1px solid #1a171b;
  color: #1a171b;
  border-radius: 0;
  background-color: transparent;
  margin: 10px 0 5px 0;
  width: calc(100% - 15px);
  text-transform: uppercase;
}
.form-bg .form-select:focus {
  outline: none;
  box-shadow: 0 0 0 0.15rem rgba(26, 23, 27, 0.15);
}
.form-bg .form-select option {
  text-transform: uppercase;
}
.form-bg .btn {
  background: #1a171b;
  color: #ffffff;
  font-size: 12px;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 0;
  font-weight: bold;
  letter-spacing: 1px;
  margin-top: 15px;
}
.form-bg .form-slider {
  width: calc(100% - 15px);
}
.form-bg .form-slider .slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: #1a171b;
  outline: none;
  opacity: 1;
}
.form-bg .form-slider .slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 38px;
  height: 30px;
  background-image: url(../img/heart_slider.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  cursor: pointer;
}
.form-bg .form-slider .slider::-moz-range-thumb {
  appearance: none;
  width: 38px;
  height: 30px;
  background-image: url(../img/heart_slider.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  cursor: pointer;
}
.form-bg .form-slider .slide-legend {
  position: relative;
  margin-top: 5px;
}
.form-bg .form-slider .slide-legend .slide-num {
  font-weight: 700;
  font-size: 12px;
  text-transform: lowercase;
}
.form-bg .form-slider .slide-legend .slide-num.start {
  float: left;
}
.form-bg .form-slider .slide-legend .slide-num.end {
  float: right;
}
.form-bg .form-slider .slide-legend .slide-num.mid {
  position: absolute;
  left: 46%;
  transform: translateX(-50%);
}

.website-foot {
  padding: 30px 0;
  margin-top: 130px;
}
.website-foot a {
  color: #000000;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 17px;
}
.website-foot a:hover {
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
Media Queries.
-------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .bg-animation .container {
    max-width: 100%;
  }
  .bg-animation .bg-anim {
    overflow: hidden;
  }
  .bg-animation .bg-anim video {
    width: 175%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }

  .heart-wrap {
    width: 60%;
  }
  .heart-wrap h1 {
    font-size: 52px;
  }
  .heart-wrap p {
    font-size: 15px;
  }

  .about-content .about-text {
    width: 75vw;
    height: 25vw;
  }

  .work-type .row.h-100, .work-type .row .col-12.h-100 {
    height: auto !important;
  }
  .work-type #gallery_wrapper {
    min-height: 450px;
  }
  .work-type .choose-one .choose-list .col-l, .work-type .choose-one .choose-list .col-r {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .intro-wrap .bg-animation .bg-anim video {
    width: 200%;
  }
}
@media (max-width: 767px) {
  header {
    height: 65px;
  }
  header .logo-area .mh-logo {
    height: 30px;
    position: relative;
    top: 15px;
  }

  .theme-content {
    padding-top: 75px;
  }

  .intro-wrap.home-anim {
    height: auto;
    min-height: 600px;
  }
  .intro-wrap .bg-animation .bg-anim {
    width: 100%;
  }
  .intro-wrap .bg-animation .bg-anim video {
    width: 300%;
    height: auto;
    left: 0;
    transform: none;
  }
  .intro-wrap .heart-wrap {
    width: 100%;
    padding: 13vh 20px;
    background-image: url(../img/heart_big.svg);
    background-repeat: no-repeat;
    background-size: 100%;
  }
  .intro-wrap .heart-wrap h1 {
    font-size: 23px;
    margin: 0 0 10px 0;
  }
  .intro-wrap .heart-wrap p {
    margin-bottom: 0;
    font-size: 12px;
  }
  .intro-wrap.ty-wrap {
    padding-top: 100px;
  }
  .intro-wrap.ty-wrap .bg-animation .bg-anim video {
    left: -155%;
  }
  .intro-wrap.ty-wrap .heart-wrap-lg {
    width: 100%;
    padding: 115px 20px;
  }
  .intro-wrap.ty-wrap .heart-wrap-lg h1 {
    font-size: 22px;
    margin: 0 0 10px 0;
    padding: 0 0 10px 0;
  }
  .intro-wrap.ty-wrap .heart-wrap-lg .ty-text p {
    margin: 0;
  }
  .intro-wrap.ty-wrap .heart-wrap-lg .ty-text .sig-video {
    display: none;
  }

  .box-bottom {
    position: relative;
    top: -4px;
  }

  .bottom-link {
    bottom: 20px;
  }
}
@media (max-width: 380px) {
  .intro-wrap .heart-wrap {
    padding: 15vh 20px;
  }
}

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