* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Trebuchet MS", sans-serif;
}

.cookie-prompt {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  color: #000000;
  padding: 1em;
  text-align: center;
  z-index: 9999;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-prompt p {
  margin: 0;
  padding: 5px;
  font-size: 14px;
}

.cookie-prompt a {
  text-decoration: underline;
  color: black;
}

#accept-cookies {
  all: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 0.5em;
  text-align: center;
  text-decoration: none;
  color: white;
  border-radius: 0.2em;
  background-color: dodgerblue;
  cursor: pointer;
  border: none;
  align-self: center;
}

#accept-cookies:hover {
  background-color: #0056b3;
}

h1,
h2,
h3,
h4 {
  text-align: center;
}

h1 {
  font-size: 2.5em;
  margin-top: 2.5em;
  margin-bottom: 0.8em;
}

h2 {
  margin-bottom: 1em;
}

.navigation-bar {
  display: flex;
  position: fixed;
  flex-wrap: wrap;
  background-color: transparent;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 1em 2em;
  box-sizing: border-box;
  transition: all 500ms ease;
  color: white;
  z-index: 10;
}

.navigation-bar-logo {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-weight: bold;
  text-decoration: none;
  color: unset;
}

.navigation-bar-logo-icon {
  margin-right: 0.5em;
}

.navigation-bar-links {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navigation-bar-link {
  all: unset;
  flex: 1;
  text-align: center;
  cursor: pointer;
  margin: 1em 0;
}

.navigation-bar-link:hover {
  color: dodgerblue;
}

.primary-button {
  all: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 400px;
  box-sizing: border-box;
  padding: 1em;
  text-align: center;
  text-decoration: none;
  color: black;
  font-weight: bolder;
  text-transform: uppercase;
  border-radius: 0.8em;
  background-color: white;
  cursor: pointer;
  border: none;
  margin: 2em 0;
  align-self: center;
}

.primary-button:hover {
  opacity: 0.9;
}

.hamburger-menu {
  display: none;
  cursor: pointer;
  font-size: 1.5em;
}

.hamburger-menu:hover {
  color: dodgerblue;
}

.white {
  color: white;
  background-color: white;
}

.blue {
  color: dodgerblue;
  background-color: dodgerblue;
}

.landing {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  box-sizing: border-box;
  position: relative;
}

.landing-video {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  z-index: 0;
}

.landing-content {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.6);
}

.page-section {
  padding: 10em 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.blue-background {
  background-color: dodgerblue;
  color: white;
}

.width-restrictor {
  width: 80%;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.feature-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 2em;
  grid-row-gap: 2em;
}

.feature {
  display: grid;
  grid-template-rows: 0fr 0fr 1fr;
  grid-row-gap: 0.5em;
  align-items: center;
  text-align: center;
}

.feature-icon {
  font-size: 2em;
  color: dodgerblue;
}

.feature-title {
  font-size: 1.5em;
  font-weight: bold;
}

.feature-text {
  color: #5c636a;
}

.fullscreen-image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 11;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.fullscreen-image {
  max-height: 90%;
  max-width: 90%;
}

.close-button {
  font-size: 2em;
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  cursor: pointer;
  color: white;
}

.close-button:hover {
  opacity: 0.8;
}

.preview-images {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin: 0 auto;
  align-items: center;
  justify-items: center;
  max-width: 900px;
}

.preview-image {
  position: relative;
}

.preview-image img {
  max-width: 100%;
  max-height: 500px;
}

.preview-image-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: 0.5s ease;
  background-color: dodgerblue;
  cursor: pointer;
}

.preview-image-overlay:hover {
  opacity: 0.8;
}

.preview-image-text {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

.perfect-for-list {
  display: flex;
  flex-direction: column;
}

.perfect-for-list-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.perfect-for-list-item-text {
  flex: 1;
}

.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  margin-top: 2em;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  font-family: inherit;
  resize: vertical;
  max-height: 400px;
  font-size: 16px;
  padding: 0.8em 1.2em;
  margin: 0.5em 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 0.8em;
}

.contact-form textarea {
  min-height: 200px;
}

.errorlist {
  list-style-type: none;
}

.message-success {
  color: forestgreen;
  text-align: center;
}

.message-error {
  color: darkred;
  text-align: center;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4em 0;
  background-color: dodgerblue;
  color: white;
}

.social-media-links {
  font-size: 2em;
  margin: 1em 0;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-media-links i {
  color: white;
  text-decoration: none;
  margin: 1em;
}

.privacy-policy-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 1em;
  box-sizing: border-box;
}

.privacy-policy {
  max-width: 800px;
}

.privacy-policy-h2 {
  text-align: left;
  margin: 0.5em 0;
}

.privacy-policy-p {
  font-size: 0.8em;
  color: gray;
}

.faq-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 1em;
  box-sizing: border-box;
}

.faq {
  max-width: 800px;
}

.faq-h2 {
  text-align: left;
  margin: 0.8em 0;
}

.faq-p {
  color: gray;
}

.feature-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2em 0;

}

.feature-table-cell {
  padding: 1em;
  color: gray;
  text-align: left;
}

.feature-table-header {
  font-weight: bold;
  color: black;
  font-size: 20px;
}

.carousel-container {
  position: relative;
  max-width: 600px;
  overflow: hidden;
  margin: auto;
  border-radius: 0.8em;
}

.carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
  position: relative;
}

.carousel-item {
  flex: 0 0 100%;
  position: relative;
}

.carousel img {
  width: 100%;
  object-fit: cover;
  display: block;
  transition: 0.5s ease;
}

.carousel img:hover {
  opacity: 0.3;
}

.text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.carousel-item:hover .text-overlay {
  opacity: 1;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 24px;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  padding: 10px;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.who-we-are-section {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.team-member {
  text-align: center;
  flex: 1;
}

.team-member img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.member-name {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 5px;
}

.member-description {
  font-size: 14px;
}

@media only screen and (max-width: 800px) {
  .navigation-bar {
    background-color: white;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.75);
    color: black;
  }

  .navigation-bar-links {
    flex-basis: 100%;
    flex-direction: column;
    align-items: flex-start;
    display: none;
    margin-top: 1em;
  }

  .hamburger-menu {
    display: block;
  }

  .preview-images {
    grid-template-columns: 1fr 1fr;
  }
}

@media only screen and (max-width: 600px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .carousel-container {
    border-radius: 0;
  }

  .who-we-are-section {
    grid-template-columns: 1fr;

  }

  .team-member {
    margin: 1em 0;
  }
}