.mq-animate.mq-animate-hide {
  opacity: 0;
}

.mq-animate.mq-animate-show {
  opacity: 1;
}

.mq-animate.mq-animate-show.mq-animate-grow {
  animation: fadeGrow 1s;
}

.mq-animate.mq-animate-show.mq-animate-fade {
  animation: fadeOnly 1s;
}

.mq-animate.mq-animate-show.mq-animate-right {
  animation: fadeRight 1s;
}

.mq-animate.mq-animate-show.mq-animate-bottom {
  animation: fadeBottom 1s;
}

.mq-animate.mq-animate-show.mq-animate-top {
  animation: fadeTop 1s;
}

.mq-animate.mq-animate-show.mq-animate-left {
  animation: fadeLeft 1s;
}

@keyframes fadeGrow {
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fadeOnly {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(50%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeBottom {
  from {
    opacity: 0;
    transform: translateY(50%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeTop {
  from {
    opacity: 0;
    transform: translateY(-50%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-50%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
button:focus,
a:focus {
  outline: none;
}
button::-moz-focus-inner,
a::-moz-focus-inner {
  border: 0;
}

.mq-button {
  position: relative;
  display: inline-block;
  text-decoration: none;
  box-shadow: none;
  border-radius: 0;
  white-space: nowrap;
  cursor: pointer;
  margin: 0;
  border: none;
  padding: 0;
  line-height: 1;
  background: none;
}

/*
@media (min-width: $x-large) {
}
*/
.cursor-pointer {
  cursor: pointer;
}

.mt-n5 {
  margin-top: -3rem;
}

.mt-n3 {
  margin-top: -1rem;
}

.mq-content {
  max-width: 260px;
}
@media (min-width: 992px) {
  .mq-content {
    margin-left: 15%;
    max-width: 420px;
  }
}

.mq-title {
  font-size: 50px;
}
@media (min-width: 992px) {
  .mq-title {
    font-size: 76px;
  }
}

.mq-section {
  padding-top: 150px;
  padding-bottom: 150px;
}

.mq-content-blog * + * {
  margin-top: 1em;
}
.mq-content-blog img {
  margin-left: auto;
  margin-right: auto;
}

.mq-section-big {
  padding-top: 150px;
}
@media (min-width: 992px) {
  .mq-section-big {
    padding-top: 260px;
  }
}

.mq-title-sm {
  font-size: 20px;
}

.mq-margin {
  margin-bottom: 50px;
}
@media (min-width: 992px) {
  .mq-margin {
    margin-bottom: 100px;
  }
}

.mq-content-big {
  max-width: 680px;
}

.mq-text-big p {
  font-size: 20px;
}

.mq-about-form {
  border: 1px solid #511a2a;
}

.mq-contact {
  padding-top: 150px;
}
.mq-contact .contact-social svg path {
  fill: #262626;
}

.mq-client + .mq-client {
  margin-top: 30px;
}
@media (min-width: 992px) {
  .mq-client + .mq-client {
    margin-top: 50px;
  }
}
.mq-client h3 {
  color: #d9d9d9;
  transition: color 0.3s linear;
}
.mq-client hr {
  border-color: #d9d9d9;
  opacity: 1;
  transition: border 0.3s linear;
}
.mq-client svg {
  transition: transform 0.3s linear;
}
@media (max-width: 992px) {
  .mq-client.active h3 {
    color: #511a2a;
  }
  .mq-client.active hr {
    border-color: #511a2a;
  }
  .mq-client.active svg {
    transform: rotate(90deg);
  }
  .mq-client.active svg path {
    stroke: #511a2a;
  }
}
@media (min-width: 992px) {
  .mq-client {
    cursor: url("../../src/images/cursor.png") 16 16, pointer;
  }
  .mq-client:hover h3 {
    color: #511a2a;
  }
  .mq-client:hover hr {
    border-color: #511a2a;
  }
  .mq-client:hover svg {
    transform: rotate(90deg);
  }
  .mq-client:hover svg path {
    stroke: #511a2a;
  }
}
.mq-client .client-content {
  padding: 15px 0 30px;
}
.mq-client .client-modal {
  z-index: 1;
  width: 410px;
  border: 1px solid #511a2a;
  pointer-events: none;
}
.mq-client .client-modal > div {
  background-color: rgba(217, 217, 217, 0.2);
}

.mq-team .client-modal {
  width: 510px;
}
.mq-team .team-title {
  font-size: 40px;
}
.mq-team .team-desc {
  display: grid;
  grid-template-rows: 1fr auto auto;
}

form input,
form textarea {
  background: none !important;
  display: block;
  width: 100%;
  border: none;
  border-radius: 0;
  font-size: 20px;
  font-weight: 300;
  outline: none !important;
}
form input:disabled,
form textarea:disabled {
  cursor: progress;
  opacity: 0.5;
}
form button:disabled {
  cursor: progress;
  opacity: 0.5;
}
form .form-success {
  bottom: -100px;
  right: 0;
  width: 630px;
  max-width: 100%;
  z-index: 2;
  text-align: center;
}

form.mq-form-sm input {
  border-bottom: 1px solid #511a2a;
  padding: 0.5rem 0;
  color: #511a2a;
}

.mq-form-main {
  padding: 100px 0;
}
.mq-form-main hr {
  opacity: 1;
}
.mq-form-main input,
.mq-form-main textarea {
  padding: 3rem 0 1rem;
  color: #fff;
  max-width: 560px;
}
.mq-form-main input::placeholder,
.mq-form-main textarea::placeholder {
  color: #fff;
}
.mq-form-main input:disabled,
.mq-form-main textarea:disabled {
  cursor: progress;
  opacity: 0.5;
}
.mq-form-main textarea {
  resize: none;
}

.mq-nav-home .logo {
  display: flex;
  right: 0;
  bottom: 0;
  flex-direction: column;
  width: 100%;
  max-width: 400px;
}
@media (min-width: 992px) {
  .mq-nav-home .logo {
    justify-content: space-between;
    height: 100%;
    width: 70%;
    max-width: 1000px;
  }
}
.mq-nav-home .logo .mq-animate-left-0.mq-animate-show {
  animation: fadeLeft 1.5s backwards;
  animation-delay: 0s;
}
.mq-nav-home .logo .mq-animate-left-1.mq-animate-show {
  animation: fadeLeft 1.5s backwards;
  animation-delay: 0.5s;
}
.mq-nav-home .logo .mq-animate-left-2.mq-animate-show {
  animation: fadeLeft 1.5s backwards;
  animation-delay: 1s;
}
.mq-nav-home .logo .mq-animate-left-3.mq-animate-show {
  animation: fadeLeft 1.5s backwards;
  animation-delay: 1.5s;
}
.mq-nav-home .logo > img {
  max-height: 84px;
}
@media (min-width: 992px) {
  .mq-nav-home .logo > img {
    max-height: 215px;
  }
}
.mq-nav-home .logo > img.logo-0 {
  max-height: 69px;
}
@media (min-width: 992px) {
  .mq-nav-home .logo > img.logo-0 {
    max-height: 175px;
  }
}

.dropdown-menu {
  border: none;
  border-radius: 0;
  box-shadow: 0px 0px 40px 0px rgba(81, 26, 42, 0.1);
  padding: 1rem 0;
}
.dropdown-menu li {
  margin-bottom: 1rem;
}

.mq-main-nav {
  transition: all 0.3s linear;
}
.mq-main-nav.fixed {
  animation: slideDown 1s;
  position: fixed;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
}

.mq-line-red {
  border-color: #511a2a;
}

.cc-window.cc-floating.cc-theme-classic,
.cc-window.cc-banner.cc-theme-classic {
  box-shadow: 0px 0px 40px 0px rgba(81, 26, 42, 0.1);
  padding: 0.5rem !important;
  border-radius: 0;
  flex-direction: row;
  align-items: center;
  max-width: 100%;
  width: 100%;
  bottom: 0;
  justify-content: space-between;
}
.cc-window.cc-floating.cc-theme-classic .cc-message,
.cc-window.cc-banner.cc-theme-classic .cc-message {
  font-size: 12px;
  margin: 0;
  line-height: 1;
  font-weight: 300;
  padding-right: 0.5rem;
}
.cc-window.cc-floating.cc-theme-classic .cc-message .cc-link,
.cc-window.cc-banner.cc-theme-classic .cc-message .cc-link {
  margin: 0;
  text-decoration: underline !important;
}
.cc-window.cc-floating.cc-theme-classic .cc-btn,
.cc-window.cc-banner.cc-theme-classic .cc-btn {
  font-size: 12px;
  padding: 0 0.5rem;
}

.mq-main-nav {
  padding: 2rem 0;
  position: absolute;
  top: 0;
}

.mq-dropdown .dropdown-toggle::after {
  display: none;
}

.mq-nav-home {
  overflow: hidden;
}
.mq-nav-home .nav-content {
  height: 100dvh;
}
.mq-nav-home .nav-content .nav-margin,
.mq-nav-home .nav-content .nav-menu li {
  margin-top: 54px;
}
.mq-nav-home .nav-content .nav-margin a,
.mq-nav-home .nav-content .nav-menu li a {
  padding: 0 !important;
}
.mq-nav-home .nav-content .nav-menu .mq-nav-social svg path,
.mq-nav-home .nav-content .mq-button svg rect {
  fill: #fff;
}

.mq-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  object-fit: cover;
}

.mq-bg-red {
  background-color: #511a2a !important;
}

.no-critical {
  opacity: 1;
}