@charset "UTF-8";
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Arial, sans-serif;
}

body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 1000; /* Keeps the loading screen on top */
}
#loading-screen p {
  color: white;
  padding: 20px;
}

.spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  -webkit-animation: spin 2s linear infinite;
          animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#centered-main-story-Pone,
#centered-main-story-Ptwo,
#centered-main-story-Pthree,
#centered-main-story-Pfour {
  transition: opacity 0.3s ease, visibility 0s 0.3s;
}

#background-image-darkener {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0); /* Initial transparent background */
  z-index: 1;
  transition: background-color 0.5s ease; /* Smooth transition for background color */
}

.background-image {
  background: url("/photos/background.jpg") no-repeat center center fixed;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background-size: cover !important;
  transition: background-color 0.5s;
}

.overlay {
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  color: white;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  z-index: 4;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.navbar #nav-menu {
  align-items: center;
}
@media (max-width: 600px) {
  .navbar #nav-menu-letstalk {
    display: none;
  }
}
.navbar #nav-menu-letstalk .letstalk-wrapper {
  border: 2.4px solid white;
  border-radius: 50px;
  padding: 11.5px 27px;
  display: inline-block;
}
.navbar #nav-menu-letstalk a {
  color: white;
  text-decoration: none;
}

#nav-menu li {
  transition: color 0.3s ease;
}

#nav-menu li:hover {
  color: rgb(79, 187, 254); /* Change text color to blue on hover */
}

#nav-menu li a {
  color: inherit; /* Inherit color from the li */
  text-decoration: none; /* Remove underline */
}

#nav-menu li:hover a {
  color: rgb(79, 187, 254); /* Change text color to blue on hover */
}

ul {
  list-style: none;
  padding: 0;
  color: white;
}

li {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  list-style-type: none;
}

li::before {
  content: "●"; /* Add the bullet point */
  font-size: 1rem;
  color: white;
  position: absolute;
  bottom: -25px; /* Adjust as needed */
  visibility: hidden; /* Initially hide the bullet point */
}

/* When the show-bullet class is added, the bullet point will appear */
li.show-bullet::before {
  visibility: visible; /* Show the bullet point */
}

.navbar ul {
  display: flex;
  margin: 0;
  padding: 0;
  width: 100%;
  justify-content: space-around;
}

.navbar ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.navbar ul li {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative; /* Keep relative positioning for the text */
  text-align: center; /* Ensures text inside `li` is centered */
}

.navbar ul li .locator {
  width: 10px;
  height: 10px;
  background-color: white;
  border-radius: 50%;
  display: none;
  margin-top: 12%;
}

.menu-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-icon .bar1, .menu-icon .bar2, .menu-icon .bar3 {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 4px 0;
  transition: 0.4s;
}

.centered-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

#centered-main-story {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  position: relative;
}
#centered-main-story p {
  margin: 0px 0;
  padding: 0 20%;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(16px, 2vw, 20px);
}
#centered-main-story #centered-main-story-title {
  transform: translateY(-350%);
  font-weight: bold !important;
  font-size: 30px;
}
@media (max-width: 1200px) {
  #centered-main-story p {
    padding: 0 17% !important;
  }
}
@media (max-width: 900px) {
  #centered-main-story p {
    padding: 0 10% !important;
  }
}
@media (max-width: 600px) {
  #centered-main-story p {
    padding: 0 15% !important;
  }
  #centered-main-story #centered-main-story-title {
    transform: translateY(-410%);
  }
}

.centered-text h1 {
  font-size: clamp(2em, 2vw, 3em);
  margin: 0;
}

.centered-text p {
  font-size: clamp(1.2em, 2vw, 1.5em);
  margin: 10px 25px 0;
}

.change .bar1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.change .bar2 {
  opacity: 0;
}

.change .bar3 {
  transform: rotate(45deg) translate(-5px, -6px);
}

#scrollenabler {
  height: 3300px;
}

#pressr {
  width: 100vw;
  height: 100vh;
  background-color: white;
}

#normal-content {
  width: 100vw;
  height: 100vh;
  position: relative;
  background-color: black;
  z-index: 3;
}

.containerPress {
  width: 100vw;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: nowrap;
  padding: 20px;
  box-sizing: border-box;
  flex-direction: column;
}
.containerPress #innercontainerPress #square1:hover {
  transform: scale(1.15);
  transition: transform 0.3s ease;
}
.containerPress #innercontainerPress #square2:hover {
  transform: scale(1.15);
  transition: transform 0.3s ease;
}
.containerPress #innercontainerPress #square3:hover {
  transform: scale(1.15);
  transition: transform 0.3s ease;
}
.containerPress #innercontainerPress #square4:hover {
  transform: scale(1.15);
  transition: transform 0.3s ease;
}
.containerPress #innercontainerPress {
  width: 100vw;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: nowrap;
  padding: 20px;
  box-sizing: border-box;
  overflow-x: auto;
}
.containerPress #innercontainerPress a img {
  flex: 0 1 auto;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

#pressli1 {
  width: 10%;
  height: 2px;
  background-color: #ffffff;
  margin-top: 3% !important;
  margin: 10px;
  min-width: 120px;
}

#pressli2 {
  width: 5%;
  height: 2px;
  background-color: #ffffff;
  min-width: 50px;
}

.square {
  width: calc(25% - 20px); /* Adjust width based on number of squares */
  max-width: 200px;
  min-width: 100px;
  margin: 0 10px;
  position: relative;
}

.square > div {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

#FeaturedPressReleases {
  margin-bottom: 20px;
  color: white;
  margin-bottom: 7%;
}

#AtchivementsCont {
  display: flex;
  flex-direction: column; /* Stack items vertically */
  align-items: center; /* Center items horizontally */
}
#AtchivementsCont .Atchievmentswrapper {
  width: 100vw; /* Full viewport width */
  display: flex; /* Center the image inside the wrapper */
  justify-content: center;
  align-items: center;
}
#AtchivementsCont .Atchievmentswrapper img {
  max-width: 100%; /* Ensure image fits inside */
  max-height: 100%; /* Ensure image fits inside */
  -o-object-fit: contain;
     object-fit: contain; /* Maintain aspect ratio */
}

.image-container {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  width: 100vw;
  height: auto;
  background-color: black;
  align-items: center;
  justify-content: center;
  position: relative;
  /* Scaling when hovering over an individual image */
  /* Individual image hover effects */
}
.image-container #certtitlecon {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.image-container #certtitlecon p {
  color: white;
  font-size: 45px;
  position: relative;
}
.image-container .row a {
  flex: 0 1 auto;
  width: 20%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 1%;
  background-color: black;
  min-width: 140px;
  max-width: 200px;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease; /* Smooth scaling transition */
}
.image-container .row img:hover {
  transform: scale(1.15); /* Scale individual images by 15% */
}
.image-container .row #img1:hover,
.image-container .row #img2:hover,
.image-container .row #img3:hover,
.image-container .row #img4:hover,
.image-container .row #img5:hover,
.image-container .row #img6:hover,
.image-container .row #img7:hover,
.image-container .row #img8:hover,
.image-container .row #img9:hover,
.image-container .row #img10:hover {
  transform: scale(1.15); /* Scale the hovered image */
  transition: transform 0.3s ease; /* Apply smooth transition */
}

.row-wrapper {
  background-color: black;
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: visible;
  margin: 20vw 0px;
}
.row-wrapper #Cert-titel {
  color: white;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 4.33vh;
  display: flex;
  justify-content: center;
}

#row1 {
  overflow-x: scroll;
  scrollbar-width: none; /* For Firefox */
}

#row1::-webkit-scrollbar {
  display: none; /* For Chrome, Safari, and Edge */
}

.row {
  overflow-x: scroll;
  background-color: black;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin: 10px 0;
  padding: 0 10px;
}

/* Adjust the image size */
.row img {
  flex: 0 1 auto;
  width: 18%; /* Adjust the width for better scaling */
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 1%;
  background-color: black;
  min-width: 160px; /* Increased the minimum width for better visibility */
  max-width: 220px; /* Increased the maximum width for better visibility */
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease; /* Smooth scaling transition */
}

@media (max-width: 1300px) {
  .row a {
    margin: 6% !important;
  }
}
#innerCont {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
#innerCont #innerCont-Click {
  font-family: "Sen", sans-serif;
  font-weight: 800 !important;
  font-size: clamp(22px, 2vw, 26px);
}
#innerCont .innerCont-scroll,
#innerCont .innerCont-scroll-more {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(18px, 2vw, 20px);
  padding: 3px !important;
}
@media (max-width: 550px) {
  #innerCont .innerCont-scroll-more {
    display: none !important;
  }
}

#innerCont p {
  color: white;
  padding: 0 3%;
  font-family: "Sen", sans-serif;
}

.innerCont-scroll {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

#inner-Cont-Click {
  font-size: 177%;
  font-family: "Sen", sans-serif;
  font-weight: 800;
}

/* Modal Styles */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1; /* Sit on top */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Center the modal */
  background-color: rgba(0, 0, 0, 0.8); /* Black with opacity */
  box-shadow: 0 100vh 100vh rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 20px;
}

.modal img {
  display: block;
  max-width: 90vw; /* Adjust to fit smaller screens */
  max-height: 90vh; /* Prevent overflowing screen */
  margin: auto;
}

.modal-content {
  max-height: 90vh; /* Limit height for the modal image */
  max-width: 100vw;
  margin: auto;
  display: block;
}

#caption {
  text-align: center;
  color: white;
  font-size: 20px;
  padding: 10px;
  font-family: "Sen", sans-serif;
}

.close {
  position: absolute;
  top: 25px;
  right: 40px;
  width: 45px;
  height: 45px;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px; /* Adjust the size of the X */
  color: rgb(245, 245, 245); /* Color of the X */
  border: 2px solid white; /* White stroke around the circle */
  text-shadow: none;
  cursor: pointer;
  z-index: 2;
}

.close:hover,
.close:focus {
  background-color: rgba(244, 67, 54, 0.8);
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.video-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Create 4 equal columns */
  gap: 10px; /* Space between videos */
  overflow-x: scroll; /* Enable horizontal scrolling if necessary */
  overflow-y: hidden;
}
.video-container li {
  display: none;
}
@media (max-width: 709px) {
  .video-container li {
    display: block;
    width: 55%;
    height: 2px;
    background: linear-gradient(to right, #000000, #22d07c, #d7c539, #7b35cb, #3576cb, #000000);
  }
}
.video-container .video-wrapper {
  min-width: 300px !important;
  overflow: hidden;
  height: 100%;
  position: relative;
  width: 100%; /* Take full width of the grid cell */
  aspect-ratio: 16/9;
}
.video-container .video-wrapper video {
  position: relative; /* Change to relative to allow controls to be visible */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* Ensure the video maintains the aspect ratio */
  cursor: pointer;
  z-index: 1; /* Ensure the video appears above any background */
}

@media (max-width: 1200px) {
  .video-container {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center; /* Center items horizontally */
    gap: 10px;
    width: 100%; /* Ensure the container takes full width */
    margin: 0 auto; /* Center the container horizontally */
  }
  .video-container .video-wrapper {
    width: 100%; /* Take full width of the container */
    flex-basis: 100%; /* Each wrapper takes up 100% width, forcing them to wrap individually */
    max-width: 350px; /* Max width for each video wrapper */
    aspect-ratio: 16/9; /* Ensure aspect ratio is maintained */
  }
}
@media (max-width: 709px) {
  .video-container {
    flex-direction: column;
    align-items: center;
  }
}
#load-more-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 10vh; /* Full viewport height */
  min-height: 200px;
}

#load-more {
  background-color: #e63946;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
#load-more:hover {
  background-color: #ffffff;
  transform: scale(1.05);
  color: black;
}
#load-more:active {
  background-color: #c1232b;
}

#pasteventcont {
  width: 100vw;
  height: 20vh;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
}
#pasteventcont #pasteventconttitle {
  color: white;
  font-size: 45px;
}

.pastevent {
  display: flex;
  flex-wrap: wrap;
  width: 100%; /* Ensures gallery spans full width */
  background-color: black;
  justify-content: flex-start; /* Align images from the left */
  padding: 0;
}
.pastevent .image-wrapper {
  position: relative;
  flex: 1 0 16.66%; /* 6 images per row (100% / 6) */
  min-width: 0; /* Prevent images from overflowing */
  max-width: none; /* Allow flexible scaling */
  height: 250px; /* Fixed height for image wrapper */
  box-sizing: border-box;
  margin: 0; /* No space between images */
  border: none !important;
  /* Ensure image fills entire wrapper */
  /* Remove top border from the first row (topmost images) */
  /* Remove bottom border from the bottommost images (last row) */
}
.pastevent .image-wrapper img {
  width: 100%; /* Force image to take up the full width of its container */
  height: 100%; /* Force image to take up the full height of its container */
  -o-object-fit: cover;
     object-fit: cover; /* Force image to cover the container while preserving aspect ratio */
  -o-object-position: center;
     object-position: center; /* Center the image */
}
.pastevent .image-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4); /* Dark overlay */
  pointer-events: none;
}
.pastevent .image-wrapper:hover::after {
  background-color: rgba(255, 86, 86, 0.34); /* Darker blue on hover */
}
.pastevent .image-wrapper:nth-child(-n+6) {
  border-top: none;
}
.pastevent .image-wrapper:nth-last-child(-n+6) {
  border-bottom: none;
}
@media (max-width: 1200px) {
  .pastevent .image-wrapper {
    flex: 1 0 20%; /* 5 images per row (100% / 6) */
  }
}
@media (max-width: 950px) {
  .pastevent .image-wrapper {
    flex: 1 0 33.33%; /* 5 images per row (100% / 6) */
  }
}

#upcomingeventscont {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#upcomingeventscont #upcomingeventsP {
  color: white;
  font-family: "Sen", sans-serif;
  font-weight: 800 !important;
  font-size: clamp(22px, 2vw, 28px);
}
#upcomingeventscont #upcomingeventscontinner {
  width: 100vw;
  height: 50vh;
  display: flex;
  justify-content: space-around;
  align-items: center;
  overflow-x: scroll;
  overflow-y: hidden;
}

a {
    width: 314px;
  height: 300px;
  
  P{
      text-shadow: 2px 2px 6px black, 0px 0px 6px black, 0px 0px 10px black;
  }
}
#upcomingeventscont #upcomingeventscontinner #newevent1 {
  background-image: url("/photos/newevent1.jpeg") !important;
  background-size: cover;
  background-position: center;
  height: 100%; /* Make sure the div has a height, or else the image won't stretch */
  margin: 0px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#upcomingeventscont #upcomingeventscontinner .eventcont {
  margin: 50px;
  height: 230px;
  min-width: 200px;
  background: linear-gradient(to bottom, rgba(0, 208, 255, 0.15), rgba(255, 246, 0, 0.15), rgba(123, 0, 255, 0.15));
  border: 0.7px solid rgb(255, 255, 255); /* Black 100% opacity border */
  width: calc(18% - 20px);
  display: flex;
  justify-content: center;
  align-items: center;
}
#upcomingeventscont #upcomingeventscontinner .eventcont p {
  color: white;
  font-family: "Sen", sans-serif;
  font-weight: 600 !important;
  font-size: clamp(16px, 2vw, 20px);
}

#load-more-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 10vh; /* Full viewport height */
  min-height: 200px;
}

#load-more {
  background-color: #e63946;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
#load-more:hover {
  background-color: #ffffff;
  transform: scale(1.05);
  color: black;
}
#load-more:active {
  background-color: #c1232b;
}

#galtitlecon {
  width: 100vw;
  height: 20vh;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
}
#galtitlecon p {
  color: white;
  font-size: 45px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  width: 100%; /* Ensures gallery spans full width */
  background-color: black;
  justify-content: flex-start; /* Align images from the left */
  padding: 0;
}

.image-wrapper {
  position: relative;
  flex: 1 0 16.66%; /* 6 images per row (100% / 6) */
  min-width: 0; /* Prevent images from overflowing */
  max-width: none; /* Allow flexible scaling */
  height: 250px; /* Fixed height for image wrapper */
  box-sizing: border-box;
  margin: 0; /* No space between images */
  border: 0.5px solid rgba(255, 255, 255, 0.435); /* Apply white border all around */
  /* Ensure image fills entire wrapper */
  /* Remove top border from the first row (topmost images) */
  /* Remove bottom border from the bottommost images (last row) */
}
.image-wrapper img {
  width: 100%; /* Force image to take up the full width of its container */
  height: 100%; /* Force image to take up the full height of its container */
  -o-object-fit: cover;
     object-fit: cover; /* Force image to cover the container while preserving aspect ratio */
  -o-object-position: center;
     object-position: center; /* Center the image */
}
.image-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4); /* Dark overlay */
  pointer-events: none;
}
.image-wrapper:hover::after {
  background-color: rgba(86, 193, 255, 0.34); /* Darker blue on hover */
}
.image-wrapper:nth-child(-n+6) {
  border-top: none;
}
.image-wrapper:nth-last-child(-n+6) {
  border-bottom: none;
}

@media (max-width: 1200px) {
  .image-wrapper {
    flex: 1 0 20%; /* 4 images per row (100% / 6) */
  }
}
@media (max-width: 950px) {
  .image-wrapper {
    flex: 1 0 33.33%; /* 3 images per row (100% / 6) */
  }
}
.carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 55vh;
  background-color: black;
  flex-direction: column;
  margin-top: 180px;
  margin-bottom: 250px;
}
.carousel-container #scrollYoutubeP {
  color: white;
  font-size: 35px;
}
.carousel-container li {
  height: 100%; /* Fixed height for visibility */
  width: 2px;
  background: linear-gradient(to bottom, #000000, #22d07c, #d7c539, #7b35cb, #3576cb, #000000);
  flex-shrink: 0; /* Prevent shrinking */
  margin: 20px;
}
.carousel-container #youtubeVideoTitle {
  color: white;
  font-size: 35px;
  text-align: center;
  margin-bottom: 20px;
}
.carousel-container .video-wrapper {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 10px;
  box-sizing: border-box;
  min-height: 300px;
}
.carousel-container .video-wrapper iframe {
  flex: 0 1 auto;
  min-width: 300px;
  max-width: 25%;
  aspect-ratio: 16/9;
  border: none;
  margin: 0 10px;
}

.footer-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80vh;
  width: 100vw;
  background: url("/photos/footerPc.jpg") no-repeat center center;
  background-size: cover;
  margin-top: 8vw;
}
.footer-container .lines-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
}
.footer-container .lines-container #footerletstalk-wrapper {
  border: 2.4px solid white;
  border-radius: 50px;
  padding: 11.5px 27px;
  display: inline-block;
}
.footer-container .lines-container #footerletstalk-wrapper a {
  color: white;
  text-decoration: none;
}
.footer-container .lines-container .line {
  width: 2px;
  height: 80vh;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 100%);
}
.footer-container .lines-container .text-container {
  color: white;
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  flex-direction: column;
}
.footer-container .lines-container #footer-spacer {
  width: 100vw;
  height: 20vh;
  background-color: black;
}
.footer-container .lines-container #text-container1 a,
.footer-container .lines-container #text-container2 a,
.footer-container .lines-container #text-container3 a {
  color: white !important;
  text-decoration: none !important;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 3.33vh;
}
.footer-container .lines-container #footertextme,
.footer-container .lines-container #footeremailme {
  color: white !important;
  text-decoration: none !important;
  font-family: "Roboto", sans-serif;
  font-weight: 200 !important;
  font-style: italic !important;
  font-size: 3.33vh !important;
  padding: 1%;
}

@media (max-width: 750px) {
  .footer-container {
    width: 100vw;
    height: 100vh;
  }
  .footer-container .lines-container {
    flex-direction: column;
  }
  .footer-container .lines-container .line {
    width: 100vw;
    height: 2px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 100%);
  }
  .footer-container .lines-container .text-container {
    height: 30vh;
    width: 100vw;
  }
}/*# sourceMappingURL=main.css.map */