@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700&family=Libre+Baskerville:wght@400;700&family=Oswald:wght@200;300;400;500;600;700&display=swap");
/* --- Base Styles --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "DM Sans", sans-serif;
  background-color: rgba(223, 226, 231, 0.5803921569);
  font-size: 10px;
}

/* --- Global Text Styles --- */
.title {
  font-family: "Libre Baskerville", serif;
  font-size: 5.5vw;
  font-weight: 400;
}
@media (min-width: 576px) {
  .title {
    font-size: 2.5vw;
  }
}

.bold-text {
  font-size: 5vw;
  font-weight: 600;
}
@media (min-width: 576px) {
  .bold-text {
    font-size: 2vw;
  }
}
@media (min-width: 768px) {
  .bold-text {
    font-size: 2.5vw;
  }
}
@media (min-width: 1200px) {
  .bold-text {
    font-size: 2vw;
  }
}

p {
  font-size: 4vw;
}
@media (min-width: 576px) {
  p {
    font-size: 1.8vw;
  }
}

/* --- Utility Classes --- */
.text-color-blue {
  color: #503b3e;
}

.bg-blue {
  background-color: hsl(214, 32%, 36%);
}

/* --- Navbar Styling --- */
.navbar {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.navbar .navbar-brand img {
  height: auto;
  width: 500px;
  max-height: 100%;
}
.navbar .navbar-toggler {
  padding: 0.25rem 0.5rem;
}
.navbar .navbar-nav .nav-link {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  line-height: 1.2;
  font-size: 1.2rem;
  font-weight: 500;
}
@media (min-width: 992px) {
  .navbar .navbar-nav .nav-link {
    position: relative;
    padding-right: 1.2rem;
  }
  .navbar .navbar-nav .nav-link::after {
    content: "|";
    position: absolute;
    right: 0.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: hsl(126, 5%, 39%);
    font-size: 1.2rem;
  }
}
@media (min-width: 992px) {
  .navbar .navbar-nav .nav-link:last-child {
    padding-right: 0.75rem;
  }
  .navbar .navbar-nav .nav-link:last-child::after {
    content: none;
  }
}

#about p.text-center {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 576px;
  font-size: 5vw;
}
@media (min-width: 576px) {
  #about p.text-center {
    font-size: 2vw;
  }
}
#about img.venti-logo {
  width: 80%;
  max-width: 160px;
  padding-top: 1rem;
}
@media (min-width: 576px) {
  #about img.venti-logo {
    width: 250px;
    max-width: none;
  }
}
#about img.device-photo {
  width: 100%;
  max-width: 400px;
}
@media (min-width: 768px) {
  #about img.device-photo {
    max-width: 500px;
  }
}
#about .col-sm-5 {
  display: flex;
  justify-content: center;
}

#mission {
  margin-bottom: -5rem;
}
@media (min-width: 576px) {
  #mission {
    margin-bottom: 1rem;
  }
}
#mission .title {
  color: hsla(0, 0%, 100%, 0.8);
}
#mission .bold-text {
  color: hsla(0, 0%, 100%, 0.8);
  line-height: 8vw;
  max-width: 90%;
  margin: 0 auto;
}
@media (min-width: 576px) {
  #mission .bold-text {
    line-height: 4vw;
  }
}
@media (min-width: 768px) {
  #mission .bold-text {
    max-width: 900px;
  }
}
@media (min-width: 992px) {
  #mission .bold-text {
    max-width: 1000px;
  }
}
@media (min-width: 1200px) {
  #mission .bold-text {
    max-width: 1500px;
  }
}

#problem .title {
  color: hsl(126, 5%, 39%);
  padding-left: 0;
  margin-left: 0;
  margin-top: -5rem;
}
@media (min-width: 576px) {
  #problem .title {
    margin-top: 0rem;
  }
}
#problem .problem-text {
  padding-left: 0;
}
@media (min-width: 576px) {
  #problem .problem-text {
    padding-left: 2rem;
  }
}
@media (min-width: 768px) {
  #problem .problem-text {
    padding-left: 10px;
  }
}
@media (min-width: 992px) {
  #problem .problem-text {
    padding-left: 40px;
  }
}
@media (min-width: 1200px) {
  #problem .problem-text {
    padding-left: 100px;
  }
}
#problem .slider {
  position: relative;
  display: flex;
  flex-direction: column;
  place-items: center;
  width: 100%;
  height: 450px;
  overflow: hidden;
}
#problem .slider .slide-wrapper {
  position: relative;
  width: 90%;
  height: 90%;
}
@media (min-width: 1200px) {
  #problem .slider .slide-wrapper {
    width: 85%;
    height: 85%;
  }
}
#problem .slider .slides {
  position: relative;
  width: 100%;
  height: 100%;
}
#problem .slider .slides img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  max-height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  pointer-events: none;
  border: 5px solid hsl(126, 5%, 39%);
  border-radius: 15px;
  box-sizing: border-box;
}
#problem .slider .slides img.displaySlide {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
#problem .slider .slide-wrapper button {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
#problem .slider .slide-wrapper:hover button {
  opacity: 1;
  pointer-events: auto;
}
#problem .slider .slide-wrapper button.prev {
  left: 8px;
}
#problem .slider .slide-wrapper button.next {
  right: 8px;
}
#problem .slider button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  padding: 6px 10px;
  background-color: hsla(214, 32%, 36%, 0.5);
  color: hsla(0, 0%, 100%, 0.8);
  border: none;
  border-radius: 20%;
  cursor: pointer;
  z-index: 2;
  font: "Libre Baskerville", serif;
}
#problem .slider .dots-container {
  display: flex;
  justify-content: center;
  margin-top: -5rem;
  gap: 15px;
}
@media (min-width: 1200px) {
  #problem .slider .dots-container {
    margin-top: 1rem;
  }
}
#problem .slider .dot {
  width: 10px;
  height: 10px;
  background-color: #aaa;
  border-radius: 50%;
  transition: all 0.3s ease;
  transform: scale(1);
}
#problem .slider .dot.active {
  background-color: hsl(214, 32%, 36%);
  transform: scale(1.6);
}

#solution .title {
  color: hsl(126, 5%, 39%);
  padding-top: 20px;
}
@media (min-width: 576px) {
  #solution .title {
    padding-top: 0px;
  }
}
#solution .image-column {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 576px) {
  #solution .image-column {
    padding-left: 35px;
  }
}
#solution img {
  max-width: 100%;
  height: 350px;
}
@media (min-width: 1280px) {
  #solution img {
    height: 500px;
  }
}
@media (min-width: 576px) {
  #solution .body {
    line-height: 50px;
    padding-bottom: 50px;
  }
}

#competition .title {
  color: hsl(126, 5%, 39%);
}
#competition .bg-blue {
  height: 210px;
  padding: 1rem;
  overflow-x: clip;
}
@media (min-width: 576px) {
  #competition .bg-blue {
    height: 320px;
  }
}
#competition .bg-blue .inner-content {
  max-width: 1500px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row !important;
  align-items: center;
}
@media (min-width: 576px) {
  #competition .bg-blue .inner-content {
    margin: 0 auto;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
#competition .bg-blue .img-wrapper {
  height: 250px;
  display: flex;
  margin-bottom: 40px;
}
@media (min-width: 576px) {
  #competition .bg-blue .img-wrapper {
    height: 375px;
    margin-bottom: 55px;
  }
}
#competition .bg-blue .img-wrapper img {
  max-height: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
#competition .bg-blue .hawes-quote,
#competition .bg-blue .braun-quote {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: hsla(0, 0%, 100%, 0.8);
  font-style: italic;
}
#competition .bg-blue .hawes-quote p.bold-text,
#competition .bg-blue .braun-quote p.bold-text {
  font-size: clamp(21px, 2.5vw, 45px);
  margin-bottom: 0px;
}
#competition .bg-blue .hawes-quote cite,
#competition .bg-blue .braun-quote cite {
  font-size: clamp(10px, 2.5vw, 25px);
  line-height: clamp(13px, 4vw, 34px);
  margin-top: 1rem;
}

#competition_data th.competitors-header {
  color: hsl(126, 5%, 39%);
}
@media (min-width: 576px) {
  #competition_data th.competitors-header {
    font-size: 1.7rem;
  }
}
@media (min-width: 768px) {
  #competition_data th.competitors-header {
    font-size: 2rem;
  }
}
@media (min-width: 992px) {
  #competition_data th.competitors-header {
    font-size: 3rem;
  }
}

.venti-logo {
  max-width: 100px;
}
@media (min-width: 576px) {
  .venti-logo {
    max-width: 140px;
  }
}
@media (min-width: 768px) {
  .venti-logo {
    max-width: 180px;
  }
}
@media (min-width: 992px) {
  .venti-logo {
    max-width: 200px;
  }
}

#competition_data p {
  font-size: 4vw;
  font-weight: 500;
}
@media (min-width: 576px) and (max-width: 991.98px) {
  #competition_data p {
    font-size: calc(1.8vw * 1.3);
  }
}
@media (min-width: 992px) {
  #competition_data p {
    font-size: 1.8vw;
  }
}
#competition_data th {
  padding-bottom: 15px;
  font-size: 4.5vw;
}
@media (min-width: 576px) and (max-width: 991.98px) {
  #competition_data th {
    font-size: calc(2.4vw * 1.3);
  }
}
@media (min-width: 992px) {
  #competition_data th {
    font-size: 2.4vw;
  }
}
#competition_data td {
  font-size: 3vw;
  font-weight: 600;
  font-style: italic;
  padding-bottom: 10px;
}
@media (min-width: 576px) and (max-width: 991.98px) {
  #competition_data td {
    font-size: calc(1.8vw * 1.3);
  }
}
@media (min-width: 992px) {
  #competition_data td {
    font-size: 1.8vw;
  }
}

#team {
  padding-left: 2rem;
  padding-right: 2rem;
  --team-name-color: hsl(214, 32%, 36%);
  --team-position-color: hsl(214, 32%, 36%);
  --team-description-color: #503b3e;
  --team-font-family: Libre Baskerville, serif;
}
@media (min-width: 768px) {
  #team {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (min-width: 1200px) {
  #team {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}
#team .title {
  color: hsl(126, 5%, 39%);
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  #team .title {
    font-size: 2.5vw;
  }
}
#team .team-header {
  color: #503b3e;
  margin-bottom: 2rem;
}
#team h3.name {
  color: var(--team-name-color);
  font-family: var(--team-font-family);
  font-size: 4vw;
  margin-top: 1rem;
  margin-bottom: 0.1rem;
  min-height: 2rem;
}
@media (min-width: 768px) {
  #team h3.name {
    font-size: 2vw;
    margin-top: 2rem;
    margin-bottom: 1rem;
    min-height: 3.2rem;
  }
}
#team h4.position {
  color: var(--team-position-color);
  font-family: var(--team-font-family);
  font-size: 3vw;
  margin-top: 0rem;
  margin-bottom: 1rem;
  min-height: 2.5rem;
}
@media (min-width: 768px) {
  #team h4.position {
    font-size: 1.5vw;
    margin-bottom: 1.5rem;
    min-height: 3.2rem;
  }
}
#team p.description {
  color: var(--team-description-color);
  font-size: 3.5vw;
}
@media (min-width: 576px) {
  #team p.description {
    font-size: 3vw;
    line-height: 1.6;
  }
}
@media (min-width: 768px) {
  #team p.description {
    font-size: 2vw;
  }
}
@media (min-width: 992px) {
  #team p.description {
    font-size: 1.5vw;
  }
}
#team .infoContainer {
  text-align: center;
}
#team .infoContainer p.description {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
}

#whitepaper .title {
  color: hsl(126, 5%, 39%);
  font-size: 5.5vw;
  margin-bottom: 0rem;
}
@media (min-width: 576px) {
  #whitepaper .title {
    font-size: 2.5vw;
  }
}
#whitepaper .d-flex {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1rem;
  gap: 0rem;
}
#whitepaper .btn-primary {
  background-color: hsl(214, 32%, 36%) !important;
  border-color: black !important;
  border-width: 0.5vw;
  color: hsla(0, 0%, 100%, 0.8) !important;
  text-decoration: underline;
}
@media (min-width: 576px) {
  #whitepaper .btn-primary {
    border-width: 0.2vw;
  }
}
#whitepaper .btn-primary:hover {
  background-color: hsl(214, 32%, 26%) !important;
  border-color: black !important;
}
#whitepaper .form-container {
  text-align: center;
}
#whitepaper .form-container p {
  color: #503b3e;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
#whitepaper .form-container .btn {
  font-size: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 576px) {
  #whitepaper .form-container .btn {
    font-size: 1.125rem;
  }
}
#whitepaper .form-container h2 {
  color: #503b3e;
  font-size: 1.75rem;
  margin-top: 2rem;
}
@media (min-width: 576px) {
  #whitepaper .form-container h2 {
    font-size: 2rem;
  }
}
#whitepaper .form-container h2 .bold-text {
  font-weight: 700;
}
#whitepaper .form-container strong {
  color: #503b3e;
}
@media (max-width: 575.98px) {
  #whitepaper .form-container {
    padding-top: 2rem;
  }
  #whitepaper .img-fluid {
    margin-bottom: 0rem;
  }
}

#sustainability {
  padding: 30px;
  text-align: center;
}
@media (min-width: 820px) {
  #sustainability {
    padding: 40px;
  }
}
#sustainability h2 {
  margin-bottom: 30px;
  font-size: 5.5vw;
  color: hsl(126, 5%, 39%);
  font-family: "Libre Baskerville", serif;
  text-align: center;
}
@media (min-width: 750px) {
  #sustainability h2 {
    margin-bottom: 50px;
    font-size: 2.5vw;
  }
}
#sustainability .card-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
#sustainability .card-container {
  width: 150px;
  height: 200px;
  perspective: 1000px;
}
@media (min-width: 820px) {
  #sustainability .card-container {
    width: 350px;
    height: 450px;
  }
}
#sustainability .card {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  cursor: pointer;
  border-radius: 15px;
}
#sustainability .card.flipped {
  transform: rotateY(-180deg);
}
#sustainability .card-front,
#sustainability .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}
#sustainability .card-front {
  background-color: #27ae60;
  position: relative;
  padding: 20px;
  align-items: flex-start;
}
#sustainability .card-front .card-icon {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 5px;
}
@media (min-width: 820px) {
  #sustainability .card-front .card-icon {
    width: 150px;
    height: 150px;
    border-radius: 15px;
  }
}
#sustainability .card-front .card-title {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  text-align: left;
  width: 100%;
  height: 150px;
  line-height: 1.2;
  margin-top: 75px;
  overflow: hidden;
  display: -webkit-box;
}
@media (min-width: 820px) {
  #sustainability .card-front .card-title {
    font-size: 2.5rem;
    margin-top: 175px;
  }
}
#sustainability .card-back {
  background-color: #2980b9;
  transform: rotateY(180deg);
}
#sustainability .card-back .card-description {
  padding: 15px;
  font-size: 0.62rem;
  text-align: left;
  font-family: "Oswald", sans-serif;
}
@media (min-width: 820px) {
  #sustainability .card-back .card-description {
    font-size: 1.5rem;
    padding: 30px;
  }
}
#sustainability .read-more {
  position: absolute;
  bottom: 15px;
  right: 20px;
  font-family: "Oswald", sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  pointer-events: none;
}
@media (min-width: 820px) {
  #sustainability .read-more {
    font-size: 1rem;
  }
}
#sustainability .read-more .arrow {
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
}
@media (min-width: 820px) {
  #sustainability .read-more .arrow {
    font-size: 1.5rem;
  }
}
#sustainability .corner-curl {
  position: relative;
  overflow: hidden;
}
#sustainability .corner-curl::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 34px;
  height: 34px;
  background: #dfe2e7;
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  z-index: 2;
  pointer-events: none;
  transform: translate(3px, 3px);
}
@media (min-width: 820px) {
  #sustainability .corner-curl::after {
    width: 64px;
    height: 64px;
  }
}
#sustainability .corner-curl::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 30px;
  background: rgba(0, 0, 0, 0.15);
  clip-path: polygon(100% 0, 0 100%, 0 0);
  z-index: 1;
  pointer-events: none;
  border-top-left-radius: 20px;
}
@media (min-width: 820px) {
  #sustainability .corner-curl::before {
    width: 60px;
    height: 60px;
  }
}

footer {
  border-top: solid 2px hsl(214, 32%, 36%);
  margin-top: 20px;
  font-size: 0.85rem;
  padding: 2rem 0;
  color: #503b3e;
}
footer p {
  text-align: center;
}
@media (min-width: 576px) {
  footer p {
    text-align: left;
    align-self: center;
    font-size: 1.25vw;
  }
}
footer .d-flex {
  flex-wrap: wrap;
}
footer .d-flex a {
  margin: 0 0.5rem;
}
footer .d-flex a img {
  width: 40px;
  height: auto;
  transition: transform 0.2s ease;
}
footer .d-flex a img:hover {
  transform: scale(1.1);
}/*# sourceMappingURL=style.css.map */