@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhaijaan+2:wght@400..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  width: auto;
  max-width: 100vw;
  font-family: "Lato", sans-serif;
}

body, html {
  margin: 0;
  padding: 0;
  font-family: "Lato", sans-serif;
  background-color: #ffffff;
  height: 100%;
}

header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

header img {
  height: 75px;
  margin-left: 30px;
}

/* Wrapper styling */
.menu-wrapper {
  position: relative;
}

/* Hamburger menu styling */
.hamburger {
  width: 30px;
  height: 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
}

.hamburger span {
  background-color: #fff;
  width: 100%;
  height: 1px;
  transition: 0.3s ease;
  position: relative;
}

.hamburger span:nth-child(1) {
  transform-origin: top left;
}

.hamburger span:nth-child(3) {
  transform-origin: bottom left;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(37deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-37deg);
}

/* Sliding background */
.nav-background {
  position: absolute;
  top: 60px; /* Adjust based on header height */
  right: 0;
  width: 0;
   height: calc(100vh - 60px); /* Full height minus header */
  background-color: #fff;
  z-index: 5; /* Ensure it's above the canvas but below the nav links */
  transition: width 0.4s ease;
}


/* Hidden nav links */
#nav-links {
  list-style: none;
  padding: 0;
  position: absolute;
  top: 40px; /* Adjust based on header height */
  right: 0;
  opacity: 0;
  z-index: 10; /* Above the background */
  display: none;
  transition: all 0.3s ease;

}

#nav-links.open {
  display: block;
  opacity: 1;
}

#nav-links li {
  padding: 10px 15px;
}

#nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  display: block;
  font-size: x-large;
}

#nav-links a:hover {
  color: #d0d0d0;
}

/* Animation for sliding in the nav items */
#nav-links.open li {
  opacity: 0;
  transform: translateX(100px);
  animation: slideIn 0.4s ease forwards;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Styling for canvas */
#home {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

canvas {
  display: block;
  width: 100vw;
  height: 100vh;
  z-index: 0;
}

.bg1{
  width: 100%;
  height: auto;
}



.Background{
  position: relative;

  img{
    z-index: -1;
  }

  h1 {
    position: absolute;
    top: -80px;
    font-size: 45px;
    color: #5c5c5c;
    margin: 150px 0;
    font-family: "Lato", sans-serif;
    font-weight: 300;
    letter-spacing: 8px;
    text-shadow: none;
  }

  #kl{
    object-fit: cover;
    width: 100vw;
    height: 238px;
  }
  
}

/* homepage-sec3 */
.homepage-sec3 {
  overflow-x: clip;
  min-width: 100vw;
  display: flex;
  flex-direction: column;
  /* background-image: url('https://firebasestorage.googleapis.com/v0/b/siddhraj-fd6ac.appspot.com/o/mainpage%2Fsliderimages%2Fbg1.svg?alt=media&token=712ec882-59b9-49ce-aeff-8d14ac7a926f'); */
  margin-top: 1%;
  .first-section {
    img{
      width: 80vw;
      height: auto;
      animation: disappearfirstimage 1s ease-in forwards;
      animation-timeline: view();
      animation-range: entry 100% cover 150%;
    }
  }
  .middle-section {
    margin-top: 2%;
    position: relative; 
    display: flex;
    justify-content: center; 
    width: 100%;
  }
  
  .second-image {
    max-width: 100vw;
    width: 60vw;
    height: 60vh;
    object-fit: cover;
    animation: appear 5s ease-in forwards;
    animation-timeline: view();
    animation-range: entry 30% cover 50%;
    z-index: 5;
  }
  .first-image, .third-image {
    position: absolute;
    bottom: 50%;
  }
  .first-image {
    left: 0;
    animation: firstimage 2s ease-in forwards;
    animation-timeline: view();
    animation-range: entry 100% cover 40%;
    height: 20vh;
    width: 20vw;
  }
  .third-image {
    right: 0;
    animation: thirdimage 2s ease-in forwards;
    animation-timeline: view();
    animation-range: entry 100% cover 40%;
    height: 20vh;
    width: 20vw;
  }
  .end-section img {
    margin: 2% 0 0 23%;
  }
}

@keyframes appear {
  from{
    width: 60vw;
    height: 60vh;
  }
  to{
    width: 100vw;
    height: 100vh;
  }
}

@keyframes disappearfirstimage {
  from {
    width: 80vw;
    height: auto;
    opacity: 1;
  }
  to {
    height: auto;
    width: 100vw;
    opacity: 1;
  }
}

@keyframes firstimage {
    from {
      height: 20vh;
      width: 20vw;
      opacity: 1;
      margin: 0;
      opacity: 1;
    }
    to {
      height: 35vh;
      width:35vw;

      margin-left: -30%;
      opacity: 0.8;
     
    }
  }
@keyframes thirdimage {
    from{
      height: 20vh;
      width: 20vw;
      margin-right: 0;
      opacity: 1;
    }
    to{
      height: 35vh;
      width: 30vw;
      margin-right: -25%;
      opacity: 0.8;
    }
  }


/* Keyframes for Tablet (min-width: 768px and max-width: 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  @keyframes appear {
    0% {
      height: 30vh;
      width: auto;
    }
    25% {
      height: 40vh;
      width: auto;
    }
    50% {
      height: 50vh;
      width: auto;
    }
    75% {
      height: 60vh;
      width: auto;
    }
    100% {
      height: 70vh;
      width: auto;
      z-index: 5;
    }
  }
  
  @keyframes disappearfirstimage {
    from {
      height: 70vh;
      opacity: 1;
    }
    to {
      height: 0;
      opacity: 0;
    }
  }
}

/* Keyframes for Mobile (max-width: 767px) */
@media (max-width: 767px) {
  @keyframes appear {
    0% {
      height: 45vh;
    }
    25% {
      height: 50vh;
    }
    50% {
      height: 60vh;
    }
    75% {
      height: 70vh;
    }
    100% {
      height: 80vh;
      z-index: 5;
    }
  }
  
  @keyframes disappearfirstimage {
    from {
      height: 60vh;
      opacity: 1;
    }
    to {
      height: 0;
      opacity: 0;
    }
  }
}


@keyframes secondsection {
  0% {
    height: 20vh;
    width: 20vw;
    opacity: 1;
  }
  100% {
    height: 0;
    width: 0;
    opacity: 0;
   
  }
}

@keyframes extraimages {
  0% {
    transform: translateY(-100px);
    display: none;
  }
  100% {
    transform: translateY(0px);
    display: contents;
  }
}



.next-div {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Media Queries for Responsive Layout */
/* @media (max-width: 1024px) {
  .second-image {
      width: 70vw;
  }
  .first-image, .third-image {
      width: 20vw; 
  }
}

@media (max-width: 768px) {
  .second-image {
      width: 80vw; 
  }
  .first-image, .third-image {
      width: 25vw; 
  }
}

@media (max-width: 480px) {
  .middle-section {
      flex-direction: column; 
  }
  .second-image {
      width: 90vw;
  }
  .first-image, .third-image {
      width: 40vw; 
  }
  .end-section img {
      width: 90vw; 
  }
}
 */

 @media (max-width: 1024px) {
  .homepage-sec3 {
    background-image: url('https://firebasestorage.googleapis.com/v0/b/siddhraj-fd6ac.appspot.com/o/mainpage%2Fsliderimages%2Fbg1.svg?alt=media&token=712ec882-59b9-49ce-aeff-8d14ac7a926f');

  }
  .first-image, .third-image {
    visibility: hidden;
}

  .Background{
    margin-bottom: -29%;
  }

  
  .first-section img,
  .middle-section .first-image,
  .middle-section .second-image,
  .middle-section .third-image {
    animation: none !important;
  }

  .middle-section {
    position: static !important; /* Remove relative positioning */
  }
  .second-image {
    width: 89vw !important; /* Set width to 89% of the viewport width */
    height: 38vh !important; /* Set height to 38% of the viewport height */
  }
}

/* Media Queries for Mobile (max-width: 767px) */
@media (max-width: 767px) {
  
  .middle-section {
    flex-direction: column; /* Stack images vertically */
  }
  .second-image {
    width: 90vw; /* Max out the width */
  }
  .first-image, .third-image {
    width: 40vw; /* Larger side images */
  }
  .end-section img {
    width: 90vw; /* Adjust bottom image */
  }
}

@media (min-width: 768px) and (max-width: 1024px){
  .second-image, .third-image{
    margin: 99px 0;

  }
}


/* homepage-sec4 */


/* footer */
footer {
  background: linear-gradient(to bottom, #DEDEDE, #ffffff); /* Light to darker gradient */
  padding: 80px 0;
  font-family: "Lato", sans-serif;
  width: 100vw;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation Section (Moved to the Top) */
.footer-nav {
  text-align: left;
  flex: 1;
  order: 1; /* Ensure navigation appears first */
}

.footer-nav ul {
  list-style: none;
  padding: 0;
}

.footer-nav ul li {
  margin: 10px 0;
}

.footer-nav ul li a {
  color: #333;
  font-size: 14px;
  text-decoration: none;
}

.footer-nav ul li a:hover {
  text-decoration: underline;
}

/* Logo and Contact Information (Moved Below Navigation) */
.footer-left {
  text-align: left;
  flex: 1;
  order: 2; /* Appears after the navigation */
}

.footer-logo img {
  max-width: 150px;
  margin-bottom: 15px;
}

.footer-contact {
  margin-top: 10px;
}

.footer-contact p {
  margin: 5px 0;
  color: #333;
  font-size: 14px;
}

.footer-contact strong {
  display: block;
  margin-top: 15px;
}

/* Newsletter Section */
.footer-newsletter {
  text-align: left;
  flex: 1;
  order: 3;
  margin-top: 50px;
}

.footer-newsletter h4 {
  font-weight: normal;
  color: gray;
  font-size: 14px;
}

.footer-newsletter h4 span {
  font-weight: bold;
  color: #555;
  font-size: 20px;
  position: relative;
}

.footer-newsletter form {
  display: flex;
  margin-top: 15px;
}

.footer-newsletter input {
  padding: 10px;
  border: 0px solid #ccc;
  border-radius: 10px 0 0 10px;
  width: 70%;
  font-size: 14px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.footer-newsletter button {
  padding: 10px 20px;
  background-color: black;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 0 10px 10px 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Social Media Icons */
.footer-social {
  text-align: right;
  flex: 1;
  order: 4; /* Ensures social icons appear at the bottom */
}

.footer-social a {
  margin-right: 10px;
  color: black;
  font-size: 18px;
  text-decoration: none;
}

.footer-social i {
  margin: 0 5px;
}

/* Bottom Section */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #ccc;
  padding-top: 20px;
}

.footer-bottom p,
.footer-bottom a {
  color: #333;
  text-decoration: none;
  font-size: 12px;
  margin: 0 15px;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }

  .footer-left,
  .footer-nav,
  .footer-newsletter,
  .footer-social {
      margin-bottom: 20px;
      text-align: center;
  }

  .footer-newsletter form {
      flex-direction: column;
  }

  .footer-newsletter input,
  .footer-newsletter button {
      width: 100%;
      margin: 5px 0;
  }

  .footer-bottom {
    margin-bottom: -20px;
  }

  .footer-newsletter {
    input {
      width: 70vw;
      border-radius: 8px;
    }
    button {
      border-radius: 8px;
    }
  }
}

/* Fine-tuning the spacing */
.footer-contact,
.footer-nav,
.footer-newsletter,
.footer-social {
  margin-bottom: 20px;
}


/* top image gallery */



.container {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slides img {
  position: absolute;
  width: 100vw;
  height: 100vh;
  object-fit: cover; /* Ensure images cover the entire screen without distortion */
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slides img.active {
  opacity: 1;
}

.buttons {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 2; /* Make sure buttons are visible on top of images */
}

.buttons button {
  background-color: rgba(69, 69, 69, 0.5); /* Gray color with transparency */
  color: white;
  border: none;
  width: 60px; /* Set equal width */
  height: 60px; /* Set equal height */
  cursor: pointer;
  font-size: 1.5rem; /* Adjust the font size to fit in the circle */
  border-radius: 50%; /* Make the background circular */
  display: flex; /* Center the text inside the circle */
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
}

.buttons button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* h1 and h2 for each slide */
h1, h2 {
  position: absolute;
  color: white;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  z-index: 1; /* Ensure they are above images */
  text-align: center;
  width: 100%;
}

h1 {
  top: 30%;
  font-size: 4rem;
}

h2 {
  top: 40%;
  font-size: 2rem;
}

/* More Info Button for each slide */
.more-info-btn {
position: absolute;
bottom: 7%;
left: 50%;
transform: translateX(-50%);
padding: 10px 20px;
background-color: #00f7ff00;
color: white;
border: 2px solid white; /* White border with 2px width */
border-radius: 40px;
font-size: 1.2rem;
text-decoration: none;
text-align: center;
transition: background-color 0.3s;
z-index: 3; /* Ensure it's visible above images */
}


/* .more-info-btn:hover {
 
} */

/* Dots for manual control */
.dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
}

.dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background-color: white;
}

/* Media Queries for Responsive Design */
@media (max-width: 1200px) {
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  .buttons button {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 1rem;
  }
  h2 {
    font-size: 1.2rem;
  }
  .buttons button {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1rem;
  }
  .buttons button {
    font-size: 1rem;
    padding: 8px;
  }
}


/* Media Queries for Responsive Design */
@media (max-width: 1200px) {
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  .buttons button {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 1.2rem;
  }
  .buttons button {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1rem;
  }
  .buttons button {
    font-size: 1rem;
    padding: 8px;
  }
}


/* Media Queries for Responsive Design */
@media (max-width: 1200px) {
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  .buttons button {
    font-size: 1.5rem;
  }
  .more-info-btn {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {

  

  .buttons{
    gap: 50%;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 1.2rem;
  }
  .buttons button {
    font-size: 1.2rem;
  }
  .more-info-btn {
    padding: 10px 20px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .col
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1rem;
  }
  .buttons button {
    font-size: 1rem;
    padding: 8px;
  }
  .more-info-btn {
    padding: 8px 15px;
    font-size: 0.9rem;
  }
}

/* section 2 */
@media (min-width: 768px) and (max-width: 1024px) {

  .Background {
    .collab{
      margin: 0;
    }
  }

  .Background {
    & .collab {
        span {
           margin-top: 0;
        }
      }
    }
    
    .Background {
      & .collab {
          img {
              margin: 150px 100px 0px 0px;
          }
      }
  }

  #collabtext{
    visibility: hidden;
  }

  .homepage-sec3{
    align-items: center;
    margin-top: -20%;
  }

  .third-image {
    width: 43vw;
    left: 15%;
}
.first-image{
  width: 23vw;
}
.second-image{
  width: 67vw;
}

  .Background h1{
    font-size: 50px;
  }

  .sid {
      font-size: 2rem;
        left: 41%;
        transform: translateY(13px);
  }
  .s2h{
    font-size: 1.8rem;

  }
  .collab span {
    font-size: 1.1rem;
  }
  .collab img {
    max-width: 400px;
  }
}

/* Mobile view */
@media (max-width: 767px) {

  header img {
    height: 40px;
    margin-left: 0;
  }

  header{
    justify-content: flex-start;
    gap: 57%;
  }
  .h1{
    font-size: 2rem;
  }

  .h2{
    font-size: 1rem;
  }

  .hamburger{
    height: 20px;
    width: 25px;
    margin-top: 5px;

  }

  #nav-links a{
    font-size: large;
    margin-top: -5px;
  }
  #nav-links{
    margin-top: -10px;
    margin-right: -5px;
    justify-items: end;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-35deg);
     
  }
  .hamburger.active span:nth-child(1) {
    transform: rotate(35deg);
    
  }


  .hamburger span{
    height: 3px;
  }
  .sid {
    font-size: 1.5rem;
    text-align: center;
    left: 27%;
  }

  .Background h1 {
    font-size: 13px;
    top: 30%;
    margin: -24px 0;
    letter-spacing: 5px;
    
}

  .Background {
    .collab{
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 170px;
    }
  }

  .collab{
    display: flex;
    flex-direction: column;
    margin: 0;
  }

  #collabtext{
    text-align: center;
  }

  .Background {
    & .collab {
      img {
        margin: 10px;
      }
        span {
            margin-top: 45%;
            font-size: 10px;
        }
      }
    }

    .middle-section{
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      align-content: center;
    }

    .first-section img {
      transform: translateY(-50%);
      margin-left: 5%;
      min-width: 90vw;
      min-height: 8vh;
      object-fit: cover;
  }

  .second-image {
    margin: -27px 0 13px 0;
}

    
    .third-image{
      padding: 20px 0;
      width: 17vw;
      margin-right: 0px;
    }

    .end-section{
      display: flex;
    justify-content: center;
    }

    

  .s2h{
    font-size: 1.5rem;
    line-height: 1.2;
    text-align: center;
  }
  .collab span {
    font-size: 1rem;
  }
  .collab img {
    max-width: 47%;
  }
}


/* nnnnnnnnnnnnnnnnnnnnnnnnnn */

p {
  font-family: "Lato", sans-serif;
  font-size: 1.25rem;
  line-height: 1.5;
}

blockquote {
  position: relative;
  padding-left: 1.5rem;
  font-family: "Lato", sans-serif;
  font-size: 2rem;
  line-height: 1.25;
  letter-spacing: -0.05rem;
}

blockquote:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background-color: #A9DFBF;
  border-radius: 60px;
}

figure {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center; /* Ensures center cropping */
}

.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
}




.hero:nth-child(1) figure { background-image: url(''); }
.hero:nth-child(2) figure { background-image: url(''); }
.hero:nth-child(3) figure { background-image: url(''); }
.hero:nth-child(4) figure { background-image: url(''); }
.hero:nth-child(5) figure { background-image: url('images/slider/Copy\ of\ zoey\ 01.jpg'); }
.hero:nth-child(6) figure { background-image: url('images/slider/Copy\ of\ z2\ 02.jpg'); }
.hero:nth-child(7) figure { background-image: url('images/slider/Copy\ of\ z+\ 03.jpg'); }
.hero:nth-child(8) figure { background-image: url('images/4\ \(2\).jpg'); }
.hero:nth-child(9) figure { background-image: url('images/slider/Copy\ of\ zold\ 05.jpg'); }
.hero:nth-child(10) figure { background-image: url('images/slider/Copy\ of\ zori\ 06.jpg'); }
.hero:nth-child(11) figure { background-image: url('images/slider/Copy\ of\ greens\ 07.JPG'); }
.hero:nth-child(12) figure { background-image: url(''); }
.hero:nth-child(13) figure { background-image: url(''); }
.hero:nth-child(14) figure { background-image: url(''); }
.hero-inner {
  position: absolute;
  overflow: hidden;
  width: 100%;
  height: 100%;
  clip: rect(0, auto, auto, 0);
}

@media (max-width: 768px) { /* Adjusts for mobile screens */
  .hero:nth-child(6) figure {
    background-position: -100px center; /* Moves the image 100px to the left */
  }
}


@supports (-webkit-overflow-scrolling: touch) {
  .hero-inner {
    clip: unset;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}

.hero__title {
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-family: "Lato", sans-serif;
  font-size: 8vw;
  letter-spacing: -0.125rem;
  text-align: center;
}

.hero{
  button{
    a{
      color: #fff;
    }
  }
}

@media (min-width: 1200px) {
  .hero__title {
    font-size: 4rem;
  }
}

/* More Info Button Style */
.more-info-btn1{
  display: block;
  position: fixed;
  top: 54%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 10px 25px;
  background-color: transparent;
  color: white;
  border: 2px solid white;
  cursor: pointer;
  border-radius: 40px;
  font-size: 1.5rem;
  z-index: 1;

  a{
  text-decoration: none;
  }
}

.more-info-btn1:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.head{
    position: fixed;
    top: 43%;
    color: white;
}

#slide-title{
  visibility: hidden;
}

#slide-description{
  font-weight: 300;
  top: 80%;
}

