@import url('https://fonts.googleapis.com/css2?family=Quicksand&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@200&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Karla:wght@200&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Karla:wght@500&display=swap');

:root {
  --darkColor: #2b2933;
  --greenColor: #4CB216;
  --whiteColor: #f2ecdf;
  --textColor: #2c3740;
}

html{
  scroll-behavior: smooth;
}

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

.white_bold_big {
  font-family: 'Raleway';
  font-weight: 700;
  font-size: 36px;
  color: white
}

.white_bold_medium {
  font-family: 'Raleway';
  font-weight: 200;
  font-size: 20px;
  color: white;
  text-shadow: 1px 1px 1px #000
}

.white_text {
  font-family: 'Raleway';
  color: white;
}

.white_text.mt10 {
  margin-top: 10px
}

.black_bold_big {
  font-family: 'Raleway';
  font-weight: 700;
  font-size: 36px;
  color: var(--textColor)
}

.black_bold_medium {
  font-family: 'Raleway';
  font-weight: 700;
  font-size: 20px;
  color: var(--textColor);
}

.green_bold_medium {
  font-family: 'Raleway';
  font-weight: 700;
  font-size: 20px;
  color: var(--greenColor);
}

.chapter_heading {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 5px;
  margin-bottom: 15px;
  border-bottom: 1px dashed var(--greenColor)
}

  .chapter_heading.mt10 {
    margin-top: 10px
  }

.chapter_header_image {
  width: 60px;
  height: 60px;
  margin-right: 15px;
}

.socialContainer {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.callRow {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.social {
  width: 25px;
  height: 25px;
  margin-left: 5px;
}
  .social.mr10 {
    margin-right: 10px
  }

/* MOBILE MENU START */

.mobileMenu_button {
  display: none;
  width: 30px;
  height: 30px
}

.mobileMenu {
  display: none;
}
/* MOBILE MENU END */

/* NAVBAR START */
.topBar {
  display: flex;
  position: fixed;
  flex-direction: row;
  height: 30px;
  min-width: 100%;
  align-items: center;
  padding-left: 5%;
  padding-right: 5%;
  justify-content: space-between;
  background-color: var(--greenColor);
  z-index: 15;
  border-bottom: 1px solid var(--darkColor)
}

.navBar {
  position: fixed;
  top: 30px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-left: 5%;
  width: 100%;
  height: 60px;
  z-index: 15;
  overflow: hidden;
  background-color: white;
  border-bottom: 1px dashed var(--greenColor)
}

  .navBar__logo_container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 70px;
    padding-right: 70px;
    padding-bottom: 30px;
    position: fixed;
    top: 50px;
    background-color: white;
    border-bottom-left-radius: 80px;
    border-bottom-style: dashed;
    border-bottom-width: 0.5px;
    border-bottom-right-radius: 80px;
    border-bottom-style: dashed;
    border-bottom-width: 0.5px;
    z-index: 15
  }

    .navBar__logo {
      display: flex;
      height: 60px;
      object-fit: contain;
      background-color: white
    }

  .navbar__items {
    display: flex;
    position: absolute;
    right: 5%;
    flex-direction: row;
    align-items: center;
  }

    #link {
      display: flex;
      height: 58px;
      width: 120px;
      align-items: center;
      justify-content: center;
      background-color: white;
      font-family: 'Quicksand'
      color: var(--textColor);
    }

    #link:hover {
      display: flex;
      height: 58px;
      width: 120px;
      align-items: center;
      justify-content: center;
      border-top-left-radius: 20px;
      border-bottom-right-radius: 20px;
      background-color: var(--greenColor);
      color: white;
      animation: linkHover 0.5s;
      animation-fill-mode: forwards;
      animation-iteration-count: 1
    }

      @keyframes linkHover {
        0% {
          opacity: 0%;
        }
        100% {
          opacity: 100%
        }
      }

/* NAVBAR END */

.container {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  align-items: center;
}
.cover_photo {
  display: flex;
  width: 100%;
  min-height: 500px;
  height: 70vh;
  object-fit: cover;
  object-position: top;
}

  .cover_photo_overlay {
    display: flex;
    flex-direction: column;
    min-width: 300px;
    width: 50%;
    min-height: 350px;
    height: 20vh;
    background-color: var(--greenColor);
    opacity: 60%;
    position:absolute;
    z-index: 8;
    top: 100px;
    left: 5%;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 20px;
  }

  .cover_photo_overlay_text_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 300px;
    width: 50%;
    min-height: 400px;
    height: 50vh;
    position:absolute;
    z-index: 9;
    top: 70px;
    left: 5%;
    padding: 20px;
  }

.services {
  display: flex;
  flex-direction: column;
  width: 100%;
  background:url('assets/media/bg_ptrn.png') repeat;
  padding-left: 5%;
  padding-right: 5%;
}

  .services_row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
  }

  .services_row.pattern {
    background: lightblue url("../media/bg_ptrn.png") repeat;
    background-repeat: repeat;
  }

    .services_img {
      display: flex;
      max-width: 350px;
      object-fit: contain;
      border-radius: 6px;
      padding: 5px;
      margin: 5px;
      box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    }

    .services_description {
      display: flex;
      flex-direction: column;
      width: calc(100% - 380px);
      margin-top: 5px;
      margin-left: 5px;
    }

.pricing {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-left: 5%;
  padding-right: 5%;
}

.pricing_header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  margin-top: 15px;
  border-color: var(--greenColor)
}

.pricing_heading {
  content: 'sdsf';
  display: flex;
  flex-direction: row;
  height: 40px;
  width: 90%;
  border-top-left-radius: 190px;
  border-bottom-right-radius: 190px;
  border-style: dashed;
  border-width: 0.5px;
  border-color: var(--greenColor);
  align-items: center;
  padding: 5px;
  padding-left: 25px;
}

.pricing_end {
  content: 'sdsf';
  display: flex;
  flex-direction: row;
  height: 40px;
  width: 10%;
  min-width: 150px;
  border-top-left-radius: 190px;
  border-bottom-right-radius: 190px;
  border-style: dashed;
  border-width: 0.5px;
  border-color: var(--greenColor);
  background-color: var(--greenColor)
}

.priceList {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  margin-top: 5px;
  padding-left: 20px;
}

.priceList_description {
  display: flex;
  flex-direction: column;
}

.priceList_details {
  font-size: 13px
}

.priceList_price {
  display: flex;
  width: 10%;
  min-width: 150px;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.contact {
  display: flex;
  width: 100%;
  height: 400px;
  flex-direction: row;
  background-color: var(--greenColor);
  align-items: center;
  padding-left: 5%;
  padding-right: 5%;
  border-top: 2px dashed var(--darkColor)
}

.contactMap {
  display: flex;
  width: 80%;
  height: 300px;
  border-top-left-radius: 90px;
  border-bottom-right-radius: 90px;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.contactDesc {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: 300px;
  margin-left: 10px;
}

* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  width: 90vw;
  position: relative;
  margin: auto;
}

.slideImage {
  min-width: 100%;
  height: 50vh;
  object-fit: cover;
  object-position: center;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@media only screen and (max-width: 1010px) {

  .navbar__items {
    display: none;
  }

  .mobileMenu_button {
    display: flex;
    width: 30px;
    height: 30px;
    position: fixed
    left: 5%
  }

  .mobileMenu_button_container{
    position: fixed;
    right: 5%
  }

  .mobileMenu {
    display: none;
    flex-direction: column;
    width: 100%;
    height: 250px;
    position: fixed;
    top: 90px;
    z-index: 15;
    background-color: var(--greenColor);
    animation: menuOpen 0.5s;
    animation-fill-mode: forwards;
  }

    @keyframes menuOpen {
      0% {
        height: 0px
      }
      100% {
        height: 250px;
      }
    }

    .mobileMenu_item {
      display: flex;
      width: 100%;
      height: 50px;
      flex-direction: row;
      justify-content: flex-start;
      align-items: center;
      font-family: 'Quicksand';
      color: white;
      font-size: 20px;
      padding-left: 10px;
      text-transform: uppercase;
      border-bottom: 1px dashed white;
    }

      .mobileMenu_item:hover {
        display: flex;
        width: 100%;
        height: 50px;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        font-family: 'Quicksand';
        color: var(--greenColor);
        font-size: 20px;
        background-color: white;
        padding-left: 10px;
        text-transform: uppercase;
        border-bottom: 1px dashed white;
      }

  .navBar__logo_container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    position: fixed;
    top: 45px;
    background-color: transparent;
    border-bottom-left-radius: 0px;
    border-bottom-style: dashed;
    border-bottom-width: 0px;
    border-bottom-right-radius: 0px;
    border-bottom-style: dashed;
    border-bottom-width: 0px;
    z-index: 15
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1s;
    animation-name: fade;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-iteration-count: 1
  }

  .navBar__logo {
    display: flex;
    height: 60px;
    object-fit: contain;
    background-color: transparent;
    -webkit-animation-name: logofade;
    -webkit-animation-duration: 1s;
    animation-name: logofade;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-iteration-count: 1
  }

  @-webkit-keyframes logofade {
    from {height: 60px}
    to {height: 30px}
  }

  @keyframes logofade {
    from {height: 60px}
    to {height: 30px}
  }
}

@media only screen and (max-width: 800px) {

  .white_bold_big {
    font-family: 'Raleway';
    font-weight: 700;
    font-size: 26px;
    color: white
  }

  .services {
    display: flex;
    flex-direction: column;
    width: 100%;
    background:url('assets/media/bg_ptrn.png') repeat;
    padding-left: 5%;
    padding-right: 5%;
  }

  .services_row {
    display: flex;
    flex-direction:row;
    align-items: center;
  }

  .services_description {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(100%);
    margin-top: 5px;
    margin-left: 5px;
  }
}

@media only screen and (max-width: 550px) {
  .contact {
    display: flex;
    width: 100%;
    height: 400px;
    flex-direction: column-reverse;
    background-color: var(--greenColor);
    align-items: center;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 30px;
    padding-bottom: 30px;

    border-top: 2px dashed var(--darkColor)
  }
}
