@charset "UTF-8";
/*! minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css */
/* Custom Scrollbar - Always visible to prevent layout shift */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap");
::-webkit-scrollbar {
  width: 0;
  background-color: #f1f1f1;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 0;
}

::-webkit-scrollbar-thumb {
  background: #000772;
  border-radius: 5px;
  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: #000550;
}

::-webkit-scrollbar-thumb:window-inactive {
  background: #888;
}

/* Firefox scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: #000772 #f1f1f1;
}

button,
input,
select,
textarea {
  margin: 0;
  outline: none;
}

html {
  box-sizing: border-box;
}

* {
  box-sizing: border-box;
}

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

img,
video {
  height: auto;
  max-width: 100%;
}

iframe {
  border: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}
td:not([align]),
th:not([align]) {
  text-align: left;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: #000;
  line-height: 1.375;
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 768px) {
  body {
    font-size: 14px;
    line-height: 18px;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: #0c0272;
  line-height: 1.3;
  margin: 0;
}

h1 {
  font-size: 3.5rem;
}
@media (max-width: 992px) {
  h1 {
    font-size: 2.75rem;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
}

h2 {
  font-size: 2.5rem;
}
@media (max-width: 992px) {
  h2 {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  h2 {
    font-size: 1.75rem;
  }
}

h3 {
  font-size: 1.75rem;
}
@media (max-width: 768px) {
  h3 {
    font-size: 1.5rem;
  }
}

p {
  margin: 0;
  line-height: 1.3;
  font-weight: 500;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s ease;
}

.section-title {
  font-size: 2rem;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}
.section-title .char {
  display: inline-block;
  transform-origin: bottom;
}
@media (max-width: 992px) {
  .section-title {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .section-title {
    font-size: 1.4rem;
  }
}

.section-padding {
  padding: 8rem 0;
}
@media (max-width: 992px) {
  .section-padding {
    padding: 6rem 0;
  }
}
@media (max-width: 768px) {
  .section-padding {
    padding: 4rem 0;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}

.container-fluid {
  width: 100%;
  padding: 0 1.5rem;
}
@media (max-width: 768px) {
  .container-fluid {
    padding: 0 1rem;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem;
}

.col {
  flex: 1;
  padding: 0 1rem;
}

.grid {
  display: grid;
  gap: 2rem;
}
.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 768px) {
  .grid--2 {
    grid-template-columns: 1fr;
  }
}
.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 992px) {
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .grid--3 {
    grid-template-columns: 1fr;
  }
}
.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1200px) {
  .grid--4 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 992px) {
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .grid--4 {
    grid-template-columns: 1fr;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: 0.4s ease-out;
  will-change: transform, background;
  color: #fff;
}
.header--scrolled {
  background: #fff;
  color: #0c0272;
  padding: 10px 0;
  box-shadow: 0 0 20px 0 rgba(103, 151, 255, 0.3411764706);
}
.header--scrolled .header__logo {
  color: #0c0272;
  width: 120px;
  height: 50px;
}
.header--scrolled .header__slogan {
  color: #646464;
  font-size: 13px;
  margin-top: 13px;
}
.header--scrolled .header__nav ul {
  margin-top: 10px;
}
.header--scrolled .header__hamburger {
  color: #0c0272;
}
.header--hidden {
  transform: translateY(-100%);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__wrap-logo {
  display: flex;
  align-items: center;
}
.header__logo {
  display: flex;
  align-items: center;
  width: 140px;
  height: 60px;
  transition: 0.3s ease;
  color: #fff;
}
.header__logo svg {
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .header__logo {
    width: 100px;
    height: 50px;
  }
}
.header__slogan {
  font-size: 14px;
  font-style: italic;
  color: #37c0f4;
  margin-left: 1rem;
  margin-top: 19px;
}
@media (max-width: 768px) {
  .header__slogan {
    display: none;
  }
}
.header__nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
  margin-top: 16px;
}
@media (max-width: 992px) {
  .header__nav ul {
    gap: 1rem;
  }
}
@media (max-width: 920px) {
  .header__nav ul {
    display: none;
  }
}
.header__nav li a {
  font-weight: 600;
  color: inherit;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
  text-transform: uppercase;
}
.header__nav li a:hover {
  color: #37c0f4;
}
@media (max-width: 1440px) {
  .header__nav li a {
    font-size: 14px;
  }
}
.header__hamburger {
  display: none;
  cursor: pointer;
  padding: 10px;
  background: transparent;
  border: none;
  z-index: 1001;
  color: #fff;
}
@media (max-width: 920px) {
  .header__hamburger {
    display: block;
  }
}
.header__hamburger span {
  display: block;
  width: 28px;
  height: 1px;
  background-color: currentColor;
  transition: all 0.3s ease-in-out;
  margin-left: auto;
}
.header__hamburger span:nth-child(2) {
  width: 42px;
  margin: 8px 0;
}
.header__hamburger span:nth-child(3) {
  width: 14px;
}
.header__hamburger.is-active span:nth-child(1) {
  transform: rotate(45deg) translate3d(3px, 10px, 0);
  width: 18px;
}
.header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate3d(3px, -10px, 0);
  width: 18px;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 285px;
  height: 100%;
  background: #fff;
  z-index: 1000;
  transform: translateX(100%);
  transition: 0.3s ease-out;
}
.mobile-nav.is-open {
  transform: translateX(0);
}
.mobile-nav.is-open .logo-icon {
  transform: rotate(0);
}
.mobile-nav__header {
  z-index: 9;
  width: 100%;
  height: 70px;
  display: flex;
  background: #0c0272;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
}
.mobile-nav__header .logo-icon {
  height: 50px;
  transition: 0.4s;
  transform: rotate(-135deg);
}
.mobile-nav__header .logo-icon svg {
  height: 100%;
}
.mobile-nav__close {
  position: relative;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}
.mobile-nav__close span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transform-origin: center;
  transition: 0.3s ease;
}
.mobile-nav__close span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.mobile-nav__close span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  padding: 2rem 15px;
}
.mobile-nav ul a {
  display: block;
  height: 35px;
  font-size: 14px;
  color: #000;
  text-decoration: none;
}

.btn-primary {
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0;
  font-size: 15px;
  padding: 12px 32px;
  display: flex;
  justify-content: center;
  align-self: flex-start;
  border: 0;
  background: #2173ff;
  margin-bottom: 16px;
  transition: 300ms all cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.btn-primary:hover {
  background: #14276f;
}

#webgl-canvas-container {
  position: fixed;
  top: 20%;
  left: 10%;
  width: 800px;
  height: 600px;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  will-change: transform, opacity;
  background: transparent;
}
#webgl-canvas-container canvas {
  display: block;
  width: 100%;
  height: 100%;
  outline: none;
  background: transparent;
}

.main-footer {
  width: 100%;
  background-color: #07135d;
  background-position: center center;
  background-size: cover;
  padding-top: 60px;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #fff;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.25);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  color: #222;
}
.back-to-top:hover {
  background: #0c0272;
  color: #fff;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top svg {
  transform: rotate(-90deg);
}
@media (max-width: 768px) {
  .back-to-top {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
  }
}

.main-footer .container {
  max-width: 1520px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  overflow: hidden;
}

.main-footer .logo {
  height: 85px;
  width: 200px;
  margin: 0;
  margin-bottom: 20px;
  display: block;
}

.address1 {
  width: 100%;
  margin-top: 15px;
}

.vanphong {
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  color: #00a5e8;
  padding-bottom: 5px;
}

.diachi p {
  font-size: 12px;
  color: #fff;
}

.footer_box {
  display: grid;
  grid-template-columns: 25% 25% 25% 16%;
  justify-content: space-between;
  font-size: 14px;
  color: #fff;
}
@media (max-width: 1024px) {
  .footer_box {
    grid-template-columns: 50% 50%;
    gap: 40px;
  }
}
@media (max-width: 640px) {
  .footer_box {
    grid-template-columns: 100%;
    gap: 20px;
  }
}

.footer_box div.text {
  font-size: 20px;
  font-weight: 600;
  display: block;
  margin: 0;
  margin-bottom: 35px;
  padding: 0;
  text-transform: uppercase;
  line-height: 28px;
  letter-spacing: normal;
}

.footer_box span {
  color: #ffc000;
  font-size: 16px;
  font-weight: 600;
}

.rightline div {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-1 {
  width: 85%;
  float: left;
}

.footer-1 p {
  line-height: 24px;
  text-align: justify;
}

.footer-1 span {
  position: relative;
}

.footer-1 span::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  content: "";
  width: 0;
  height: 1px;
  background: #ffc000;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
}

.footer-1 span:hover::before {
  opacity: 1;
  visibility: visible;
  left: 0;
  width: 100%;
}

.footer-2 {
  float: left;
  width: 78%;
}

.wrap-menu_footer {
  margin-bottom: 25px;
}

.wrap-menu_footer img {
  width: 169px;
  height: 30px;
}

.wrap-menu_footer a {
  font-size: 14px;
  transition: 0.3s ease-in-out;
}

.wrap-menu_footer a:hover {
  margin-left: 5px;
}

.footer_box ul {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}

#mainfooter ul li {
  float: left;
  list-style: none;
  margin-bottom: 10px;
}

#mainfooter a:hover {
  color: #ffc000;
}

.rightline ul {
  width: auto;
  margin: 0;
  padding: 0;
  float: left;
  flex-direction: row;
}

.rightline ul li a,
a.transparent {
  color: transparent;
}

.rightline ul li a {
  color: #929394;
  display: block;
  font-size: 11px;
  line-height: 10px;
  padding-left: 0;
  padding-right: 10px;
  text-transform: uppercase;
}

.rightline ul li a svg {
  width: 30px;
  height: 30px;
  color: #ccc;
  fill: #ccc;
  transition: 0.3s;
}

.rightline ul li a:hover svg {
  fill: #fff !important;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=password],
textarea,
select {
  width: 100%;
  padding: 1rem 1.25rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  color: #333333;
  background: #FFFFFF;
  border: 2px solid #E0E0E0;
  border-radius: 8px;
  transition: 0.3s ease;
  margin-bottom: 1rem;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=password]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #0057FF;
  box-shadow: 0 0 0 3px rgba(0, 87, 255, 0.1);
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=password]::placeholder,
textarea::placeholder,
select::placeholder {
  color: #666666;
}
@media (max-width: 768px) {
  input[type=text],
  input[type=email],
  input[type=tel],
  input[type=password],
  textarea,
  select {
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
  }
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group {
  margin-bottom: 2rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #0c0272;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact__form input,
.contact__form textarea {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}
.contact__form input:focus,
.contact__form textarea:focus {
  background: #FFFFFF;
}
.contact__form button[type=submit] {
  margin-top: 1rem;
  width: 100%;
}
@media (min-width: 768px) {
  .contact__form button[type=submit] {
    width: auto;
    align-self: flex-start;
  }
}

input[type=checkbox],
input[type=radio] {
  width: auto;
  margin-right: 0.5rem;
  cursor: pointer;
}

select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-error input,
.form-error textarea,
.form-error select {
  border-color: #FF4757;
}
.form-error input:focus,
.form-error textarea:focus,
.form-error select:focus {
  box-shadow: 0 0 0 3px rgba(255, 71, 87, 0.1);
}

.error-message {
  color: #FF4757;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.form-success input,
.form-success textarea,
.form-success select {
  border-color: #2ED573;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  color: #0c0272;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .slider-nav {
    display: flex;
  }
}
.slider-nav:hover {
  background: #0c0272;
  color: white;
  transform: translateY(-50%) scale(1.1);
}
.slider-nav:active {
  transform: translateY(-50%) scale(0.95);
}
.slider-nav--prev {
  left: 10px;
}
.slider-nav--next {
  right: 10px;
}
.slider-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.slider-dots {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  gap: 8px;
  z-index: 10;
}
@media (max-width: 768px) {
  .slider-dots {
    display: flex;
  }
}
.slider-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(12, 2, 114, 0.3);
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}
.slider-dots button.active {
  background: #0c0272;
  width: 24px;
  border-radius: 4px;
}
.slider-dots button:hover {
  background: rgba(12, 2, 114, 0.6);
}

.logo-idea-wrapper,
.brand-grid__wrapper {
  position: relative;
  padding-bottom: 40px;
}
@media (min-width: 769px) {
  .logo-idea-wrapper,
  .brand-grid__wrapper {
    padding-bottom: 0;
  }
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #FFFFFF;
  overflow: hidden;
  height: 100vh;
}
@media (max-width: 900px) {
  .hero {
    padding-top: 67%;
    height: auto;
  }
}
.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0c0272 0%, #1a1f4d 50%, #0057FF 100%);
  z-index: -1;
}
.hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 90%;
}
.hero__text-overlay {
  position: absolute;
  bottom: 30%;
  right: 13.5%;
  z-index: 2;
}
.hero__animated-text {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1;
  white-space: nowrap;
  font-size: 52px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  letter-spacing: -0.02em;
}
@media (max-width: 900px) {
  .hero__animated-text {
    font-size: 4.2vw;
  }
}
.hero__char {
  display: inline-block;
  opacity: 0;
  transform-origin: center bottom;
  will-change: transform, opacity;
}
.hero__char--yellow {
  color: #F8C022;
}
.hero__space {
  display: inline-block;
  width: 0.3em;
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero__logo {
  max-width: 300px;
  margin: 0 auto 2rem;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}
@media (max-width: 768px) {
  .hero__logo {
    max-width: 200px;
  }
}
.hero__title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  letter-spacing: -1px;
}
@media (max-width: 992px) {
  .hero__title {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 1.75rem;
  }
}
.hero__subtitle {
  font-size: 1.25rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 2px;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .hero__subtitle {
    font-size: 1.1rem;
  }
}
@media (max-width: 768px) {
  .hero__subtitle {
    font-size: 1rem;
  }
}

.logo-intro {
  padding: 100px 0 40px;
}
@media (max-width: 992px) {
  .logo-intro {
    padding: 60px 0 30px;
  }
}
@media (max-width: 768px) {
  .logo-intro {
    padding: 40px 0 20px;
  }
}
.logo-intro__comparison {
  position: relative;
  overflow: hidden;
  display: flex;
  border: 0.5px solid #bcbec0;
  margin: 60px 0;
}
@media (max-width: 1200px) {
  .logo-intro__comparison {
    margin: 40px 0;
  }
}
@media (max-width: 992px) {
  .logo-intro__comparison {
    flex-direction: column;
    margin: 30px 0;
  }
}
@media (max-width: 768px) {
  .logo-intro__comparison {
    margin: 20px 0;
    border-width: 1px;
  }
}
.logo-intro .icon-arrow-right {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  transform: translate(-50%, -50%);
  border-radius: 100px;
  background: #fff;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.25);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 3px;
}
@media (max-width: 992px) {
  .logo-intro .icon-arrow-right {
    width: 40px;
    height: 40px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
  }
}
@media (max-width: 768px) {
  .logo-intro .icon-arrow-right {
    width: 36px;
    height: 36px;
  }
}
.logo-intro .icon-arrow-right svg {
  color: #000772;
}
@media (max-width: 992px) {
  .logo-intro .icon-arrow-right svg {
    width: 20px;
    height: 20px;
  }
}
.logo-intro__item {
  text-align: center;
  position: relative;
  width: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 160px 140px;
}
@media (max-width: 1200px) {
  .logo-intro__item {
    padding: 80px 100px 120px;
  }
}
@media (max-width: 992px) {
  .logo-intro__item {
    width: 100%;
    padding: 60px 40px 80px;
  }
}
@media (max-width: 768px) {
  .logo-intro__item {
    padding: 16px 20px 50px;
  }
}
@media (max-width: 768px) {
  .logo-intro__item:nth-child(3) {
    padding-top: 40px;
  }
}
.logo-intro__item:nth-child(3)::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 50%;
  background: #000772;
  z-index: -1;
}
@media (max-width: 992px) {
  .logo-intro__item:nth-child(3)::after {
    width: 100%;
    height: 30%;
  }
}
.logo-intro__item:nth-child(3)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) skewX(-15deg);
  width: 100%;
  height: 100%;
  background: #000772;
  z-index: -1;
}
@media (max-width: 992px) {
  .logo-intro__item:nth-child(3)::before {
    top: 50%;
    transform: translate(-50%, -50%) skewY(-5deg);
  }
}
@media (max-width: 768px) {
  .logo-intro__item:nth-child(3)::before {
    top: 50%;
    transform: translate(-50%, -50%) skewY(-3deg);
  }
}
.logo-intro__item:nth-child(3) .label-text {
  color: #fff;
  border-color: #fff;
}
.logo-intro__item .label-text {
  font-size: 14px;
  padding: 8px 20px;
  border: 1px solid #E0E0E1;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 2;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 992px) {
  .logo-intro__item .label-text {
    font-size: 13px;
    padding: 6px 16px;
    bottom: 20px;
  }
}
@media (max-width: 768px) {
  .logo-intro__item .label-text {
    font-size: 12px;
    padding: 5px 14px;
    bottom: 15px;
  }
}
.logo-intro__item .logo-img {
  margin: 0 auto;
  max-width: 100%;
}
@media (max-width: 1200px) {
  .logo-intro__item .logo-img {
    max-width: 280px;
  }
}
@media (max-width: 992px) {
  .logo-intro__item .logo-img {
    max-width: 240px;
  }
}
@media (max-width: 768px) {
  .logo-intro__item .logo-img {
    max-width: 200px;
  }
}
.logo-intro__item .logo-img img {
  width: 100%;
  height: auto;
}
.logo-intro .logo-description {
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.logo-intro .logo-idea-wrapper {
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .logo-intro .logo-idea-wrapper {
    padding-bottom: 0;
  }
}
.logo-intro .logo-idea {
  display: flex;
  justify-content: center;
  gap: 7rem;
  text-align: center;
  margin-top: 60px;
}
@media (max-width: 768px) {
  .logo-intro .logo-idea {
    overflow: visible;
    justify-content: flex-start;
    gap: 4rem;
    padding: 20px 0 0;
    margin-top: 20px;
    align-items: flex-start;
  }
}
@media (max-width: 640px) {
  .logo-intro .logo-idea {
    gap: 16px;
  }
}
.logo-intro .logo-idea .idea-item {
  position: relative;
  flex-shrink: 0;
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  text-align: center;
}
.logo-intro .logo-idea .idea-item .idea-icon {
  width: 100%;
  height: 200px;
  border-radius: 20px;
  border: 0.75px solid #a7a9ac;
  margin: 0 auto 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .logo-intro .logo-idea .idea-item .idea-icon {
    width: 150px;
    height: 150px;
  }
}
@media (max-width: 640px) {
  .logo-intro .logo-idea .idea-item .idea-icon {
    width: 140px;
    height: 140px;
  }
}
@media (max-width: 768px) {
  .logo-intro .logo-idea .idea-item .idea-text {
    font-size: 14px;
  }
}

.brand-grid {
  padding: 60px 0 100px;
}
@media (max-width: 640px) {
  .brand-grid {
    padding: 10px 0 50px;
  }
}
.brand-grid .container-fluid {
  max-width: 1280px;
  padding: 0 20px;
  margin: 0 auto;
}
.brand-grid__wrapper {
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .brand-grid__wrapper {
    padding-bottom: 50px;
  }
}
.brand-grid__layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr 1fr 1fr;
  gap: 30px;
  grid-template-areas: "item1 item1 item2 item3" "item5 item4 item4 item3" "item5 item6 item6 item7";
}
@media (max-width: 768px) {
  .brand-grid__layout {
    display: flex;
    flex-wrap: nowrap;
    overflow: visible;
    gap: 20px;
    padding: 0;
  }
}
.brand-grid__item {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}
.brand-grid__item:nth-child(1) {
  grid-area: item1;
}
@media (max-width: 768px) {
  .brand-grid__item:nth-child(1) {
    grid-area: unset;
  }
}
.brand-grid__item:nth-child(2) {
  grid-area: item2;
}
@media (max-width: 768px) {
  .brand-grid__item:nth-child(2) {
    grid-area: unset;
  }
}
.brand-grid__item:nth-child(3) {
  grid-area: item3;
}
@media (max-width: 768px) {
  .brand-grid__item:nth-child(3) {
    grid-area: unset;
  }
}
.brand-grid__item:nth-child(4) {
  grid-area: item4;
}
@media (max-width: 768px) {
  .brand-grid__item:nth-child(4) {
    grid-area: unset;
  }
}
.brand-grid__item:nth-child(5) {
  grid-area: item5;
}
@media (max-width: 768px) {
  .brand-grid__item:nth-child(5) {
    grid-area: unset;
  }
}
.brand-grid__item:nth-child(6) {
  grid-area: item6;
}
@media (max-width: 768px) {
  .brand-grid__item:nth-child(6) {
    grid-area: unset;
  }
}
.brand-grid__item:nth-child(7) {
  grid-area: item7;
}
@media (max-width: 768px) {
  .brand-grid__item:nth-child(7) {
    grid-area: unset;
  }
}
@media (max-width: 768px) {
  .brand-grid__item {
    flex-shrink: 0;
    width: auto;
    height: 300px;
    aspect-ratio: unset;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 640px) {
  .brand-grid__item {
    flex-shrink: 0;
    width: auto;
    height: 250px;
    aspect-ratio: unset;
  }
}
.brand-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .brand-grid__item img {
    width: auto;
    height: 100%;
    max-width: none;
    object-fit: cover;
  }
}
.brand-grid__item:hover img {
  transform: scale(1.05);
}

.logo-construct {
  background: #0c0272;
  color: #FFFFFF;
  overflow: hidden;
}
.logo-construct .section-title {
  color: #FFFFFF;
}
.logo-construct__animation-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 6rem 0;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .logo-construct__animation-wrapper {
    min-height: 400px;
  }
}
.logo-construct__image {
  max-width: 100%;
  height: auto;
}
.logo-construct__element {
  position: absolute;
  transition: 0.6s ease;
}
.logo-construct__element--1 {
  top: 20%;
  left: 10%;
}
.logo-construct__element--2 {
  top: 20%;
  right: 10%;
}
.logo-construct__element--3 {
  bottom: 20%;
  left: 10%;
}
.logo-construct__element--4 {
  bottom: 20%;
  right: 10%;
}

.journey__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6rem;
  align-items: center;
}
@media (max-width: 992px) {
  .journey__grid {
    gap: 4rem;
  }
}
@media (max-width: 768px) {
  .journey__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.journey__text .section-title {
  text-align: left;
}
.journey__text .journey-subtitle {
  text-align: left;
  font-size: 26px;
  text-transform: none;
  margin: 12px 0 32px;
}
.journey__text p {
  text-align: justify;
  margin-bottom: 2rem;
}
.journey__image {
  overflow: hidden;
}
.journey__image img {
  width: 100%;
  height: auto;
  display: block;
  transition: 0.6s ease;
}
.journey__image img:hover {
  transform: scale(1.05);
}

.mockups-grid.no-padding {
  padding: 0;
}
.mockups-grid__layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  min-height: 100vh;
}
@media (max-width: 992px) {
  .mockups-grid__layout {
    grid-template-columns: 1fr 1fr;
    min-height: auto;
  }
}
@media (max-width: 768px) {
  .mockups-grid__layout {
    grid-template-columns: 1fr;
  }
}
.mockups-grid__item {
  overflow: hidden;
  position: relative;
}
.mockups-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.mockups-grid__item:hover img {
  transform: scale(1.05);
}
.mockups-grid__item:nth-child(1) {
  grid-column: 1/2;
  grid-row: 2/3;
  background-color: #F4F8FF;
}
@media (max-width: 992px) {
  .mockups-grid__item:nth-child(1) {
    grid-column: 1/3;
    grid-row: 1/2;
    padding: 4rem;
  }
}
@media (max-width: 768px) {
  .mockups-grid__item:nth-child(1) {
    grid-row: 1;
    padding: 32px 0;
  }
}
.mockups-grid__item:nth-child(2) {
  grid-column: 1/2;
  grid-row: 1/2;
  background-color: #002C8A;
}
@media (max-width: 992px) {
  .mockups-grid__item:nth-child(2) {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
@media (max-width: 768px) {
  .mockups-grid__item:nth-child(2) {
    grid-row: 2;
  }
}
.mockups-grid__item:nth-child(3) {
  grid-column: 2/3;
  grid-row: 1/2;
}
@media (max-width: 992px) {
  .mockups-grid__item:nth-child(3) {
    grid-column: 2/3;
    grid-row: 2/3;
  }
}
@media (max-width: 768px) {
  .mockups-grid__item:nth-child(3) {
    grid-row: 3;
    grid-column: 1;
  }
}
.mockups-grid__item:nth-child(4) {
  grid-column: 3/4;
  grid-row: 1/3;
  background-color: #002C8A;
}
@media (max-width: 992px) {
  .mockups-grid__item:nth-child(4) {
    grid-column: 2/3;
    grid-row: 3/4;
  }
}
@media (max-width: 768px) {
  .mockups-grid__item:nth-child(4) {
    grid-row: 4;
    grid-column: 1;
  }
}
.mockups-grid__item:nth-child(5) {
  grid-column: 2/3;
  grid-row: 2/3;
}
@media (max-width: 992px) {
  .mockups-grid__item:nth-child(5) {
    grid-column: 1/2;
    grid-row: 3/4;
  }
}
@media (max-width: 768px) {
  .mockups-grid__item:nth-child(5) {
    grid-row: 5;
    grid-column: 1;
  }
}
.mockups-grid__text-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 0 15%;
}
.mockups-grid__text-content .section-title {
  text-align: left;
  margin-bottom: 2rem;
}
.mockups-grid__text-content p {
  text-align: justify;
  margin-bottom: 1rem;
}
@media (max-width: 1200px) {
  .mockups-grid__text-content {
    padding: 0 10%;
  }
}
@media (max-width: 992px) {
  .mockups-grid__text-content {
    padding: 0 15px;
    text-align: center;
  }
  .mockups-grid__text-content .section-title {
    text-align: center;
  }
}

#form-lienhe {
  padding: 100px 0 40px;
}

#form-lienhe .form_submit p {
  display: block;
}

.form_captcha {
  margin-bottom: 15px;
}

#form-lienhe .form-bg {
  position: relative;
  z-index: 5;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 65%;
  background-image: linear-gradient(145deg, #B3E6FE, #B3E6FE, #B3E6FE, #B3E6FE, #B3E6FE);
}

.form-wrapper {
  position: relative;
  z-index: 5;
}

.form-avata {
  position: absolute;
  width: 45%;
  height: auto;
  z-index: 4;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  text-align: right;
}

#form-lienhe .form-avata img {
  /* animation: upDown 2s ease-in-out infinite !important; */
}

#form-lienhe .form-bg > * {
  padding: 50px;
}

#form-lienhe .form-bg > * > * {
  width: 70%;
}

#form-lienhe .form-bg > * > * .screen-reader-response {
  display: none;
}

#form-lienhe h2 {
  font-size: 36px;
  font-weight: 600;
  color: #0c0272;
  margin: 0;
  margin-bottom: 20px;
}

#form-lienhe .capcha {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

#form-lienhe .capcha p {
  padding: 0;
}

#form-lienhe .capcha img {
  margin-left: 15px;
  height: 45px;
  width: 100px;
}

#form-lienhe .capcha input {
  margin: 0;
  min-width: 150px;
  margin-left: 20px;
  text-align: center;
}

#form-lienhe p {
  font-size: 18px;
  color: #1a1a1a;
  margin: 0;
  padding-bottom: 35px;
}

#form-lienhe .form-content > p {
  display: grid;
  grid-template-columns: 40.5% 40.5%;
  gap: 1%;
  padding: 0;
}

#form-lienhe .form-content label,
#form-lienhe .capcha .wpcf7-form-control-wrap {
  position: relative;
  display: inline-block;
}

#form-lienhe .form-content .wpcf7-not-valid-tip,
#form-lienhe .capcha .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  content: url(https://icolor.vn/wp-content/themes/icolor/images/pen.png);
  position: absolute;
  top: 0;
  right: 0;
  width: 45px;
  height: 45px;
  font-size: 0;
  padding: 12px;
  background: transparent;
  border: none;
}

#form-lienhe input {
  width: 100%;
  height: 45px;
  font-size: 14px;
  line-height: 45px;
  padding: 5px 10px;
  margin-bottom: 20px;
  border: none;
  border-radius: 0;
}

#form-lienhe input:focus-visible {
  outline: none;
}

#form-lienhe input[type=submit] {
  width: 150px;
  height: 45px;
  line-height: 45px;
  padding: 0 5px;
  border: none;
  background: #122785;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 0;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  border-radius: 0;
  -webkit-appearance: none;
}

@keyframes upDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-40px);
    /* Đi lên 100px */
  }
  100% {
    transform: translateY(0);
    /* Quay lại vị trí ban đầu */
  }
}
@media screen and (max-width: 1600px) {
  #form-lienhe h2 {
    font-size: 30px;
    line-height: 38px;
  }
  #form-lienhe .form-bg > * {
    padding: 30px;
  }
}
@media screen and (max-width: 1199px) {
  #form-lienhe {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1024px) {
  #form-lienhe h2 {
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 5px;
  }
  #form-lienhe {
    margin-bottom: 40px;
  }
  #form-lienhe p {
    font-size: 14px;
    padding-bottom: 25px;
  }
  #form-lienhe p {
    padding-bottom: 15px;
  }
  .form-avata {
    transform: translateY(-30%);
  }
}
@media screen and (max-width: 991px) {
  #form-lienhe .form-bg > * {
    padding: 30px;
  }
  #form-lienhe .form-bg > * > * {
    width: 100%;
  }
  .form-avata {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  #form-lienhe .form-bg > * {
    padding: 15px;
  }
  #form-lienhe input[type=submit] {
    margin-top: 0;
  }
}
@media screen and (max-width: 639px) {
  #form-lienhe h2 {
    font-size: 20px;
    line-height: 28px;
  }
  #form-lienhe .capcha span {
    display: none;
  }
  #form-lienhe .form-content > p {
    text-align: center;
    gap: 2%;
    grid-template-columns: 49% 49%;
  }
  #form-lienhe input {
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 413px) {
  #form-lienhe .form-content {
    grid-template-columns: 100%;
  }
  #form-lienhe .form-bg > * > * {
    text-align: center;
  }
}
#partner {
  padding: 80px 0;
}

.showPartner .section-title {
  margin-bottom: 40px;
}

.slider_partner {
  padding-bottom: 0px;
}

#partner button.slick-prev.slick-arrow {
  border: 1px solid transparent;
  background: transparent;
  font-size: 0;
  width: 45px;
  height: 45px;
  border-radius: 100%;
  margin: 0 10px;
  position: absolute;
  top: 50%;
  left: -5%;
  transform: translateY(-50%);
  outline: none;
  cursor: pointer;
  z-index: 9;
}

#partner button.slick-next.slick-arrow {
  border: 1px solid transparent;
  background: transparent;
  font-size: 0;
  width: 45px;
  height: 45px;
  border-radius: 100%;
  margin: 0 10px;
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  outline: none;
  cursor: pointer;
  z-index: 9;
}

#partner .slick-next {
  transform: translateX(125%);
}

#partner .slick-arrow::after {
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: 3px solid;
  border-right: 3px solid;
  border-color: rgba(100, 100, 100, 0.5215686275);
  content: "";
  transition: 0.3s ease-in-out;
}

#partner .slick-prev:after {
  left: 42%;
  top: 39%;
  transform: rotate(227deg) translateX(1px);
}

#partner .slick-next:after {
  right: 42%;
  top: 35%;
  transform: rotate(47deg) translateX(1px);
}

#partner .slick-arrow:hover {
  background: #004188;
}

#partner .owl-dots .owl-dot {
  border: 1px solid;
  border-color: #2271ff;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
.brand-colors {
  position: relative;
  padding: 60px 0 90px;
  background: url("../images/brand-colors-bg.png") no-repeat center;
  background-size: cover;
}
.brand-colors .section-title,
.brand-colors .section-subtitle {
  text-align: center;
}
.brand-colors .section-subtitle {
  font-size: 28px;
}
@media (max-width: 480px) {
  .brand-colors .section-subtitle {
    font-size: 20px;
  }
}
.brand-colors__layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-template-areas: "blue center yellow" "red  center cyan";
  gap: 4rem;
  align-items: center;
  margin-top: 6rem;
}
@media (max-width: 1200px) {
  .brand-colors__layout {
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 2rem 4rem;
  }
}
@media (max-width: 992px) {
  .brand-colors__layout {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-template-areas: "center center" "blue   yellow" "red    cyan";
    gap: 4rem;
  }
}
@media (max-width: 768px) {
  .brand-colors__layout {
    margin-top: 20px;
    gap: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }
}
.brand-colors__center-image {
  grid-area: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.brand-colors__center-image::before {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 32px;
  background: #0c0272;
  opacity: 0.2;
  content: "";
  filter: blur(20px);
  left: 0;
  border-radius: 100%;
  transform: translateY(100%);
}
.brand-colors__center-image img {
  max-width: 100%;
  height: auto;
  transform: scale(1.3) translateY(-3%);
}
@media (max-width: 992px) {
  .brand-colors__center-image {
    margin-bottom: 4rem;
  }
  .brand-colors__center-image img {
    transform: none;
  }
}
@media (max-width: 768px) {
  .brand-colors__center-image {
    margin-bottom: 12px;
  }
}
.brand-colors__item {
  text-align: center;
}
@media (max-width: 768px) {
  .brand-colors__item {
    width: calc(50% - 10px);
  }
}
.brand-colors__item--blue {
  grid-area: #0c0272;
}
.brand-colors__item--yellow {
  grid-area: #F8C022;
}
.brand-colors__item--red {
  grid-area: #EF4123;
}
.brand-colors__item--cyan {
  grid-area: #56C5D0;
}
.brand-colors__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 100px;
  border: 1px solid currentColor;
  margin: 0 auto 1rem;
}
.brand-colors__icon svg {
  width: 44px;
  height: 44px;
}
.brand-colors__name {
  font-weight: 700;
}
.brand-colors__role {
  font-weight: 600;
}
.brand-colors__desc {
  font-size: 14px;
}
.brand-colors__item--blue .brand-colors__icon,
.brand-colors__item--blue .brand-colors__name {
  color: #0c0272;
}
.brand-colors__item--yellow .brand-colors__icon,
.brand-colors__item--yellow .brand-colors__name {
  color: #F8C022;
}
.brand-colors__item--red .brand-colors__icon,
.brand-colors__item--red .brand-colors__name {
  color: #EF4123;
}
.brand-colors__item--cyan .brand-colors__icon,
.brand-colors__item--cyan .brand-colors__name {
  color: #56C5D0;
}

.custom-cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border: 2px solid #0057FF;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.2s ease;
  mix-blend-mode: difference;
}
@media (max-width: 992px) {
  .custom-cursor {
    display: none;
  }
}

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

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 2rem;
}

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

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 2rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
body.is-loading {
  overflow: hidden;
  height: 100vh;
}

.loading-screen {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #0c0272;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.5s ease;
  pointer-events: all;
}
.loading-screen__logo {
  width: 180px;
  max-width: 48vw;
  height: auto;
  display: block;
  overflow: visible;
  opacity: 0;
  visibility: hidden;
}
.loading-screen__logo path {
  opacity: 0;
}
@media (max-width: 768px) {
  .loading-screen__logo {
    width: 110px;
  }
}

::selection {
  background: #0057FF;
  color: #FFFFFF;
}

::-moz-selection {
  background: #0057FF;
  color: #FFFFFF;
}

/*# sourceMappingURL=style.css.map */
