/* Layout Styles
======================================= */

.epson-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.epson-header {
  padding: 16px 32px;
}

.epson-content {
  padding: 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.epson-hero {
  display: flex;
  flex-direction: row-reverse;
}

.epson-hero-content {
  padding: 32px;
  background-color: #328ec9;
  color: #fff;
  align-content: center;
  max-width: 40%;
}

.epson-intro {
  display: flex;
  flex-direction: row-reverse;
  gap: 16px;
}

.epson-intro-content {
  padding: 32px;
  text-align: center;
  background-color: #f1f3f5;
  max-width: 30%;
  align-content: center;
}

.epson-video {
  position: relative;
  display: inline-block;        
  max-width: 100%;
  overflow: hidden;
}

.epson-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  transform: translate(-50%, -50%);
  background: url("../images/video-play-button.png") center / contain no-repeat;  border: 0;
  padding: 0;
  cursor: pointer;
  transition: transform 400ms ease, opacity 400ms ease;
}

.epson-play-button:hover {
  background-image: url("../images/video-play-button-hover.png");
  transform: translate(-50%, -50%) scale(1.04);
}

.epson-video.is-playing .epson-play-button {
  opacity: 0;
  pointer-events: none;
}

.epson-print-from-mobiles {
  display: flex;
  flex-direction: row;
}

.epson-print-from-mobiles > * {
  width: 50%;
}

.epson-print-from-mobiles-content {
  padding: 32px;
  background-color: #9ddfff;
  align-content: center;
}

.epson-section {
  text-align: center;
}

.epson-section h2 {
  margin-bottom: 32px;
}

.epson-card-container {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.epson-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: start;
  align-items: flex-start
}

.epson-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex: 0 0 auto;
  padding: 0.5rem 1.25rem;
  margin: 16px 0;
  background-color: #10218b;
  color: #fff;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 300ms ease, color 300ms ease;
}

.epson-button:hover {
  background-color: #9ddfff;
  color: #10218b;
}


/* Font Styles
======================================= */

.epson-container h1,
.epson-container h2,
.epson-container h3 {
  font-weight: 800;
  line-height: 1.2;

}

.epson-section-content h1,
.epson-section-content h2,
.epson-section-content h3 {
  margin-bottom: 16px;
}

span {
  font-size: 1.2rem;
}

/* Media Queries
======================================= */

@media screen and (max-width: 1023px) {
  .epson-hero,
  .epson-intro,
  .epson-card-container,
  .epson-print-from-mobiles {
    display: flex;
    flex-direction: column;
  }

  .epson-image,
  .epson-image img,
  .epson-hero-content,
  .epson-intro-content,
  .epson-print-from-mobiles,
  .epson-print-from-mobiles > * {
    width: 100%;
    max-width: 100%;
  }

  .epson-intro {
    gap: 0px;
  }

  .epson-card {
      margin-bottom: 16px;
  }
}

@media screen and (max-width: 767px) {
  /* Mobile styles go here */
}
