/* FONTS */

@font-face {
  font-family: "Lato-light";
  src: url("/Fonts/Lato/Lato-Light.ttf");
}

@font-face {
  font-family: "Lato-regular";
  src: url("/Fonts/Lato/Lato-Regular.ttf");
}

@font-face {
  font-family: "Libre";
  src: url("/Fonts/Libre-caslon/libre-italic.otf");
}

/* COLOURS */

.mobile-nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
}

:root {
  --pink: #e3dede;
  --text: #242020;
  --beige-light: #eeeeee;
  --beige-dark: #f0eded;
  --btn: #eeeeee;
}

.mobile-nav-toggle {
  border: transparent;
  position: absolute;
  right: 1em;
  top: 3em;
  z-index: 1000000;
  border: none;
  cursor: pointer;
}

.mobile-nav-toggle:hover {
  background-color: transparent;
}
/* RESET DEFAULT SITE STYLES */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: var(--text);
  font-family: Lato-light, Arial, Helvetica, sans-serif;
}

body {
  font-size: 1.5rem;
  text-align: center;
  overflow-x: hidden;
  letter-spacing: 0.1rem;
}

/* DOCUMENT FONT SIZE */

html {
  font-size: 10px;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  color: var(--text);
}

a:hover {
  text-decoration: none;
  color: var(--text);
}

/* TOP BANNER */

.copyright {
  padding: 1em 0;
  font-family: "Lato-light", Calibri, Helvetica, Arial, sans-serif;
}

#top-banner {
  width: 100%;
  height: 30px !important;
  background-color: var(--pink);
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 3em;
}

#top-banner-icons ul {
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
  margin: 30px 0;
}

.icons {
  width: 25px;
  transition: transform 250ms ease-out;

  -webkit-transition: transform 250ms ease-in-out;
  -moz-transition: transform 250ms ease-in-out;
  -o-transition: transform 250ms ease-in-out;
  display: none;
}

.email-icon {
  width: 30px;
}

.flex-about {
  display: flex;
  flex-direction: column-reverse;
}

.about-heading {
  margin-top: 30px;
}
#email {
  width: 16rem;
}

#top-banner-icons li {
  list-style: none;
  display: flex;
  margin-right: 1em;
}

.icons:hover,
.mobile-icon:hover {
  transform: translateY(-2px);
}

.banner-img-container {
  max-width: 1920px;
  margin: 0 auto;
}

#website-logo {
  width: 30rem;
  margin-top: -1.5rem !important;
  margin-bottom: 2rem !important;
}

#main-banner-img {
  padding: 0 3em;
}

.container-small {
  width: 80%;
  max-width: 1700px;
  margin: 3em auto;
  font-size: 1.5rem;
}

.heading {
  line-height: 3em;
  margin-bottom: 2em;
}

.heading-sub {
  margin-top: 4em;
}

.tagline {
  font-family: "Libre", Calibri, Helvetica, Arial, sans-serif;
}

.subheading {
  font-size: 3rem;
  font-family: "Lato-light", Calibri, Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  margin-top: -15px;
}

.information {
  font-size: 1.5rem;
  width: 90%;
  margin: 0 auto;
  margin-bottom: 2em;
}

.instagram-subheading {
  margin-top: -1em;
}

.insta-heading {
  font-size: 3rem !important;
  margin-bottom: 0em !important;
}

button {
  border: none;
  background-color: white;
  padding: 1em 4em;
  border: 4px solid #f0eded;
  text-transform: uppercase;

  -webkit-transition: transform 250ms ease-in-out;
  -moz-transition: transform 250ms ease-in-out;
  -o-transition: transform 250ms ease-in-out;
  transition: all 0.5s ease-in-out;

  letter-spacing: 0.1rem;
}

button:hover {
  background-color: #f0eded;
  cursor: pointer;
}

#contact-btn-new {
  font-size: inherit;
}

.images {
  margin: 2em 0;
}

.container-large {
  width: 100%;
  background-color: var(--btn);
  margin: 0 auto;
}

.testimonials {
  padding: 4em 0;

  font-family: "Libre", Calibri, Helvetica, Arial, sans-serif;
  background-color: #f0eded;
}

.narrow-testimonial {
  width: 50%;
  text-align: center;
  position: relative;
  left: 50% !important;
  transform: translate(-50%);
  font-family: "Libre", Calibri, Helvetica, Arial, sans-serif;
  background-color: #f0eded;
}

.testimonials p {
  width: 80%;

  margin: 0 auto;
  font-family: "Libre", Calibri, Helvetica, Arial, sans-serif;
}
.testimonials-pink {
  background: #f0eded;
  font-family: Libre, Calibri, Helvetica, Arial, sans-serif;
  width: 100%;
  margin: 0 auto;
}

.last-testimonial {
  margin-bottom: 3em;
}

.sr-only {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* MOBILE NAVIGATION START */

nav {
  background-color: var(--text);
  position: fixed;
  width: 90%;
  height: 100%;
  right: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: translateX(100%);
  opacity: 0.9;
  z-index: 100000;
}

nav ul {
  margin: 0 auto;
  padding-left: 0;
}

nav li {
  list-style-type: none;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
}

nav a {
  color: var(--beige-light);
  font-family: "Lato-light", Calibri, Helvetica, Arial, sans-serif;
}

nav a:hover {
  font-family: "Lato-regular", Calibri, Helvetica, Arial, sans-serif;
}

.nav-link {
  color: var(--beige-light);
}

.nav-link:hover {
  font-family: "Lato-regular", Calibri, Helvetica, Arial, sans-serif;
  color: var(--beige-light);
}

.lines {
  width: 80px;
  height: 0.1px;
  background-color: var(--text);
  margin-top: 10px;
}

.mobile-nav[data-visible="true"] {
  transform: translate(0%);
}

.mobile-nav {
  transition: transform 550ms ease-in-out;
}

.mobile-nav-toggle[aria-expanded="true"] {
  background: url("/Icons/cross.png") no-repeat;
}

.mobile-logo {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  top: 1em;
}

.mobile-nav a:hover {
  color: var(--beige-light);
}

.mobile-icons {
  display: flex;
  margin: 0 auto;
  justify-content: space-between;
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translate(-50%);
}

.mobile-icon {
  width: 30px;
  transition: all 0.5s ease-in-out;

  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  margin-right: 1rem;
  opacity: 0.8;
}

.mobile-icon:last-child {
  margin-right: 0;
}

.links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: none;
}

.links {
  display: flex;
  display: none;
}

#carouselExampleControls {
  margin-bottom: 5em;
}

/* MOBILE NAVIGATION END */

/* CAROUSEL START */
.carousel-desktop {
  display: none;
}
.carousel {
  width: 35rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin: 0 auto;
}

.carousel button {
  padding: 0;
  margin: 0;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;

  cursor: pointer;
  position: absolute;
  color: #f0eded;
  font-size: 2rem;
  transform: translateY(-50%);
  top: 50%;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  background-color: var(--pink);
  padding: 1em;
  position: absolute;
  right: -3em;
}

.carousel-control-prev-icon {
  left: -3em;
}

.carousel ul,
.carousel li {
  list-style: none;
  text-decoration: none;
  margin: 0;
  padding: 0;
}
.carousel_slider {
  width: 40rem;
  overflow: hidden;
  position: relative;
}

.content_inner_slider {
  width: 100%;
  height: 100%;
  display: flex;
}

.img {
  width: 40rem;
  object-fit: cover;
}

.prev_button {
  left: -5px;
}

.next_button {
  right: -5px;
}

.dots {
  display: flex;
  margin: 1rem 0;

  width: 5rem;
  justify-content: space-between;
}

.dot {
  width: 1rem;
  height: 1rem;
  border: 0.1px solid #242020;
  border-radius: 50%;
  margin: 10px 15px;
  cursor: pointer;
}

/* CAROUSEL END */
.contact-banner {
  display: flex;
  flex-direction: column;
  padding: 2em;
  background-color: #f0eded;
}

.contact-btn {
  width: 19rem;

  margin: 0 auto;
  margin-top: 2rem;
  border: none;
  background-color: white;
  padding: 1.4em 2em;
}

.contact-btn:hover {
  background-color: #f0eded !important;
}

.reviews-artwork-contact {
  width: 35rem;
  margin: 0 auto;
  margin-top: 7rem;
}

.review-images {
  margin-top: 8rem;
  position: relative;
}

.rewiew-btns {
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #f0eded;
  transition: all 0.5s ease-in-out;

  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}

.rewiew-btns:hover {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.services {
  margin: 8rem 0;
  font-family: Lato-light, Calibri, Helvetica, Arial, sans-serif;
}

#getintouch,
#instagram-link {
  font-family: "Libre", Calibri, Helvetica, Arial, sans-serif;
  transition: all 0.5s ease-in-out;

  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}

#instagram-link {
  margin-top: -1em;
}

#getintouch:hover,
#instagram-link:hover {
  color: var(--pink);
}

.instagram-grid {
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 0.7rem;
  column-gap: 1rem;
  margin-top: -2em;
  margin-bottom: 6em;
  position: relative;
}

.instagram-grid img {
  transition: all 1s ease-in-out;

  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}

.IG-images {
  position: relative;
  cursor: pointer;
}

.IG-images::before {
  content: "";
  transition: all 0.5s ease-in-out;

  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  height: 100%;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.IG-images:hover::before {
  content: "";
  background-color: var(--pink);
  position: absolute;
  height: 100%;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.8;
  transition: all 1s ease-in-out;

  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
}

.IG-images:hover::after {
  content: "";
  background: url("Icons/w-instagram.png") no-repeat;
  background-size: contain;
  height: 10px;
  width: 10px;
  font-family: "Libre", Calibri, Helvetica, Arial, sans-serif;
  padding: 1em;
  position: absolute;

  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
}

/* ARTWORK PAGE START */

.materials {
  padding: 3em 0;
  margin-top: 3em;
  margin-bottom: 5em;
  padding-bottom: 7em;
  background-color: var(--beige-dark);
}

.artwork-slider {
  margin-bottom: 1em;
}
#materials-img {
  width: 30rem;
}

.materials-right {
  background-color: var(--beige-dark);

  width: 100%;
  margin-bottom: 2em;
  padding: 3em 0;
  display: flex;
  flex-direction: column;
  justify-content: center;

  align-items: center;
}

.accordion {
  width: 30rem;
  justify-content: center;
  border-top: 1px solid #242020;
  border-bottom: 1px solid #242020;
}

.accordion-button {
  background-color: var(--beige-dark);
}

.accordion button {
  color: var(--text) !important;
  font-size: 1.5rem;
  background-color: var(--beige-dark);
  border: 1px solid transparent;
}

.accordion-button::after {
  color: var(--text);
  outline: none !important;
}

.accordion-button:not(.collapsed) {
  background-color: var(--beige-dark);
  outline: none !important;
  border: 1px solid transparent;
}

.accordion-body {
  background-color: var(--beige-dark);
  text-align: left;
  padding-bottom: 2em;
}

.materials-right ul {
  list-style: none;
  width: 30rem;
  margin: 0 auto;
}
.accordion {
  --bs-accordion-color: #212529;

  --bs-accordion-border-color: var(--text);
  --bs-accordion-border-width: 1px;
  --bs-accordion-border-radius: 0.375rem;
  --bs-accordion-inner-border-radius: calc(0.375rem - 1px);
  --bs-accordion-btn-padding-x: 1.25rem;
  --bs-accordion-btn-padding-y: 1rem;
  --bs-accordion-btn-color: #212529;
  --bs-accordion-btn-bg: var(--text);
  --bs-accordion-btn-icon: url(
    data:image/svg + xml,
    %3csvgxmlns="http://www.w3.org/2000/svg"viewBox="0 0 16 16"fill="%23212529"%3e%3cpathfill-rule="evenodd"d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/%3e%3c/svg%3e
  );

  --bs-accordion-btn-focus-border-color: var(--text);

  --bs-accordion-active-color: var(--text);
  --bs-accordion-active-bg: var(--text);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
  border: 1px solid transparent;
}

.accordion-button:after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !important;
}
.email-style {
  font-family: "Libre", Calibri, Helvetica, Arial, sans-serif;
  transition: all 0.5s ease-in-out;

  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}

.email-style:hover {
  color: var(--pink);
}

.materials-right .heading {
  margin-top: 0;
}

.materials-right li {
  display: flex;
  justify-content: space-between;
  text-transform: uppercase;
  border-top: 1px solid #242020;
  padding: 0.5em 0;
}

.materials-right li:last-child {
  border-bottom: 1px solid #242020;
}

.view-testimonials {
  margin-top: 3em;
  padding: 3em 0;
  background-color: #f0eded;
}

.artwork-heading {
  margin-top: 5em;
}

.smaller-testimonial {
  width: 70%;
}

/* ARTWORK PAGE END */

.contact-accordion {
  width: 50%;
  background-color: transparent !important;
  position: relative;
  left: 50%;
  transform: translate(-50%);
  border: none !important;
  border-radius: 0 !important;
}

.accordion-body,
.accordion-button {
  background-color: transparent !important;
  border: 1px solid transparent;
  border: none !important;
}

.accordion-button {
  border-radius: 0 !important;
  box-shadow: 0 !important;
}

.accordion-item,
.accordion-collapse {
  padding: 0.5em 0;
  border: none !important;
}

.accordion-item {
  border-bottom: 1px solid black !important;
}

.accordion-button::after {
  color: var(--text);
  outline: none !important;
}

.accordion-item:nth-child(5) {
  border-bottom: none !important;
}

/* CONTACT PAGE END */

form {
  display: flex;
  flex-direction: column;
  width: 30rem;
  margin: 0 auto;
  margin-bottom: 15em;
}

.email-contact {
  padding: 1em 0;
  font-size: 2rem;
  text-transform: uppercase;
  transition: all 0.5s ease-in-out;

  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  cursor: pointer;
}

.email-contact:hover {
  color: var(--pink);
}

input {
  padding: 1em 0;
}
input,
textarea {
  margin-bottom: 2em;
}

input::placeholder,
textarea::placeholder {
  text-transform: uppercase;
  font-size: 1rem;
  padding-left: 1rem;
}

textarea::placeholder {
  padding-top: 1em;
}

button[type="submit"] {
  width: 15em;
  margin: 0 auto;
  background-color: var(--pink);
  border: 1px solid transparent;
}

button[type="submit"]:hover {
  background-color: transparent;
}

input:focus,
textarea:focus {
  outline: none;
}

/* CONTACTPAGE END */

/* THANKYOUPAGE START */

.thankyou-container {
  background-color: var(--pink);
  padding: 5em 0;
  max-width: 1300px;
  margin: 0 auto;
}
.thankyou-heading {
  font-size: 1.5rem;
  font-family: "Libre", Calibri, Helvetica, Arial, sans-serif;
  margin-bottom: 2em;
}

.thankyou-message {
  width: 18em;
  margin: 0 auto;
  margin-bottom: 2em;
}

.thankyou-container button {
  background-color: var(--pink);
}

.thankyou-container button:hover {
  background-color: #eeeeee;
}

/* THANKYOUPAGE END */

/* HOW IT WORKS START */

.how-container {
  padding-top: 10em;
  padding-bottom: 6em;
  margin-bottom: 4em;
}

.how-inner-container {
  display: flex;
  gap: 2em;
  text-align: left;
}

.how-card-content {
  margin-top: 2em;
}

.how-card img {
  max-width: 100%;
  height: 75%;
  object-fit: cover;
  background-size: cover;
}

/* HOW IT WORKS ENDS */

/* COMMISSIONS PAGE START */

#green-bg {
  background-color: #d3d6cf;
}

.commissions-images {
  padding: 6em 0;
}

.tab {
  margin-bottom: 1em;
}

.tabbed-content {
  display: flex;

  gap: 0.5em;
}

.rows-commissions {
  display: flex;
  height: auto;

  width: 100%;
}

.rows-commissions img {
  width: 25%;
  padding: 0.5em;
  border-radius: 2em;
}

.price-list,
.price-list-bg {
  background-color: transparent !important;
}

.pricing-heading {
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  width: 30em;
  padding: 1em 0;
}

.instagram-feed {
  margin-top: 2em !important;
}

.tips-points {
  text-align: left;
}

.price-listing {
  display: flex;
  justify-content: space-between;
}

.image-pricing {
  font-family: "Lato-regular";
}

/* Style the tab */

/* Style the buttons that are used to open the tab content */
.tab button {
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  background-color: transparent;
}

/* Create an active/current tablink class */

/* Style the tab content */
.tabcontent {
  display: block;
  padding: 6px 12px;

  border-top: none;
}

#Graphite {
  display: none;
}
.active {
  border-bottom: 1px solid black !important;
  background-color: transparent !important;
}

.three-images {
  padding: 5em 0;
}

.three-images img {
  width: 33%;
  height: auto;
}

/* COMMISSIONS PAGE END */

/* FAQS PAGE START */

.questions {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 4em;
  text-align: left;
}

.question {
  margin-bottom: 3em;
}

.q {
  font-family: "Libre", Calibri, Helvetica, Arial, sans-serif;
  margin-bottom: 1em;
}

.answer {
  margin-bottom: 1em;
}

#submittions {
  margin-top: 4em;
  margin-bottom: 2em;
}
#faq-button {
  margin-bottom: 10em;
}

/* FAQS PAGE END */

/* CONDITIONS PAGE START */
.conditions {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  margin-top: 3em;
}

.condition {
  margin-bottom: 2em;
  text-align: left;
}

.conditions-header {
  font-family: "Libre", Calibri, Helvetica, Arial, sans-serif;
  margin-bottom: 1em;
}

.condition-p {
  margin-left: 1.5em;
  margin-top: 0.5em;
}

.terms-letter {
  font-family: "Libre", Calibri, Helvetica, Arial, sans-serif;
}

.further-enquiries {
  margin-bottom: 14em;
}

.thankyou-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--pink);
  padding: 2em 0;
  padding-bottom: 4em;
}

.footer-logo {
  width: 15em;
}

.footer-icons-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 12rem;
  margin: 0 auto;
}

.footer-icons-section a {
  transition: all 0.5s ease-in-out;
}

.footer-icons-section a:hover {
  transform: translateY(-2px);
}

.footer-icons {
  width: 2.5rem;
}

.mobile-links {
  position: relative;
  margin-left: 0em;
}
.mobile-links a {
  font-family: "Libre" !important;
  transition: all 0.5s ease-in-out;

  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  line-height: 1.3em;
}

.mobile-links a:hover {
  color: var(--beige-light);
}

.nav-line {
  height: 4em;
  width: 0.5px;
  background: var(--text);
}

.mobile-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2em;
}

.mobile-links-left,
.mobile-links-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  width: 10em;
}

.carousel-item {
  border-bottom: none !important;
}
/* CONDITIONS PAGE END */
/* MEDIA QUERIES START */

/* DESKTOP SCREEN QUERY START */

@media screen and (min-width: 1300px) {
  html {
    font-size: 12px;
  }
  .icons {
    display: block;
  }
  #top-banner {
    height: 50px;
  }
  #website-logo {
    width: 40rem;
    margin: 2em 0;
    margin-bottom: 0;
  }
  #main-banner-img {
    margin-top: 0em;
    padding: 0 3em;
  }
  .flex {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    margin-bottom: 3em;
  }
  .information {
    width: 80%;
  }

  .flex-left {
    width: 1500px;
    margin-left: 0;
    width: 50%;
  }
  .flex-right {
    width: 800px;
    width: 50%;
  }

  nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0.5em 0;
    width: 90%;
    margin: 0 auto;
    margin-bottom: 4em;
    max-width: 1720px;
    border-top: 1px solid #242020;
    border-bottom: 1px solid #242020;
    background-color: transparent;
    position: relative;
    transform: translate(0%);
  }

  .mobile-nav {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  nav ul li a {
    font-family: "Libre", Calibri, Helvetica, Arial, sans-serif;
    color: var(--text);
  }

  nav ul li {
    margin-bottom: 0em;
    text-transform: lowercase;
  }

  .mobile-nav-toggle {
    display: none;
  }
  .mobile-nav {
    transform: translate(0);
    transition: transform 0ms ease-in-out;

    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
  }
  .mobile-logo {
    display: none;
  }

  .mobile-nav ul {
    margin-bottom: 0;
  }

  nav a {
    transition: all 0.5s ease-in-out;
    padding: 0px;

    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
  }
  nav a:hover {
    font-family: "Libre", Calibri, Helvetica, Arial, sans-serif;
    color: var(--pink);
  }
  .subheading {
    font-size: 5rem;
  }
  .reviews-artwork-contact {
    display: flex;
    width: 105rem;
    gap: 3rem;
    margin-top: 1rem;
  }

  .instagram-grid {
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    row-gap: 0px;
    column-gap: 10px;
  }
  .instagram-grid img {
    width: 50rem;
  }

  .carousel {
    display: none;
  }
  .carousel-desktop {
    display: block;
    width: 90%;
    max-width: 1920px;
    margin: 0 auto;
    margin-bottom: 5em;
  }
  .carousel-desktop img {
    width: 32rem;
  }
  .materials-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    max-width: 1700px;
    margin: 0 auto;
    background-color: #f0eded;
  }
  .materials {
    padding: 3em 0;
    margin-top: 3em;
  }
  .materials-right {
    width: 45%;
  }
  .reviews-container {
    margin-bottom: 5em;
  }
  .instagram-grid {
    margin-bottom: 5em;
  }
  .email-contact {
    padding: 1em 0;
    font-size: 4rem;
    text-transform: uppercase;
    transition: all 0.5s ease-in-out;

    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    cursor: pointer;
  }
  .thankyou-container {
    padding: 7em 0;
  }
  .thankyou-heading {
    font-size: 3rem;
    margin-bottom: 1em;
  }

  .thankyou-message {
    width: 30em;
  }
  .subheading,
  .instagram-subheading {
    margin-top: 0px;
  }
  .questions {
    text-align: center;
  }
  .mobile-icons {
    display: none;
  }
  #instagram-link {
    margin-top: 0em;
  }
  #top-banner {
    height: 45px !important;
  }
  .footer {
    width: 80%;
    max-width: 1920px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .mobile-links {
    width: 16em;
  }
  .mobile-links a {
    font-size: 1.3rem;
    line-height: 1.4em;
  }
  #materials-img {
    width: 50rem;
  }
}

/* DESKTOP SCREEN QUERY END */

@media only screen and (max-width: 600px) {
  .carousel {
    width: 25rem;
  }
  .carousel button {
    font-size: 1rem;
  }
}

@media only screen and (max-width: 1400px) {
  .narrow-testimonial {
    width: 100%;
  }
  .how-inner-container {
    flex-direction: column;
    gap: 2em;
    text-align: left;
  }
  .rows-commissions {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
  }
  .rows-commissions img {
    width: 50%;
  }
  .pricing-heading {
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    width: auto;
    padding: 1em 0;
    margin-bottom: 2em;
  }
  .prices-left {
    margin-bottom: 4em;
  }
  .three-images img {
    width: 100%;
    height: auto;
    flex-direction: column !important;
  }
  .price-list {
    margin: -2em 0 !important;
  }

  .how-container {
    padding-top: 6em;
    padding-bottom: 3em;
  }
  #website-logo {
    margin-top: 2em !important;
  }
  .contact-accordion {
    width: 80% !important;
  }
}

/* MEDIA QUERIES END */
