@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
html {
  overflow-x: hidden;
}
html body {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  overflow-x: hidden;
  overscroll-behavior: none;
  /*style the arrow inside the select element:*/
  /*point the arrow upwards when the select box is open (active):*/
  /*style the items (options), including the selected item:*/
  /*style items (options):*/
  /*hide the items when the select box is closed:*/
}
html body .container {
  max-width: 1600px !important;
}
html body #smooth-content {
  overflow: visible;
  width: 100%;
  /* set a height because the contents are position: absolute, thus natively there's no height */
  height: auto;
  background-image: linear-gradient(rgba(255, 255, 255, 0.07) 2px, transparent 2px), linear-gradient(90deg, rgba(255, 255, 255, 0.07) 2px, transparent 2px), linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 100px 100px, 100px 100px, 20px 20px, 20px 20px;
  background-position: -2px -2px, -2px -2px, -1px -1px, -1px -1px;
}
html body .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 in a row */
  gap: 75px; /* space between items */
  padding: 40px 0;
  margin: 0 auto;
}
html body .grid .grid-item {
  display: block;
  text-align: center;
  text-decoration: none;
}
html body .grid .grid-item .overflow-hidden {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 30px;
}
html body .grid .grid-item .overflow-hidden img {
  width: 100%;
  transition: transform 0.4s ease;
}
html body .grid .grid-item:hover .overflow-hidden img {
  transform: scale(1.05);
}
html body .secondary-btn {
  background: transparent;
  padding: 20px 50px;
  border-radius: 50px;
  color: #000000;
  font-size: 18px;
  text-align: center;
  margin: 50px auto 0;
  display: flex;
  align-items: center;
  border: 1px solid #000000;
  gap: 20px;
  text-decoration: none;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 500;
  transition: all 0.5s ease;
}
html body .secondary-btn:hover, html body .secondary-btn:focus, html body .secondary-btn:active {
  background-color: #000000;
  color: #ffffff;
}
html body .secondary-btn:hover img, html body .secondary-btn:focus img, html body .secondary-btn:active img {
  filter: invert(1);
}
html body .navbar-toggler .navbar-toggler-icon.close {
  background-image: url(../images/Close.svg);
  width: 1.3rem;
  height: 1.3rem;
  display: none;
}
html body .navbar-toggler.show .navbar-toggler-icon.close {
  display: block;
}
html body .navbar-toggler.show .navbar-toggler-icon {
  display: none;
}
html body .custom-select {
  position: relative;
}
html body .custom-select select {
  display: none; /*hide original SELECT element:*/
}
html body .select-selected {
  background-color: #f3f3f3;
  padding: 20px;
  border: none;
  border-radius: 0;
  margin-bottom: 30px;
}
html body .select-selected:after {
  position: absolute;
  content: "";
  top: 30px;
  right: 20px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #000000 transparent transparent transparent;
}
html body .select-selected.select-arrow-active:after {
  border-color: transparent transparent #000000 transparent;
  top: 20px;
  right: 20px;
}
html body .select-items div,
html body .select-selected {
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
html body .select-items {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  background-color: #f3f3f3;
  border: none;
  border-radius: 0;
}
html body .select-items div {
  padding: 15px 20px;
  border-bottom: 1px solid #e5e5e5;
}
html body .select-items div:hover {
  background-color: #000000 !important;
  color: #ffffff;
}
html body .select-hide {
  display: none;
}
html body .select-items div:hover,
html body .same-as-selected {
  background-color: rgb(0, 0, 0);
  color: #ffffff;
}
html body header {
  padding: 80px 0;
  position: fixed;
  z-index: 9999;
  width: 100%;
  top: 0;
  transition: all 0.5s ease;
}
html body header .container {
  align-items: flex-start !important;
}
html body header nav .navbar-brand img {
  width: 100px;
  height: auto;
}
html body header nav .navbar-nav {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex-direction: column !important;
}
html body header nav .navbar-nav li {
  display: block;
  float: none;
}
html body header nav .navbar-nav li a {
  font-size: 20px;
  font-weight: 500;
  line-height: 20px;
}
html body header.sticky-header {
  padding: 30px 0;
}
html body header.sticky-header.inverted nav .navbar-brand img {
  filter: invert(1);
}
html body header.sticky-header.inverted nav .navbar-nav li a {
  color: #ffffff;
}
html body section {
  padding: 150px 0;
  background-color: #ffffff;
}
html body section.hero-banner {
  padding: 50px;
  position: relative;
  min-height: 100vh;
}
html body section.hero-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: hsl(211, 63%, 90%);
  background: linear-gradient(45deg, hsl(211, 63%, 90%) 0%, hsl(204, 100%, 99%) 100%);
  background: -webkit-linear-gradient(45deg, hsl(211, 63%, 90%) 0%, hsl(204, 100%, 99%) 100%);
  border: 50px solid #ffffff;
}
html body section.hero-banner .banner-caption {
  z-index: 1;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
html body section.hero-banner .banner-caption h1 {
  font-size: 150px;
  font-weight: 600;
  color: #000000;
  text-align: center;
  line-height: 130px;
}
html body section.hero-banner .banner-caption h1 span {
  font-weight: 600;
  font-size: 50px;
}
html body section.hero-banner .banner-caption h2 {
  font-size: 30px;
  font-weight: 500;
  color: #000000;
  margin-top: 50px;
}
html body section.hero-banner .banner-caption .primary-btn {
  background: #000000;
  padding: 20px 50px;
  border-radius: 50px;
  color: #ffffff;
  font-size: 18px;
  text-align: center;
  margin: 50px auto 0;
  display: flex;
  align-items: center;
  border: 1px solid transparent;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: none;
}
html body section.hero-banner .banner-caption .primary-btn span {
  content: "";
  position: relative;
  height: 8px;
  width: 8px;
  background: #1bd312;
  margin-right: 15px;
  display: inline-block;
}
html body section.hero-banner.inner-banner {
  min-height: 80vh;
}
html body section.hero-banner.inner-banner .banner-caption {
  width: 50%;
  margin: 0 auto;
}
html body section.hero-banner.inner-banner .banner-caption h1 {
  font-size: 70px;
  line-height: 100px;
  text-align: center;
}
html body section.client-slider {
  padding: 30px 0;
  min-height: auto;
}
html body section.about {
  padding-top: 100px;
}
html body section.about .about-caption {
  display: block;
  margin: 0 auto;
}
html body section.about .about-caption p {
  font-size: 40px;
  line-height: 65px;
  color: #000000;
  text-align: left;
  margin-bottom: 50px;
}
html body section.about .stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 100px 0 0;
  background: #fff;
  text-align: center;
}
html body section.about .stats .stat-item .mask {
  overflow: hidden;
  height: 90px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
html body section.about .stats .stat-item .mask .counter {
  font-size: 90px;
  font-weight: 500;
  color: #1e46fa;
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.8s ease-out;
}
html body section.about .stats .stat-item .mask .counter.show {
  transform: translateY(0);
  opacity: 1;
}
html body section.about .stats .stat-item .mask .plus {
  font-size: 90px;
  font-weight: 300;
  color: #1e46fa;
  margin-left: 2px;
}
html body section.about .stats .stat-item p {
  margin: 20px 0;
  font-size: 20px;
  line-height: normal;
  font-weight: 500;
}
html body section.case-studies {
  padding: 0;
}
html body section.case-studies .container {
  border-top: 3px solid #f3f3f3;
  padding: 150px 0;
}
html body section.case-studies .section-title {
  font-size: 50px;
  text-align: center;
  width: 30%;
  margin: 0 auto 80px;
}
html body section.case-studies .grid .grid-item h3 {
  font-size: 15px;
  color: #6d6d6d;
  text-align: left;
  margin-bottom: 10px;
  font-weight: 400;
}
html body section.case-studies .grid .grid-item h4 {
  font-size: 20px;
  color: #000000;
  text-align: left;
  font-weight: 600;
}
html body section.video-line {
  padding: 0;
}
html body section.video-line .grid {
  grid-template-columns: repeat(4, 1fr); /* 3 in a row */
  gap: 30px;
}
html body section.video-line .grid .grid-item video {
  width: 100%;
  height: auto;
}
html body footer {
  padding: 150px 0 0;
  background-color: #000000;
}
html body footer .footer-title {
  text-align: center;
  font-size: 120px;
  line-height: 140px;
  font-weight: 400;
  color: #ffffff;
  width: 50%;
  margin: 0 auto 80px;
}
html body footer .button-group {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 100px;
}
html body footer .button-group a {
  background: transparent;
  padding: 20px 50px;
  border-radius: 50px;
  color: #ffffff;
  font-size: 18px;
  text-align: center;
  display: flex;
  align-items: center;
  border: 1px solid #3a3a3a;
  gap: 20px;
  text-decoration: none;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 500;
}
html body footer .footer-bottom {
  margin-top: 150px;
  padding: 50px 0;
  border-top: 1px solid #3a3a3a;
}
html body footer .footer-bottom .footer-social ul {
  list-style-type: none;
  padding: 0;
  text-align: left;
}
html body footer .footer-bottom .footer-social ul li {
  margin-right: 80px;
  display: inline-block;
}
html body footer .footer-bottom .footer-social ul li a {
  text-decoration: none;
}
html body footer .footer-bottom .footer-social ul li a h6 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 10px;
}
html body footer .footer-bottom .footer-social ul li a p {
  color: #71717a;
  font-size: 18px;
  margin: 0;
}
html body footer .footer-bottom .copyright {
  text-align: right;
}
html body footer .footer-bottom .copyright h6 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 10px;
}
html body footer .footer-bottom .copyright p {
  color: #71717a;
  font-size: 18px;
  margin: 0;
}
html body .split {
  opacity: 0;
  text-align: center;
  color: rgb(14, 16, 15);
  font-size: 2rem;
  will-change: transform;
  color: #0e100f;
}
html body .split * {
  will-change: transform;
}
html body.inner-page section.about-pg {
  padding-bottom: 0;
}
html body.inner-page section.about-pg .about-wrapper {
  margin: 0 auto;
}
html body.inner-page section.about-pg .about-wrapper .hello-text {
  font-size: 135px;
  font-weight: 700;
  text-align: center;
  color: #dddbe3;
  margin-bottom: -50px;
}
html body.inner-page section.about-pg .about-wrapper .about-container .about-img {
  width: 392px;
  height: 460px;
  overflow: hidden;
  border-radius: 50%;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  position: relative;
}
html body.inner-page section.about-pg .about-wrapper .about-container .about-img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 392px;
  height: 392px;
  border-radius: 50%;
  background: #dddbe3;
  z-index: 1;
}
html body.inner-page section.about-pg .about-wrapper .about-container .about-img img {
  z-index: 2;
  position: absolute;
  width: 500px;
  max-width: 500px;
  display: block;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
  margin: 0 auto;
}
html body.inner-page section.about-pg .about-wrapper .about-container .abt-content-contaner {
  padding-left: 130px;
}
html body.inner-page section.about-pg .about-wrapper .about-container .abt-content-contaner p {
  font-size: 35px;
  line-height: 55px;
  text-align: left;
}
html body.inner-page section.about-pg .about-wrapper .about-container .abt-content-contaner .available p {
  font-size: 20px;
  color: #1bd312;
  margin-top: 50px;
}
html body.inner-page section.about-pg .about-wrapper .about-container .abt-content-contaner .available p span {
  content: "";
  position: relative;
  height: 8px;
  width: 8px;
  background: #1bd312;
  margin-right: 15px;
  display: inline-block;
}
html body.inner-page section.about-pg .about-wrapper .stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 100px 0 0;
  background: #fff;
  text-align: center;
  margin: 0 auto;
}
html body.inner-page section.about-pg .about-wrapper .stats .stat-item .mask {
  overflow: hidden;
  height: 90px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
html body.inner-page section.about-pg .about-wrapper .stats .stat-item .mask .counter {
  font-size: 90px;
  font-weight: 500;
  color: #1e46fa;
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.8s ease-out;
}
html body.inner-page section.about-pg .about-wrapper .stats .stat-item .mask .counter.show {
  transform: translateY(0);
  opacity: 1;
}
html body.inner-page section.about-pg .about-wrapper .stats .stat-item .mask .plus {
  font-size: 90px;
  font-weight: 300;
  color: #1e46fa;
  margin-left: 2px;
}
html body.inner-page section.about-pg .about-wrapper .stats .stat-item p {
  margin: 20px 0;
  font-size: 20px;
  line-height: normal;
  font-weight: 500;
  text-align: left;
}
html body.inner-page section.services .service-container .grid {
  gap: 30px;
  grid-template-columns: repeat(4, 1fr);
}
html body.inner-page section.services .service-container .grid .grid-item .service-card {
  padding: 40px;
  min-height: 400px;
  display: flex;
  text-align: left;
  flex-direction: column;
  justify-content: space-between;
}
html body.inner-page section.services .service-container .grid .grid-item .service-card h3 {
  font-size: 15px;
  line-height: 30px;
  font-weight: 500;
  margin: 0;
}
html body.inner-page section.services .service-container .grid .grid-item .service-card h4 {
  font-size: 20px;
  font-weight: 500;
  margin: 0;
}
html body.inner-page section.services .service-container .grid .grid-item .service-card.research {
  background-color: #f3f7f6;
}
html body.inner-page section.services .service-container .grid .grid-item .service-card.uiux {
  background-color: #f3f6f8;
}
html body.inner-page section.services .service-container .grid .grid-item .service-card.development {
  background-color: #faf9f8;
}
html body.inner-page section.services .service-container .grid .grid-item .service-card.graphic {
  background-color: #faf9f8;
}
html body.inner-page section.services .service-container .grid .grid-item .service-card.branding {
  background-color: #f8efe6;
}
html body.inner-page section.services .service-container .grid .grid-item .service-card.project-management {
  background-color: #fefaeb;
}
html body.inner-page section.journey {
  padding-top: 0;
}
html body.inner-page section.journey .section-title {
  font-size: 50px;
  line-height: 65px;
  text-align: center;
  width: 25%;
  margin: 0 auto 80px;
}
html body.inner-page section.journey .career-wrapper {
  margin: 0 auto;
}
html body.inner-page section.journey .career-wrapper hr {
  margin: 40px 0;
  border-color: #a2a1a3;
}
html body.inner-page section.journey .career-wrapper .career-container {
  align-items: center;
  display: flex;
}
html body.inner-page section.journey .career-wrapper .career-container .career-timeline {
  align-items: center;
  display: flex;
}
html body.inner-page section.journey .career-wrapper .career-container .career-timeline .company {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #f0f0f0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 30px;
}
html body.inner-page section.journey .career-wrapper .career-container .career-timeline .position {
  width: 70%;
}
html body.inner-page section.journey .career-wrapper .career-container .career-timeline .position h5 {
  font-size: 20px;
  line-height: 30px;
  margin: 0;
}
html body.inner-page section.journey .career-wrapper .career-container .duration p {
  margin: 0;
  font-size: 18px;
  color: #848584;
  display: flex;
  align-items: center;
}
html body.inner-page section.journey .career-wrapper .career-container .duration p span {
  content: "";
  position: relative;
  height: 8px;
  width: 8px;
  background: #848584;
  margin-right: 15px;
  display: inline-block;
}
html body.inner-page section.journey .career-wrapper .career-container .location p {
  text-align: right;
  margin: 0;
  font-size: 18px;
  color: #000000;
  display: flex;
  align-items: flex-start;
  width: 70%;
  float: right;
  justify-content: flex-end;
}
html body.inner-page section.journey .career-wrapper .career-container .location p span {
  content: "";
  position: relative;
  height: 8px;
  width: 8px;
  background: #000000;
  margin-left: 15px;
  display: inline-block;
  top: 10px;
}
html body.inner-page section.case-studies {
  padding-top: 100px;
}
html body.inner-page section.case-studies .container {
  border-top: none;
}
html body.inner-page section.contact {
  padding-top: 300px;
}
html body.inner-page section.contact .container {
  border: none;
}
html body.inner-page section.contact .container .contact-wrapper {
  margin: 0 auto;
}
html body.inner-page section.contact .container .contact-wrapper .details .section-title {
  font-size: 50px;
  text-align: left;
  width: 70%;
  margin-bottom: 100px;
}
html body.inner-page section.contact .container .contact-wrapper .details ul {
  list-style-type: none;
  padding: 0;
}
html body.inner-page section.contact .container .contact-wrapper .details ul li {
  margin-bottom: 30px;
}
html body.inner-page section.contact .container .contact-wrapper .details ul li span {
  font-size: 15px;
  color: #6d6d6d;
  text-align: left;
  margin-bottom: 10px;
  font-weight: 400;
  display: block;
}
html body.inner-page section.contact .container .contact-wrapper .details ul li a,
html body.inner-page section.contact .container .contact-wrapper .details ul li p {
  font-size: 20px;
  color: #000000;
  text-align: left;
  font-weight: 600;
  display: inline-block;
  text-decoration: none;
  margin: 0;
}
html body.inner-page section.contact .container .contact-wrapper .details form label {
  font-size: 15px;
  color: #000000;
  text-align: left;
  margin-bottom: 10px;
  font-weight: 500;
  display: block;
}
html body.inner-page section.contact .container .contact-wrapper .details form .form-control {
  background-color: #f3f3f3;
  padding: 20px;
  border: none;
  border-radius: 0;
  margin-bottom: 30px;
}
html body.inner-page section.contact .container .contact-wrapper .details form .form-control::-moz-placeholder {
  opacity: 0;
}
html body.inner-page section.contact .container .contact-wrapper .details form .form-control::placeholder {
  opacity: 0;
}
html body.inner-page section.contact .container .contact-wrapper .details form .form-control:focus {
  box-shadow: none;
  border: none;
}
html body.inner-page section.contact .container .contact-wrapper .details form .form-control.textarea {
  height: 150px;
}
html body.inner-page section.contact .container .contact-wrapper .details form button {
  background: #000000;
  padding: 20px 50px;
  border-radius: 50px;
  color: #ffffff;
  font-size: 18px;
  text-align: center;
  border: 1px solid transparent;
}
html body.inner-page section.case-study {
  padding-top: 250px;
}
html body.inner-page section.case-study .case-wrapper {
  margin: 0 auto;
}
html body.inner-page section.case-study .case-wrapper .case-heading .section-title {
  font-size: 50px;
  text-align: left;
  width: 60%;
  margin-bottom: 50px;
  line-height: 65px;
}
html body.inner-page section.case-study .case-wrapper .case-heading h2 {
  font-size: 18px;
  color: #6d6d6d;
  text-align: left;
  margin-bottom: 10px;
  font-weight: 400;
}
html body.inner-page section.case-study .case-wrapper .case-banner {
  margin: 100px 0;
}
html body.inner-page section.case-study .case-wrapper .case-details .case-info {
  display: flex;
  flex-direction: row;
  gap: 80px;
}
html body.inner-page section.case-study .case-wrapper .case-details .case-info .case-info-item h3 {
  font-size: 18px;
  color: #6d6d6d;
  text-align: left;
  margin-bottom: 10px;
  font-weight: 400;
}
html body.inner-page section.case-study .case-wrapper .case-details .case-info .case-info-item h4 {
  font-size: 20px;
  color: #000000;
  text-align: left;
  font-weight: 600;
}
html body.inner-page section.case-study .case-wrapper .case-details .case-content p {
  text-align: left;
}
html body.inner-page section.case-study .case-wrapper .case-images {
  margin: 100px 0;
}
html body.inner-page section.case-study .case-wrapper .case-images .grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 75px;
  padding: 0;
}
html body.inner-page section.case-study .case-wrapper .case-images .grid .overflow-hidden {
  margin: 0;
}
html body.inner-page section.case-study .case-wrapper .case-images.bottom-75 {
  margin-bottom: 75px;
}
html body.inner-page section.case-study .case-wrapper .case-images.top-75 {
  margin-top: 75px;
}
html body.inner-page section.case-study .case-wrapper .case-image-single .grid {
  grid-template-columns: repeat(1, 1fr);
  gap: 0px;
  padding: 0;
}
html body.inner-page section.case-study .case-wrapper .case-image-single .grid .overflow-hidden {
  margin: 0;
}
html body.inner-page section.case-study .case-wrapper .case-video {
  margin: 100px 0;
}
html body.inner-page section.case-study .case-wrapper .case-video video {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html body.inner-page section.case-study .case-wrapper .case-social-media {
  margin: 100px 0;
}
html body.inner-page section.case-study .case-wrapper .case-social-media .grid {
  gap: 30px;
  padding: 0;
  align-items: end;
}
html body.inner-page section.case-study .case-wrapper .case-social-media .grid .grid-item .overflow-hidden {
  margin: 0;
}
html body.inner-page section.other-case-studies {
  padding-top: 0;
}
html body.inner-page section.other-case-studies .case-slider-wrapper {
  margin: 0 auto;
}
html body.inner-page section.other-case-studies .case-slider-wrapper .section-title {
  margin-bottom: 80px;
}
html body.inner-page section.other-case-studies .case-slider-wrapper .caseswiper {
  overflow: hidden;
}
html body.inner-page section.other-case-studies .case-slider-wrapper .caseswiper .swiper-wrapper .grid {
  grid-template-columns: repeat(1, 1fr);
  padding: 0;
}
html body.inner-page section.other-case-studies .case-slider-wrapper .caseswiper .swiper-wrapper .grid .grid-item h3 {
  font-size: 15px;
  color: #6d6d6d;
  text-align: left;
  margin-bottom: 10px;
  font-weight: 400;
}
html body.inner-page section.other-case-studies .case-slider-wrapper .caseswiper .swiper-wrapper .grid .grid-item h4 {
  font-size: 20px;
  color: #000000;
  text-align: left;
  font-weight: 600;
}
html body .browcolate-gradient {
  background: hsl(10, 39%, 26%);
  background: linear-gradient(90deg, hsl(10, 39%, 26%) 0%, hsl(33, 33%, 80%) 100%);
  background: -webkit-linear-gradient(317deg, hsl(10, 39%, 26%) 0%, hsl(33, 33.08%, 80.22%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}/*# sourceMappingURL=styles.css.map */