﻿@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Scope+One&display=swap');

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

body {
}

/*header*/
#demo {
    text-align: center;
    color: #890606;
    font-size: 55px;
    font-family: 'Montserrat', sans-serif;
}

#countdown-promo {
    display: block;
    margin: 0 auto;
    width: 40%;
}

@media only screen and (max-width: 850px) {
    #countdown-promo {
        width: 65%;
    }
}

#header-container {
    background-color: #FFFA99;
    text-align: center;
    width: 100%;
    padding-top: 1.5%;
    padding-bottom: 1.5%;
}

#header-title {
    color: #bd0808;
    font-size: 60px;
    font-weight: bold;
    font-family: 'Lato', sans-serif;
    text-shadow: 1px 1px 5px #8f9094;
    margin-left: 1.5%;
    margin-right: 1.5%;
}

#header-subtitle {
    font-size: 35px;
    font-family: 'Scope One', serif;
    color: black;
    margin-left: 1.5%;
    margin-right: 1.5%;
}

#header-detail {
    display: block;
    margin: 0 auto;
    width: 45%;
}

#header-container video {
    width: 65%;
    display: block;
    margin: 0 auto;
}

#header-payment-prompt {
    width: 100%;
    text-align: center;
    background-color: #FFFA99;
    padding-top: 1.5%;
    padding-bottom: 3%;
    border-bottom-left-radius: 25% 15%;
    border-bottom-right-radius: 25% 15%;
    border-bottom: 2px solid #BD0808;
}

#header-link {
    font-family: 'Lato', sans-serif;
    font-weight: bold;
    text-decoration: none;
    color: white;
    padding: 12px;
    background-color: #5ec41a;
    border: 2px solid #3C7E10;
    border-radius: 20px;
    font-size: 29px;
    text-shadow: 1px 1px 5px #8f9094;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}
#header-link2 {
    font-family: 'Lato', sans-serif;
    font-weight: bold;
    text-decoration: none;
    color: white;
    padding: 12px;
    background-color: #5ec41a;
    border: 2px solid #3C7E10;
    border-radius: 20px;
    font-size: 29px;
    text-shadow: 1px 1px 5px #8f9094;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

#header-paymentmethods {
    margin-top: 3%;
    font-family: 'Scope One', serif;
    font-size: 22px;
    color: black;
}

#header-images {
    width: 80%;
    margin: 0 auto;
    display: block;
}

    #header-images img {
        height: 7vh;
    }
/*header media queries*/
@media only screen and (min-width: 1400px) and (max-width: 1549px) {
    #header-title {
        font-size: 65px;
    }

    #header-subtitle {
        font-size: 40px;
    }

    #header-link {
        font-size: 31px;
    }
    #header-link2 {
        font-size: 31px;
    }

    #header-paymentmethods {
        font-size: 26px;
    }
}

@media only screen and (min-width: 1550px) and (max-width: 1900px) {
    #header-title {
        font-size: 75px;
    }

    #header-subtitle {
        font-size: 45px;
    }

    #header-link {
        font-size: 35px;
    }
    #header-link2 {
        font-size: 35px;
    }

    #header-paymentmethods {
        font-size: 29px;
    }
}

@media only screen and (min-width: 1901px) {
    #header-title {
        font-size: 90px;
    }

    #header-subtitle {
        font-size: 60px;
    }

    #header-link {
        font-size: 45px;
    }
    #header-link2 {
        font-size: 45px;
    }

    #header-paymentmethods {
        font-size: 35px;
    }
}

@media only screen and (min-width: 551px) and (max-width: 1100px) {
    #header-container video {
        width: 85%;
    }
}

@media only screen and (max-width: 550px) {
    #header-container video {
        width: 95%;
    }

    #header-link {
        padding: 7px;
        width: 65%;
    }
    #header-link2 {
        padding: 7px;
        width: 65%;
    }
}
/*end of header media queries*/
/*end of header*/

/*module section*/
#module-container {
    background-color: white;
    text-align: center;
    width: 100%;
    padding-top: 1.5%;
    padding-bottom: 1.5%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}

#module1, #module2, #module3 {
    width: 30%;
    background-color: #890606;
    border-radius: 10px;
    box-shadow: 10px 10px 15px #8f9094;
}

#module1 {
    margin-left: 2%;
}

#module3 {
    margin-right: 2%;
}

.module-title {
    font-family: 'Lato', sans-serif;
    font-size: 30px;
    font-weight: bold;
    background-color: #620404;
    width: 100%;
    color: white;
    border-bottom: 2px solid #570F17;
    border-radius: 10px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    text-shadow: 1px 1px 3px #8f9094;
}

.module-content {
    padding-top: 5%;
    padding-bottom: 3%;
    font-size: 19px;
    color: white;
    margin-left: 5%;
    margin-right: 5%;
    font-family: 'Scope One', serif;
}
/*module media queries*/
@media only screen and (min-width: 1550px) and (max-width: 1900px) {
    .module-title {
        font-size: 34px;
    }

    .module-content {
        font-size: 23px;
    }
}

@media only screen and (min-width: 1901px) {
    .module-title {
        font-size: 40px;
    }

    .module-content {
        font-size: 29px;
    }
}

@media only screen and (max-width: 950px) {
    #module-container {
        flex-direction: column;
    }

    #module1, #module2, #module3 {
        width: 80%;
        display: block;
        margin: 0 auto;
        margin-top: 3%;
    }
}
/*end of module media queries*/
/*end of module section*/

/*pilar section*/
#pilar-container {
    text-align: center;
    width: 100%;
    padding-top: 1.5%;
    padding-bottom: 1.5%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    background: linear-gradient(-45deg, #66d490, #4db876, #439462);
    background-size: 300% 300%;
    animation: gradient 5s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

#pilar1, #pilar2 {
    width: 50%;
}

#pilar1 {
    border-right: 1px solid white;
}

#pilar2 {
    border-left: 1px solid white;
}

.icon {
    display: block;
    margin: 0 auto;
    width: 100px;
}

.pilar-title {
    font-family: 'Lato', sans-serif;
    font-size: 34px;
    font-weight: bold;
    color: white;
    text-shadow: 1px 1px 5px #8f9094;
}

.pilar-content {
    font-size: 19px;
    margin-left: 5%;
    margin-right: 5%;
    font-family: 'Scope One', serif;
    padding-top: 3%;
    padding-bottom: 3%;
    color: #22443C;
    font-weight: bold;
}
/*pilar media queries*/
@media only screen and (min-width: 1400px) and (max-width: 1549px) {
    .pilar-title {
        font-size: 36px;
    }

    .pilar-content {
        font-size: 21px;
    }
}

@media only screen and (min-width: 1550px) and (max-width: 1900px) {
    .pilar-title {
        font-size: 41px;
    }

    .pilar-content {
        font-size: 26px;
    }
}

@media only screen and (min-width: 1901px) {
    .pilar-title {
        font-size: 50px;
    }

    .pilar-content {
        font-size: 35px;
    }
}

@media only screen and (max-width: 750px) {
    #pilar-container {
        flex-direction: column;
    }

    #pilar1, #pilar2 {
        width: 100%;
    }

    #pilar1 {
        border-bottom: 1px solid white;
        border-right: none;
    }

    #pilar2 {
        border-top: 1px solid white;
        border-left: none;
    }
}
/*end of pilar media queries*/
/*end of pilar section*/

/*side by side image & text section*/
#sidebyside-header {
    background-color: #890606;
    width: 100%;
    text-align: center;
    padding-top: 1%;
    padding-bottom: 3%;
}
#sidebyside-header-text {
    text-align: center;
    font-family: 'Lato', sans-serif;
    font-size: 40px;
    font-weight: bold;
    color: white;
    text-shadow: 1px 1px 5px #8f9094;
}
.sidebyside-wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    background-color: #890606;
}

.sidebyside-type1-l {
    width: 40%;
    background-color: #890606;
    text-align: center;
}

    .sidebyside-type1-l img {
        height: 55vh;
    }

.sidebyside-type1-r {
    width: 60%;
    background-color: #890606;
    text-align: center;
}

    .sidebyside-type1-r p {
        color: white;
        font-size: 21px;
        font-family: 'Montserrat', sans-serif;
        margin-left: 5%;
        margin-right: 5%;
        margin-top: 8%;
        font-style: italic;
    }

.sidebyside-type2-l {
    width: 60%;
    background-color: #890606;
    text-align: center;
}

    .sidebyside-type2-l p {
        color: white;
        font-size: 21px;
        font-family: 'Montserrat', sans-serif;
        margin-left: 5%;
        margin-right: 5%;
        margin-top: 10%;
        font-style: italic;
    }

.sidebyside-type2-r {
    width: 40%;
    background-color: #890606;
    text-align: center;
}

    .sidebyside-type2-r img {
        height: 55vh;
    }

#mobile-sidebyside-image {
    display: none;
}
/*side by side image & text section media queries*/
@media only screen and (min-width: 1550px) and (max-width: 1900px) {
    .sidebyside-type1-r p {
        font-size: 25px;
    }

    .sidebyside-type2-l p {
        font-size: 25px;
    }
}

@media only screen and (min-width: 1901px) {
    .sidebyside-type1-r p {
        font-size: 38px;
    }

    .sidebyside-type2-l p {
        font-size: 38px;
    }
}

@media only screen and (min-width: 605px) and (max-width: 750px) {
    .sidebyside-type1-r p {
        font-size: 19px;
    }

    .sidebyside-type2-l p {
        font-size: 19px;
    }
}

@media only screen and (max-width: 600px) {
    #mobile-sidebyside-image {
        display: block;
        height: 55vh;
        margin: 0 auto;
    }

    .sidebyside-wrapper {
        flex-direction: column;
    }

    .sidebyside-type1-l {
        width: 100%;
    }

        .sidebyside-type1-l img {
            height: 55vh;
        }

    .sidebyside-type1-r {
        width: 100%;
        padding-bottom: 2%;
    }

        .sidebyside-type1-r p {
            margin-top: 2%;
        }

    .sidebyside-type2-l {
        width: 100%;
        padding-bottom: 2%;
    }

        .sidebyside-type2-l p {
            margin-top: 2%;
        }

    .sidebyside-type2-r {
        display: none;
    }
}
/*end of side by side image & text section media queries*/
/*end of side by side image & text section*/

/*depoimentos section*/
#depoimentos-title {
    width: 100%;
    background-color: white;
    text-align: center;
    padding-top: 1%;
    padding-bottom: 1%;
}

    #depoimentos-title p {
        font-family: 'Lato', sans-serif;
        font-size: 34px;
        font-weight: bold;
        color: #890606;
        text-shadow: 1px 1px 5px #8f9094;
    }

#depoimentos-wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    background-color: white;
}

#review1 {
    width: 30%;
}

#review2 {
    width: 40%;
}

#review3 {
    width: 30%;
}

    #review1 img, #review2 img, #review3 img {
        width: 100%;
    }
/*depoimentos section media queries*/
@media only screen and (max-width: 750px) {
    #depoimentos-wrapper {
        flex-direction: column;
    }

    #review1 {
        width: 100%;
    }

    #review2 {
        width: 100%;
    }

    #review3 {
        width: 100%;
    }
}
/*end of depoimentos section media queries*/
/*end of depoimentos section*/

/*video showcase*/
#video-wrapper {
    width: 100%;
    padding-top: 1.5%;
    padding-bottom: 1.5%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    background-color: #FFFA99;
}

#video1, #video2 {
    width: 50%;
}

    #video1 video, #video2 video {
        width: 80%;
        display: block;
        margin: 0 auto;
        border: 3px solid #66D490;
        padding: 3px;
    }
/*video showcase media queries*/
@media only screen and (max-width: 900px) {
    #video-wrapper {
        flex-direction: column;
    }

    #video1, #video2 {
        width: 100%;
    }

        #video1 video, #video2 video {
            width: 85%;
            display: block;
            margin: 0 auto;
        }
}
/*end of video showcase media queries*/
/*end of video showcase*/

/*about section*/
#about-wrapper {
    width: 100%;
    text-align: center;
    background-color: white;
    padding-top: 1.5%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

#about1 {
    width: 35%;
}

    #about1 img {
        width: 98%;
        display: block;
        margin: 0 auto;
        margin-top: 15%;
    }

#about2 {
    width: 65%;
}

#about-title {
    font-family: 'Lato', sans-serif;
    font-size: 34px;
    font-weight: bold;
    color: #22443C;
    text-shadow: 1px 1px 5px #8f9094;
    padding-top: 0.5%;
    padding-bottom: 0.5%;
}

#about-content {
    font-size: 20px;
    margin-left: 5%;
    margin-right: 5%;
    font-family: 'Scope One', serif;
    padding-top: 1.5%;
    color: #3D695E;
    font-weight: bold;
}

#about-signoff {
    width: 45%;
    display: block;
    margin: 0 auto;
}
/*about media queries*/
@media only screen and (min-width: 1400px) and (max-width: 1549px) {
    #about-title {
        font-size: 36px;
    }

    #about-content {
        font-size: 22px;
    }
}

@media only screen and (min-width: 1550px) and (max-width: 1900px) {
    #about-title {
        font-size: 41px;
    }

    #about-content {
        font-size: 26px;
    }
}

@media only screen and (min-width: 1901px) {
    #about-title {
        font-size: 50px;
    }

    #about-content {
        font-size: 35px;
    }
}

@media only screen and (max-width: 950px) {
    #about-wrapper {
        flex-direction: column;
    }

    #about1 {
        width: 100%;
    }

        #about1 img {
            width: 50%;
            margin-top: 1%;
        }

    #about2 {
        width: 100%;
    }
}
/*end of about media queries*/
/*end of about section*/

/*article container*/
#article-container {
    width: 100%;
}

    #article-container img {
        width: 85%;
        display: block;
        margin: 0 auto;
    }
/*article container media queries*/
@media only screen and (max-width: 950px) {
    #article-container img {
        width: 100%;
    }
}
/*end of article container media queries*/
/*end of article container*/

/*image display section*/
#image-display-wrapper {
    background-color: white;
    width: 100%;
    padding-top: 1.5%;
    padding-bottom: 1.5%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}

    #image-display-wrapper img {
        width: 100%;
        border: 3px solid #66D490;
        padding: 3px;
    }

        #image-display-wrapper img:hover {
            transform: scale(1.05);
            transition: all 0.3s;
        }

#image-display1 {
    width: 30%;
    margin-left: 2%;
}

#image-display2 {
    width: 30%;
}

#image-display3 {
    width: 30%;
    margin-right: 2%;
}
/*image display media queries*/
@media only screen and (max-width: 950px) {
    #image-display-wrapper {
        flex-direction: column;
    }

    #image-display1 {
        width: 75%;
        display: block;
        margin: 0 auto;
        margin-top: 1%;
    }

    #image-display2 {
        width: 75%;
        display: block;
        margin: 0 auto;
        margin-top: 1%;
    }

    #image-display3 {
        width: 75%;
        display: block;
        margin: 0 auto;
        margin-top: 1%;
    }
}
/*end of image display media queries*/
/*end of image display section*/

/*guarantee section*/
#guarantee-container {
    width: 80%;
    background-color: #66D490;
    padding-top: 1.5%;
    padding-bottom: 1.5%;
    display: block;
    margin: 0 auto;
    transform: skewX(-25deg);
    text-align: center;
}

#guarantee-title, #guarantee-content {
    transform: skewX(25deg);
}

#guarantee-title {
    font-family: 'Lato', sans-serif;
    font-size: 34px;
    font-weight: bold;
    color: white;
    text-shadow: 1px 1px 5px #8f9094;
}

#guarantee-content {
    font-size: 19px;
    margin-left: 10%;
    margin-right: 10%;
    font-family: 'Scope One', serif;
    padding-top: 1.5%;
    padding-bottom: 1.5%;
    color: #22443C;
    font-weight: bold;
}

    #guarantee-content img {
        display: block;
        margin: 0 auto;
        height: 35vh;
    }
/*guarantee media queries*/
@media only screen and (min-width: 1400px) and (max-width: 1549px) {
    #guarantee-title {
        font-size: 36px;
    }

    #guarantee-content {
        font-size: 21px;
    }

        #guarantee-content img {
            height: 33vh;
        }
}

@media only screen and (min-width: 1550px) and (max-width: 1900px) {
    #guarantee-title {
        font-size: 41px;
    }

    #guarantee-content {
        font-size: 26px;
    }

        #guarantee-content img {
            height: 36vh;
        }
}

@media only screen and (min-width: 1901px) {
    #guarantee-title {
        font-size: 55px;
    }

    #guarantee-content {
        font-size: 33px;
    }

        #guarantee-content img {
            height: 40vh;
        }
}

@media only screen and (min-width: 885px) and (max-width: 1015px) {
    #guarantee-container {
        width: 75%;
    }
}

@media only screen and (min-width: 601px) and (max-width: 884px) {
    #guarantee-container {
        width: 85%;
        transform: none;
        border-radius: 25px;
    }

    #guarantee-title, #guarantee-content {
        transform: none;
    }
}

@media only screen and (max-width: 600px) {
    #guarantee-container {
        width: 95%;
        transform: none;
        border-radius: 25px;
    }

    #guarantee-title, #guarantee-content {
        transform: none;
    }
}
/*end of guarantee media queries*/
/*end of guarantee section*/

/*image display section*/
#image-display-wrapper2 {
    background-color: white;
    width: 100%;
    padding-top: 1.5%;
    padding-bottom: 1.5%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}

    #image-display-wrapper2 img {
        width: 100%;
        border: 3px solid #66D490;
        padding: 3px;
    }

        #image-display-wrapper2 img:hover {
            transform: scale(1.05);
            transition: all 0.3s;
        }

#image-display2-1 {
    width: 30%;
    margin-left: 2%;
}

#image-display2-2 {
    width: 30%;
}

#image-display2-3 {
    width: 30%;
    margin-right: 2%;
}
/*image display media queries*/
@media only screen and (max-width: 950px) {
    #image-display-wrapper2 {
        flex-direction: column;
    }

    #image-display2-1 {
        width: 75%;
        display: block;
        margin: 0 auto;
        margin-top: 1%;
    }

    #image-display2-2 {
        width: 75%;
        display: block;
        margin: 0 auto;
        margin-top: 1%;
    }

    #image-display2-3 {
        width: 75%;
        display: block;
        margin: 0 auto;
        margin-top: 1%;
    }
}
/*end of image display media queries*/
/*end of image display section*/

/*footer section*/
#footer {
    width: 100%;
    background-color: #890606;
    padding-top: 1.5%;
    padding-bottom: 1.5%;
    text-align: center;
    border-top: 3px solid #7A1521;
}

#footer-text {
    font-family: 'Scope One', serif;
    font-size: 23px;
    margin-left: 10%;
    margin-right: 10%;
    color: white;
    padding-top: 1.5%;
    padding-bottom: 1.5%;
}

#footer-link {
    margin-top: 1.5%;
    font-family: 'Lato', sans-serif;
    font-weight: bold;
    text-decoration: none;
    text-shadow: 1px 1px 5px #8f9094;
    color: white;
    padding: 12px;
    background-color: #5EC41A;
    border: 2px solid #3C7E10;
    border-radius: 20px;
    font-size: 28px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}
/*footer media queries*/
@media only screen and (min-width: 1400px) and (max-width: 1549px) {
    #footer-text {
        font-size: 24px;
    }

    #footer-link {
        font-size: 29px;
    }
}

@media only screen and (min-width: 1550px) and (max-width: 1900px) {
    #footer-text {
        font-size: 29px;
    }

    #footer-link {
        font-size: 32px;
    }
}

@media only screen and (min-width: 1901px) {
    #footer-text {
        font-size: 35px;
    }

    #footer-link {
        font-size: 41px;
    }
}

@media only screen and (max-width: 700px) {
    #footer-text {
        margin-left: 5%;
        margin-right: 5%;
        font-size: 19px;
    }

    #footer-link {
        padding: 5px;
    }
}
/*end of footer media queries*/
/*end of footer section*/

/*hover effects*/
.hvr-float {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

    .hvr-float:hover, .hvr-float:focus, .hvr-float:active {
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }

.hvr-underline-from-center {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    overflow: hidden;
}

    .hvr-underline-from-center:before {
        content: "";
        position: absolute;
        z-index: -1;
        left: 51%;
        right: 51%;
        bottom: 0;
        background: #22443C;
        height: 4px;
        -webkit-transition-property: left, right;
        transition-property: left, right;
        -webkit-transition-duration: 0.3s;
        transition-duration: 0.3s;
        -webkit-transition-timing-function: ease-out;
        transition-timing-function: ease-out;
    }

    .hvr-underline-from-center:hover:before, .hvr-underline-from-center:focus:before, .hvr-underline-from-center:active:before {
        left: 0;
        right: 0;
    }
/*end of hover effects*/
