@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap");
@font-face {
  font-family: "Graphik";
  font-weight: 400;
  src: url("../fonts/Graphik/GraphikRegular.otf");
}

@font-face {
  font-family: "Graphik";
  font-weight: 500;
  src: url("../fonts/Graphik/GraphikMedium.otf");
}

@font-face {
  font-family: "Graphik";
  font-weight: 600;
  src: url("../fonts/Graphik/GraphikSemibold.otf");
}

@font-face {
  font-family: "Graphik";
  font-weight: 700;
  src: url("../fonts/Graphik/GraphikBold.otf");
}

.glow {
  -webkit-filter: blur(160px);
          filter: blur(160px);
  position: absolute;
  bottom: 0;
  z-index: -1;
}

.glow img {
  width: 1594px;
  max-width: 100vw;
}

@media only screen and (max-width: 1594px) {
  .glow {
    bottom: 0;
  }
  .glow img {
    height: calc( 0.7 * 90vw + 75px);
  }
}

@media only screen and (max-width: 1360px) {
  .glow {
    bottom: 25px;
  }
  .glow img {
    height: calc( 0.7 * 90vw + 100px);
  }
}

@media only screen and (max-width: 1230px) {
  .glow {
    bottom: 40px;
    -webkit-filter: blur(80px);
            filter: blur(80px);
  }
  .glow img {
    height: calc( 0.8 * 90vw + 100px);
  }
}

@media only screen and (max-width: 700px) {
  .glow {
    bottom: 80px;
    -webkit-filter: blur(50px);
            filter: blur(50px);
  }
}

* {
  scroll-behavior: smooth;
}

body {
  background: #13131a;
  color: white;
  font-family: "Graphik", sans-serif;
}

.content-row {
  width: 1040px;
  max-width: 90vw;
}

.nav {
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-bottom: 1px solid #32323d;
}

.nav .nav-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 1040px;
  max-width: 90vw;
}

.nav .nav-logo {
  margin-right: 40px;
}

.nav .nav-link {
  margin-right: 42px;
  text-decoration: none;
  color: white;
  font-size: 14px;
  font-weight: 500;
  -webkit-transition: 0.15s opacity ease-out;
  transition: 0.15s opacity ease-out;
}

.nav .nav-link:hover {
  opacity: 0.7;
}

.nav .nav-button {
  margin-left: auto;
  text-decoration: none;
  color: white;
  border-radius: 4px;
  border: 1px solid #5528bc;
  background: #602dd3;
  width: 140px;
  padding-top: 14px;
  padding-bottom: 12px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  -webkit-transition: 0.15s opacity ease-out;
  transition: 0.15s opacity ease-out;
}

.nav .nav-button:hover {
  opacity: 0.85;
}

.nav #mobile-nav-opener {
  display: none;
  margin-left: auto;
}

@media only screen and (max-width: 940px) {
  .nav {
    border-bottom: none;
    margin-bottom: -50px;
  }
  .nav .nav-link,
  .nav .nav-logo,
  .nav .nav-button {
    display: none;
  }
  .nav #mobile-nav-opener {
    display: block;
  }
}

#mobile-nav {
  position: fixed;
  top: 15px;
  right: 15px;
  padding: 15px 25px;
  padding-bottom: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 100;
  background: #21212a;
  border-radius: 4px;
  -webkit-box-shadow: 0px 45px 120px rgba(0, 0, 0, 0.2), 0px 15px 25px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 45px 120px rgba(0, 0, 0, 0.2), 0px 15px 25px rgba(0, 0, 0, 0.15);
  -webkit-transition: 0.4s right ease-in-out;
  transition: 0.4s right ease-in-out;
}

#mobile-nav .wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#mobile-nav:not(.active) {
  right: -200px;
}

#mobile-nav .mobile-nav-link {
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 15px;
}

#mobile-nav #nav-close {
  position: absolute;
  right: -15px;
  top: -5px;
  cursor: pointer;
}

.landing {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin-top: 40px;
  padding-bottom: 150px;
  position: relative;
}

.landing .landing-logo {
  height: 140px;
  margin-bottom: 30px;
}

.landing .landing-title {
  font-size: 88px;
  font-weight: 500;
  margin-bottom: 33px;
  width: 975px;
  max-width: 90vw;
}

.landing .landing-subtitle {
  font-size: 18px;
  margin-bottom: 37px;
  width: 690px;
  max-width: 90vw;
  line-height: 1.56;
}

.landing .landing-cta {
  text-decoration: none;
  color: white;
  background: #602dd3;
  border: 1px solid #5528bc;
  border-radius: 4px;
  width: 250px;
  max-width: 90vw;
  padding-top: 21px;
  padding-bottom: 19px;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 40px;
}

.landing .landing-ui {
  border-radius: 10px;
  -webkit-box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.5);
  max-width: 90vw;
}

@media only screen and (max-width: 900px) {
  .landing .landing-logo {
    margin-bottom: 20px !important;
    height: 120px !important;
  }
  .landing .landing-title {
    font-size: 44px !important;
  }
  .landing .landing-subtitle {
    font-size: 14px !important;
    margin-bottom: 24px !important;
  }
  .landing .landing-cta {
    width: 200px !important;
    font-size: 12px !important;
    padding-top: 17px !important;
    padding-bottom: 16px !important;
    margin-bottom: 32px !important;
  }
}

#product {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 1050px) {
  #product .flickity-prev-next-button {
    display: none;
  }
}

#product .product-carousel {
  width: 1240px;
  max-width: 100vw;
}

#product .product-slide {
  width: 1040px;
  max-width: 90vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 100px;
  padding-bottom: 20px;
}

@media only screen and (max-width: 1050px) {
  #product .product-slide {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#product .product-slide-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 450px;
  margin-right: 50px;
}

@media only screen and (max-width: 1050px) {
  #product .product-slide-col {
    margin-right: 0;
    width: 90vw;
  }
}

#product .slide-purple-label {
  border-radius: 4px;
  background-color: rgba(96, 45, 211, 0.3);
  padding: 12px;
  padding-bottom: 10px;
  font-size: 14px;
  color: #fafafb;
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-bottom: 20px;
}

@media only screen and (max-width: 1050px) {
  #product .slide-purple-label {
    font-size: 12px;
    padding: 9px 10px;
    margin-bottom: 18px;
  }
}

#product .slide-title {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 40px;
  line-height: 1.33;
}

@media only screen and (max-width: 1050px) {
  #product .slide-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
}

#product .slide-subtitle {
  color: #8a8f98;
  font-size: 18px;
  line-height: 1.56;
}

@media only screen and (max-width: 1050px) {
  #product .slide-subtitle {
    font-size: 14px;
  }
}

#product .highlight {
  color: white;
}

#product .slide-image {
  width: 540px;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.5);
  margin-top: 56px;
}

@media only screen and (max-width: 1050px) {
  #product .slide-image {
    width: 90vw !important;
    height: auto !important;
    margin-top: 30px;
  }
}

#product .flickity-page-dots {
  visibility: hidden;
}
.flickity-page-dots .dot {
  background: #9c9c9c !important;
}


@media only screen and (max-width: 1050px) {
  #product .flickity-page-dots {
    visibility: visible;
    
  }
}

#product .flickity-button {
  background: transparent;
}

#product .flickity-button-icon {
  fill: white;
  height: 17px;
  margin-top: 25px;
}

#features {
  margin: 0 auto;
  margin-top: 200px;
  width: 1040px;
  max-width: 90vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#features .purple-label {
  border-radius: 4px;
  background-color: rgba(96, 45, 211, 0.3);
  padding: 12px;
  padding-bottom: 10px;
  font-size: 14px;
  color: #fafafb;
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-bottom: 30px;
}

#features .features-title {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 40px;
  line-height: 1.33;
  width: 710px;
  max-width: 90vw;
}

#features .features-subtitle {
  color: #8a8f98;
  font-size: 18px;
  line-height: 1.56;
  margin-bottom: 40px;
  width: 710px;
  max-width: 90vw;
}

#features .features-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 50px;
}

#features .feature-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#features .feature-icon {
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-bottom: 18px;
  height: 40px;
}

#features .feature-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 16px;
}

#features .feature-text {
  font-size: 16px;
  line-height: 1.5;
  color: #8a8f98;
}

#features #features-carousel {
  display: none;
}

@media only screen and (max-width: 1050px) {
  #features .purple-label {
    font-size: 12px;
    padding: 9px 10px;
    margin-bottom: 18px;
  }
  #features #features-carousel {
    display: block;
    width: 90vw;
  }
  #features .feature-col {
    width: 90vw;
    margin-bottom: 15px;
  }
  #features .features-grid {
    display: none;
  }
  #features .features-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  #features .features-subtitle {
    font-size: 14px;
  }
  #features .feature-title {
    font-size: 14px;
    margin-bottom: 14px;
  }
  #features .feature-text {
    font-size: 14px;
  }
}

#sites {
  margin: 0 auto;
  margin-top: 200px;
  width: 1040px;
  max-width: 90vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#sites .purple-label {
  border-radius: 4px;
  background-color: rgba(96, 45, 211, 0.3);
  padding: 12px;
  padding-bottom: 10px;
  font-size: 14px;
  color: #fafafb;
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-bottom: 30px;
}

#sites .sites-title {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 40px;
  line-height: 1.33;
  width: 710px;
  max-width: 90vw;
}

#sites .sites-subtitle {
  color: #8a8f98;
  font-size: 18px;
  line-height: 1.56;
  margin-bottom: 40px;
  width: 710px;
  max-width: 90vw;
}

@media only screen and (max-width: 1050px) {
  #sites .purple-label {
    font-size: 12px;
    padding: 9px 10px;
    margin-bottom: 18px;
  }
  #sites .sites-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  #sites .sites-subtitle {
    font-size: 14px;
  }
}

.sites-carousel {
  height: 155px;
}

.sites-carousel img {
  margin-right: 15px;
}

@media only screen and (max-width: 1050px) {
  .sites-carousel {
    height: 140px;
    margin-top: -20px;
  }
}

#testimonials {
  margin: 0 auto;
  margin-top: 150px;
  width: 1040px;
  max-width: 90vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#testimonials .purple-label {
  border-radius: 4px;
  background-color: rgba(96, 45, 211, 0.3);
  padding: 12px;
  padding-bottom: 10px;
  font-size: 14px;
  color: #fafafb;
  margin-bottom: 30px;
}

#testimonials .testimonials-title {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 65px;
  line-height: 1.33;
  width: 710px;
  max-width: 90vw;
  text-align: center;
}

#testimonials .testimonials-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

#testimonials .testimonials-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 336px;
  max-width: 90vw;
  margin-right: 16px;
}

#testimonials .testimonials-col:last-child {
  margin-right: 0;
}

#testimonials .testimonial-card {
  background: #21212a;
  border-radius: 5px;
  padding: 16px;
  padding-bottom: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 16px;
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
}

#testimonials .testimonial-image {
  height: 32px;
  width: 32px;
  border-radius: 5px;
  margin-right: 15px;
}

#testimonials .card-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#testimonials .card-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}

#testimonials .card-name {
  margin-right: 3px;
}

#testimonials .card-details {
  color: #8a8f98;
}

#testimonials .card-text {
  font-size: 14px;
  line-height: 1.43;
}

@media only screen and (max-width: 1050px) {
  #testimonials .purple-label {
    font-size: 12px;
    padding: 9px 10px;
    margin-bottom: 18px;
  }
  #testimonials .testimonials-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  #testimonials .testimonials-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #testimonials .testimonials-col {
    width: 90vw;
    margin-right: 0;
  }
  #testimonials .testimonial-card {
    margin-bottom: 10px;
  }
}

#faq {
  margin: 0 auto;
  margin-top: 200px;
  width: 1040px;
  max-width: 90vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#faq .purple-label {
  border-radius: 4px;
  background-color: rgba(96, 45, 211, 0.3);
  padding: 12px;
  padding-bottom: 10px;
  font-size: 14px;
  color: #fafafb;
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-bottom: 30px;
}

#faq .faq-title {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 40px;
  line-height: 1.33;
  width: 710px;
  max-width: 90vw;
}

#faq .faq-subtitle {
  color: #8a8f98;
  font-size: 18px;
  line-height: 1.56;
  margin-bottom: 45px;
  width: 710px;
  max-width: 90vw;
}

#faq .faq-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#faq .faq-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-item-align: start;
      align-self: flex-start;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

#faq .faq-col:first-child {
  margin-right: 10px;
}

#faq .faq-col:last-child {
  margin-left: 10px;
}

#faq .faq-card {
  background: #21212a;
  border-radius: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 16px;
  cursor: pointer;
  -webkit-transition: 0.25s height ease-out;
  transition: 0.25s height ease-out;
  overflow: hidden;
}

#faq .faq-card.active .dropdown-caret {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

#faq .faq-question-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 14px 16px;
  padding-bottom: 12px;
  position: relative;
  font-weight: 500;
}

#faq .dropdown-caret {
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
  will-change: transform;
}

#faq .faq-answer {
  padding-top: 4px;
  padding-left: 16px;
  padding-bottom: 26px;
  padding-right: 71px;
  font-size: 14px;
  line-height: 1.71;
}

#faq .measuring-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media only screen and (max-width: 1050px) {
  #faq .purple-label {
    font-size: 12px;
    padding: 9px 10px;
    margin-bottom: 18px;
  }
  #faq .faq-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  #faq .faq-subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }
  #faq .faq-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #faq .faq-col {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  #faq .faq-question-row {
    font-size: 14px;
  }
  #faq .faq-answer {
    font-size: 12px;
  }
}

#contact {
  margin: 200px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 1040px;
  max-width: 90vw;
}

#contact .contact-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-right: 50px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

#contact .purple-label {
  border-radius: 4px;
  background-color: rgba(96, 45, 211, 0.3);
  padding: 12px;
  padding-bottom: 10px;
  font-size: 14px;
  color: #fafafb;
  margin-bottom: 30px;
}

#contact .contact-title {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 28px;
  line-height: 1.33;
  text-align: center;
}

#contact .contact-text {
  color: #8a8f98;
  font-size: auto;
  margin-bottom: auto;
  line-height: 1.56;
}

#contact .contact-box {
  padding: 30px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 4px;
  background: #21212a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 25px;
}

#contact .contact-input {
  background: #2d2f3a;
  border-radius: 4px;
  outline: none;
  border: 1px solid #3d404e;
  font-family: inherit;
  resize: none;
  font-size: 14px;
  color: white;
  width: 470px;
  max-width: 100%;
  margin-bottom: 20px;
  padding: 12px;
  padding-bottom: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.2s border ease-out;
  transition: 0.2s border ease-out;
}

#contact .contact-input::-webkit-input-placeholder {
  color: #7b7b84;
}

#contact .contact-input:-ms-input-placeholder {
  color: #7b7b84;
}

#contact .contact-input::-ms-input-placeholder {
  color: #7b7b84;
}

#contact .contact-input::placeholder {
  color: #7b7b84;
}

#contact .contact-input:focus {
  border: 1px solid #602dd3;
}

#contact .contact-submit {
  background: #602dd3;
  border: 1px solid #5628be;
  height: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  outline: none;
  color: white;
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
  border-radius: 4px;
  -webkit-transition: 0.15s opacity ease-out, 0.2s background ease-out;
  transition: 0.15s opacity ease-out, 0.2s background ease-out;
}

#contact .contact-submit:hover {
  opacity: 0.85;
}

#contact .contact-submit.success {
  background: green;
  border: 1px solid green;
}

#contact .socials-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#contact .social-icon-link {
  margin-right: 19px;
  -webkit-transition: 0.15s opacity ease-out;
  transition: 0.15s opacity ease-out;
}

#contact .social-icon-link:hover {
  opacity: 0.85;
}

#contact .social-email-box {
  background: #602dd3;
  border: 1px solid #5628be;
  height: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 4px;
  -webkit-transition: 0.15s opacity ease-out;
  transition: 0.15s opacity ease-out;
  font-size: 14px;
  font-weight: 500;
  color: white;
  text-decoration: none;
}

#contact .social-email-box:hover {
  opacity: 0.85;
}

#contact .social-email-box img {
  margin-left: 9px;
  margin-right: 7px;
}

#contact .social-email-box span {
  margin-right: 15px;
  margin-top: 1px;
}

#contact .socials-row-mobile {
  display: none;
}

@media only screen and (max-width: 1050px) {
  #contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #contact .socials-row-desktop {
    display: none;
  }
  #contact .socials-row-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #contact .socials-row-mobile .social-icon-link {
    margin: 0 !important;
  }
  #contact .socials-row-mobile .social-icon {
    width: 28px;
    height: 28px;
  }
  #contact .socials-row-mobile .social-email-box {
    font-size: 10px !important;
    height: 28px;
  }
  #contact .socials-row-mobile .social-email-box img {
    margin: 0 5px;
    width: 16px;
  }
  #contact .socials-row-mobile .social-email-box span {
    margin-right: 6px;
  }
  #contact .purple-label {
    font-size: 12px;
    padding: 9px 10px;
    margin-bottom: 18px;
  }
  #contact .contact-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  #contact .contact-text {
    font-size: 14px;
    margin-bottom: 30px;
  }
  #contact form {
    margin-bottom: 30px;
  }
}

#footer {
  padding: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid #21212a;
}

#footer .footer-content {
  width: 1040px;
  max-width: 90vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#footer .footer-logo {
  margin-right: 10px;
}

#footer .footer-copyright {
  font-size: 12px;
  color: #8a8f98;
  margin-right: auto;
}

#footer .footer-link {
  text-decoration: none;
  color: #8a8f98;
  font-size: 12px;
  margin-left: 30px;
}

#footer .mobile-only {
  display: none;
}

@media only screen and (max-width: 1050px) {
  #footer .footer-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #footer .footer-logo {
    display: none;
  }
  #footer .footer-link {
    font-size: 10px;
    margin-bottom: 10px;
    margin-left: 0;
  }
  #footer .footer-copyright {
    display: none;
  }
  #footer .mobile-only {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 25px;
  }
  #footer .mobile-only .footer-logo-mobile {
    height: 20px;
    margin-right: 10px;
  }
  #footer .mobile-only .footer-copyright-mobile {
    font-size: 12px;
    color: #8a8f98;
    margin-right: auto;
  }
}
/*# sourceMappingURL=style.css.map */
