:root {
  --white: #fffaec;
  --secondary: #bf4d4d;
  --primary: #764767;
  --black: #0f181a;
  --grey: #485456;
  --light-grey: #d1c9c7;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  background-color: var(--white);
  color: var(--white);
  font-family: Poppins, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2rem;
}

h1 {
  letter-spacing: 1rem;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Titillium Web, sans-serif;
  font-size: 4rem;
  font-weight: 600;
  line-height: 5rem;
}

h2 {
  letter-spacing: .1rem;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Titillium Web, sans-serif;
  font-size: 2rem;
  font-weight: 900;
  line-height: 2.5rem;
}

h3 {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Titillium Web, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}

p {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.6rem;
}

a {
  color: var(--white);
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  transition: all .2s;
}

.section.hero {
  background-image: linear-gradient(rgba(191, 77, 77, .6), rgba(118, 71, 103, .6));
  width: 100vw;
  height: 100vh;
  position: relative;
}

.section.testimonial {
  background-image: linear-gradient(380deg, var(--secondary), var(--primary));
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 90%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 90%);
  min-height: 100vh;
}

.section.services {
  background-image: linear-gradient(200deg, var(--secondary), var(--primary));
}

.section.footer {
  background-image: linear-gradient(200deg, var(--secondary), var(--primary));
  -webkit-clip-path: polygon(0 0, 100% 20%, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 20%, 100% 100%, 0 100%);
  min-height: 50vh;
}

.navbar {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: rgba(0, 0, 0, 0);
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 30px;
}

.background-video {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.ghost-button {
  border: 1.5px solid var(--white);
  background-color: rgba(0, 0, 0, 0);
  border-radius: 50px;
  padding: 10px 35px;
}

.ghost-button:hover {
  background-color: var(--white);
  color: var(--primary);
}

.nav-link {
  color: var(--white);
  margin-top: 13px;
  margin-bottom: 13px;
  margin-right: 30px;
  padding: 0 10px;
}

.nav-link:hover {
  box-shadow: inset 0 -15px 0 0 var(--black);
}

.content-flex {
  grid-column-gap: 1.5vh;
  grid-row-gap: 1.5vh;
  margin-top: 10vh;
  margin-bottom: 10vh;
  display: flex;
}

.content-hero-left-container {
  grid-column-gap: 10vh;
  grid-row-gap: 10vh;
  flex-flow: column;
  align-items: flex-start;
  max-height: 100vh;
  display: flex;
}

.primary-button {
  border: 1.5px solid var(--white);
  background-color: var(--white);
  color: var(--primary);
  border-radius: 50px;
  padding: 10px 35px;
}

.primary-button:hover {
  color: var(--white);
  background-color: rgba(0, 0, 0, 0);
}

.scroll-text {
  position: absolute;
  bottom: 60px;
  left: auto;
  transform: rotate(90deg);
}

.content-hero-right-container {
  justify-content: center;
  max-height: 100vh;
  display: flex;
  position: relative;
}

.hero-right-text-wrapper {
  grid-column-gap: 5vh;
  grid-row-gap: 5vh;
}

.section-container {
  align-items: stretch;
  margin-left: auto;
  margin-right: auto;
  padding-top: 10vw;
  padding-bottom: 10vw;
}

.section-container.hero {
  padding-bottom: 0;
}

.heading-style-h2 {
  text-align: center;
  margin-bottom: 30px;
}

.heading-style-h2.color-primary {
  color: var(--primary);
}

.heading-style-h2.color-secondary {
  color: var(--secondary);
}

.paragraph {
  margin-bottom: 0;
  display: inline-block;
}

.paragraph.cc-color-grey {
  color: var(--grey);
}

.paragraph.cc-color-grey.cc-align-center {
  text-align: center;
}

.paragraph.cc-color-primary {
  color: var(--primary);
}

.link-block {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
}

.link-block:hover {
  filter: saturate(800%);
}

.arrow-right {
  margin-left: 10px;
}

.paragraph-light {
  font-weight: 400;
  display: inline;
}

.paragraph-light.cc-color-white {
  color: var(--white);
}

.service-content-flex {
  grid-column-gap: 5vh;
  grid-row-gap: 5vh;
  align-items: center;
  position: relative;
}

.scroll-image {
  position: absolute;
  bottom: 0;
}

.scroll-image.testimonial {
  top: 90px;
}

.content-right-container {
  grid-column-gap: 3vh;
  grid-row-gap: 3vh;
  flex-flow: column;
  align-items: flex-start;
  width: 50%;
  display: flex;
  position: relative;
}

.tag-outline {
  box-shadow: inset 0 -15px 0 0 var(--black);
  margin-top: 60px;
}

.marquee-wrapper {
  grid-column-gap: 4.5vw;
  grid-row-gap: 4.5vw;
  background-color: var(--white);
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  width: 100vw;
  padding-top: 2rem;
  padding-bottom: 2rem;
  overflow: hidden;
}

.marquee-text {
  color: var(--grey);
  min-width: 12vw;
}

.paragraph-large {
  text-transform: uppercase;
  font-family: Titillium Web, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.paragraph-large.shadow-inside-black {
  box-shadow: inset 0 -15px 0 0 var(--black);
}

.marquee-container {
  grid-column-gap: 3vw;
  grid-row-gap: 3vw;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.content-left-container {
  grid-column-gap: 3vh;
  grid-row-gap: 3vh;
  flex-flow: column;
  align-items: flex-start;
  width: 50%;
  display: flex;
  position: relative;
}

.marquee-content {
  align-items: center;
  display: flex;
}

.marquee-lottie {
  width: 5vw;
}

.testimonial-card {
  grid-column-gap: 3vh;
  grid-row-gap: 3vh;
  border-radius: 10px;
  flex-flow: column;
  padding: 5vh 3vh;
  display: flex;
}

.left-arrow {
  top: auto;
  bottom: -60px;
  left: 180px;
}

.left-arrow:hover {
  filter: brightness(200%);
}

.testimonial-slider {
  background-color: rgba(0, 0, 0, 0);
  margin-bottom: 60px;
}

.right-arrow {
  top: auto;
  bottom: -60px;
  right: 180px;
}

.right-arrow:hover {
  filter: brightness(200%);
}

.slide-nav {
  color: var(--grey);
  bottom: -60px;
}

.mask {
  border: 1.5px solid var(--grey);
  border-radius: 3px;
  max-width: 40vw;
  overflow: clip;
}

.secondary-button {
  border: 1.5px solid var(--secondary);
  background-color: var(--secondary);
  border-radius: 50px;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: all .2s;
}

.secondary-button:hover {
  color: var(--secondary);
  background-color: rgba(0, 0, 0, 0);
}

.form-field {
  border-style: solid;
  border-width: 0 0 1.5px;
  border-color: transparent transparent var(--light-grey);
  color: var(--secondary);
  background-color: rgba(0, 0, 0, 0);
  margin-bottom: 30px;
  font-size: 1.1rem;
  font-weight: 400;
}

.form-field:hover {
  border-top-style: none;
  border-bottom-width: 1.5px;
  border-right-style: none;
  border-bottom-color: var(--secondary);
  border-left-style: none;
}

.form-field:focus {
  border-width: 0 0 1.5px;
  border-color: transparent transparent var(--secondary);
}

.form-block {
  width: 100%;
  margin-bottom: 0;
}

.form-text-area {
  border-style: none none solid;
  border-width: 1px 1px 1.5px;
  border-color: transparent transparent var(--light-grey);
  color: var(--secondary);
  background-color: rgba(0, 0, 0, 0);
  margin-bottom: 60px;
  font-size: 1.1rem;
  font-weight: 400;
}

.form-text-area:hover {
  border-bottom-width: 1.5px;
  border-bottom-color: var(--secondary);
}

.form-text-area:focus {
  border-style: solid;
  border-width: 0 0 1.5px;
  border-color: transparent transparent var(--secondary);
}

.legal-link-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: flex-end;
  display: flex;
}

.legal-wrapper {
  border-top: 1px solid var(--light-grey);
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 30px;
  display: flex;
}

.footer-info-wrapper {
  grid-column-gap: 3vh;
  grid-row-gap: 3vh;
  text-align: left;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 10vh;
  margin-bottom: 10vh;
  display: flex;
}

.footer-container {
  align-items: stretch;
  margin-left: auto;
  margin-right: auto;
  padding-top: 90px;
  padding-bottom: 30px;
}

.brand-link-box {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  align-items: center;
  display: flex;
}

.brand-link-box.w--current {
  margin-bottom: 30px;
}

.social-link-block {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  align-items: flex-start;
  display: flex;
}

.social-link-block:hover {
  filter: saturate(800%);
}

.legal-link {
  border-bottom: 2px solid rgba(0, 0, 0, 0);
}

.legal-link:hover {
  border-bottom: 2px solid var(--light-grey);
}

.social-link-wrapper {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: flex-end;
  padding-bottom: 30px;
  display: flex;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.nav-bar-section {
  background-image: linear-gradient(200deg, var(--primary), var(--secondary));
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 50%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 50%);
  min-height: 25vh;
}

.container {
  text-align: center;
  padding-left: 5%;
  padding-right: 5%;
}

.utility-page-heading {
  color: var(--grey);
  margin-bottom: 30px;
}

.utility-page-paragraph {
  color: var(--grey);
  text-align: left;
  margin-bottom: 30px;
}

.utility-page-link {
  color: var(--primary);
}

.error-404 {
  background-image: url('../images/404-background.gif');
  background-position: 0 0;
  background-size: auto;
}

.lottie-animation {
  height: 60vh;
}

.form-success {
  background-color: var(--primary);
  border-radius: 5px;
  position: absolute;
  top: 0;
  bottom: auto;
  left: auto;
  right: auto;
  box-shadow: 0 15px 20px rgba(0, 0, 0, .2);
}

.error-message {
  background-color: var(--grey);
  border-radius: 5px;
  box-shadow: 0 15px 25px rgba(0, 0, 0, .2);
}

.preloader-block {
  background-color: #1a1a1a;
  width: 100%;
  height: 100%;
}

.preloader-block._03, .preloader-block._01, .preloader-block._02, .preloader-block._04 {
  background-color: var(--primary);
}

.preloader-logo-overlflow {
  position: relative;
  overflow: hidden;
}

.preloader-logo {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.preloader {
  z-index: 9999;
  width: 100%;
  height: 100vh;
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.preloader-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  width: 100%;
  height: 100%;
  position: relative;
}

.preloader-logo-wrapper {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.pharagraph-testimonial {
  color: var(--grey);
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
}

@media screen and (max-width: 991px) {
  h3, .heading-style-h2.color-secondary {
    text-align: left;
  }

  .scroll-image.testimonial {
    display: none;
  }

  .tag-outline {
    margin-top: 30px;
  }

  .marquee-text {
    display: none;
  }

  .slide-nav {
    bottom: -20vh;
  }

  .mask {
    border-color: var(--white);
    max-width: 90vw;
    min-height: 50vh;
  }

  .secondary-button {
    padding-left: 100px;
    padding-right: 100px;
  }

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

  .pharagraph-testimonial {
    color: var(--white);
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 2.5rem;
  }

  .section.hero {
    background-image: linear-gradient(180deg, var(--secondary), var(--primary));
    height: auto;
  }

  .navbar {
    padding: 10px;
  }

  .background-video {
    display: none;
  }

  .ghost-button {
    width: 100%;
  }

  .nav-link {
    width: 100%;
    margin: 0;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .nav-link:hover {
    background-color: var(--primary);
    box-shadow: none;
  }

  .nav-menu {
    background-color: var(--black);
  }

  .content-flex {
    flex-flow: column;
    padding-left: 20px;
    padding-right: 20px;
  }

  .content-flex.flip-horizontal {
    flex-flow: column-reverse;
  }

  .content-hero-left-container {
    text-align: center;
    flex: 1;
    align-items: center;
    margin-bottom: 10vh;
  }

  .scroll-text {
    display: none;
  }

  .hero-right-text-wrapper {
    justify-content: flex-start;
    align-items: center;
  }

  .paragraph-light {
    text-align: center;
    font-weight: 400;
  }

  .service-content-flex {
    padding-left: 10px;
    padding-right: 10px;
  }

  .content-right-container, .content-left-container {
    width: 100%;
  }

  .legal-link-wrapper {
    justify-content: center;
    align-items: flex-end;
  }

  .footer-flexbox {
    flex-direction: column;
  }

  .legal-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-direction: column;
    align-items: center;
  }

  .footer-info-wrapper {
    justify-content: flex-start;
    align-items: center;
  }

  .brand-link-box.w--current {
    margin-top: 30px;
  }

  .social-link-wrapper {
    justify-content: center;
    align-items: flex-end;
  }

  .lottie-animation {
    display: none;
  }

  .menu-button.w--open {
    background-color: var(--black);
    border-radius: 50px;
  }
}

@media screen and (max-width: 479px) {
  .paragraph-light {
    font-size: .8rem;
  }

  .marquee-lottie {
    width: 4.6rem;
  }

  .testimonial-card {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .slide {
    width: 100%;
  }
}


