@import url('normalize.css');
/*
----------------------------------

        Name: style.css
        Version: 1.2

----------------------------------

        Table of Contents
        
        #Reset
        #Typography
        #Base Grid
        #Left Side 
        #Content Area 
        #Introduction Screen
        #Rules Screen
        #Offer Screen
        #Account Screen
        #Contact Screen
        #Last Screen
        #Media Ipad
        #Table

*/

/* ==========================================================================
   #Reset
   ========================================================================== */
body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #706f6f;
    line-height: 22px;
    overflow-y: hidden;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    background-color: #fff;
}
.green {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: #96c11f;
    line-height: 22px;
    overflow-y: hidden;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
body.blog {
    overflow-y: scroll;
    overflow-x: auto;   
}
a {
    color: #706f6f;
    text-decoration: none;
    transition-duration: .2s;
    -moz-transition-duration: .2s;
    -webkit-transition-duration: .2s;
    -o-transition-duration: .2s;
}
a:hover {
    color: #96c11f;
}
::selection {
    color: #000;
    background: none repeat scroll 0 0 #96c11f;
}
::-moz-selection {
    color:#000;
    background: none repeat scroll 0 0 #96c11f;
}
* {
    outline: 0!important;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition-timing-function: ease-out;
    -moz-transition-timing-function: ease-out;
    -webkit-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
}
figure, .slideshow li, .grid-gallery {
    outline: 0!important;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition-timing-function: none;
    -moz-transition-timing-function: none;
    -webkit-transition-timing-function: none;
    -o-transition-timing-function: none;
    transition-duration: 0s;
    -moz-transition-duration: 0s;
    -webkit-transition-duration: 0s;
    -o-transition-duration: 0s;
}
img {
    -webkit-backface-visibility: hidden;
    max-width: 100%;
    height: auto;
}
.flot-left {
    float: left;
}
.flot-right {
    float: right;
}
video {
    position: absolute;
    object-fit: cover;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: 0;
    -ms-transform: translateX(-0%) translateY(-0%);
    -moz-transform: translateX(-0%) translateY(-0%);
    -webkit-transform: translateX(-0%) translateY(-0%);
    transform: translateX(-0%) translateY(-0%);
}
.video-wrapper {
    position: absolute;
    border: 0px;
    width: 1253px;
    height: 798px;
    overflow: hidden;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
/* ==========================================================================
   #Typography
   ========================================================================== */
h1, h2, h3, h4, h5 {
    font-weight: 400;
    font-family: 'Oswald', sans-serif;
    color: #706f6f;
    text-transform: uppercase;
}
.blog h1, .blog h2, .blog h3, .blog h4, .blog h5{
    color: #fafafa;
}
h1 {
    font-style: italic;
    border-bottom: 1px solid rgba(126, 126, 126, 0.3);
    padding: 35px 15px 15px 15px;
    margin: 0px 20px 20px 20px;
    position: relative;
    font-size: 38px;
}
h2 {
    font-size: 45px;
    margin: 0;
    line-height: 45px;
}
h3 {
    font-size: 16px;
    margin: 50px 0 10px;
}
h4 {
    font-size: 25px;
    font-weight: 100;
    line-height: 30px;
    margin: 0;
}
h5 {
    font-family: sans-serif;
    padding: 15px 15px 15px 15px;
    margin: 0px 20px 20px 20px;
    position: relative;
    font-size: 18px;
    color: #96c11f;
    line-height: 18px;
    overflow-y: hidden;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
.title-divider {
    width: 70px;
    height: 5px;
    background-color: #96c11f;
    margin: 30px 0 50px 0;
}
.full-divider {
    width: 100%;
    height: 1px;
    background-color: #706f6f;
    margin: 50px 0 0 0;
    clear: both;
}
.grey-bg {
    background-color: #fafafa;
}
.white-bg {
    background-color: #ffffff;
}
.button {
    border: 2px solid #fafafa;
    background-color: #96c11f;
    color: #fafafa;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
    margin: 20px 0;
    padding: 10px 15px;
    display: inline-block;
    letter-spacing: 1px;
    transition-duration: .2s;
    -moz-transition-duration: .2s;
    -webkit-transition-duration: .2s;
    -o-transition-duration: .2s;
}
.button:hover {
    border: 2px solid #96c11f;
    background-color: #fafafa;
    color: #96c11f;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
    margin: 20px 0;
    padding: 10px 15px;
    display: inline-block;
    letter-spacing: 1px;
    transition-duration: .2s;
    -moz-transition-duration: .2s;
    -webkit-transition-duration: .2s;
    -o-transition-duration: .2s;
}

/* ==========================================================================
   #Base Grid
   ========================================================================== */
.container-sub {
    width: 100%;
    position: relative;
    margin: 0 auto;
}
.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
    float: left;
    position: relative;
}
.col-12 {
    width: 100%;
}
.col-11 {
    width: 91.66666667%;
}
.col-10 {
    width: 83.33333333%;
}
.col-9 {
    width: 75%;
}
.col-8 {
    width: 66.66666667%;
}
.col-7 {
    width: 58.33333333%;
}
.col-6 {
    width: 50%;
}
.col-5 {
    width: 41.66666667%;
}
.col-4 {
    width: 33.33333333%;
}
.col-3 {
    width: 25%;
}
.col-2 {
    width: 16.66666667%;
}
.col-1 {
    width: 8.33333333%;
}
/* #Clearing */

/* Self Clearing Goodness */
.container-sub:after {
    content: "\0020";
    display: table;
    height: 0;
    clear: both;
    visibility: hidden;
}
/* Use clearfix class on parent to clear nested columns,
    or wrap each row of columns in a <div class="row"> */
.clearfix:before, .clearfix:after, .row:before, .row:after {
    content: '\0020';
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0;
}
.row:after, .clearfix:after {
    clear: both;
}
.row, .clearfix {
    zoom: 1;
}
/* You can also use a <br class="clear" /> to clear columns */
.clear {
    clear: both;
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0;
}
.margin-bottom50 {
    margin-bottom: 50px;
}
.margin-bottom40 {
    margin-bottom: 40px;
}
.margin-bottom30 {
    margin-bottom: 30px;
}
.margin-bottom20 {
    margin-bottom: 20px;
}
.margin-bottom10 {
    margin-bottom: 10px;
}
.margin-top50 {
    margin-top: 50px;
}
.margin-top40 {
    margin-top: 40px;
}
.margin-top30 {
    margin-top: 30px;
}
.margin-top20 {
    margin-top: 20px;
}
.margin-top10 {
    margin-top: 10px;
}
.no-border-bottom{
    border-bottom: none !important;
}
.margin-right30 {
    margin-right: 30px;
}
/* ==========================================================================
   #Left Side 
   ========================================================================== */
.logo {
    text-align: center;
    margin: 0 0 0;
}
.logo span {
    display: none;
    color: #706f6f;
}
.logo img {
    width: auto;
    height: auto;
}
.menu {
    position: fixed;
    z-index: 100;
    color: #706f6f;
    background: #fff;
    width: 200px;
    left: 0px;
    top: 0px;
    height: 100%;
}
.menu nav {
    position: absolute;
    top: 220px;
    left: 0px;
    right: 0px;
    bottom: 50px;
    width: 200px !important;
}
.menu nav a {
    display: block;
    padding: 13px 0;
    text-align: left;
    outline: none;
    margin: 0 30px;
    border-bottom: 1px solid rgba(125,186,92,0.5);
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #706f6f;
    text-transform: uppercase;
    transition-duration: .2s;
    -moz-transition-duration: .2s;
    -webkit-transition-duration: .2s;
    -o-transition-duration: .2s;
}
.menu nav a span.active {
    color: #706f6f;
    font-weight: 400;
}
.menu nav a:hover {
    color: #706f6f;
    text-decoration: none;
}
.menu nav a span:nth-child(2) {
    display: block;
    color: #706f6f;
    font-style: italic;
    font-weight: 400;
    text-transform: none;
    padding-top: 3px;
}
.menu-link {
    display: none;
}
.social {
    padding: 30px;
    position: absolute;
    top: 619px;
}
.social a {
    font-size: 20px;
    transition-duration: .2s;
    -moz-transition-duration: .2s;
    -webkit-transition-duration: .2s;
    -o-transition-duration: .2s;
}
.social a:hover {
    color: #fff;
}
.copyright {
    position: absolute;
    bottom: 5px;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    padding: 30px;
    color: #706f6f;
    line-height: 18px;
    letter-spacing: 1px;
}
/* ==========================================================================
   #Content Area 
   ========================================================================== */
.content-scroller {
    position: absolute;
    left: 200px;
    right: 0px;
    overflow: hidden;
    height: 100%;
}
.content-wrapper {
    width: 5473px;
    position: absolute;
    height: 100%;
    overflow: hidden;
}
.content:last-child {
    width: 1253px;
}
.content {
    width: 804px;
    overflow-y: scroll;
    height: 100%;
    float: left;
    -webkit-transition: background 0.3s linear;
    -moz-transition: background 0.3s linear;
    -o-transition: background 0.3s linear;
    -ms-transition: background 0.3s linear;
    transition: background 0.3s linear;
}
.content-active {
}
.content:hover .jspVerticalBar, .menu nav:hover .jspVerticalBar {
    opacity: 1;
}
.inner {
    padding: 70px;
}
.inner p {
    position: relative;
    padding: 0;
}
#introduction .inner p:first-of-type {
    font-size: 24px;
    text-align: left;
    line-height: 36px;
    font-style: italic;
    color: #706f6f;
    letter-spacing: 0px;
}
a.totop-link {
    bottom:5px;
    background:url(../imggo-to-top-arrow.jpg) left top no-repeat;
    cursor: pointer;
    display: none;
    width:34px;
    height:34px;
    position: fixed;
    z-index: 5;
    right: 5px;
    text-indent:-9999px;
}

/* Codrops Top Bar */
.codrops-top {
    color: #96c11f;
    font-size: 10px;
    text-transform: uppercase;
}
.codrops-top a {
    position: fixed;
    z-index: 10000;
    padding: 4px 7px;
    letter-spacing: 1px;
    color: #aaa;
    text-shadow: 0px 1px 1px #fff;
    background: rgba(255, 255, 255, 1);
    border-radius: 0px 0px 3px 3px;
}
.codrops-top a:nth-child(1) {
    right: auto;
    left: 210px;
}
.codrops-top a:nth-child(2) {
    right: 10px;
}
.accordion > .card {
    overflow: hidden;
    background-color: #eee;
}
.accordion > .card:not(:last-of-type) {
    border-bottom: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
.accordion > .card:not(:first-of-type) {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.accordion > .card > .card-header {
    border-radius: 0;
    margin-bottom: 0;
}
/* ==========================================================================
   #Introduction Screen
   ========================================================================== */
.introduction {
    background: url(../img/top_804-1.png) no-repeat 100% 0 scroll;
    position:relative;
    background-size: contain;
}
.introduction img {
    z-index: -1;
    margin: 0 0 0;
    height: auto;
    width: auto;
    float: none;
}
.introduction .owl-carousel {
    height: 100%;
}
.introduction .owl-carousel .owl-wrapper-outer {
    height: 100%;
}
.introduction .owl-carousel .owl-wrapper, .introduction .owl-carousel .owl-item {
    height: 100%;
}
.introduction .item {
    height: 100%;
}
.introduction h2 {
    border: none;
    color: #96c11f;
    text-transform: uppercase;
    line-height: 75px;
    padding-bottom: 0;
    font-size: 45px;
    margin-bottom: 50px
}
.introduction .inner {
    margin: 47% 0 0 0;
    position:absolute;
    z-index:2;
}
.introduction span.title {
    border-bottom: 1px solid #96c11f;
    border-top: 1px solid #96c11f;
    color: #96c11f;
    padding: 15px 0;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-size: 13px;
}
/* ==========================================================================
   #Rules Screen
   ========================================================================== */
.rules {
    background: url(../img/top_804-2.png) no-repeat 100% 0 scroll;
    background-size: contain;
}
.rules-con .icon-block i {
    font-size: 60px;
    color: #96c11f;
    margin: 8px 0 0
}
.rules-con h5 {
    margin: 5px 0 7px 0
}
.rules-con span {
    font-size: 16px;
}
.rules-con strong {
    font-weight: 500;
    color: #000;
    text-transform: uppercase;
    display: inline-block;
    margin: 0 0 5px 0
}
.rules-details {
    float: left;
}
.rules-details i {
    transition-duration: .2s;
    -moz-transition-duration: .2s;
    -webkit-transition-duration: .2s;
    -o-transition-duration: .2s;
}
.rules-details:hover i {
    font-size: 73px;
    color: #818181;
}
.rules-details:hover .col-3 {
    width: 29%;
    transition-duration: .2s;
    -moz-transition-duration: .2s;
    -webkit-transition-duration: .2s;
    -o-transition-duration: .2s;
}
/* ==========================================================================
   #Offer Screen
   ========================================================================== */
.offer {
    background: url(../img/top_804-3.png) no-repeat 100% 0 scroll #fafafa;
    background-size: contain;
}
.offer-list ul {
    margin: 0;
    padding: 0
}
.offer-list ul li {
    padding: 5px 0 0;
    list-style: none
}
.offer-con h4 {
    width: 65%;
}
.offer-list ul li:before {
    content: "\f00c";
    font-family: 'FontAwesome';
    font-size: 15px;
    margin: 0 5px 0 0
}
.offer-con .col-6:hover .chart .percent {
    font-size: 45px;
    color: #818181;
    transition-duration: .1s;
    -moz-transition-duration: .1s;
    -webkit-transition-duration: .1s;
    -o-transition-duration: .1s;
}
.offer img {
    width: auto;
    height: auto;
}
/* ==========================================================================
   #Account Screen
   ========================================================================== */
.account {
    background: url(../img/top_804-4.png) no-repeat 100% 0 scroll;
    background-size: contain;
}
.account .inner {
    width: 50%
}
.account img {
    position: relative;
    z-index: -1;
    left: 0;
    top: 20px
}
.account-con {
    width: 100%
}
.account-con ul {
    margin: 0;
    padding: 0;
    list-style: none
}
.account-con ul li {
    border-bottom: 1px solid rgba(125,186,92,0.5);
    padding: 12px 0;
}
.account-con ul li:first-child {
    padding: 0 0 12px 0
}
.account img.signature {
    position: inherit;
    top: auto;
    margin: 20px 0 0 0;
}
/* ==========================================================================
   #Contact Screen
   ========================================================================== */
.contact {
    background: url(../img/top_804-5.png) no-repeat 100% 0 scroll #fafafa;
    background-size: contain;
}
.contact-details i {
    font-size: 45px;
    color: #96c11f;
}
.contact-details strong {
    display: inline-block;
    font-weight: 500;
    text-transform: uppercase;
}
.contact-text {
    display: block;
    float: left;
    margin: 18px 0 0;
    width: 100%;
}
.contact-details h3 {
    margin-top: 0
}
.contact-text:first-child {
    margin: 0
}
.contact-details .phone i {
    font-size: 40px
}
.contact-details .email i {
    font-size: 35px
}
.contact-text i {
    transition-duration: .2s;
    -moz-transition-duration: .2s;
    -webkit-transition-duration: .2s;
    -o-transition-duration: .2s;
}
.contact-text:hover i {
    color: #706f6f;
}
.contact-social i {
    color: #706f6f;
}
.contact-social a i {
    font-size: 25px;
    margin: 0 14px
}
.contact-social a:first-child i {
    margin: 0 15px 0 0
}
.contact-social i {
    transition-duration: .2s;
    -moz-transition-duration: .2s;
    -webkit-transition-duration: .2s;
    -o-transition-duration: .2s;
}
.contact-social i:hover {
    color: #706f6f;
}

/* ==========================================================================
   #Last Screen
   ========================================================================== */
.introduction-end {
    cursor: pointer;
}
.introduction-end-con {
    position: absolute;
    float: left;
    margin: 0 0 0;
    color: #96c11f;
    font-weight: 700;
}
.introduction-end-con .h2-shadowed {
    text-shadow: 1px 1px 1px rgba(255, 255, 255, 0);
    color: #96c11f;
    font-weight: 500;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
}

/* ==========================================================================
   #Table
   ========================================================================== */
.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #706f6f;
  border-bottom: 2px solid #96c11f;
  border-top: 2px solid #96c11f;
}
.table th,
.table td {
  padding: 0.75rem;
  vertical-align: middle;
  border-top: 1px solid #96c11f;
}
.table thead th {
  vertical-align: middle;
  border-bottom: 1px solid #96c11f;
}
.table tbody + tbody {
  border-top: 1px solid #96c11f;
}
.table-hover tbody tr:hover {
    color: rgba(150, 193, 31, 1);
    background-color: rgba(255, 255, 255, 1);
    border-bottom: 2px solid #96c11f;
    border-top: 2px solid #96c11f;
}
.table .thead-light th {
    color: #96c11f;
    text-align: center;
    background-color: rgba(255, 255, 255, 1);
    border-color: #96c11f;
}
.table-light,
.table-light > th,
.table-light > td {
    text-align: center;
    background-color: transparent;
}
.table-light th,
.table-light td,
.table-light thead th,
.table-light tbody + tbody {
  border-color: #96c11f;
}
.tr-colored {
    color: rgba(150, 193, 31, 1);
    background-color: rgba(255, 255, 255, 1);
}
.td-colored {
    width: 10%;
    color: rgba(150, 193, 31, 1);
    background-color: rgba(125, 125, 125, 0.1); 
}
@media (max-width: 575.98px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-sm > .table-bordered {
    border: 0;
  }
}
@media (max-width: 767.98px) {
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-md > .table-bordered {
    border: 0;
  }
}
@media (max-width: 991.98px) {
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-lg > .table-bordered {
    border: 0;
  }
}
@media (max-width: 1199.98px) {
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-xl > .table-bordered {
    border: 0;
  }
}
.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table-responsive > .table-bordered {
  border: 0;
}
/* ==========================================================================
   #Media Ipad
   ========================================================================== */
@media only screen and (max-device-width:768px)   {
    .introduction img {
        height:auto;
        width:auto;
    }
}