/*
  GENERAL STYLING
*/

/****  *****/

.mobile-menu-container {
  display: none;
}

/* :root {
  --text-on-white: #000b26;
  --grey: rgba(0, 0, 0, 0.627);
} */

:root {
  --color-primary: #004080;
  --color-accent: #ff6600;

  --color-primary-tint: color-mix(in srgb, var(--color-primary) 70%, white);
  --color-primary-shade: color-mix(in srgb, var(--color-primary) 85%, black);
  --color-grey: color-mix(
    in srgb,
    var(--color-primary) 25%,
    var(--color-accent) 25%
  );

  --color-text: rgba(0, 0, 0, 0.627);
  --color-headers: color-mix(in srgb, var(--color-primary) 50%, black);

  --color-section-bg-alt: #f9f6f6;
  --color-background: #fafafa;

  --main-color: var(--color-primary);
  --disabled: var(--color-neutral);
  --main-bg-color: var(--color-background);
  --borders: var(--color-primary-shade);
  --buttons: var(--color-accent);
  --logo-font: 'Revue';
  --transition: all 0.3s ease-in-out;
}

/***ONE***/
/* :root {
  --color-background: #fafafa;
  --color-primary: #004080;
  --color-primary-tint: #336699;
  --color-accent: #ff6600;
  --color-primary-shade: #002244;
  --color-neutral: #cccccc;
  --color-background: #fafafa;
  --color-headers: rgb(8, 3, 3);
  --color-text: #6a5f5f;
  --color-section-bg-alt: #f9f6f6;

  --main-color: var(--color-primary);
  --disabled: var(--color-neutral);
  --main-bg-color: var(--color-background);
  --borders: var(--color-primary-shade);
  --buttons: var(--color-accent);
  --logo-font: 'Revue';
  --transition: all 0.3s ease-in-out;
} */

/***TWO***/

/* :root {
  --color-background: #ffffff;
  --color-primary: #212b6b;
  --color-primary-tint: #4a56a6;
  --color-primary-shade: #141c42;
  --color-accent: #ffa500;
  --color-neutral: #f2f2f2;
  --color-text: #000000;
  --color-headers: rgb(8, 3, 3);
  --color-section-bg-alt: #f9f6f6;

  --main-color: var(--color-primary);
  --disabled: var(--color-neutral);
  --main-bg-color: var(--color-background);
  --borders: var(--color-primary-shade);
  --buttons: var(--color-accent);
  --logo-font: 'Revue';
  --transition: all 0.3s ease-in-out;
} */

/***THREE***/
/* :root {
  --color-background: #fafafa;
  --color-section-bg-alt: #f9f6f6;

  --color-primary: #2519b2;
  --color-primary-tint: #4f43c4;
  --color-primary-shade: #1b1391;

  --color-accent: #924b12;

  --color-neutral: #f2f2f2;
  --color-text: rgba(0, 0, 0, 0.627);
  --color-headers: #000b26;

  --main-color: var(--color-primary);
  --disabled: var(--color-neutral);
  --main-bg-color: var(--color-background);
  --borders: var(--color-primary-shade);
  --buttons: var(--color-accent);
  --logo-font: 'Revue';
  --transition: all 0.3s ease-in-out;
} */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  font-family: Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue',
    sans-serif;
  overscroll-behavior: none;
}

.section--hidden {
  opacity: 0;
  transform: translateY(8rem);
}

.section--show {
  transition: transform 1s, opacity 1s;
}

.section-trying {
  height: 60vh;
}

button {
  cursor: pointer;
}

body {
  background-color: var(--main-bg-color);
}

/*
  BUTTONS
*/

.main-btns {
  width: 30% !important;
  padding: 1.7% 8.5% !important;
}

/*
    NAVIGATION BAR
*/

header {
  display: flex;
  flex-direction: column;
  background-color: var(--main-bg-color);
}

.mobile-topbar {
  display: none;
}

nav {
  box-shadow: 0 10px 10px -7px rgba(0, 0, 0, 0.05);
}

.nav-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  /* padding: 1.5% 10%; */
  padding: 1% 10% 1.5% 10%;
}

.nav-container.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  margin: 0;
  border-top: none;
  background-color: #eceeef;
}

.sticy-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-links {
  /* color: var(--main-bg-color); */
  text-transform: uppercase;
  font-size: 0.8rem;
  /* cursor: pointer; */
  /* color: rgb(39, 71, 115); */
  position: relative;
  color: var(--color-primary-shade);
}

nav img {
  cursor: pointer;
  width: 25px;
}

.logo {
  margin-right: auto;
  font-size: 4rem;
  font-family: var(--logo-font);
  text-transform: uppercase;
  color: var(--main-color);
}

.nav-items {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 50px;
}

.language-selector {
  margin-left: auto;
  padding-right: 30px;
  padding-top: 15px;
}

.language-selector-links {
  width: fit-content !important;
}

.language-selector label {
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  text-transform: uppercase;
}

.nav-top-items {
  display: flex;
  /* min-width: 100%; */
  /* grid-template-columns: auto auto auto auto; */
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.contact-us-btn {
  border: 1px solid rgb(39, 71, 115);
  padding: 6px 18px;
  /* border-radius: 25px; */
  font-size: 0.55rem;
  transition: var(--transition);
}

.contact-us-btn:hover {
  color: var(--color-headers);
}

.search-box {
  min-width: 300px;
}

.nav-container form img {
  /* position: absolute;
  right: 5px; */
  width: 20px;
}

.nav-container form {
  display: flex;
  position: relative;
  align-items: center;
}

.search-icon-btn {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  position: absolute;
  right: 5px;
}

.search-icon-btn:focus {
  outline: none;
}

.input {
  width: 100%;
  height: 35px;
  color: var(--color-text);
  box-shadow: var(--color-accent) 0px 1px 1px;
  padding: 10px 15px;
  border: none;
  transition: 0.4s;
  font-weight: 300;
}

.input:focus {
  outline: none;
  box-shadow: 0 0 0 0.07vw var(--main-color);
  color: var(--color-text);
}

.nav-ul {
  display: grid;
  grid-template-columns: repeat(5, auto);
  justify-content: flex-end;
  gap: 50px;
}

.link-btn {
  cursor: pointer;
  position: relative;
}

.link-btn a:hover {
  color: var(--color-primary-tint);
}

.dropdown-toggle {
  cursor: pointer;
}

.dropdown-toggle:after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.globe-dropdown-toggle:after {
  vertical-align: 0.555em !important;
}

.cart-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header p:nth-of-type(1) {
  font-size: 2rem;
  letter-spacing: 2px;
}

.close-cart-icon {
  transform: rotate(45deg);
  font-size: 2.5rem;
  font-weight: 300;
  cursor: pointer;
  color: var(--main-color);
}

.cart-mode-info {
  font-weight: 300;
  font-size: 0.8rem;
  color: var(--color-accent);
}

.cart-empty-wrapper {
  padding: 40px;
  border: 1px solid gray;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 300;
}

.cart-empty-wrapper img {
  max-width: 150px;
}

.cart-icon-container {
  position: relative;
  display: inline-block;
}

.cart-count-wrapper {
  position: absolute;
  top: -13px;
  right: -6px;
  color: black;
}

.cart-toast-wrapper {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.total-items-container {
  border-top: 0.5px solid grey;
  padding-top: 10px;
}

.cart-count {
  /* background-color: var(--borders); */
  /* border-radius: 50%; */
  padding: 2px 6px;
}

.bundle-program-list li {
  font-weight: 300;
}

.cart-toast {
  background: #fff;
  border: 1px solid #ccc;
  padding: 6px 12px;
  /* border-radius: 4px; */
  white-space: nowrap;
  /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); */
  font-size: 10px;
  color: black;
  animation: fadeInOut 2.5s ease-in-out forwards;
}

.cart-item-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-height: 80%;
}

.bundle-title {
  font-size: 1.5rem;
}

.item-incart {
  /* background-color: green; */
  /* color: white; */
  /* padding: 3px; */
  font-weight: 500;
}

.item-missing {
  /* background-color: rgb(219, 185, 17); */
  /* color: black; */
  /* padding: 3px; */
  font-weight: 500;
}

.discount-highlight {
  background-color: var(--color-accent);
  color: var(--color-headers);
  padding: 4px;
  font-weight: 500;
  margin-right: 3px;
  font-size: 0.8rem;
}

.bundle-toast-area {
  overflow-y: auto;
}

.bundle-toast-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.bundle-toast-nav button {
  padding: 4px 8px;
  font-size: 0.7rem;
}

.bundle-toast {
  border-radius: 0;
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

.bundle-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid;
  padding: 8px;
  margin-top: 10px;
}

.bundle-item button {
  max-width: 15% !important;
  margin: 0 !important;
  padding: 2px !important;
}

.bundle-item p {
  font-size: 0.7rem;
  margin-bottom: 5px;
}

.bundle-toast-item {
  line-height: 22px;
  font-size: 0.7rem;
}

.all-cart-items {
  max-height: 50vh;
  overflow-y: auto;
}

.cart-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-bottom: 0.5px solid var(--color-grey);
  padding-bottom: 1rem;
  margin-top: 10px;
}

.cart-item-controllers,
.cart-item-title {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.cart-item-title span:nth-of-type(1) {
  font-weight: 300;
  font-size: 0.9rem;
}

.shipping-info {
  font-size: 0.7rem;
}

.remove-btn {
  cursor: pointer;
  border: none;
  background-color: transparent;
  text-decoration: underline;
}

.amount-input {
  max-width: 15%;
  padding: 0.15rem;
}

.total-items-wrapper div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 300;
}

.total-items-wrapper p {
  font-size: 1.3rem;
  font-weight: 400;
}

.cart-empty-wrapper .all-software-btn {
  width: unset;
}

#cart-checkout-btn,
#clear-cart-btn {
  padding: 10px 30px !important;
  margin: 20px 0;
}

.cart-btns {
  display: flex;
  gap: 10px;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
    transform: translateY(-5px);
  }
  10% {
    opacity: 1;
    transform: translateY(0);
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(-5px);
  }
}

/*
  NAVIGATION BAR SUB MENU  
*/

.submenu-container {
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

/* When submenu has content inside */
.submenu-container:has(.sub-menu) {
  opacity: 1;
  pointer-events: auto;
}

.sub-menu {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  box-shadow: 0 10px 10px -7px rgba(0, 0, 0, 0.05);
  position: absolute;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: var(--main-bg-color);
  padding: 5% 0;
  text-transform: uppercase;
  /* height: 400px; */
}

.sub-menu img {
  max-width: 300px;
}

.menu-left,
.sub-menu,
.menu-right a,
/* .software-grid a, */
.menu-right-items a,
.menu-left-items a {
  color: var(--color-primary-shade);
  font-size: 0.8rem;
}

.menu-right-items a:hover,
.menu-left-items a:hover {
  color: var(--color-primary-tint);
}

.menu-left {
  display: flex;
  flex-direction: column;
}

.menu-left-items {
  display: flex;
  flex-direction: column;
  gap: 30px;
  min-width: 400px;
}

.menu-left-btn {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.menu-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.menu-right H4 {
  margin-bottom: 20px;
}

.menu-right-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.software-grid {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 50px;
}

/*
  HOMEPAGE HERO SECTION
*/

.hero-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 5%;
}

.hero-text,
.hero-image {
  flex: 1 1 300px;
  min-width: 300px;
}

.hero-text {
  padding: 0 5rem;
  font-size: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--color-text);
  margin: 60px 0;
}

.hero-text h1,
.hero-text h2 {
  color: var(--color-headers);
  font-weight: 300;
}

.color-text {
  color: var(--color-accent);
}

.hero-text p {
  font-weight: 300;
  color: var(--color-text);
}

.hero-image img {
  width: 100%;
  height: auto;
  /* border-radius: 0% 0% 0% 25px; */
  margin-bottom: 60px;
  /* box-shadow: #924b12 -0.5px 1px 1px 0.05px; */
  box-shadow: var(--color-accent) -0.5px 1px 1px 0.05px;
}

.white-btns {
  background-color: var(--main-bg-color) !important;
  border: 1px solid var(--borders) !important;
  color: var(--color-text) !important;
}

.white-btns:before {
  background-color: var(--color-primary-tint) !important;
}

.white-btns:hover {
  color: var(--main-bg-color) !important;
  border: 1px solid var(--main-color) !important;
}

.hero-btn {
  margin: 40px 0;
}

.hero-btn,
.all-software-btn {
  font-size: 0.8rem;
  font-weight: bold;
  text-align: center;
  border: 1px solid var(--main-color);
  position: relative;
  transition: 0.3s ease all;
  z-index: 1;
  padding: 15px 40px;
  width: 30%;
  background-color: var(--main-color);
  overflow: hidden;
  color: var(--main-bg-color);
  text-transform: uppercase;
}

.all-software-btn {
  margin-top: 40px;
}

.hero-btn:before,
.all-software-btn:before {
  transition: 0.3s all ease;
  position: absolute;
  top: 0;
  left: 50%;
  right: 50%;
  bottom: 0;
  opacity: 0;
  content: '';
  background-color: var(--main-bg-color);
  z-index: -1;
  /* border-radius: 25px; */
}

@media (hover: hover) and (pointer: fine) {
  .hero-btn:hover,
  .all-software-btn:hover {
    color: var(--color-text);
    overflow: hidden;
    border: 1px solid var(--borders);
  }

  .hero-btn:hover:before,
  .hero-btn:focus:before,
  .all-software-btn:hover:before,
  .all-software-btn:focus:before {
    transition: 0.3s all ease;
    left: 0;
    right: 0;
    opacity: 1;
  }

  .hero-btn:active,
  .all-software-btn:active {
    transform: scale(0.9);
  }
}

/**
  COMPANY CONTENT SECTION
*/

.company-content-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 4rem;
}

.company-content-container img {
  max-width: 600px;
  /* box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px,
    rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px,
    rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px; */
  /* border-radius: 10px; */
}

.company-content-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 60px 0;
  max-width: 80%;
  gap: 30px;
}

.company-content-title {
  font-size: 2rem;
  font-weight: 500;
  text-transform: uppercase;
  display: inline-block;
  transition: transform 0.3s ease-in-out;
  margin-bottom: 30px;
}

.company-content-title-underline {
  position: relative;
  color: var(--color-accent);
}

.company-content-title-underline::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 4px;
  bottom: -8px;
  left: 0;
  background-color: var(--color-primary-tint);
}

.company-content-container div:nth-of-type(4) {
  width: 100%;
  margin: 0;
}

.company-content-text {
  font-size: 1.12rem;
  line-height: 30px;
  /* color: #2519b2; */
}

.company-content-wrapper p:nth-last-of-type(2),
.company-content-wrapper p:nth-last-of-type(1) {
  font-weight: 300;
  color: var(--color-text);
}

.company-content-wrapper img,
.company-content-wrapper > aside {
  flex: 1 1 300px;
  /* min-width: 300px; */
}

.company-content-wrapper > aside {
  display: flex;
  flex-direction: column;
}

.useful-links-wrapper {
  align-items: center;
  justify-content: center;
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); */
  grid-template-columns: 1fr 1fr 1fr;
  padding: 200px 5%;
  gap: 25px;
}

.useful-link {
  padding: 3rem;
  color: var(--color-text);
  background-color: var(--main-bg-color);
  aspect-ratio: 1;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  transition: 0.6s ease-in-out;
}

.useful-link:hover {
  box-shadow: 0 18px 35px rgba(50, 50, 90, 0.1), 0 8px 15px rgba(0, 0, 0, 0.07);
  transform: translateY(-5px);
}

.useful-link H3 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--color-headers);
}

.useful-link p:nth-of-type(1) {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-grey);
}

.useful-link p {
  font-weight: 300;
  line-height: 25px;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.useful-link > p:last-of-type {
  border-top: 1px solid var(--color-grey);
  padding-top: 30px;
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.9rem;
}

.useful-links-container {
  background-color: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.cart-wrapper {
  position: fixed;
  top: 0;
  right: -1000px;
  height: 100vh;
  background-color: #fff;
  border-left: 1px solid #ddd;
  padding: 20px;
  z-index: 1002;
  transition: right 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.unbundle-btn {
  border: none;
  transform: rotate(45deg);
  background-color: transparent;
  font-size: 1.2rem;
  margin-left: 20px;
}

.cart-wrapper.active {
  right: 0;
  width: 45%;
  height: 100vh;
  display: flex;
  justify-content: space-between;
}

.demo-overlay,
.overlay {
  opacity: 0;
  /* transform: scale(0.95); */
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 22;
}

.demo-overlay.show,
.overlay.show {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.demo-modal {
  background-color: #fff;
  padding: 30px;
  min-width: 50%;
  position: relative;
  /* border-radius: 6px; */
  transition: transform 0.3s ease;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  width: fit-content;
}

.demo-modal-content {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  width: fit-content;
  margin: 0 auto;
}

/* .demo-modal-content img {
  max-width: 50%;
} */

.demo-modal-content img {
  max-width: 70vw;
  /* max-height: 80vh; */
  width: auto;
  height: auto;
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/****** DEMO DOWNLOAD FORM *******/

.form-demo-container {
  padding: 3rem 3rem 2rem 3rem;
  font-weight: 300;
}

.form-demo-container label div {
  margin: 0;
}

.form-demo-container label span {
  margin-left: 5px;
  color: red;
}

.form-demo-container button {
  margin-top: 40px;
}

.form-demo-container H3 {
  font-weight: 400;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.form-demo-container div {
  margin: 30px 0;
}

.form-demo-container input,
.form-country-wrapper select,
.form-email-wrapper select {
  height: 30px;
  padding: 5px;
  font-weight: 300;
}

.form-name-wrapper,
.form-country-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.form-name-wrapper label {
  min-width: 50%;
}

.form-name-wrapper label,
.form-email-wrapper label,
.form-country-wrapper label {
  display: flex;
  flex-direction: column-reverse;
  gap: 5px;
  font-size: 0.9rem;
}

.form-email-wrapper label {
  width: 100%;
}

.profession-wrapper {
  margin: 40px 0 20px 0;
}

.profession-wrapper div {
  margin: 0;
  display: flex;
  gap: 15px;
}

.profession-wrapper div label {
  display: flex;
  align-items: center;
  gap: 5px;
}

input[type='radio']:checked {
  accent-color: black;
}

.tooltip-container {
  position: relative;
  display: inline-block;
}

.tooltip-text {
  visibility: hidden;
  position: absolute;
  bottom: 100%;
  background-color: #333;
  color: #fff;
  padding: 5px 8px;
  border-radius: 4px;
  white-space: nowrap;
  font-size: 10px;
  z-index: 100;
  opacity: 0;
  transition: opacity 0.2s;
}

.tooltip-container:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

.form-language-wrapper {
  display: flex;
  flex-direction: column;
}

.form-language-wrapper select {
  margin-top: 5px;
  height: 30px;
  padding: 5px;
  max-width: 50%;
  font-weight: 300;
}

/******** SEARCH PAGE *********/

small {
  font-size: 1.1rem;
  font-weight: 300;
}

.search-link {
  text-decoration: underline;
  font-size: 1.3rem;
  color: var(--main-color);
  font-weight: 400;
}

.section-search-results {
  width: 70%;
  min-height: 100vh;
  margin: 0 auto;
  margin-bottom: 40px;
}

.section-search-results h1 {
  margin: 40px 0;
  font-size: 2rem;
  font-weight: 400;
}

.section-search-results li {
  margin-bottom: 20px;
}

.pagination-controls {
  min-width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.pagination-controls span {
  font-weight: 300;
}

.pagination-controls button {
  width: 15% !important;
  margin: 0 !important;
  padding: 10px 30px;
}

/************ FOOTER  *************/

footer {
  background-color: var(--main-color);
  color: var(--main-bg-color);
}

footer h4 {
  margin-bottom: 30px;
  font-weight: 500;
  color: var(--main-bg-color);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  padding: 180px 5rem 120px 5rem;
  font-weight: 300;
  gap: 50px;
  margin: 0 5rem;
  border-bottom: 0.5px solid var(--main-bg-color);
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 40px 5rem;
  font-weight: 300;
  font-size: 0.9rem;
}

.footer-logo-column {
  cursor: pointer;
  font-size: 3rem;
}

.footer-logo-column p {
  font-family: var(--logo-font);
}

.footer-top a {
  font-size: 0.9rem;
  color: var(--main-bg-color);
}

/*******LANGUAGE DROPDOWN*********/

.dropdown16 {
  position: relative;
  /* width: 200px; */
}

.dropdown16 input {
  position: absolute;
  opacity: 0;
  display: none;
}

.dropdown16 label {
  display: flex;
  align-items: center;
  font-size: 0.8rem;
  width: 100%;
  padding: 10px 10px;
  cursor: pointer;
  gap: 3px;
}

.dropdown16 div {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2px;
  text-transform: uppercase;
}

.dropdown16 .arrow-down {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--main-color);
  transition: transform ease-in-out 0.3s;
}

.dropdown16-links {
  position: absolute;
  list-style: none;
  width: 100%;
  padding-left: 0px;
  visibility: hidden;
  background-color: var(--color-section-bg-alt);
  transform: translateY(-10px);
  transition: transform ease 0.3s;
  z-index: 9999;
}

.dropdown16-links li a {
  display: block;
  font-size: 0.7rem;
  padding: 13px 10px;
  color: var(--color-primary);
  margin: 2px 0;
  text-decoration: none;
  text-transform: uppercase;
}

.dropdown16 input:checked ~ .dropdown16-links {
  visibility: visible;
  transform: translateY(0);
}

.dropdown16-links li:hover a {
  color: white;
}

.dropdown16 input:checked + label .arrow-down {
  transform: rotate(180deg);
}

.dropdown16-links li:hover {
  background-color: var(--main-color);
}

/**** LOADER ***/

.loader3 {
  display: none;
}

.loader3.show {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}

.loader3::after {
  content: '';
  width: 80px;
  height: 80px;
  border: 5px solid var(--color-primary-tint);
  border-top-color: var(--color-section-bg-alt);
  border-radius: 50%;
  animation: loader3-animation 1s ease-out infinite;
}

@keyframes loader3-animation {
  from {
    transform: rotate(0turn);
  }

  to {
    transform: rotate(1turn);
  }
}

/*
    MEDIA QUERIES
  */

/* STYLES FOR MOBILE BROWSERS SMALLER THAN 480PX */
@media only screen and (max-width: 480px) {
  .hero-container {
    flex-direction: column-reverse;
  }

  .hero-text,
  .hero-image {
    flex: 1;
  }

  .hero-image {
    padding: 0 6%;
  }

  .hero-text {
    padding: 0rem 1.5rem 5rem 1.5rem;
    font-size: 1rem;
    margin-top: 20px;
    margin-bottom: 0;
  }

  .hero-image img {
    margin-bottom: 0;
    border: none;
    /* display: none; */
  }

  .hero-btn,
  .all-software-btn {
    width: 60%;
  }

  .hero-btn {
    padding: 3%;
    width: 100%;
    padding: 15px 48px;
  }

  /*
    COMPANY CONTENT SECTION
  */

  .company-content-container {
    padding: 2rem;
  }

  .company-content-container img {
    max-width: 100%;
  }

  .company-content-wrapper {
    max-width: 100%;
    margin: 40px 0;
  }

  .company-content-container article:nth-of-type(2) {
    flex-direction: column-reverse;
  }

  #mobile-reverse img {
    flex: 0 0 auto;
    max-width: 100%;
    height: auto;
  }

  .company-content-title {
    font-size: 1.2rem;
  }

  /*
    MOBILE NAV
  */

  .nav-container {
    display: none;
  }

  .mobile-logo {
    margin-right: auto;
  }

  .logo {
    font-size: 2rem;
    font-weight: 300;
  }

  .mobile-topbar {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
  }

  .mobile-top-icons {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 5px 20px;
  }

  .mobile-icons {
    display: flex;
    align-items: center;
    min-width: 100%;
    background-color: #f8f9fa;
    padding: 12px 20px;
    border-top: 0.5px solid var(--color-grey);
  }

  .mobile-top-icons img {
    width: 20px;
  }

  .contact-us-btn {
    text-transform: capitalize;
    padding: 5px 18px;
  }

  .dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .mobile-icon {
    width: 30px;
    height: 30px;
    cursor: pointer;
  }

  .mobile-search input {
    width: 100%;
    padding: 8px;
  }

  .mobile-top-icons form {
    display: flex;
    position: relative;
    align-items: center;
  }

  .mobile-menu-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 100%;
    pointer-events: none;
    z-index: 1000;
  }

  .mobile-menu-container {
    position: fixed;
    top: 140px;
    /* top: 120px; */
    /* right: -420px; */
    /* width: 370px; */
    /* max-height: 80vh; */
    overflow-y: auto;
    background-color: var(--main-bg-color);
    padding: 20px;
    z-index: 1000;
    transition: right 0.3s ease-in-out;
    border-radius: 10px 0 0 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;

    /* right: -1000px; */
    right: -100%;
    height: 100%;
    pointer-events: auto;
    overflow-y: auto;
    /* z-index: 1002; */
    /* transition: right 0.3s ease-in-out; */
    /* display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0; */
  }

  .mobile-menu-container.active {
    right: 0;
    /* height: 100%; */
    width: 100%;

    /* height: 100vh; */
    /* display: flex;
    justify-content: space-between; */
  }

  .mobile-menu-container ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-transform: uppercase;
  }

  .mobile-li,
  .mobile-a {
    border-bottom: 1px solid var(--color-accent);
  }

  .mobile-search {
    margin-bottom: 10px;
  }

  .mobile-menu-container a {
    color: var(--color-primary);
    font-size: 0.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5px;
    cursor: pointer;
  }

  .mobile-submenu-wrapper.hide {
    display: none;
  }
  .mobile-submenu-wrapper.show {
    display: block;
  }

  .feature-icon {
    font-size: 1.5rem;
  }

  .custom-collapse.active .feature-icon {
    transform: rotate(45deg);
  }

  body.mobile-menu-open {
    overflow: hidden;
    height: 100vh;
  }

  .mobile-menu ul {
    list-style: none;
    padding: 0;
  }

  .mobile-menu li {
    margin: 10px 0;
    cursor: pointer;
  }

  .mobile-submenu {
    margin-top: 10px;
    padding-left: 15px;
  }

  .sub-menu {
    flex-direction: column;
  }

  .hamburger {
    position: relative;
    z-index: 1001;
  }

  #hamburger-input {
    display: none;
  }

  .hamburger label {
    position: relative;
    display: block;
    cursor: pointer;
  }

  .hamburger label span,
  .hamburger label span:before,
  .hamburger label span:after {
    display: block;
    width: 25px;
    height: 1.7px;
    opacity: 1;
    transition: var(--transition);
    background-color: var(--main-color);
  }

  .hamburger label span:before,
  .hamburger label span:after {
    position: absolute;
    content: '';
  }

  .hamburger label span:before {
    top: -8.4px;
  }

  .hamburger label span:after {
    top: 8.4px;
  }

  .hamburger label input:checked + span {
    background-color: transparent;
  }

  .hamburger label input:checked + span:before,
  .hamburger label input:checked + span:after {
    top: 0;
    margin-top: -9.4px;
  }

  .hamburger label input:checked + span:before {
    transform: translateY(8.4px) rotate(-45deg);
  }

  .hamburger label input:checked + span:after {
    transform: translateY(8.4px) rotate(45deg);
  }

  .cart-count {
    font-size: 0.8rem;
  }

  .cart-wrapper {
    padding-bottom: calc(1rem + env(safe-area-inset-bottom));
  }

  /**** USEFUL LINKS SECTION ****/

  .useful-links-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  /*
    HERO SECTION
  */

  .hero-btn {
    margin: 20px 0;
  }

  .main-btns {
    width: 100% !important;
    padding: 4% !important;
  }

  /*
    CART
  */

  /* .cart-wrapper {
    top: 100px !important;
  } */

  .cart-wrapper.active {
    width: 100% !important;
  }

  footer {
    padding: 24px 0;
  }

  .footer-top,
  .footer-bottom {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    margin: 0;
  }

  .footer-column ul {
    gap: 8px;
  }

  .footer-top {
    gap: 30px;
  }

  .footer-bottom {
    gap: 5px;
  }

  footer h4 {
    margin-bottom: 10px;
  }

  input,
  textarea,
  select {
    font-size: 1rem;
  }

  input::placeholder,
  textarea::placeholder {
    font-size: 0.7rem;
  }
}

/***************************
  FONTS
****************************/

@font-face {
  font-family: 'Revue';
  src: url('../fonts/revue/Revue.woff2') format('woff2'),
    url('../fonts/revue/Revue.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

menu.dev-menu {
  position: fixed;
  left: 0;
  display: flex;
  list-style: none;
  top: 0;
  right: 0;
  flex-direction: row;
  background-color: white;
  z-index: 1000;
  column-gap: 1em;
}

menu.dev-menu > li {
  display: none;
}
menu.dev-menu:hover > li,
menu.dev-menu:focus-within > li {
  display: block;
  flex-basis: fit-content;
  text-align: center;
}
menu.dev-menu::after {
  display: block;
  height: 4px;
  position: absolute;
  left: 0;
  right: 0;
  background: black;
  content: '-';
}

menu.dev-menu input {
  cursor: pointer;
}
