@charset "UTF-8";
/* DEFAULT */
@media only screen {
  .bg-blue * {
    color: #FFFFFF;
  }
  .head {
    font-size: 2em;
  }
  .item {
    float: left;
    margin: 10px 20px -10px 0;
    width: 40px;
  }
  .number {
    height: 40px;
    width: 40px;
  }
  .outdent {
    margin-left: -1em;
  }
  .para {
    font-size: 1.2em;
    font-weight: bold;
  }
  .reduce {
    height: auto;
    max-width: 400px;
    width: 90%;
  }
  .thirds {
    padding: 1px 2vw;
    width: 28%;
  }
  .xtra {
    padding-top: 30px;
  }
  .xtra2 {
    padding: 20px;
  }
  #aesthetics {
    color: #153872;
    font-family: "garamond", 'Times New Roman', serif;
    font-size: 3em;
    text-align: center;
  }
  #contour {
    background: url("../images/em-flex.webp") no-repeat 50% 50%;
    background-size: cover;
    height: 30vw;
  }
  #grid {
    display: block;
  }
  #grid3 div {
    padding: 1px 30px;
  }
  #grid, #grid2, #grid3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(1, 1fr);
    grid-column-gap: 30px;
    grid-row-gap: 0px;
  }
  #perform {
    margin-bottom: 40px;
  }
  #treatments {
    padding-bottom: 30px;
  }
  #column {
    display: none;
  }
  #versus {
    margin-bottom: 40px;
  }
}
/* MEGAPIXEL */
@media only screen and (min-width: 1951px) {}
/* DESKTOP */
@media only screen and (max-width: 1950px) {}
/* LAPTOP */
@media only screen and (max-width: 1550px) {}
/* TABLET */
@media only screen and (max-width: 1100px) {
  #grid3 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 30px;
  }
}
/* MOBILE */
@media only screen and (max-width: 700px) {
  .head {
    font-size: 1.4em;
  }
  #grid, #grid2 {
    display: none;
  }
  #column {
    display: block;
  }
}