@font-face {
  font-family: Gotham-Light;
  src: url(../fonts/Gotham-Light.otf);
}
@font-face {
  font-family: Gotham-Book;
  src: url(../fonts/Gotham-Book.otf);
}
@font-face {
  font-family: Gotham-Bold;
  src: url(../fonts/Gotham-Bold.otf);
}

body {
  margin: 0;
}

#loreal-steampod * {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

#loreal-steampod {
  font-family: "Gotham-Light", sans-serif;
  overflow: hidden;
  margin: auto;

  max-width: 1200px;
}

#loreal-steampod .hidden {
  overflow: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
}

#loreal-steampod .pos-rel {
  position: relative;
}

#loreal-steampod .strong {
  font-family: "Gotham-Bold", sans-serif;
}

#loreal-steampod .image {
  max-width: 100%;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#loreal-steampod .section {
  position: relative;
  margin: 20px auto 0;
}

#loreal-steampod .section:last-child {
  margin-bottom: 40px;
}

#loreal-steampod .font-fix {
  display: block;
  font-size: 0;
}

#loreal-steampod .text-left {
  text-align: left;
}

#loreal-steampod .text-right {
  text-align: right;
}

#loreal-steampod .text-center {
  text-align: center;
}

#loreal-steampod .action-button {
  display: inline-block;
  font-family: "Gotham-Book", sans-serif;
  font-size: 18px;
  color: black;
  background: white;
  padding: 7px 100px;
  text-decoration: none;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#loreal-steampod .action-button:hover {
  color: white;
  background: black;
}

/* First section */
#loreal-steampod .main-title {
  position: absolute;
  color: white;
  font-size: 25px;
  bottom: 0;
  right: 0;
  padding: 20px;
}

@media (min-width: 400px) {
  #loreal-steampod .main-title {
    padding-bottom: 40px;
    font-size: 35px;
  }
}
@media (min-width: 700px) {
  #loreal-steampod .main-title {
    font-size: 25px;
  }
}
@media (min-width: 850px) {
  #loreal-steampod .main-title {
    font-size: 35px;
  }
}

/* Second section */

#loreal-steampod .split-container {
  display: flex;
  flex-direction: column;
}

@media (min-width: 700px) {
  #loreal-steampod .split-container {
    flex-direction: row;
  }
}

#loreal-steampod .centered-container {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#loreal-steampod .banner-container {
  position: absolute;
  height: 100%;
  width: 100%;
  padding: 20px 10px 10px 20px;

  top: 0;
  bottom: 0;
  left: 0;
  right: 0;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  color: white;
}

#loreal-steampod .banner-container .text-section {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-content: space-between;
  flex-grow: 1;
}

#loreal-steampod .banner-container .strong {
  font-size: 20px;
}

#loreal-steampod .banner-container .strong.offset {
  margin-bottom: 15px;
}

#loreal-steampod .banner-container .small {
  font-size: 10px;
}

#loreal-steampod .banner-container .small.offset {
  padding-top: 15px;
}

@media (min-width: 450px) and (max-width: 700px) {
  #loreal-steampod .banner-container .strong {
    font-size: 30px;
  }
}

@media (min-width: 900px) {
  #loreal-steampod .banner-container .title {
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  #loreal-steampod .banner-container .strong {
    font-size: 30px;
  }
}

/* Third section */

#loreal-steampod .products-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#loreal-steampod .grid-item::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}

#loreal-steampod .grid-item .image {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 300px;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#loreal-steampod .grid-item:hover .image {
  -webkit-transform: translate(-50%, -50%) scale(1.03);
  -ms-transform: translate(-50%, -50%) scale(1.03);
  -o-transform: translate(-50%, -50%) scale(1.03);
  transform: translate(-50%, -50%) scale(1.03);
}

#loreal-steampod .hover-zoom {
  overflow: hidden;
}

#loreal-steampod .hover-zoom:hover .image {
  -webkit-transform: scale(1.03);
  -ms-transform: scale(1.03);
  -o-transform: scale(1.03);
  transform: scale(1.03);
}

#loreal-steampod .products-grid .grid-item {
  min-width: 300px;
  overflow: hidden;
  padding: 1rem;
  position: relative;
  list-style-type: none;
  width: 100%;
  height: auto;
}

#loreal-steampod .grid-item-link {
  color: black;
}

#loreal-steampod .grid-item-title {
  font-size: 12px;
  display: inline;
  position: absolute;
  bottom: 10px;
  left: 10px;
  padding: 5px;
  max-width: 100%;
}

#loreal-steampod .grid-item-title .subtitle {
  display: inline-block;
  padding: 6px 10px;
  font-weight: 600;
  color: white;
  background: black;
  font-size: 16px;
}

#loreal-steampod .grid-item-title .description {
  display: flex;
  align-items: center;
  min-height: 42px;
  font-size: 12px;
  background: white;
  padding: 10px 6px;
}

@media (min-width: 300px) {
  #loreal-steampod .products-grid .grid-item {
    width: 50%;
  }
}

@media (min-width: 600px) {
  #loreal-steampod .products-grid .grid-item {
    width: 33.33%;
  }

  #loreal-steampod .grid-item-title .subtitle {
    font-size: 16px;
  }

  #loreal-steampod .grid-item-title .description {
    font-size: 12px;
  }

  #loreal-steampod .grid-item-title {
    bottom: 15px;
  }
}

@media (min-width: 900px) {
  #loreal-steampod .products-grid .grid-item {
    width: 25%;
  }
}

/* Fourth section */

#loreal-steampod .products-section {
}

#loreal-steampod .products-section-title {
  font-size: 30px;
  padding: 20px;
  background: black;
  color: white;
  text-align: center;
}

#loreal-steampod .products-list {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-left: 20px;
  padding-right: 20px;
}

@media (min-width: 1100px) {
  #loreal-steampod .products-list {
    justify-content: center;
  }
}

#loreal-steampod .product-item {
  min-width: 190px;
  list-style-type: none;
  padding: 20px 10px;
}

#loreal-steampod .hover-pop {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#loreal-steampod .hover-pop-text {
  display: inline-block;
  margin-top: 12px;
  padding: 5px 20px;
  opacity: 1;
  font-size: 14px;
  font-family: "Gotham-Bold";
  color: white;
  background: black;
}

#loreal-steampod .hover-pop-text:hover {
  scale: 1.1;
}

#loreal-steampod .hover-pop-text {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#loreal-steampod .section-link {
  display: block;
  height: 100%;
  width: 100%;
}

#loreal-steampod .product-name {
  font-size: 8px;
  margin-top: 10px;
  line-height: 12px;
  font-weight: 700;
  font-family: Gotham-Bold;
}

#loreal-steampod .product-name-sub {
  font-size: 8px;
  line-height: 12px;
  font-weight: 400;
  font-family: Gotham-Book;
}

#loreal-steampod .product-link {
  color: black;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}

#loreal-steampod .section-link:hover .action-button {
  color: white;
  background: black;
}

#loreal-steampod .section-styling .container {
  position: absolute;
  padding: 20px;

  bottom: 10%;
  left: 0;
  right: 0;
}

#loreal-steampod .section-haircare .container {
  position: absolute;
  padding: 20px;

  top: 10px;
  left: 0;
  right: 0;

  color: black;
}

#loreal-steampod .text-shadow {
  color: white;
  text-shadow: 0 0 50px black;
}

#loreal-steampod .title {
  font-size: 25px;
  margin-bottom: 20px;
}

#loreal-steampod .title .strong {
  font-size: 30px;
  line-height: 100%;
}

@media (min-width: 400px) {
  #loreal-steampod .title {
    font-size: 30px;
  }

  #loreal-steampod .title .strong {
    font-size: 40px;
  }
}

@media (min-width: 600px) {

  #loreal-steampod .title .strong {
    font-size: 52px;
  }
}

@media (min-width: 700px) {
  #loreal-steampod .container.offset {
    bottom: 50%;
    transform: translateY(50%);
  }
}

@media (min-width: 900px) {
  #loreal-steampod .container.offset {
    left: 300px;
  }
}
@media (min-width: 1100px) {
  #loreal-steampod .grid-item-title .description {
    width: 240px;
  }
}
