/* variables */
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700");
@import url("https://fonts.googleapis.com/css?family=Roboto:400,300,500,700");

body, html {
  -webkit-box-sizing: border-box;
  /* Safari/Chrome, other WebKit */
  /* Firefox, other Gecko */
  box-sizing: border-box;
  /* Opera/IE 8+ */
  overflow-x: hidden;
}

/* common html */
body {
    background-color: #fff;
    /*font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;*/
    font-size: 14px;
    color: #707070;
    margin: 0;
    padding: 0;
}
@media screen and (min-width: 1024px) {
    body {
        font-size: 16px;
    }
}

h1, h2, h3, h4, h5, h6 {
  color: #dc0024;
  font-weight: bold;
}

/* layout parts */
header {
    position: fixed;
    top: 0;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 60px;
    background-color: #fff;
    vertical-align: middle;
    text-align: center;
    font-size: 1em;
    font-style: italic;
    color: #707070;
    -webkit-box-shadow: 0px 5px 7px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 5px 7px 0px rgba(0, 0, 0, 0.3);
    z-index: 105;
}
    header .main-header {
        width: 100%;
        display: none;
    }
    header .alt-header {
        width: 100%;
        display: flex;
    }
@media screen and (min-width: 1024px) {
    header {
        text-align: left;
    }
        header .main-header {
            width: 100%;
            display: block;
        }

        header .alt-header {
            width: 100%;
            display: none;
        }
}

.img-logo {
    width: 40%;
    height: auto;
}
@media screen and (min-width: 1024px) {
    .img-logo {
        height: 60px;
        width: auto;
        align-content: center;
    }
}


footer {
    background-color: #ccc;
    border: none;
    border-top: solid 8px #505050;
    padding: 15px;
    /*height: 25vh;*/
}

footer img {
  height: 25px;
  width: auto;
}

footer p {
  color: #555;
}

footer .social {
  text-align: right;
  font-size: 1.3em;
}

footer .social i {
  padding: 5px;
}

footer .phone-number {
  color: #dc0024;
  font-size: 1.5em;
  font-weight: bold;
}

/* component classes */
.btn {
    height: 55px;
    width: 300px;
}

.btn-primary {
    background-color: #69c500;
    border: none;
}
    .btn-primary:hover {
        background-color: #539c00;
        border: none;
    }

.form-control {
    width: 100%;
}

.btn-danger {
    background-color: #dc0024;
}

.LoginRegisterMenu {
  position: fixed;
  top: 0;
  right: 0;
  width: 35vw;
  height: 70px;
  padding: 0;
  margin: 0;
  margin-right: 5vw;
  background-color: #f7f7f7;
  z-index: 105;
}

.LoginRegisterMenu a {
  padding: 15px;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  font-size: 1.5em;
  font-weight: bold;
  color: #000;
  text-decoration: none;
}

.LoginRegisterMenu .active {
  color: #fff;
  background-color: #dc0024;
}

.LoginRegisterMenu .distak {
  color: #fff;
  background-color: #69c500;
}

.distak {
    display: flex;
    color: #69c500;
    text-align: center;
    font-size: 1.5em;
    font-weight: bold;
}

.RegisterForm {
    position: relative;
    width: 100%;
    height: auto;
    padding: 30px;
    padding-top: 0;
    margin: 0;
    margin-right: 0;
    background-color: #f7f7f7;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
@media screen and (min-width: 1024px) {
    .RegisterForm {
        position: absolute;
        top: 0;
        right: 0;
        width: 35vw;
        height: 90vh;
        padding: 30px;
        padding-top: 90px;
        margin: 0;
        margin-right: 0;
        background-color: #f7f7f7;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        z-index: 95;
    }
}

.LoginLandForm {
    position: relative;
    width: 100%;
    height: auto;
    padding: 30px;
    padding-top: 0;
    margin: 0;
    margin-right: 0;
    background-color: #f7f7f7;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 96;
}

@media screen and (min-width: 1024px) {
    .LoginLandForm {
        position: absolute;
        top: 0;
        right: 0;
        width: 35vw;
        height: 90vh;
        padding: 30px;
        padding-top: 90px;
        margin: 0;
        margin-right: 0;
        background-color: #f7f7f7;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        z-index: 96;
    }
}

.LandingForms input {
    margin: 0px;
    margin-bottom: 5px;
    padding: 5px;
    border: solid 1px #707070;
    border-radius: 0;
    /*width: 100%;*/
}

.LandingForms select {
    margin: 0px;
    margin-bottom: 5px;
    padding: 5px;
    border: solid 1px #707070;
    border-radius: 0;
    /*width: 100%;*/
}

.RegisterForm button {
    width: 100%;
    background-color: #f7f7f7;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    border: none;
}

.LoginLandForm input {
    margin: 0px;
    margin-bottom: 5px;
    padding: 5px;
    border: solid 1px #707070;
    border-radius: 0;
    /*width: 100%;*/
}

.LoginLandForm button {
    width: 100%;
    background-color: #f7f7f7;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    border: none;
}

.hero {
  background-color: #dfdfdf;
  background-image: url("../images/header-slide-1.png");
  background-attachment: scroll;
  background-position: top left;
  background-size: cover;
  height: 40vh;
  color: #000;
}
@media screen and (min-width: 768px) {
    .hero {
        background-position: center center;
        height: 25vh;
    }
}
@media screen and (min-width: 1024px) {
    .hero {
        background-position: center center;
        height: 50vh;
    }
}

.hero .hero-effect {
  position: absolute;
  top: 0;
  background-color: #fff;
  opacity: 0;
  height: 40vh;
  width: 100%;
}
@media screen and (min-width: 768px) {
    .hero .hero-effect {
        height: 25vh;
    }
}
@media screen and (min-width: 1024px) {
    .hero .hero-effect {
        height: 50vh;
    }
}

.hero .hero-content {
  text-align: center;
  padding: 0;
  padding-top: 20vh;
}

    .hero .hero-content p {
        font-size: 1.6em;
        font-style: italic;
        font-weight: bold;
        padding: 0;
        padding-top: 5vh;
        padding-bottom: 5vh;
        color: #444;
    }

    .hero .hero-content img {
        width: 30vw;
        padding-bottom: 5vh;
    }

.second-section {
    height: auto;
    font-size: 1em;
    padding: 1vh;
    padding-right: 1vw;
}
@media screen and (min-width: 1024px) {
    .second-section {
        height: 40vh;
        font-size: 1em;
        padding: 2vh;
        padding-right: 42vw;
    }
}

.second-section p {
    color: 707070;
}

.first-call {
}

.first-call .carousel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.second-section h4 {
    font-size: 1.1em;
    font-weight: bold;
    color: #000;
    padding: 0;
    margin: 0;
}
@media screen and (min-width: 1024px) {
    .second-section h4 {
        font-size: 2em;
    }
}

.call-to-action {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #dc0024;
    font-size: 1.2em;
}
.call-to-action a {
    width: 100%;
    text-decoration: none;
    color: #fff;
    font-size: 1em;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    font-weight: bold;
    font-style: italic;
}
@media screen and (min-width: 1024px) {
    .call-to-action {
        width: 100%;
        height: auto;
        align-content: center;
    }

        .call-to-action a {
            font-size: 1.4em;
        }
}

.action1 {
    height: 10vh;
    padding: 2vw;
}

.feature-panel {
  text-align: center;
  font-size: 1.2em;
  padding-top: 5vh;
  padding-bottom: 5vh;
}

.feature-panel img {
  width: 30vw;
  height: auto;
  margin: 5px;
  margin-bottom: 5vh;
}

.feature-panel h4 {
  font-size: 1.4em;
  padding-bottom: 2vh;
}

.contact {
    background-color: #fff;
    background-image: url('../images/contact-form-back.jpg');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    padding: 20px;
}
@media screen and (min-width: 1024px) {
    .contact {
        background-size: contain;
        background-position: left bottom;
        background-repeat: no-repeat;
        padding: 20px;
    }
}

    .contact-call {
        padding: 0;
        margin: 0;
        color: #444;
        text-align: right;
    }

.contact-call p {
    font-size: 1.5em;
    padding: 0;
    margin: 0;
    padding-bottom: 3vh;
    padding-top: 3vh;
    text-align: left;
}
@media screen and (min-width: 1024px) {
    .contact p {
        font-size: 2em;
        padding-bottom: 5vh;
        padding-top: 5vh;
    }
}

        .contact-call img {
            width: 100%;
            height: auto;
        }

    .contact-form {
        padding: 20px;
        padding-right:40px;
        margin: 0;
        color: #000;
    }
    @media screen and (min-width: 1024px) {
        .contact-form {
            padding: 20px;
            padding-right: 150px;
        }
    }

        .contact-form p {
            font-size: 1.2em;
            padding-bottom: 1vh;
            padding-top: 2vh;
        }

        .contact-form input {
            margin: 7px;
            padding: 5px;
            border: solid 1px #707070;
            border-radius: 0;
            /*width: 90%;*/
        }

        .contact-form textarea {
            margin: 7px;
            padding: 5px;
            border: solid 1px #707070;
            border-radius: 3px;
            height: 100px;
        }

        .contact-form .checkbox {
            width: 50px;
        }

    /* formatting classes */
    .gray-area {
        background-color: #f7f7f7;
        color: #707070;
    }

    .dark-gray-area {
        background-color: #f7f7f7;
        color: #707070;
    }

    .red-area {
        color: #dc0024;
    }

    /* Distak effect button */
    /* thanks https://codepen.io/lauraalpinto/pen/jddXMZ?__cf_chl_jschl_tk__=2622c93a8548ed6e387bb2231968b7bb0bd06679-1589693229-0-ARhw9h4wUH4b7MEvW5BDj0NTomxzkEJLei03hQM5wzbazUQKIe2MkLMznaEBjfROGDGHwyW70TFOCH_9qr_4QSjEGvTbhrHFLP2-29UHgKkUKmA1ROxMLyr4xXa7_DQjj7f5VRj5ZrPNL7G9fbodycUvhjKLc3MaQPiCYBJtdbzWpgIqlc6ZzRFr-CAi-7VFfJX0MfcDMgGkf9R5gI_9er8XAauBxtiWcDIG_QNLCusZYmE0w0sKOhE303-Jo40dW_rIYy9lX1H7NYt_r86Gc9Kv0Uncy6ED6gd2LJVxD09LU37aB6Ad_pXTYbOCsSZGURdSLFYQaHasPCe0AeSMuHT4vGMMGI3YTWTSoIrs_6-n */
    .button {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        color: #fff;
        cursor: pointer;
    }

        .button svg {
            height: 55px;
            width: 300px;
            fill: none;
            stroke-width: 5;
        }

            .button svg .o1 {
                stroke: #69c500;
                fill: #69c500;
                -webkit-transition: all 1s ease-in-out;
                transition: all 1s ease-in-out;
            }

            .button svg .o2 {
                stroke: #d3faa6;
                stroke-dasharray: 20 720;
                stroke-dashoffset: 20;
                -webkit-transition: all 1s ease-in-out;
                transition: all 1s ease-in-out;
            }

        .button span {
            position: absolute;
            margin: auto 0;
            text-transform: uppercase;
            letter-spacing: 3px;
        }

        .button:hover .o1 {
            fill: rgba(105, 197, 0, 0.9);
        }

        .button:hover .o2 {
            stroke-dashoffset: -720;
        }

    /* Word caroussel */
    /* thanks to https://codepen.io/EricPorter/pen/JjPmOOb?__cf_chl_jschl_tk__=ed18862fdb3eeb262273db007971f4cee87b969e-1589734764-0-ASR8cRQxiLihaea4saPIrI9uQHdqiMETjLcllo8hvtwP1zS-WbzOQXqYfeI-_ilCNTD9ETdnsruEPFDDwv_GAcs7UirM64bT-mTM_OBQNKFdRnwmXcpAiGmF0EeaA7R_54zPbnm9meWbidUh1uykFq4P5j0T2yRSu7idmr5tzjqxtEDgHOADd_topsImjpT02uc0MaVgebefz8t9sXuL4XwTIbSq1Ay-IXIEpWESONqH0i_UOhZsmtsJCGvM9P8OLUQCTqWaGHuumwt4XhbYUEIRAowanJCUHUFWK-tTuuLiGPodaINBUuVpNszaXfj6-f_ecZVs-1W8kBo8NN_PqdEdTcXWzXuzZrmrhDca2y6Y */
    .wordCarousel {
        font-size: 2em;
        font-weight: bold;
        color: #000;
    }

        .wordCarousel div {
            overflow: hidden;
            position: relative;
            float: right;
            height: 35px;
            padding-top: 10px;
            margin-top: -10px;
        }
        @media screen and (min-width: 1024px) {
            .wordCarousel div {
                height: 60px;
            }
        }

            .wordCarousel div li {
                color: #69c500;
                padding: 0px;
                height: 45px;
                margin-bottom: 45px;
                padding-left: -50px;
                display: block;
            }

    .flip2 {
        -webkit-animation: flip2 6s cubic-bezier(0.23, 1, 0.32, 1.2) infinite;
        animation: flip2 6s cubic-bezier(0.23, 1, 0.32, 1.2) infinite;
    }

    .flip3 {
        -webkit-animation: flip3 8s cubic-bezier(0.23, 1, 0.32, 1.2) infinite;
        animation: flip3 8s cubic-bezier(0.23, 1, 0.32, 1.2) infinite;
    }

    .flip4 {
        -webkit-animation: flip4 10s cubic-bezier(0.23, 1, 0.32, 1.2) infinite;
        animation: flip4 10s cubic-bezier(0.23, 1, 0.32, 1.2) infinite;
    }

    @-webkit-keyframes flip2 {
        0% {
            margin-top: -180px;
        }

        5% {
            margin-top: -90px;
        }

        50% {
            margin-top: -90px;
        }

        55% {
            margin-top: 0px;
        }

        99.99% {
            margin-top: 0px;
        }

        100% {
            margin-top: -270px;
        }
    }

    @keyframes flip2 {
        0% {
            margin-top: -180px;
        }

        5% {
            margin-top: -90px;
        }

        50% {
            margin-top: -90px;
        }

        55% {
            margin-top: 0px;
        }

        99.99% {
            margin-top: 0px;
        }

        100% {
            margin-top: -270px;
        }
    }

    @-webkit-keyframes flip3 {
        0% {
            margin-top: -270px;
        }

        5% {
            margin-top: -180px;
        }

        33% {
            margin-top: -180px;
        }

        38% {
            margin-top: -90px;
        }

        66% {
            margin-top: -90px;
        }

        71% {
            margin-top: 0px;
        }

        99.99% {
            margin-top: 0px;
        }

        100% {
            margin-top: -270px;
        }
    }

    @keyframes flip3 {
        0% {
            margin-top: -270px;
        }

        5% {
            margin-top: -180px;
        }

        33% {
            margin-top: -180px;
        }

        38% {
            margin-top: -90px;
        }

        66% {
            margin-top: -90px;
        }

        71% {
            margin-top: 0px;
        }

        99.99% {
            margin-top: 0px;
        }

        100% {
            margin-top: -270px;
        }
    }

    @-webkit-keyframes flip4 {
        0% {
            margin-top: -360px;
        }

        5% {
            margin-top: -270px;
        }

        25% {
            margin-top: -270px;
        }

        30% {
            margin-top: -180px;
        }

        50% {
            margin-top: -180px;
        }

        55% {
            margin-top: -90px;
        }

        75% {
            margin-top: -90px;
        }

        80% {
            margin-top: 0px;
        }

        99.99% {
            margin-top: 0px;
        }

        100% {
            margin-top: -270px;
        }
    }

    @keyframes flip4 {
        0% {
            margin-top: -360px;
        }

        5% {
            margin-top: -270px;
        }

        25% {
            margin-top: -270px;
        }

        30% {
            margin-top: -180px;
        }

        50% {
            margin-top: -180px;
        }

        55% {
            margin-top: -90px;
        }

        75% {
            margin-top: -90px;
        }

        80% {
            margin-top: 0px;
        }

        99.99% {
            margin-top: 0px;
        }

        100% {
            margin-top: -270px;
        }
    }

    .fade-in-basic {
        -webkit-animation: start-fade-in 2s cubic-bezier(0.23, 1, 0.32, 1.2);
        animation: start-fade-in 2s cubic-bezier(0.23, 1, 0.32, 1.2);
    }

    @-webkit-keyframes start-fade-in {
        0% {
            opacity: 0;
            margin-top: -180px;
        }

        100% {
            opacity: 1;
            margin-top: 0;
        }
    }

    @keyframes start-fade-in {
        0% {
            opacity: 0;
            margin-top: -180px;
        }

        100% {
            opacity: 1;
            margin-top: 0;
        }
    }

    .fade-in-basic2 {
        -webkit-animation: start-fade-in2 3s;
        animation: start-fade-in2 3s;
    }

    @-webkit-keyframes start-fade-in2 {
        0% {
            opacity: 0;
            margin-top: -1000px;
        }

        100% {
            opacity: 1;
            margin-top: 0;
        }
    }

    @keyframes start-fade-in2 {
        0% {
            opacity: 0;
            margin-top: -1000px;
        }

        100% {
            opacity: 1;
            margin-top: 0;
        }
    }

    /*# sourceMappingURL=landing.css.map */

    /* Tabs */
    /*
.nav-tabs {
    border-bottom: 1px solid #dddddd;
}

.nav-tabs > li {
    float: left;
    margin-bottom: -1px;
}

.nav-tabs > li > a {
    margin-right: 2px;
    line-height: 1.428571429;
    border: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
    padding: 4px;
}

.nav-tabs > li > a:hover {
    border-color: #eeeeee #eeeeee #dddddd;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
    color: #555555;
    cursor: default;
    background-color: #ffffff;
    border: 1px solid #dddddd;
    border-bottom-color: transparent;
    padding: 4px;
}

.nav-tabs > li > a.active,
.nav-tabs > li > a.active:hover,
.nav-tabs > li > a.active:focus {
    color: #555555;
    cursor: default;
    background-color: #ffffff;
    border: 1px solid #dddddd;
    border-bottom-color: transparent;
    padding: 4px;
    text-decoration: none;
}

.nav-tabs.nav-justified {
    width: 100%;
    border-bottom: 0;
}

.nav-tabs.nav-justified > li {
    float: none;
}

.nav-tabs.nav-justified > li > a {
    text-align: center;
}

@media (min-width: 768px) {
    .nav-tabs.nav-justified > li {
        display: table-cell;
        width: 1%;
    }
}

.nav-tabs.nav-justified > li > a {
    margin-right: 0;
    border-bottom: 1px solid #dddddd;
}

.nav-tabs.nav-justified > .active > a {
    border-bottom-color: #ffffff;
}

.nav-pills > li {
    float: left;
}

    .nav-pills > li > a {
        border-radius: 5px;
    }

    .nav-pills > li + li {
        margin-left: 2px;
    }

    .nav-pills > li.active > a,
    .nav-pills > li.active > a:hover,
    .nav-pills > li.active > a:focus {
        color: #ffffff;
        background-color: #428bca;
    }

.nav-stacked > li {
    float: none;
}

    .nav-stacked > li + li {
        margin-top: 2px;
        margin-left: 0;
    }

.nav-justified {
    width: 100%;
}

    .nav-justified > li {
        float: none;
    }

        .nav-justified > li > a {
            text-align: center;
        }

@media (min-width: 768px) {
    .nav-justified > li {
        display: table-cell;
        width: 1%;
    }
}

.nav-tabs-justified {
    border-bottom: 0;
}

    .nav-tabs-justified > li > a {
        margin-right: 0;
        border-bottom: 1px solid #dddddd;
    }

    .nav-tabs-justified > .active > a {
        border-bottom-color: #ffffff;
    }
/* */