::selection{
    background-color: rgba(63, 161, 72, .2);
}

body{
    background: #F8F6F6;
    font-family: "Roboto", Cursive;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    overflow-y: scroll;
}

a.no-hover{
    color: inherit !important;
    text-decoration: unset !important;
}

h1, h2, h3, h4, h5, h6{
    font-family: "Manrope", Cursive;
}

h4{
    line-height: 1.38;
}

h5{
    line-height: 1.4;
}

p, .rich-text li{
    color: #696969;
}

.rich-text p:last-child, .rich-text ul:last-child{
    margin-bottom: 0;
}

header .nav-link{
    color: #231f20 !important;
    font-family: "Manrope", Cursive;
    font-weight: 500;
}

header .btn-extra{
    color: white !important;
    padding: .37rem 1rem !important;
    border-radius: 30px;
    margin-left: 20px;
}

header{
    background: rgba(248, 246, 246, 1);

}

.top-header, h6{
    font-family: "Manrope";
    letter-spacing: 1px;
    font-size: 20px;
    font-weight: 600;
}

h1.big-header, h2.big-header{
    font-size: 50px;
    line-height: 1.35;
}

.carousel-control-next,
.carousel-control-prev {
    font-size: 40px;
}

.big {
    font-size: 1.5rem;
}

.icon-block {
    position: relative;
    text-align: center;
}

.icon-block .icon {
    background-color: #007bff;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 100px;
    position: absolute;
    left: calc(50% - 25px);
    top: -25px;
    font-size: 30px;
    color: #fff;
    transform: rotate(0deg);
    transition: transform .5s ease-in-out;
}

.icon-block a {
    display: inline-block;
    padding: 50px;
    list-style: none;
    font-size: 1.2rem;
    text-transform: uppercase;
    color: #343a40;
    font-weight: bold;
    text-decoration: none;
}

.icon-block:hover a {
    color: #6c757d;
}

.icon-block:hover .icon {
    transform: rotate(360deg);
}

.masonry .masonry-item {
    cursor: pointer;
}

.modal-body.loading:after {
    content: "\f110";
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    font-size: 40px;
    animation: fa-spin 2s infinite linear;
    padding: 3rem;
}

.parallax{
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.btn{
    border-radius: 30px;
    padding: .37rem 1rem;
}

.btn-big{
    padding-right: 20px;
    padding-left: 20px;
    font-size: 18px;
}

.btn i{
    margin-left: 10px;
}

.home-hero{
    position: relative;
}

.home-hero .container, .home-hero{
    height: 600px;
}

.home-hero .hero-lead{
    position: absolute;
    left: 0;
    bottom: 50%;
    transform: translateY(50%);
}

.home-hero .hero-image{
    position: absolute;
    top: 0;
    right: 0;
    height: 550px;
    z-index: -1;
    opacity: .9;
}

.home-hero .leaf-image{
    position: absolute;
    bottom: -150px;
    left: 0;
    max-height: 500px;
    width: auto;
    z-index: -1;
    opacity: .15;
    transform: translate(-100px, 240px) rotate(-10deg);
    filter: hue-rotate(-90deg);
    animation: 1s ease leaf both;
    animation-delay: .75s;
}

@keyframes leaf{
    from{ transform: translate(0, 0) rotate(0); opacity: 0; bottom: -450px; }
    75%{ opacity: .15; }
    to{ transform: translate(-100px, 240px) rotate(-10deg); opacity: .15; bottom: -150px; }
}

@media screen and (max-width: 991px){
    .home-hero .leaf-image{
        display: none;
    }
    .home-hero .hero-image{
        opacity: .2;
    }
    .homepage header{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        background: rgba(255,255,255,0);
        z-index: 999;
    }
    .home-hero .hero-lead{
        position: relative;
        top: unset;
        left: unset;
        transform: unset;
        padding: 100px 15px;
        padding-top: 130px;
    }
    .home-hero .container, .home-hero{
        height: unset;
    }
}

@media (min-width: 300px){
    .container{
        max-width: 600px;
    }
}

@media (min-width: 768px){
    .container{
        max-width: 920px;
    }
}

@media (min-width: 1080px){
    .container{
        max-width: 1000px;
    }
}

@media (min-width: 1300px){
    .container{
        max-width: 1250px;
    }
}

.cta-block{
    position: relative;
    background: #f0e0cf;
    overflow: hidden;
    border-radius: 30px 0px 30px 0;
    height: 100%;
    display: block;
    text-decoration: unset !important;
    color: #212529;
    opacity: 0;
    transform: translateY(-20px);
    transition: .5s ease;
}
.cta-block:hover{
    color: #212529 !important;
}
.cta-block .cta-header{
    padding: 30px 25px;
    padding-top: 20px;
    position: relative;
    overflow: hidden;
}
.cta-block:after{
    content: "";
    position: absolute;
    top: -80px;
    left: 50%;
    width: 125%;
    transform: translateX(-50%);
    height: 180px;
    border-radius: 100%;
    background-color: #eacdab;
    z-index: 0;
    transition: .2s ease;
}
.cta-block:hover:after{
    top: 0;
    height: 100%;
    border-radius: 0;
}
@media screen and (max-width: 991px){
    .cta-block:after{
        display: none;
    }
    .cta-block .cta-header, .cta-block .cta-body{
        padding: 15px 30px;
    }
    .cta-block{
        display: flex;
        align-items: center;
    }
    .cta-block:hover .cta-header i{
        font-size: 35px !important;
    }
    .cta-block{
        transition-delay: 0s !important;
        transition: .5s ease;
        opacity: 0;
        transform: translateY(30px);
    }
    .cta-block.visible{
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}
.cta-block .cta-header i{
    font-size: 35px;
    line-height: 45px !important;
    position: relative;
    z-index: 2;
    transition: .2s ease;
}
.cta-block:hover .cta-header i{
    font-size: 45px;
}
.cta-block .cta-body{
    padding: 0 25px;
    padding-top: 25px;
    padding-bottom: 40px;
    position: relative;
    z-index: 2;
}

.img-round{
    border-radius: 100% 100% 0 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0px 15px -10px rgba(0,0,0,.4);
}
.img-round.img-round-left{
    border-radius: 100% 100% 100% 0%;
}

@media screen and (min-width: 991px){
    .mt-6, .my-6, .m-6{ margin-top: 130px;}
    .mb-6, .my-6, .m-6{ margin-bottom: 130px;}
    .ml-6, .mx-6, .m-6{ margin-left: 130px;}
    .mr-6, .mx-6, .m-6{ margin-right: 130px;}
}
@media screen and (max-width: 991px){
    .mt-6, .my-6, .m-6{ margin-top: 2rem;}
    .mb-6, .my-6, .m-6{ margin-bottom: 2rem;}
    .ml-6, .mx-6, .m-6{ margin-left: 2rem;}
    .mr-6, .mx-6, .m-6{ margin-right: 2rem;}
}

.animate_image.from_left img, .animate.from_left{
    transform: translateX(-100px);
}

.animate_image.from_right img, .animate.from_right{
    transform: translateX(100px);
}

.animate_image img, .animate{
    opacity: 0;
    transition: opacity .5s ease, transform .75s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition-delay: .25s;
}

.animate_image img.img-round{
    transform: translateX(-100px) rotate(-10deg);
}

.animate_image.visible img{
    transform: translateX(0);
    opacity: 1;
    transform-origin: right bottom;
}

/* Footer */

footer{
    background-color: #3fa148;
    padding: 75px 0;
    position: relative;
    overflow: hidden;
}

footer h1, footer h2, footer h3, footer h4{
    color: white;
}

footer p, .sub-footer *{
    color: #f6f6f6;
}

footer a{
    color: #fff !important;
    line-height: 32px;
}

footer img.richtext-image.full-width{
    width: 100%;
    height: auto;
    max-width: 300px;
    filter: brightness(0) invert(1);
}

footer img.richtext-image.left{
    width: 100%;
    max-width: 300px;
    height: unset;
}

footer .rich-text p:first-child{
    margin-bottom: 0;
}

.footer-leaf{
    position: absolute;
    top: -17px;
    max-width: 550px;
    right: -110px;
    opacity: .07;
    pointer-events: none;
    transform: scaleY(-1) rotate(-125deg);
    filter: brightness(.2);
}

@media screen and (max-width: 991px){
    .footer-leaf{
        opacity: .02;
        width: 700px !important;
        max-width: 700px !important;
        transform: scaleY(-1) rotate(150deg);
        top: unset;
        bottom: 0;
    }
}

.sub-footer{
    background-color: #317d38;
}

.jumbotron{
    border-radius: 0;
    background: #f3e6d8;
}

.jumbotron p{
    color: #5f5d5c;
}

.center-it .jumbotron .container{
    max-width: 800px;
    text-align: center;
    padding: 0;
}

.center-it .jumbotron .rich-text{
    max-width: 700px;
    display: block;
    margin: 0 auto;
}

.center-it .jumbotron .container h1{
    font-size: 55px;
    margin-bottom: 20px;
}

@media screen and (max-width: 991px){
    .center-it .jumbotron .rich-text{
        font-size: 17px;
    }
    .center-it .jumbotron .container{
        text-align: left;
    }
    .center-it .jumbotron .container h1{
        font-size: 50px;
    }
    .img-round{
        display: none;
    }
}

.mm-menu_offcanvas{
    z-index: 99;
}

.pagination li.page-item:first-of-type{
    margin-right: 30px;
}
.pagination li.page-item:last-of-type{
    margin-left: 30px;
}

.pagination li.page-item .page-link.current{
    border: 0px !important;
    background: unset !important;
}

.pagination li.page-item:first-of-type .page-link, .pagination li.page-item:last-of-type .page-link{
    border: 0 !important;
    background: #212121;
    color: white;
    border-radius: 30px;
    box-shadow: 0 0 0 0rem rgba(33, 33, 33, .25) !important;
    transition: .2s ease;
}

.pagination li.page-item.disabled:first-of-type .page-link, .pagination li.page-item.disabled:last-of-type .page-link{
    opacity: .5;
    color: rgba(255,255,255,.5);
}

.pagination li.page-item:first-of-type .page-link:focus, .pagination li.page-item:last-of-type .page-link:focus{
    box-shadow: 0 0 0 0.2rem rgba(33, 33, 33, .25) !important;
}

.header_image{
    background-position: center;
    background-size: cover;
    width: 100%;
    position: relative;
}

.header_image .container{
    padding-top: 75px;
    padding-bottom: 75px;
    position: relative;
    z-index: 2;
}

.header_image:after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(33, 33, 33, .36);
}

.image_container{
    height: 150px;
    background-size: cover;
    background-position: center;
}

.parallax{
    height: 200px !important;
}

.breadcrumb{
    margin-bottom: 0  !important;
    margin-top: 30px;
    padding-left: 0 !important;
    padding-right: 0 !important;
    background-color: transparent !important;
}

.reference-block {
    padding: 40px 0;
    border-bottom: 1px solid #dad8d8;
}

.dropdown:hover .dropdown-menu{
    display: block;
}

.dropdown-menu{
    border-radius: 0 !important;
    border: none;
}

.dropdown-item{
    padding: .25rem 1rem !important;
    background: transparent !important;
}

.dropdown-toggle::after{
    display: none;
}

.dropdown-menu{
    background-color: #f8f6f6 !important;
}

.card .card-header{
    background: #3fa148;
    color: white;
    border: unset !important;
}

.card{
    border: unset !important;
    border-radius: 15px !important;
    overflow: hidden;
}