#page-cover {
  width: 100%;
  height: 100%; /* Full viewport height */
  position: relative;
  /* padding-bottom: 50px; */
  display: flex;
  justify-content: space-between; /* Center horizontally */
}

#page-title {
  width: 100%;
  top: 10%; /* Adjust vertical positioning */
  left: 0;
  text-align: center;
  z-index: 2; /* Make sure title is above the SVG */
  margin-top: 80px;
  margin-bottom: 30px;
}

#page-cover .proterra-carousel {
  width: 100%;
  left: 0;
  top: 0;
  position: absolute;
  height: 100%;
}

#page-cover .proterra-carousel .swiper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%; /* Ensure the swiper-wrapper is full width */
  height: 100%; /* Ensure it takes the full height */
  left: 0 !important;
}

#page-cover .proterra-carousel .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%; /* Each slide should take full width of the container */
  height: 100%; /* Each slide should fill the height of the container */
}

#page-cover .proterra-carousel .swiper-slide img {
  max-width: 30%; /* Limit image width */
  max-height: 70%; /* Limit image height relative to viewport height */
  object-fit: contain; /* Maintain aspect ratio of images */
  margin-left: -4%;
}

#page-cover .proterra-carousel .swiper-pagination {
  position: absolute;
  bottom: 5%; /* Position dots at the bottom of the SVG */
  left: 50%;
  transform: translateX(
    calc(-50% - 20px)
  ); /* Center the dots horizontally with 100px offset */

  z-index: 4; /* Make sure dots are above the SVG */
  width: auto; /* Allow width to adjust dynamically */
}

#page-title h1 {
  font-family: "Rheem Sans Light";
  font-style: normal;
  font-weight: 300;
  font-size: 50px;
  line-height: 64px;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
}

#page-title .orders {
  color: #cd1222 !important;
  font-size: 70px;
}

#page-title p {
  font-family: "Rheem Sans Light";
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  color: #ffffff;
  padding-top: 30px;
}

#page-cover svg {
  height: auto;
  max-width: 100% !important;
  margin-left: 0;
}

#prod-vid {
  padding-top: 150px;
  background: url(../img/bg-double-circle.svg) no-repeat;
  background-position: left -17% top 0px;
  background-size: 30%;
}

#prod-vid .vid-container {
  background-image: url(../img/proterra/product-vid.jpg);
  background-size: cover;
  border-radius: 60px;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#prod-vid .vid-container h3 {
  font-family: "Rheem Sans Light";
  font-style: normal;
  font-weight: 300;
  font-size: 30px;
  line-height: 36px;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: #ffffff;
}

#prod-info-table {
  padding-top: 100px;
  background: url(../img/bg-single-circle.svg) no-repeat;
  background-position: right -17% top 0px;
  background-size: 30%;
}

#prod-info-table * {
  font-family: "Rheem Sans Roman";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 36px;
  letter-spacing: 0.05em;
}

#prod-info-table *:not(h1) {
  color: #63666a !important;
}

#prod-info-table thead tr th {
  background: #cd1222 !important;
  background-color: #cd1222 !important;
  color: #ffffff !important;
}

#prod-info-table th,
#prod-info-table td {
  vertical-align: middle;
  padding: 10px 0;
}

#prod-info-table tr th:first-child,
#prod-info-table tr td:first-child {
  border-radius: 10px 0 0 10px !important;
  padding-left: 20px;
}

#prod-info-table tr th:last-child,
#prod-info-table tr td:last-child {
  border-radius: 0 10px 10px 0 !important;
}
/* .table-striped > tbody > tr:nth-of-type(odd) > * {
  background-color: #f5f5f5 !important;
} */

/* .table-striped tbody tr:nth-of-type(even) * {
  background-color: #f5f5f5 !important;
} */

/* SLIDER STYLING */
.main-ellipse {
  flex: 1 1 300px; /* Adjust the minimum size if needed */
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  border: 1px solid #cd1222;
  position: relative;
  max-width: 600px; /* Maximum width, adjust as needed */
  max-height: 600px; /* Maximum height, adjust as needed */
  box-sizing: border-box;
  position: relative;
}

.main-ellipse .info-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  left: 0;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  padding: 80px 0 40px 0;
}

.main-ellipse .info-slide h6 {
  font-family: "Rheem Sans Light";
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 18px;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;

  color: #000000;
}

.main-ellipse .inside-ellipse {
  height: 300px;
  width: 300px;
  border-radius: 100%;
  left: 50%;
  margin-left: -150px;
  top: 50%;
  margin-top: -150px;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.main-ellipse .inside-ellipse.red {
  background-color: #cd1222;
}

.main-ellipse .inside-ellipse.grey {
  background-color: #f5f5f5;
}

.main-ellipse .inside-ellipse img {
  height: 80%;
  width: 60%;
  object-fit: contain;
}

.main-ellipse .inside-ellipse:hover {
  background-color: #cd1222;
}

.main-ellipse .inside-ellipse .hover-text {
  position: absolute;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  background: rgba(205, 18, 34, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.main-ellipse .inside-ellipse .hover-text p {
  font-family: "Rheem Sans Light";
  font-style: normal;
  font-weight: 300;
  font-size: 15px;
  line-height: 24px;
  text-align: center;
  color: #ffffff;
  padding: 26px;
}

.main-ellipse .inside-ellipse:hover .hover-text {
  display: flex;
}

.swiper {
  width: 120%;
  left: -10% !important;
  height: 613px;
  position: relative;
}

.swiper-slide {
  display: flex !important;
  justify-content: center !important;
  align-items: center;
}

#ellipse-slider .app-slider-left {
  position: absolute;
  left: 50%;
  margin-left: -18.3%;
  top: 50%;
  margin-top: -18px;
  width: 3vw;
  z-index: 9;
  display: flex;
  justify-content: center;
  align-items: center;
}

#ellipse-slider .app-slider-right {
  position: absolute;
  right: 50%;
  margin-right: -18.3%;
  top: 50%;
  margin-top: -18px;
  width: 3vw;
  z-index: 9;
  display: flex;
  justify-content: center;
  align-items: center;
}

#ellipse-slider .app-slider-right img,
#ellipse-slider .app-slider-left img {
  max-width: 100%;
}

#applications-slider {
  padding-top: 170px;
}

#find-distributors {
  padding: 100px 0 200px 0;
  text-align: center;
}

#map-wrapper {
  background: url(../img/map-background.svg) no-repeat;
  background-size: cover;
  background-position: bottom center;
}
/* SLIDER STYLING */
