* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #0a0f14;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100vh;
  text-align: center;
  /* overflow-x: hidden; */
}

html {
  overflow-y: scroll;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.allButFooter {
  flex-grow: 1;
}

header {
  align-items: center;
  background-color: #0a0f14;
  color: white;
  padding: 50px 0;
  width: 100%;
  text-align: center;
}

nav ul {
  list-style: none;
  text-align: center;
}

nav ul li {
  display: inline;
  margin: 0 20px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 19px;
  padding: 10px 20px;
  border-radius: 5px;
  border: 3px solid transparent;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

nav ul li a:hover {
  border-radius: 100px;
  margin: 0 1px;
  border-left: 2px solid #00bcd4;
  border-right: 2px solid #00bcd4;
  border-top: 2px solid #00bcd4;
  border-bottom: 2px solid #00bcd4;
  color: #00bcd4;
  box-shadow: 0 0 15px #00bcd466;
  transition: color 0.3s ease, transform 0.3s ease, border 0.3s ease;
}

main {
  width: 100%;
  flex-grow: 1;
  padding: 20px;
  text-align: center;
  position: relative;
}

@media screen and (max-width: 768px) {
  nav ul li {
    display: block;
    margin: 10px 0;
  }
  .review {
    margin: 10px 0;
  }
}

#welkom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 250px;
  margin: 40px 0 125px;
}

#welkom h1 {
  font-size: 3rem;
  color: #ffffff;
}

#welkom p {
  font-size: 1.5rem;
  color: #9c9c9c;
}

/* Over Mij Sectie */
#over_mij {
  width: 100%;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 400px;
  background-color: #0a0f14;
}

.foto-wisse {
  position: absolute;
  left: 25%;
  top: 0%;
  bottom: 0%;
}

.foto-wisse img {
  border: 3px solid #00bcd4;
  border-radius: 40%;
  max-width: 100%;
  width: 360px;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);
}

#intro-head {
  color: #00bcd4;
  position: relative;
  left: 78.6%;
  top: 7%;
  font-size: 22px;
  padding-bottom: 10px;
}

#intro-head2 {
  color: #fff;
  position: relative;
  left: 78.6%;
  top: 8%;
  font-size: 50px;
}

#intro-container {
  position: absolute;
  left: 78.8%;
  top: 48%;
  width: 45vh;
}

#intro {
  color: #b0b0b0;
  font-size: 18px;
  line-height: 1.6;
  text-align: left;
  margin-right: 5%;
}

/* Reviews */

#reviews {
  max-width: 900px;
  margin: 50px auto;
  padding: 30px;
  background: #1a1a1a;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

h1 {
  color: #00bcd4;
  font-size: 2rem;
  margin-bottom: 20px;
}

.average-rating {
  text-align: center;
  margin-bottom: 40px;
}

.stars-container {
  display: inline-block;
  margin-top: 10px;
}

.stars i {
  color: #fdc91b;
  font-size: 1.8rem;
  margin: 0 3px;
}

.sort-options {
  margin-bottom: 30px;
}

.dropdown {
  display: inline-block;
  position: relative;
}

/* Dropdown Button Styles */
.dropbtn {
  background-color: #00bcd4; /* Brighter blue */
  color: white;
  padding: 12px 30px; /* Adjusted padding for consistency */
  font-size: 16px;
  border: none;
  cursor: pointer;
  width: 250px; /* Ensure the button is wide enough */
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Added shadow for better depth */
}

.dropbtn:hover {
  background-color: #0288d1; /* Darker blue on hover */
  transform: translateY(-2px); /* Button lift effect */
}

/* Dropdown Menu */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #1a1a1a;
  min-width: 250px;
  z-index: 1;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s 0.3s;
}

/* Dropdown Toggle */
.dropdown:hover .dropdown-content,
.dropdown.show .dropdown-content {
  display: block;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease;
}

.dropdown-content a {
  color: #fff; /* White text */
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: 16px;
  border-radius: 5px;
  transition: background-color 0.2s ease;
}

.dropdown-content a:hover {
  background-color: #333; /* Darker background on hover */
  color: #00bcd4; /* Change text color on hover */
}

/* Dropdown Toggle */
.dropdown:hover .dropdown-content {
  display: block;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease;
}

.dropdown:hover .dropbtn {
  background-color: #0288d1; /* Keep the hover effect on button */
}

/* Show dropdown when clicked */
.dropdown-content.show {
  display: block;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease;
}

.review {
  background-color: #0a0f14;
  padding: 20px;
  margin: 15px 0;
  border-left: 4px solid #00bcd4;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.review:hover {
  transform: translateX(5px);
}

.comment {
  color: #d1d1d1;
  font-size: 1.1rem;
  margin: 10px 0;
}

.reviewer {
  display: flex;
  justify-content: space-between;
  color: #00bcd4;
  font-size: 0.9rem;
  margin-top: 15px;
}

/* Statistieken */
#stats {
  background-color: #0a0f14;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 70px;
  padding: 20px;
  height: 200px;
  margin-top: 40px;
  position: relative;
  top: 900px;
  z-index: 1;
}

.stat-item {
  background-color: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  width: 350px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.stat-item i {
  font-size: 40px;
  color: #00bcd4;
  margin-bottom: 12px;
}

.stat-item h1 {
  font-size: 30px;
  font-weight: bold;
  font-family: Arial, sans-serif;
  color: #fff;
  -webkit-text-stroke: 1px #fff;
  margin: 0;
}

.stat-item h2 {
  font-size: 30px;
  font-weight: bold;
  font-family: Arial, sans-serif;
  color: #b0b0b0;
  -webkit-text-stroke: 1px #b0b0b0;
  margin: 0;
}

.fa-clock {
  transform: translateX(-5px);
}

/* Cards */
#cards {
  position: absolute;
  top: 1900px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 120px;
  padding: 40px 20px;
  background-color: #0a0f14;
}

.card {
  background-color: #1a1a1a;
  padding: 20px;
  border: 2px solid #00bcd4;
  border-radius: 10px;
  width: 300px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
  transform: scale(1.2);
}

.card:hover {
  transform: scale(1.25);
}

.card-icon {
  font-size: 50px;
  color: #00bcd4;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.card p {
  font-size: 1rem;
  color: #b0b0b0;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  background-color: #00bcd4;
  color: #0a0f14;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #0097a7;
}

.contact-container {
  background: #1a1a1a;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  width: 100%;
  max-width: 500px;
  margin: 20px 0;
}

.contact-container h1 {
  color: #00bcd4;
  margin-bottom: 20px;
  font-size: 2.5rem;
}

.contact-container p {
  color: #b0b0b0;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  background: #0a0f14;
  border: 2px solid #00bcd4;
  border-radius: 8px;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

input:focus,
textarea:focus {
  border-color: #008c9e;
  box-shadow: 0 0 10px #00bcd433;
}

button {
  background: #00bcd4;
  color: white;
  border: none;
  padding: 15px 25px;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover {
  background: #008c9e;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 188, 212, 0.3);
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: white;
  text-decoration: none;
  padding: 15px 25px;
  border-radius: 8px;
  font-size: 1.1rem;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.whatsapp-btn i {
  margin-right: 8px;
}

.whatsapp-btn:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

#faq {
  max-width: 700px;
  margin: 40px auto;
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#faq h1 {
  text-align: center;
  color: #00bcd4;
  margin-bottom: 20px;
}

.faq-item {
  margin-bottom: 10px;
  border-bottom: 1px solid #333;
}

.faq-question {
  background-color: transparent;
  border: none;
  color: #fff;
  font-size: 18px;
  width: 100%;
  padding: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  color: #fff;
}

.icon {
  font-size: 22px;
  color: #00bcd4;
  transition: transform 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  text-align: left;
  opacity: 0;
  padding: 0 15px;
  color: #b6b6b6;
  font-size: 16px;
  transition: all 0.3s ease;
}

.faq-answer.active {
  opacity: 1;
  max-height: 400px;
  padding: 10px 20px;
  border-bottom: 1px solid #333;
}

.faq-link {
  color: #00bcd4;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.faq-link:hover {
  color: #0097a7;
  text-decoration: underline;
}

#aanpak {
  position: relative;
  padding: 100px 20px;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

#aanpak::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/Media/aanpak-bg.jpg") no-repeat center center/cover;
  opacity: 0.15;
  z-index: 0;
}

#aanpak h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  animation: fadeInDown 1s ease-out forwards;
}

#aanpak p {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleUp {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

#welkom {
  animation: fadeIn 2s ease-out;
}

#over_mij {
  animation: fadeIn 1.5s ease-out;
}

#stats .stat-item {
  animation: scaleUp 1s ease-out;
}

#cards .card {
  animation: fadeInUp 1s ease-out;
  animation-fill-mode: both;
  opacity: 0;
}

header nav ul li {
  opacity: 0;
  animation: fadeIn 0.5s ease-out forwards;
}

header nav ul li:nth-child(1) {
  animation-delay: 0.1s;
}
header nav ul li:nth-child(2) {
  animation-delay: 0.2s;
}
header nav ul li:nth-child(3) {
  animation-delay: 0.3s;
}
header nav ul li:nth-child(4) {
  animation-delay: 0.4s;
}
header nav ul li:nth-child(5) {
  animation-delay: 0.5s;
}
header nav ul li:nth-child(6) {
  animation-delay: 0.6s;
}

.prijs {
  max-width: 600px;
  margin: 40px auto;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.prijs::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #00bcd4, #008c9e);
  z-index: 0;
  opacity: 0.1;
}

.prijs h2 {
  position: relative;
  z-index: 1;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #00bcd4;
}

.prijs p {
  position: relative;
  z-index: 1;
  font-size: 1.2rem;
  color: #fff;
}

.stappen {
  max-width: 700px;
  margin: 40px auto;
  font-family: "Arial", sans-serif;
  text-align: left;
}

.stap {
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.prijs {
  border-radius: 50px;
  overflow: hidden;
}

.stap-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 18px 24px;
  font-size: 18px;
  font-weight: 600;
  background: linear-gradient(90deg, #00bcd4, #008c9e);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.stap-header:hover {
  background: linear-gradient(90deg, #008c9e, #006f7a);
}

.stap-header .icon {
  transition: transform 0.3s ease;
}

.stap-content {
  max-height: 0;
  overflow: hidden;
  color: black;
  background-color: #f9f9f9;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
  border-top: 1px solid #ddd;
}

.stap-content.active {
  max-height: 300px;
  padding: 20px 24px;
}

.cta {
  position: relative;
  text-align: center;
  margin: 40px auto;
  padding: 50px 30px;
  background: linear-gradient(135deg, #00bcd4, #008c9e);
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3) 0%,
    transparent 70%
  );
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0.9;
  pointer-events: none;
}

.cta:hover::before {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.9;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.9;
  }
}

.cta h2 {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  font-size: 2rem;
}

.cta p {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  font-size: 1.2rem;
}

.cta .btn {
  position: relative;
  z-index: 1;
  display: inline-block;
  background: #fff;
  color: #008c9e;
  padding: 12px 30px;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 140, 158, 0.3);
}

footer {
  position: relative;
  text-align: center;
  padding: 30px;
  border-top: 2px solid #00bcd433;
  top: 120%;
}

#footer2 {
  position: relative;
  text-align: center;
  padding: 30px;
  border-top: 2px solid #00bcd433;
  top: 25%;
}

#footer3 {
  position: relative;
  text-align: center;
  padding: 30px;
  border-top: 2px solid #00bcd433;
  top: 0%;
}

#footer4 {
  position: relative;
  text-align: center;
  padding: 30px;
  border-top: 2px solid #00bcd433;
  top: 0%;
}

#footer5 {
  position: relative;
  text-align: center;
  padding: 30px;
  border-top: 2px solid #00bcd433;
  top: 42%;
}

footer p {
  color: #fff;
  font-size: 0.9rem;
}

footer strong {
  color: #00bcd4;
  font-weight: normal;
}

.hidden {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.show {
  opacity: 1;
  transform: translateY(0);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}

.logo {
  height: 50px;
}

.logo img {
  height: 150%;
  width: auto;
  display: block;
  padding-right: 10rem;
  padding-bottom: 0.5rem;
}

/* Hamburger rechts */
.hamburger {
  position: absolute;
  right: 4rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  cursor: pointer;
  color: white;
  display: none;
}
.close-btn {
  font-size: 2.5rem;
  color: white;
  cursor: pointer;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  user-select: none;
  display: none;
}
/* Nav links mooi gecentreerd */
.nav-links {
  flex: 0;
  display: flex;
  justify-content: center;
}

.nav-links ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #00ccff;
}
header {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  background-color: #0a0f14;
  padding: 0 2rem;
  margin-top: 80px;
}

/* Media queries*/

@media screen and (max-width: 768px) {
  #stats,
  #cards {
    flex-direction: column; /* Stapel items verticaal */
    align-items: center;
  }
}

@media screen and (min-width: 769px) {
  #stats {
    flex-direction: row; /* Terug naar horizontaal op grotere schermen */
  }
  #cards {
    flex-direction: row;
  }
}

@media screen and (max-width: 800px) {
  .foto-wisse img {
    max-width: 250px; /* Kleinere foto */
  }
  footer {
    top: 220%;
  }
  #intro-container {
    top: 100%;
    left: 15%;
    max-width: 90%;
  }
  #intro {
    margin-bottom: 10%;
  }
  #intro-head {
    top: 80%;
    left: 15%;
  }
  #intro-head2 {
    top: 80%;
    left: 15%;
  }

  header {
    align-items: center;
    text-align: center;
    background-color: #0a0f14;
    color: white;
    padding: 50px 0px;
    width: 100%;
  }

  nav ul {
    display: none;
    list-style: none;
    text-align: center;
  }
  nav ul li a {
    font-size: 16px; /* Kleinere tekst */
    padding: 8px 12px; /* Kleinere padding */
  }

  nav ul li {
    margin: 0 8px; /* Minder ruimte tussen items */
  }

  .logo img {
    height: 70px;
    width: auto;
  }
  header {
    justify-content: space-between; /* logo links, hamburger rechts */
    padding: 0 1rem;
  }

  .logo {
    position: static;
    transform: none;
    height: 35px;
  }

  /* .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
  } */

  /* Toon wanneer actief */
  .nav-links.active {
    display: flex;
  }

  .nav-links ul {
    flex-direction: column;
    gap: 1.5rem;
  }

  .hamburger {
    display: block;
    font-size: 2.2rem;
    color: white;
    cursor: pointer;
    user-select: none;
  }
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    height: 45vh;
    width: 250px;
    background-color: #222;
    color: white;
    padding: 2rem;
    padding-right: 4rem;
    padding-top: 4rem;
    z-index: 1000;
    overflow-y: auto;
    transition: transform 0.3s ease;
    transform: translateX(100%);
  }

  /* Actieve staat, menu komt in beeld */
  .nav-links.active {
    display: block;
    transform: translateX(0);
  }

  /* Close knop */
  .close-btn {
    cursor: pointer;
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
  }
}

/* Extra aanpassing voor schermen tot 500px */
@media screen and (max-width: 500px) {
  #intro-head,
  #intro-head2,
  #intro {
    font-size: 1.1rem; /* Kleinere tekst */
  }

  header {
    align-items: end;
    background-color: #0a0f14;
    color: white;
    padding: 50px 0;
    width: 100%;
    text-align: center;
  }

  nav ul {
    list-style: none;
    text-align: center;
  }

  nav ul li {
    display: inline;
    margin: 0 20px;
  }

  nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 19px;
    padding: 10px 20px;
    border-radius: 5px;
    border: 3px solid transparent;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }

  nav ul li a:hover {
    border-radius: 100px;
    margin: 0 1px;
    border-left: 2px solid #00bcd4;
    border-right: 2px solid #00bcd4;
    border-top: 2px solid #00bcd4;
    border-bottom: 2px solid #00bcd4;
    color: #00bcd4;
    box-shadow: 0 0 15px #00bcd466;
    transition: color 0.3s ease, transform 0.3s ease, border 0.3s ease;
  }
}

/* Media queries*/
