.container--ch * {
  box-sizing: border-box;
}
.container--ch img {
  margin: auto;
}
.container--ch h1 {
  font-family: Orbitron, sans-serif;
}
.container--ch h2 {
  font-family: Orbitron, sans-serif;
}

.ii-product-card {
  box-sizing: border-box;
  width: 33%;
  text-align: center;
  margin: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 15px;
  box-shadow: 0 0 15px rgba(26, 26, 26, 0.4);
}
.ii-product-card img {
  width: 80%;
  margin: 0 auto 15px auto;
}
.ii-product-card p {
  font-size: 24px;
  text-transform: uppercase;
  font-family: Orbitron, sans-serif;
  margin: 0 auto 15px auto;
  line-height: 1.3;
  font-weight: bold;
}

.ii-button {
  text-decoration: none !important;
  width: 100%;
  max-width: 350px;
  font-size: 22px;
  padding: 15px 40px;
  font-weight: bold;
  font-family: sans-serif;
  transition: 0.3s;
  overflow: hidden;
  text-align: center;
  color: #1a1a1a !important;
  border-radius: 10px;
  cursor: pointer;
  background: #f7b103;
  line-height: normal;
}
.ii-button:hover {
  transform: translateY(-2px) !important;
}
.ii-button--filled {
  background: #f7b103;
}
.ii-button--filled:hover {
  background: rgb(252.492, 193.972, 48.508);
}
.ii-button--small {
  font-size: 18px;
  padding: 10px 20px;
}
.ii-button--transparent {
  background: transparent;
  color: #fff !important;
  border: 2px solid #f7b103;
}
.ii-button--transparent:hover {
  transform: translateY(-2px) !important;
  background: rgba(26, 26, 26, 0.8);
}

.container--ch #testimonials {
  background: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
}
.container--ch #testimonials .header-container {
  max-width: fit-content;
  padding: 0 40px;
}
.container--ch #testimonials h1 {
  color: #1a1a1a !important;
  margin-bottom: 0;
}
.container--ch #testimonials .testimonial-card {
  display: flex;
  gap: 50px;
  align-items: center;
  max-width: 800px;
  margin: 40px auto;
}
.container--ch #testimonials .testimonial-card .testimonial-image {
  flex: 0 0 350px;
  height: 350px;
  overflow: hidden;
}
.container--ch #testimonials .testimonial-card .testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.container--ch #testimonials .testimonial-card .testimonial-text {
  flex: 1;
  text-align: left;
  font-style: italic;
  color: #1a1a1a;
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 10px;
}
.container--ch #testimonials .testimonial-card .testimonial-text .signature {
  font-size: 20px;
  color: #707070;
}

@media (max-width: 720px) {
  .container--ch #testimonials {
    padding: 0;
  }
  .container--ch #testimonials h1 {
    font-size: 35px;
    text-align: left;
  }
  .container--ch #testimonials p {
    font-size: 25px;
    max-width: 100%;
  }
  .container--ch #testimonials .flex {
    flex-direction: column;
  }
  .container--ch #testimonials .flex .ii-button {
    margin-bottom: 25px;
    font-size: 18px;
    width: 100%;
  }
  .container--ch #testimonials h1 {
    text-align: left !important;
  }
  .container--ch #testimonials .testimonial-card {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  .container--ch #testimonials .testimonial-card .testimonial-image {
    flex: none;
    width: 100%;
  }
  .container--ch #testimonials .testimonial-card .testimonial-text {
    padding: 0 40px;
  }
}
@media (max-width: 770px) {
  .no-display-770px {
    display: none !important;
  }
}
@media (max-width: 720px) {
  .no-display-720px {
    display: none !important;
  }
}
.ii-divider {
  width: 70%;
  height: 3px;
  background: linear-gradient(to right, white, rgba(112, 112, 112, 0.5), white);
  margin: 15px auto;
}

.ii-modal-overlay {
  position: absolute;
  background: rgba(0, 0, 0, 0.7);
  height: 0vh;
  display: none;
  color: #ffffff;
  overflow: auto;
  padding: 20px;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 999;
}
.ii-modal-overlay .modal-exit {
  position: absolute;
  right: 25px;
  font-size: 30px;
  cursor: pointer;
}
.ii-modal-overlay .modal-content {
  background: red;
  transition: 0.3s;
  transform: scale(0.3);
}
.ii-modal-overlay .ii-grow {
  transform: scale(1);
}

.ii-modal-show {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100vh;
}

.ii-hero {
  background: #999;
  color: #ffffff;
  padding: 40px;
}
.ii-hero h1 {
  color: #ffffff;
  text-align: left;
  font-size: 40px;
  text-transform: capitalize;
  margin-bottom: 0;
  font-weight: bold;
  font-family: Orbitron, sans-serif;
}
.ii-hero .underline {
  height: 5px;
  width: 50%;
  background: #094670;
  bottom: 0;
  max-width: 70px;
  margin-bottom: 0;
}
.ii-hero p {
  font-size: 35px;
  width: 100%;
  max-width: 650px;
  font-family: sans-serif;
  line-height: 1.3;
  text-shadow: 0 0 #1a1a1a;
}
.ii-hero .flex {
  display: flex;
  justify-content: space-around;
  margin: auto;
  align-items: center;
}

/***********************************
******MEDIA QUERIES*****************
************************************/
@media (max-width: 720px) {
  .ii-hero h1 {
    font-size: 35px;
  }
  .ii-hero p {
    font-size: 25px;
  }
  .ii-hero .flex {
    flex-direction: column;
  }
  .ii-hero .flex .ii-button {
    margin-bottom: 25px;
    font-size: 18px;
    width: 80%;
  }
}
.ii-underline {
  height: 5px;
  background: #094670;
  bottom: 0;
  max-width: 70px;
  margin-bottom: 0;
  display: block;
}

.container--ch #hero {
  background: url("https://iteminc.com/content/files/frontend-assets/printer-darkened.jpg");
  color: #ffffff;
  padding: 40px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 40px;
}
.container--ch #hero h1 {
  color: #ffffff;
  text-align: left;
  font-size: 40px;
  text-transform: capitalize;
  margin-bottom: 0;
  font-weight: bold;
}
.container--ch #hero .underline {
  height: 5px;
  width: 50%;
  background: #094670;
  bottom: 0;
  max-width: 90px;
  margin-bottom: 0;
}
.container--ch #hero p {
  font-size: 35px;
  width: 100%;
  max-width: 100%;
  font-family: sans-serif;
  line-height: 1.3;
}
.container--ch #hero .flex {
  display: flex;
  justify-content: start;
  margin: auto;
  align-items: center;
  gap: 20px;
}

/***********************************
****** MEDIA QUERIES *****************
************************************/
@media (max-width: 865px) {
  .container--ch #hero h1 {
    font-size: 35px;
    text-align: left;
  }
  .container--ch #hero p {
    font-size: 25px;
    max-width: 100%;
  }
  .container--ch #hero .flex {
    flex-direction: column;
  }
  .container--ch #hero .flex .ii-button {
    margin-bottom: 25px;
    font-size: 18px;
    width: 100%;
  }
}
@media (max-width: 409px) {
  .container--ch #hero h1 {
    font-size: 28px;
  }
  .container--ch #hero p {
    font-size: 18px;
  }
  .container--ch #hero i {
    display: none;
  }
}
.container--ch #company-logos {
  overflow: hidden;
  box-sizing: border-box;
  margin-bottom: 40px;
}
.container--ch #company-logos .flex {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  margin: 20px auto 20px auto;
  align-items: center;
}
.container--ch #company-logos .flex img {
  width: 200px;
  padding: 10px;
}
.container--ch #company-logos .flex span.img-downsize img {
  height: 100px !important;
  width: auto !important;
}
.container--ch #company-logos .flex .img-downsize {
  width: 100px;
}

.container--ch #product-cards {
  margin-bottom: 40px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
}
.container--ch #product-cards .header-container {
  max-width: fit-content;
  margin: 0 auto;
}
.container--ch #product-cards h1 {
  color: #1a1a1a;
  font-size: 40px;
  text-transform: capitalize;
  margin-bottom: 0;
  font-weight: bold;
}
.container--ch #product-cards p {
  font-size: 35px;
  text-align: center;
  margin: 20px auto;
  width: 100%;
  max-width: 80%;
  font-family: sans-serif;
  line-height: 1.3;
}
.container--ch #product-cards .ii-button {
  margin-top: 20px;
}
.container--ch #product-cards .product-cards-parent-div {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.container--ch #product-cards .flex {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
}
.container--ch #product-cards .flex .ii-product-card {
  width: 100%;
  margin: 0;
}

/*****************************************
********** MEDIA QUERIES *****************
*****************************************/
@media (max-width: 1250px) {
  .container--ch #product-cards h1 {
    font-size: 35px;
    text-align: left;
  }
  .container--ch #product-cards p {
    font-size: 25px;
    max-width: 100%;
  }
  .container--ch #product-cards .flex {
    flex-direction: column;
  }
  .container--ch #product-cards .flex .ii-button {
    margin-bottom: 25px;
    font-size: 18px;
    width: 100%;
  }
  .container--ch #product-cards .product-cards-parent-div {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .container--ch #product-cards .flex {
    display: contents;
  }
}
@media (max-width: 920px) {
  .container--ch #product-cards h1 {
    font-size: 35px;
    text-align: left;
  }
  .container--ch #product-cards p {
    font-size: 25px;
    max-width: 100%;
  }
  .container--ch #product-cards .flex {
    flex-direction: column;
  }
  .container--ch #product-cards .flex .ii-button {
    margin-bottom: 25px;
    font-size: 18px;
    width: 100%;
  }
  .container--ch #product-cards p {
    text-align: left;
  }
  .container--ch #product-cards .ii-button {
    font-size: 18px;
  }
}
@media (max-width: 720px) {
  .container--ch #product-cards {
    padding-top: 0;
  }
  .container--ch #product-cards .product-cards-parent-div {
    display: flex;
  }
  .container--ch #product-cards .flex {
    display: flex;
  }
}
@media (max-width: 409px) {
  .container--ch #product-cards h1 {
    font-size: 28px;
  }
  .container--ch #product-cards p {
    font-size: 18px;
  }
  .container--ch #product-cards i {
    display: none;
  }
}
.container--ch #oki-items {
  background: url("https://iteminc.com/content/files/frontend-assets/background-images/oki-model-blue.jpg");
  color: #ffffff;
  padding: 80px 40px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 40px;
}
.container--ch #oki-items span {
  width: 100%;
}
.container--ch #oki-items img {
  width: 70%;
  margin: auto;
  display: block;
}
.container--ch #oki-items p {
  font-size: 35px;
  width: 100%;
  font-family: sans-serif;
  line-height: 1.3;
}
.container--ch #oki-items .ii-button {
  display: block;
  border-color: #ffffff;
  max-width: 600px;
  margin: auto;
  background: #ffffff;
  color: #094670 !important;
}

/***********************************
******MEDIA QUERIES*****************
************************************/
@media (max-width: 720px) {
  .container--ch #oki-items h1 {
    font-size: 35px;
  }
  .container--ch #oki-items p {
    font-size: 25px;
  }
  .container--ch #oki-items .ii-button {
    margin-bottom: 25px;
    font-size: 18px;
    width: 80%;
  }
}
/*******************************
****** MEDIA QUERIES ************
********************************/
.container--ch #testimonials {
  overflow: hidden;
  padding: 40px;
}
.container--ch #testimonials .header-container {
  max-width: fit-content;
  margin-bottom: 40px;
}
.container--ch #testimonials h1 {
  font-size: 45px;
  text-transform: capitalize;
  font-weight: bold;
  text-align: left;
}
.container--ch #testimonials .testimonial-card {
  display: flex;
  gap: 50px;
  align-items: center;
  margin: 0;
}
.container--ch #testimonials .testimonial-card span.lazy-load-image-background {
  flex: 1;
  width: 100%;
  height: auto;
}
.container--ch #testimonials .testimonial-card span.lazy-load-image-background img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.container--ch #testimonials .testimonial-card .testimonial-text {
  flex: 1;
  text-align: left;
  font-style: italic;
  color: #1a1a1a;
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 10px;
}
.container--ch #testimonials .testimonial-card .testimonial-text .quote {
  font-family: sans-serif;
  line-height: 1.6;
  font-style: italic;
  color: #1a1a1a;
  font-size: 18px;
}
.container--ch #testimonials .testimonial-card .testimonial-text .signature {
  font-family: sans-serif;
  font-size: 18px;
  color: #1a1a1a;
}

/*******************************
****** MEDIA QUERIES ************
********************************/
@media (max-width: 720px) {
  .container--ch #testimonials {
    padding: 0;
  }
  .container--ch #testimonials h1 {
    font-size: 35px;
    text-align: left;
  }
  .container--ch #testimonials p {
    font-size: 25px;
    max-width: 100%;
  }
  .container--ch #testimonials .flex {
    flex-direction: column;
  }
  .container--ch #testimonials .flex .ii-button {
    margin-bottom: 25px;
    font-size: 18px;
    width: 100%;
  }
  .container--ch #testimonials .testimonial-card {
    flex-direction: column;
    gap: 20px;
  }
  .container--ch #testimonials .testimonial-card span.lazy-load-image-background {
    width: 100%;
  }
  .container--ch #testimonials .testimonial-card span.lazy-load-image-background img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: bottom;
  }
}
@media (max-width: 409px) {
  .container--ch #testimonials h1 {
    font-size: 28px;
  }
  .container--ch #testimonials i {
    display: none;
  }
}
.container--ch #cta-homepage {
  background: none;
  padding: 40px;
}
.container--ch #cta-homepage .flex-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.container--ch #cta-homepage .header-container {
  max-width: fit-content;
}
.container--ch #cta-homepage h1 {
  color: #1a1a1a;
}
.container--ch #cta-homepage p {
  text-align: center;
  width: 100%;
  max-width: 100%;
  color: #1a1a1a;
  margin: 2px auto;
}
.container--ch #cta-homepage .cta-text {
  margin: 40px 0;
}

@media (max-width: 865px) {
  .container--ch #cta-homepage {
    padding-top: 0;
  }
  .container--ch #cta-homepage h1 {
    font-size: 35px;
    text-align: left;
  }
  .container--ch #cta-homepage p {
    font-size: 25px;
    max-width: 100%;
  }
  .container--ch #cta-homepage .flex {
    flex-direction: column;
  }
  .container--ch #cta-homepage .flex .ii-button {
    margin-bottom: 25px;
    font-size: 18px;
    width: 100%;
  }
  .container--ch #cta-homepage .flex-col > a.ii-button {
    font-size: 18px;
    align-self: center;
  }
  .container--ch #cta-homepage p {
    text-align: left;
  }
}
@media (max-width: 409px) {
  .container--ch #cta-homepage h1 {
    font-size: 28px;
  }
  .container--ch #cta-homepage p {
    font-size: 18px;
  }
  .container--ch #cta-homepage i {
    display: none;
  }
}
.container--ch #delivery-services {
  margin-bottom: 40px;
  padding: 40px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.container--ch #delivery-services .header-container {
  max-width: fit-content;
}
.container--ch #delivery-services h1 {
  color: #1a1a1a;
  font-size: 40px;
  text-transform: capitalize;
  margin-bottom: 0;
  font-weight: bold;
  text-align: left;
  line-height: 1.3;
}
.container--ch #delivery-services h1 em {
  font-weight: bold;
  font-size: 45px;
}
.container--ch #delivery-services p.small {
  font-size: 20px;
  color: #707070;
  margin-top: 5px;
}
.container--ch #delivery-services p {
  text-align: center;
  color: #1a1a1a;
  font-size: 35px;
  font-family: sans-serif;
  line-height: 1.3;
}
.container--ch #delivery-services .card-container.big-screen {
  width: 100%;
}
.container--ch #delivery-services .card-container.big-screen span.lazy-load-image-background {
  display: flex !important;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.container--ch #delivery-services .card-container.big-screen img {
  width: 80%;
  height: auto;
  object-fit: contain;
}
.container--ch #delivery-services .card-container.small-screen {
  display: none;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
  width: 100%;
}
.container--ch #delivery-services .card-container.small-screen img {
  width: 80%;
  height: auto;
  object-fit: contain;
}

/*******************************
****** MEDIA QUERIES ************
********************************/
@media (max-width: 865px) {
  .container--ch #delivery-services {
    padding-top: 0;
    padding-bottom: 0;
  }
  .container--ch #delivery-services h1 {
    font-size: 35px;
    text-align: left;
  }
  .container--ch #delivery-services p {
    font-size: 25px;
    max-width: 100%;
  }
  .container--ch #delivery-services .flex {
    flex-direction: column;
  }
  .container--ch #delivery-services .flex .ii-button {
    margin-bottom: 25px;
    font-size: 18px;
    width: 100%;
  }
  .container--ch #delivery-services p {
    font-size: 22px;
  }
  .container--ch #delivery-services p.small {
    font-size: 14px;
    margin-top: 10px;
  }
}
@media (max-width: 409px) {
  .container--ch #delivery-services h1 {
    font-size: 24px;
  }
  .container--ch #delivery-services p {
    font-size: 18px;
    text-align: left;
  }
}
.container--ch #oki-announcement {
  background-color: #EFEFEF;
  padding: 10px 90px;
  overflow: hidden !important;
}
.container--ch #oki-announcement span {
  display: block;
}
.container--ch #oki-announcement span img {
  display: block;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}
.container--ch #oki-announcement .ii-custom-header {
  font-size: 20px;
  line-height: 1.8;
  font-family: sans-serif;
  font-weight: lighter;
}
.container--ch #oki-announcement a {
  text-decoration: none;
}

@media (min-width: 960px) {
  .container--ch #oki-announcement {
    display: none;
  }
}
@media (max-width: 599px) {
  .container--ch #oki-announcement {
    display: none;
  }
}
.container--ch #kyocera-toners {
  background: url("https://www.iteminc.com/content/files/frontend-assets/landing-pages/kyocera-toner-campaign-202401/untitled-13.jpg");
  padding: 90px 20px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.container--ch #kyocera-toners span {
  width: 100%;
}
.container--ch #kyocera-toners img {
  display: flex;
  justify-content: center;
  width: 30%;
  margin: auto;
}
.container--ch #kyocera-toners p {
  color: #ffffff;
  font-size: 35px;
  text-align: center;
  width: 100%;
  font-family: sans-serif;
  line-height: 1.3;
}
.container--ch #kyocera-toners .ii-button {
  display: block;
  border-color: #ffffff;
  max-width: 600px;
  margin: auto;
  background: #ffffff;
  color: #094670 !important;
}

/***********************************
******MEDIA QUERIES*****************
************************************/
@media (max-width: 720px) {
  .container--ch #kyocera-toners img {
    width: 70%;
    margin: auto;
  }
  .container--ch #kyocera-toners p {
    font-size: 25px;
  }
  .container--ch #kyocera-toners .ii-button {
    margin-bottom: 25px;
    font-size: 16px;
    width: 80%;
  }
}
.container--ch #tech-hub {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("https://iteminc.com/content/files/frontend-assets/tech-hub-image2.jpg");
  color: #ffffff;
  padding: 40px 40px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 40px;
}
.container--ch #tech-hub h1 {
  color: #ffffff;
  text-align: left;
  font-size: 40px;
  margin-bottom: 0;
  font-weight: bold;
  width: 100%;
}
.container--ch #tech-hub .underline {
  height: 5px;
  width: 50%;
  background: #094670;
  bottom: 0;
  max-width: 90px;
  margin-bottom: 0;
}
.container--ch #tech-hub p {
  font-size: 35px;
  width: 100%;
  max-width: 100%;
  font-family: sans-serif;
  line-height: 1.3;
}
.container--ch #tech-hub .flex {
  display: flex;
  justify-content: space-around;
  margin: auto;
  align-items: center;
}

/***********************************
****** MEDIA QUERIES *****************
************************************/
@media (max-width: 865px) {
  .container--ch #tech-hub h1 {
    font-size: 35px;
    text-align: left;
  }
  .container--ch #tech-hub p {
    font-size: 25px;
    max-width: 100%;
  }
  .container--ch #tech-hub .flex {
    flex-direction: column;
  }
  .container--ch #tech-hub .flex .ii-button {
    margin-bottom: 25px;
    font-size: 18px;
    width: 100%;
  }
  .container--ch #tech-hub h1 {
    font-size: 35px;
  }
  .container--ch #tech-hub p {
    font-size: 25px;
  }
  .container--ch #tech-hub .flex {
    flex-direction: column;
  }
  .container--ch #tech-hub .flex .ii-button {
    margin-bottom: 25px;
    font-size: 18px;
    width: 80%;
  }
}
@media (max-width: 409px) {
  .container--ch #tech-hub h1 {
    font-size: 28px;
  }
  .container--ch #tech-hub p {
    font-size: 18px;
  }
  .container--ch #tech-hub .flex i {
    display: none;
  }
  .container--ch #tech-hub .flex .ii-button {
    width: 100%;
    font-size: 16px;
    margin-left: 0;
    margin-right: 0;
  }
}
.container--ch #core-buy-back-homepage-section {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3)), url("https://www.iteminc.com/content/files/frontend-assets/refurbished-core-page/core.jpg") !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center;
  margin-bottom: 40px;
}
.container--ch #core-buy-back-homepage-section p {
  width: 100%;
  max-width: 100%;
}

/***********************************
****** MEDIA QUERIES *****************
************************************/
@media (max-width: 865px) {
  .container--ch #core-buy-back-homepage-section h1 {
    font-size: 35px;
    text-align: left;
  }
  .container--ch #core-buy-back-homepage-section p {
    font-size: 25px;
    max-width: 100%;
  }
  .container--ch #core-buy-back-homepage-section .flex {
    flex-direction: column;
  }
  .container--ch #core-buy-back-homepage-section .flex .ii-button {
    margin-bottom: 25px;
    font-size: 18px;
    width: 100%;
  }
  .container--ch #core-buy-back-homepage-section .flex .ii-button {
    width: 100%;
    font-size: 18px;
  }
}
@media (max-width: 409px) {
  .container--ch #core-buy-back-homepage-section h1 {
    font-size: 28px;
  }
  .container--ch #core-buy-back-homepage-section p {
    font-size: 18px;
  }
  .container--ch #core-buy-back-homepage-section i {
    display: none;
  }
}
.container--ch #ipp-collaboration-homepage-section {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3)), url("https://www.iteminc.com/content/files/frontend-assets/ipp-collaboration/ipp_collaboration_bg.jpg") !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center 75% !important;
  margin-bottom: 40px;
}
.container--ch #ipp-collaboration-homepage-section p {
  max-width: 90%;
}

@media (max-width: 720px) {
  .container--ch #ipp-collaboration-homepage-section p {
    max-width: 100%;
  }
}
.container--ch #our-product-partners-homepage-section {
  background: #fff;
  padding: 0;
}
.container--ch #our-product-partners-homepage-section .header-container {
  max-width: fit-content;
  margin: 0 auto 40px auto;
  padding: 0 40px;
}
.container--ch #our-product-partners-homepage-section .header-container h1 {
  color: #1a1a1a;
  margin: 0;
}
.container--ch #our-product-partners-homepage-section .flex {
  display: flex;
  gap: 20px;
  align-items: stretch;
}
.container--ch #our-product-partners-homepage-section .IPP, .container--ch #our-product-partners-homepage-section .OKI {
  flex: 1;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  padding: 40px;
}
.container--ch #our-product-partners-homepage-section .IPP .header-container, .container--ch #our-product-partners-homepage-section .OKI .header-container {
  padding: 0 !important;
  margin: 0;
}
.container--ch #our-product-partners-homepage-section .IPP .header-container h1, .container--ch #our-product-partners-homepage-section .OKI .header-container h1 {
  color: #ffffff;
}
.container--ch #our-product-partners-homepage-section .IPP .ii-button, .container--ch #our-product-partners-homepage-section .OKI .ii-button {
  align-self: center;
  margin-top: auto;
}
.container--ch #our-product-partners-homepage-section .IPP {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3)), url("https://www.iteminc.com/content/files/frontend-assets/ipp-collaboration/ipp_collaboration_bg.jpg") no-repeat center center;
  background-size: cover;
}
.container--ch #our-product-partners-homepage-section .OKI {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3)), url("https://www.iteminc.com/content/files/oki_content_images/color_mfp/mc362w.jpg") no-repeat center center;
  background-size: contain;
}

@media (max-width: 865px) {
  .container--ch #our-product-partners-homepage-section {
    padding-top: 0;
  }
  .container--ch #our-product-partners-homepage-section h1 {
    font-size: 35px;
    text-align: left;
  }
  .container--ch #our-product-partners-homepage-section p {
    font-size: 25px;
    max-width: 100%;
  }
  .container--ch #our-product-partners-homepage-section .flex {
    flex-direction: column;
  }
  .container--ch #our-product-partners-homepage-section .flex .ii-button {
    margin-bottom: 25px;
    font-size: 18px;
    width: 100%;
  }
  .container--ch #our-product-partners-homepage-section .flex {
    padding: 0;
    margin: 0;
  }
  .container--ch #our-product-partners-homepage-section .flex .ii-button {
    width: 100%;
    font-size: 18px;
    margin: 0;
  }
  .container--ch #our-product-partners-homepage-section .flex .hero-text {
    margin-bottom: 20px;
  }
  .container--ch #our-product-partners-homepage-section .flex .no-display-865px {
    display: none;
  }
}
@media (max-width: 409px) {
  .container--ch #our-product-partners-homepage-section h1 {
    font-size: 28px;
  }
  .container--ch #our-product-partners-homepage-section p {
    font-size: 18px;
  }
  .container--ch #our-product-partners-homepage-section i {
    display: none;
  }
}
.container--ch #explore-our-products-homepage-section {
  background: none;
  margin-bottom: 40px;
  padding: 40px;
}
.container--ch #explore-our-products-homepage-section .flex-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.container--ch #explore-our-products-homepage-section .header-container {
  max-width: fit-content;
}
.container--ch #explore-our-products-homepage-section h1 {
  color: #1a1a1a;
  font-size: 40px;
  text-transform: capitalize;
  margin-bottom: 0;
  font-weight: bold;
}
.container--ch #explore-our-products-homepage-section p {
  text-align: center;
  width: 100%;
  max-width: 80%;
  color: #1a1a1a;
}

@media (max-width: 865px) {
  .container--ch #explore-our-products-homepage-section {
    padding-top: 0;
  }
  .container--ch #explore-our-products-homepage-section h1 {
    font-size: 35px;
    text-align: left;
  }
  .container--ch #explore-our-products-homepage-section p {
    font-size: 25px;
    max-width: 100%;
  }
  .container--ch #explore-our-products-homepage-section .flex {
    flex-direction: column;
  }
  .container--ch #explore-our-products-homepage-section .flex .ii-button {
    margin-bottom: 25px;
    font-size: 18px;
    width: 100%;
  }
  .container--ch #explore-our-products-homepage-section p {
    text-align: left !important;
  }
  .container--ch #explore-our-products-homepage-section .flex-col > a.ii-button {
    font-size: 18px;
  }
}
@media (max-width: 409px) {
  .container--ch #explore-our-products-homepage-section h1 {
    font-size: 28px;
  }
  .container--ch #explore-our-products-homepage-section p {
    font-size: 18px;
  }
  .container--ch #explore-our-products-homepage-section i {
    display: none;
  }
}
.container--ch #october-giveaway__hero {
  background: url("https://www.iteminc.com/content/files/frontend-assets/october-giveaway/october-giveaway2.jpg") !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center 150px;
  margin-bottom: 40px;
}
.container--ch #october-giveaway__hero p {
  width: 100%;
  max-width: 100%;
}
.container--ch #october-giveaway__content {
  text-align: center;
  font-family: "Inter", sans-serif;
  line-height: 1.9;
  max-width: 800px;
  margin: 0 auto;
}
.container--ch #october-giveaway__content h3 {
  font-size: 24px;
  color: #094670;
  margin-bottom: 5px;
}
.container--ch #october-giveaway__content p {
  font-size: 20px;
  margin-top: 0px;
}
.container--ch #october-giveaway__content .giveaway-description .title {
  max-width: fit-content;
  margin: 0px auto;
}
.container--ch #october-giveaway__content .giveaway-description .title h2 {
  font-size: 28px;
  margin-bottom: 0px;
}
.container--ch #october-giveaway__content .giveaway-prizes ul {
  list-style: none;
  font-size: 20px;
  padding-left: 0;
  margin-top: 10px;
}
.container--ch #october-giveaway__content .giveaway-prizes ul li {
  margin-bottom: 10px;
}
.container--ch #october-giveaway__content .giveaway-prizes ul img {
  width: 32px;
  vertical-align: middle;
}

/***********************************
****** MEDIA QUERIES *****************
************************************/
@media (max-width: 850px) {
  .container--ch #october-giveaway__hero h1 {
    font-size: 32px;
  }
  .container--ch #october-giveaway__hero p {
    font-size: 28px;
  }
}
@media (max-width: 500px) {
  .container--ch #october-giveaway__hero {
    padding: 30px;
  }
  .container--ch #october-giveaway__hero h1 {
    font-size: 28px;
  }
  .container--ch #october-giveaway__hero p {
    font-size: 24px;
  }
  .container--ch #october-giveaway__content {
    line-height: 1.5;
  }
  .container--ch #october-giveaway__content p {
    font-size: 18px;
    margin-top: 10px;
  }
  .container--ch #october-giveaway__content h3 {
    font-size: 22px;
  }
  .container--ch #october-giveaway__content .giveaway-description .title h2 {
    font-size: 24px;
    text-align: left;
  }
}
.container--ch #marketing-banner-section {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6)), url("https://www.iteminc.com/content/files/marketing-banner.jpg") !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
  margin-bottom: 40px;
}
.container--ch #marketing-banner-section p {
  width: 100%;
  max-width: 100%;
}

/***********************************
****** MEDIA QUERIES *****************
************************************/
@media (max-width: 865px) {
  .container--ch #marketing-banner-section h1 {
    font-size: 35px;
    text-align: left;
  }
  .container--ch #marketing-banner-section p {
    font-size: 25px;
    max-width: 100%;
  }
  .container--ch #marketing-banner-section .flex {
    flex-direction: column;
  }
  .container--ch #marketing-banner-section .flex .ii-button {
    margin-bottom: 25px;
    font-size: 18px;
    width: 100%;
  }
  .container--ch #marketing-banner-section .flex .ii-button {
    width: 100%;
    font-size: 18px;
  }
}
@media (max-width: 409px) {
  .container--ch #marketing-banner-section h1 {
    font-size: 28px;
  }
  .container--ch #marketing-banner-section p {
    font-size: 18px;
  }
  .container--ch #marketing-banner-section i {
    display: none;
  }
}
.container--ch #members {
  width: auto;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}
.container--ch #members .team-cards {
  box-sizing: border-box;
  width: 30%;
  text-align: center;
  margin: 15px;
  padding: 5px;
}
.container--ch #members .team-cards img {
  width: 90%;
  margin: 0 auto 15px;
}
.container--ch #members .team-cards p {
  font-size: 22px;
  margin: 0 auto 2px;
  line-height: 1.2;
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  color: #094670;
}

/******************************* 
       MEDIA QUERIES
*****************************/
@media (max-width: 1024px) {
  .container--ch #members {
    margin: 0;
  }
  .container--ch #members .team-cards {
    width: 40%;
  }
  .container--ch #members .team-cards img {
    width: 100%;
  }
  .container--ch #members .team-cards p {
    font-size: 20px;
  }
}
@media (max-width: 720px) {
  .container--ch #members {
    margin: 0;
  }
  .container--ch #members .team-cards {
    width: 100%;
  }
  .container--ch #members .team-cards img {
    width: 100%;
  }
  .container--ch #members .team-cards p {
    font-size: 20px;
  }
}
#about-us-page-hero {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.9), transparent), url("https://iteminc.com/content/files/frontend-assets/background-images/about-us-hero-background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-position: bottom right;
}

.container--ch #about-us-page--sections {
  width: 100%;
  margin: 20px auto;
  max-width: 1600px;
  padding: 0 10px;
  font-weight: 100;
  font-family: sans-serif;
}
.container--ch #about-us-page--sections .image-container {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.container--ch #about-us-page--sections img {
  width: 100%;
  padding: 10px;
}
.container--ch #about-us-page--sections h2 {
  padding: 10px 0;
  text-transform: uppercase;
  color: #094670;
  font-size: 24px;
  font-weight: 100;
}
.container--ch #about-us-page--sections p {
  font-size: 16px;
  line-height: 1.9;
}
.container--ch #about-us-page--sections .second {
  width: 100%;
  display: flex;
  flex-direction: row;
}
.container--ch #about-us-page--sections .second h3 {
  padding: 10px 0;
  color: #094670;
  font-size: 20px;
  font-weight: 100;
}
.container--ch #about-us-page--sections .second .history {
  width: 100%;
  margin: 30px 5px;
  padding: 0 30px;
}
.container--ch #about-us-page--sections .third {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
}
.container--ch #about-us-page--sections .third .facility {
  width: 100%;
  margin: 30px 5px;
  padding: 0 30px;
}
.container--ch #about-us-page--sections .third li {
  line-height: 2.5;
  font-family: sans-serif;
}

@media (max-width: 725px) {
  .container--ch #about-us-page--sections {
    margin: 0;
  }
  .container--ch #about-us-page--sections .content {
    flex-direction: column;
  }
  .container--ch #about-us-page--sections .content img {
    width: 100%;
  }
}
#mc_embed_signup {
  padding: 15px;
  margin: auto;
  max-width: 1000px;
}
#mc_embed_signup h2 {
  color: #094670;
}
#mc_embed_signup input.button {
  background: #094670;
  padding: 10px 25px 40px 25px;
  font-weight: bold;
  border: none;
}
#mc_embed_signup input.button:hover {
  background: rgb(12.7933884298, 99.5041322314, 159.2066115702);
}
#mc_embed_signup .logo {
  height: 70px;
  float: right;
}

#mc_embed_signup h2 {
  color: #094670;
}

#mc-embedded-subscribe {
  background: #094670 !important;
}
#mc-embedded-subscribe:hover {
  background: #2289e3 !important;
}

.container--ch #update-email-confirmation-page {
  text-align: center;
}
.container--ch #update-email-confirmation-page h1 {
  color: #094670;
  font-size: 36px;
}
.container--ch #update-email-confirmation-page img {
  width: 70%;
  max-width: 300px;
}
.container--ch #update-email-confirmation-page p {
  font-size: 32px;
}

@media (max-width: 600px) {
  .container--ch #update-email-confirmation-page p {
    font-size: 24px;
  }
}
.container--ch #resources-page-hero {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.9), transparent), url("https://iteminc.com/content/files/frontend-assets/background-images/resources-hero-background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.container--ch #resources .row {
  display: flex;
  justify-content: space-evenly;
  margin: 50px auto;
}
.container--ch #resources .row .content {
  width: 48%;
  color: #1a1a1a;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 15px;
  overflow: hidden;
  max-width: 600px;
}
.container--ch #resources .row .content--text {
  order: 1;
}
.container--ch #resources .row .content--text h1 {
  font-size: 40px;
  text-transform: capitalize;
  font-weight: bold;
  margin-bottom: 0px;
  color: #1a1a1a;
}
.container--ch #resources .row .content--text .underline {
  height: 5px;
  width: 50%;
  background: #094670;
  bottom: 0;
  max-width: 90px;
  margin-bottom: 0;
  display: block;
}
.container--ch #resources .row .content--text p {
  font-size: 35px;
  line-height: 1.3;
}
.container--ch #resources .row .content--text .ii-button {
  text-transform: capitalize;
}
.container--ch #resources .row .content--img {
  order: 1;
}
.container--ch #resources .row .content--img img {
  height: 350px;
  order: 0;
  display: block;
  margin: auto;
}

/*******************
===MEDIA QUERIES===
*******************/
@media (max-width: 830px) {
  .container--ch #resources .row {
    flex-direction: column;
    align-items: center;
  }
  .container--ch #resources .row .content {
    width: 100%;
  }
  .container--ch #resources .row .content--text h1 {
    font-size: 35px;
  }
  .container--ch #resources .row .content--text p {
    font-size: 25px;
  }
  .container--ch #resources .row .content--img {
    order: 0;
  }
}
@media (max-width: 544px) {
  .container--ch #resources .content {
    height: auto;
  }
  .container--ch #resources .content--img {
    height: 300px;
  }
  .container--ch #resources .content--img img {
    width: 100%;
    height: auto !important;
  }
}
.container--ch #catalog-page-hero {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.9), transparent), url("https://iteminc.com/content/files/frontend-assets/background-images/catalog-hero-background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.container--ch #catalog-cards {
  display: block;
}
.container--ch #catalog-cards h2 {
  font-size: 32px;
  margin: 5px 0;
  color: #1a1a1a;
  font-family: Orbitron, sans-serif;
  font-weight: bold;
  text-transform: capitalize;
}
.container--ch #catalog-cards .ii-underline {
  margin-bottom: 35px;
}
.container--ch #catalog-cards .category {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.container--ch #catalog-cards .category .ii-product-card {
  max-width: 700px;
}
.container--ch #catalog-cards .category-supply .ii-product-card {
  width: 35% !important;
  margin-bottom: 80px;
}
.container--ch #catalog-cards .category-repair .ii-product-card {
  width: 20% !important;
}

/************************
    MEDIA QUERIES
*************************/
@media (max-width: 1052px) {
  .container--ch #catalog-cards .category-repair .ii-product-card {
    width: 35% !important;
  }
}
@media (max-width: 748px) {
  .container--ch #catalog-cards .category .ii-product-card p {
    font-size: 18px;
  }
  .container--ch #catalog-cards .category .ii-product-card .ii-button {
    padding: 10px 30px;
    font-size: 14px;
  }
}
@media (max-width: 670px) {
  .container--ch #catalog-cards h2 {
    font-size: 28px;
    text-align: left;
  }
  .container--ch #catalog-cards .category .ii-product-card {
    margin: 0 auto 15px auto;
    padding-bottom: 30px;
    width: 90% !important;
  }
  .container--ch #catalog-cards .category .ii-product-card p {
    margin-bottom: 15px;
    font-size: 16px;
  }
  .container--ch #catalog-cards .category .ii-product-card .ii-button {
    padding: 8px 20px;
  }
  .container--ch #catalog-cards .category-supply {
    margin-bottom: 60px;
  }
}
.container--ch #tech-support-page-hero {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.9), transparent), url("https://iteminc.com/content/files/frontend-assets/background-images/free-tech-support-hero-background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-position: right center;
}
.container--ch #free_support {
  margin: 30px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
}
.container--ch #free_support .image {
  width: 100%;
  text-align: center;
}
.container--ch #free_support .text_box {
  width: 100%;
  min-height: 400px;
  background-color: rgb(255, 255, 255);
  padding-left: 25px;
  color: #000000;
  z-index: 1;
}
.container--ch #free_support .text_box h1 {
  font-size: 40px;
  color: #1a1a1a;
  margin-bottom: 0;
}
.container--ch #free_support .text_box h2 {
  font-size: 28px;
  font-weight: lighter;
  margin-bottom: 0;
}
.container--ch #free_support .text_box li {
  list-style-type: none;
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 18px;
}
.container--ch #free_support .text_box p {
  margin: 20px 0;
  font-weight: 500;
  line-height: 1.5;
  font-size: 18px;
}
.container--ch #free_support .text_box .italic {
  font-size: 14px;
  font-style: italic;
}
.container--ch #free_support .text_box ul {
  margin: 0;
  padding: 0;
}
.container--ch #free_support .text_box .ii-button {
  display: block;
  margin: 15px auto 15px auto;
}

/*********************************
          MEDIA QUERIES
*********************************/
@media (max-width: 904px) {
  .container--ch #free_support {
    margin: 0;
    flex-direction: column;
    width: 100%;
    padding: 10px;
  }
  .container--ch #free_support img {
    width: 100%;
  }
  .container--ch #free_support .text_box {
    width: 90%;
    padding: 10px;
    margin-top: -30px;
  }
  .container--ch #free_support .text_box h1 {
    font-size: 35px;
    color: #1a1a1a;
  }
  .container--ch #free_support .text_box button {
    padding: 5px;
  }
}
#contact-us-page-hero {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.9), transparent), url("https://iteminc.com/content/files/frontend-assets/background-images/contact-us-hero-background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-position: top center;
}

#faq-page-hero {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.9), transparent), url("https://iteminc.com/content/files/frontend-assets/background-images/faq-hero-background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#ii-faq-accordion-section * {
  box-sizing: border-box;
}
#ii-faq-accordion-section *::before, #ii-faq-accordion-section *::after {
  box-sizing: border-box;
}
#ii-faq-accordion-section .accordion .accordion-item {
  border-bottom: 1px dotted #707070;
}
#ii-faq-accordion-section .accordion .accordion-item button[aria-expanded=true] {
  border-bottom: 1px solid #094670;
}
#ii-faq-accordion-section .accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  font-size: 24px;
  font-weight: 400;
  border: none;
  outline: none;
  background: transparent;
  color: #094670;
}
#ii-faq-accordion-section .accordion button:hover, #ii-faq-accordion-section .accordion button:focus {
  cursor: pointer;
  color: #2289e3;
}
#ii-faq-accordion-section .accordion button:hover::after, #ii-faq-accordion-section .accordion button:focus::after {
  cursor: pointer;
  color: #094670;
  border: 1px solid #094670;
}
#ii-faq-accordion-section .accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
}
#ii-faq-accordion-section .accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}
#ii-faq-accordion-section .accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
#ii-faq-accordion-section .accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}
#ii-faq-accordion-section .accordion button[aria-expanded=true] {
  color: #094670;
}
#ii-faq-accordion-section .accordion button[aria-expanded=true] .icon::after {
  width: 0;
}
#ii-faq-accordion-section .accordion button[aria-expanded=true] + .accordion-content {
  opacity: 1;
  max-height: 200em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
  background: rgba(9, 70, 112, 0.1);
}
#ii-faq-accordion-section .accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
#ii-faq-accordion-section .accordion .accordion-content p {
  font-size: 20px;
  font-weight: 300;
  margin: 2em 0;
  padding: 5px 15px;
}

@media (max-width: 720px) {
  #ii-faq-accordion-section .accordion-title {
    font-size: 18px;
  }
  #ii-faq-accordion-section .accordion-content p {
    font-size: 18px !important;
  }
}
#oki-page-hero {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.9), transparent), url("https://www.iteminc.com/content/files/frontend-assets/background-images/oki-hero-background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
#oki-page-hero .buttons-section {
  display: flex;
  justify-content: space-evenly;
}
#oki-page-hero .buttons-section .ii-button {
  display: inline-block;
  min-width: 40%;
  font-size: 18px;
}

@media (max-width: 855px) {
  #oki-page-hero .buttons-section {
    flex-direction: column;
    align-items: center;
  }
  #oki-page-hero .buttons-section .ii-button {
    margin-bottom: 15px;
    width: 80%;
  }
}
.container--ch #oki-page-highlight {
  display: flex;
  justify-content: space-between;
}
.container--ch #oki-page-highlight .ii-underline {
  margin-bottom: 30px;
}
.container--ch #oki-page-highlight .column {
  width: 50%;
  display: flex;
  flex-direction: column;
  padding: 20px;
}
.container--ch #oki-page-highlight .column .ii-button {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.container--ch #oki-page-highlight .column span {
  display: block !important;
  text-align: center;
}
.container--ch #oki-page-highlight .column img {
  width: 90%;
  max-width: 400px;
}
.container--ch #oki-page-highlight .column h1 {
  margin: 0;
  color: #1a1a1a;
  font-size: 40px;
}
.container--ch #oki-page-highlight .column p {
  color: #1a1a1a;
  line-height: 1.7;
  margin: 0 0 30px 0;
  font-size: 22px;
}

@media (max-width: 670px) {
  .container--ch #oki-page-highlight h1 {
    font-size: 35px;
  }
  .container--ch #oki-page-highlight .ii-button {
    font-size: 16px;
  }
}
@media (max-width: 550px) {
  .container--ch #oki-page-highlight {
    display: block;
  }
  .container--ch #oki-page-highlight .column {
    width: 100%;
  }
}
.container--ch #oki-page-featured-products {
  height: 450px;
}
.container--ch #oki-page-featured-products h1 {
  color: #1a1a1a;
  margin: 0;
  font-size: 40px;
}
.container--ch #oki-page-featured-products .ii-underline {
  margin-bottom: 30px;
}
.container--ch #oki-page-featured-products .inner-container {
  display: flex;
  height: 80%;
}
.container--ch #oki-page-featured-products .inner-container .column {
  width: 50%;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.container--ch #oki-page-featured-products .inner-container .column .featured-product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-end;
}
.container--ch #oki-page-featured-products .inner-container .column .featured-product-card--first {
  background: url("https://iteminc.com/content/files/images/oki-page/OKI1-B410-Image1Drum.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.container--ch #oki-page-featured-products .inner-container .column .featured-product-card--second {
  background: url("https://iteminc.com/content/files/images/oki-page/ok-mb461.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.container--ch #oki-page-featured-products .inner-container .column .featured-product-card--third {
  background: url("https://iteminc.com/content/files/images/oki-page/oki-mc361-cyan.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.container--ch #oki-page-featured-products .inner-container .column .featured-product-card--left {
  margin: 0px 10px 10px 0;
}
.container--ch #oki-page-featured-products .inner-container .column .featured-product-card--right {
  margin: 0px 0px 10px 0;
}
.container--ch #oki-page-featured-products .inner-container .column .featured-product-card .overlay {
  color: #fff;
  background: linear-gradient(transparent, 70%, rgb(0, 0, 0));
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding: 10px;
  height: 100%;
}
.container--ch #oki-page-featured-products .inner-container .column .featured-product-card .overlay span.product-name {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 24px;
  text-shadow: 0 0 5px rgb(0, 0, 0);
}
.container--ch #oki-page-featured-products .inner-container .column .featured-product-card .overlay .ii-button--filled {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  font-weight: bold;
}

@media (max-width: 775px) {
  .container--ch #oki-page-featured-products {
    display: block;
    height: auto;
  }
  .container--ch #oki-page-featured-products h1 {
    font-size: 35px;
  }
  .container--ch #oki-page-featured-products .inner-container {
    width: 100%;
    display: block;
  }
  .container--ch #oki-page-featured-products .inner-container .column {
    display: block;
    width: 100%;
  }
  .container--ch #oki-page-featured-products .inner-container .column .featured-product-card {
    height: 300px;
  }
  .container--ch #oki-page-featured-products .inner-container .column .featured-product-card--left {
    margin: 0 0 15px 0;
  }
  .container--ch #oki-page-featured-products .inner-container .column .featured-product-card--right {
    margin: 0 0 15px 0;
  }
  .container--ch #oki-page-featured-products .inner-container .column .featured-product-card .overlay {
    width: 100%;
  }
}
.container--ch #oki-page-top-sellers .ii-underline {
  margin-bottom: 30px;
}
.container--ch #oki-page-top-sellers h1 {
  margin: 0;
  color: #1a1a1a;
  font-size: 40px;
}
.container--ch #oki-page-top-sellers .grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.container--ch #oki-page-top-sellers .grid-container__section {
  box-sizing: border-box;
  display: grid;
}
.container--ch #oki-page-top-sellers .grid-container__section span {
  margin: auto !important;
  display: block !important;
  width: 100% !important;
}
.container--ch #oki-page-top-sellers .grid-container__section span.product-name {
  text-transform: uppercase;
  margin-bottom: 10px !important;
  font-weight: bold;
}
.container--ch #oki-page-top-sellers .grid-container__section .shoplink-button {
  background: #f7b103;
  color: #1a1a1a;
  text-decoration: none;
  padding: 10px;
  font-size: 16px;
  width: 50%;
  display: block;
  margin: 0 auto;
  text-align: center;
  transition: 0.3s;
  font-weight: bold;
  border-radius: 10px;
}
.container--ch #oki-page-top-sellers .grid-container__section .shoplink-button--lg {
  padding: 15px;
  font-size: 18px;
}
.container--ch #oki-page-top-sellers .grid-container__section .shoplink-button:hover {
  background: rgb(252.492, 193.972, 48.508);
  transform: translateY(-2px);
}
.container--ch #oki-page-top-sellers .grid-container__section .product-card {
  text-align: center;
  padding: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.container--ch #oki-page-top-sellers .grid-container__section .product-card:hover img {
  transform: scale(1.1);
}
.container--ch #oki-page-top-sellers .grid-container__section .product-card img {
  transition: 0.3s;
  width: 100%;
  margin-bottom: 30px;
}
.container--ch #oki-page-top-sellers .grid-container__section img {
  width: 80%;
  max-width: 300px;
  margin: auto;
  display: block;
}
.container--ch #oki-page-top-sellers .grid-container__section p {
  padding: 30px;
  color: #1a1a1a;
  font-size: 22px;
  line-height: 1.7;
}
.container--ch #oki-page-top-sellers .grid-container__section:nth-of-type(1) {
  display: block;
}
.container--ch #oki-page-top-sellers .grid-container__section:nth-of-type(2) {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-content: space-between;
  gap: 15px;
}

@media (max-width: 858px) {
  .container--ch #oki-page-top-sellers h1 {
    font-size: 35px;
  }
  .container--ch #oki-page-top-sellers .grid-container {
    display: block;
  }
  .container--ch #oki-page-top-sellers .grid-container__section:nth-of-type(1) {
    margin-bottom: 30px;
  }
  .container--ch #oki-page-top-sellers .grid-container__section .shoplink-button {
    font-size: 14px;
  }
}
.container--ch #oki-page-keywords {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  margin-top: 30px;
}
.container--ch #oki-page-keywords h1 {
  margin: 0;
  color: #1a1a1a !important;
  font-size: 40px;
}
.container--ch #oki-page-keywords .shop-button {
  border: solid 1px #f7b103;
  padding: 15px;
  text-decoration: none;
  position: relative;
  display: inline-block;
  transition: 0.3s;
  margin: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  width: 40%;
  display: flex;
  justify-content: center;
  overflow: hidden;
  background: transparent;
  color: #094670;
  font-family: sans-serif;
  font-weight: bold;
  color: #094670;
  border-radius: 10px;
  color: #1a1a1a;
}
.container--ch #oki-page-keywords .shop-button i {
  margin-left: 20px;
}
.container--ch #oki-page-keywords .shop-button::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 200%;
  background: linear-gradient(to right, #fff 50%, #f7b103 50%);
  transform: translateX(0%);
  top: 0;
  left: 0;
  z-index: -1;
  transition: 0.3s;
}
.container--ch #oki-page-keywords .shop-button:hover {
  background-position: left center;
  color: #1a1a1a;
}
.container--ch #oki-page-keywords .shop-button:hover::after {
  transform: translateX(-50%);
}

@media (max-width: 858px) {
  .container--ch #oki-page-keywords .shop-button {
    justify-content: space-between;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .container--ch #oki-page-keywords .shop-button i {
    margin-left: 0px;
  }
}
.container--ch #article-posts {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.container--ch #article-posts .post {
  width: 40%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 25px;
}
.container--ch #article-posts .post .top {
  overflow: hidden;
}
.container--ch #article-posts .post .top span {
  display: block;
}
.container--ch #article-posts .post .top img {
  width: 100%;
}
.container--ch #article-posts .post .bottom {
  padding-bottom: 15px;
  text-align: center;
}
.container--ch #article-posts .post .bottom .title-box {
  background: #ffffff;
  width: 70%;
  min-width: 250px;
  margin: auto;
  padding: 5px 10px;
  position: relative;
  top: -60px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  height: 280px;
}
.container--ch #article-posts .post .bottom .title-box h2 {
  text-align: center;
  color: #094670;
  font-family: sans-serif;
  font-size: 20px;
  text-transform: capitalize;
}
.container--ch #article-posts .post .bottom .title-box p {
  text-align: left;
  font-size: 18px;
  color: #1a1a1a;
  font-family: sans-serif;
  font-weight: lighter;
  line-height: 1.3;
}
.container--ch #article-posts .post .bottom .read-more {
  background: #094670;
  border: none;
  padding: 15px 20px;
  color: #ffffff;
  display: inline-block;
  text-decoration: none;
  transition: 0.3s;
}
.container--ch #article-posts .post .bottom .read-more:hover {
  transform: translateY(-3px);
  background: #2289e3;
}

@media (max-width: 1180px) {
  .container--ch #article-posts .post .bottom .title-box h2 {
    font-size: 18px;
  }
  .container--ch #article-posts .post .bottom .title-box p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .container--ch #article-posts .post {
    width: 80%;
  }
  .container--ch #article-posts .post .bottom .title-box {
    width: 90%;
    height: auto;
  }
}
@media (max-width: 354px) {
  .container--ch #article-posts .post {
    width: 80%;
  }
  .container--ch #article-posts .post .bottom .title-box {
    min-width: 1px;
    width: 90%;
    height: auto !important;
  }
  .container--ch #article-posts .post .bottom .title-box h2 {
    font-size: 18px;
  }
}
.container--ch #content-page a {
  text-decoration: underline;
}
.container--ch #content-page span {
  display: block !important;
}
.container--ch #content-page .content-page-details {
  padding: 15px;
}
.container--ch #content-page .content-page-details .youtube-vid {
  width: 100%;
  max-width: 560px;
  height: auto;
  min-height: 300px;
  display: block;
  margin: 35px auto 35px;
  transition: 0.3s;
}
.container--ch #content-page .content-page-details .youtube-vid:hover {
  transform: translateY(-3px);
}
.container--ch #content-page .content-page-details img {
  width: 100%;
  display: block;
}
.container--ch #content-page .content-page-details h1 {
  color: #1a1a1a;
  font-size: 32px;
  margin: 0;
}
.container--ch #content-page .content-page-details p {
  font-size: 22px;
  margin: 10px 0;
}
.container--ch #content-page .content-page-details .link {
  text-align: center;
}
.container--ch #content-page .content-page-details .youtube-link {
  font-size: 18px;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  top: -80px;
  font-weight: bold;
}
.container--ch #content-page .content-page-details h2 {
  color: #1a1a1a;
  font-size: 28px;
  margin: 0;
  margin-top: 40px;
}
.container--ch #content-page .content-page-details ul {
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.15);
  padding: 10px;
  list-style: none;
  border-radius: 10px;
}
.container--ch #content-page .content-page-details .list {
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 15px;
  padding: 0 10px 0 10px;
}
.container--ch #content-page .content-page-steps .steps {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  padding: 30px 0;
}
.container--ch #content-page .content-page-steps .steps .left-text {
  width: 60%;
  padding: 0 50px 0 50px;
}
.container--ch #content-page .content-page-steps .steps .left-text h2 {
  color: #094670;
  font-size: 28px;
}
.container--ch #content-page .content-page-steps .steps .left-text p {
  font-size: 20px;
  line-height: 1.4;
}
.container--ch #content-page .content-page-steps .steps .right-image {
  display: flex;
  justify-content: center;
  align-content: center;
}
.container--ch #content-page .content-page-steps .steps .right-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

@media (max-width: 960px) {
  .container--ch #content-page {
    width: 100%;
    padding: 0 10px;
  }
  .container--ch #content-page .canon-logo img {
    width: 80%;
  }
  .container--ch #content-page .content-page-steps .steps {
    display: flex;
    flex-direction: column;
    padding-bottom: 30px;
    margin: 0;
  }
  .container--ch #content-page .content-page-steps .steps .left-text {
    width: 100%;
    padding: 0;
  }
  .container--ch #content-page .content-page-steps .steps .right-image img {
    width: 100%;
    max-width: 425px;
  }
}
@media (max-width: 768px) {
  .container--ch #content-page .content-page-details h1 {
    font-size: 28px;
  }
}
@media (max-width: 537px) {
  .container--ch #content-page .content-page-details .youtube-link {
    top: -50px;
  }
}
@media (max-width: 520px) {
  .container--ch #content-page .content-page-details h1 {
    font-size: 28px;
  }
  .container--ch #content-page .content-page-details p {
    font-size: 18px;
    line-height: 1.5;
  }
  .container--ch #content-page .content-page-details h2 {
    font-size: 24px;
  }
  .container--ch #content-page .content-page-details .list {
    font-size: 18px;
  }
  .container--ch #content-page .content-page-details .list li {
    margin-bottom: 15px;
  }
}
.container--ch .product-group-landing-page-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  max-width: 1000px;
  margin: auto;
}
.container--ch .product-group-landing-page-row img {
  width: 200px;
  margin: 0;
}
.container--ch .product-group-landing-page-row h2 {
  color: #1a1a1a;
  text-transform: uppercase;
  padding: 0 30px;
  max-width: 400px;
  font-size: 22px;
  text-align: center;
}
.container--ch .product-group-landing-page-row .ii-button {
  display: inline-block;
  font-size: 18px;
}

@media (max-width: 834px) {
  .container--ch .product-group-landing-page-row {
    flex-direction: column;
  }
  .container--ch .product-group-landing-page-row img {
    width: 80%;
    display: block;
    margin: auto;
  }
}
.container--ch .tutorial-article a {
  text-decoration: underline;
}
.container--ch .tutorial-article span {
  display: block !important;
}
.container--ch .tutorial-article h1 {
  color: #1a1a1a;
  font-size: 32px;
  margin: 0;
}
.container--ch .tutorial-article h2 {
  color: #1a1a1a;
  font-size: 28px;
  margin: 40px 0 0 0;
}
.container--ch .tutorial-article p {
  font-size: 22px;
  margin: 10px 0;
  line-height: 1.4;
}
.container--ch .tutorial-article ul {
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.15);
  padding: 10px;
  list-style: none;
  border-radius: 10px;
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 15px;
}
.container--ch .tutorial-article__intro {
  padding: 15px;
}
.container--ch .tutorial-article__intro img {
  width: 100%;
  display: block;
}
.container--ch .tutorial-article__intro .tutorial-article-video {
  width: 100%;
  max-width: 560px;
  height: auto;
  min-height: 300px;
  display: block;
  margin: 35px auto 35px;
  transition: 0.3s;
}
.container--ch .tutorial-article__intro .tutorial-article-video:hover {
  transform: translateY(-3px);
}
.container--ch .tutorial-article .steps-list__step {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 45px 0;
}
.container--ch .tutorial-article .steps-list__step .text-block {
  width: 50%;
  padding: 15px;
}
.container--ch .tutorial-article .steps-list__step .text-block h2 {
  color: #094670;
  font-size: 28px;
  margin-top: 0px;
}
.container--ch .tutorial-article .steps-list__step .text-block p {
  font-size: 20px;
  line-height: 1.4;
}
.container--ch .tutorial-article .steps-list__step img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
  max-width: 400px;
  margin: 0;
}

@media (max-width: 840px) {
  .container--ch .tutorial-article span {
    width: 100%;
  }
  .container--ch .tutorial-article h1 {
    font-size: 30px;
  }
  .container--ch .tutorial-article h2 {
    font-size: 26px;
  }
  .container--ch .tutorial-article p {
    font-size: 20px;
  }
  .container--ch .tutorial-article ul {
    font-size: 18px;
  }
  .container--ch .tutorial-article .steps-list__step {
    flex-direction: column;
  }
  .container--ch .tutorial-article .steps-list__step .text-block {
    width: 100%;
  }
  .container--ch .tutorial-article .steps-list__step img {
    width: 90%;
    display: block;
    margin: auto;
    max-width: 600px;
  }
}
.container--ch #vid-gallery .row {
  display: flex;
  justify-content: space-evenly;
  margin: 50px auto;
}
.container--ch #vid-gallery .row .content {
  width: 48%;
  color: #1a1a1a;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 15px;
  overflow: hidden;
  max-width: 600px;
}
.container--ch #vid-gallery .row .content h1 {
  font-size: 30px;
  text-transform: capitalize;
  font-weight: bold;
  margin-bottom: 0px;
  color: #1a1a1a;
}
.container--ch #vid-gallery .row .content .underline {
  height: 5px;
  width: 50%;
  background: #094670;
  bottom: 0;
  max-width: 90px;
  margin-bottom: 0;
  display: block;
}
.container--ch #vid-gallery .row .content p {
  font-size: 20px;
  line-height: 1.3;
}
.container--ch #vid-gallery .row .content .ii-button {
  text-transform: capitalize;
  width: 70%;
  font-size: 18px;
  display: block;
  margin: auto;
  margin-top: 5px;
}
.container--ch #vid-gallery .row .embed-vid {
  width: 100%;
  height: 350px;
  display: block;
  margin: auto;
  border-radius: 5px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

/*******************
===MEDIA QUERIES===
*******************/
@media (max-width: 830px) {
  .container--ch #vid-gallery .row {
    flex-direction: column;
    align-items: center;
  }
  .container--ch #vid-gallery .row .content {
    width: 100%;
  }
  .container--ch #vid-gallery .row .content--text h1 {
    font-size: 30px;
  }
  .container--ch #vid-gallery .row .content--text p {
    font-size: 20px;
  }
}
@media (max-width: 544px) {
  .container--ch #vid-gallery .content {
    height: auto;
  }
}
.featured-product-landing-page.ii-hero {
  background: url("https://iteminc.com/content/files/frontend-assets/landing-pages/kyocera-maintenance-kit-0/background0.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.container--ch .featured-product-landing-page__info h2 {
  text-align: center;
  font-size: 28px;
  font-family: Orbitron, sans-serif;
  font-weight: bold;
  margin-bottom: 25px;
  color: #1a1a1a;
}
.container--ch .featured-product-landing-page__info .photos {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.container--ch .featured-product-landing-page__info .photos span img {
  box-shadow: -10px 10px 5px rgba(0, 0, 0, 0.3);
  width: 100%;
  margin: 10px;
  max-width: 200px;
}
.container--ch .featured-product-landing-page__info .text {
  font-size: 18px;
  max-width: 1200px;
  margin: auto;
  font-family: sans-serif;
  line-height: 1.5;
  color: #1a1a1a;
}
.container--ch .featured-product-landing-page__info .text ul {
  width: 90%;
  margin: auto;
}
.container--ch .featured-product-landing-page__info .text ul li {
  margin-bottom: 15px;
  line-height: 1.7;
}
.container--ch .featured-product-landing-page__info--updated {
  display: flex;
  align-items: flex-start;
  background: rgba(112, 112, 112, 0.1);
  margin-top: 25px;
  padding: 20px;
}
.container--ch .featured-product-landing-page__info--updated .header-and-image .photos span {
  display: block;
  width: 100%;
  text-align: center;
}
.container--ch .featured-product-landing-page__info--updated .header-and-image .photos img {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  max-width: 600px !important;
}
.container--ch .featured-product-landing-page__info--updated .text {
  padding: 10px;
}
.container--ch .featured-product-landing-page__info--updated .text ul {
  list-style-type: none;
}
.container--ch .featured-product-landing-page__info--updated .text ul li {
  border-bottom: 1px solid rgba(112, 112, 112, 0.3);
}
.container--ch .featured-product-landing-page__info--updated .text ul i {
  color: #094670;
}
.container--ch .featured-product-landing-page__products .single-product {
  display: flex;
  padding: 15px;
  align-items: center;
  margin: 15px;
  justify-content: space-evenly;
}
.container--ch .featured-product-landing-page__products .single-product h3 {
  color: #1a1a1a;
  font-family: Inter, sans-serif;
}
.container--ch .featured-product-landing-page__products .single-product span img {
  width: 100%;
  padding: 25px;
}
.container--ch .featured-product-landing-page__products .single-product .description {
  font-family: sans-serif;
  font-size: 18px;
  width: 50%;
}
.container--ch .featured-product-landing-page__products .single-product .description .compatibleModelsButton {
  border: none;
  padding: 15px;
  background: #f7b103;
  color: #1a1a1a;
  font-weight: bold;
  border-radius: 15px;
  cursor: pointer;
  font-size: 14px;
  text-transform: uppercase;
  transition: 0.3s;
}
.container--ch .featured-product-landing-page__products .single-product .description .compatibleModelsButton:hover {
  border-color: rgb(252.492, 193.972, 48.508);
  background: rgb(252.492, 193.972, 48.508);
  transform: translateY(-2px) !important;
}
.container--ch .featured-product-landing-page__products .single-product .description .compatible-models-wrapper {
  overflow: hidden;
  max-height: 0;
  transition: 0.1s;
}
.container--ch .featured-product-landing-page__products .single-product .description .open {
  max-height: 1000px;
}
.container--ch .featured-product-landing-page__products .single-product .description ul {
  margin-bottom: 25px;
}
.container--ch .featured-product-landing-page__products .single-product .description .login-link {
  margin-bottom: 25px;
  display: block;
  text-align: center;
  text-decoration: underline;
}
.container--ch .featured-product-landing-page__products .single-product .description .ii-button {
  margin: auto;
  display: block;
}

@media (max-width: 875px) {
  .container--ch .featured-product-landing-page__info--updated {
    flex-direction: column;
  }
  .container--ch .featured-product-landing-page__info--updated .photos {
    margin: 20px auto;
  }
}
@media (max-width: 720px) {
  .container--ch .featured-product-landing-page__info .photos {
    display: none;
  }
  .container--ch .featured-product-landing-page__info .photos--updated {
    display: block;
    text-align: center;
  }
  .container--ch .featured-product-landing-page__info h2 {
    font-size: 25px;
  }
  .container--ch .featured-product-landing-page__products .single-product {
    flex-direction: column;
  }
  .container--ch .featured-product-landing-page__products .single-product .description {
    width: 100%;
  }
  .container--ch .featured-product-landing-page__products .single-product img {
    width: 90%;
  }
}
#kyocera-m-kits-landing-page-0 {
  background: url("https://iteminc.com/content/files/frontend-assets/landing-pages/kyocera-maintenance-kit-0/background0.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.container--ch #kyocera-m-kits-landing-page-0__info h2 {
  text-align: center;
  font-size: 28px;
  font-family: sans-serif;
  font-weight: bold;
  margin-bottom: 25px;
  color: #1a1a1a;
}
.container--ch #kyocera-m-kits-landing-page-0__info .photos {
  display: flex;
  justify-content: space-evenly;
}
.container--ch #kyocera-m-kits-landing-page-0__info .photos span img {
  box-shadow: -10px 10px 5px rgba(0, 0, 0, 0.3);
  width: 100%;
  margin: 10px;
  max-width: 200px;
}
.container--ch #kyocera-m-kits-landing-page-0__info .text {
  font-size: 18px;
  max-width: 1200px;
  margin: auto;
  font-family: sans-serif;
  line-height: 1.5;
  color: #1a1a1a;
}
.container--ch #kyocera-m-kits-landing-page-0__info .text ul {
  width: 90%;
  margin: auto;
}
.container--ch #kyocera-m-kits-landing-page-0__info .text ul li {
  margin-bottom: 15px;
  line-height: 1.7;
}
.container--ch #kyocera-m-kits-landing-page-0__kits .single-kit {
  display: flex;
  padding: 15px;
  align-items: center;
  margin: 15px;
  justify-content: space-evenly;
}
.container--ch #kyocera-m-kits-landing-page-0__kits .single-kit h3 {
  color: #1a1a1a;
}
.container--ch #kyocera-m-kits-landing-page-0__kits .single-kit span img {
  width: 100%;
  padding: 25px;
}
.container--ch #kyocera-m-kits-landing-page-0__kits .single-kit .description {
  font-family: sans-serif;
  font-size: 18px;
  width: 50%;
}
.container--ch #kyocera-m-kits-landing-page-0__kits .single-kit .description ul {
  margin-bottom: 25px;
}
.container--ch #kyocera-m-kits-landing-page-0__kits .single-kit .description .ii-button {
  margin: auto;
  display: block;
}

@media (max-width: 720px) {
  .container--ch #kyocera-m-kits-landing-page-0__info .photos {
    display: none;
  }
  .container--ch #kyocera-m-kits-landing-page-0__info h2 {
    font-size: 25px;
  }
  .container--ch #kyocera-m-kits-landing-page-0__kits .single-kit {
    flex-direction: column;
  }
  .container--ch #kyocera-m-kits-landing-page-0__kits .single-kit .description {
    width: 100%;
  }
  .container--ch #kyocera-m-kits-landing-page-0__kits .single-kit img {
    width: 90%;
  }
}
.kyocera-toner-campaign-2024-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("https://iteminc.com/content/files/frontend-assets/landing-pages/kyocera-toner-campaign-202401/kyocera-toners-0.jpg") !important;
  background-position: left top !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.pinnpoint-printronix-collab-landing-page span.lazy-load {
  width: 100% !important;
}
.pinnpoint-printronix-collab-landing-page section {
  margin-bottom: 50px;
}
.pinnpoint-printronix-collab-landing-page .row {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  overflow: hidden;
}
.pinnpoint-printronix-collab-landing-page .row .text-block {
  width: 50%;
  order: 1;
  padding: 10px;
}
.pinnpoint-printronix-collab-landing-page .row .img-block {
  order: 1;
  width: 50%;
  padding: 0;
}
.pinnpoint-printronix-collab-landing-page .row .img-block span {
  width: 100%;
  overflow: hidden;
  padding: 0;
  display: inline-block;
}
.pinnpoint-printronix-collab-landing-page .row .img-block span img {
  width: 100%;
}
.pinnpoint-printronix-collab-landing-page .ii-button.ghost {
  background: #fff;
  color: #094670 !important;
  border: solid 2px #094670;
}
.pinnpoint-printronix-collab-landing-page .ii-button.ghost:hover {
  background: #094670;
  color: #fff !important;
}
.pinnpoint-printronix-collab-landing-page__hero {
  overflow: hidden;
}
.pinnpoint-printronix-collab-landing-page__hero.ii-hero {
  background: url("https://iteminc.com/content/files/printronix-pinnpoint-item/hero_bg_updated.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.pinnpoint-printronix-collab-landing-page__hero.ii-hero h1 {
  text-transform: capitalize;
}
.pinnpoint-printronix-collab-landing-page__hero.ii-hero .button-wrapper {
  display: flex;
  width: 100%;
  justify-content: flex-start;
}
.pinnpoint-printronix-collab-landing-page__hero.ii-hero .button-wrapper .ii-button {
  text-transform: capitalize;
}
.pinnpoint-printronix-collab-landing-page__hero.ii-hero .button-wrapper .ii-button:nth-child(2) {
  margin-left: 45px;
}
.pinnpoint-printronix-collab-landing-page__printronix-highlight {
  font-family: "inter", sans-serif;
}
.pinnpoint-printronix-collab-landing-page__printronix-highlight h2 {
  color: #094670;
  font-size: 35px;
  margin: 2px !important;
  letter-spacing: 7px;
  padding-left: 20px;
  font-weight: bold;
}
.pinnpoint-printronix-collab-landing-page__printronix-highlight h3 {
  font-size: 28px;
  padding: 20px 20px 0px 20px;
  margin-bottom: 0;
  font-weight: bold;
  color: #000;
  font-family: "inter", sans-serif;
}
.pinnpoint-printronix-collab-landing-page__printronix-highlight p {
  font-size: 22px;
  font-family: "inter", sans-serif;
  line-height: 1.5;
  padding: 20px 20px 0px 20px;
  margin-top: 0;
}
.pinnpoint-printronix-collab-landing-page__logos {
  display: flex;
  justify-content: center;
}
.pinnpoint-printronix-collab-landing-page__logos span {
  width: 100%;
  text-align: center;
}
.pinnpoint-printronix-collab-landing-page__logos span img {
  width: 100%;
  max-width: 700px;
}
.pinnpoint-printronix-collab-landing-page__streamline {
  background: url("https://iteminc.com/content/files/printronix-pinnpoint-item/hero_bg.jpg");
  background-position: center;
  font-family: "inter", sans-serif;
  padding: 20px 5px;
}
.pinnpoint-printronix-collab-landing-page__streamline h2 {
  font-size: 35px;
  color: #fff;
  font-family: "inter", sans-serif;
  text-align: center;
  margin-bottom: 0px;
  letter-spacing: 7px;
  font-weight: bold;
}
.pinnpoint-printronix-collab-landing-page__streamline .custom-underline {
  width: 65%;
  max-width: 550px;
  height: 7px;
  background: #fff;
  margin: 5px auto 15px auto;
}
.pinnpoint-printronix-collab-landing-page__streamline .text-block {
  width: 90%;
  max-width: 540px;
  margin: auto;
}
.pinnpoint-printronix-collab-landing-page__streamline .text-block p {
  color: #fff;
  font-size: 22px;
}
.pinnpoint-printronix-collab-landing-page__streamline .button-wrapper {
  display: flex;
  justify-content: space-around;
}
.pinnpoint-printronix-collab-landing-page__how-it-works {
  padding-bottom: 80px;
}
.pinnpoint-printronix-collab-landing-page__how-it-works h2 {
  text-transform: capitalize;
  font-family: "inter", sans-serif;
  font-weight: bold;
  letter-spacing: 7px;
  font-size: 32px;
  margin-bottom: 5px;
  color: #000;
  margin-left: 30px;
}
.pinnpoint-printronix-collab-landing-page__how-it-works .ii-underline {
  margin-left: 30px;
}
.pinnpoint-printronix-collab-landing-page__how-it-works .row {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  margin: 30px;
}
.pinnpoint-printronix-collab-landing-page__how-it-works .row .text-block h3 {
  font-size: 28px;
  padding: 20px;
}
.pinnpoint-printronix-collab-landing-page__how-it-works .row .text-block p {
  font-size: 22px;
  font-family: "inter", sans-serif;
  line-height: 1.5;
  padding: 20px;
}
.pinnpoint-printronix-collab-landing-page__how-it-works .row .img-block {
  padding: 20px;
}
.pinnpoint-printronix-collab-landing-page__how-it-works .button-wrapper {
  display: flex;
  justify-content: space-around;
}
.pinnpoint-printronix-collab-landing-page__success-story {
  padding: 0 !important;
}
.pinnpoint-printronix-collab-landing-page__success-story h2 {
  text-transform: capitalize;
  font-family: "inter", sans-serif;
  font-weight: bold;
  letter-spacing: 7px;
  font-size: 32px;
  margin-bottom: 5px;
  color: #000;
  margin-left: 30px;
}
.pinnpoint-printronix-collab-landing-page__success-story .ii-underline {
  margin-left: 30px;
}
.pinnpoint-printronix-collab-landing-page__success-story p {
  margin: 25px;
  font-size: 22px;
  line-height: 1.5;
}
.pinnpoint-printronix-collab-landing-page__success-story .icons {
  display: flex;
  width: 100%;
  justify-content: center;
}
.pinnpoint-printronix-collab-landing-page__success-story .icons .icon-box {
  width: 32%;
  margin: 0 0 40px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pinnpoint-printronix-collab-landing-page__success-story .icons .icon-box img {
  width: 90%;
  max-width: 200px;
  margin-bottom: -15px;
}
.pinnpoint-printronix-collab-landing-page__success-story .icons .icon-box h3 {
  color: #094670;
  font-size: 25px;
  font-weight: bold;
  text-transform: capitalize;
  font-family: "inter", sans-serif;
  margin-bottom: 15px;
}
.pinnpoint-printronix-collab-landing-page__success-story .icons .icon-box p {
  text-align: center;
  font-size: 22px;
  margin: 0;
  max-width: 200px;
}
.pinnpoint-printronix-collab-landing-page__success-story .button-wrapper {
  display: flex;
  justify-content: space-around;
}

/*========================
      MEDIA QUERIES
=========================*/
@media (max-width: 815px) {
  .pinnpoint-printronix-collab-landing-page__hero.ii-hero {
    background: url("https://iteminc.com/content/files/printronix-pinnpoint-item/hero_bg.jpg");
    background-position: center;
  }
  .pinnpoint-printronix-collab-landing-page__streamline h2 {
    font-size: 35px;
    color: #fff;
    font-family: "inter", sans-serif;
    text-align: center;
    margin-bottom: 0px;
    letter-spacing: 7px;
  }
  .pinnpoint-printronix-collab-landing-page__streamline .custom-underline {
    width: 65%;
    max-width: 550px;
    height: 7px;
    background: #fff;
    margin: 5px auto 15px auto;
  }
  .pinnpoint-printronix-collab-landing-page__streamline .text-block {
    width: 90%;
    max-width: 540px;
    margin: auto;
  }
  .pinnpoint-printronix-collab-landing-page__streamline .text-block p {
    color: #fff;
    font-size: 22px;
  }
  .pinnpoint-printronix-collab-landing-page__streamline .button-wrapper {
    display: block;
    width: 100%;
    justify-content: flex-start;
  }
  .pinnpoint-printronix-collab-landing-page__streamline .button-wrapper .ii-button {
    text-transform: capitalize;
    display: block;
    margin: 0 auto 30px auto;
    font-size: 18px;
    max-width: 400px;
  }
  .pinnpoint-printronix-collab-landing-page__how-it-works .button-wrapper {
    display: block;
    width: 100%;
    justify-content: flex-start;
  }
  .pinnpoint-printronix-collab-landing-page__how-it-works .button-wrapper .ii-button {
    text-transform: capitalize;
    display: block;
    margin: 0 auto 30px auto;
    font-size: 18px;
    max-width: 400px;
  }
  .pinnpoint-printronix-collab-landing-page__success-story p {
    font-size: 18px;
  }
  .pinnpoint-printronix-collab-landing-page__success-story .icons {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }
  .pinnpoint-printronix-collab-landing-page__success-story .icons .icon-box {
    width: 100%;
    max-width: 350px;
    border-bottom: 2px solid #094670;
    padding-bottom: 20px;
  }
  .pinnpoint-printronix-collab-landing-page__success-story .icons .icon-box img {
    width: 90%;
    margin-bottom: -15px;
  }
  .pinnpoint-printronix-collab-landing-page__success-story .icons .icon-box h3 {
    color: #094670;
    font-size: 25px;
    font-weight: bold;
    text-transform: capitalize;
    font-family: "inter", sans-serif;
    margin-bottom: 15px;
  }
  .pinnpoint-printronix-collab-landing-page__success-story .icons .icon-box p {
    text-align: center;
    font-size: 20px;
    margin: 0;
    max-width: 200px;
  }
  .pinnpoint-printronix-collab-landing-page__success-story .button-wrapper {
    display: block;
    width: 100%;
    justify-content: flex-start;
  }
  .pinnpoint-printronix-collab-landing-page__success-story .button-wrapper .ii-button {
    text-transform: capitalize;
    display: block;
    margin: 0 auto 30px auto;
    font-size: 18px;
    max-width: 400px;
  }
}
@media (max-width: 700px) {
  .pinnpoint-printronix-collab-landing-page .row {
    flex-direction: column;
    padding-top: 20px;
  }
  .pinnpoint-printronix-collab-landing-page .row .text-block {
    width: 100%;
  }
  .pinnpoint-printronix-collab-landing-page .row .img-block {
    order: 0;
    width: 100%;
  }
  .pinnpoint-printronix-collab-landing-page .row .img-block span {
    width: 100%;
    overflow: hidden;
  }
  .pinnpoint-printronix-collab-landing-page .row .img-block span img {
    width: 100%;
  }
  .pinnpoint-printronix-collab-landing-page__hero {
    overflow: hidden;
  }
  .pinnpoint-printronix-collab-landing-page__hero h1 {
    font-size: 28px;
  }
  .pinnpoint-printronix-collab-landing-page__hero.ii-hero .button-wrapper {
    display: block;
    width: 100%;
    justify-content: flex-start;
  }
  .pinnpoint-printronix-collab-landing-page__hero.ii-hero .button-wrapper .ii-button {
    text-transform: capitalize;
    display: block;
    margin-bottom: 30px;
    font-size: 18px;
  }
  .pinnpoint-printronix-collab-landing-page__hero.ii-hero .button-wrapper .ii-button:nth-child(2) {
    margin-left: 0px;
  }
  .pinnpoint-printronix-collab-landing-page__printronix-highlight h2 {
    font-size: 28px;
  }
  .pinnpoint-printronix-collab-landing-page__printronix-highlight h3 {
    font-size: 25px;
  }
  .pinnpoint-printronix-collab-landing-page__printronix-highlight p {
    font-size: 18px;
  }
  .pinnpoint-printronix-collab-landing-page__streamline h2 {
    font-size: 28px;
  }
  .pinnpoint-printronix-collab-landing-page__streamline p {
    font-size: 18px;
  }
  .pinnpoint-printronix-collab-landing-page__how-it-works h2 {
    font-size: 28px;
  }
  .pinnpoint-printronix-collab-landing-page__how-it-works .row {
    padding: 10px;
  }
  .pinnpoint-printronix-collab-landing-page__how-it-works .row .img-block {
    padding: 0px !important;
  }
  .pinnpoint-printronix-collab-landing-page__how-it-works .row .text-block p {
    font-size: 18px;
  }
  .pinnpoint-printronix-collab-landing-page__success-story h2 {
    font-size: 28px;
  }
}
@media (max-width: 490px) {
  .pinnpoint-printronix-collab-landing-page__logos {
    display: none;
  }
}
.container--ch .packing-guide-landing-page__hero {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.9), transparent), url("https://www.iteminc.com/content/files/frontend-assets/packing-guide-images/recycle-hero3.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.container--ch .packing-guide-landing-page__hero h1 {
  max-width: 750px;
}
.container--ch .packing-guide-landing-page__list {
  margin: 70px 0px;
}
.container--ch .packing-guide-landing-page__list .title {
  max-width: fit-content;
  margin: 0px auto;
}
.container--ch .packing-guide-landing-page__list .title h2 {
  font-size: 32px;
  color: #094670;
  margin-bottom: 5px;
}
.container--ch .packing-guide-landing-page__list p {
  font-size: 24px;
  font-family: "Inter", sans-serif;
  width: 60%;
  margin: 10px auto 30px auto;
  line-height: 1.5;
  text-align: center;
}
.container--ch .packing-guide-landing-page__list .package-materials {
  display: flex;
  justify-content: center;
}
.container--ch .packing-guide-landing-page__list .package-materials img {
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(26, 26, 26, 0.4);
  margin: 0px;
  width: 100%;
  max-width: 500px;
}
.container--ch .packing-guide-landing-page__list .package-materials .checklist {
  margin: auto 0px auto 20px;
}
.container--ch .packing-guide-landing-page__list .package-materials .checklist li {
  list-style: none;
  line-height: 1.9;
  font-size: 22px;
  font-family: "Inter", sans-serif;
}
.container--ch .packing-guide-landing-page__list .package-materials .checklist li .fa-regular {
  margin-left: 10px;
  color: #094670;
}
.container--ch .packing-guide-landing-page__packaging {
  margin: 70px 0px;
}
.container--ch .packing-guide-landing-page__packaging .packing-guide-video {
  margin: 0px auto;
}
.container--ch .packing-guide-landing-page__packaging .packing-guide-video h2 {
  color: #094670;
  font-size: 32px;
  margin-bottom: 5px;
}
.container--ch .packing-guide-landing-page__packaging .packing-guide-video p {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  line-height: 1.5;
}
.container--ch .packing-guide-landing-page__packaging .packing-guide-video .youtube-vid {
  display: flex;
  justify-content: center;
}
.container--ch .packing-guide-landing-page__packaging .packing-guide-steps {
  margin-top: 25px;
}
.container--ch .packing-guide-landing-page__packaging .packing-guide-steps h2 {
  color: #094670;
  font-size: 32px;
  margin-bottom: 5px;
}
.container--ch .packing-guide-landing-page__packaging .packing-guide-steps p {
  max-width: 900px;
  font-family: "Inter", sans-serif;
  font-size: 24px;
  line-height: 1.5;
}
.container--ch .packing-guide-landing-page__packaging .packing-guide-steps .cards-block {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 20px;
  justify-items: center;
  align-items: stretch;
  max-width: 1400px;
  margin: 70px auto;
  padding: 0px 15px;
}
.container--ch .packing-guide-landing-page__packaging .packing-guide-steps .cards-block .card {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  padding: 20px 50px;
  border-radius: 12px;
  width: 100%;
  text-align: center;
}
.container--ch .packing-guide-landing-page__packaging .packing-guide-steps .cards-block .card img {
  width: 70px;
}
.container--ch .packing-guide-landing-page__packaging .packing-guide-steps .cards-block .card__step {
  font-family: "Orbitron", sans-serif;
  font-size: 28px;
  font-weight: bold;
  text-shadow: 4px 6px 2px rgba(0, 0, 0, 0.15);
  color: #1a1a1a;
  margin-bottom: 5px;
}
.container--ch .packing-guide-landing-page__packaging .packing-guide-steps .cards-block .card__title {
  font-size: 24px;
  font-family: "Inter", sans-serif;
  margin: 5px 0px;
  font-weight: bold;
}
.container--ch .packing-guide-landing-page__packaging .packing-guide-steps .cards-block .card__description {
  font-size: 20px;
  font-family: "Inter", sans-serif;
}
.container--ch .packing-guide-landing-page__packaging .packing-guide-steps .key-insight {
  text-align: center;
  max-width: 100%;
}
.container--ch .packing-guide-landing-page__multiple-fusers {
  margin-top: 50px;
}
.container--ch .packing-guide-landing-page__multiple-fusers .card {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  padding: 20px 50px;
  border-radius: 12px;
  width: 650px;
  text-align: center;
  margin: 0 auto;
}
.container--ch .packing-guide-landing-page__multiple-fusers .card img {
  width: 100%;
}
.container--ch .packing-guide-landing-page__multiple-fusers .card__title {
  font-size: 28px;
}
.container--ch .packing-guide-landing-page__multiple-fusers .card__description {
  font-size: 20px;
  font-family: "Inter", sans-serif;
  line-height: 1.5;
}
.container--ch .packing-guide-landing-page__footer {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.9), transparent), url("https://www.iteminc.com/content/files/frontend-assets/refurbished-core-page/core.jpg") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
  padding: 40px;
  margin-top: 70px;
}
.container--ch .packing-guide-landing-page__footer .cta-button {
  background-color: #f7b103;
  padding: 20px 50px;
  color: #000;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-weight: bold;
  font-size: 20px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  text-align: center;
  max-width: 400px;
  transition: background-color 0.3s;
  border: none;
}
.container--ch .packing-guide-landing-page__footer .cta-button:hover {
  background-color: #f8bd29;
}

@media (max-width: 1020px) {
  .container--ch .packing-guide-landing-page__list .package-materials {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0px;
  }
  .container--ch .packing-guide-landing-page__list .package-materials .checklist {
    margin: 30px 0px 5px 0px;
  }
}
@media (max-width: 700px) {
  .container--ch .packing-guide-landing-page__hero h1 {
    font-size: 28px;
    max-width: 400px;
  }
  .container--ch .packing-guide-landing-page__hero p {
    font-size: 22px;
  }
  .container--ch .packing-guide-landing-page__list {
    margin: 40px 0px;
  }
  .container--ch .packing-guide-landing-page__list .title h2 {
    font-size: 24px;
  }
  .container--ch .packing-guide-landing-page__list p {
    font-size: 20px;
    margin: 20px 0px 40px 0px;
    width: 100%;
  }
  .container--ch .packing-guide-landing-page__list .package-materials .checklist {
    padding: 15px 0px;
  }
  .container--ch .packing-guide-landing-page__list .package-materials .checklist li {
    font-size: 18px;
  }
  .container--ch .packing-guide-landing-page__packaging .packing-guide-video h2 {
    font-size: 24px;
  }
  .container--ch .packing-guide-landing-page__packaging .packing-guide-video p {
    font-size: 20px;
  }
  .container--ch .packing-guide-landing-page__packaging .packing-guide-steps h2 {
    font-size: 24px;
  }
  .container--ch .packing-guide-landing-page__packaging .packing-guide-steps p {
    font-size: 20px;
  }
  .container--ch .packing-guide-landing-page__packaging .packing-guide-steps .cards-block {
    grid-template-columns: 1fr;
  }
  .container--ch .packing-guide-landing-page__packaging .packing-guide-steps .cards-block .card {
    padding: 15px;
  }
  .container--ch .packing-guide-landing-page__packaging .packing-guide-steps .cards-block .card__step {
    font-size: 22px;
  }
  .container--ch .packing-guide-landing-page__packaging .packing-guide-steps .cards-block .card__title {
    font-size: 20px;
  }
  .container--ch .packing-guide-landing-page__packaging .packing-guide-steps .cards-block .card__description {
    font-size: 18px;
  }
  .container--ch .packing-guide-landing-page__multiple-fusers .card {
    width: 100%;
    padding: 15px;
  }
  .container--ch .packing-guide-landing-page__multiple-fusers .card__title {
    font-size: 22px;
  }
  .container--ch .packing-guide-landing-page__multiple-fusers .card__description {
    font-size: 18px;
  }
  .container--ch .packing-guide-landing-page__footer h1 {
    font-size: 28px;
  }
  .container--ch .packing-guide-landing-page__footer p {
    font-size: 22px;
  }
  .container--ch .packing-guide-landing-page__footer .cta-button {
    font-size: 18px;
    padding: 20px 10px;
  }
}
@media (max-width: 400px) {
  .container--ch .packing-guide-landing-page__hero {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 60%, transparent), url("https://www.iteminc.com/content/files/frontend-assets/packing-guide-images/recycle-hero3.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 65%;
  }
}
.container--ch .free-shipping-landing-page__hero {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.9), transparent), url("https://www.iteminc.com/content/files/frontend-assets/free-ground-shipping/free-shipping1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.container--ch .free-shipping-landing-page__eligibility {
  margin: 70px 0px;
}
.container--ch .free-shipping-landing-page__eligibility .title {
  max-width: fit-content;
  margin: 0px auto;
}
.container--ch .free-shipping-landing-page__eligibility .title h2 {
  font-size: 32px;
  margin-bottom: 8px;
}
.container--ch .free-shipping-landing-page__eligibility .title p {
  font-size: 24px;
  line-height: 1.5;
  font-family: "Inter", sans-serif;
}
.container--ch .free-shipping-landing-page__eligibility .eligibility-requirements {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0px;
}
.container--ch .free-shipping-landing-page__eligibility .eligibility-requirements .requirement {
  width: 300px;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
.container--ch .free-shipping-landing-page__eligibility .eligibility-requirements .requirement img {
  width: 140px;
}
.container--ch .free-shipping-landing-page__eligibility .eligibility-requirements .requirement p {
  text-align: center;
  font-size: 24px;
  margin: 20px 61px;
}
.container--ch .free-shipping-landing-page__eligibility .eligibility-requirements .ii-divider {
  display: none;
}
.container--ch .free-shipping-landing-page__eligibility .notice {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  font-family: "Inter", sans-serif;
  line-height: 1.5;
}
.container--ch .free-shipping-landing-page__checkout-steps {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  max-width: 700px;
  margin: 60px auto;
  padding: 50px;
  border-radius: 8px;
}
.container--ch .free-shipping-landing-page__checkout-steps h2 {
  margin-bottom: 8px;
}
.container--ch .free-shipping-landing-page__checkout-steps .step {
  margin-top: 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.container--ch .free-shipping-landing-page__checkout-steps .step img {
  width: 60px;
  margin: 0px;
}
.container--ch .free-shipping-landing-page__checkout-steps .step p {
  font-size: 20px;
  font-family: "Inter", sans-serif;
  margin-left: 15px;
}

@media (max-width: 635px) {
  .container--ch .free-shipping-landing-page__hero {
    background-position: 61%;
  }
  .container--ch .free-shipping-landing-page__hero h1 {
    font-size: 28px;
  }
  .container--ch .free-shipping-landing-page__eligibility .title h2 {
    font-size: 24px;
  }
  .container--ch .free-shipping-landing-page__eligibility .title p {
    font-size: 20px;
  }
  .container--ch .free-shipping-landing-page__eligibility .eligibility-requirements .ii-divider {
    display: block;
  }
  .container--ch .free-shipping-landing-page__eligibility .notice {
    font-size: 20px;
  }
  .container--ch .free-shipping-landing-page__checkout-steps {
    padding: 20px 15px;
  }
  .container--ch .free-shipping-landing-page__checkout-steps .step {
    margin-top: 15px;
  }
  .container--ch .free-shipping-landing-page__checkout-steps .step img {
    width: 40px;
  }
  .container--ch .free-shipping-landing-page__checkout-steps .step p {
    margin: 15px;
  }
}
#ii-paypal-row img {
  max-width: 250px;
  display: block;
  margin: auto;
}

#ii-footer-company-info {
  text-align: center;
  line-height: 1.2;
}
#ii-footer-company-info p {
  color: #707070;
  font-size: 16px;
}
#ii-footer-company-info a {
  text-decoration: none;
  color: #707070;
}
#ii-footer-company-info a:hover {
  color: #094670;
  text-decoration: underline;
}
#ii-footer-company-info .social-icons {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  max-width: 400px;
  margin: auto;
}
#ii-footer-company-info .social-icons a {
  width: 120px;
  height: auto;
}
#ii-footer-company-info .social-icons a img {
  height: 60px;
}

#error-code-app .container--ch {
  margin: 50px auto;
  padding: 20px;
  max-width: 600px;
  background-color: #fff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
}
#error-code-app .container--ch h1 {
  color: #094670;
  text-align: center;
}
#error-code-app .container--ch label {
  font-weight: bold;
  color: #f7b103;
}
#error-code-app .container--ch input[type=text] {
  padding: 5px;
  margin-bottom: 10px;
  border: 1px solid #094670;
  border-radius: 3px;
  width: 80%;
  box-sizing: border-box;
  font-size: 16px;
  margin-right: 10px;
}
#error-code-app .container--ch button {
  background-color: #f7b103;
  color: #1a1a1a;
  font-weight: bold;
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  margin: auto;
}
#error-code-app .container--ch button:hover {
  background: rgb(252.492, 193.972, 48.508);
}
#error-code-app .container--ch #error-code-display {
  text-align: center;
}
#error-code-app .container--ch #error-code-meaning {
  margin-top: 10px;
  color: #1a1a1a;
  font-size: 16px;
}

.container--ch #refurbish-intro {
  display: flex;
  justify-content: space-between;
}
.container--ch #refurbish-intro .ii-underline {
  margin-bottom: 30px;
}
.container--ch #refurbish-intro .column {
  width: 50%;
  display: flex;
  flex-direction: column;
  padding: 20px;
  justify-content: center;
}
.container--ch #refurbish-intro .column span {
  display: block !important;
  text-align: center;
}
.container--ch #refurbish-intro .column img {
  width: 90%;
  max-width: 600px;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(26, 26, 26, 0.6);
}
.container--ch #refurbish-intro .column h1 {
  margin: 0;
  color: #1a1a1a;
  font-size: 40px;
}
.container--ch #refurbish-intro .column p {
  color: #1a1a1a;
  line-height: 1.7;
  margin: 0 0 30px 0;
  font-size: 22px;
}

/*********************************
              MEDIA QUERIES
    *********************************/
@media (max-width: 670px) {
  .container--ch #refurbish-intro {
    display: block;
  }
  .container--ch #refurbish-intro .column {
    width: 100%;
  }
  .container--ch #refurbish-intro .column h1 {
    font-size: 35px;
  }
  .container--ch #refurbish-intro .column p {
    font-size: 20px;
  }
}
.container--ch #refurbish-steps {
  margin: 15px;
  display: flex;
  justify-content: center;
}
.container--ch #refurbish-steps .column {
  width: 50%;
  display: flex;
  flex-direction: column;
  padding: 20px;
  justify-content: center;
}
.container--ch #refurbish-steps .column span {
  display: block !important;
  text-align: center;
}
.container--ch #refurbish-steps .column img {
  width: 75%;
  max-width: 700px;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(26, 26, 26, 0.6);
}
.container--ch #refurbish-steps .column h1 {
  font-size: 28px;
  font-weight: bold;
  color: #1a1a1a;
}
.container--ch #refurbish-steps .column h2 {
  font-size: 24px;
  color: #1a1a1a;
  margin-bottom: 0;
  overflow: auto;
}
.container--ch #refurbish-steps .column ul {
  margin: 0;
  padding: 0;
}
.container--ch #refurbish-steps .column ul li {
  list-style-type: none;
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 18px;
  padding-left: 35px;
}

/*********************************
            MEDIA QUERIES
  *********************************/
@media (max-width: 900px) {
  .container--ch #refurbish-steps {
    display: flex;
    flex-direction: column-reverse;
  }
  .container--ch #refurbish-steps .column {
    width: 100%;
  }
  .container--ch #refurbish-steps .column h2 {
    font-size: 25px;
  }
}
.container--ch #core-overview h1 {
  font-size: 35px;
  text-align: center;
  margin-bottom: 0;
  color: #1a1a1a;
}
.container--ch #core-overview .images-block {
  display: flex;
  justify-content: center;
}
.container--ch #core-overview img {
  box-sizing: border-box;
  text-align: center;
  margin: 15px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(26, 26, 26, 0.5);
  border-radius: 5px;
}
.container--ch #page-details {
  margin-left: auto;
  margin-right: auto;
  width: 60%;
  padding: 0 20px;
}
.container--ch #page-details h3 {
  font-size: 20px;
  margin-bottom: 5px;
  font-family: orbitron;
  color: #000;
}
.container--ch #page-details p {
  font-size: 18px;
  line-height: 1.5;
  margin-top: 5px;
  font-family: "Inter", sans-serif;
}

/*********************************
              MEDIA QUERIES
    *********************************/
@media (max-width: 880px) {
  .container--ch #core-overview h1 {
    font-size: 30px;
    margin: 0 15px;
  }
  .container--ch #core-overview .images-block {
    display: flex;
    justify-content: center;
    margin: 0 10px;
  }
  .container--ch #core-overview .images-block img {
    max-width: 400px;
    width: 100%;
  }
  .container--ch #page-details {
    width: 100%;
  }
}
@media (max-width: 400px) {
  .container--ch #core-overview img {
    margin: 0;
  }
}
.container--ch #cores-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 10px;
}
.container--ch #cores-list h2 {
  font-size: 28px;
  margin: 30px 0px 10px 0px;
}
.container--ch #cores-list table {
  width: 50%;
  max-width: 900px;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 18px;
  text-align: left;
  box-shadow: 0 0 15px rgba(26, 26, 26, 0.5);
}
.container--ch #cores-list table tr {
  line-height: 1.5;
  font-family: "Inter", sans-serif;
}
.container--ch #cores-list table th {
  background-color: #094670;
  font-weight: bold;
  color: #ffffff;
  padding: 12px 15px;
  border: 1px solid #ffffff;
  font-size: 18px;
}
.container--ch #cores-list table td {
  padding: 12px 15px;
  border: 1px solid #094670;
}
.container--ch #cores-list table td a {
  text-decoration: underline !important;
}
.container--ch #cores-list table tr:nth-child(odd) {
  background-color: #d4d4d4;
}

/*********************************
              MEDIA QUERIES
    *********************************/
@media (max-width: 880px) {
  .container--ch #cores-list table {
    width: 80%;
  }
}
/*********************************
              MEDIA QUERIES
    *********************************/
@media (max-width: 400px) {
  .container--ch #cores-list h2 {
    text-align: center;
    font-size: 20px;
  }
  .container--ch #cores-list table {
    margin-top: 10px;
  }
  .container--ch #cores-list table tr th {
    font-size: 16px;
  }
  .container--ch #cores-list table tr td {
    padding: 5px;
    font-size: 14px;
    height: 45px;
  }
}
.container--ch #core-terms {
  width: 60%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  font-family: "Inter", sans-serif;
}
.container--ch #core-terms h2 {
  font-size: 28px;
  font-weight: bold;
  color: #1a1a1a;
}
.container--ch #core-terms p {
  font-size: 18px;
  margin-top: 5px;
  line-height: 1.5;
}
.container--ch #core-terms h3 {
  margin-bottom: 5px;
  color: #1a1a1a;
  font-size: 20px;
  font-family: orbitron, sans-serif;
}
.container--ch #core-terms .term-requirements {
  line-height: 1.5;
  font-size: 18px;
}
.container--ch #core-terms .term-requirements li {
  margin-bottom: 10px;
}
.container--ch #core-terms ol {
  font-size: 18px;
}
.container--ch #core-terms ol .process-title {
  font-weight: bold;
}
.container--ch #core-terms ol .process-title ul {
  font-weight: normal;
  margin: 5px 0;
}
.container--ch #core-terms ol .process-title ul li {
  line-height: 1.5;
  margin-bottom: 10px;
}
.container--ch #cta-button {
  display: flex;
  justify-content: center;
  margin: 30px 0px;
}
.container--ch #cta-button .ii-button--filled {
  box-shadow: 0 0 15px rgba(26, 26, 26, 0.5);
}

/*********************************
              MEDIA QUERIES
    *********************************/
@media (max-width: 880px) {
  .container--ch #core-terms {
    width: 100%;
  }
}
@media (max-width: 400px) {
  .container--ch #core-terms ul {
    padding-left: 10px;
  }
  .container--ch #cta-button .ii-button {
    padding: 10px 20px;
  }
}
.container--ch .banner {
  width: 70%;
  max-width: 1000px;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.4), transparent), url(https://www.iteminc.com/content/files/frontend-assets/banner/LP844C.jpg);
  background-size: 50%;
  background-position: right;
  background-repeat: no-repeat;
  border-radius: 10px;
  margin-top: 100px;
  border: 2px solid #094670;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}
.container--ch .banner .banner-content {
  margin: 10px 5px 10px 30px;
}
.container--ch .banner .banner-content h1 {
  letter-spacing: 1px;
  font-weight: bold;
  font-size: 30px;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #094670;
  font-family: orbitron, sans-serif;
}
.container--ch .banner .banner-content p {
  margin: 7px;
  font-size: 18px;
}
.container--ch .banner .banner-content p .fa-circle-arrow-right {
  color: #094670;
}
.container--ch .banner .banner-content .custom-button {
  display: block;
  text-align: center;
  max-width: 300px;
  padding: 10px 30px;
  background-color: #f7b103;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}
.container--ch .banner .banner-content .button-content {
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  color: #000;
  font-family: sans-serif;
}
.container--ch .banner .banner-content .button-content:hover {
  transform: translateY(-2px) !important;
  background: #fcc231;
}

@media (max-width: 1100px) {
  .container--ch .banner {
    width: 90%;
  }
  .container--ch .banner .banner-content p {
    font-size: 16px !important;
  }
  .container--ch .banner .banner-content h1 {
    font-size: 24px !important;
  }
}
@media (max-width: 730px) {
  .container--ch .banner {
    background-size: 40%;
  }
  .container--ch .banner .banner-content h1 {
    font-size: 20px !important;
  }
  .container--ch .banner .banner-content .custom-button {
    margin-top: 15px;
  }
}
@media (max-width: 540px) {
  .container--ch .banner {
    background-image: none;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.4), transparent);
  }
  .container--ch .banner .banner-content {
    margin: 5px 10px;
  }
  .container--ch .banner .banner-content p {
    width: 100% !important;
  }
  .container--ch .banner .banner-content .button-content {
    font-size: 18px;
  }
}
@media (max-width: 380px) {
  .container--ch .banner .banner-content h1 {
    font-size: 16px !important;
    margin: 5px;
  }
  .container--ch .banner .banner-content p {
    font-size: 14px !important;
  }
  .container--ch .banner .banner-content .custom-button {
    padding: 10px 15px;
    font-size: 16px !important;
  }
}
.container--ch .core-section {
  display: block;
  width: 70%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.container--ch .core-section .core-section-header {
  font-weight: bold;
  font-size: 22px;
  line-height: 1.5;
  color: #000;
  text-transform: uppercase;
  font-family: "Orbitron", sans-serif;
}
.container--ch .core-section .core-section-header .core-page-link {
  text-decoration: underline;
}
.container--ch .core-section .core-section-header .core-page-link:hover {
  color: #1B6FA8 !important; /*lighter shade of our primary that appears on our color pallette*/
}
.container--ch .core-section .core-banner-container {
  display: flex;
  justify-content: center;
}
.container--ch .core-section .core-banner-container img {
  box-shadow: 0 0 15px rgba(26, 26, 26, 0.5);
  max-width: 500px;
  width: 100%;
}
.container--ch .core-section .core-banner:hover {
  transform: translateY(-2px) !important;
  transition: 0.3s;
}

/*****************
 ***media query***
 ****************/
@media (max-width: 800px) {
  .container--ch .core-section {
    width: 100% !important;
  }
  .container--ch .core-section-header {
    font-size: 20px !important;
  }
}
.container--ch .youtube-title {
  font-size: 32px;
  text-align: center;
}
.container--ch .youtube-vid {
  width: 100%;
  max-width: 700px;
  aspect-ratio: 16/9;
  display: block;
  border: none;
  margin: 10px auto 20px auto;
  box-shadow: 0 0 15px rgba(26, 26, 26, 0.6);
}

/******************
*** media query ***
*******************/
@media (max-width: 600px) {
  .container--ch .youtube-title {
    font-size: 24px;
  }
}
