* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    font-family: sans-serif;
    text-align: center;
    color: #333;
}

header {
}

.header-browser {
    display: flex;
    flex-direction: column;
    width: 100vw;
    background-color: #181818;
    align-content: center;
    justify-content: center;
    color: white;
}

.header-native {
    display: none;
    flex-direction: column;
    width: 100vw;
    padding: 0 1em;
    background-color: #181818;
    align-items: end;
    justify-content: center;
    color: white;
}

.sticky-label-native {
    display: none;
    position: sticky;
    align-self: end;
    right: 0;
    top: 0;
    float: right;
    background-color: #71B100;
    color: white;
    font-weight: 100;
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 20px 100%);
    z-index: 50;
}
.sticky-label-native label {
    /*background-color: #00b300;*/
    background-color: #71B100;
    padding: .5em 1.5em .5em 2.5em;
    color: white;
    align-self: flex-start;
    font-weight: 400;
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 20px 100%);
}
.sticky-label {
    position: fixed;
    right: 0;
    top: 0;
    background-color: #71B100;
    color: white;
    font-weight: 500;
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 20px 100%);
    z-index: 50;
}

.header-browser label {
    /*background-color: #00b300;*/
    background-color: #71B100;
    padding: .5em 1.5em .5em 2.5em;
    color: white;
    align-self: flex-start;
    font-weight: 400;
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 20px 100%);
}

.header-browser div {
    display: flex;
    justify-content: space-between;
}

.header-contact {
    border-bottom: 1px solid whitesmoke;
    margin-left: 10%;
    align-items: center;
}

.header-browser nav {
    display: flex;
    justify-content: space-between;
    align-items: end;
    background-color: #181818;
    color: white;
    padding: 20px 40px 20px 10%;
    text-align: center;
}

.header-browser nav ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.header-browser nav ul li {
    display: inline;
    margin: 0 10px;
}

.header-browser nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.banner {
    display: flex;
    align-items: center;
    justify-content: space-around;
    text-align: start;
    padding: 2em;
    gap: 4em;
    min-height: 50vh;
    height: fit-content;
    background-size: cover;
    background-position: center;
    color: whitesmoke;
}

.banner.tour {
    padding: 2em 2em 0 2em;
}

.banner > div {
    max-width: 50%;
}

.banner > * {
  position: relative;
  z-index: 2;
}

main {
    background: white;
    display: flex;
    flex-direction: column;
    padding: 20px;
    margin-top: 20px;
    border-radius: 5px;
    gap: 2em;
}

section {
    gap: 0;
}

footer {
    margin-top: 20px;
    gap: 2em;
    align-items: start;
    text-align: center;
    display: flex;
    flex-direction: column;
    font-size: 0.9em;
    background-color: #181818;
    color: whitesmoke;
}
footer > div {
    margin: 0 10vw;
}
footer > p {
    align-self: center;
}


label {
    /*background-color: #00b300;*/
    background-color: #71B100;
    padding: 1em;
    padding-right: 1.5em;
    color: white;
    align-self: flex-start;
    font-weight: 600;
}

img {
    object-fit: cover;
}

.labeled-form {
    display: flex;
    flex-direction: column;
    width: fit-content;
    margin: 0 auto;
    gap: .5em;
}

form {
    display: flex;
    flex-direction: column;
    background-color: rgba(0,0,0,0.15);
    padding: 2em;
    text-align: left;
    gap: .5em;
}

form div {
    display: flex;
    align-items: flex-start;
    gap: 1em;
}

form button {
    align-self: flex-end;
    width: 50%;
    margin-top: .5em;
}

h4 {
    color: #00b300;
}

input {
    padding: .3em;
}

button {
    padding: 1em;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    /*background-color: #25ee66;*/
    background-color: #71B100;
    color: white;
    border: none;
    border-radius: 5px;
}

button:hover {
    /*background-color: #20DD66;*/
    background-color: #71A100;
}

button:active {
    /*background-color: #20DD66;*/
    background-color: #718100;
}

.carousel {
    margin: 24px 0px 12px;
    display: flex;
    flex-direction: row;
    align-items: start;
}

.carousel-sections-scroll {
    height: fit-content;
    flex: 1;
    overflow-x: hidden;
}
.carousel-sections {
    height: fit-content;
    display: flex;
    transition: 250ms transform ease-in;
}

.carousel-sections > div {
    cursor: pointer;
    min-width: 100%;
    height: 100%;
    border-radius: 24px;
}

.carousel-section {
    height: fit-content;
}

.carousel-section h4, p {
    font-size: 14px;
}

.carousel-sections img {
    filter: brightness(85%);
}
.carousel-sections.multicol-sections img {
    filter: brightness(100%);
}

.carousel-section > img {
    width: 100%;
    height: 50vh;
}

.multicol-carousel-container .carousel-section > img {
    width: 100%;
    height: 200px;
}

.carousel-section > h4 {
    color: #282828;
    margin-bottom: .5em;
}

.carousel-section > p {
    padding: 0em 1.8em;
    font-size: 13px;
}

.prev-arrow,
.next-arrow {
    z-index: 10;
    position: relative;
    align-self: center;
    height: 24px;
    width: 24px;
    margin: 0px 12px;
    background-color: #cfcfcf;
    border-radius: 50%;
    cursor: pointer;
    transition: 150ms all ease-in;
    -webkit-box-shadow: 0px 2px 5px 0px rgba(184, 184, 184, 1);
    -moz-box-shadow: 0px 2px 5px 0px rgba(184, 184, 184, 1);
    box-shadow: 0px 2px 5px 0px rgba(184, 184, 184, 1);
}
.multicol-carousel-container .prev-arrow,
.multicol-carousel-container .next-arrow {
    top: 88px;
    align-self: start;
}
.prev-arrow:hover,
.next-arrow:hover {
    -webkit-box-shadow: 0px 2px 13px 0px rgba(128, 128, 128, 1);
    -moz-box-shadow: 0px 2px 13px 0px rgba(128, 128, 128, 1);
    box-shadow: 0px 2px 13px 0px rgba(128, 128, 128, 1);
}

.prev-arrow:after,
.prev-arrow:before,
.next-arrow:after,
.next-arrow:before {
    content: "";
    height: 10px;
    width: 2px;
    border-radius: 10px;
    position: absolute;
    left: 10px;
    background-color: #209158;
}
.next-arrow:after,
.next-arrow:before {
    left: 12px;
}

.prev-arrow:after {
    top: 4px;
    transform: rotate(45deg);
}
.prev-arrow:before {
    top: 10px;
    transform: rotate(-45deg);
}

.next-arrow:after {
    top: 4px;
    transform: rotate(-45deg);
}
.next-arrow:before {
    top: 10px;
    transform: rotate(45deg);
}

.carousel-dots {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    cursor: pointer;
    border-radius: 8px;
    background-color: #afafaf;
    margin: 0px 4px;
    transition: 100ms background-color ease-in;
}
.carousel-dot.active {
    background-color: #5f5f5f;
}


.multicol-carousel-container .carousel-sections {
    display: flex;
    transition: 300ms transform ease-in-out;
}

.multicol-carousel-container .carousel-section {
    min-width: max(calc(100% / 3), 200px);
    margin: 0 5px;
    height: fit-content;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.popup-buttons {
    display: flex;
    gap: 2em;
}

.popup-buttons > button {
    border-radius: 30em;
    font-size: 25px;
    padding: 5px 15px;
}

.popup-overlay.hidden {
  display: none;
}

.popup-content {
  position: relative;
}

.popup-content img {
  height: auto;
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 8px;
}

.popup-close {
  position: absolute;
  top: -10px;
  right: -10px;
  background: white;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 20px;
  font-weight: bold;
  color: #333;
  line-height: 30px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.5);
}


/* Menu code starts here */

#menuToggle
{
  display: none;
  color: #181818;
  /* You can also use relative/absolute here if you want to stay on the top */
  position: fixed;
  top: 50px;
  left: 50px;
  
  z-index: 60;
  
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle a
{
  text-decoration: none;
  color: whitesmoke;
  
  transition: color 0.3s ease;
}

#menuToggle a:hover,
#menuToggle label:hover
{
  color: tomato;
}


#menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  
  cursor: pointer;
  
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  
  -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
#menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  
  background: #282828;
  border-radius: 3px;
  
  z-index: 1;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background-color: #afafaf;
}

/*
 * But let's hide the middle one.
 */
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
  background-color: #afafaf;
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu
{
  display: none;
  position: absolute;
  max-width: 400px;
  width: 100vw;
  max-height: 100vh;
  margin: -100px 0 0 -50px;
  padding: 50px;
  padding-top: 125px;
  box-sizing: border-box;
  overflow-y: auto;
  background: #282828;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  
  transform-origin: 0% 0%;
  transform: translate(-100%, 0);
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li
{
  padding: 10px 0;
  font-size: 22px;
}

#menu li label
{
  cursor: pointer;
  background-color: transparent;
  padding: 0;
  color: default;
  align-self: default;
  font-weight: 200;
  transition: color 0.3s ease;
}

/*
 * And let's slide it in from the left
 */
#menuToggle input:checked ~ ul
{
  transform: none;
}

.tour-image-top {
    display: default;
    max-height: 40vh;
    align-self: end;
}
.tour-image-bottom {
    display: none;
    max-width: 100%;
}

@media (max-width: 768px) {
    .sticky-label-native {
        display: flex;
    }
    .header-native {
        display: flex;
    }
    .tour-image-top {
        display: none;
    }
    .tour-image-bottom {
        display: flex;
    }

    .carousel-section > img {
        height: 50vh;
    }
    .carousel > div > h1 {
        font-size: 12px;
        float: right;
    }
    .carousel > div > h2 {
        font-size: 16px;
        margin-top: 2em;
    }
    .carousel > div > p {
        font-size: 14px;
    }
    .banner {
        flex-direction: column;
    }

    .banner > div {
        max-width: 100%;
    }
    #menu {
        display: block;
    }
    #menuToggle
    {
        display: block;
    }
    .header-browser {
        display: none;
    }
    .multicol-carousel-container .carousel-section {
        min-width: 100%;
    }
    .labeled-form {
        display: flex;
        flex-direction: column;
        float: center;
        width: fit-content;
        margin: 0 auto;
        gap: .5em;
    }
    form {
        display: flex;
        flex-direction: column;
        background-color: rgba(0,0,0,0.15);
        padding: 2em;
        text-align: left;
        gap: .5em;
    }

    form div {
        display: flex;
        width: 100%;
        flex-direction: column;
        gap: .5em;
    }
    form input {
        width: 100%;
    }

    form button {
        width: 100%;
        margin-top: .5em;
    }
}
