
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  font-family: 'Open Sans', sans-serif;
}

a:link {
  color: rgb(255, 255, 255);
  background-color: transparent;
  text-decoration: none;
}




/* Hide the menu and adjust menu icon */
/* Hide the menu and adjust menu icon */
.menu-checkbox {
  display: none;
}

.menu-icon {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 21px;
  position: absolute;
  top: 15px;
  left: 20px;
  z-index: 1001;
  cursor: pointer;
}

.menu-icon span {
  width: 100%;
  height: 2px;
  background-color: white;
  transition: all 0.3s;
}




/* Start of Menu code */













aside {
  background-color: #181717;
  padding: 8px;
  
}

.container {
  list-style: none;
  padding: 2px;
  margin: 5px;
  display: flex;
  justify-content: center;
  gap: 60px;
}

.container li {
  margin-bottom: 0;
}

.container a.nav-link {
  text-decoration: none;
  color: white;
  display: block;
  padding: 6px 50px;
  background-color: #0e0e0e09;
  border-radius: 15px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.container a.nav-link:hover {
  background-color: #4385618a;
  transform: translateY(-8px);
}

.container a.nav-link:active {
  transform: translateY(0);
}

.section-content {
  flex-grow: 1;
  padding: 5%;
  background-color: white;
}

.menu-text {
  font-size: 1.5em;
  color: rgb(235, 235, 235);
  margin: 2px;
}


















/* End of menu */

.Lilink{
  border-bottom: 3px solid #ffffff;
  padding: 17px 0;
  display: block;
  color: #ffffff;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 25px;
  font-weight: 700;
  position: relative;
  transition: color .3s .15s ease-in;
}





@import url("https://fonts.googleapis.com/css?family=Arimo|Oswald"); 


section:first-child{
  position: relative;
  height:0px;
}

.title h1,h2{
  font-family:'Oswald', sans-serif; 
  font-size:28px; 
  font-weight:400; 
  letter-spacing: 3px;
}

.p-one {
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5)), url(1.png);

  background-position: center; /* Centers the background image */
  background-repeat: no-repeat; /* Prevents repeating of the background image */
  min-height: 50vh; /* Ensures the section has a minimum height of 50% of the viewport */

}



.parallax-inner{
  position:relative;
  min-height: 700px;
  background-position: top center;
  background-attachment: fixed;
  background-size: cover;
}
.parallax-inner > h2{
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 10px;
  font-family:'Oswald', sans-serif; 
  font-size:40px; 
  font-weight:400; 
  position: relative;
  top: 50%;
  left: 0;
  margin-top: -40.5px;
  transform: translateY(+430px);
  width: 100%;
  text-align: center;
}






.content-text p{
  padding: 5px;
  font-weight: 400;
  text-align: justify;
  line-height: 0px;
}
/* End of parallax code */

/*------------------------------------*\
    MATERIAL PHOTO GALLERY
\*------------------------------------*/
.m-p-g {
  max-width: 100%;
  margin: 0 auto;
}
.m-p-g__thumbs-img {
  margin: 0;
  float: left;
  vertical-align: bottom;
  cursor: pointer;
  z-index: 1;
  position: relative;
  opacity: 0;
  filter: brightness(100%);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  will-change: opacity, transform;
  transition: all 2s cubic-bezier(0.23, 1, 0.32, 1);
}
.m-p-g__thumbs-img.active {
  z-index: 50;
}
.m-p-g__thumbs-img.layout-completed {
  opacity: 1;
}
.m-p-g__thumbs-img.hide {
  opacity: 0;
}
.m-p-g__thumbs-img:hover {
  filter: brightness(110%);
}
.m-p-g__fullscreen {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0);
  visibility: hidden;
  transition: background 0.25s ease-out, visibility 0.01s 0.5s linear;
  will-change: background, visibility;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.m-p-g__fullscreen.active {
  transition: background 0.5s ease-out, visibility 0.01s 0s linear;
  visibility: visible;
  background: rgba(0, 0, 0, 0.95);
}
.m-p-g__fullscreen-img {
  pointer-events: none;
  position: absolute;
  transform-origin: left top;
  top: 50%;
  left: 50%;
  max-height: 100vh;
  max-width: 100%;
  visibility: hidden;
  will-change: visibility;
  transition: opacity 1s ease-out;
}
.m-p-g__fullscreen-img.active {
  visibility: visible;
  opacity: 1 !important;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.5s ease-out;
}
.m-p-g__fullscreen-img.almost-active {
  opacity: 0;
  transform: translate3d(0, 0, 0) !important;
}
.m-p-g__controls {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  height: 20vh;
  background: linear-gradient(to top, transparent 0%, rgba(0, 0, 0, 0.55) 100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.m-p-g__controls.active {
  opacity: 1;
  visibility: visible;
}
.m-p-g__controls-close, .m-p-g__controls-arrow {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: none;
}
.m-p-g__controls-close:focus, .m-p-g__controls-arrow:focus {
  outline: none;
}
.m-p-g__controls-arrow {
  position: absolute;
  z-index: 1;
  top: 0;
  width: 20%;
  height: 100vh;
  display: flex;
  align-items: center;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  opacity: 0;
}
.m-p-g__controls-arrow:hover {
  opacity: 1;
}
.m-p-g__controls-arrow--prev {
  left: 0;
  padding-left: 3vw;
  justify-content: flex-start;
}
.m-p-g__controls-arrow--next {
  right: 0;
  padding-right: 3vw;
  justify-content: flex-end;
}
.m-p-g__controls-close {
  position: absolute;
  top: 3vh;
  right: 3vw;
  z-index: 5;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.m-p-g__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  transition: all 0.25s ease-out;
}
.m-p-g__btn:hover {
  background: rgba(255, 255, 255, 0.15);
}
.m-p-g__alertBox {
  position: fixed;
  z-index: 999;
  max-width: 700px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 25px;
  border-radius: 3px;
  text-align: center;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.23), 0 10px 40px rgba(0, 0, 0, 0.19);
  color: grey;
}
.m-p-g__alertBox h2 {
  color: red;
}
.demo-btn {
  display: inline-block;
  margin: 0 2.5px 4vh 2.5px;
  text-decoration: none;
  color: grey;
  padding: 15px;
  line-height: 1;
  min-width: 140px;
  background: rgba(0, 0, 0, 0.07);
  border-radius: 6px;
}

.demo-btn:hover {
  background: rgba(0, 0, 0, 0.12);
}

.page-2 .m-p-g {
  position: relative;       /* Fix the element to the viewport */
  bottom: 0;             /* Stick it to the bottom */
  left: 0;               /* Align it to the left of the viewport */
  width: 100%;           /* Take full width of the viewport */
          /* Ensure it's on top of other elements */
  margin: 0; 
  z-index: 9998;             /* Remove any default margin */
  transform: translateY(410px);
}
.page-2 .m-p-g__fullscreen {
  position: absolute; /* Position relative to the closest positioned ancestor or the body */
  top: auto;             /* Stick to the top of the page */
  transform: translateY(300px);
  margin: 0;          /* Remove any default margin */
  z-index: 9999;      /* Optional: Ensure it stays on top of other elements */
}
.page-2 .m-p-g__controls {
  position: absolute; /* Position relative to the closest positioned ancestor or the body */
  top: auto;             /* Stick to the top of the page */

  margin: 0;          /* Remove any default margin */
  z-index: 9999;      /* Optional: Ensure it stays on top of other elements */
}


@media (max-width: 240px) {
  .demo-btn {
    min-width: 0;
    font-size: 14px;
    
  }
}










/* Hide scrollbar for Chrome, Safari and Opera */
html::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
html {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

/* Ensure the body element is scrollable */
body {
  overflow: scroll;
}














body
          .accordion .card {
            background: none;
            border: none;
          }
          .accordion .card .card-header {
            background: none;
            border: none;
            padding: .4rem 1rem;
            font-family: "Roboto", sans-serif;
          }
          .accordion .card-header h2 span {
            float: left;
            margin-top: 10px;
          }
          .accordion .card-header .btn {
            color: #2f2f31;
            font-size: 1.04rem;
            text-align: left;
            position: relative;
            font-weight: 500;
            padding-left: 2rem;
          }
          .accordion .card-header i {
            font-size: 1.2rem;
            font-weight: bold;
            position: absolute;
            left: 0;
            top: 9px;
          }
          .accordion .card-header .btn:hover {
            color: #dbad70;
          }
          .accordion .card-body {
            color: #324353;
            padding: 0.5rem 3rem;
          }
          .accordion .highlight .btn {
            color: #098f45;
          }
          .accordion .highlight i {
            transform: rotate(180deg);
          }





























          @media (max-width: 768px) {
            /* Adjust .p-one section for mobile screens */
            .p-one {
              background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5)), url(1.png);
              
              margin-top: 40px;
              max-height: 10vh; /* Set height to 20% of the viewport height */
            }
          }






/* Responsive Menu */
@media (max-width: 1000px) {
  /* Show the menu icon on mobile */
  .menu-icon {
    display: flex;
    z-index: 100001;
  }

  /* Hide aside (menu) and ul container by default */
  aside {
    display: none;
    position: absolute;
    width: 100%;
    background-color: #181717;
    z-index: 10000;
  }

  /* Make the menu visible when the checkbox is checked */
  .menu-checkbox:checked + aside {
    display: block;
    z-index: 10000;
  }

  aside ul.container {
    flex-direction: column;
    gap: 5px;
    padding: 16px 0;
    text-align: center; /* Center the menu items */
    background-color: #181717;
    z-index: 99909;
  }

  aside ul.container li {
    display: none; /* Hide all menu items by default */
    z-index: 99999;
  }c

  /* Show the menu items when the menu-checkbox is checked */
  .menu-checkbox:checked + aside ul.container li {
    display: block;
    z-index: 99999;
  }
}






/* Adjust parallax on mobile */
@media (max-width: 768px) {

  .parallax-inner{
    position:relative;
    min-height: 450px;
    background-position: top center;
    background-attachment: fixed;
    background-size: cover;
  }
  .parallax-inner > h2{

    font-size:15px; 
    position: relative;
    text-decoration-thickness: 6;
    top: 50%;
    left: 0;
    padding: 0%;
    margin-top: -40.5px;
    transform: translateY(+230px);
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .buy-button {
    padding: 15px 25px;
    font-size: 18px;
  }
}














          









/* Spline Container */
.spline-container {
  background: linear-gradient(to bottom, #ffffff00, #ddd7cf);
  display: flex;              /* Enable flexbox */
  justify-content: center;     /* Center items horizontally */
  align-items: center;         /* Center items vertically */
  width: 100vw;                /* Take full width of the viewport */
  height: auto;                /* Adjust height automatically */
  overflow: visible;            /* Prevent unwanted overflow */
  padding: 0;                  /* Remove any default padding */
  margin: 0;                   /* Remove any default margin */
}

/* Spline Element */
.spline-element {
  width: 100%;                 /* Take full width of the container */
  height: auto;                /* Adjust height automatically */
  max-width: none;             /* Remove any max-width restrictions */
  max-height: none;            /* Remove any max-height restrictions */
  transform: translateY(415px);
  position: absolute;
}



/* Overlay */
.overlay {

  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;          /* Centers the content horizontally */
  justify-content: center;      /* Centers the content vertically */
  transform: translateY(400px);
  color: rgb(0, 0, 0);
  pointer-events: none;         /* Allows clicks to pass through to the spline element */
  text-align: left;           /* Center-align text */
  padding-top: 0;           /* Adjust this value to lower the content */
 
}











.overlay h1, .overlay h5 {
  pointer-events: all; /* Allows the text to be interacted with if needed */
}
.overlay > h5{

  padding: 5%;
}

/* Row Container */
.row-container {
  display: flex;
  align-items: center; /* Centers items vertically in the row */
  justify-content: center; /* Centers items horizontally in the row */
  gap: 20px; /* Space between the text and button */
  pointer-events: all; /* Allows the button to be interacted with */
  margin-bottom: -15px; /* Space below the row container */
}

/* Button Wrapper */
.buy-button-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px; /* Add padding to create the capsule shape */
  background-color: #4CAF50;
  border-radius: 50px; /* High border-radius to create capsule effect */
  transition: transform 0.3s;
  pointer-events: all; /* Allows the button to be interacted with */
}

.buy-button-wrapper:hover {
  transform: scale(1.1);
}

/* Button Styling */
.buy-button {
  display: flex;
  align-items: center;
  background-color: transparent;
  color: white;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-size: 16px; /* Adjust font size if necessary */
}

/* SVG Styling */
.buy-button img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}









form {
  position: relative;
  bottom: 0;
  right: 0;
}









.centered-text {
  text-align: center;
  margin-top: 5px; 
  z-index: 10000;
}