@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Prompt:300,400,500,600);
.html-digital {
  box-sizing: border-box;
  font-size: 100%;
  font-family: "Prompt", sans-serif;
  background-color: white;
  color: black;
  margin: 0;
  padding: 0;
}

.html-digital *,
.html-digital *::before,
.html-digital *::after {
  box-sizing: inherit;
}

body .html-digital {
  color: #333;
}

.html-digital h1,
.html-digital h2,
.html-digital h3 {
  font-weight: 700;
  line-height: 1.1;
  margin-top: 0;
}

.html-digital h4 {
  font-weight: 700;
  line-height: 1.1;
  font-size: 2.1rem !important;
  margin-top: 3rem;
}

p {
  margin-top: 0;
}

a,
a:visited,
a:active {
  text-decoration: none;
}

.mob-font {
  font-size: clamp(13px, 3vw, 16px);
}

.txt-bold {
  font-weight: bold;
}

.html-digital {
  --color-green: rgba(171, 205, 123, 1);
  --color-blue: rgba(92, 160, 215, 1);
  --font-color-green: rgba(171, 205, 123, 1);
  --font-color-red: rgba(255, 0, 0, 0.75);
  --symbol-green: rgba(171, 205, 123, 1);
  --symbol-red: rgba(255, 0, 0, 0.75);
  --bg-color-red: rgba(255, 0, 0, 0.75);
  --bg-color-grey: rgba(211, 211, 211, 0.6);
  --bg-color-lightgrey: rgba(211, 211, 211, 0.3);
  --border-green: 0.2rem solid rgba(171, 205, 123, 1);
  --border-green-big: 0.4rem solid rgba(171, 205, 123, 1);
  --border-red: 0.2rem solid rgba(255, 0, 0, 0.75);
  --border-red-big: 0.4rem solid rgba(255, 0, 0, 0.75);
  --border-grey: 0.2rem solid rgba(211, 211, 211, 1);
}

/* +++++++++++++++
    1. Main Intro 
    ++++++++++++++
*/
@media screen and (max-width: 9999px) {
  .h4-collapse {
    cursor: pointer;
  }
  .h4-collapse::after {
    color: rgb(255, 255, 255);
    background: rgba(92, 160, 215, 0.5);
    margin-top: -0.5rem;
    padding: 0.5rem 1.5rem 0.25rem 1.5rem;
    border-radius: 0px;
    content: "  -  ";
    float: right;
  }
  .h4-collapse:hover::after {
    background: rgb(92, 160, 215);
  }
  .h4-collapse.show {
    margin-top: 2rem;
  }
  .h4-collapse.show::after {
    content: "  +  ";
  }
  .main-top {
    display: flex;
    align-items: center;
    gap: 4rem;
  }
  .main-top div:nth-child(1) {
    width: 100%;
  }
  .main-top div:nth-child(1) blockquote {
    font-family: "Times New Roman", serif;
    color: grey;
    font-size: 3rem;
    font-weight: bold;
    font-style: normal;
    line-height: 1.25;
  }
  .main-top div:nth-child(1) blockquote::before {
    color: rgb(0, 155, 0);
    color: rgba(0, 155, 0, 0.5);
    content: open-quote;
    display: inline;
    font-size: 3em;
    left: -1rem;
    line-height: 0;
    position: relative;
    top: 30px;
  }
  .main-top div:nth-child(1) blockquote::after {
    color: rgb(0, 155, 0);
    color: rgba(0, 155, 0, 0.5);
    content: close-quote;
    display: inline;
    font-size: 3em;
    right: 0;
    line-height: 0;
    position: relative;
    top: 35px;
  }
  .main-top div:nth-child(-n+1) {
    border-right: var(--border-grey);
    padding-right: 2rem;
  }
  .dp-we-can img {
    width: 100%;
    margin: auto;
  }
  /* Infographic + Video link */
  .grid-infograph {
    border: var(--border-grey);
    padding: 0 0.5rem 0 0.5rem;
    display: grid;
    font-size: 1em;
    font-size: clamp(12px, 1vw, 18px);
    gap: 0.5rem 1rem;
    grid-template-columns: minmax(80%, auto) minmax(20%, auto);
    justify-content: center;
  }
  .fix-mar {
    background-color: var(--bg-color-lightgrey);
    padding: 0 50px 0 30px;
    margin-left: -1rem;
  }
  .inner-content {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
  }
  .grid-dp-why {
    display: grid;
    gap: 0.5rem 2rem;
    grid-template-columns: minmax(50%, auto) minmax(50%, auto);
    grid-template-rows: auto;
    justify-content: center;
    margin: 0 1rem;
  }
  .why-digital {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  .why-hf {
    grid-column: 2/3;
    grid-row: 1/2;
  }
  #grid-it-1 {
    grid-area: 2/1/3/2;
  }
  #grid-it-2 {
    grid-area: 3/1/4/2;
  }
  #grid-it-3 {
    grid-area: 4/1/5/2;
  }
  #grid-it-4 {
    grid-area: 5/1/6/2;
  }
  #grid-it-5 {
    grid-area: 2/2/3/3;
  }
  #grid-it-6 {
    grid-area: 3/2/4/3;
  }
  #grid-it-7 {
    grid-area: 4/2/5/3;
  }
  #grid-it-8 {
    grid-area: 5/2/6/3;
  }
  .why-digital,
.why-hf {
    font-weight: bold;
  }
  .redx {
    color: var(--symbol-red);
    font-weight: bold;
  }
  .greeny {
    color: var(--symbol-green);
    font-weight: bold;
  }
}
@media screen and (max-width: 1024px) {
  .main-top {
    flex-flow: column wrap;
    gap: 0;
  }
  .main-top div:nth-child(-n+1) {
    border-right: unset;
    text-align: center;
  }
  .grid-infograph {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }
  .fix-mar {
    padding: 1rem;
    margin: 0;
    font-size: 1.5rem;
    width: 100%;
    text-align: center;
  }
  .inner-content {
    display: block;
  }
  .video-dp {
    display: block;
    position: relative;
    padding-bottom: 56.25%;
    margin-bottom: 5rem;
  }
  .video-dp iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 768px) {
  .dp-we-can img {
    display: none;
  }
  .fix-mar {
    font-size: clamp(12px, 3vw, 16px);
  }
  .grid-dp-why {
    grid-template-columns: auto;
    grid-template-rows: repeat(8, minmax(auto, auto));
    justify-content: start;
  }
  .why-digital {
    grid-area: 1/1/2/2;
  }
  .why-hf {
    grid-area: 6/1/7/2;
    padding-top: 2rem;
  }
  #grid-it-1 {
    grid-area: 2/1/3/2;
  }
  #grid-it-2 {
    grid-area: 3/1/4/2;
  }
  #grid-it-3 {
    grid-area: 4/1/5/2;
  }
  #grid-it-4 {
    grid-area: 5/1/6/2;
  }
  #grid-it-5 {
    grid-area: 7/1/8/2;
  }
  #grid-it-6 {
    grid-area: 8/1/9/2;
  }
  #grid-it-7 {
    grid-area: 9/1/10/2;
  }
  #grid-it-8 {
    grid-area: 10/1/11/2;
  }
}
@media screen and (max-width: 480px) {
  .grid-dp-why {
    margin: 0;
  }
}
/* +++++++++++++++++++++
2a. General Information
++++++++++++++++++++++++
*/
@media screen and (max-width: 9999px) {
  #hr-two-a-top {
    display: none;
  }
  #section-two .grid-gc {
    display: grid;
    word-break: break-word;
    grid-template-columns: 0.3fr 0.7fr;
    justify-content: center;
    gap: 2rem;
    font-size: 1.5rem;
  }
  #section-two .gc-col1 {
    grid-area: 1/1/2/2;
    padding: 3rem;
    border: var(--border-green);
  }
  #section-two .gc-col2 {
    grid-area: 1/2/2/3;
    background-color: var(--bg-color-lightgrey);
    border: var(--border-green);
    padding: 0 2rem 2rem 2rem;
  }
  .info-note {
    display: inline-flex;
    font-size: 1.75rem;
  }
  #imp-vat {
    color: var(--font-color-red);
    font-weight: bold;
  }
}
@media screen and (max-width: 1024px) {
  #section-two .grid-gc {
    grid-template-columns: auto;
  }
  #section-two .gc-col1 {
    grid-area: 1/1/2/4;
    padding: 1rem 3rem 2rem 3rem;
  }
  #section-two .gc-col2 {
    grid-area: 2/1/3/4;
  }
}
@media screen and (max-width: 480px) {
  #section-two .grid-gc {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    justify-content: center;
    font-size: clamp(12px, 4vw, 16px);
  }
}
/* ++++++++++++++++++++
2b. Digital Print Cost
+++++++++++++++++++++++
*/
@media screen and (max-width: 9999px) {
  .desktop-hide {
    display: none;
  }
  /* Hide Accordion */
  .header-1 {
    display: none;
  }
  .heading {
    display: none;
  }
  input {
    display: none;
  }
  .mobile {
    display: none;
  }
  .grid-hd-desktop {
    display: grid;
    grid-template-columns: minmax(150px, 150px) minmax(200px, auto) repeat(2, minmax(120px, auto));
    text-align: center;
    font-size: 1.4rem;
    color: white;
  }
  .grid-hf-price {
    display: grid;
    grid-template-columns: minmax(150px, 150px) minmax(200px, auto) repeat(2, minmax(120px, auto));
    text-align: center;
    font-size: 1.5rem;
  }
  .rbw {
    position: relative;
    background-repeat: no-repeat;
    background-size: 1px 75%;
    background-position: right center;
    background-image: linear-gradient(white, white);
  }
  .rbb {
    position: relative;
    background-repeat: no-repeat;
    background-size: 2px 100%;
    background-position: 100% 0%;
    background-image: linear-gradient(var(--bg-color-grey), var(--bg-color-grey));
  }
  .desktop {
    display: grid;
  }
  .qty-hd,
.price-hd {
    background-color: var(--color-green);
  }
  .qty-hd {
    grid-area: 1/2/2/3;
  }
  .jb-q1 {
    grid-area: 1/3/2/4;
  }
  .jb-q2 {
    grid-area: 1/4/2/5;
  }
  .qty-hd,
.jb-q1,
.jb-q2 {
    font-weight: bold;
    background-color: var(--color-green);
    border: unset;
    padding: 2rem 0;
  }
  .hyb-img,
.gp-img,
.rpb-img,
.gb-img {
    border-top: 2px solid var(--bg-color-grey);
  }
  .jb-img,
.jb-hd {
    border-top: 2px solid var(--bg-color-grey);
  }
  .hyb-hd,
.gp-hd,
.rpb-hd,
.gb-hd {
    text-decoration: underline;
    -webkit-text-decoration-color: var(--bg-color-grey);
            text-decoration-color: var(--bg-color-grey);
    text-underline-offset: 1rem;
    border-top: 2px solid var(--bg-color-grey);
    font-weight: bold;
    text-align: center;
  }
  .jb-hd {
    text-decoration: underline;
    -webkit-text-decoration-color: var(--bg-color-grey);
            text-decoration-color: var(--bg-color-grey);
    text-underline-offset: 1rem;
    font-weight: bold;
    text-align: center;
  }
  .jb-remain,
.gp-remain,
.rpb-remain,
.hyb-remain,
.gb-remain {
    border-top: 2px solid var(--bg-color-grey);
  }
  /* .gb-img,
  .gb-hd4,
  .gb-from4,
  .gb-to4 {
    border-bottom: 2px solid var(--bg-color-grey);
  }
  */
  .price-hd1, .price-hd2, .price-hd3, .price-hd4, .price-hd5 {
    text-align: center;
  }
  /* Jewellery Boxes */
  .jb-img {
    grid-area: 2/1/6/2;
    padding-top: 2rem;
  }
  .jb-hd {
    grid-area: 2/2/3/3;
  }
  .jb-remain {
    grid-area: 2/3/3/5;
  }
  .price-hd1 {
    grid-area: 3/2/4/3;
    margin-top: 2rem;
  }
  .jb-p1 {
    grid-area: 3/3/4/4;
    margin-top: 2rem;
  }
  .jb-p2 {
    grid-area: 3/4/4/5;
    margin-top: 2rem;
  }
  .jb-hd2 {
    grid-area: 4/2/5/3;
  }
  .jb-from2 {
    grid-area: 4/3/5/4;
  }
  .jb-to2 {
    grid-area: 4/4/5/5;
  }
  .jb-hd3 {
    grid-area: 5/2/6/3;
    margin-bottom: 2rem;
  }
  .jb-from3 {
    grid-area: 5/3/6/4;
    margin-bottom: 2rem;
  }
  .jb-to3 {
    grid-area: 5/4/6/5;
    margin-bottom: 2rem;
  }
  .jb-hd {
    padding-top: 2rem;
  }
  .price-hd1,
.jb-p1,
.jb-p2,
.jb-p3,
.jb-p4,
.jb-p5 {
    padding-top: 0;
  }
  /* Gift Pouches */
  .gp-img {
    grid-area: 6/1/10/2;
    padding-top: 2rem;
  }
  .gp-hd {
    grid-area: 6/2/7/3;
    margin-bottom: 2rem;
  }
  .gp-remain {
    grid-area: 6/3/7/5;
  }
  .price-hd3 {
    grid-area: 7/2/8/3;
  }
  .gp-p1 {
    grid-area: 7/3/8/4;
  }
  .gp-p2 {
    grid-area: 7/4/8/5;
  }
  .gp-hd2 {
    grid-area: 8/2/9/3;
  }
  .gp-from2 {
    grid-area: 8/3/9/4;
  }
  .gp-to2 {
    grid-area: 8/4/9/5;
  }
  .gp-hd3 {
    grid-area: 9/2/10/3;
    margin-bottom: 2rem;
  }
  .gp-from3 {
    grid-area: 9/3/10/4;
    margin-bottom: 2rem;
  }
  .gp-to3 {
    grid-area: 9/4/10/5;
    margin-bottom: 2rem;
  }
  .gp-hd {
    padding-top: 2rem;
  }
  .price-hd3,
.gp-p1,
.gp-p2,
.gp-p3,
.gp-p4,
.gp-p5 {
    padding-top: 0;
  }
  /* Rigid Presentation Boxes */
  .rpb-img {
    grid-area: 10/1/14/2;
    padding-top: 2rem;
  }
  .rpb-hd {
    grid-area: 10/2/11/3;
    margin-bottom: 2rem;
  }
  .rpb-remain {
    grid-area: 10/3/11/5;
  }
  .price-hd4 {
    grid-area: 11/2/12/3;
  }
  .rpb-p1 {
    grid-area: 11/3/12/4;
  }
  .rpb-p2 {
    grid-area: 11/4/12/5;
  }
  .rpb-hd2 {
    grid-area: 12/2/13/3;
  }
  .rpb-from2 {
    grid-area: 12/3/13/4;
  }
  .rpb-to2 {
    grid-area: 12/4/13/5;
  }
  .rpb-hd3 {
    grid-area: 13/2/14/3;
    margin-bottom: 2rem;
  }
  .rpb-from3 {
    grid-area: 13/3/14/4;
    margin-bottom: 2rem;
  }
  .rpb-to3 {
    grid-area: 13/4/14/5;
    margin-bottom: 2rem;
  }
  .rpb-hd {
    padding-top: 2rem;
  }
  .price-hd4,
.rpb-p1,
.rpb-p2,
.rpb-p3,
.rpb-p4,
.rpb-p5 {
    padding-top: 0;
  }
  /* Hybrid Boxes */
  .hyb-img {
    grid-area: 14/1/16/2;
  }
  .hyb-hd {
    grid-area: 14/2/15/3;
  }
  .hyb-remain {
    grid-area: 14/3/15/5;
  }
  .price-hd2 {
    grid-area: 15/2/16/3;
    margin-bottom: 2rem;
    align-self: center;
  }
  .hyb-p1 {
    grid-area: 15/3/16/4;
    margin-bottom: 2rem;
    align-self: center;
  }
  .hyb-p2 {
    grid-area: 15/4/16/5;
    margin-bottom: 2rem;
    align-self: center;
  }
  .hyb-hd {
    padding-top: 2rem;
  }
  .price-hd2,
.hyb-p1,
.hyb-p2,
.hyb-p3,
.hyb-p4,
.hyb-p5 {
    padding-top: 0;
  }
  /* Gift Bags */
  .gb-img {
    grid-area: 16/1/21/2;
    padding-top: 2rem;
  }
  .gb-hd {
    grid-area: 16/2/17/3;
    margin-bottom: 2rem;
  }
  .gb-remain {
    grid-area: 16/3/17/5;
  }
  .price-hd5 {
    grid-area: 17/2/18/3;
  }
  .gb-p1 {
    grid-area: 17/3/18/4;
  }
  .gb-p2 {
    grid-area: 17/4/18/5;
  }
  .gb-hd2 {
    grid-area: 18/2/19/3;
  }
  .gb-from2 {
    grid-area: 18/3/19/4;
  }
  .gb-to2 {
    grid-area: 18/4/19/5;
  }
  .gb-hd3 {
    grid-area: 19/2/20/3;
  }
  .gb-from3 {
    grid-area: 19/3/20/4;
  }
  .gb-to3 {
    grid-area: 19/4/20/5;
  }
  .gb-hd4 {
    grid-area: 20/2/21/3;
  }
  .gb-from4 {
    grid-area: 20/3/21/4;
  }
  .gb-to4 {
    grid-area: 20/4/21/5;
  }
  .gb-hd {
    padding-top: 2rem;
  }
  .price-hd5,
.gb-p1,
.gb-p2,
.gb-p3,
.gb-p4,
.gb-p5 {
    padding-top: 0;
  }
  /* #hr-sec-two { display: none; } */
  #row-gbag .grid-hf-price {
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 1024px) {
  #foil-cost br {
    display: none;
  }
  /* Remove top/bottom borders */
  .grid-hf-price *,
.accordion-hfprice * {
    border: unset;
    text-decoration: unset;
  }
  .grid-hd-desktop {
    display: none;
  }
  .row1-jb, .row2-jb, .row1-hyb, .row2-hyb, .row1-gp, .row2-gp, .row1-rpb, .row2-rpb, .row1-gb, .row2-gb {
    display: none;
  }
  .jb-p1, .jb-p2, .jb-p3, .jb-p4, .jb-p5 {
    display: none;
  }
  .qty-hd, .price-hd, .jb-hd, .hyb-hd, .gp-hd, .rpb-hd, .gb-hd {
    display: none;
  }
  .hyb-hd,
.gp-hd,
.rpb-hd,
.gb-hd {
    text-align: left;
  }
  .accordion-hfprice {
    width: auto;
    margin: 0;
    text-align: start;
  }
  .radiohead {
    display: none;
  }
  /* Cell Shading */
  .product-hd, .from-hd1, .to-hd1 {
    background-color: var(--bg-color-grey);
    font-weight: bold;
  }
  .shade-lg {
    background-color: #fff;
  }
  .shade-dg {
    background-color: var(--bg-color-lightgrey);
  }
  .grid-hf-price:nth-child(n+1) {
    border-left: 2px solid var(--color-green);
    border-right: 2px solid var(--color-green);
  }
  .grid-hf-price:nth-child(n+1) {
    border-bottom: 2px solid var(--color-green);
    padding-right: 2rem;
  }
  .grid-padding:last-child {
    padding-bottom: 2rem;
  }
  .grid-hf-price:first-child {
    padding-top: 2rem;
  }
  .child-bg {
    background-color: var(--bg-color-lightgrey);
  }
  /* Product Headings */
  .heading {
    position: relative;
    left: 0;
    background: #5ca0d7;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
    padding: 9px 0px 9px 20px;
    display: block;
    width: 100%;
    cursor: pointer;
  }
  .heading:hover {
    background: var(--color-green);
  }
  /* Product Info & Prices */
  .info {
    margin: 0 0 4px 0;
    width: 100% !important;
    height: 0;
    overflow: hidden;
    z-index: 1;
    position: relative;
    opacity: 1;
    transition: 0.5s ease;
    font-size: 0.9em;
  }
  .radiohead:checked ~ .info {
    height: auto;
    opacity: 1;
    padding: 0 0 15px 0;
  }
  /* Toggle Settings */
  .accordion-hfprice label:after {
    content: "+";
    color: #fff;
    position: absolute;
    right: 30px;
    bottom: 12px;
    z-index: 5;
    font-size: 2.1em;
    line-height: 100%;
  }
  .accordion-hfprice input:checked + label:after {
    content: "−";
  }
  .radiohead:checked ~ .heading {
    background: var(--color-green);
  }
  .grid-hf-price {
    display: grid;
    align-items: start;
    grid-column-gap: 0;
    grid-row-gap: 0;
    grid-template-columns: 240px repeat(3, auto);
    font-size: clamp(12px, 4vw, 15px);
  }
  .desktop-hide {
    display: grid;
  }
  .price-hd1,
.jb-p1,
.jb-p2 {
    margin-top: 0;
  }
  .gp-hd3,
.gp-from3,
.gp-to3,
.rpb-hd3,
.rpb-from3,
.rpb-to3,
.jb-hd3,
.jb-from3,
.jb-to3 {
    margin-bottom: 0;
  }
  .price-hd2,
.hyb-p1,
.hyb-p2 {
    margin-bottom: 4rem;
  }
  .pic-img {
    grid-column: 1;
    grid-row: 1;
  }
  .jb-img {
    grid-row: 1/span 4;
    padding-top: 0;
  }
  .gp-img, .rpb-img {
    grid-row: 1/span 4;
    padding-top: 0;
  }
  .hyb-img {
    grid-row: 1/span 2;
    padding-top: 0;
  }
  .gb-img {
    grid-row: 1/span 5;
  }
  .product-hd {
    grid-area: 1/2/2/3;
  }
  .from-hd1 {
    grid-area: 1/3/2/4;
  }
  .to-hd1 {
    grid-area: 1/4/2/5;
  }
  .size-1 {
    grid-area: 2/2/3/3;
  }
  .from-p1 {
    display: grid;
    grid-area: 2/3/3/4;
  }
  .to-p1 {
    display: grid;
    grid-area: 2/4/3/5;
  }
  .size-2 {
    grid-area: 3/2/4/3;
  }
  .from-p2 {
    grid-area: 3/3/4/4;
  }
  .to-p2 {
    grid-area: 3/4/4/5;
  }
  .size-3 {
    grid-area: 4/2/5/3;
  }
  .from-p3 {
    grid-area: 4/3/5/4;
  }
  .to-p3 {
    grid-area: 4/4/5/5;
  }
  .size-4 {
    grid-area: 5/2/6/3;
  }
  .from-p4 {
    grid-area: 5/3/6/4;
  }
  .to-p4 {
    grid-area: 5/4/6/5;
  }
  .grid-hf-price > .grid-item {
    padding: 0.9rem 0;
  }
  .header-1,
.q1,
.q2,
.q3,
.q4,
.q5 {
    margin-right: 1px;
  }
  .rbb {
    background-image: unset;
  }
  #info-last {
    margin-bottom: 2rem;
  }
  #heading5:checked ~ #info-last {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  /* Remove Images */
  .desktop,
.jb-img,
.hyb-img,
.gp-img,
.rpb-img,
.gb-img,
.pic-img {
    display: none;
  }
  .price-hd2,
.hyb-p1,
.hyb-p2 {
    margin-bottom: 0;
  }
  .grid-hf-price {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
  }
  .product-hd,
.size-1,
.size-2,
.size-3,
.size-4 {
    grid-column: 1/span 2;
  }
  .from-hd1,
.from-p1,
.from-p2,
.from-p3,
.from-p4 {
    grid-column: 3/span 1;
  }
  .to-hd1,
.to-p1,
.to-p2,
.to-p3,
.to-p4 {
    grid-column: 4/span 1;
  }
  .grid-hf-price:nth-child(n+1) {
    padding-right: 0;
  }
  .grid-padding:last-child {
    padding-bottom: 0;
  }
  .grid-hf-price:first-child {
    padding-top: 0;
  }
}
@media screen and (max-width: 480px) {
  #section-four #h4-cost::after {
    margin-top: 0.25rem;
    float: none;
    display: flex;
    word-break: break-word;
  }
}
/* +++++++++++++++++
3 Turnaround Time
++++++++++++++++++++
*/
@media screen and (max-width: 9999px) {
  #hr-three-c {
    display: block;
  }
  .grid-turn {
    display: grid;
    word-break: break-word;
    grid-template-columns: 0.5fr 0.5fr;
    justify-content: center;
    gap: 2rem;
  }
  .turn-col1 {
    grid-area: 1/1/2/2;
    background-color: var(--bg-color-lightgrey);
    border: var(--border-green);
    padding: 0 2rem 2rem 2rem;
  }
  .turn-col2 {
    grid-area: 1/2/2/3;
  }
  .grid-service {
    display: grid;
    grid-template-columns: repeat(3, minmax(auto, auto));
    border: var(--border-green);
  }
  .grid-service div:nth-child(n+7) {
    background-color: var(--bg-color-lightgrey);
  }
  .grid-service .turn-head {
    background-color: var(--color-green);
    color: white;
    font-weight: bold;
  }
  .grid-service * {
    display: grid;
    align-items: center;
  }
  .turn-col2 div {
    padding: 1.25rem;
  }
  .grid-service .turn-head:nth-child(-n+2) {
    border-right: 0.2rem solid white;
  }
  .turn-rb {
    border-right: var(--border-green);
  }
}
@media screen and (max-width: 1024px) {
  .grid-turn {
    grid-template-columns: auto;
  }
  .turn-col1 {
    grid-area: 1/1/2/3;
  }
  .turn-col2 {
    grid-area: 2/1/3/3;
  }
}
/* ++++++++++++++++++++
  4. Artwork Explained 
  +++++++++++++++++++++
*/
@media screen and (max-width: 9999px) {
  #hrl-hide {
    display: none;
  }
  #h4-vector {
    width: 600px;
    max-width: 84vw;
    border: 2px solid rgb(171, 205, 123);
    padding: 2rem 10rem 1.85rem 0;
  }
  #h4-bitmap {
    width: 600px;
    max-width: 84vw;
    border: 2px solid var(--color-blue);
    padding: 2rem 10rem 1.85rem 0;
  }
  .grid-vector-bitmap {
    display: grid;
    grid-template-columns: minmax(auto, 600px) minmax(250px, auto);
    grid-template-rows: auto;
    gap: 3rem 8rem;
  }
  .row1-head {
    grid-area: 1/1/2/3;
    justify-self: start;
  }
  .row2-img {
    grid-area: 2/1/6/2;
  }
  .row2-correct {
    grid-area: 2/2/4/3;
    align-self: end;
  }
  .grp-appearance {
    grid-area: 4/2/5/3;
  }
  .grp-appearance-non {
    grid-area: 4/2/5/3;
  }
  .grp-advantages {
    grid-area: 5/2/6/3;
  }
  .grp-disadvantages {
    grid-area: 5/2/6/3;
  }
  .grid-vector-bitmap span#row1-i1,
.grid-vector-bitmap span#row1-i1-non {
    position: relative;
    color: white;
    font-weight: bold;
    letter-spacing: 0.1rem;
    padding: 1.5rem 2rem;
    margin-right: 1.75rem;
  }
  .grid-vector-bitmap span#row1-i2 {
    position: absolute;
    justify-self: center;
    align-content: start;
    padding-right: 5rem;
  }
  .grid-vector-bitmap span#row1-i1 {
    background-color: rgb(171, 205, 123);
  }
  .grid-vector-bitmap span#row1-i1-non {
    background-color: var(--color-blue);
  }
  .grid-vector-bitmap span#row1-i3 {
    color: rgb(171, 205, 123);
  }
  .grid-vector-bitmap span#row1-i3-non {
    color: var(--color-blue);
  }
  .row3-title,
.row7-title {
    font-weight: bold;
  }
  .row11-col1,
.row11-col1-non {
    grid-area: 7/1/8/2;
    max-width: 60rem;
    align-self: center;
    padding: 2rem 3rem 2rem 3rem;
  }
  .row11-col1 {
    background-color: rgb(246, 250, 241);
  }
  .row11-col1-non {
    background-color: rgba(92, 160, 215, 0.1);
  }
  .row11-img {
    display: none;
  }
  .grp-appearance,
.grp-advantages,
.grp-appearance-non,
.grp-disadvantages {
    padding: 3rem;
    max-width: 50rem;
  }
  .grp-appearance,
.grp-advantages,
.row11-col1 {
    border: var(--border-green);
  }
  .grp-appearance-non,
.grp-disadvantages,
.row11-col1-non {
    border: 2px solid var(--color-blue);
  }
  .info-left {
    font-weight: bold;
    line-height: 5rem;
  }
  .info-left::before {
    content: "!";
    position: relative;
    left: 0;
    top: -5px;
    font-weight: 500;
    color: white;
    border: 1px solid black;
    padding: 0.1rem 1.15rem;
    background-color: #5ea3d9;
  }
  /* Photo Frame */
  .grid-vector-bitmap figcaption {
    max-width: 100%;
    text-align: center;
  }
  .photo-bg {
    background-color: rgba(218, 223, 225, 0.5);
    box-shadow: 0 0 1rem #101010;
    width: 600px;
    height: 692px;
    position: relative;
    margin-top: 2rem;
  }
  .photo-bg:before, .photo-bg:after {
    width: 80px;
    height: 20px;
    display: block;
    content: "";
    background: rgba(218, 223, 225, 0.75);
    position: absolute;
  }
  .photo-bg:before {
    z-index: 1;
    left: -20px;
    top: 10px;
    transform: rotate(-45deg);
  }
  .photo-bg:after {
    right: -30px;
    bottom: 10px;
    transform: rotate(-45deg);
  }
  .photo-bg picture {
    position: absolute;
    top: 3em;
    left: 1.5em;
    right: 1.5em;
    bottom: 2em;
    overflow: hidden;
    margin: 0 10px 30px 10px;
  }
  #photo1 img,
#photo2 img {
    display: block;
    width: 600px;
    height: auto;
  }
  #photo1 svg {
    transform: scale(5);
  }
  .photo-bg figcaption {
    position: absolute;
    bottom: 1.5em;
    left: 0;
    right: 0;
  }
  .tik::before {
    content: "✔";
    color: rgb(171, 205, 123);
    font-weight: bold;
  }
  .b-tik::before {
    content: "✔";
    color: var(--color-blue);
    font-weight: bold;
  }
  .txt-blu {
    color: var(--color-blue);
    font-weight: bolder;
  }
}
@media screen and (max-width: 1024px) {
  .grid-vector-bitmap {
    display: grid;
    grid-template-columns: 0.5fr 0.5fr;
    grid-template-rows: auto;
    gap: 2rem 4rem;
  }
  .row1-head {
    grid-area: 1/1/2/3;
  }
  .row2-img {
    grid-area: 3/1/4/3;
    justify-self: center;
  }
  .row2-correct {
    grid-area: 4/1/5/3;
    justify-self: center;
  }
  .grp-appearance {
    grid-area: 5/1/9/2;
    width: 100%;
  }
  .grp-appearance-non {
    grid-area: 5/1/9/2;
    width: 100%;
  }
  .grp-advantages {
    grid-area: 5/2/9/3;
    width: 100%;
  }
  .grp-disadvantages {
    grid-area: 5/2/9/3;
    width: 100%;
  }
  .row11-col1,
.row11-col1-non {
    grid-area: 10/1/11/3;
    max-width: 100vw;
  }
  .row11-img {
    grid-area: 10/2/11/3;
    justify-self: center;
    align-self: center;
    padding: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .grid-vector-bitmap {
    display: grid;
    grid-template-columns: 1fr;
  }
  .grid-vector-bitmap div:nth-child(n+2) {
    justify-self: center;
  }
  .row1-head {
    grid-area: 1/1/2/2;
  }
  .row2-img {
    grid-area: 3/1/4/2;
  }
  .row2-correct {
    grid-area: 4/1/5/2;
  }
  .grp-appearance {
    grid-area: 5/1/9/2;
  }
  .grp-appearance-non {
    grid-area: 5/1/9/2;
  }
  .grp-advantages {
    grid-area: 9/1/13/2;
  }
  .grp-disadvantages {
    grid-area: 9/1/13/2;
  }
  .row11-col1, .row11-col1-non {
    grid-area: 13/1/14/2;
    max-width: 50rem;
  }
  #row1-i2 {
    font-size: clamp(16px, 3.5vw, 21px) !important;
    margin-top: -0.75rem;
  }
  /* Photo Frame */
  .photo-bg {
    background-color: rgba(218, 223, 225, 0.5);
    box-shadow: 0 0 1rem #101010;
    max-width: 60vw;
    max-height: 70vw;
    position: relative;
  }
}
@media screen and (max-width: 480px) {
  #h4-vector,
#h4-bitmap {
    width: unset;
    border: unset;
    padding: unset;
  }
  .grid-vector-bitmap span#row1-i1,
.grid-vector-bitmap span#row1-i1-non {
    margin-right: 0;
  }
  .row1-head {
    justify-self: center;
  }
  .row1-head #row1-i2,
.row2-img {
    display: none;
  }
  .row1-head {
    margin-top: 3rem;
  }
  .row2-correct {
    margin-top: -3rem;
  }
  .grid-vector-bitmap .row11-img {
    visibility: hidden;
    max-height: 0;
  }
  .row11-col1 {
    margin-bottom: -6rem;
  }
}
/* For Desktop : Input Mouse */
@media (hover: hover) {
  #photo1 svg {
    transition: all 1.25s ease-in-out;
    transform: scale(1);
  }
  #photo1 svg:hover {
    transform: scale(5);
    cursor: zoom-in;
  }
  figcaption span {
    visibility: hidden;
  }
  figcaption#cap1 span::after {
    visibility: visible;
    display: block;
    content: "Hover over image to zoom in";
  }
}
/* ++++++++++++++++++++++
  5. What Can Be Printed 
  +++++++++++++++++++++++
*/
@media screen and (max-width: 9999px) {
  .logo-container {
    display: grid;
    text-align: center;
    justify-content: space-around;
    align-content: center;
    font-size: 1.25rem;
    grid-template-columns: repeat(auto-fit, minmax(200px, auto));
    gap: 0 3rem;
  }
  .logo-container figure:nth-child(9) {
    position: relative;
  }
  figure #img-hide {
    opacity: 0;
  }
  figure blockquote {
    position: absolute;
    top: 0;
    right: 0;
  }
  #good-dp {
    max-width: 200px;
    margin-top: 2rem;
  }
  #good-dp blockquote {
    font-family: "Times New Roman", serif;
    color: grey;
    font-size: clamp(2.4rem, 0vw, 2.4rem);
    line-height: 1.25;
    height: 100%;
  }
  #good-dp blockquote::before {
    color: rgb(92, 160, 215);
    content: open-quote;
    display: inline;
    font-size: 3em;
    left: -1rem;
    line-height: 0;
    position: relative;
    top: 30px;
  }
  #good-dp blockquote::after {
    color: rgb(92, 160, 215);
    content: close-quote;
    display: inline;
    font-size: 3em;
    right: 0;
    line-height: 0;
    position: relative;
    top: 35px;
  }
  /* Modal Background */
  .modalLogo,
.modalDos {
    display: none;
    position: fixed;
    z-index: 10;
    padding-top: 275px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
  }
  /* Modal Content */
  .modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    width: 85%;
    max-width: 650px;
  }
  .modal-header {
    line-height: 0;
    margin-bottom: -2.5rem;
  }
  /* The Close Button */
  .closeLogo {
    color: white;
    background: rgba(255, 0, 0, 0.5);
    border: 1px solid white;
    position: absolute;
    z-index: 1;
    top: 4px;
    right: 4px;
    font-size: 1.5rem;
    padding: 1.5rem 1rem;
    font-weight: bold;
  }
  .closeLogo:hover,
.closeLogo:focus {
    color: white;
    background: rgba(255, 0, 0, 0.85);
    border-color: white;
    text-decoration: none;
    cursor: pointer;
    transition: 0.5s ease;
  }
  /* Next & previous buttons */
  .prev,
.next {
    background-color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    position: absolute;
    top: 45%;
    width: auto;
    padding: 16px;
    color: black;
    font-weight: bold;
    font-size: 2rem;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    -moz-user-select: none;
     -ms-user-select: none;
         user-select: none;
    -webkit-user-select: none;
  }
  .prev {
    left: 4px;
  }
  .next {
    right: 4px;
  }
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover,
.next:hover {
    color: rgba(255, 255, 255, 0.8);
    background-color: rgba(0, 0, 0, 0.8);
  }
  .logo-container img,
.dos-container img {
    height: 75%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
  }
  /* Caption headers */
  .logocaption,
.doscaption {
    color: #fff;
    font-family: "Trebuchet MS", sans-serif;
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: bold;
    padding: 3px 12px;
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: 0;
  }
  .ahuh .logocaption {
    background: var(--color-green);
  }
  .nah .logocaption {
    background: var(--bg-color-red);
  }
  .ahuh img {
    border: var(--border-green-big);
  }
  .nah img {
    border: var(--border-red-big);
  }
  .mmm {
    padding: 0.5rem 0;
    font-size: 1.5rem;
    color: #fff;
    background: var(--color-green);
  }
  .err {
    padding: 0.5rem 0;
    font-size: 1.5rem;
    color: #fff;
    background-color: var(--bg-color-red);
  }
  .logo-border-g {
    border: var(--border-green);
    margin: 0;
    cursor: zoom-in;
  }
  .logo-border-r {
    border: var(--border-red);
    margin: 0;
    cursor: zoom-in;
  }
  .min-order {
    background: rgba(187, 187, 183, 0.25);
    padding: 2rem 5rem;
  }
  .min-title {
    padding: 2rem 0;
    font-weight: bold;
  }
  .order-grid {
    display: grid;
    grid-template-columns: minmax(250px, 0.25fr) minmax(200px, 0.25fr) auto;
    grid-template-rows: minmax(80px, auto);
    gap: 0;
    margin: 2rem 0;
  }
  .left-grey {
    color: #fff;
    background: rgb(187, 187, 183);
    padding: 2.5rem 2rem;
  }
  .right-green {
    background: rgb(171, 205, 123);
    padding: 4rem 2rem;
    text-align: center;
  }
  .last-right {
    padding: 3rem 2rem;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 1024px) {
  .min-order {
    border: unset;
  }
  .order-grid {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: minmax(80px, auto);
    gap: 0;
    margin-top: 2rem;
  }
  .last-right {
    grid-column: 1/3;
    text-align: center;
  }
  .last-right br {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .modalLogo, .modalDos {
    padding-top: 175px;
  }
  .modal-content {
    top: 100px;
  }
  #good-dp blockquote {
    font-size: clamp(2.5rem, 5vw, 2.5rem);
  }
  .order-grid {
    display: grid;
    grid-template-columns: 0.5fr 0.5fr;
    grid-template-rows: auto;
    gap: 0;
    margin-top: 2rem;
  }
  .left-grey {
    font-size: clamp(12px, 15vw, 16px);
  }
}
@media screen and (max-width: 480px) {
  .modal-content {
    top: 0;
  }
  .closeLogo {
    font-size: 1rem;
    padding: 1.1rem 0.75rem;
  }
  #good-dp blockquote {
    font-size: clamp(2.25rem, 7vw, 2.75rem);
  }
  .min-order {
    padding: 1.5rem 2.5rem;
    font-size: clamp(12px, 5vw, 16px);
  }
  .order-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 0;
  }
  .left-grey {
    grid-row: 1/2;
    text-align: center;
    padding: 2rem 1rem;
  }
  .right-green {
    grid-row: 2/3;
    padding: 2rem 1rem;
  }
  .last-right {
    grid-row: 3/4;
  }
  .mmm, .err {
    font-size: clamp(12px, 3vw, 16px);
  }
}
/* ++++++++++++++++++++++++
  6. What Can't Be Printed
 ++++++++++++++++++++++++++
*/
@media screen and (max-width: 9999px) {
  hr#sec-four {
    display: none;
  }
  hr#hr-sec-six {
    display: none;
  }
  #section-six .grid-gc {
    display: grid;
    word-break: break-word;
    grid-template-columns: 0.5fr 0.5fr;
    justify-content: center;
    gap: 2rem;
  }
  #section-six .gc-col1 {
    grid-area: 1/1/2/2;
  }
  #section-six .gc-col1-col1:nth-child(1) {
    grid-column: 1/3;
  }
  #section-six .gc-col2 {
    grid-area: 1/2/2/3;
    background-color: var(--bg-color-lightgrey);
    border: 2px solid rgb(171, 205, 123);
    padding: 0 2rem 2rem 2rem;
  }
  .grid-products {
    display: grid;
    grid-template-columns: repeat(2, minmax(auto, auto));
    Padding: 0;
    border: 0.2rem solid rgb(171, 205, 123);
  }
  .grid-products div {
    Padding: 0 2rem;
  }
  .grid-products .gc-col1-col1:nth-child(5),
.grid-products .gc-col1-col1:nth-child(9),
.grid-products .gc-col1-col2:nth-child(6),
.grid-products .gc-col1-col2:nth-child(10) {
    background-color: var(--bg-color-lightgrey);
  }
  .grid-products .gc-col1-col1:nth-child(1),
.grid-products .gc-col1-col2:nth-child(2) {
    background-color: rgb(171, 205, 123);
    color: white;
    font-weight: bold;
  }
  .grid-products * {
    display: grid;
    align-items: center;
  }
  .gc-rb {
    border-right: 0.2rem solid rgb(171, 205, 123);
  }
  .txt-min {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-weight: bold;
    text-align: center;
  }
  .txt-fees {
    text-align: center;
    font-weight: bold;
  }
  .txt-min span {
    padding: 1.5rem 0 0 1rem;
  }
  .floatz {
    width: 50px;
  }
}
@media screen and (max-width: 768px) {
  #section-six .grid-gc {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    justify-content: center;
    gap: 2rem 0;
  }
  #section-six .gc-col1 {
    grid-area: 1/1/2/3;
  }
  #section-six .gc-col1:nth-child(n+1) {
    grid-column: 1/3;
  }
  #section-six .gc-col2 {
    grid-area: 2/1/3/3;
    padding: 0 2rem 2rem 2rem;
  }
  .grid-products {
    display: grid;
    grid-template-columns: 0.5fr 0.5fr;
    text-align: center;
    Padding: 0;
  }
  .grid-products div {
    padding: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .html-digital h4 {
    font-size: 1.75rem !important;
  }
  .grid-products {
    display: grid;
    grid-template-rows: auto;
    text-align: center;
  }
  .gc-col1-col1:nth-child(1) {
    grid-column: 1/2;
  }
  .gc-col1-col1:nth-child(2) {
    grid-area: 1/1/2/2;
  }
  .gc-col1-col2:nth-child(2) {
    grid-area: 2/1/3/2;
  }
}
blockquote {
  font-style: normal;
}

body blockquote {
  margin: 1.5rem 0 !important;
}

.hr-line {
  border-top: var(--border-grey);
  max-width: unset;
  margin: 0;
  width: 100%;
}

.hr-line-odd {
  border-top: var(--border-grey);
  max-width: unset;
  margin: 0;
  width: 100%;
}