@keyframes moveImages {
    0% {
        margin: 0;
    }

    70% {
        margin: 30px 0;
    }

    100% {
        margin: 0;
    }
}

.body {
    margin: 0;
    padding: 0;
    background-image: url("../images/bg.png");
    background-color: #1e1e1e;
    background-position: center 0;
    background-repeat: no-repeat;
    font-family: "Century Gothic", Open Sans, sans-serif;
    background-size: cover;
}

.body .land-header {
    width: 100%;
    display: block;
    background-color: #1F2E3D;
}

.body .land-header__wrapper {
    max-width: 1000px;
    display: block;
    margin: auto;
    padding: 0 20px;
}

.body .land-header__wrapper__logo {
    display: inline-block;
    height: auto;
}

.body .land-header__wrapper__logo_icon {
    height: 25px;
    margin: 5px 0;
}

.body .land-header__wrapper__signin {
    display: inline-block;
    float: right;
    margin: 9px 0 0 0;
    font-family: 'Open Sans', sans-serif;
}

.body .land-header__wrapper__signin_text {
    font-size: 14px;
    color: #31ae27;
    font-weight: 500;
    margin: 0 10px 0 0;
    transition: .7s;
    text-decoration: underline;
    cursor: pointer;
}

.body .land-header__wrapper__signin_text:hover {
    text-decoration: none;
}

.body .land-header__wrapper__signin_button {
    background-color: #626262;
    padding: 5px 18px;
    border: none;
    border-radius: 5px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: none;
    font-size: 12px;
    transition: .7s;
    cursor: pointer;
}

.body .land-header__wrapper__signin_button:hover {
    background-color: #4e4e4e;
}

.body .content {
    width: 100%;
    display: block;
}

.tm-content .content {
    margin: 0;
}

.body .content__wrapper {
    max-width: 750px;
    display: block;
    text-align: center;
    margin: 0 auto;
}

.body .content__wrapper_subheading {
    text-align: center;
    font-size: 30px;
    color: #fff;
    margin: 100px 0 20px 0;
}

.body .content__wrapper_subheading_yellow-text {
    font-size: 35px;
    color: #06a53a;
    text-transform: uppercase;
    font-weight: 900;
}

.body .content__wrapper_counter {
    font-size: 40px;
    color: #06a53a;
    font-weight: 900;
    text-align: center;
}

.body .content__wrapper_text {
    font-size: 25px;
    color: #fff;
    font-weight: 400;
    text-align: center;
    margin: 20px 0;
}

.body .content__wrapper_three-answers {
    font-size: 15px;
    color: #fff;
    font-weight: 400;
    text-align: center;
    margin: 10px 0;
}

.body .content__wrapper .radio-buttons {
    width: 250px;
    display: block;
    margin: 20px auto 0 auto;
}

.body .content__wrapper .radio-buttons__wrapper {
    display: block;
    text-align: left;
    margin: 10px 0;
    cursor: pointer;
}

.body .content__wrapper .radio-buttons__wrapper_label {
    font-size: 25px;
    color: #fff;
    display: inline-block;
    line-height: 25px;
    margin: 0 0 0 5px;
}

.body .content__wrapper .radio-buttons__wrapper_radio {
    opacity: 0;
    position: absolute;
}

.body .content__wrapper .radio-buttons__wrapper_radio:checked~.checkmark {
    background-color: #31ae27;
}

.body .content__wrapper .radio-buttons__wrapper_checkmark {
    background-color: transparent;
    position: relative;
    height: 20px;
    width: 20px;
    border: 1px solid #fff;
    border-radius: 5px;
    display: inline-block;
}

.body .content__wrapper_button {
    position: relative;
    display: inline-block;
    margin: 20px 20px 40px 0;
    font-size: 30px;
    line-height: 180px;
}

.body .content__wrapper_heading {
    text-align: center;
    font-size: 36px;
    color: #fff;
    margin: 0 0 70px 0;
    text-shadow: 0 0 17px black;
}

.body .content__wrapper_matches-block {
    max-width: 750px;
    display: block;
    margin: auto;
    height: 100vh;
}

.body .content__wrapper_matches-block .puzzle-container {
    max-width: 750px;
    display: block;
    position: relative;
    min-height: 705px;
}

.body .content__wrapper_matches-block .puzzle-container_img-style {
    display: block;
    position: absolute;
    /* border-radius: 3px; */
    /* box-shadow: 0 0 20px #000; */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-transition: .5s;
}

.body .content__wrapper_matches-block .puzzle-container_img-one {
    width: 151px;
    height: 152px;
    top: 300px;
    right: 60px;
    background-image: url("../images/1.png");
    -webkit-animation: moveImages 1.2s ease 1.2s infinite;
    animation-delay: .6s; 
    z-index: -1;
}

.body .content__wrapper_matches-block .puzzle-container_img-two {
    width: 133px;
    height: 132px;
    top: 150px;
    right: 0;
    background-image: url("../images/2.png");
    z-index: -1;
    -webkit-animation: moveImages 1.2s ease 1.2s infinite;
    animation-delay: .3s;
}

.body .content__wrapper_matches-block .puzzle-container_img-three {
    width: 165px;
    height: 165px;
    top: 150px;
    left: 0;
    background-image: url("../images/3.png");
    -webkit-animation: moveImages 1.2s ease 1.2s infinite;
    animation-delay: .4s;
    z-index: 0;
}

/*.body .content__wrapper_matches-block .puzzle-container_img-four {
    width: 226px;
    height: 227px;
    top: 230px;
    right: 10px;
    background-image: url("../images/4.png");
    z-index: -2;
    -webkit-animation: moveImages 1.2s ease 1.2s infinite;
    animation-delay: .8s;
}*/

.body .content__wrapper_matches-block .puzzle-container_img-five {
    width: 280px;
    height: 280px;
    top: 50%;
    left: 50%;
    box-shadow: none;
    background-image: url("../images/user.png");
    -webkit-animation: moveImages 1.2s ease 1.2s infinite;
    animation-delay: .3s;
    z-index: -1;
    transform: translate(-50%, -50%);
}

.body .content__wrapper_matches-block .puzzle-container_img-six {
    width: 251px;
    height: 251px;
    top: 280px;
    left: 0px;
    background-image: url("../images/5.png");
    -webkit-animation: moveImages 1.2s ease 1.2s infinite;
    animation-delay: .2s;
    z-index: -1;
}

.body .content__wrapper_matches-block .puzzle-container_img-seven {
    width: 279px;
    height: 280px;
    top: 50px;
    left: 110px;
    background-position: 0 0;
    background-image: url("../images/6.png");
    -webkit-animation: moveImages 1.2s ease 1.2s infinite;
    animation-delay: .1s;
    z-index: -2;
}

.body .content__wrapper_matches-block .puzzle-container_img-eight {
    width: 305px;
    height: 307px;
    top: 75px;
    right: 90px;
    background-image: url("../images/7.png");
    z-index: -3;
    -webkit-animation: moveImages 1.2s ease 1.2s infinite;
    animation-delay: .4s;
}

.body .content__wrapper_matches-block .puzzle-container_img-nine {
    width: 260px;
    height: 260px;
    bottom: 50px;
    right: 110px;
    background-image: url("../images/8.png");
    z-index: -4;
    -webkit-animation: moveImages 1.2s ease 1.2s infinite;
}

.body .content__wrapper_matches-block .puzzle-container_img-ten {
    width: 260px;
    height: 261px;
    bottom: 0;
    left: 150px;
    background-image: url("../images/9.png");
    z-index: -4;
    -webkit-animation: moveImages 1.2s ease 1.2s infinite;
}

.body .content__wrapper_matches-block .puzzle-container .js-pattern {
    position: absolute;
    bottom: 0;
    left: 139px;
}

.body .content__wrapper_matches-block .puzzle-container_button {
    display: block;
    position: absolute;
    top: 72%;
    left: 50%;
    transform: translate(-50%);
}

.body .footer {
    width: 100%;
    background-color: #1F2E3D;
    position: relative;
    bottom: 0;
    z-index: 20;
}

.body .footer__wrapper {
    max-width: 1000px;
    display: block;
    margin: auto;
    padding: 10px 20px;
}

.body .footer__wrapper_links {
    font-size: 10px;
    color: #fff;
    text-decoration: none;
    margin: 0 20px 0 0;
    font-family: 'Open Sans', sans-serif;
    transition: .7s;
}

.body .footer__wrapper_links:hover {
    opacity: .7;
}

/*************** gen style elements ***********/
.js-pattern-element {
    /* background-image: url("../images/shpzkl5sl91s20oq8.8a493d00.png"); */
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    visibility: hidden;
    -webkit-transition: 1s ease;
    left: 50%;
    top: 50%;
}

.small-heart {
    width: 20px;
    height: 20px;
    -webkit-animation: moveSmallHeart 1.5s ease-in-out infinite;
}

.middle-heart {
    width: 30px;
    height: 30px;
    -webkit-animation: moveMiddleHeart 2s ease-in-out infinite;
}

.large-heart {
    width: 50px;
    height: 50px;
    -webkit-animation: moveLargeHeart 1.8s ease-in-out infinite;
}

.visible {
    visibility: visible;
}

.hide {
    display: none !important;
}

.button,
.body .content__wrapper_button,
.body .content__wrapper_matches-block .puzzle-container_button {
    width: 250px;
    height: 70px;
    line-height: 70px;
    border: none;
    background: #00c541;
    border-radius: 5px;
    z-index: 10;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-family: "Century Gothic", Open Sans, sans-serif;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    vertical-align: middle;
    cursor: pointer;
    overflow: hidden;
    -webkit-transition: .7s;
}

.button:hover,
.body .content__wrapper_button:hover,
.body .content__wrapper_matches-block .puzzle-container_button:hover {
    background: #00b000;
    -webkit-transition: .7s;
}

.red-button {
    background: #cd2b2b !important;
}

.margin-top-partial {
    margin: 100px auto 0 auto !important;
}

/********************************** media rules ******************************************/
@media screen and (max-width: 1025px) {
    .body {
        min-height: 100% !important;
    }

    .footer {
        display: block !important;
        position: relative !important;
    }
}

@media screen and (max-width: 768px) {
    .body {
        min-height: 100% !important;
    }

    .footer {
        display: block !important;
        position: relative !important;
    }
}

@media screen and (max-width: 500px) {
    .body .land-header__wrapper__signin_text {
        display: none;
    }

    .body .content {
        width: 100%;
        display: block;
        margin: 50px 0 0 0;
        height: 100vh;
    }

    .body .content__wrapper {
        max-width: 750px;
        display: block;
        text-align: center;
        margin: 0 auto;
    }

    .body .content__wrapper_subheading {
        font-size: 4vh;
        margin: 4vh 2vh;
    }

    .body .content__wrapper_subheading_yellow-text {
        font-size: 4vh;
        color: #ffe400;
        text-transform: uppercase;
        font-weight: 900;
    }

    .body .content__wrapper_counter {
        font-size: 4vh;
        margin: 0 2vh;
    }

    .body .content__wrapper_text {
        font-size: 2.5vh;
        margin: 4vh 2vh;
    }

    .body .content__wrapper_three-answers {
        font-size: 15px;
        color: #fff;
        font-weight: 400;
        text-align: center;
        margin: 10px 0;
    }

    .body .content__wrapper .radio-buttons {
        width: 200px;
        display: block;
        margin: 20px auto 0 auto;
    }

    .body .content__wrapper .radio-buttons__wrapper {
        display: block;
        text-align: left;
        margin: 10px 0;
        cursor: pointer;
    }

    .body .content__wrapper .radio-buttons__wrapper_label {
        font-size: 25px;
        color: #fff;
        display: inline-block;
        line-height: 25px;
        margin: 0 0 0 5px;
    }

    .body .content__wrapper .radio-buttons__wrapper_radio {
        opacity: 0;
        position: absolute;
    }

    .body .content__wrapper .radio-buttons__wrapper_radio:checked~.checkmark {
        background-color: #00c541;
    }

    .body .content__wrapper .radio-buttons__wrapper_checkmark {
        background-color: transparent;
        position: relative;
        height: 20px;
        width: 20px;
        border: 1px solid #fff;
        border-radius: 5px;
        display: inline-block;
    }

    .body .content__wrapper_button {
        width: 20vh;
        height: 20vh;
        font-size: 3vh;
        display: inline-block;
        line-height: 20vh;
    }

    .body .content__wrapper_heading {
        text-align: center;
        font-size: 5vh;
        color: #fff;
        font-family: Open Sans, sans-serif;
        margin: 0 0 105px 0;
        text-shadow: 0 0 17px black;
    }

    .body .content__wrapper_matches-block {
        max-width: 500px;
        display: block;
        margin: auto;
    }

    .body .content__wrapper_matches-block .puzzle-container {
        max-width: 500px;
        display: block;
        position: relative;
        min-height: 500px;
    }

    .body .content__wrapper_matches-block .puzzle-container_img-one {
        width: 30vw;
        height: 30vw;
        top: -20vw;
    }

    .body .content__wrapper_matches-block .puzzle-container_img-two {
        width: 40vw;
        height: 40vw;
        top: -17%;
        left: 7%;
    }

    .body .content__wrapper_matches-block .puzzle-container_img-three {
        width: 40vw;
        height: 40vw;
        top: -16%;
        left: 37%;
    }

    .body .content__wrapper_matches-block .puzzle-container_img-four {
        width: 25vw;
        height: 29vw;
        top: 5%;
        left: 72%;
    }

    .body .content__wrapper_matches-block .puzzle-container_img-five {
        width: 40vw;
        height: 40vw;
        z-index: 0;
        transform: translate(-50%, -50vw);
    }

    .body .content__wrapper_matches-block .puzzle-container_img-six {
        width: 58vw;
        height: 58vw;
        top: 0;
    }

    .body .content__wrapper_matches-block .puzzle-container_img-seven {
        width: 24vw;
        height: 30vw;
        top: 18%;
        left: 69%;
    }

    .body .content__wrapper_matches-block .puzzle-container_img-eight {
        width: 33vw;
        height: 33vw;
        top: 35%;
        left: 61%;
    }

    .body .content__wrapper_matches-block .puzzle-container_img-nine {
        width: 50vw;
        height: 50vw;
        top: 35%;
        left: 0;
    }

    .body .content__wrapper_matches-block .puzzle-container .js-pattern {
        position: absolute;
        bottom: 0;
        left: 139px;
    }

    .body .content__wrapper_matches-block .puzzle-container_button {
        display: block;
        position: absolute;
        bottom: 38%;
    }

    .body .footer {
        width: 100%;
        background-color: #1F2E3D;
        position: relative;
        bottom: 0;
        z-index: 20;
    }

    .body .footer__wrapper {
        max-width: 1000px;
        display: block;
        margin: auto;
        padding: 10px 20px;
    }

    .body .footer__wrapper_links {
        font-size: 10px;
        color: #fff;
        text-decoration: none;
        margin: 0 20px 0 0;
        font-family: 'Open Sans', sans-serif;
        transition: .7s;
    }

    .body .footer__wrapper_links:hover {
        opacity: .7;
    }

    .small-heart {
        width: 10px;
        height: 10px;
        -webkit-animation: moveSmallHeart 1.5s ease-in-out infinite;
    }

    .middle-heart {
        width: 15px;
        height: 15px;
        -webkit-animation: moveMiddleHeart 2s ease-in-out infinite;
    }

    .large-heart {
        width: 25px;
        height: 25px;
        -webkit-animation: moveLargeHeart 1.8s ease-in-out infinite;
    }

    .margin-top-partial {
        margin: 0 !important;
    }

    .mobile-no-margin {
        margin: 0 !important;
    }

    /***************** reg form styling **********************/
    .vb-overlay .form-container {
        border: none !important;
    }

    .vb-overlay .content_land {
        width: 95% !important;
    }

    .vb-overlay .form-header {
        border-top-left-radius: 10px !important;
        border-top-right-radius: 10px !important;
        padding: 12px 0 7px 0 !important;
    }
}

@media (max-height: 450px) {
    .body .content {
        height: 250vh;
    }

    .tm-content .content {
        height: 70px;
    }
}