:root {
  --color-primary: #09013e;
  --color-secondary: #2584ff;
  --color-accent: #ff3400;
  --color-headings: #1b0760;
  --color-body: #575757;
  --color-background: #f5f6f9;
  --color-background-dark: #1e1e1e;
  --color-purple-main: #4a2b82;
  --color-purple-accent: #6b52a2;
  --border-radius: 20px;
  --color-purple-accent-light: #876dc0;
}

*, :after, :before {
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  ::-webkit-scrollbar {
    display: none;
  }
}

::-webkit-scrollbar {
  width: 5px;
  overflow: overlay;
}

::-webkit-scrollbar-track {
  background: #0000000a;
}

::-webkit-scrollbar-thumb {
  background: var(--color-purple-accent-light);
  border-radius: 40px;
  transition: all .5s;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--color-purple-accent);
}

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

body {
  color: var(--color-body);
  background-color: var(--color-background);
  font-family: Montserrat, sans-serif;
  font-size: 2.4rem;
  line-height: 1.5;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  color: var(--color-headings);
  margin-bottom: 1rem;
  line-height: 1.1;
}

h2 {
  text-align: center;
  color: var(--color-purple-accent);
  margin: 6rem 0 4rem;
  font-size: 4rem;
}

h3 {
  font-size: 3rem;
}

p {
  font-size: 2rem;
}

.line {
  width: 60px;
  opacity: .6;
  height: 0;
  border: 1px solid var(--color-purple-accent-light);
  margin-top: -4rem;
  margin-bottom: 4rem;
  display: inline-block;
}

.bg__white {
  background-color: #fff;
}

.align-right {
  text-align: right;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  display: flex;
}

.margin--bottom {
  margin-bottom: 6rem;
}

.margin--top {
  margin-top: 4rem;
}

.padding--bottom {
  padding-bottom: 4rem;
}

.heading--title {
  margin-top: 1rem;
}

.container {
  padding-bottom: 10rem;
}

.side--padding {
  padding-left: 3rem;
  padding-right: 3rem;
}

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

.text--accent {
  color: var(--color-accent);
}

.banner {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
}

.skewed--both {
  clip-path: polygon(0 2%, 100% 0%, 100% 98%, 0% 100%);
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.black__background {
  background-color: var(--color-background-dark);
  color: #fff;
}

.heading__light {
  color: #fff;
}

.link-purple {
  background-color: var(--color-purple-accent);
  color: #fff;
  border-radius: 20px;
  padding: 1rem 2rem;
  transition: all .3s;
}

.link-purple:hover {
  color: #fff;
  box-shadow: 0 0 20px #8d6bcc62;
}

.hover__link {
  cursor: pointer;
  font-size: 2rem;
  transition: all .3s;
}

.hover__link:hover {
  transform: scale(1.03);
}

.logo {
  width: 80px;
  height: auto;
  align-self: center;
  padding: 10px;
}

.topnav .icon {
  display: none;
}

@media screen and (max-width: 600px) {
  .topnav a {
    display: none;
  }

  .topnav a.icon {
    padding: 0;
    display: block;
  }

  .logo {
    width: 70px;
    align-self: center;
  }

  .topnav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    display: flex;
  }

  .links {
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    display: flex;
  }

  .topnav.responsive a.icon {
    justify-self: flex-end;
    margin-bottom: 1rem;
    padding: 0;
  }

  .topnav.responsive a {
    float: none;
    text-align: left;
    display: block;
  }
}

.menu--icon {
  width: 40px;
  color: var(--color-purple-accent);
}

.icon {
  width: 40px;
  height: 40px;
}

.icon--title {
  width: 56px;
  margin: 0;
}

.icon--white {
  color: #fff;
}

.icon--red {
  color: var(--color-accent);
}

.card__img {
  border-radius: var(--border-radius);
  margin-bottom: 2rem;
  box-shadow: 0 1.2px 3.6px #0000000d, 0 3.3px 10px #00000013, 0 7.8px 24.1px #00000019, 0 26px 80px #00000026;
}

.img__upcoming {
  width: 92vw;
}

.video {
  width: 90vw;
  height: auto;
  border-radius: var(--border-radius);
}

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

.hero__image {
  width: 100vw;
  object-fit: cover;
  z-index: 0;
}

.hero__background {
  width: 100vw;
  min-height: 440px;
  background-color: var(--color-primary);
  clip-path: polygon(0 0, 100% 0%, 100% 95%, 0% 100%);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.hero__heading {
  color: #fff;
  opacity: .8;
  margin-top: -8rem;
  margin-bottom: 0;
  font-size: 96px;
}

.hero__desc {
  color: #fff;
  text-align: center;
  margin-top: 0;
  margin-bottom: 10rem;
  padding: 0 2rem;
}

.card {
  text-align: center;
  border-radius: var(--border-radius);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 6rem;
  padding: 5rem 4rem 2rem;
  display: flex;
  box-shadow: 3.3px 3.3px 6.3px #0000000a, 11.2px 11.2px 21.2px #0000000f, 50px 50px 95px #0000001a;
}

.card--contact {
  width: 90vw;
  max-width: 600px;
  background-color: #fff;
  padding: 2rem;
}

.card--white {
  background-color: #fff;
}

.card--dark {
  background-color: #3d3d3d;
}

.block--dark {
  color: #7b858b;
  background: #000;
}

.grid {
  display: grid;
}

.footer__container {
  padding: 2rem 3rem;
}

.footer {
  background: #232323;
}

ul.footer--list {
  margin: 0;
}

.footer__section {
  border-radius: var(--border-radius);
  background-color: #fff;
  margin: 0 2rem;
  padding: 0 2rem 1rem;
  box-shadow: 4.5px 2.7px 4.1px #00000004, 12.5px 7.5px 11.3px #00000006, 30.1px 18.1px 27.1px #00000008, 100px 60px 90px #0000000d;
}

.footer__heading {
  text-transform: uppercase;
  color: var(--color-purple-main);
  font-weight: 600;
}

.footer__brand {
  text-align: center;
  margin-top: 5rem;
}

.footer__brand img {
  width: 100%;
  max-width: 135px;
}

.footer__copyright {
  color: #fff;
  opacity: .3;
  font-size: 2.1rem;
}

.footer__section .list {
  margin: 0;
}

.footer a {
  color: #777;
  transition: color .3s;
}

.footer a:hover {
  color: #fff;
}

.container--gallery {
  width: 100%;
  box-sizing: border-box;
  height: 100vh;
  padding: 4% 2%;
  display: flex;
}

.box {
  flex: 1;
  margin: 0;
  line-height: 0;
  transition: all .5s;
  overflow: hidden;
  box-shadow: 0 20px 30px #0000001a;
}

.box > img {
  width: 200%;
  height: 100%;
  object-fit: cover;
  transition: all .5s;
}

.box > span {
  text-align: center;
  height: 10vh;
  font-size: 3.8vh;
  line-height: 2.6;
  display: block;
}

.box:hover {
  flex: 50%;
}

.box:hover > img {
  width: 100%;
  height: 100%;
}

.container--gallery-mobile {
  position: relative;
}

.mySlides {
  display: none;
}

.cursor {
  cursor: pointer;
}

.prev, .next {
  cursor: pointer;
  width: auto;
  color: #fff;
  -webkit-user-select: none;
  user-select: none;
  border-radius: 0 3px 3px 0;
  margin-top: -50px;
  padding: 16px;
  font-size: 20px;
  font-weight: bold;
  position: absolute;
  top: 50%;
}

.next {
  border-radius: 3px 0 0 3px;
  right: 0;
}

.prev:hover, .next:hover {
  background-color: #000c;
}

.numbertext {
  color: #f2f2f2;
  padding: 8px 12px;
  font-size: 12px;
  position: absolute;
  top: 0;
}

.caption-container {
  text-align: center;
  color: #fff;
  background-color: #222;
  padding: 2px 16px;
}

.row:after {
  content: "";
  clear: both;
  display: table;
}

.column {
  float: left;
  width: 16.66%;
}

.demo {
  opacity: .6;
}

.active, .demo:hover {
  opacity: 1;
}

.brands {
  margin-top: 8rem;
}

.brands--layout {
  flex-flow: wrap;
  justify-content: space-around;
  align-items: center;
  display: flex;
}

.brand__img {
  width: 150px;
  filter: saturate(0%);
  margin: 2rem 3rem;
  transition: all .3s;
}

.brand__img:hover {
  filter: saturate();
  transform: scale(1.1);
}

.brand__smaller {
  width: 50px;
}

.contact {
  color: var(--color-purple-accent-light);
  padding-top: 2rem;
  font-size: 2rem;
  font-weight: 600;
}

.contact--header {
  margin-top: 6rem;
}

.btn {
  border-radius: var(--border-radius);
  cursor: pointer;
  border: none;
  margin: 2rem auto;
  padding: 1.5rem;
  font-size: 2rem;
  transition: all .3s;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 20px #6b52a25b;
}

.btn-purple {
  background-color: var(--color-purple-accent);
  color: #fff;
}

ul {
  text-decoration: none;
  list-style: none;
}

li {
  text-decoration: none;
}

.list {
  text-align: right;
  list-style: none;
}

.nav__list li:last-child {
  padding-bottom: 2rem;
}

.nav {
  -webkit-backdrop-filter: blur(7px) saturate(160%) contrast(45%) brightness(140%);
  backdrop-filter: blur(7px) saturate(160%) contrast(45%) brightness(140%);
  -webkit-backdrop-filter: blur(20px) saturate(160%) contrast(45%) brightness(140%);
  z-index: 99;
  width: 100vw;
  background-color: #fff6;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
  display: flex;
  position: fixed;
}

.nav__toggler {
  cursor: pointer;
  transition: all .3s ease-in;
}

.nav__list {
  width: 100%;
  margin: 0;
}

a {
  text-decoration: none;
}

.nav__item {
  color: var(--color-purple-accent-light);
  padding: .6rem 2rem;
  text-decoration: none;
}

.nav__item > a {
  color: var(--color-purple-main);
  transition: color .2s;
}

.nav__item > a:hover {
  color: var(--color-purple-accent-light);
}

.nav.collapsible--expanded .nav__toggler {
  color: var(--color-purple-main);
}

.nav__brand {
  width: 80px;
  transform: translateY(5px);
}

.collapsible__header {
  justify-content: space-between;
  margin-top: 2rem;
  display: flex;
}

.collapsible__heading {
  font-size: 2.2rem;
}

.collapsible__chevron {
  margin-top: 1.2rem;
  margin-left: 3rem;
  transition: transform .3s;
  transform: rotate(-90deg);
}

.collapsible__content {
  max-height: 0;
  opacity: 0;
  transition: all .3s;
  overflow: hidden;
}

.collapsible--expanded .collapsible__chevron {
  transform: rotate(0);
}

.collapsible--expanded .collapsible__content {
  max-height: 100vh;
  opacity: 1;
  transition: all .3s;
}

.collapsible__img {
  width: 100%;
  margin-top: 2rem;
}

.container--slider {
  width: 90vw;
  height: 90vw;
  max-height: 400px;
  max-width: 600px;
  margin: 4rem auto 0;
  overflow: hidden;
}

.container--slider figure {
  height: 100%;
  width: 100%;
  background-image: url("before_floor.fc52ec82.webp");
  background-size: cover;
  margin: 0;
  font-size: 0;
  position: relative;
}

#compare {
  height: 100%;
  max-width: 98.6%;
  min-width: .6%;
  width: 100%;
  background-image: url("after_floor.08e9ad01.webp");
  background-size: cover;
  border-right: 5px solid #ffffffb3;
  animation: 2s ease-in-out .1s first;
  position: absolute;
  bottom: 0;
  overflow: visible;
  box-shadow: 10px 0 15px -13px #000;
}

input#slider {
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: col-resize;
  height: 100vw;
  width: 100%;
  background: none;
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
  position: relative;
  top: -100vw;
  left: 0;
}

input#slider::-moz-range-track {
  background: none;
}

input#slider::-ms-track {
  height: 100vw;
  width: 100%;
  cursor: col-resize;
  color: #0000;
  background-color: #0000;
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
  position: relative;
  top: -100vw;
  left: 0;
}

input#slider::-ms-fill-lower {
  background-color: #0000;
}

input#slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 100vw;
  width: .5%;
  opacity: 0;
}

input#slider::-moz-range-thumb {
  -moz-appearance: none;
  height: 100vw;
  width: .5%;
  opacity: 0;
}

input#slider::-ms-thumb {
  height: 100vw;
  width: .5%;
  opacity: 0;
}

input#slider::-ms-tooltip {
  display: none;
}

#compare:before {
  content: " ";
  float: right;
  height: 100%;
  width: 64px;
  content: " ";
  float: right;
  height: 100%;
  width: 64px;
  background: url("https://webdevtrick.com/wp-content/uploads/comparision.png") 0 / contain no-repeat;
  margin-right: -34px;
  position: relative;
  top: 0;
}

@keyframes first {
  0% {
    width: 0%;
  }

  50% {
    width: 80%;
  }

  100% {
    width: 50%;
  }
}

@media screen and (max-width: 768px) {
  .hidden-mobile {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .show-mobile, .hidden-desktop {
    display: none;
  }
}

@media screen and (min-width: 769px) and (max-width: 1200px) {
  .side--padding {
    padding-left: 15vw;
    padding-right: 15vw;
  }

  .hero__heading {
    font-size: 152px;
  }

  h3 {
    font-size: 2.8rem;
  }

  p, .hover__link {
    font-size: 1.8rem;
  }

  .icon--title {
    width: 44px;
  }

  .banner {
    width: 50%;
  }

  .banner__img {
    margin-top: 4rem;
    margin-left: 20vw;
  }

  .video {
    width: 70vw;
  }

  .footer__section {
    margin-left: 10vw;
    margin-right: 10vw;
  }
}

@media screen and (min-width: 1201px) {
  .hero__heading {
    margin-top: -13rem;
    font-size: 156px;
  }

  .hero__image {
    width: 100vw;
    height: 90vh;
    object-fit: cover;
  }

  .hero__desc {
    font-size: 3rem;
  }

  h2 {
    font-size: 3.6rem;
  }

  h3 {
    font-size: 2.6rem;
  }

  p {
    font-size: 1.6rem;
  }

  .icon--title {
    width: 40px;
  }

  .hover__link {
    font-size: 1.6rem;
  }

  .side--padding {
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .container__desktop {
    padding-left: 20vw;
    padding-right: 20vw;
  }

  .container__desktop--smaller {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .container--slider {
    width: 250vw;
    margin: 6rem 5vw 0 2rem;
  }

  .card--center {
    flex-direction: row;
    display: flex;
  }

  .display-left {
    text-align: left;
    flex-direction: column;
    justify-content: flex-start;
    display: flex;
  }

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

  .card--white {
    margin-top: 8rem;
  }

  .card--dark {
    margin-bottom: 10rem;
    padding-bottom: 2rem;
  }

  .card__img {
    width: 25vw;
    margin-left: 4vw;
  }

  .video {
    width: 50vw;
    margin: 4rem 0 0;
  }

  .banner__img {
    width: 30vw;
    padding-bottom: 0;
  }

  .container {
    padding-bottom: 6rem;
  }

  .container--studies {
    padding-left: 20vw;
    padding-right: 20vw;
  }

  .card__max-width {
    width: 500px;
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .skewed--both {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .brands--layout {
    margin-top: 6rem;
  }

  .footer__heading {
    font-size: 2rem;
  }

  .collapsible__chevron {
    margin-top: 1.2rem;
  }

  .side-to-side {
    flex-direction: row;
    display: flex;
  }

  .contact--header {
    color: var(--color-purple-main);
    font-size: 3.6rem;
  }

  .contact-cards {
    width: 100vw;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    display: flex;
  }

  .card--contact {
    width: 40vw;
    max-width: 900px;
    padding: 6rem 2rem;
  }

  .nav-desktop {
    -webkit-backdrop-filter: blur(7px) saturate(160%) contrast(45%) brightness(140%);
    backdrop-filter: blur(7px) saturate(160%) contrast(45%) brightness(140%);
    -webkit-backdrop-filter: blur(20px) saturate(160%) contrast(45%) brightness(140%);
    z-index: 99;
    width: 100vw;
    background-color: #fff6;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    display: flex;
    position: fixed;
  }

  .nav-desktop > ul {
    width: 80%;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    display: flex;
  }

  .nav__item-desktop > a {
    color: var(--color-purple-main);
    font-size: 2rem;
    transition: all .3s;
  }

  .nav__item-desktop > a:hover {
    color: var(--color-purple-accent-light);
  }
}

@media screen and (max-width: 1200px) {
  .hidden-1200 {
    display: none;
  }
}

@media screen and (min-width: 1201px) {
  .hidden-1201 {
    display: none;
  }
}

/*# sourceMappingURL=index.77a9bc14.css.map */
