@import url("https://fonts.googleapis.com/css2?family=Italiana&display=swap");
* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

.html {
  scroll-behavior: smooth;
}

/*LOGO*/
.logo {
  height: 80px;
  width: 50px;
}

.name a {
  text-decoration: none;
  color: black;
  cursor: pointer;
}

.name a:hover {
  text-decoration: none;
  color: pink;
}

.logo:hover {
  filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.1));
}

.name {
  position: absolute;
  font-size: 25px;
  text-align: center;
  padding: 0px;
  font-family: "Italiana", sans-serif;
}

.a .name:hover {
  color: palevioletred;
}

.italiana-regular {
  font-family: "Italiana", sans-serif;
  font-weight: 40px;
  font-style: normal;
}

/* SVG BICYCLE */
svg {
  position: absolute;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
  padding: 0px 0px;
  padding-right: -60px;
  display: flex;
  animation-name: slideIn;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  /*animation-play-state: paused;*/
}

@keyframes slideIn {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(100%);
  }
}
/*SVG EARTH*/
.svg1 {
  width: 50px;
  position: absolute;
  padding: 0px 0px;
  margin-left: 15px;
  margin-top: 25px;
  animation-name: slideAt;
  animation-duration: 5s;
  animation-iteration-count: infinite;
}

@keyframes slideAt {
  0% {
    transform: translateX(15%);
  }
  100% {
    transform: translateX(100%);
  }
}
@media screen and (min-width: 768px) {
  .header {
    height: 80px;
    width: 100vw;
  }
}
/* NAVIGATION */
header {
  height: 80px;
  width: 100vw;
  display: flex;
  position: fixed;
  color: black;
  justify-content: space-between;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  padding: 0px 0px;
  background-color: rgba(255, 243, 243, 0.4);
}

.nav {
  width: 30vw;
  display: flex;
  justify-content: space-evenly;
  position: relative;
  align-items: center;
}

header li {
  list-style: none;
}

li a {
  color: rgb(0, 0, 0);
  padding: 10px;
  font-weight: bold;
  text-decoration: none;
  text-decoration: none;
}

li a:hover {
  background-color: #000000;
  border-radius: 4px;
  color: white;
}

/* SUBMENU FOR NAVIGAION */
.subMenu {
  display: none;
  position: absolute;
  width: 320px;
}

.course:hover .subMenu {
  display: block;
  box-shadow: 10px 10px 8px gray;
  padding: 15px;
  line-height: 30px;
  border-radius: 20px;
  background-color: rgba(255, 251, 253, 0.75);
}

.sb {
  position: relative;
}

.subMenu3 {
  display: none;
  position: absolute;
  width: 350px;
  right: 60px;
}

.course3:hover .subMenu3 {
  display: block;
  box-shadow: 10px 10px 8px gray;
  padding: 15px;
  background-color: rgba(255, 251, 251, 0.75);
  line-height: 30px;
  border-radius: 20px;
}

.sb3 {
  position: relative;
}

/* SIGN IN SVG NAVIGATION */
.course4 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.course4 svg {
  margin-top: -15px;
  margin-left: -15px;
  width: 28px;
  height: 28px;
  animation: none;
  transition: none;
}

.course4:hover {
  background-color: transparent;
  border-radius: 0;
}

.navigation svg {
  position: relative;
  top: 0;
}

.navigation_svg {
  width: 50px;
  height: 50px;
  background-color: none;
}

li a svg:hover {
  background-color: white;
  border-radius: 4px;
  padding: 5px;
}

@media screen and (max-width: 1440px) and (min-width: 768px) {
  .hamburger {
    display: none;
  }
}
/* Mobile Styles */
@media screen and (max-width: 768px) {
  header {
    background-color: transparent;
    box-shadow: none;
  }
  .nav {
    width: 20vw;
    flex-direction: column;
    background-color: rgba(255, 243, 243, 0.9);
    position: absolute;
    top: 0px;
    left: 80%;
    padding-top: 10px;
    box-shadow: none;
  }
  .nav li {
    width: 100%;
    text-align: center;
    padding: 10px 0;
  }
  /* Hide submenus by default */
  .subMenu, .subMenu3 {
    display: none;
    position: static;
    width: 100%;
    box-shadow: none;
    background-color: transparent;
    padding: 10px 0;
  }
  .course:hover .subMenu, .course3:hover .subMenu3 {
    display: block;
    padding-left: 0;
  }
  /* Hamburger Menu (Mobile Navigation Toggle) */
  .hamburger {
    display: block;
    cursor: pointer;
    padding: 10px;
    background-color: transparent;
    border: none;
  }
  .hamburger .bar {
    width: 25px;
    height: 3px;
    margin: 5px;
    background-color: #000;
    border-radius: 5px;
  }
  /* Toggle Menu Visibility */
  .nav.active {
    display: block;
  }
  .nav li a {
    font-size: 16px;
    padding: 15px 0;
  }
  /* Sign-in Icon */
  .course4 svg {
    width: 25px;
    height: 25px;
  }
}
/* Landing Page* main picture */
.content {
  height: 100vh;
  width: 100%;
  justify-content: center;
  align-items: center;
  position: relative;
  display: flex;
  text-align: center;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url("../pictures/mainpicture.jpeg");
}

.text {
  height: 60vw;
  font-size: 35px;
  justify-content: center;
  align-items: center;
  margin: 10px auto;
  padding: 30px 100px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5), 0 0 10px rgba(0, 0, 0, 0.3);
}

.text-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: black;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(255, 243, 243, 0.7);
  padding: 20px;
  box-shadow: 2px 2px 10px rgba(255, 243, 243, 0.7);
  animation: slideInFromLeft 2.5s ease-out forwards;
  background-color: rgba(255, 243, 243, 0.7);
  font-size: 50px;
  font-weight: "Italiana";
  font-family: "Italiana";
}

@keyframes slideInFromLeft {
  0% {
    transform: translate(-150%, -50%); /* Start off-screen from the left */
    opacity: 0; /* Initially hidden */
  }
  100% {
    transform: translate(-50%, -50%); /* Final position at the center */
    opacity: 1; /* Fully visible */
  }
}
/* Button Styling on Landing page */
.button1 {
  position: absolute;
  height: 60px;
  width: 250px;
  top: 85%;
  left: 50%;
  transform: translateX(-50%);
  padding: 20px;
  color: rgb(0, 0, 0);
  border: none;
  border-radius: 99px;
  font-size: 18px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  animation: slideAtFromLeft 2.5s ease-out forwards;
  background-color: rgba(246, 242, 242, 0.7);
}

@keyframes slideAtFromLeft {
  0% {
    transform: translate(-150%, -50%); /* Start off-screen from the left */
    opacity: 0; /* Initially hidden */
  }
  100% {
    transform: translate(-50%, -50%); /* Final position at the center */
    opacity: 1; /* Fully visible */
  }
}
.button1:hover {
  color: rgb(255, 255, 255); /* Change text color on hover */
  background-color: rgba(0, 0, 0, 0.6);
}

.button1 a {
  text-decoration: none;
  color: black;
  cursor: pointer;
}

.button1 a:hover {
  text-decoration: none;
  color: white;
}

/* Optional: Adding some responsiveness */
@media (max-width: 768px) {
  .content {
    height: 100vh;
  }
  .text-box {
    font-size: 30px;
    padding: 15px;
  }
  .button1 {
    width: 200px;
    font-size: 16px;
  }
  .text {
    font-size: 38px;
    width: 500px;
  }
  .container {
    height: 100vh;
  }
  .box .box2 {
    font-size: 38px;
    width: 500px;
  }
  .destination-list {
    font-size: 38px;
    width: 500px;
  }
}
/* Next Section with Destination */
.container {
  height: 80vh;
  width: 100vw;
  margin: 0px auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background-color: rgba(129, 81, 66, 0.1);
}

.image-container img {
  margin-top: 72px;
  height: 70vh;
  width: 35vw;
}

.box .box2 img {
  padding: 10px;
  display: block;
}

.image-container2 img {
  margin-top: 72px;
  height: 70vh;
  width: 30vw;
}

@media (max-width: 756px) {
  .image-container img {
    display: none;
  }
  .image-container2 img {
    display: none;
  }
  button.sign-with-us {
    justify-content: center;
    align-items: center;
    margin-left: 60px;
    width: auto;
    text-align: center;
  }
}
.destination-list {
  display: flex;
  height: 120px;
  width: 310px;
  margin-top: 100px;
  padding: 0px 0px;
  padding-left: 30px;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 1px 1px 10px black;
  border-radius: 50%;
  background-color: rgba(255, 137, 29, 0.3);
  font-size: 30px;
  font-weight: "Italiana";
  font-family: "Italiana";
}

h2 {
  justify-content: center;
  align-items: center;
}

.container .heading1 {
  padding: 20px;
  padding-left: 70px;
  margin-top: 20%;
  margin: 20px;
  color: black;
  background-color: rgba(248, 213, 180, 0.1);
  font-size: 25px;
  font-weight: "Italiana";
  font-family: "Italiana";
}

.box2 h1 {
  justify-content: flex-start;
}

.svg2 {
  animation: jump 1s ease infinite; /* Animation with a 1 second duration and infinite looping */
  margin-left: 40px;
}

/* Define the jump keyframe */
@keyframes jump {
  0% {
    transform: translateY(0px); /* Start at the original position */
  }
  50% {
    transform: translateY(-3px); /* Move up 10px at the halfway point */
  }
  100% {
    transform: translateY(0px); /* Return to the original position */
  }
}
/* STYLING BUTTON "SIGN WITH US" */
button.sign-with-us {
  height: 10%;
  width: 60%;
  background: linear-gradient(135deg, #fcc498, #fffefe);
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
  margin-left: 15px;
  margin-top: 70px;
  border-radius: 50px;
}

button.sign-with-us a {
  color: black;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s ease;
  font-size: 18px;
  font-weight: bold;
  font-family: "Italiana";
}

/* Hover effects */
button.sign-with-us:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

button.sign-with-us:hover a {
  transform: scale(1.1);
}

/* Focus/active state */
button.sign-with-us:focus,
button.sign-with-us:active {
  outline: none;
  transform: translateY(2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 768px) {
  /* Hide images for smaller screens */
  .image-container img {
    display: none;
  }
  .image-container2 img {
    display: none;
  }
  /* Make the container single-column layout on small screens */
  .container {
    display: flex;
    padding: 0px;
  }
  /* Center the "Sign With Us" button */
  button.sign-with-us {
    margin: 20px; /* Center the button horizontally */
    width: 80%; /* Adjust width */
    text-align: center;
    padding-left: 30px;
  }
  /* Destination list adjustments for smaller screens */
  .destination-list {
    width: 100%;
    height: auto;
    padding-left: 0;
    margin-top: 20px;
    margin-left: 30%;
  }
  /* Adjust the heading for smaller screens */
  .container .heading1 {
    padding-left: 20px;
    margin-top: 10%;
    font-size: 20px; /* Make text smaller */
    margin-left: 40%;
  }
  /* Adjust button text size */
  button.sign-with-us a {
    font-size: 16px; /* Smaller font size for mobile */
  }
  /* Adjust SVG animation for mobile */
  .svg2 {
    margin-left: 50px; /* Adjust positioning */
    animation: jump 1s ease infinite;
  }
}
@media screen and (max-width: 768px) {
  /* Hide images for smaller screens */
  .image-container img {
    display: none;
  }
  .image-container2 img {
    display: none;
  }
  /* Make the container single-column layout on small screens */
  .container {
    display: flex;
    position: relative;
    padding: 100px;
  }
  /* Center the "Sign With Us" button */
  button.sign-with-us {
    position: absolute;
    width: 70%;
    margin: 20px auto; /* Center the button horizontally */
    text-align: center;
  }
  /* Adjust button text size */
  button.sign-with-us a {
    font-size: 16px; /* Smaller font size for mobile */
  }
  .svg2 {
    margin-right: -10px; /* Adjust positioning */
    animation: jump 1s ease infinite;
  }
  /* Destination list adjustments for smaller screens */
  .destination-list {
    width: 120%;
    height: 120px;
    padding-left: 0;
    margin-top: 20px;
  }
  /* Adjust the heading for smaller screens */
  .container .heading1 {
    width: 120%;
    padding-left: 50px;
    margin-top: 10%;
    font-size: 20px; /* Make text smaller */
  }
}
/* TWO CARDS STYLING */
.mainArticle {
  position: relative;
  height: 120vh;
  width: 100vw;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-items: center;
  align-items: center;
  background-color: rgba(129, 81, 66, 0.1);
}

.article, .article1 {
  margin-top: 10%;
  position: relative;
  height: 90vh;
  width: 36vw;
  background: cover;
  background-image: cover;
  justify-content: center;
  align-items: center;
  box-shadow: 10px 10px 10px black;
}

.article {
  background-image: url("../pictures/stroopwafels.jpg");
}

.article1 {
  background-image: url("../pictures/gardenboat.jpg");
}

.filter1, .filter2 {
  position: absolute;
  height: 60vh;
  width: 30vw;
  margin: 20px auto;
  padding: 20px;
  backdrop-filter: blur(6px);
  -moz-backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  text-align: center;
  left: 50%;
  top: 20%;
  transform: translateX(-50%);
  overflow-y: auto; /* Initially hides the scroll */
  cursor: pointer;
  background-color: rgba(255, 251, 251, 0.5);
  border-radius: 10px;
}

.filter1:hover {
  backdrop-filter: blur(1px);
  -moz-backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
}

.filter2:hover {
  backdrop-filter: blur(1px);
  -moz-backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
}

.info, .info1, .info2, .info3 {
  position: absolute;
  margin: 20px;
  color: black;
  font-size: 30px;
  font-weight: "Italiana";
  font-family: "Italiana";
}

.info {
  font-size: 30px;
  color: white;
  font-weight: bold;
  top: 8%;
  left: 25%;
  text-shadow: 1px 1px 1px black;
}

.info1 {
  font-size: 17px;
  color: black;
  line-height: 1.4;
}

.info2 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
  color: white;
  left: 25%;
  top: 8%;
  text-shadow: 1px 1px 1px black;
}

.info3 {
  font-size: 17px;
  color: black;
  line-height: 1.4;
}

.button2 {
  margin-top: 650px;
  padding: 10px 20px;
  color: rgb(0, 0, 0); /* Text color */
  border: none;
  border-radius: 5px;
  font-size: 18px;
  text-align: center;
  background-color: rgba(246, 242, 242, 0.9);
}

.button2 a {
  color: black;
  text-decoration: none;
}

.button2:hover {
  background-color: white;
}

.tooltip {
  display: none;
  position: absolute;
  color: rgba(0, 0, 0, 0.6);
  padding: 5px;
  border-radius: 3px;
  font-size: 13px;
  pointer-events: none;
  z-index: 1000;
  background-color: rgba(255, 243, 243, 0.7);
}

.filter2:hover .tooltip {
  display: block;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.filter1:hover .tooltip {
  display: block;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  /* Info text adjustments */
  .info, .info2 {
    font-size: 20px;
    left: 10%;
    text-shadow: 1px 1px 1px black;
  }
  .button2 {
    display: none;
  }
}
#frame {
  margin: 0px auto;
  width: 100%;
  height: 100%;
  max-width: 100%;
  text-align: center;
}

.frame-content img {
  height: 100%;
  width: 100%;
  box-shadow: 5px 4px 10px black;
  padding: 50px;
}

#frame input[type=radio] {
  display: none;
}

#frame label {
  cursor: pointer;
  text-decoration: none;
}

#slides {
  padding: 50px;
  position: relative;
  z-index: 1;
  background-color: rgba(129, 81, 66, 0.1);
}

#overflow {
  width: 100%;
  overflow: hidden;
}

#frame1:checked ~ #slides .inner {
  margin-left: 10%;
}

#frame2:checked ~ #slides .inner {
  margin-left: -20%;
}

#frame3:checked ~ #slides .inner {
  margin-left: -50%;
}

#frame4:checked ~ #slides .inner {
  margin-left: -75%;
}

#slides .inner {
  transition: margin-left 800ms cubic-bezier(0.77, 0, 0.175, 1);
  width: 150%;
  height: 100%;
  line-height: 0;
}

#slides .frame {
  width: 25%;
  float: left;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: black;
}

.Slide1, .Slide2, .Slide3, .Slide4 {
  padding: 10px 20px;
  color: rgb(0, 0, 0);
  border: none;
  text-align: center;
  background-color: rgb(248, 213, 180);
  font-size: 18px;
  font-weight: "Italiana";
  font-family: "Italiana";
  border-radius: 15px;
}

.button a .Slide1, .Slide2, .Slide3, .Slide4 {
  color: black;
  text-decoration: none;
}

.Slide1:hover, .Slide2:hover, .Slide3:hover, .Slide4:hover {
  background-color: white;
}

.Slide1 a, .Slide2 a, .Slide3 a, .Slide4 a {
  text-decoration: none;
  color: black;
  cursor: pointer;
}

.Slide1 a:hover, .Slide2 a:hover, .Slide3 a:hover, .Slide4 a:hover {
  text-decoration: none;
  color: pink;
}

#controls {
  margin: -200px 0 0 0;
  width: 100%;
  height: 50px;
  z-index: 3;
  position: relative;
}

#controls label {
  transition: opacity 0.2s ease-out;
  width: 100%;
  margin: -20px 20px 0 0;
  margin-right: 150px;
  display: none;
  width: 50px;
  height: 50px;
  opacity: 0.3;
  border: 1px solid black;
  border-radius: 100%;
  background-color: rgb(248, 213, 180);
}

#controls label:hover {
  opacity: 1;
}

#frame1:checked ~ #controls label:nth-child(2),
#frame2:checked ~ #controls label:nth-child(3),
#frame3:checked ~ #controls label:nth-child(4),
#frame4:checked ~ #controls label:nth-child(1) {
  float: right;
  margin: 0 200px 0 0;
  display: inline;
}

#frame1:checked ~ #controls label:nth-last-child(2),
#frame2:checked ~ #controls label:nth-last-child(3),
#frame3:checked ~ #controls label:nth-last-child(4),
#frame4:checked ~ #controls label:nth-last-child(1) {
  float: left;
  margin: 0 0 0 -200px;
}

#bullets {
  margin: 150px 0 0;
  text-align: center;
  background-color: rgba(129, 81, 66, 0.1);
}

#bullets label {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  background: #ccc;
  margin: 0 10px;
}

#frame1:checked ~ #bullets label:nth-child(1),
#frame2:checked ~ #bullets label:nth-child(2),
#frame3:checked ~ #bullets label:nth-child(3),
#frame4:checked ~ #bullets label:nth-child(4) {
  background: #444;
}

@media screen and (max-width: 768px) {
  #frame1:checked ~ #controls label:nth-child(2),
  #frame2:checked ~ #controls label:nth-child(3),
  #frame3:checked ~ #controls label:nth-child(4),
  #frame4:checked ~ #controls label:nth-child(1),
  #frame1:checked ~ #controls label:nth-last-child(2),
  #frame2:checked ~ #controls label:nth-last-child(3),
  #frame3:checked ~ #controls label:nth-last-child(4),
  #frame4:checked ~ #controls label:nth-last-child(1) {
    margin: 0;
  }
  #slides {
    max-width: 100%;
    margin: 0 auto;
  }
}
.mainCard {
  padding: 50px;
  position: relative;
  height: 130vh;
  width: 100%;
  background-color: rgba(129, 81, 66, 0.1);
}

.secondmainCard {
  position: absolute;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-items: center;
  align-items: center;
}

.mainCard h1 {
  position: absolute;
  height: 54%;
  writing-mode: vertical-lr;
  justify-content: center;
  align-items: center;
  margin: 0px;
  font-size: 50px;
  font-weight: "Italiana";
  font-family: "Italiana";
  background-color: white;
}

.mainCard img {
  width: 100%;
  height: 60%;
  margin: 0px;
  padding: 0px;
  align-items: center;
}

.card1, .card2, .card3 {
  height: 80%;
  width: 100%;
  margin-top: 50px;
  justify-content: center;
  align-items: center;
  padding: 20px 20px 20px;
  border-radius: 5%;
  background-color: rgb(255, 251, 251);
}

.secondmainCard p {
  align-items: center;
  padding-top: 10px;
  font-size: 15px;
  font-weight: "Italiana";
  font-family: "Italiana";
}

.btn1, .btn2 {
  margin-left: 25%;
  margin-top: 15px;
  padding: 10px;
  height: 40px;
  width: 160px;
  color: black;
  border: none;
  font-size: 18px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  background-color: rgba(246, 242, 242, 0.7);
  border-radius: 99px;
}

.btn1:hover, .btn2:hover {
  color: rgb(255, 255, 255);
  background-color: rgba(0, 0, 0, 0.6);
}

.btn1 a, .btn2 a {
  text-decoration: none;
  color: black;
}

.btn1 a:hover, .btn2 a:hover {
  text-decoration: none;
  color: white;
}

@media (max-width: 768px) {
  .mainCard {
    padding: 20px;
    height: auto;
  }
  .secondmainCard {
    position: relative;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .mainCard h1 {
    font-size: 30px;
    height: auto;
    writing-mode: unset;
    margin: 0 auto;
  }
  .mainCard img {
    width: 100%;
    height: 50%;
  }
  .card1, .card2, .card3 {
    height: auto;
    width: 90%;
    margin-top: 20px;
    padding: 10px 10px 10px;
  }
  .secondmainCard p {
    font-size: 14px;
    padding-top: 5px;
  }
  .btn1, .btn2 {
    margin-left: 0;
    margin-top: 10px;
    padding: 8px;
    width: 140px;
    font-size: 16px;
  }
}
/*Footer*/
.footer {
  padding: 20px;
  color: #333;
  background-color: rgb(248, 213, 180);
  font-size: 17px;
  font-weight: "Italiana";
  font-family: "Italiana";
}

.footer-links {
  display: flex;
  justify-content: space-evenly;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin: 0 20px;
  position: relative;
}

.footer-links a {
  text-decoration: none;
  color: inherit; /* Link color */
  font-weight: bold;
}

.footer-links li .sub-links {
  display: block;
  padding-right: -50px;
  margin-top: 10px;
  line-height: 30px;
}

.footer-text {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.footer-text a {
  text-decoration: none;
  color: inherit;
}

.para1 {
  font-size: 14px;
  text-align: center;
  margin-top: 20px;
}

.logoFooter {
  height: 80px;
  width: 50px;
}

.logoFooter .name a {
  text-decoration: none;
  color: black;
  cursor: pointer;
}

.logoFooter .name a:hover {
  text-decoration: none;
  color: pink;
}

.logoFooter .name {
  position: absolute;
  text-align: center;
  padding: 8px;
  font-size: 25px;
  font-weight: "Italiana";
  font-family: "Italiana";
}

.a .logoFooter .name:hover {
  color: palevioletred;
}

.svgfooter {
  position: absolute;
  align-items: center;
  justify-content: center;
  margin-top: 35px;
  padding: 0px 0px;
  margin-left: 60px;
  display: flex;
  animation-name: slideOn;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  /*animation-play-state: paused;*/
}

@keyframes slideOn {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(100%);
  }
}
.svgfooter2 {
  width: 50px;
  position: relative;
  padding: 0px 0px;
  margin-left: 15px;
  margin-top: 35px;
  animation-name: slideFor;
  animation-duration: 5s;
  animation-iteration-count: infinite;
}

@keyframes slideFor {
  0% {
    transform: translateX(15%);
  }
  100% {
    transform: translateX(100%);
  }
}
@media (max-width: 768px) {
  /* Footer adjustments */
  .footer {
    padding: 15px;
  }
  /* Footer links adjustments */
  .footer-links {
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
  }
  .footer-links li {
    margin: 10px 0;
  }
  .footer-links a {
    font-size: 16px;
  }
  .footer-links li .sub-links {
    margin-top: 5px;
    line-height: 25px;
  }
  .footer-text {
    margin: 10px 0;
  }
  /* Adjust para1 text */
  .para1 {
    font-size: 12px;
    margin-top: 10px;
  }
  /* Adjust logoFooter size */
  .logoFooter {
    height: 60px;
    width: 40px;
  }
  .logoFooter .name {
    font-size: 20px;
    padding: 5px;
  }
  /* Adjust svgfooter size and position */
  .svgfooter {
    margin-left: 60px;
    margin-top: 25px;
    animation-duration: 3s;
  }
  .svgfooter2 {
    margin-left: 15px;
    margin-top: 25px;
    animation-duration: 3s;
  }
}/*# sourceMappingURL=index.css.map */