:after,
:before {
    box-sizing: inherit;
}

img {
    pointer-events: none;
}

.sticky-header {
    position: fixed;
    -webkit-transition: all ease-out .5s;
    -moz-transition: all ease-out .5s;
    -o-transition: all ease-out .5s;
    transition: all ease-out .5s;
}

.active-header {
    background: rgba(0, 0, 0, 0.75);
}

.planner-wrapper {
    position: relative;
    margin: -2em;
}

.headline h1 {
    font-size: 50px;
    text-align: center !important;
    color: white;
    text-transform: none;
    position: relative;
    line-height: 1;
    margin: auto;
    padding: 20px 330px 40px 330px;
    font-family: 'Uniform Cond 2', sans-serif !important;
}

.green-output {
    color: #54ab4a;
}

.planner-container {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    max-width: 55rem;
    position: relative;
    padding-left: 3rem;
    padding-right: 3rem;
}

.planner-grid {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    margin: -0.75rem;
}

.planner-block {
    position: relative;
    display: flex;
    flex: 1 1 33%;
    padding: 1rem;
    -webkit-transition: all ease-out .5s;
    -moz-transition: all ease-out .5s;
    -o-transition: all ease-out .5s;
    transition: all ease-out .5s;
}

.planner-block:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.heading-millionaire {
    font-size: 19px;
    font-weight: 600;
    text-align: center !important;
    color: black;
    position: relative;
}

.logo-heading {
    margin-top: 1rem !important;
}

.logo-planner {
    margin-top: 0.5rem;
}

.logo-new {
    position: absolute;
    right: 0;
    top: 0;
    margin-top: 16px;
    margin-right: 16px;
}

.block {
    align-items: center;
    border-radius: 8px;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    justify-content: center;
    min-height: 13.85rem;
    /* min-width: 13rem; */
    padding: 1em;
    text-align: center;
}

.box-shadow {
    box-shadow: 0 0 3px 0 hsl(0deg 0% 8% / 10%), 0 8px 16px -3px hsl(0deg 0% 8% / 20%);
}

.bg-white {
    background-color: white !important;
}

.arrows {
    width: 60px;
    height: 72px;
    position: absolute;
    right: 10%;
    bottom: 40%;
}

.arrows path {
    stroke: #54ab4a;
    fill: transparent;
    stroke-width: 1px;
    animation: arrow 2s infinite;
    -webkit-animation: arrow 2s infinite;
}

@keyframes arrow {
    0% {
        opacity: 0
    }

    40% {
        opacity: 1
    }

    80% {
        opacity: 0
    }

    100% {
        opacity: 0
    }
}

@-webkit-keyframes arrow

/*Safari and Chrome*/
    {
    0% {
        opacity: 0
    }

    40% {
        opacity: 1
    }

    80% {
        opacity: 0
    }

    100% {
        opacity: 0
    }
}

.arrows path.a1 {
    animation-delay: -1s;
    -webkit-animation-delay: -1s;
    /* Safari 和 Chrome */
}

.arrows path.a2 {
    animation-delay: -0.5s;
    -webkit-animation-delay: -0.5s;
    /* Safari 和 Chrome */
}

.arrows path.a3 {
    animation-delay: 0s;
    -webkit-animation-delay: 0s;
    /* Safari 和 Chrome */
}

/* Share on first page */

.share-socials-home {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

#share-logo-home {
    height: 30px;
}

#lightbulb-home {
    height: 40px;
    margin-top: -12px;
}

.share-container-home {
    background-color: white;
    padding: 20px 0px;
    border-radius: 9px;
    display: flex;
    justify-content: center;
    margin-top: 25px;
    text-align: center;
    font-family: Uniform Cond, sans-serif;
    font-weight: bold;
    font-size: 20px;
}


@media (max-width: 1200px) {
    .headline h1 {
        padding: 10px 85px 33px 85px;
    }

}

@media (max-width: 700px) {
    .planner-block {
        flex: 1 1 34%;
    }

    .arrows {
        display: none;
    }

    .headline h1 {
        font-size: 34px;
        padding: 40px 45px 33px 45px;
    }

    .heading-millionaire {
        font-size: 15px;
    }

    /* Share on home */

    #share-logo-home {
        height: 20px;
        width: 60px;
    }

    #lightbulb-home {
        width: 27px;
        height: 27px;
        margin-top: -7px;
    }

    .share-container-home {
        font-size: 15px;
    }
}