/* Fonts */
:root {
  --default-font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff; /* White Background color for the entire website, including individual sections */
  --apas-red: #ff0000; /* Red shade of APAS */
  --apas-black: #000000; /* Black shade of APAS */
  --apas-light-red: #ec2227; /* Light Red shade of APAS */

  
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-mobile-background-color: #000000; /* Used as the background color for mobile navigation menu */
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--apas-black);
  background-color: var(--background-color);
  font-family: var(--default-font);
  overflow-x: hidden;
}

a {
  color: var(--background-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--apas-black), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--apas-black);
  font-family: var(--default-font);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--apas-black);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--background-color);
  border-color: var(--apas-black) transparent var(--apas-black) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--apas-black);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
  margin: 0 20px 20px;
}

.scroll-top i {
  font-size: 32px;
  color: var(--background-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--apas-black), transparent 20%);
  color: var(--background-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  background-color: var(--apas-black);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid
    color-mix(in srgb, var(--apas-black), transparent 85%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  height: 44px;
  width: auto;
  margin-right: 8px;
}

.header .btn-contact-us,
.header .btn-contact-us:focus {
  color: var(--background-color);
  background: var(--apas-red);
  font-size: 16px;
  font-weight: 600;
  padding: 10px 20px;
  margin-left: 10px;
  border: 2px solid var(--apas-red);
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.header .btn-contact-us:hover {
  background: var(--background-color);
  color: var(--apas-red);
  border-color: var(--apas-red);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-contact-us {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }

  .btn-container {
    text-align: center;
  }

  .header .btn-contact-us,
  .header .btn-contact-us:focus {
    display: inline-block;
    color: var(--background-color);
    background: var(--apas-red);
    font-size: 18px;
    padding: 10px 20px;
    border: 2px solid var(--apas-red);
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    margin: 20px auto;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--background-color);
    padding: 18px 15px;
    font-size: 16px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus,
  .btn-contact-us {
    color: var(--background-color);
  }

  .navmenu li:hover > a {
    color: var(--background-color);
  }

  .mobile-logo {
    display: none;
  }

  .logo-img {
    display: block;
  }

  .mobile-nav-active .navmenu {
    position: static;
  }

  .mobile-nav-active .navmenu ul {
    display: flex;
  }

  .mobile-nav-toggle {
    display: none;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .container-fluid.container-xl {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }

  .logo-img {
    display: block;
    margin: 0 auto;
  }

  .mobile-nav-toggle {
    color: var(--background-color);
    font-size: 25px;
    line-height: 0;
    margin-left: 10px;
    cursor: pointer;
    transition: color 0.3s, transform 0.3s ease;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 0;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--background-color);
    padding: 20px 20px 20px;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(
      in srgb,
      var(--background-color),
      transparent 90%
    );
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--apas-black);
    color: var(--background-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--apas-black);
    color: var(--apas-black);
    transform: rotate(180deg);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: var(--background-color);
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
    transform: rotate(180deg);
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
  }

  .mobile-nav-active .mobile-nav-toggle {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f00d";
  }

  .mobile-nav-toggle {
    transition: color 0.3s ease, transform 0.3s ease, font-size 0.3s ease;
  }

  .mobile-logo {
    display: block;
    margin: 25px auto;
    padding-bottom: 50px;
    text-align: center;
    max-height: 110px;
    width: auto;
  }
}

/*--------------------------------------------------------------
# Global Nav Link
--------------------------------------------------------------*/

.nav-link {
  text-decoration: none;
  color: var(--background-color);
}

.nav-link:hover {
  text-decoration: none;
  color: var(--background-color);
  font-weight: 800;
}

.nav-link.active {
  text-decoration: underline;
  text-decoration-thickness: 4px;
  text-underline-offset: 8px;
  color: var(--background-color);
  font-weight: 800;
  justify-content: center;
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 76px;
  }
}

/*--------------------------------------------------------------
# home Section
--------------------------------------------------------------*/
/*Desktop view*/
.home {
  width: 100%;
  min-height: 90vh;
  display: flex;
  align-items: center;
  /*text-align: center;*/
  justify-content: center;
  position: relative;
  padding: 60px;
  overflow: hidden;
}

.home-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.container {
  z-index: 2;
}

.home-desc .home-logo {
  height: 100px;
  width: auto;
  margin-bottom: 5%;
}

.sub-title {
  font-size: 18px;
  color: white;
  font-weight: 400;
}

.home-desc h1 {
  font-size: 48px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
}

.description {
  font-size: 18px;
  color: #ffffffb3;
  margin-bottom: 20px;
  line-height: 1.6;
}

.highlight-box {
  background-color: var(--apas-black);
  padding: 20px;
  border-radius: 0 20px 0 20px;
  font-size: 18px;
  color: white;
  font-weight: 500;
  margin-bottom: 30px;
}

.btn-container {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

.btn-get-started {
  background: var(--background-color);
  color: var(--apas-red);
  font-size: 16px;
  font-weight: 600;
  padding: 12px 60px;
  border-radius: 0 16px 0 16px;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.2s;
}

.btn-get-started:hover {
  background: var(--apas-red);
  color: var(--background-color);
  transform: scale(1.05);
}

.inline-info {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.acquirer-pop {
  display: none;
  position: fixed;
  background-color: var(--background-color);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1001;
  width: 80%;
  max-width: 600px;
  margin-top: 30px;
}

.acquirer-pop::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 20px;
  height: 20px;
  background-color: var(--background-color);
  border-left: 1px solid #ccc;
  border-top: 1px solid #ccc;
}

.home-bulb {
  width: 40px;
}

.home-acquirer {
  color: #ffcc00;
  font-size: 16px;
  text-decoration: underline;
  text-decoration-color: var(--background-color);
  text-underline-offset: 10px;
  letter-spacing: 1px;
  margin-top: 20px;
}

.rocket-image {
  max-width: 45vw;
  height: auto;
  position: absolute;
  bottom: 0;
  right: 5%;
}

/*Mobile view*/
@media (max-width: 992px) {
  .home {
    padding: 40px 20px;
    align-items: baseline;
  }

  .home-desc .home-logo{
    height: 50px;
    width: auto;
    margin: 0 0 30px 0;
  }

  .home-desc {
    text-align: left;
    margin-bottom: 300px;
  }

  .sub-title {
    font-size: 12px;
  }

.btn-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  gap: 10px;
}

.inline-info {
  display: flex;
  flex-direction: row; 
  gap: 5px; 
}

.btn-get-started {
  white-space: nowrap;
  display: inline-block;
}

.home-acquirer {
  margin: 0;
  font-size: 14px;
}
  .rocket-image {
    right: 5%;
  }
}

/* Mobile devices */
@media (max-width: 768px) {
  .home-desc h1 {
    font-size: 32px;
    line-height: 1.6;
    letter-spacing: 1px;
  }

  .description {
    font-size: 16px;
  }

  .highlight-box {
    font-size: 14px;
    padding: 15px;
    line-height: 30px;
  }

  .btn-get-started {
    padding: 10px 40px;
    width: 100%;
    text-align: center;
  }
  
  .home-logo {
    width: 80%;
  }
  
  .rocket-image {
    max-width: 100%;
  }
}

/* Small phones (max-width: 480px) */
@media (max-width: 480px) {
  .home-desc h1 {
    font-size: 30px;
  }

  .description {
    font-size: 14px;
    line-height: 28px;
  }

  .btn-get-started {
    width: 40%;
    font-size: 14px;
    padding: 10px;
  }

  .acquirer-pop {
    width: 70%; 
    left: 0; 
    right: 0; 
    top: 50%;
    transform: translateY(-50%);
    border-radius: 20px;
    padding: 30px 20px;
    height: auto;
    max-height: 90vh;
    box-sizing: border-box; 
  }

  .acquirer-pop::before {
    display: block; 
  }
}


/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--background-color);
}

.features h2 {
  margin: 80px auto 80px 10%;
  font-weight: 700;
  text-align: left;
  width: 80%;
}

.carousel-container {
  width: 80%;
  margin: 40px auto;
  position: relative;
  overflow: visible;
}

.carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 0 30px 0 30px;
}

.card {
  flex: 0 0 calc(20% - 20px);
  transition: transform 0.5s;
  background: none;
  color: black;
  padding: 0;
  border-radius: 24px;
  border: none;
  text-align: center;
  position: relative;
  z-index: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card img {
  background: var(--apas-black);
  padding: 20px;
  border-radius: 24px;
  width: 90%;
  height: 300px;
  object-fit: contain;
}

.card div {
  background: var(--background-color);
  padding: 20px;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}

.card.active {
  background: var(--apas-black);
  color: white;
  z-index: 1;
  padding: 20px;
}

.card.active img {
  background: none;
  padding: 0;
}

.card h3 {
  color: var(--apas-red);
  font-size: 18px;
  text-align: left;
  font-weight: 700;
  width: 80%;
  margin: 20px 0 20px 0;
}

ul.bullet-list {
  list-style-type: disc;
  padding-left: 20px;
}

ul.bullet-list li {
  margin-bottom: 5px;
  text-align: left;
}

.card.active h3 {
  color: var(--background-color);
}

.nav-btn {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.indicators {
  margin-top: 10px;
  text-align: center;
}

.indicator {
  width: 10px;
  height: 10px;
  background: var(--apas-black);
  display: inline-block;
  margin: 0 5px;
  border-radius: 50%;
}

.indicator.active {
  background: var(--apas-red);
  width: 20px;
  border-radius: 30px;
}

@media (max-width: 768px) {
  .features h2 {
    font-size: 36px;
  }
    .cards {
        display: flex;
        overflow-x: auto;  
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        padding-bottom: 20px;
        justify-content: normal;
    }

    .cards::-webkit-scrollbar {
        display: none;
    }

    .card {
        flex: 0 0 auto;
        width: 80%;
        max-width: 320px;
    }

    #prevBtn, #nextBtn {
        display: none;
    }

    .indicators {
    display: none;
  }

  .card.active {
  padding: 0;
  background: none;
  color: var(--apas-black);
  }

  .card.active h3{
    color: var(--apas-red);
  }

  .card.active img{
    background: var(--apas-black);
  padding: 20px;
  border-radius: 24px;
  width: 90%;
  height: 300px;
  object-fit: contain;
  }
}


/*--------------------------------------------------------------
# Why APAS Section
--------------------------------------------------------------*/
.about {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--background-color);
  position: relative;
}

.about-bg {
  position: absolute;
  width: 95%;
  height: 80%;
  object-fit: cover;
  z-index: 0;
  border-top-left-radius: 80px 80px;
  border-bottom-right-radius: 80px 80px;
}

.text-content {
  text-align: center;
  position: relative;
  z-index: 2;
  margin-bottom: 50px;
  padding: 20px;
}

.text-content h1 {
  color: var(--background-color);
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 40px;
}

.about p {
  font-size: 20px;
  color: var(--background-color);
  text-align: center;
  margin: 10px 10% 0 10%;
  font-weight: 100;
}

.rounded-icons-container {
  display: flex;
  flex-wrap: wrap;
  width: 500px;
  position: relative;
  z-index: 2;
  justify-content: center;
  margin: 50px 0 250px 0;
}

.rounded-icon {
  width: 180px;
  height: 180px;
  position: relative;
  transition: transform 0.2s ease;
  margin: 7px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.2);
  flex-direction: column;
  text-align: center;
  padding: 20px;
}

.rounded-icon:hover {
  transform: scale(1.1);
}

.rounded-icon.top-left {
  background-color: var(--apas-light-red);
  border-radius: 60% 60% 5% 60%;
}

.rounded-icon.top-right {
  background-color: var(--background-color);
  border-radius: 60% 60% 60% 5%;
}

.rounded-icon.bottom-left {
  background-color: var(--background-color);
  border-radius: 60% 5% 60% 60%;
}

.rounded-icon.bottom-right {
  background-color: var(--apas-light-red);
  border-radius: 5% 60% 60% 60%;
}

.rounded-icon img {
  max-width: 100px;
  max-height: auto;
  margin-bottom: 10px;
}

.rounded-icon::before {
  content: attr(data-title);
  position: absolute;
  top: 40%;
  left: calc(100% + 20px);
  transform: translateY(-50%);
  width: 350px;
  font-size: 18px;
  font-weight: 700;
  color: white;
  display: block;
}

.rounded-icon::after {
  content: attr(data-description);
  position: absolute;
  top: calc(40% + 50px);
  right: calc(100% + 20px);
  transform: translateY(-50%);
  width: 350px;
  font-size: 14px;
  font-weight: 400;
  color: white;
  display: block;
}

.rounded-icon:hover::before {
  text-decoration: underline;
  text-decoration-color: var(--apas-red);
  text-decoration-thickness: 2px;
  text-underline-offset: 10px;
  letter-spacing: 1px;
}

.rounded-icon.text-top-left::before {
  left: auto;
  right: calc(100% + 120px);
  text-align: right;
}

.rounded-icon.text-top-left::after {
  left: auto;
  right: calc(100% + 120px);
  text-align: right;
}

.rounded-icon.text-top-right::before {
  left: auto;
  left: calc(100% + 120px);
  text-align: left;
}

.rounded-icon.text-top-right::after {
  left: auto;
  left: calc(100% + 120px);
  text-align: left;
}

.rounded-icon.text-bottom-left::before {
  left: auto;
  right: calc(100% + 120px);
  text-align: right;
}

.rounded-icon.text-bottom-left::after {
  left: auto;
  right: calc(100% + 120px);
  margin-top: 10px;
  text-align: right;
}

.rounded-icon.text-bottom-right::before {
  left: auto;
  left: calc(100% + 120px);
  text-align: left;
}

.rounded-icon.text-bottom-right::after {
  left: auto;
  left: calc(100% + 120px);
  text-align: left;
}

.rounded-icon::before {
  font-weight: 700;
}

.rounded-icon::after {
  font-weight: 100;
}

@media (max-width: 768px) {
  .about {
    width: auto;
    height: 80vh;
  }

  .about-bg {
    width: 90%;
  }
  .text-content h1 {
    font-size: 28px;
    margin: 18px 18px 0 0;
  }

  .text-content p {
    font-size: 18px;
    line-height: 24px;
    margin-top: 30px;
    letter-spacing: 0.5px;
    text-align: justify;
  }

  .rounded-icons-container {
    margin: 0;
  }
  }

/*--------------------------------------------------------------
# Contact Us Section
--------------------------------------------------------------*/
.container-contact {
  background: #ffffff;
  padding: 0 20px 40px 20px;
}

.container-contact h2 {
  font-size: 36px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 10px;
  letter-spacing: 1px;
  position: relative;
}

.container-contact h2::after {
  content: "";
  display: block;
  width: 40%;
  margin: 10px auto 0;
  border-bottom: 2px solid var(--apas-red);
  padding-top: 10px;
}

.container-contact p {
  font-size: 16px;
  font-weight: 500;
  color: var(--apas-black);
  width: 70%;
  margin: 0 auto;
  padding-top: 10px;
  text-align: center;
}

.cta-section {
  background: linear-gradient(to bottom, #d50000, #9b0000);
  padding: 40px 20px;
  color: #fff;
  text-align: center;
}

.cta-section p {
  font-size: 20px;
  font-weight: 500;
  color: var(--background-color);
  width: 70%;
  margin: 0 auto;
  padding-top: 10px;
  letter-spacing: 1.5px;
}

.cta-button {
  display: inline-block;
  background: black;
  color: white;
  padding: 12px 120px;
  font-size: 16px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s, transform 0.2s;
  margin-top: 40px;
  border-radius: 0 16px 0 16px;
  text-decoration: none;
}

.cta-button:hover {
  background: var(--background-color);
  color: var(--apas-black);
  transform: scale(1.05);
}

.cta-logo {
  display: block;
  margin: 0 auto;
  width: 10%;
  height: auto;
  margin-top: 40px;
}

@media (max-width: 600px) {
  .container-contact h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .container-contact p {
    font-size: 16px;
    width: 90%;
    text-align: justify;
  }

  .cta-section p {
    font-size: 20px;
    width: 90%;
  }

  .cta-button {
    font-size: 14px;
    padding: 10px 20px;
  }

  .cta-logo {
    width: 30%;
    margin-top: 20px;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--background-color);
  background-color: var(--apas-black);
  border-top: 1px solid color-mix(in srgb, var(--apas-red), transparent 80%);
  font-size: 14px;
  padding: 40px 20px;
  position: relative;
}

.footer .footer-top {
  padding: 20px 0;
}

.footer .footer-about {
  text-align: center;
}

.footer .footer-about img {
  max-height: 50px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.footer .footer-links,
.footer .footer-contact {
  padding-left: 20px;
  padding-right: 20px;
}

.footer .footer-links {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
}

.footer h4 {
  text-align: left;
  margin-left: 0;
  padding-bottom: 10px;
  font-size: 18px;
  font-weight: bold;
  color: var(--background-color);
}

.footer .footer-links ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  text-align: left;
}

.footer .footer-links ul li {
  padding: 5px 0;
}

.footer .footer-links ul a {
  color: var(--background-color);
  text-decoration: none;
}

.footer .footer-links ul a:hover {
  color: var(--background-color);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  font-size: 20px;
  color: var(--background-color);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-media {
  width: 30px;
  height: auto;
}

.footer .copyright {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: var(--warp-blue);
  color: var(--background-color);
}

.footer .copyright p {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .footer .footer-links,
  .footer .footer-contact {
    text-align: center;
  }

  .footer .footer-links h4,
  .footer .footer-contact h4 {
    text-align: center;
  }

  .footer .footer-links ul,
  .footer .footer-contact ul {
    text-align: center;
  }
}
