html { /**/
    height: 100%;
    box-sizing: border-box;
}

a:focus {
    outline: none;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body { /*default font type and page content*/
    /*padding-bottom: 6rem;*/
    position: relative;
    margin: 0;
    min-height: 100%;
    padding-bottom: 12rem;
    font-family: 'News Cycle', sans-serif;
    transition: background-color .5s;
}

.page_header { /*div width set to 100%*/
    font-family: 'Raleway', sans-serif;
    width: 100%;
}

.page_footer {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding-top:5px;
    padding-left:5px;
    padding-right:5px;
    padding-bottom:5px;
    width: 100%;
    background-color: #9b9898;
}

.format-font-size { /*default font size (change on different screen size)*/
    font-size: 14px;
}

.format-header-font-size {
    font-size: 14px;
}

.format-table-width { /*default table width*/
    width: 100%;
}

.format-main-logo-size { /*change width and height of logo on screen size change*/
    width: 210px;
    height: 162px;
    transition: 0.5s;
}

.format-main-logo-size:hover { /*on hover logo change opacity*/
    opacity: 0.6;
}

.format-icon-size { /*default behavior(size and color) of icon*/
    font-size: 30px;
    color: rgb(57, 52, 52);
    transition: 0.5s;
}

.format-icon-size-menu-bar { /*default behavior(size and color) of icon*/
    font-size: 22px;
    color: rgb(255, 255, 255);
    transition: 0.5s;
}

.format-icon-size:hover, .format-icon-size-menu-bar:hover { /*on hover icon change color*/
    color: rgb(107, 204, 66);
}

.hide-additional-text { /*show or hide content(text/image/etc) on screen size change*/
    display: block;
}

.format-column-width-header { /*header logo column width and padding length*/
    width:70%;
    padding-left:35px;
}

.format-size-go-top-icon {
    font-size: 40px;
}

#button-go-top {
    width: 60px;
    height: 60px;
}

#button-go-top:hover {
    opacity: 0.6;
}

.tooltip-go-top { /* tooltip popup property default behavior */
    position: fixed;
    bottom: 140px;
    right: 110px;
    display: inline-block;
    border-bottom: 1px dotted black;
    border: 0;
}

.tooltip-go-top .tooltip-text-go-top { /* tooltip popup text property default behavior*/
    width:130px;
    visibility: hidden;
    background-color: #5d5a5a;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    /* Position the tooltip */
    position: absolute;
    top:65px;
    right:-35px;
    z-index: 1;
    opacity: 0;
    transition: opacity 1s;
}

.tooltip-go-top:hover .tooltip-text-go-top { /**/
    visibility: visible;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    opacity: 1;
}

.tooltip-go-top .tooltip-text-go-top::after {
    content: " ";
    position: absolute;
    bottom: 100%;  /* At the top of the tooltip */
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #5d5a5a transparent;
}

.link-transition-hover { /* default behaviour*/
    color: black;
    transition: 0.5s;
}

.link-transition-hover:hover { /* when hover on text/image/link */
    color: rgb(107, 204, 66);
}

.text-href-transition-hover { /* default behaviour*/
    color: white;
    transition: 0.5s;
}

.text-href-transition-hover:hover { /* when hover on text/image/link */
    color: rgb(107, 204, 66);
}

.format-table-header-property {
    background-color: #9b9898;
}

.format-table-footer-property {
    color: #ffffff;
    font-size:14px;
    font-weight:bold;
}

.format-table-td-width {
    width:65%;
}

.header-text-button {
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    cursor: pointer;
    transition: 0.5s;
    text-decoration: none;
}

.header-text-button:hover {
    color: rgb(107, 204, 66);
}

.menu-bar-icons-minimized {
    display: none;
}

.menu-bar-icons-maximized {
    display: block;
}

.dropdown {
    position: relative;
    display: inline-block;
    /*border-radius: 10px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);*/
}

.dropdown span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

.dropbtn {
    background-color: #9b9898;
    color: #ffffff;
    font-size: 20px;
    border: 0px;
    /*border: solid 1px;
    border-color: #fff;
    box-shadow: 0 0 1px white transparent;*/
    cursor: pointer;
    transition: all 0.5s;
    /*border-radius: 10px;
    -webkit-text-stroke-width: 0.5px;
    -webkit-text-stroke-color: white;
    -webkit-text-stroke-width: 0.5px;*/
}

.dropbtn span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -15px;
    transition: 0.5s;
}

.dropbtn:hover span {
  padding-right: 12px;
}

.dropbtn:hover {
    color: rgb(107, 204, 66);
    -webkit-text-stroke-color: rgb(90, 172, 55);
}

.dropbtn:hover span:after {
    opacity: 1;
    right: 0;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #9b9898;
    /*background-image: linear-gradient(to bottom, #FFDF00, white);*/
    border-radius: 0px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-menu-position {
    /*left:-10px;*/
    top:25px;
}

.dropdown-icon-position {
    left:-55px;
    top:25px;
    min-width: 170px;
}

.dropdown-content a {
    color: #ffffff;
    padding: 8px 8px;
    text-decoration: none;
    display: block;
    transition: 0.5s;
    font-size: 16px;
}

.dropdown-content a:hover {background-color: #000000; color: rgb(107, 204, 66); }
.dropdown-content a:hover .format-icon-size-menu-bar { color: rgb(107, 204, 66); }

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    color: rgb(136, 255, 85);
    -webkit-text-stroke-color: rgb(90, 172, 55);
}

.main_content {
    margin:0 auto;
    width:1100px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 30px;
}

.card-4-column {
    border-collapse: separate;
    border-spacing: 20px 0;
    font-family: 'Raleway', sans-serif;
}

.card-4-column td {
    width: 25%;
}

.card-table td {
    padding: 20px 5px 20px 10px;
}

.card-column-green {
    background-color: #6bcc42;
}

.card-column-gray {
    background-color: #9b9898;
}

.card-column-products {
    color: #ffffff;
}

.product-1 {
    display: block;
    position: relative;
}

.product-2 {
    display: block;
    position: relative;
}

.product-3 {
    display: block;
    position: relative;
}

.product-4 {
    display: block;
    position: relative;
}

.product-1::after {
    content: "";
    background-image: url("../images/content/product1.jpg");
    opacity: 0.6;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -1;
}

.product-2::after {
    content: "";
    background-image: url('../images/content/product2.jpg');
    opacity: 0.6;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -1;
}

.product-3::after {
    content: "";
    background-image: url('../images/content/product3.jpg');
    opacity: 0.6;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -1;
}

.product-4::after {
    content: "";
    background-image: url('../images/content/product4.jpg');
    opacity: 0.6;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -1;
}

.card-content-title-white {
    color: #ffffff;
    font-size: 65px;
    font-weight:bold;
    transition: color 0.5s;
    -webkit-transition: color 0.5s;
    -ms-transition: color 0.5s;
}

.card-content-title-black {
    color: #000000;
    font-size: 65px;
    font-weight:bold;
    transition: color 0.5s;
    -webkit-transition: color 0.5s;
    -ms-transition: color 0.5s;
}

.card-content-desc-black {
    color: #000000;
    font-size: 16px;
    -webkit-text-stroke-width: 0.5px;
    -webkit-text-stroke-color: #000000;
    transition: color 0.5s;
    -webkit-transition: color 0.5s;
    -ms-transition: color 0.5s;
}

.card-content-desc-white {
    color: #ffffff;
    font-size: 16px;
    -webkit-text-stroke-width: 0.5px;
    -webkit-text-stroke-color: #ffffff;
    transition: color 0.5s;
    -webkit-transition: color 0.5s;
    -ms-transition: color 0.5s;
}

.card-column-green:hover {
    background-color: #ffffff;
    -webkit-transition: background-color 0.5s linear;
    -ms-transition: background-color 0.5s linear;
    transition: background-color 0.5s linear;
}

.card-column-green:hover .card-content-title-white {
    color: #6bcc42;
}

.card-column-green:hover .card-content-desc-black {
    color: #6bcc42;
}

.card-column-gray:hover {
    background-color: #ffffff;
    -webkit-transition: background-color 0.5s linear;
    -ms-transition: background-color 0.5s linear;
    transition: background-color 0.5s linear;
}

.card-column-gray:hover .card-content-title-black {
    color: #9b9898;
}

.card-column-gray:hover .card-content-desc-white {
    color: #9b9898;
    -webkit-text-stroke-color: #9b9898;
}

.card-column-products:hover .card-content-icon-white {
    color: #6bcc42;
}

.card-column-products:hover .card-content-product-white {
    color: #6bcc42;
    -webkit-text-stroke-color: #6bcc42;
}

.product-1:hover {
    opacity: 0.8;
}

.product-2:hover {
    opacity: 0.8;
}

.product-3:hover {
    opacity: 0.8;
}

.product-4:hover {
    opacity: 0.8;
}

.card-content-icon-white {
    color: #ffffff;
    font-size: 40px;
    text-shadow:
    -1px -1px 0 #000,  
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000;
    transition: color 0.5s;
    -webkit-transition: color 0.5s;
    -ms-transition: color 0.5s;
}

.card-content-product-white {
    color: #ffffff;
    font-weight: bold;
    font-size: 16px;
    text-shadow:
    -1px -1px 0 #000,  
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000;
    transition: color 0.5s;
    -webkit-transition: color 0.5s;
    -ms-transition: color 0.5s;
}

.main-content-title-sub {
    font-family: 'Raleway', sans-serif;
    text-align: center;
    font-size: 40px;
    color: #9b9898;
    font-weight: bold;
}

.main-content-title {
    font-family: 'Raleway', sans-serif;
    text-align: center;
    font-size: 50px;
}

.main-content-desc {
    font-size:16px;
    text-align: justify;
}

.ul-bullet-red {
    list-style: none;
    text-align: justify;
    font-size:16px;
}
  
.ul-bullet-red li::before {
    content: "\2022";
    color: red;
    font-weight: bold;
    display: inline-block; 
    width: 1em;
    margin-left: -1em;
}

.nav-products-bar {
    border-collapse: separate;
    border-spacing: 30px 0;
}

.nav-products-bar-default {
    padding-bottom: 5px;
    border-bottom: solid 2px;
    border-color: #dad6d6;
}

.nav-products-bar-link {
    font-size: 25px;
    color: #9b9898;
    text-decoration: none;
    transition: color 0.5s;
    -webkit-transition: color 0.5s;
    -ms-transition: color 0.5s;
}

.nav-products-bar td:hover, .nav-products-bar-active {
    border-bottom: solid 5px #6bcc42;
}

.nav-products-bar td:hover .nav-products-bar-link, .nav-products-bar-link-active {
    color: #6bcc42;
    font-weight: bold;
}

/* Remove extra left and right margins, due to padding */
.row-product {
    margin: 0 auto;
}
  
/* Clear floats after the columns */
.row-product:after {
    content: "";
    display: table;
    clear: both;
}

.column-product {
    float: left;
    /*width: 33%; */
    padding: 0 15px;
}
  
/* Style the counter cards */
.card-product {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    padding-top: 15px;
    padding-bottom: 10px;
    padding-left:15px;
    padding-right: 15px;
}

.img-product-size-cap {
    text-align:center;
    width:100%;
}

.img-product {
	max-width:100%;
    max-height:100%;
    opacity: 0.8;
}

.card-product-green {
    background-color: #6bcc42;
    -webkit-transition: background-color 0.5s linear;
    -ms-transition: background-color 0.5s linear;
    transition: background-color 0.5s linear;
}

.card-product-gray {
    background-color: #474545;
    -webkit-transition: background-color 0.5s linear;
    -ms-transition: background-color 0.5s linear;
    transition: background-color 0.5s linear;
}

.card-product:hover {
    box-shadow: -1px 5px 18px 9px rgba(0, 0, 0, 0.2);
}

.card-product-title {
    font-size: 30px;
}

.card-product-sub-title {
    font-size: 25px;
}

.card-product-title-white {
    color: #ffffff;
}

.card-product-title-green {
    color: #6bcc42;
}

.card-product-sub-title-white {
    color: #ffffff;
}

.card-product-sub-title-black {
    color: #000000;
}

.card-product-3 {
    display: block;
}

.card-product-2 {
    display: none;
}

.card-product-1 {
    display: none;
}

.column-product:hover .img-product {
	opacity: 1;
}

.column-product:hover .card-product-gray {
    background-color: #6bcc42;
}

.column-product:hover .card-product-green {
    background-color: #474545;
}

.column-product:hover .card-product-title-white {
    color: #6bcc42;
}

.column-product:hover .card-product-title-green {
    color: #ffffff;
}

.column-product:hover .card-product-sub-title-white {
    color: #000000;
}

.column-product:hover .card-product-sub-title-black {
    color: #ffffff;
}

.slide-show-title-font {
    font-family: 'Raleway', sans-serif; 
}

.slide-show-desc-font {
    font-family: 'News Cycle', sans-serif;
}

.slide-show-green-background {
    background-color: #6bcc42;
    padding-top: 15px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 0px;
}

.slide-show-container {
    width: 100%;
    border: 0px solid;
    /*margin-right:10px;*/
    float: left;
}

.slide-show-trainer-profile {
    float: left;
    width: 350px;
    margin-right: 15px;
}

.slide-show-video {
    padding-top: 30px;
    padding-left: 30px;
    padding-right: 50px;
    padding-bottom: 30px;
    text-align: center;
}

.slide-show-video-size {
    width: 500px;
    height: 300px;
}

.slide-show-trainer-profile-sub-title-gray {
    font-size: 25px;
    color: gray;
}

.slide-show-trainer-profile-title-black {
    font-size: 35px;
    padding-bottom:10px;
}

.slide-show-trainer {
    display: none;
}

.slide-show-img {
    vertical-align: middle;
}

.slide-show-trainer-container { /* Slideshow container */
    max-width: 100%;
    position: relative;
    margin: auto;
}

/* Next & previous buttons */
.slide-show-btn-prev, .slide-show-btn-next {
    cursor: pointer;
    /*top: 50%; */
    width: auto;
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 12px;
    padding-right: 12px;
    /*margin-top: -22px; */
    color: white;
    background-color: #000000;
    font-weight: bold;
    font-size: 28px;
    transition: 0.6s ease;
    border-radius: 3px 3px 3px 3px;
    user-select: none;
}

.slide-show-btn-next {
    border-radius: 3px 3px 3px 3px;
}

.slide-show-btn-prev:hover, .slide-show-btn-next:hover {
    color: rgba(0,0,0,0.8);
    background-color: #ffffff;
}

/* Caption text */
.slide-show-text {
    font-size: 14px;
    text-align: center;
}

.slide-show-trainer-name {
    font-size: 18px;
}

.slide-show-image-fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}
  
@keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}

.menu-bar-icon-padding {
    padding-right:20px;
}

.tbl-standard {
    font-family: 'News Cycle', sans-serif;
}

.tbl-standard-full-width {
    width: 100%;
    display: inline-table;
}

.tbl-standard td, .tbl-standard th {
    border: 1px solid #ddd;
    padding: 8px;
}

.tbl-standards tr:nth-child(even){background-color: #f2f2f2;}

.tbl-standard tr:hover {background-color: #ddd; transition: all 0.5s;}

.tbl-standard th {
  text-align: center;
  background-color: #6bcc42;
  color: white;
}

.active-table-row {
    background-color: #d3f7c5;
}

.td-text-align-center {
    text-align: center;
}

.td-text-align-left {
    text-align: left;
}

.tbl-icon2 {
    font-size: 18px;
    color: #002aff;
    transition: all 0.5s;
}

.tbl-icon2:hover {
    color: #37ff00;
}

.tbl-icon {
    font-size: 18px;
    color: #ff0000;
    transition: all 0.5s;
}

.tbl-icon:hover {
    color: #ffffff;
}

.document-icon {
    font-size: 18px;
    color: #ff0000;
    transition: all 0.5s;
}

.document-icon:hover {
    color: #0dff00;
}

.tooltip-tbl-icon {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
    border: 0;
}

.tooltip-tbl-icon .tooltip-text-tbl-icon {
    visibility: hidden;
    background-color: #5d5a5a;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 100;
    padding-left:10px;
    padding-right:10px;
    opacity: 0;
    transition: opacity 1s;
}

.tooltip-tbl-icon:hover .tooltip-text-tbl-icon {
    visibility: visible;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    opacity: 1;
}

.tooltip-tbl-icon .tooltip-text-tbl-icon::after {
    content: " ";
    position: absolute;
    bottom: 100%;  /* At the top of the tooltip */
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #5d5a5a transparent;
}

.tbl-2-side {
    width: 100%;
    font-family: 'News Cycle', sans-serif;
    display: inline-table;
}

.tbl-2-side td, .tbl-2-side th {
    border: 1px solid #ddd;
    padding: 8px;
    vertical-align: top;
}

.tbl-2-side tr:nth-child(even){background-color: #f2f2f2;}

.tbl-2-side tr:hover {background-color: #ddd; transition: all 0.5s;}

.tbl-2-side th {
  text-align: left;
  background-color: #6bcc42;
  color: white;
}

.tbl-white-cell {
    background-color: #ffffff;
    transition: ease 0.5s;
}

.tbl-white-cell:hover {
    background-color: #6bcc42;
}

.tbl-white-cell:hover .tbl-nav-title {
    color: #ffffff;
}

.tbl-nav-title {
    font-size: 15px;
    font-weight: bold;
    color: #000000;
    transition: all 0.5s;
}

.tbl-nav-title:hover {
    color: #ffffff;
}

.main-content-nav-div {
    width: 100%;
    border-radius: 10px;
    /*background-color: #6bcc42;*/
    background-image: linear-gradient(to right, #96c93d, #01f3d7);
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    color: #fff;
    font-weight: bold;
}

.main-content-nav-div a {
    color: #fff;
    text-decoration: none;
    transition: all 0.5s;
}

.main-content-nav-div a:hover {
    color: rgb(4, 0, 255);
}

.timeine-education-title {
    font-family: 'Raleway', sans-serif;
    font-weight: bold;
    font-size: 17px;
}

.timeine-education-sub-title {
    font-size: 16px;
    font-style: italic;
}