p {
  margin: 0 !important;
}

.hero-text p {
    font-size: 21px;
    line-height: 34px;
    padding: 27px;
}

.wpb_single_image.vc_align_left {
    text-align: center !important;
}

.vc_column_container {
    align-self: center;
}

.vc_column-inner {
    text-align: center;
}


.vc_column-inner {
    /*  text-align: center; */
}

.vc_inner.vc_row {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
    border-radius: 25px;
    background-color: #ffffff;
}


.hero-wrapper:hover {
    color: #82c452;
}

.zoom {
    border-radius: 15px;
    transition: transform .2s; /* Animation */
}

.zoom:hover {
    transform: scale(1.05); /* (105% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

.vc_row-has-fill > .vc_column_container > .vc_column-inner {
    padding-top: 0;
}

.product-row-header {
    display: inline-block;
    padding-bottom: 6px;
    margin: auto;
    border-bottom: 2px solid #82c452;
}

.heroes-row-header {
    padding-bottom: 6px;
    border-bottom: 2px solid #82c452;
}

.vc_single_image-wrapper {
    padding: 28px 30px 30px;
}

@media only screen and (min-width: 1026px) {
    #heroes.vc_inner.vc_row {
        margin-top: 60px;
    }
    #hero.vc_inner.vc_row {
        margin-top: 60px;
        display: flex;
    }
}

/*@media only screen and (max-width: 576px) {*/
/*    .vc_single_image-wrapper {*/
/*        padding: 0px 30px 30px;*/
/*    }*/
/*}*/

@media only screen and (max-width: 1175px) {
    .eltdf-main-menu > ul > li > a {
        font-size: 18px !important;
    }
}

@media only screen and (max-width: 1067px) {
    .eltdf-main-menu > ul > li > a {
        font-size: 18px !important;
    }
}


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

}

.eltdf-content .eltdf-content-inner > .eltdf-container > .eltdf-container-inner {
    padding-top: 0;
}

.grayscale img {
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
    -webkit-filter: grayscale(93%);
}

.header-seperator {
    background-color: #82c452;
    padding-bottom: 50px;
}

.eltdf-container.eltdf-default-page-template {
	/*background-color: #f9ea8f;*/
	/*background-image: linear-gradient(315deg, #f9ea8f 0%, #aff1da 74%);*/
    background-image: url("images/greyzz.png");
}

#heroes h2 {
    font-family: 'Comfortaa', cursive;
    font-weight: 100;
    font-size: 33px;
    color: #3a3a3a;
    display: block;
}

h2.product-row-header {
    font-family: 'Comfortaa', cursive;
    font-weight: 100;
    font-size: 33px;
}


/* Falling animations */
/*@keyframes rotate {*/
/*    100% {*/
/*        transform: rotate(1turn);*/
/*    }*/
/*}*/

body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: black;
}

.animation-section {
    height: 100%;
    width: 100%;
    position: absolute;
    /* 	background: radial-gradient(#333, #000); */
    /*background: white;*/
}
.falling {
    z-index: 200;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.falling div {
    position: absolute;
    display: block;
}
.falling div:nth-child(1) {
    left: 40%;
    animation: fall 40s linear infinite, rotation 5s linear infinite;
    animation-delay: -1s;
}
.falling div:nth-child(2) {
    left: 70%;
    animation: fall 35s linear infinite, rotation 5s linear infinite;
    animation-delay: -3s;
}
.falling div:nth-child(3) {
    left: 10%;
    animation: fall 30s linear infinite, rotation 5s linear infinite;
    animation-delay: -5s;
}
.falling div:nth-child(4) {
    left: 15%;
    animation: fall 32s linear infinite, rotation 5s linear infinite;
    animation-delay: -7s;
}
.falling div:nth-child(5) {
    left: 80%;
    animation: fall 34s linear infinite, rotation 5s linear infinite;
    animation-delay: -9s;
}
.falling div:nth-child(6) {
    left: 30%;
    animation: fall 30s linear infinite, rotation 5s linear infinite;
    animation-delay: -11s;
}
.falling div:nth-child(7) {
    left: 90%;
    animation: fall 28s linear infinite, rotation 5s linear infinite;
    animation-delay: -13s;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(359deg);
    }
}

@keyframes fall {
    0% {
        top: -10%;
        transform: translateX(20px);
    }
    20% {
        transform: translateX(-20px);
    }
    40% {
        transform: translateX(-20px);
    }
    60% {
        transform: translateX(-20px);
    }
    80% {
        transform: translateX(-20px);
    }
    100% {
        top: 110%;
        transform: translateX(-20px);
    }
}