@import url("https://fonts.googleapis.com/css?family=Open+Sans|Public+Sans&display=swap");
@media (max-width: 955px) {
  .sidebar header {
    display: block;
  }
  .menu-bar, .cancel {
    display: block;
    z-index: 111;
    position: absolute;
    right: 1rem;
    top: 1.2rem;
    color: #fff;
    cursor: pointer;
    -webkit-transform: all .4s;
            transform: all .4s;
  }
  .hidden-cancel {
    display: none;
    z-index: 11111;
    -webkit-transform: all .4s;
            transform: all .4s;
  }
  .sidebar {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    z-index: 1;
    -webkit-transition: all .5s;
    transition: all .5s;
    bottom: 0;
    right: 0;
  }
  .open-nav {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  header {
    display: block;
    font-size: 22px;
    color: #fff;
    text-align: center;
    line-height: 70px;
    background: #063146;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  .nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    top: 100px;
    height: 100%;
    width: 100%;
    border-left: none;
    left: 0;
    -webkit-animation: top-in;
            animation: top-in;
  }
  @-webkit-keyframes top-in {
    0% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateX(200px);
              transform: translateX(200px);
      opacity: 1;
    }
  }
  @keyframes top-in {
    0% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateX(200px);
              transform: translateX(200px);
      opacity: 1;
    }
  }
  .sidebar .nav a {
    display: block;
    height: 100%;
    width: 100%;
    color: #fff;
    line-height: 65px;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-transition: .5s;
    transition: .5s;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-right: 0;
  }
  .sidebar .nav li:hover a {
    padding-left: 10px;
    color: #d1a410;
  }
  .sidebar .nav li:hover a.active {
    padding-left: 0;
    color: #d1a410;
  }
  section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  section::before {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 50%);
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 50%);
  }
  section .content {
    padding: 50px;
    margin-bottom: 30px;
  }
  section .content h2 {
    font-size: 1.5rem;
  }
  section .content p {
    font-size: 1rem;
  }
  section .content a {
    font-size: 0.8rem;
    padding: 10px;
  }
  /*
         section .imgBx{
            max-width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            padding-right: 0;
            margin-top: 20px;
         }
     
         section .imgBx img {
             max-width: 300px;
         }
     */
  .sci {
    width: 100%;
    bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    left: 2px;
  }
  footer {
    bottom: -50px;
  }
  body {
    background-color: #0B0B0D;
    height: 100%;
  }
}

* {
  padding: 0;
  margin: 0;
  font-size: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: 'Open Sans','Public Sans','Times New Roman', Times, serif, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.logo {
  position: absolute;
  top: 50px;
  right: 100px;
  width: 60px;
  height: 60px;
}

.logo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.collection-h2 {
  margin-top: 50px;
  font-size: 25px;
  color: #fff;
}

.gallery {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  -ms-grid-rows: (1fr)[2];
      grid-template-rows: repeat(2, 1fr);
  margin-bottom: 50px;
  -webkit-column-gap: 10px;
          column-gap: 10px;
  row-gap: 10px;
  margin-top: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.gallery .img-gallery {
  width: 100%;
  margin-right: 5px;
  overflow: hidden;
}

img {
  width: 100%;
  border-radius: 3px;
  -webkit-transition: all .5s;
  transition: all .5s;
}

img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: all .5s;
  transition: all .5s;
  -webkit-filter: grayscale(50%);
          filter: grayscale(50%);
}

.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
  margin-bottom: 80px;
}

.tab button {
  background-color: inherit;
  float: left;
  text-align: center;
  border: none;
  cursor: pointer;
  padding: 14px 16px;
}

.tab button:hover {
  background-color: #d1a410;
}

.tab button.active {
  background-color: #ccc;
}

.tabcontent {
  display: none;
  margin-bottom: 30px;
  -webkit-animation: fadeEffect 1s;
          animation: fadeEffect 1s;
  position: relative;
  -webkit-transition: all 1s;
  transition: all 1s;
}

@-webkit-keyframes fadeEffect {
  from {
    opacity: 0;
    -webkit-transition: all 1s;
    transition: all 1s;
  }
  to {
    opacity: 1;
    -webkit-transition: all 1s;
    transition: all 1s;
  }
}

@keyframes fadeEffect {
  from {
    opacity: 0;
    -webkit-transition: all 1s;
    transition: all 1s;
  }
  to {
    opacity: 1;
    -webkit-transition: all 1s;
    transition: all 1s;
  }
}

.close- {
  position: absolute;
  right: 0;
  font-size: 30px;
  color: red;
  font-weight: bolder;
  cursor: pointer;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: -3px;
}

.tabcontent h3 {
  color: #fff;
  margin-top: -50px;
}

@media (max-width: 955px) {
  .gallery {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (3fr)[3];
        grid-template-columns: repeat(3, 3fr);
  }
}

.logo-container {
  width: 60px;
  position: absolute;
  top: 45px;
  right: 100px;
}

.logo-container img {
  width: 100%;
  border-radius: 50%;
}

.content h5 {
  margin-top: 15px;
  color: #fff;
  font-size: 1.1rem;
}

.fashion-title {
  font-size: 18px;
  margin-top: 35px;
}

.content ol {
  color: #fff;
  margin-top: 15px;
  padding-left: 15px;
}

.removePic {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.pictures {
  width: 100vw;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.95);
  padding: 20px 50px 20px 50px;
  overflow: hidden;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: all .3s ease-in;
  transition: all .3s ease-in;
}

.pictures .grid-container {
  width: 90%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  -ms-grid-rows: (1fr)[4];
      grid-template-rows: repeat(4, 1fr);
  -webkit-column-gap: 5px;
          column-gap: 5px;
  row-gap: 5px;
  margin: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.pictures .grid-container .img-container {
  width: 100%;
  overflow: hidden;
}

.pictures .grid-container .img-container img {
  width: 100%;
  border-radius: 3px;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.pictures .grid-container .img-container img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: all .5s;
  transition: all .5s;
  -webkit-filter: grayscale(50%);
          filter: grayscale(50%);
}

.removePicBtn {
  color: red;
  font-size: 1.5rem;
  position: absolute;
  top: 40px;
  font-weight: 400;
  right: 50px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  cursor: pointer;
}

@media (max-width: 955px) {
  .logo-container {
    display: -ms-grid;
    display: grid;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    left: 3.3rem;
    margin-left: 30px;
    top: 20px;
  }
  .pictures .grid-container {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    -ms-grid-rows: (1fr)[4];
        grid-template-rows: repeat(4, 1fr);
    margin: auto;
    z-index: 1111;
  }
}

.contact-info {
  margin-bottom: 60px;
  width: 100%;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
}

.contact {
  width: 100%;
  height: 100%;
}

.contact .get-us {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.contact .get-us .address {
  width: 40%;
}

.contact .get-us .address i {
  margin-bottom: 10px;
  color: #fff;
}

.contact .get-us .address i span {
  margin-left: 5px;
  color: #d1a410;
}

.contact .get-us .lets-talk i {
  margin-bottom: 15px;
  color: #fff;
}

.contact .get-us .lets-talk i span {
  margin-left: 5px;
  color: #d1a410;
}

.contact .get-us .email a {
  color: #fff;
}

.contact .get-us .email a:hover {
  background: transparent;
}

.contact .get-us .email i {
  margin-bottom: 15px;
  color: #fff;
}

.contact .get-us .email i span {
  margin-left: 5px;
  color: #d1a410;
  text-shadow: 1px 2px 2px #000;
}

.contact .get-us .email a {
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .contact .get-us {
    width: 100%;
    color: #fff;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .contact .get-us .address {
    width: 100%;
    margin-bottom: 30px;
  }
  .contact .get-us .address i span {
    color: #fff;
  }
  .contact .get-us .lets-talk, .contact .get-us .email {
    margin-bottom: 30px;
  }
  .contact .get-us .lets-talk i, .contact .get-us .email i {
    color: #d1a410;
  }
}

.logo {
  position: absolute;
  top: 50px;
  right: 100px;
  width: 60px;
  height: 60px;
}

.logo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 30px auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #333;
  padding: 10px 10px;
  width: 100%;
}

.profile .about-ceo {
  font-size: 12px;
  width: 100%;
}

.profile .about-ceo .ceo- {
  margin-top: 5px;
  color: #ac8508;
}

.profile .profile-pic {
  width: 100px;
  height: 80px;
  margin-right: 30px;
}

.profile .profile-pic img {
  width: 100%;
  border-radius: 50%;
}

@media screen and (max-width: 955px) {
  .logo {
    top: 15px;
    left: 50px;
    bottom: 15px;
  }
  .profile {
    display: block;
    text-align: justify;
  }
  .profile .profile-pic {
    margin: 0 auto 70px auto;
  }
  .about- {
    margin-top: 50px;
    font-size: 16px;
  }
  #btn-more {
    background: #0b0b0b;
  }
}

.slider {
  max-width: 600px;
  max-height: 300px;
  margin: 40px 100px 0 0;
  z-index: 1;
  overflow: hidden;
  position: relative;
  border: 10px solid #eecc0c;
  -webkit-box-shadow: 0px 0px 5px 2px #fff;
          box-shadow: 0px 0px 5px 2px #fff;
}

.slide {
  width: 100%;
  height: 100%;
}

.animate {
  -webkit-animation: animate .5s ease;
          animation: animate .5s ease;
  -webkit-filter: blur(20%);
          filter: blur(20%);
}

@-webkit-keyframes animate {
  0% {
    opacity: 0;
    -webkit-transition: opacity .5s;
    transition: opacity .5s;
  }
  50% {
    opacity: 0.5;
    -webkit-transition: opacity .5s;
    transition: opacity .5s;
  }
  100% {
    opacity: 1;
    -webkit-transition: opacity .5s;
    transition: opacity .5s;
  }
}

@keyframes animate {
  0% {
    opacity: 0;
    -webkit-transition: opacity .5s;
    transition: opacity .5s;
  }
  50% {
    opacity: 0.5;
    -webkit-transition: opacity .5s;
    transition: opacity .5s;
  }
  100% {
    opacity: 1;
    -webkit-transition: opacity .5s;
    transition: opacity .5s;
  }
}

.slider img {
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0px 0px 5px 2px #fff;
          box-shadow: 0px 0px 5px 2px #fff;
}

.slider img:hover {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
  -webkit-transform: scale(1);
          transform: scale(1);
}

.preview, .next {
  padding: 5px;
  border: none;
  background: #37f;
  font-size: 18px;
  color: #fff;
  position: absolute;
  outline: none;
  cursor: pointer;
  top: 45%;
}

.next {
  right: 0;
}

.caption {
  width: 100%;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  z-index: 1111;
}

@media screen and (max-width: 955px) {
  .slider {
    margin: 100px 100px 0 100px;
    width: 100%;
  }
  .slider ima {
    width: 100%;
    height: 100%;
  }
}

section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-color: #0B0B0D;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #726024;
  -webkit-clip-path: polygon(54% 0, 100% 0, 100% 100%, 84% 100%);
          clip-path: polygon(54% 0, 100% 0, 100% 100%, 84% 100%);
  -webkit-animation: fade-in .5s forwards;
          animation: fade-in .5s forwards;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
  opacity: 0;
}

section .content {
  position: relative;
  padding: 50px 100px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-animation: left-in .5s forwards;
          animation: left-in .5s forwards;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  opacity: 0;
}

section .content h2 {
  color: #fff;
  font-size: 2.5em;
  font-weight: 800;
}

section .content p {
  color: #fff;
  font-size: 1.2em;
}

section .content .btn-more {
  position: relative;
  display: inline-block;
  padding: 15px 30px;
  margin-top: 20px;
  background: #d1a410;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.55em;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
}

section .content a:hover {
  background: #9b843a;
  -webkit-transition: all .2s;
  transition: all .2s;
}

section .imgBx {
  position: relative;
  padding-right: 50px;
}

section .imgBx img {
  max-width: 350px;
  -webkit-animation: fade-in .5s forwards;
          animation: fade-in .5s forwards;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  opacity: 0;
  border: none;
  border-radius: 5px;
}

.sci {
  position: absolute;
  bottom: 50px;
  left: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: bottom-in .5s forwards;
          animation: bottom-in .5s forwards;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  opacity: 0;
}

.sci li {
  list-style: none;
}

.sci li a {
  text-decoration: none;
  color: #fff;
  margin-right: 20px;
  font-size: 0.9em;
}

.sci li a:hover {
  color: #d1a410;
}

.nav {
  position: absolute;
  top: 50px;
  left: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-left: 5px solid #d1a410;
  padding-left: 20px;
  -webkit-animation: top-in .5s forwards;
          animation: top-in .5s forwards;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  opacity: 1;
}

.nav li {
  list-style: none;
}

.nav li a {
  text-decoration: none;
  color: #fff;
  margin-right: 20px;
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 700;
}

.nav li a:hover,
.nav li a.active {
  color: #d1a410;
}

.sidebar header, .menu-bar, #check {
  display: none;
}

footer {
  position: absolute;
  bottom: 10px;
  color: #fff;
  width: 100%;
}

footer p {
  text-align: center;
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes left-in {
  0% {
    -webkit-transform: translateX(-200px);
            transform: translateX(-200px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes left-in {
  0% {
    -webkit-transform: translateX(-200px);
            transform: translateX(-200px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@-webkit-keyframes top-in {
  0% {
    -webkit-transform: translateY(-200px);
            transform: translateY(-200px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes top-in {
  0% {
    -webkit-transform: translateY(-200px);
            transform: translateY(-200px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@-webkit-keyframes bottom-in {
  0% {
    -webkit-transform: translateY(200px);
            transform: translateY(200px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes bottom-in {
  0% {
    -webkit-transform: translateY(200px);
            transform: translateY(200px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@media (max-width: 955px) {
  .sidebar header, .removePicBtn {
    display: block;
  }
  .menu-bar, .cancel {
    display: block;
    z-index: 111;
    position: absolute;
    right: 1rem;
    top: 1.2rem;
    color: #fff;
    cursor: pointer;
    -webkit-transform: all .4s;
            transform: all .4s;
  }
  .hidden-cancel {
    display: none;
    z-index: 11111;
    -webkit-transform: all .4s;
            transform: all .4s;
  }
  .sidebar {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    z-index: 1;
    -webkit-transition: all .5s;
    transition: all .5s;
    bottom: 0;
    right: 0;
  }
  .open-nav {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  header {
    display: block;
    font-size: 22px;
    color: #fff;
    text-align: center;
    line-height: 70px;
    background: #063146;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  .nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    top: 100px;
    height: 100%;
    width: 100%;
    border-left: none;
    left: 0;
    -webkit-animation: top-in;
            animation: top-in;
  }
  @-webkit-keyframes top-in {
    0% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateX(200px);
              transform: translateX(200px);
      opacity: 1;
    }
  }
  @keyframes top-in {
    0% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateX(200px);
              transform: translateX(200px);
      opacity: 1;
    }
  }
  .sidebar .nav a {
    display: block;
    height: 100%;
    width: 100%;
    color: #fff;
    line-height: 65px;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-transition: .5s;
    transition: .5s;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-right: 0;
  }
  .sidebar .nav li:hover a {
    padding-left: 10px;
    color: #d1a410;
  }
  .sidebar .nav li:hover a.active {
    padding-left: 0;
    color: #d1a410;
  }
  section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  section::before {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 50%);
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 50%);
  }
  section .content {
    padding: 50px;
    margin-bottom: 30px;
  }
  section .content h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  section .content p {
    font-size: 1rem;
  }
  section .content a {
    font-size: 0.8rem;
    padding: 10px;
  }
  /*
         section .imgBx{
            max-width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            padding-right: 0;
            margin-top: 20px;
         }
     
         section .imgBx img {
             max-width: 300px;
         }
     */
  .sci {
    width: 100%;
    bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    left: 2px;
  }
  footer {
    bottom: -50px;
  }
  body {
    background-color: #0B0B0D;
    height: 100%;
  }
}
/*# sourceMappingURL=main.css.map */