html {
  scroll-behavior: smooth;
}

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

li {
  list-style: none;
}

a,
:visited {
  text-decoration: none;
  color: inherit;
}

/* Mixins */
/*  color  */
@font-face {
  font-family: "fontRaleway";
  src: url(../font/raleway/Raleway-VariableFont_wght.ttf);
}
@font-face {
  font-family: "BedasNeue";
  src: url(../font/bebas_neue/BebasNeue-Regular.ttf);
}
@font-face {
  font-family: "Helvetica";
  src: url(../font/helvetica_REsgA/Helvetica/Helvetica\ CE\ Medium/);
}
body {
  font-family: "fontRaleway", sans-serif;
}

header {
  position: relative;
  color: rgb(255, 255, 255);
  width: 100%;
  border-bottom: 2px solid rgb(187, 187, 187);
  background-color: rgb(14, 14, 14);
  display: grid;
  grid-template-columns: 22.5% 1fr;
  grid-template-rows: repeat(2, auto);
  grid-template-areas: "logo contact" "logo menu";
}
@media screen and (max-width: 1024px) {
  header {
    grid-template-columns: 30% 1fr;
    grid-template-rows: repeat(2, auto);
    grid-template-areas: "contact contact" "logo menu";
  }
}
@media screen and (max-width: 768px) {
  header {
    grid-template-columns: 50% 50%;
  }
}
header .contact {
  grid-area: contact;
  padding: 5px 50px;
  font-family: "fontRaleway", sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: end;
  gap: 100px;
}
header .contact ul {
  display: flex;
  gap: 20px;
}
header .contact ul li:hover {
  cursor: pointer;
}
header .contact ul li i {
  font-size: 2em;
}
header .contact ul li i:hover {
  color: rgb(129, 138, 145);
}
@media screen and (max-width: 768px) {
  header .contact {
    justify-content: space-between;
    gap: 0;
    padding: 5px 20px;
  }
}
header .logo {
  grid-area: logo;
  padding: 10px;
}
header .logo img {
  width: 70%;
  object-fit: contain;
}
header .menu {
  grid-area: menu;
}
header .menu nav {
  width: 100%;
  height: 100%;
  padding: 0px 50px;
  background-color: rgb(14, 14, 14);
  font-size: 16px;
  font-weight: 400;
  line-height: 40px;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: end;
}
header .menu nav .menuContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 35px;
}
header .menu nav .menuContainer .arrowDown::after {
  content: "";
  display: inline-block;
  margin-left: 10px;
  height: 0;
  width: 0;
  border-top: 8px solid rgb(255, 255, 255);
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
@media screen and (max-width: 768px) {
  header .menu nav .menuContainer .arrowDown::after {
    margin-right: 20px;
    content: "";
    position: absolute;
    z-index: 0;
    top: 15px;
    right: 0;
    margin-left: 10px;
    height: 0;
    width: 0;
    border-top: 8px solid rgb(255, 255, 255);
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
  }
}
@media screen and (max-width: 768px) {
  header .menu nav .menuContainer .arrowUp::after {
    margin-right: 20px;
    content: "";
    position: absolute;
    z-index: 0;
    top: 15px;
    right: 0;
    margin-left: 30px;
    height: 0;
    width: 0;
    border-bottom: 8px solid rgb(255, 255, 255);
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
  }
}
header .menu nav .menuContainer .menuRow span {
  display: inline-block;
  height: 100%;
  width: 100%;
  padding-left: 10px;
}
header .menu nav .menuContainer .menuRow:hover {
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  header .menu nav .menuContainer .menuRow:hover .sousMenuContainer {
    transform: translateY(0);
    visibility: visible;
    opacity: 0.95;
  }
}
header .menu nav .menuContainer .menuRow .sousMenuContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: center;
  column-gap: 8%;
  position: absolute;
  z-index: 10;
  left: 0px;
  background-color: rgb(255, 255, 255);
  color: rgb(14, 14, 14);
  width: 100%;
  padding: 50px;
  transform: translateY(10px);
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease-in;
}
@media screen and (max-width: 768px) {
  header .menu nav .menuContainer .menuRow .sousMenuContainer {
    visibility: visible;
    opacity: 1;
    flex-direction: column;
    padding: 20px;
    position: inherit;
    width: 100%;
    transform: translateY(0);
    display: none;
  }
}
header .menu nav .menuContainer .menuRow .sousMenuContainer .sousMenu {
  width: 25%;
  align-self: start;
}
@media screen and (max-width: 768px) {
  header .menu nav .menuContainer .menuRow .sousMenuContainer .sousMenu {
    width: 100%;
    padding: 0;
    margin: 0;
  }
}
header .menu nav .menuContainer .menuRow .sousMenuContainer .sousMenu .sousMenuColumn {
  flex-direction: column;
}
header .menu nav .menuContainer .menuRow .sousMenuContainer .sousMenu .sousMenuColumn li {
  padding: 0 30px;
  width: 100%;
  font-weight: 700;
  line-height: 50px;
}
header .menu nav .menuContainer .menuRow .sousMenuContainer .sousMenu .sousMenuColumn li:hover {
  cursor: pointer;
  color: rgb(129, 138, 145);
}
header .menu nav .menuContainer .menuRow .sousMenuContainer .sousMenu .sousMenuColumn li.btn {
  border: 1px solid rgb(14, 14, 14);
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}
header .menu nav .menuContainer .menuRow .sousMenuContainer .sousMenu .sousMenuColumn li.btn:hover {
  color: rgb(255, 255, 255);
  background-color: rgb(14, 14, 14);
}
header .menu nav .menuContainer .menuRow .sousMenuContainer .sousMenu .sousMenuColumn li h1 {
  font-weight: 900;
  font-size: 18px;
  border-bottom: 2px solid #E8348C;
}
header .menu nav .menuContainer .menuRow .sousMenuContainer .sousMenu .sousMenuColumn li h1:hover {
  cursor: default;
  color: rgb(14, 14, 14);
}
@media screen and (max-width: 768px) {
  header .menu nav .menuContainer .menuRow .sousMenuContainer .sousMenuVide {
    display: none;
  }
}
header .menu nav .menuContainer .menuRow .activeSousMenuMobile {
  display: flex;
}
@media screen and (max-width: 768px) {
  header .menu nav .menuContainer .menuRow {
    width: 100%;
    position: relative;
  }
}
@media screen and (max-width: 768px) {
  header .menu nav .menuContainer {
    position: absolute;
    z-index: 10;
    background-color: rgb(14, 14, 14);
    width: 100%;
    left: 0px;
    top: 100%;
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  header .menu nav .menuContainerMobileHidden {
    display: none;
  }
}
header .menu nav .menuBurger {
  position: relative;
  width: 25px;
  height: 45px;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
header .menu nav .menuBurger .bar {
  display: block;
  width: 100%;
  height: 3px;
  background-color: rgb(255, 255, 255);
}
header .menu nav .menuBurger .bar::after, header .menu nav .menuBurger .bar::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: rgb(255, 255, 255);
}
header .menu nav .menuBurger .bar::before {
  transform: translateY(-7px);
}
header .menu nav .menuBurger .bar::after {
  transform: translateY(7px);
}
@media screen and (min-width: 768px) {
  header .menu nav .menuBurger {
    display: none;
  }
}
header .menu nav .aciveMenuBurger .bar {
  background-color: transparent;
  transition: background-color 0.5s ease-in;
}
@keyframes activeBefore {
  0% {
    transform: translateY(-7px);
  }
  50% {
    transform: translateY(0px);
  }
  100% {
    transform: rotate(45deg);
  }
}
@keyframes activeAfter {
  0% {
    transform: translateY(7px);
  }
  50% {
    transform: translateY(0px);
  }
  100% {
    transform: rotate(-45deg);
  }
}
header .menu nav .aciveMenuBurger .bar::after {
  border: none;
  animation-name: activeAfter;
  animation-duration: 0.8s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
header .menu nav .aciveMenuBurger .bar::before {
  border: none;
  animation-name: activeBefore;
  animation-duration: 0.8s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
header .menu nav .disableMenuBurger .bar {
  background-color: rgb(255, 255, 255);
  transition: background-color 0.5s ease-in;
}
@keyframes disableBefore {
  0% {
    transform: rotate(45deg);
  }
  50% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-7px);
  }
}
@keyframes disableAfter {
  0% {
    transform: rotate(-45deg);
  }
  50% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(7px);
  }
}
header .menu nav .disableMenuBurger .bar::after {
  animation-name: disableAfter;
  animation-duration: 0.8s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
header .menu nav .disableMenuBurger .bar::before {
  animation-name: disableBefore;
  animation-duration: 0.8s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

main {
  background-color: rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 65px;
}
main .bannerCarousel {
  width: 100%;
  height: 515px;
  overflow: hidden;
  position: relative;
  color: rgb(255, 255, 255);
}
main .bannerCarousel .textImgBanner {
  position: absolute;
  z-index: 2;
  width: 85%;
  display: none;
}
main .bannerCarousel .textImgBanner h1 {
  font-family: "BedasNeue", sans-serif;
  font-size: 61px;
  font-weight: 700;
  line-height: 61px;
  color: #fff9f9;
  text-transform: uppercase;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  main .bannerCarousel .textImgBanner h1 {
    font-size: 58px;
    line-height: 58px;
  }
}
main .bannerCarousel .textImgBanner p {
  font-family: "Helvetica", sans-serif;
  font-weight: 600;
  font-size: 17px;
  line-height: 24px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  main .bannerCarousel .textImgBanner p {
    font-size: 12px;
    line-height: 18px;
  }
}
main .bannerCarousel .textImgBanner button {
  background: transparent;
  text-decoration: none;
  border: 2px solid rgb(255, 255, 255);
  line-height: 1;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 3px;
  text-align: center;
  transition: all 0.3s;
  color: inherit;
}
main .bannerCarousel .textImgBanner button:hover {
  cursor: pointer;
}
main .bannerCarousel .textImgBanner.active_textImgBanner {
  display: block;
  animation: chowText 0.8s ease;
  animation-fill-mode: forwards;
}
@keyframes chowText {
  from {
    opacity: 0;
    bottom: -100px;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  to {
    opacity: 1;
    bottom: 250px;
    left: 50%;
    transform: translate(-50%, 50%);
  }
}
main .bannerCarousel .imgBannerCarousel {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: none;
}
main .bannerCarousel .imgBannerCarousel.active_imgBannerCarousel {
  display: block;
  animation: zoom 15s;
  animation-fill-mode: forwards;
}
@keyframes zoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.2);
  }
}
main .bannerCarousel .background-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
main .bannerCarousel .btn_BannerCarousel {
  width: 100%;
  position: absolute;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  font-size: 50px;
}
main .bannerCarousel .btn_BannerCarousel :hover {
  cursor: pointer;
}
main .bannerCarousel .btn_BannerCarousel .btn_BannerCarousel_left {
  margin-left: 20px;
}
main .bannerCarousel .btn_BannerCarousel .btn_BannerCarousel_right {
  margin-right: 20px;
}
main section {
  width: 1140px;
  height: 660px;
}
@media screen and (max-width: 1140px) {
  main section {
    height: auto;
    width: 100%;
  }
}
main section .container {
  width: 100%;
  height: 100%;
  display: flex;
}
@media screen and (max-width: 1140px) {
  main section .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
  }
}
main section .container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 1140px) {
  main section .container img {
    height: 500px;
  }
}
main section .container span {
  font-family: "Helvetica", sans-serif;
  font-size: 130px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 215px;
  letter-spacing: 6.32px;
}
main section .container .animH1 {
  transform: translateY(0%);
  opacity: 1;
}
main section .container h1 {
  font-family: "BedasNeue", sans-serif;
  font-size: 55px;
  font-weight: 700;
  line-height: 55px;
  transition: all 1s;
  transform: translateY(50%);
  opacity: 0;
}
@media screen and (max-width: 1140px) {
  main section .container h1 {
    text-align: left;
  }
}
main section .container button {
  border-style: groove;
  border-color: #7D9D85;
  border-radius: 3px;
  font-size: 15px;
  padding: 12px 24px;
  transition: all 0.3s;
  font-weight: 600;
  line-height: 1;
  color: rgb(255, 255, 255);
  text-transform: capitalize;
}
main section .container .body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 30px;
  align-items: start;
  padding: 30px;
  font-family: "Helvetica", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  width: 100%;
  margin-bottom: 0;
}
main section .container .body p {
  text-align: left;
}
main section .container .body li {
  list-style-type: disc;
  margin-left: 40px;
  text-align: left;
}
main section .container .leftPart.ratio_60-40 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 60%;
}
@media screen and (max-width: 1140px) {
  main section .container .leftPart.ratio_60-40 {
    order: 2;
    width: 100%;
  }
  main section .container .leftPart.ratio_60-40 .header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    align-items: start;
    padding: 30px;
  }
}
main section .container .leftPart.ratio_60-40 .header {
  display: flex;
  width: 100%;
}
main section .container .leftPart.ratio_60-40 .header.p30px {
  padding-left: 30px;
}
main section .container .leftPart.ratio_60-40 .header .h1_96px {
  font-size: 96px;
  line-height: 96px;
  font-weight: 500;
}
@media screen and (max-width: 1140px) {
  main section .container .leftPart.ratio_60-40 .header .h1_96px {
    font-size: 50px;
    line-height: 50px;
  }
}
main section .container .leftPart.ratio_60-40 .header .leftPart {
  width: 30%;
}
main section .container .leftPart.ratio_60-40 .header .rightPart {
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  align-items: start;
  text-align: left;
  gap: 20px;
}
main section .container .leftPart.ratio_60-40 .header.with100 .leftPart {
  width: 0%;
}
main section .container .leftPart.ratio_60-40 .header.with100 .rightPart {
  width: 100%;
}
main section .container .leftPart.ratio_60-40 button {
  background-color: transparent;
}
main section .container .leftPart.ratio_60-40 button:hover {
  color: #7D9D85;
  cursor: pointer;
}
main section .container .rightPart.ratio_60-40 {
  width: 40%;
  padding: 30px;
}
@media screen and (max-width: 1140px) {
  main section .container .rightPart.ratio_60-40 {
    order: 1;
    width: 100%;
  }
}
main section .container .rightPart.ratio_60-40.noPadding {
  padding: 0;
}
main section .container .leftPart.ratio_40-60 {
  width: 35%;
}
@media screen and (max-width: 1140px) {
  main section .container .leftPart.ratio_40-60 {
    width: 100%;
  }
}
main section .container .rightPart.ratio_40-60 {
  width: 65%;
  display: flex;
}
@media screen and (max-width: 1140px) {
  main section .container .rightPart.ratio_40-60 {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    align-items: start;
  }
}
main section .container .rightPart.ratio_40-60 .leftPart {
  width: 25%;
  padding-left: 20px;
  padding-top: 100px;
}
@media screen and (max-width: 1140px) {
  main section .container .rightPart.ratio_40-60 .leftPart {
    padding-top: 0;
  }
}
main section .container .rightPart.ratio_40-60 .rightPart {
  width: 75%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  align-items: start;
  gap: 20px;
}
@media screen and (max-width: 1140px) {
  main section .container .rightPart.ratio_40-60 .rightPart {
    width: 100vw;
  }
}
main section .container .rightPart.ratio_40-60 .rightPart button {
  border: none;
}
main section .container .rightPart.ratio_40-60 .rightPart .textAlignRight {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  align-items: end;
}
main section .container .rightPart.ratio_40-60 .rightPart .textAlignRight .h1_96px {
  font-size: 96px;
  font-weight: 600;
  line-height: 96px;
}
@media screen and (max-width: 1140px) {
  main section .container .rightPart.ratio_40-60 .rightPart .textAlignRight .h1_96px {
    font-size: 50px;
    line-height: 50px;
  }
}
main section .container .rightPart.ratio_40-60 .rightPart .textAlignRight p {
  text-align: right;
}
main section .container .rightPart.ratio_40-60 button {
  background-color: #7D9D85;
}
main section .container .rightPart.ratio_40-60 button:hover {
  color: rgb(255, 255, 255);
  background-color: rgb(14, 14, 14);
  border-color: rgb(14, 14, 14);
  cursor: pointer;
}
main section .container.bgBlack {
  background-color: rgb(14, 14, 14);
  color: rgb(255, 255, 255);
}
main section .container.bgWhite {
  background-color: rgb(255, 255, 255);
  color: rgb(14, 14, 14);
}
main .partenaires {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 50px;
  width: 100%;
}
@media screen and (max-width: 1140px) {
  main .partenaires {
    display: block;
  }
}
main .partenaires .partenairesLeft {
  background-color: rgb(14, 14, 14);
  border: solid;
  width: 414px;
  height: 353px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1140px) {
  main .partenaires .partenairesLeft {
    width: 100%;
  }
}
main .partenaires .partenairesLeft h2 {
  color: rgb(255, 255, 255);
  font-family: "BedasNeue", sans-serif;
  text-transform: uppercase;
  font-size: 96px;
  font-weight: 500;
  line-height: 96px;
}
@media screen and (max-width: 1140px) {
  main .partenaires .partenairesLeft h2 {
    font-size: 50px;
    line-height: 50px;
  }
}
main .partenaires .partenairesRight .partenairesCarousel {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1140px) {
  main .partenaires .partenairesRight .partenairesCarousel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
  }
}
main .partenaires .partenairesRight .partenairesCarousel .imgPartenairesCarousel {
  object-fit: cover;
  width: 251px;
  height: 163px;
}

footer .footerBody {
  color: rgb(255, 255, 255);
  width: 100%;
  padding: 40px;
  background-color: rgb(14, 14, 14);
  display: flex;
  font-family: "Helvetica", sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 27px;
}
@media screen and (max-width: 768px) {
  footer .footerBody {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 50px;
  }
}
footer .footerBody .sdc {
  width: 25%;
}
@media screen and (max-width: 768px) {
  footer .footerBody .sdc {
    width: 100%;
  }
}
footer .footerBody .sdc .sdcLogo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 163px;
}
footer .footerBody .sdc img {
  width: 50%;
}
footer .footerBody .sdc .sdcContact ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
footer .footerBody .scottoDiCesare {
  width: 25%;
}
@media screen and (max-width: 768px) {
  footer .footerBody .scottoDiCesare {
    width: 100%;
  }
}
footer .footerBody .scottoDiCesare .scottoDiCesareLogo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 163px;
}
footer .footerBody .scottoDiCesare .scottoDiCesareLogo img {
  width: 94%;
}
footer .footerBody .scottoDiCesare .scottoDiCesareContact ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
footer .footerBody .reseaux {
  width: 25%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media screen and (max-width: 768px) {
  footer .footerBody .reseaux {
    width: 100%;
  }
}
footer .footerBody .reseaux ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 20px;
}
footer .footerBody .reseaux ul li {
  display: flex;
  gap: 50px;
  font-size: 40px;
}
footer .footerBody .reseaux ul li button {
  background-color: #7D9D85;
  font-size: 13px;
  padding: 10px 20px;
  border-radius: 2px;
  color: #fff;
  border: none;
}
footer .footerBody .reseaux ul li button:hover {
  cursor: pointer;
}
footer .footerBody .certification {
  width: 25%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  footer .footerBody .certification {
    width: 100%;
  }
}
footer .footerBody .certification .certificationLogos {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-around;
  width: 100%;
}
footer .footerBody .certification .certificationLogos img {
  height: 60px;
}
footer .footerBody .certification .certificationTextes {
  width: 100%;
  text-align: left;
}
footer .footerButtom {
  color: rgb(255, 255, 255);
  background-color: rgb(14, 14, 14);
  font-size: 12px;
  font-weight: 400;
  padding: 10px;
}
footer .footerButtom ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
footer .footerButtom ul li:hover {
  cursor: pointer;
}

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