@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

:root {
  --mainColor: #87af6f;
}

html{
  scroll-behavior: smooth;
}

* {
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
    overflow-y: scroll;
    overflow-x: scroll;
    margin: 0px;
    overflow: auto;
    text-decoration: none;
}

.headerLogo {
  width: 200px;
}

.logoText {
  font-size: 38px;
  font-weight: bold;
  color: var(--mainColor);
}

.chapterHeader {
  display: flex;
  font-size: 30px;
  font-weight: bold;
  margin-top: 30px;
  color: var(--mainColor);
}

.mainContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
}

.videoContainer
{
  width: 100%;
  height: 100vh;
  background-attachment: scroll;
  overflow: hidden;
}

.videoContainer video
{
  width: 100%;
  object-fit: fill;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.videoContainer  {
  text-align: center;
  margin: 0%;
}

.videoOverlay {
  width: 40%;
  position: absolute;
  top: 100px;
  left: 30px;
  color: white;
  text-shadow: 1px 3px 5px #000;
  font-size: 1.8vw;
  font-weight: bold;
  text-align: left;
}

.navBar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0px;
  z-index: 1000;
  height: 80px;
  width: 100%;
  padding-left: 20px;
  background-color: white;
  box-shadow: 0px 5px 9px 2px rgba(0,0,0,0.4);
}

  .navBar__links {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    margin-right: 20px;
    width: 500px;
    height: 100%;
  }

  .navBar__link {
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: black;
    font-weight: bold;
    padding: 10px;
    width: 100px;
    border-left: 0.5px solid var(--mainColor)
  }

  .navBar__link:hover {
    background-color: var(--mainColor);
    color: white
  }

.fleetContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 40px;
  font-size: 20
}

  .fleetContainer__header {
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 0.5px dashed #000;
    padding: 5px;
    width: 80%
  }

  .fleetContainer__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-right: 20px;
    margin-left: 20px;
    margin-top: 20px;
    width: 80%
  }

  .fleetContainer__item_image {
    width: 300px;
    min-width: 200px;
  }

  .fleetContainer__item_data {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: calc(80% - 300px)
  }

  .fleetContainer__item_data_heading {
    font-size: 25px;
    font-weight: bolder;
    align-self: flex-end;
  }

  .fleetContainer__item_data_row {
    display: flex;
    flex-direction: row;
    padding-top: 10px;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-bottom: 0.5px dotted #000;
  }

  .fleetContainer__item_data_text_normal {
    font-size: 12px;
  }

  .fleetContainer__item_data_text_bold {
    font-size: 14px;
    font-weight: bold
  }

.priceRow {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 80%;
  padding: 10px;
  border-bottom: 0.5px dotted #000;
}

  .priceRow_text_normal {
    font-size: 18px;
  }

  .priceRow_text_bold {
    font-size: 18px;
    font-weight: bold;
  }

  .priceRow_bottom {
    width: 80%;
    display: flex;
    justify-content: center;
    text-align: center;
  }


  .priceRow_text_bottom {
    font-size: 14px;
  }

.contactRow {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  width: 80%;
  margin-top: 20px
}

.mapContainer {
  width: 400px;
  height: 300px;
  border: 0.5px solid var(--mainColor);
  border-radius: 10px;
}

.contactInfoContainer {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}

.contactRowText {
  font-size: 14px;
  text-align: right;
}

/* FOOTER */

.footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-right: 20px;
  margin-left: 20px;
  background-color: var(--mainColor);
  width: 100%;
  height: 80px;
}

  .footer__contacts {
    display: flex;
    flex-direction: column;
    color: white;
    text-align: left;
    font-size: 12px;
    margin-left: 20px
  }

  .footer__social {
    display: flex;
    flex-direction: row;
    margin-right: 20px
  }

  .footer__social_image {
    width: 32px;
    height: 32px;
    margin-left: 10px
  }

  .fade-in-section {
    opacity: 0;
    transform: translateY(20vh);
    visibility: hidden;
    transition: opacity 0.6s ease-out, transform 1.2s ease-out;
    will-change: opacity, visibility;
  }
  .fade-in-section.is-visible {
    opacity: 1;
    transform: none;
    visibility: visible;
  }

@media only screen and (min-width: 320px) and (max-width: 890px) {

    .navBar {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      position: fixed;
      top: 0px;

      height: 120px;
      width: 100%;
      padding-left: 20px;
      background-color: white;
      box-shadow: 0px 5px 9px 2px rgba(0,0,0,0.4);
    }

    .navBar__links {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      margin-right: 20px;
      width: 500px;
      height: 80%;
    }

    .navBar__link {
      height: 100%;
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      color: black;
      font-size: 13px;
      font-weight: bold;
      padding: 10px;
      width: 100px;
      border-left: 0.5px solid var(--mainColor)
    }

    .navBar__link:hover {
      background-color: var(--mainColor);
      color: white
    }

    .headerLogo {
      width: 200px;
      z-index: 1000
    }
    .videoContainer
    {
      width: 100%;
      height: 400px;
      display: flex;
      flex-direction: row;
      justify-content: center;
    }

    .videoOverlay {
      width: 90%;
      position: absolute;
      top: 175px;
      left: 5px;
      color: white;
      font-size: 16px;
      text-align: center;
    }
  .fleetContainer__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin-right: 20px;
    margin-left: 20px;
    margin-top: 20px;
    width: 100%
  }

    .fleetContainer__item_data {
      width: 80%
    }

    .fleetContainer__item_data_text_normal {
      font-size: 10px;
      text-align: right;
    }

    .fleetContainer__item_data_text_bold {
      font-size: 10px;
      font-weight: bold;
      z-index: 100
    }

    .contactRow {
      flex-direction: column;
      align-items: center;
    }
    .contactInfoContainer {
      margin-top: 10px;
      justify-content: flex-start;
      align-items: flex-start;
    }
    .contactRowText {
      font-size: 14px;
      text-align: left;
    }
}
