@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&family=Ubuntu:wght@400;700&display=swap");
:root {
  /* color varables */
  --primary: #e34245;
  --secondary: #7fafe1;
  --secondary-lt: #7fafe1ee;
  --accent: #5d7a98;
  --light-section-bg-color: #e4e4e4;
  --mobile-bg-color: #d6f4fff1;
  --block-color: rgba(243, 236, 236, 0.829);
  /* font colors */
  --title-color: #111;
  --text-color: #111;
  --light-text-color: #d6f4ff;

  /* fonts */
  --title-font: "Oswald", sans-serif;
  --text-font: "Ubuntu", sans-serif;
  /* font sizes */
  /* --hero-title: clamp(2.8rem, 4cqw, 3rem); */
  --hero-title: clamp(2.4rem, 5vw, 4rem);
  --title-size: clamp(2.6rem, 4vw, 2.8em);
  --text-size: 1.5rem;
  --nav-menu: 1.2rem;
  /* for other styles */
  --radius: 8px;
  --shadow: 0 0 15px 5px rgba(0, 0, 0, 0.6);
  --block-padding: 5px 15px;
  --section-padding: 3em 20px;
}

p,
li {
  font-family: var(--text-font);
  font-weight: 400;
  font-size: var(--text-size);
}
a {
  text-decoration: none;
  font-family: var(--text-font);
}

details summary {
  cursor: pointer;
}

details summary > * {
  display: inline;
}
/* For edge and other browsers that do not support summary and details tags */
@supports not (-ms-ime-align: auto) {
  details summary {
    cursor: pointer;
  }

  details summary > * {
    display: inline;
  }

  /* Plus any other <details>/<summary> styles you want IE to ignore. */
}
h1 {
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  font-size: var(--hero-title);
  font-family: var(--title-font);
}
h2,
h3,
h4 {
  font-family: var(--title-font);
  text-align: center;
  text-transform: capitalize;
}
h2 {
  font-style: italic;
  font-size: var(--title-size);
  padding: var(--block-padding);
}

section {
  padding: var(--block-padding);
}
@media (min-width: 30em) {
  section {
    padding: var(--section-padding);
  }
  hr {
    max-width: 300px;
    margin: 1.5rem auto;
    border-bottom: 2px dotted var(--secondary);
  }
}
/* */
/* =========== Updated 11/1/22 ======================== 
| Classes used through out the site - which will be part of the main css file (styles.css) |
==================================== */
/* this is a bootstrap class, just needed some extra styling
At the moment used on recent posts and the contact page */
.list-group-item a {
  text-align: center;
  color: var(--accent);
}

.bg {
  /* puts the light gray background to that section */
  background-color: var(--light-section-bg-color);
  background-image: url("/assets/imgs/image001.jpg");
  background-size: cover;
  background-color: #ffffffaa;
  background-blend-mode: overlay;
}
.custom-section {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 1300px;
  margin: 0 auto;
  padding: var(--block-padding);
}

/* for some titles to be the primary color */
.primary {
  color: var(--primary);
}
.custom-section > * {
  flex: auto;
}
.custom-basis {
  flex-basis: 100%;
}

.custom-section-item {
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: var(--block-padding);
  display: flex;
  flex-direction: column;
  transition: 300ms ease-in-out;
  background-color: var(--block-color);
  flex-basis: auto;
  box-shadow: 0 0 20px #444;
}
.custom-section img,
.custom-section-item img {
  max-width: 400px;
  height: auto;
  margin: 10px auto;
}
.custom-section-item:hover {
  box-shadow: none;
  background-blend-mode: difference;
}

.custom-section-item h3 {
  color: var(--primary);
  margin-bottom: 0.8rem;
  font-size: 2rem;
}

.custom-section > article {
  flex-grow: 1;
}
.narrow-section {
  padding: var(--block-padding);
}
embed {
  width: 90%;
  height: 600px;
}
@media (min-width: 50em) {
  embed {
    width: 900px;
    height: 700px;
  }
  .custom-section {
    max-width: 90em;
    margin: 5rem auto;
  }

  .custom-section > article {
    flex-basis: 280px;
    flex-grow: 1;
    max-width: 50%;
  }
  .custom-section > h3 {
    padding: 2em 0;
    color: var(--primary);
  }
  .custom-section-item {
    flex-basis: 30%;
    text-align: center;
  }
  /* = Updated 11/1/22 = used in sections that have wider text with an image, on line 111 this turns to 100% for smaller screens */
  .custom-basis {
    flex-basis: 70%;
    align-self: center;
  }
  .narrow-section {
    max-width: 1000px;
    margin: auto;
  }
  .narrow-section ul {
    margin-left: 20px;
  }
}

/* = Updated 11/1/22 = This is for the summary and details tag used in the what to expect and team description */
details[open] summary ~ * {
  animation: details-ele 0.5s ease-in-out;
}

@keyframes details-ele {
  0% {
    opacity: 0;
    transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/* learn more buttons */

.custom-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 400px;
  margin: 10px auto;
}

.custom-btn a {
  text-transform: uppercase;
  background-color: var(--accent);
  padding: var(--block-padding);
  font-size: 16px;
  border-radius: var(--radius);
  border: 3px inset var(--primary);
  color: var(--light-text-color);
  transition: 300ms ease-in-out;
}

.custom-btn a:hover {
  background-color: var(--secondary);
  border-color: var(--primary);
}

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

.gradient {
  background-image: linear-gradient(
    to bottom,
    #5d7a98,
    #8392ab,
    #a6acbd,
    #c7c7d0,
    #e4e4e4,
    #fff
  );
}
.gradient-reverse {
  background-image: linear-gradient(
    to top,
    #5d7a98,
    #8392ab,
    #a6acbd,
    #c7c7d0,
    #e4e4e4,
    #fff
  );
}
/* Brand slide show only on home page  */
.brands-slide .single-item {
  margin: 0;
  display: flex;
  justify-content: space-evenly;
}
.brands-slide {
  max-width: 90dvw;
  margin: 0 auto;
  overflow-x: hidden;
}
/*======================== 
  | section with video bg|
/*==================================== */
.video-background-wrapper {
  position: relative;
  overflow: hidden;
  /* width: 100%; */
  height: 600px; 
  background-color: #ffffff5b;
  background-blend-mode: difference;
  border-top: 3px solid var(--primary);
}
video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1000;
  transform: translateX(-50%) translateY(-50%);
  background-size: cover;
  transition: 1s opacity;
}
.video-content {
  position: relative;
  z-index: 1;
}
.bolder-text p,
.bolder-text li,
.boder-text summary {
  font-weight: 700;
}

.header-bg {
  background-color: #0000003b;
  z-index: -1;
  height: 80vh;
  background-image: url("/assets/imgs/warehouse-inventory-1135x675.jpg");
  background-size: cover;
  background-position: left;
  background-blend-mode: overlay;
}
/* Logo and Navbar styles */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  position: relative;
  background-color: #00000080;
  box-shadow: 0 0 15px #fff;
  border-radius: 0 0 18px  18px;
  margin-bottom: 2%;
}
/* Style the title and sub title with cta button */
.hero-content {
  text-align: center;
  margin: 6vw 0;
  font-size: 0;
  opacity: 0;
  animation: fadeIn 0.7s ease-in-out forwards;
  animation-delay: 0.3s;
}
@keyframes fadeIn {
  0% {
    opacity: 0; /* Start with 0 opacity */
    transform: translateX(-100%);
  }
  100% {
    opacity: 1; /* End with 100% opacity */
    transform: translateX(0);
  }
}
.page-bg {
  background-image: url("/assets/imgs/image006.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  background-color: #25232348;
  background-blend-mode: overlay;
}
.page-bg .hero-content {
  margin: 80px 0;
}
.hero-content h1 {
  font-size: var(--hero-title);
}

.hero-content h1,
.hero-content h2 {
  font-family: var(--title-font);
  -webkit-text-stroke: 2px var(--text-color);
    color: var(--light-text-color);
    text-shadow: 
    -2px -2px 0 #000,  
     2px -2px 0 #000,
    -2px  2px 0 #000,
     2px  2px 0 #000,
     2px 2px 60px var(--light-text-color);
     letter-spacing: 5px;
}

.hero-content h2 {
  font-size: var(--title-size);
  margin-bottom: 30px;
  font-weight: bold;
  letter-spacing: 8px;
}
@media (min-width: 700px) {
  .page-bg {
    background-size: cover;
    background-position: center;
    height: 430px !important;
  }
 

  .page-bg .hero-content {
    margin: 10px 0;
    
  }
}

.cta-button {
  text-decoration: none;
  display: inline-block;
  color: var(--text-color);
  font-size: 24px;
  border: 2px solid var(--text-color);
  padding: 14px 70px;
  border-radius: 50px;
  margin: 20px auto;
  text-align: center;
  transition: 0.3s ease-in;
  background-color: var(--accent);
  box-shadow: inset 0 0 15px #000;
}


.cta-button:hover {
  background-color: var(--mobile-bg-color);
}

/* logo and menu items */
.logo-container img {
  width: 200px;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

.nav-menu li {
  margin: 0 20px;
}

.nav-menu a {
  color: var(--light-text-color);
  text-decoration: none;
  font-size: var(--nav-menu);
  font-weight: bold;
  transition: 0.3s ease-in-out;
  text-transform: capitalize;
}

.nav-menu a:hover {
  color: var(--primary);
}
.nav-menu .active-nav {
  color: var(--primary);
  text-shadow: 5px 5px 30px #ffffff98;
}
/* Style the dropdown menu */
.dropdown > .dropdown-menu {
  display: none;
  position: absolute;
  z-index: 1;
  width: 250px;
  transition: 200ms ease-in-out;
  background-color: #2f2f30dd;
  border: 0 3px 3px 3px;
  border-style: outset;
  border-color: var(--secondary);
  border-radius: 0 0 8px 8px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.8);
  padding: var(--block-padding);
  animation: about-dropdown 600ms ease-out;
}

.dropdown-menu li {
  padding: 5px 10px;
}

/* Background color for the dropdown menu on hover */
.nav-menu li:hover .dropdown-menu {
  display: block;
  /* background-color: #fff;  */
}

.dropdown-menu a {
  color: #fff;
  text-decoration: none;
  display: block;
}

.dropdown-menu a:hover {
  color: var(--primary);
}
@keyframes about-dropdown {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile menu button */
.mobile-menu-button {
  display: none;
  background-color: var(--primary);
  color: var(--light-text-color);
  border: none;
  padding: 10px 20px;
  font-size: 1.25rem;
  cursor: pointer;
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 100;
}

/* Mobile menu sidebar */
.mobile-menu-sidebar {
  display: none;
  width: 250px;
  height: 100%;
  position: fixed;
  box-shadow: var(--shadow);
  top: 0;
  left: -260px;
  overflow-x: hidden;
  transition: left 0.3s;
  background-color: #555;
  z-index: 99;
}
.sidebar-menu li {
  list-style: none;
}

.mobile-menu-sidebar.active {
  left: 0; /* Show the sidebar when active */
  background-color: #333333ee;
}

/* Show the mobile menu button and sidebar on smaller screens */
@media screen and (max-width: 780px) {
  #video-background {
    height: 60vh;
    overflow: hidden;
    object-fit: fill;
    z-index: -1;
  }
  .dark-bg {
    background-color: #11111177;
    z-index: -1;
  }
  .logo-container {
    text-align: center;
    width: 100%;
  }

  .logo-container img {
    width: 250px;
    margin: 0 auto;
  }
  .mobile-menu-button {
    display: block;
  }

  .nav-menu {
    display: none;
  }

  .mobile-menu-sidebar {
    display: block; /* Show the mobile menu sidebar on small screens */
    padding-top: 80px;
  }

  .mobile-menu-sidebar a {
    padding: 15px;
    text-align: center;
    text-decoration: none;
    font-size: 1.25rem;
    color: #fff; /* Change to your desired text color */
    display: block;
    transition: background-color 0.3s;
  }

  .mobile-menu-sidebar a:hover {
    background-color: var(--primary);
    color: #fff; /* Change to hover text color */
  }
}

.introduction {
  min-height: 200px;
  display: grid;
  place-items: center;
}
.introduction h2 {
  font-size: var(--hero-title);
  color: var(--primary);
  text-shadow: 2px 2px 15px #777;
  display: inline-block;
  opacity: 0;
  animation: growAndAppear 1.5s forwards;
animation-delay: 1s;
}


/*======================== 
  | Front page slider |
/*==================================== */
.slider {
  display: none;
  padding: var(--block-padding);
}
.slider .carousel-caption {
  background-color: #f7f4f4d3;
  color: var(--text-color);
  border-radius: var(--radius);
  border: 3px outset #8f8d8d;
  text-shadow: 2px 2px 15px #000;
  width: 100%;
  position: relative;
  left: 0;
  font-size: 0.8em;
  box-shadow: var(--shadow);
  animation: slide-title 1s ease-in;
}
@keyframes slide-title {
  0% {
      transform: translateY(100%);
   }
   100% {
       transform: translateY(0);
   }
}

.carousel-caption .custom-btn {
  font-size: 0.5em;
}
@media (min-width: 768px) {
  .slider {
    display: block;
  }
  .slider-inner {
    max-width: 60em;
    margin: 30px auto;
  }
  .slider .carousel-caption {
    margin: 30px 0;
    position: absolute;
    max-width: 80%;
    left: 5%;
    right: 5%;
    bottom: 0.8rem;
  }

  .slider .carousel-caption h5 {
    font-size: var(--title-size);
    margin-bottom: 0.3em;
  }
  .slider .carousel-caption p {
    font-size: var(--title-size);
    text-shadow: 0 0 15px #000;
    font-size: 20px;
    max-width: 80%;
    margin: 1rem auto;
  }
}

/* ============== Updated 11/1/22 ===================== 
  | for the colored letters on the hero home page only |
  ==================================== */

.title-first-letter {
  color: var(--primary);
  font-size: 1.4em;
  z-index: 0;
}

.appear-header {
  transform: scale(0.1); /* Start at 10% of the original size for demonstration purposes; you can adjust this value as desired. */
  opacity: 0; /* Start completely transparent */
  animation: growAndAppear 1.5s forwards;
  animation-delay: .5s;
}

@keyframes growAndAppear {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  
  100% {
    transform: scale(1); /* End at the original size */
    opacity: 1; /* End fully visible */
  }
}
.appear {

}
/* ================================= 
   Grid template to be used for the pages that contain images
==================================== */

.page {
  max-width: 1400px;
  margin: auto;
}
.page h3 {
  font-size: 2.3em;
  font-weight: 600;
}

.page h4 {
  color: var(--primary);
  font-size: 1.8em;
  font-family: var(--title-font);
  font-weight: 700;
  text-transform: capitalize;
  text-align: center;
}
.page img {
  max-width: 100%;
  margin: 20px auto;
}
/* images of the parts through out the site */
img.parts-img {
  max-width: 220px;
  margin: 20px auto;
}
.custom-section,
.custom-section-reverse {
  padding: var(--block-padding);
  margin: 0 auto;
  display: grid;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  grid-template-areas:
    "title "
    "img "
    "disc ";
}
#disc ul {
  margin-left: 5dvw;
}
@media (min-width: 800px) {
  .page h4 {
    font-size: 2.8em;
  }
  .custom-section,
  .custom-section-reverse {
    padding: var(--section-padding);
  }
  .custom-section {
    align-items: center;
    gap: 2rem;
    grid-template-areas:
      "title title title title"
      "img img disc disc";
  }

  .custom-section-reverse {
    gap: 2rem;
    grid-template-areas:
      "title title title title "
      "disc disc img img";
  }
}

@media (min-width: 1200px) {
  .page h4 {
    text-align: left;
  }
  
  .custom-section-reverse {
    align-items: center;
    gap: 3rem;
    grid-template-areas:
      "title  img"
      "disc  img";
  }
  .custom-section {
    align-items: center;
    gap: 3rem;
    grid-template-areas:
      "img title"
      "img disc";
  }
}
/* grid parts for the pages that uses them as the main content*/
/* ms = main small and ml = main large   */
#title {
  grid-area: title;
  grid-row: span -1;
}
#disc {
  grid-area: disc;
  margin: auto;
}
#img {
  grid-area: img;
}
/* customized manufacturer page */

.manufacturer-item-section details p {
  padding: 10px;
  font-size: 1rem;
  margin-left: 5%;
}
.manufacturer-item-section details img {
  margin: 10px auto;
  max-height: auto;
  width: 300px;
}

.manufacturer-item-section summary {
  background-color: var(--accent);
  border-bottom: 1px solid;
  width: 90%;
  margin: 0 auto ;
  padding: 0 5px;
  font-weight: bolder;
}

.manufacturer-list  {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-evenly;
  padding: 10px;
}  
.manufacturer-list > div {
  flex-basis: auto;
}


.manufacturer-list ul li {
  font-size: 1rem;
  border-bottom: 1px solid #ccc;
}  



/* ============== Updated 11/1/22 ===================== 
| The testimonial area |
==================================== */

.testimonial-section {
  display: grid;
  place-items: center;
  height: 100%;
}

.testimonials {
  max-width: 1000px;
  margin: auto;
}

.testimonials .single-item {
  background: #fff;
  color: #111;
  padding: 15px;
  margin: 50px 15px;
}
.profile {
  margin-bottom: 30px;
  text-align: center;
  display: grid;
  place-items: center;
  height: 100%;
}
.profile h4 {
  font-family: var(--title-font);
  font-size: var(--title-size);
}
.content {
  height: 100%;
  display: grid;
  align-items: center;
  font-size: 18px;
  align-self: center;
}
.content p {
  text-align: justify;
  font-size: 1rem;
  font-style: italic;
  font-family: var(--text-font);
}
.content p span {
  font-size: 28px;
  margin-right: 20px;
  color: var(--accent);
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  background-color: var(--primary);
}
@media (min-width: 40em) {
  .carousel-control-prev {
    left: -100px;
  }
  .carousel-control-next {
    right: -100px;
  }
}
/* =================================== 
| The contact page |
==================================== */
.contact-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1300px;
  margin: 20px auto;
  padding: 20px;
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.contact {
  padding: 10px;
  border: 1px solid var(--secondary);
  border-radius: 5px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-transform: capitalize;
  text-align: center;
}

.contact h3 {
  font-size: 26px;
  font-family: var(--title-font);
  padding-bottom: 2px;
  border-bottom: 1px solid #ccc;

}

.contact p {
  margin: 5px 0;
}
.contact a {
  font-size: 14px;
}
.contact a:hover {
  text-decoration: underline;
}

/* ============== Updated 10/31/22 ===================== 
| The resources page for the flip boxes |
==================================== */
/* contact page */
.contact-page {
  display: flex;
  flex-wrap: wrap-reverse;
  align-items: center;
  justify-content: space-evenly;
}
.contact-page-images img {
  max-width: 300px;
  margin: 10px auto;
  height: auto;
}

.contact-area {
  background-color: #c5fce5;
  margin: 0;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-container {
  background-color: #cccccccc;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  max-width: 620px; 
  margin: auto;
}
.hp-field {
  position: absolute;
  left: -5000px;
  top: -5000px;
  height: 0;
  width: 0;
  display: none;
  visibility: hidden;
  overflow: hidden;
}

.field-group {
  margin-bottom: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.field-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.field-group input[type="text"],
.field-group input[type="email"],
.field-group input[type="date"],
.field-group textarea {
  width: 280px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
@media (min-width: 600px) {
  .field-group {
    justify-content: space-between;
  }
  .field-group textarea {
    width: 580px;
  }
}

.field-group textarea {
  height: 100px;
}

.field-group input[type="hidden"] {
  display: none;
}



/* ================================= 
      | what to expect element |
====================================*/
.expect-area h3 {
  font-size: var(--hero-title);
}
.expect-area summary {
  /* The summary is the title used */
  color: #fff;
  background-color: var(--accent);
  font-size: var(--text-size);
  font-weight: 600;
  font-family: var(--title-font);
  padding: var(--block-padding);
  cursor: help;
  border-bottom: 1px solid;
}

.expect-area details p {
  text-align: center;
  box-shadow: inset 0 0 10px var(--accent);
  padding: 10px;
  background-color: #ccc;
}

.expect-area {
  max-width: 600px;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .expect-area {
    max-width: 80%;
    margin: auto;
  }
  .expect-area summary {
    width: 100%;
  }
}

/* ============= checked 11/1/22 ==================== 
    | The 404 page  |
==================================== */
.error {
  max-width: 900px;
  margin: auto;
}
.error h3 {
  color: #333;
  text-align: left;
  align-self: center;
  font-size: 1.8rem;
}

.site-map-404 {
  max-width: 800px;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-around;
  margin: 1em auto;
  align-items: center;
  gap: 1em;
}
.site-map-404 a {
  padding: var(--block-padding);
  background-color: var(--light-section-bg-color);
  color: var(--primary);
  font-size: 1.2em;
  font-weight: 600;
  border: 1px solid;
  border-radius: 8px;
  transition: 300sm ease-in-out;
  text-align: center;
  width: 200px;
}
.site-map-404 a:hover {
  background-color: var(--accent);
  color: var(--light-text-color);
}
/* ================================= 
| The support page styling  |
==================================== */

.support-dart .custom-section-item {
  justify-content: flex-start;
}
.support-dart .custom-section-item img {
  max-width: 200px;
}
.support-dart p {
  height: 100%;
}
.igive-support {
  background-color: #cccccc;
  padding: var(--block-padding);
}
@media (min-width: 40em) {
  .igive-support {
    padding: var(--section-padding);
    height: 30em;
  }
  .igive-support-btn img {
    transition: 0.3s ease-in-out;
    box-shadow: var(--shadow);
    border-radius: 8px;
    margin: 3em auto;
    border: 3px outset var(--secondary);
    width: 300px;
    height: auto;
  }
  .igive-support-btn img:hover {
    box-shadow: none;
    border-color: var(--primary);
  }
}


/* ================================= 
| The Footer element  |
==================================== */

.footer {
  background-color: var(--secondary);
  border-top: 3px solid var(--primary);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-inner a {
  padding: 10px;
  color: var(--text-color);
  font-weight: 600;
}

.footer-nav {
  display: flex;
  gap: 2rem;
}
.footer-nav nav {
  max-width: 200px;
  text-align: center;
}
.footer-inner a:hover {
  color: #333;
  font-weight: 600;
}
.footer-social-icons {
  display: flex;
  justify-content: space-around;
  gap: 2rem;
  font-size: 2rem;
}
/* footer for tablets */
@media (min-width: 50em) {
  .footer {
    background-image: linear-gradient(
      90deg,
      var(--light-section-bg-color),
      var(--accent)
    );
  }
  .footer-inner {
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    max-width: 1600px;
    margin: auto;
  }
  .footer-inner > img {
    margin: 0;
  }
  .footer-nav nav {
    max-width: fit-content;
    text-align: left;
    text-transform: capitalize;
  }
  .footer-nav nav a {
    white-space: nowrap;
  }
}
.copy {
  display: flex; 
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: var(--text-color);
  border-top: 3px solid var(--primary);
}
.copy p, 
.copy a {
  color: var(--light-text-color);
  font-size: 14px;
  margin: 10px 5px;
}
.copy a:hover {
  color: var(--primary);
}

/* ================================= 
| The back to top button  |
==================================== */
#myBtn {
  display: none;
  position: fixed;
  bottom: 120px;
  right: 20px;
  z-index: 99;
  outline: none;
  background-color: var(--secondary);
  padding: 4px;
  border-radius: 50%;
  border: 1px solid #fff;
  box-shadow: 2px 2px 5px #000;
}
#myBtn img {
  width: 30px;
}

#myBtn:hover {
  background-color: var(--accent);
}
