/* Main SCSS File */
/* styles/utils/_mixins.scss */
/*
0 - 600px: Phone
600 - 900px:  Tablet - Portrait
900 - 1200px:  Tablet - Landscape
1200 - 1800px:  Desktop (normal styles)
1800px+:  Big Desktop

$breakpoint argument choices:
- phone
- tab-port
- tab-land
- big-desktop

1rem = 16px

ORDER: base + typography > general layout + grid > page layout > components
*/
/* styles/utils/_variables.scss */
/* Variables */
html {
  height: fit-content;
  overflow-x: hidden;
}
body {
  height: 100%;
  position: relative;
}
:root {
  --bg: #fff;
  --bg-panel: #fff;
  --color-primary: #0056b3;
  --color-secondary: #8ee9ec;
  --color-headings: #161c2d;
  --color-text-opacity: rgba(22, 28, 45, 0.7);
  --color-text: #161c2d;
  --color-text-invert: #fff;
  --color-text-base: #161c2d;
  --border: #383f53;
}
.prod-sku {
  display: none !important;
}

body {
  position: relative;
}
.theme-panel {
  position: fixed;
  left: 0;
  top: 15%;
  z-index: 10000;
  transition: 0.4s;
  transform: translateX(-100%);
  color: white;
  text-decoration: none;
}

.theme-panel.open {
  transform: translateX(0);
}

.theme-body {
  background-color: var(--color-primary);
  border: transparent;
  max-width: 185px;
  padding: 15px 13px;
  text-align: center;
  border-bottom-right-radius: 25px;
  position: relative;
  color: white;
}

/* Adjust theme-tab to align properly on the left */
.theme-body .theme-tab {
  position: absolute;
  top: 0;
  transform: translateX(100%);
  display: flex;
  padding: 22px;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 50px;
  border: 0;
  background: var(--color-primary);
  color: white;
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  right: 1px;
}

/* Flip arrow icon when open */
.theme-panel.open .theme-tab i {
  transform: scaleX(1);
}
.theme-panel ul {
  list-style-type: none; /* Removes bullet points */
  padding: 0;
  margin: 0;
}

.theme-panel ul li {
  margin: 8px 0; /* Adds spacing between list items */
}

.theme-panel ul li a {
  display: block; /* Makes links fill their container */
  padding: 5px;
  font-weight: 600; /* Makes text slightly bolder */
  transition: color 0.3s ease; /* Smooth color transition */
  color: white;
}

/* Optional: Add a hover effect for better UX */
.theme-panel ul li a:hover {
  color: var(--color-secondary); /* Change color on hover */
}

div.entry-content {
  margin: 2rem;
}

div#disclaimer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  padding: 1rem 2rem;
  background: #fff;
  transition: all 0.75s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 1000;
}

div#disclaimer.hide {
  opacity: 0;
  bottom: -100%;
}

div#disclaimer-button {
  display: inline-block;
  cursor: pointer;
  padding: 0.65rem 0.85rem;
  margin-left: 0.45rem;
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 1px;
  background-image: linear-gradient(62deg, #fbab7e 0%, #f7ce68 100%);
}

.btn-custom,
input.btn-custom {
  padding: 0.5rem 1rem;
  background-color: #0056b3;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid transparent;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.btn-custom:hover,
input.btn-custom {
  color: #0056b3;
  background-color: #fff;
  border: 1px solid #0056b3;
}

div.category-page {
  min-height: 80vh;
}

div.category-page div#pagegraphic {
  max-height: 400px;
}

p.click-part-number {
  margin-left: 5rem;
}

p.click-part-number-search {
  width: fit-content;
}

div.category-page div#pagegraphic img {
  max-height: 400px;
  object-fit: cover;
}

p.contact-info a {
  color: #064388;
  text-decoration: none;
}

p.contact-info a:hover {
  color: #0051af;
}

div.ss-custom-field {
  display: flex;
  align-items: center;
}

div.product div div.flex-column .prod-img {
  height: 150px;
}

div.product div div.flex-column .prod-img.shape-square {
  padding-top: 0;
}

div.product div.productDisplayInfo {
  display: flex;
  flex-direction: column;
}


div.container#search-container div.prod-price {
  display: none !important;
}

div.product div.ss-custom-field,
div.prod-price .small.fst-italic {
  display: none;
}

div.breadcrumbs a.breadcrumbs-home,
a.breadcrumbs-home {
  text-decoration: none !important;
}

div#pagegraphic img {
  width: 100%;
}

div.category-page div#paginationtop,
div.category-page div#paginationbottom,
section#components div#pg-nme {
  justify-content: flex-start !important;
  padding-left: 5rem;
}

section#components div.pagination span {
  padding: 0;
}

@media (max-width: 37.5em) {
  section#components div#pg-nme div.d-flex {
    flex-wrap: wrap;
    justify-content: center;
  }

  div.pagination {
    font-size: 100%;
  }

  div.category-page div#paginationtop {
    padding-left: 0;
    padding-top: 1rem;
  }

  div.signin-form {
    overflow: scroll;
  }

  div.signin-form table.email_pw tr {
    display: flex;
    flex-direction: column;
  }
}

body main {
  min-height: 78vh;
}

table.search_table tbody {
  display: flex;
  gap: 1rem;
}

h1.registration-h1,
h1.signin-h1,
h1.account-h1 {
  margin: 1rem 0 0 5%;
}

div.registration-form,
div.signin-form,
div.account-buttons {
  width: fit-content;
  max-width: 2000px;
  min-height: fit-content;
  margin: 2rem 6rem;
  border: 0.2rem solid grey;
  border-top: 1.5rem solid rgb(34, 69, 123);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3),
    0 1px 3px 1px rgba(60, 64, 67, 0.15);
}

div.signin-form p.buttons {
  text-align: left;
  margin-left: 0.5rem;
}

@media (max-width: 56.25em) {
  div.page_info h1 {
    font-size: 32px;
  }

  div.registration-form,
  div.signin-form,
  div.account-buttons {
    margin: 2rem auto;
    overflow: scroll;
  }
}

div.registration-form table,
div.signin-form table {
  width: 100%;
  display: flex;
}

div.registration-form table .left {
  display: flex;
}

div.registration-form .challenge {
  margin-top: 1rem;
}

div.registration-form .addr_name {
  width: 50%;
  margin: 0;
}

div.registration-form .addr_lab {
  margin-right: 1rem;
}

div.registration-form .email_type {
  display: none;
}

div.products form div.product-qnty {
  display: none;
}

form.cr div:has(.signin-form) {
  min-height: 50rem;
}

table.addr tr {
  border: 1px solid red;
}

table.pw td,
table.challenge td,
table.company_name td,
table.pxborder td,
table.addr td,
table.addr_name td,
table.email_pw td {
  padding: 0 0.5rem;
}

form[name="contactus"] input,
table.pw td input,
table.challenge td input,
table.company_name td input,
table.pxborder td input,
table.addr td input,
table.addr_name td input,
table.email_pw td input {
  border-radius: 5px;
  padding: 0.5rem;
  border: 1px solid #e7eaf0;
  box-shadow: 0px 1px 2px rgba(50, 50, 71, 0.08);
}

form[name="contactus"] input:focus,
table.pw td input:focus,
table.challenge td input:focus,
table.company_name td input:focus,
table.pxborder td input:focus,
table.addr_name td input:focus,
table.addr td input:focus,
table.email_pw td input:focus {
  border-color: #5c60f5;
  box-shadow: 0px 1px 2px rgba(50, 50, 71, 0.08),
    0 0 0 3px rgba(92, 96, 245, 0.25);
}

form[name="contactus"] input:focus-visible,
table.pw td input:focus-visible,
table.challenge td input:focus-visible,
table.company_name td input:focus-visible,
table.company_name td input:focus-visible,
table.addr_name td input:focus-visible,
table.addr td input:focus-visible,
table.email_pw td input:focus-visible {
  outline: none;
}

div.signin-form input.button164,
div.signin-form input.button473,
div.signin-form input.button187,
div.signin-form input.button173,
div.signin-form input.button188,
div.signin-form input.button183,
div.signin-form input.button189,
div.signin-form input.button165,
div.signin-form input.button167,
div.signin-form input.button184,
div.signin-form input.button185,
div.signin-form input.button186,
div.account-buttons table#view_edit input {
  padding: 0.5rem 1rem;
  background-color: #0056b3;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid transparent;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

div.signin-form input.button164,
div.signin-form input.button473,
div.signin-form input.button187,
div.signin-form input.button173,
div.signin-form input.button188,
div.signin-form input.button183,
div.signin-form input.button189,
div.signin-form input.button165,
div.signin-form input.button167,
div.signin-form input.button184,
div.signin-form input.button185,
div.signin-form input.button186,
div.account-buttons table#view_edit input:hover {
  color: #0056b3;
  background-color: #fff;
  border: 1px solid #0056b3;
}

div.account-buttons a {
  padding: 0.5rem 1rem;
  font-weight: 700;
  color: #0056b3;
  background-color: #fff;
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid #0056b3;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

div.account-buttons a:hover {
  color: #fff;
  background-color: #0056b3;
  border: 1px solid transparent;
}

div.account-buttons .mainbtc {
  margin-left: 0.5rem;
  margin-top: 0.5rem;
}

body#productpage form div#mi-qnty button {
  display: none;
}

div#mi-qntyPrice {
  overflow: visible;
}

@media (max-width: 56.25em) {
  div#mi-qntyPrice {
    overflow: scroll;
  }
}

div.shopping-cart-wrapper {
  margin: 2rem;
  min-height: 77.25%;
}

div.shopping-cart-wrapper form.order {
  margin-bottom: 6rem;
  overflow: scroll;
}

div.shopping-cart-wrapper form.order div.cart-table-wrapper {
  width: 100%;
  overflow: scroll;
}

div#cart-popup {
  height: -moz-fit-content;
  height: fit-content;
}


@media (max-width: 56.25em) {
  form.cr footer,
  body#productpage footer {
    position: relative;
  }
}

main#pdp
  div.d-flex.flex-column.flex-lg-row.justify-content-between.align-items-start.position-relative.h-100 {
  justify-content: center !important;
  gap: 2rem;
}

main#pdp div.col-12.col-lg-7.text-center {
  width: 40%;
}

div.input-group {
  display: flex;
  flex-wrap: nowrap;
}

div.cart-product-specs {
  gap: 1rem;
}

div.text-left div#toparea {
  margin: 2rem 4rem 0;
}

div.breadcrumbs a.breadcrumbs-home {
  margin-left: 4rem;
}

@media (max-width: 56.25em) {
  div#toparea {
    margin-top: 2rem;
  }
  div.text-left div#toparea,
  div.breadcrumbs a.breadcrumbs-home {
    margin-left: 2rem;
  }
}

main#products div.text-left div#toparea h1 {
  text-align: center;
  margin: 2rem auto;
}
main#products div.text-left h2 {
  margin-left: 5rem;
}
main#products div.text-left section#categories {
  margin-bottom: 2rem;
}
main#products div.text-left section#categories .product-categories {
  margin-top: 2rem;
}
main#products div.text-left section#components h2 {
  margin-left: 5rem;
  margin-bottom: 5rem;
}

@media (max-width: 37.5em) {
  main#products div.text-left section#categories {
    margin-top: 2rem;
  }
  main#products div.text-left h2 {
    margin: 0 auto;
    width: fit-content;
  }
  main#products div.text-left section#components h2 {
    margin: 0 auto 2rem;
    width: fit-content;
  }
}

/* styles/base/_reset.scss */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* styles/base/_typography.scss */
body {
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.6;
}

/* Products Section */
section#categories {
  text-align: center;
  padding-bottom: 2rem;
}
section#categories h2 {
  text-align: left;
}
section#categories h2#search {
  margin-top: 2rem;
  text-align: center;
}
section#categories .product-categories {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 2rem;
  margin-top: 2rem;
}
section#categories .product-categories .category-wrapper {
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0.5rem;
}
section#categories .product-categories .category-wrapper .category {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 250px;
  text-align: center;
  text-decoration: none;
  color: #000;
  border-radius: 0.5rem;
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3),
    0 1px 3px 1px rgba(60, 64, 67, 0.15);
  transition: all 0.1s ease-in-out;
}
section#categories
  .product-categories
  .category-wrapper
  .category
  .productImage {
  width: 150px;
  height: auto;
  display: block;
  margin: 0 auto;
}
section#categories .product-categories .category-wrapper .category:hover {
  box-shadow: 0 3px 4px 0 rgba(60, 64, 67, 0.3),
    0 2px 4px 2px rgba(60, 64, 67, 0.15);
  color: #0056b3;
}
@media (max-width: 75em) {
  section#categories .product-categories {
    justify-content: center;
    margin: 0rem;
    padding: 0;
    flex-wrap: wrap;
  }
  section#categories .product-categories .category-wrapper {
    justify-content: space-around;
  }
  section#categories .product-categories .category-wrapper .category {
    min-height: 0;
    padding: 0;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
  }
  section#categories
    .product-categories
    .category-wrapper
    .category
    .productImage {
    width: 100px;
  }
}
@media (max-width: 37.5em) {
  section#categories .product-categories .category-wrapper {
    flex-direction: row;
    align-items: center;
  }
}
section#categories .product-search {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
section#categories .product-search form {
  width: 80%;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  max-width: 500px;
}
section#categories .product-search input {
  padding: 0.5rem;
  width: 80%;
}
section#categories .product-search .submit-btn {
  min-width: 3rem;
  max-width: 5rem;
  width: 10%;
}

/* Hero Section */
section#hero {
  position: relative;
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  max-width: 2000px;
  max-height: 20rem;
}
section#hero .hero-content {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  top: 1rem;
  left: 5rem;
}
section#hero .hero-content .radiall-logo {
  height: 3rem;
  -o-object-fit: contain;
  object-fit: contain;
  z-index: 1;
  width: -moz-fit-content;
  width: fit-content;
}
section#hero .hero-content h2 {
  margin: 0 0 1rem;
  text-align: left;
  width: -moz-fit-content;
  width: fit-content;
}
section#hero img {
  width: 100%;

  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
  margin-top: 2rem;
}
@media (max-width: 75em) {
  section#hero .hero-content {
    top: 0rem;
    left: 7rem;
  }
  section#hero .hero-content .btn-custom {
    margin-left: 0;
  }
}
@media (max-width: 56.25em) {
  section#hero .hero-content {
    top: 0rem;
    left: 1rem;
  }
}

/* Info Section */
section#info {
  display: flex;
  justify-content: center;
  background-image: url("https://shark.serverhost.net/astonics/media/three-column-background.webp");
  background-position: center;
  background-size: cover;
  margin-bottom: -2rem;
}
@media only screen and (max-width: 75em) {
  section#info {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    padding: 2rem 0;
  }
}
section#info .info-box {
  width: 33.3333%;
  text-align: center;
  padding: 1.5rem 3rem;
  background-color: rgba(29, 29, 29, 0.3137254902);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 10rem;
  max-width: 650px;
}
section#info .info-box:nth-child(2) {
  background-color: rgba(29, 29, 29, 0.6);
}
section#info .info-box hr {
  border: 0.1rem solid #fff;
  width: 50%;
}
section#info .info-box h3 {
  font-size: 24px;
  color: #fff;
}
section#info .info-box p {
  font-size: 14px;
  color: #fff;
  font-weight: 700;
  padding: 1rem 0;
}
section#info .info-box a.btn-custom {
  font-size: 16px;
  width: fit-content;
}
@media (max-width: 75em) {
  section#info .info-box {
    padding: 1rem;
    width: 90%;
  }
  section#info .info-box h3 {
    font-size: 24px;
  }
  section#info .info-box hr {
    margin: 0;
  }
  section#info .info-box p {
    font-size: 16px;
  }
}

/* Navbar */
header {
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1000;
}

header .top-bar {
  background-color: #e0e0e0;
  padding: 0.5rem 0;
  width: 100%;
  padding: 0.5rem 3rem;
}

header .top-bar .top-bar-wrapper {
  max-width: 2000px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}

header .top-bar .top-bar-wrapper .contact-info {
  margin: 0;
  font-size: 20px;
}

header .top-bar .top-bar-wrapper .user-info {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  justify-content: space-evenly;
}

header .top-bar .top-bar-wrapper .user-info .login-link {
  text-decoration: none;
  color: #000;
  margin-right: 1rem;
  font-size: 20px;
}

header .top-bar .top-bar-wrapper .user-info #h1-icons {
  display: flex;
  gap: 2rem;
  text-align: center;
  font-size: 14px;
}

header .top-bar .top-bar-wrapper .user-info #h1-icons a {
  text-decoration: none;
}

@media (max-width: 56.25em) {
  header .top-bar .top-bar-wrapper {
    flex-direction: column;
  }
  header .top-bar .top-bar-wrapper .user-info #h1-icons {
    font-size: 12px;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center !important;
  }
}

header .main-nav {
  background-color: rgb(34, 69, 123);
  width: 100%;
  padding: 1rem 3rem;
  position: relative;
}

header .main-nav .nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 2000px;
  margin: 0 auto;
}

header .main-nav .nav-wrapper .logo {
  width: 350px;
}

header .main-nav .nav-wrapper nav {
  padding-left: 2rem;
  display: flex;
  gap: 2rem;
  justify-content: space-evenly;
  width: 50%;
}

header .main-nav .nav-wrapper nav a {
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  color: #fff;
}

header .main-nav .nav-wrapper .search {
  display: flex;
  align-items: center;
}

header .main-nav .nav-wrapper .search input {
  width: 200px;
  padding: 0.5rem;
  font-size: 16px;
  border: none;
  border-radius: 4px;
}

header .main-nav .nav-wrapper .search button {
  height: 100%;
  padding: 0.5rem 1rem;
  background-color: #0056b3;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

header .main-nav .nav-wrapper .productInfo {
  display: none;
}
header .main-nav .nav-wrapper .productInfo .arrow {
  margin-left: 8px;
  font-size: 0.8em;
  transition: transform 0.3s;
}
header .main-nav .nav-wrapper .productInfo .arrow.up {
  display: none; /* Hide the up arrow by default */
}

/* Responsive Navbar */
header .main-nav .nav-wrapper .burger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

header .main-nav .nav-wrapper .burger-menu span {
  height: 3px;
  width: 25px;
  background: white;
  margin: 4px;
  transition: 0.3s;
}
@media (max-width: 75em) {
  header .main-nav .nav-wrapper {
    flex-wrap: wrap;
    width: 100%;
  }
}

@media (max-width: 75em) {
  header .main-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  header .main-nav .nav-wrapper nav {
    display: none;
    flex-direction: column;
    gap: 0;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgb(34, 69, 123);
    padding: 0;
  }

  header .main-nav .nav-wrapper .logo {
    width: 200px;
  }

  header .main-nav .nav-wrapper nav a {
    padding: 1rem;
    text-align: center;
  }

  header .main-nav .nav-wrapper .search {
    display: none;
    width: 100%;
    padding: 1rem;
  }

  header .main-nav .nav-wrapper .burger-menu {
    display: flex;
    position: absolute;
    right: 1rem;
    top: 0.7rem;
  }

  header .main-nav.active .nav-wrapper nav,
  header .main-nav.active .nav-wrapper .search {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 75em) {
  header .main-nav .nav-wrapper .productInfo {
    position: relative;
    display: flex;
    align-items: center;
  }

  header #dropdownToggle {
    display: none;
  }
  header #dropdownButton {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgb(34, 69, 123); /* Same as main-nav background */
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    text-align: center;
    width: 100%;
    text-decoration: none;
  }

  header #dropdownMenu {
    display: none;
    position: absolute;
    top: 100%;
    background-color: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  header #dropdownMenu li a {
    display: block;
    padding: 8px 16px;
    text-decoration: none;
    color: black;
  }
  header #dropdownMenu li a:hover {
    text-decoration: underline;
  }
  header
    .main-nav
    .nav-wrapper
    .productInfo
    .dropdown-checkbox:checked
    + #dropdownButton
    + #dropdownMenu {
    display: flex;
    flex-direction: column;
  }
  header .main-nav .nav-wrapper .productInfo:hover .arrow.down,
  .dropdown-checkbox:checked ~ #dropdownButton .arrow.down {
    display: none;
  }
  header .main-nav .nav-wrapper .productInfo:hover .arrow.up,
  .dropdown-checkbox:checked ~ #dropdownButton .arrow.up {
    display: inline;
  }
}

footer {
  background-color: #d3d3d3;
  border-top: 2px solid black;
  font-size: 1rem;
  color: black;
  text-align: center;
  padding: 1rem 0;
  margin-top: 2rem;
  width: 100%;
  display: flex;
  flex-direction: column; /* Stack items vertically */
  align-items: center; /* Center items horizontally */
}

footer .copyright {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

footer p {
  margin: 0.5rem 0; /* Add vertical spacing between paragraphs */
  text-decoration: none;
}

.nxtLink a {
  color: black;
  text-decoration: none;
}
.nxtLink a:hover {
  text-decoration: underline;
}

.siteLinks a {
  margin: 0 0.5rem;
  color: black;
  text-decoration: none;
}

.siteLinks a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .siteLinks {
    display: flex;
    flex-wrap: wrap;
    gap: 0rem 2rem;
    max-width: 80%;
    justify-content: center;
    margin: 0 auto;
  }

  .siteLinks a {
    display: block;
    margin: 0.5rem 0;
  }

  footer p:first-child::after {
    content: "";
    margin: 0;
  }
}

/* About Page Specific Styles */
section#who-we-are {
  text-align: center;
  padding: 2rem;
}

section#who-we-are h1 {
  font-size: 2rem;
  color: rgb(34, 69, 123);
  margin-bottom: 1rem;
}

section#who-we-are p {
  font-size: 1.2rem;
  color: section #666;
  line-height: 1.5;
  margin: 0 auto;
  max-width: 800px;
}

/* Services Section */
section#services {
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 2rem;
  background-color: section #f9f9f9;
  margin-bottom: 10.5rem;
}

.service {
  text-align: center;
  max-width: 300px;
}

.service svg {
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
}

.service h3 {
  font-size: 1.5rem;
  color: section #333;
  margin-bottom: 1rem;
}

.service p {
  font-size: 1rem;
  color: section #666;
  line-height: 1.5;
}

/* Quality & Privacy Sections */
section#quality,
section#privacy-policy {
  margin: 0 auto;
  max-width: 2000px;
  padding: 2rem;
}

section#quality {
  margin-bottom: 20.5rem;
}

section#privacy-policy {
  margin-bottom: 22.35rem;
}

section#quality h1,
section#privacy-policy h2 {
  font-size: 2rem;
  color: rgb(34, 69, 123);
  text-align: center;
  margin-bottom: 1rem;
}

section#quality h2,
section#privacy-policy h3 {
  font-size: 1.5rem;
  color: section #333;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

section#quality p,
section#privacy-policy p,
section#privacy-policy li {
  font-size: 1rem;
  color: section #666;
  line-height: 1.5;
}

section#quality a,
section#privacy-policy a {
  color: #0056b3;
  text-decoration: none;
}

section#quality a:hover,
section#privacy-policy a:hover {
  text-decoration: underline;
}
/*About page mobile Responsive*/
@media (max-width: 768px) {
  section#services {
    flex-direction: column;
    align-items: center;
  }
  section#quality,
  section#privacy-policy {
    text-align: center;
  }
}

/* General Styles */
body {
  font-family: "Arial", sans-serif;
  margin: 0;
  padding: 0;
}

.container {
  width: 80%;
  margin: auto;
  padding: 50px 0;
}

/* Contact Information */
.contact-info .intro {
  text-align: center;
  margin-bottom: 40px;
}

.contact-info .intro h2 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.contact-info .intro p {
  font-size: 1.1em;
  color: #555;
}

.contact-info .contact-methods {
  display: flex;
  justify-content: center;
  gap: 50px;
}

.contact-info .contact-methods div {
  text-align: center;
}

.contact-info .contact-methods h3 {
  font-size: 1.5em;
  margin-bottom: 5px;
}

.contact-info .contact-methods a {
  color: #007bff;
  text-decoration: none;
  font-size: 1.2em;
}

.contact-info .contact-methods a:hover {
  text-decoration: underline;
}

/* Contact Form */
.contact-form {
  background-color: #f9f9f9;
  padding: 40px;
  margin-top: 50px;
  border-radius: 8px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

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

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  background-color: #007bff;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #0056b3;
}
/*order select*/

.orders {
  display: flex;
  width: 20rem;
}
/* Responsive Design */
@media (max-width: 768px) {
  .container {
    width: 90%;
  }

  .contact-info .contact-methods {
    flex-direction: column;
    gap: 20px;
  }
}

/*# sourceMappingURL=main.css.map */

