/*
 Theme Name:   Ormanzara Custom Child Theme
 Theme URI:    https://www.muromedia.nl
 Description:  Ormanzara Custom Child Theme
 Author:       MuroMedia
 Author URI:   https://www.muromedia.nl
 Template:     generatepress
 Version:      1
*/


.background-video {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.5;
}

.background-video-content {
    position: relative;
    z-index: 1;
}

video[poster] {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* mm hide grecaptcha badge */
.grecaptcha-badge {
  visibility: hidden !important;
}

/* hamburger toggle mobile resize */
.main-navigation .menu-toggle {
  font-size: 20px;
  text-transform: uppercase;
}

/* wpforms submit override */
.wpforms-form input[type=submit],
.wpforms-form button[type=submit] {
  font-size: 18px !important;
  font-weight: normal !important;
  line-height: 42px !important;
  padding: 8px 20px !important;
  color: #e0f2ea !important;
  height: auto !important;
  border: none !important;
  border-radius: 10px !important;
  outline: none !important;
  border: none !important;
  background: #437842 !important;
}

.wpforms-form input[type=submit]:hover,
.wpforms-form button[type=submit]:hover {
  background: #437842 !important;
}

.sticky-enabled .main-navigation.is_stuck {
    background-color: #93806D;
}

ul {
    list-style-type: square;
    counter-reset: item;
    margin-left: 20px !important;
}

ul li {
    margin-bottom: 5px;
    position: relative;
    margin-left: 0 !important;
}

li::marker {
  color: #437842;
}

ul li:before {
    margin-right: 10px;
    border-radius: 50%;
    border-top-color: rgb(212, 212, 212);
    border-top-style: solid;
    border-top-width: 1px;
    border-right-color: rgb(212, 212, 212);
    border-right-style: solid;
    border-right-width: 1px;
    border-bottom-color: rgb(212, 212, 212);
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-left-color: rgb(212, 212, 212);
    border-left-style: solid;
    border-left-width: 1px;
    border-image-outset: 0;
    border-image-repeat: stretch;
    border-image-slice: 100%;
    border-image-source: none;
    border-image-width: 1;
    color: #bbb;
    width: 1.2em;
    line-height: 1.2em;
    padding: 2px;
    text-align: center;
    position: absolute;
    left: -40px;
}


@media (min-width: 769px) {
    .main-navigation .menu > .menu-item > a::after {
        content: "";
        position: absolute;
        right: 0;
        left: 50%;
        bottom: 7px;
        -webkit-transform: translate3d(-50%,0,0);
        transform: translate3d(-50%,0,0);

        display: block;
        width: 0;
        height: 2px;

        background-color: currentColor;
        transition: 0.3s width ease;
    }
    .main-navigation .menu > .menu-item.current-menu-item > a::after,
    .main-navigation .menu > .menu-item.current_page_item > a::after,
    .main-navigation .menu > .menu-item.current-menu-ancestor > a::after,
    .main-navigation .menu > .menu-item > a:hover::after {
        width: 75%;
    }
}