/* Google Fonts */
:root {
  --black: #000000;
  --orange: #e8612a;
  --blue: #34c0c5;
  --font-size: 16px;
}

html {
    font-family: sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
	font-family: 'Open Sans', Verdana, Arial, Helvetica, sans-serif;
	font-size: 16px;
}

* {
    box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block;
}

a {
    background-color: transparent;
}

a:active,
a:hover {
    outline: 0;
}

/* unvisited link */
a:link {
  color: var(--orange);
}

/* visited link */
a:visited {
  color: var(--orange);
}

/* mouse over link */
a:hover {
  color: var(--blue);
}

/* selected link */
a:active {
  color: var(--orange);
}

b,
strong {
    font-weight: bold;
}

small {
    font-size: 80%;
}

img {
    border: 0;
}

hr {
    height: 0;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

#page { background-color: #ffffff; }
.fill-footer {
	background-color: #ffffff;
	height: 100vh;
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
	display: none;
}

*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.container,
.container-wide {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.noJavaScript {
	width: 300px;
	min-height: 150px;
	margin: 15px auto;
	font-size: 14px;
	font-weight: bold;
	color:#FF0000;
	text-align: center;
	position: absolute;
	background-color: #ffffff;
	top: 120px;
	left: -90px;
}

@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}

@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}

.row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
}

.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
    position: relative;
    min-height: 1px;
	width: 100%;
}

.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
    float: left;
}

.col-xs-12 {
    width: 100%;
}

.col-xs-11 {
    width: 91.66666667%;
}

.col-xs-10 {
    width: 83.33333333%;
}

.col-xs-9 {
    width: 75%;
}

.col-xs-8 {
    width: 66.66666667%;
}

.col-xs-7 {
    width: 58.33333333%;
}

.col-xs-6 {
    width: 50%;
}

.col-xs-5 {
    width: 41.66666667%;
}

.col-xs-4 {
    width: 33.33333333%;
}

.col-xs-3 {
    width: 25%;
}

.col-xs-2 {
    width: 16.66666667%;
}

.col-xs-1 {
    width: 8.33333333%;
}

.col-xs-pull-12 {
    right: 100%;
}

.col-xs-pull-11 {
    right: 91.66666667%;
}

.col-xs-pull-10 {
    right: 83.33333333%;
}

.col-xs-pull-9 {
    right: 75%;
}

.col-xs-pull-8 {
    right: 66.66666667%;
}

.col-xs-pull-7 {
    right: 58.33333333%;
}

.col-xs-pull-6 {
    right: 50%;
}

.col-xs-pull-5 {
    right: 41.66666667%;
}

.col-xs-pull-4 {
    right: 33.33333333%;
}

.col-xs-pull-3 {
    right: 25%;
}

.col-xs-pull-2 {
    right: 16.66666667%;
}

.col-xs-pull-1 {
    right: 8.33333333%;
}

.col-xs-pull-0 {
    right: auto;
}

.col-xs-push-12 {
    left: 100%;
}

.col-xs-push-11 {
    left: 91.66666667%;
}

.col-xs-push-10 {
    left: 83.33333333%;
}

.col-xs-push-9 {
    left: 75%;
}

.col-xs-push-8 {
    left: 66.66666667%;
}

.col-xs-push-7 {
    left: 58.33333333%;
}

.col-xs-push-6 {
    left: 50%;
}

.col-xs-push-5 {
    left: 41.66666667%;
}

.col-xs-push-4 {
    left: 33.33333333%;
}

.col-xs-push-3 {
    left: 25%;
}

.col-xs-push-2 {
    left: 16.66666667%;
}

.col-xs-push-1 {
    left: 8.33333333%;
}

.col-xs-push-0 {
    left: auto;
}

.col-xs-offset-12 {
    margin-left: 100%;
}

.col-xs-offset-11 {
    margin-left: 91.66666667%;
}

.col-xs-offset-10 {
    margin-left: 83.33333333%;
}

.col-xs-offset-9 {
    margin-left: 75%;
}

.col-xs-offset-8 {
    margin-left: 66.66666667%;
}

.col-xs-offset-7 {
    margin-left: 58.33333333%;
}

.col-xs-offset-6 {
    margin-left: 50%;
}

.col-xs-offset-5 {
    margin-left: 41.66666667%;
}

.col-xs-offset-4 {
    margin-left: 33.33333333%;
}

.col-xs-offset-3 {
    margin-left: 25%;
}

.col-xs-offset-2 {
    margin-left: 16.66666667%;
}

.col-xs-offset-1 {
    margin-left: 8.33333333%;
}

.col-xs-offset-0 {
    margin-left: 0;
}

@media (min-width: 768px) {
    .col-sm-1,
    .col-sm-2,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7,
    .col-sm-8,
    .col-sm-9,
    .col-sm-10,
    .col-sm-11,
    .col-sm-12 {
        float: left;
    }
    .col-sm-12 {
        width: 100%;
    }
    .col-sm-11 {
        width: 91.66666667%;
    }
    .col-sm-10 {
        width: 83.33333333%;
    }
    .col-sm-9 {
        width: 75%;
    }
    .col-sm-8 {
        width: 66.66666667%;
    }
    .col-sm-7 {
        width: 58.33333333%;
    }
    .col-sm-6 {
        width: 50%;
    }
    .col-sm-5 {
        width: 41.66666667%;
    }
    .col-sm-4 {
        width: 33.33333333%;
    }
    .col-sm-3 {
        width: 25%;
    }
    .col-sm-2 {
        width: 16.66666667%;
    }
    .col-sm-1 {
        width: 8.33333333%;
    }
    .col-sm-pull-12 {
        right: 100%;
    }
    .col-sm-pull-11 {
        right: 91.66666667%;
    }
    .col-sm-pull-10 {
        right: 83.33333333%;
    }
    .col-sm-pull-9 {
        right: 75%;
    }
    .col-sm-pull-8 {
        right: 66.66666667%;
    }
    .col-sm-pull-7 {
        right: 58.33333333%;
    }
    .col-sm-pull-6 {
        right: 50%;
    }
    .col-sm-pull-5 {
        right: 41.66666667%;
    }
    .col-sm-pull-4 {
        right: 33.33333333%;
    }
    .col-sm-pull-3 {
        right: 25%;
    }
    .col-sm-pull-2 {
        right: 16.66666667%;
    }
    .col-sm-pull-1 {
        right: 8.33333333%;
    }
    .col-sm-pull-0 {
        right: auto;
    }
    .col-sm-push-12 {
        left: 100%;
    }
    .col-sm-push-11 {
        left: 91.66666667%;
    }
    .col-sm-push-10 {
        left: 83.33333333%;
    }
    .col-sm-push-9 {
        left: 75%;
    }
    .col-sm-push-8 {
        left: 66.66666667%;
    }
    .col-sm-push-7 {
        left: 58.33333333%;
    }
    .col-sm-push-6 {
        left: 50%;
    }
    .col-sm-push-5 {
        left: 41.66666667%;
    }
    .col-sm-push-4 {
        left: 33.33333333%;
    }
    .col-sm-push-3 {
        left: 25%;
    }
    .col-sm-push-2 {
        left: 16.66666667%;
    }
    .col-sm-push-1 {
        left: 8.33333333%;
    }
    .col-sm-push-0 {
        left: auto;
    }
    .col-sm-offset-12 {
        margin-left: 100%;
    }
    .col-sm-offset-11 {
        margin-left: 91.66666667%;
    }
    .col-sm-offset-10 {
        margin-left: 83.33333333%;
    }
    .col-sm-offset-9 {
        margin-left: 75%;
    }
    .col-sm-offset-8 {
        margin-left: 66.66666667%;
    }
    .col-sm-offset-7 {
        margin-left: 58.33333333%;
    }
    .col-sm-offset-6 {
        margin-left: 50%;
    }
    .col-sm-offset-5 {
        margin-left: 41.66666667%;
    }
    .col-sm-offset-4 {
        margin-left: 33.33333333%;
    }
    .col-sm-offset-3 {
        margin-left: 25%;
    }
    .col-sm-offset-2 {
        margin-left: 16.66666667%;
    }
    .col-sm-offset-1 {
        margin-left: 8.33333333%;
    }
    .col-sm-offset-0 {
        margin-left: 0;
    }
}

@media (min-width: 992px) {
    .col-md-1,
    .col-md-2,
    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-9,
    .col-md-10,
    .col-md-11,
    .col-md-12 {
        float: left;
    }
    .col-md-12 {
        width: 100%;
    }
    .col-md-11 {
        width: 91.66666667%;
    }
    .col-md-10 {
        width: 83.33333333%;
    }
    .col-md-9 {
        width: 75%;
    }
    .col-md-8 {
        width: 66.66666667%;
    }
    .col-md-7 {
        width: 58.33333333%;
    }
    .col-md-6 {
        width: 50%;
    }
    .col-md-5 {
        width: 41.66666667%;
    }
    .col-md-4 {
        width: 33.33333333%;
    }
    .col-md-3 {
        width: 25%;
    }
    .col-md-2 {
        width: 16.66666667%;
    }
    .col-md-1 {
        width: 8.33333333%;
    }
    .col-md-pull-12 {
        right: 100%;
    }
    .col-md-pull-11 {
        right: 91.66666667%;
    }
    .col-md-pull-10 {
        right: 83.33333333%;
    }
    .col-md-pull-9 {
        right: 75%;
    }
    .col-md-pull-8 {
        right: 66.66666667%;
    }
    .col-md-pull-7 {
        right: 58.33333333%;
    }
    .col-md-pull-6 {
        right: 50%;
    }
    .col-md-pull-5 {
        right: 41.66666667%;
    }
    .col-md-pull-4 {
        right: 33.33333333%;
    }
    .col-md-pull-3 {
        right: 25%;
    }
    .col-md-pull-2 {
        right: 16.66666667%;
    }
    .col-md-pull-1 {
        right: 8.33333333%;
    }
    .col-md-pull-0 {
        right: auto;
    }
    .col-md-push-12 {
        left: 100%;
    }
    .col-md-push-11 {
        left: 91.66666667%;
    }
    .col-md-push-10 {
        left: 83.33333333%;
    }
    .col-md-push-9 {
        left: 75%;
    }
    .col-md-push-8 {
        left: 66.66666667%;
    }
    .col-md-push-7 {
        left: 58.33333333%;
    }
    .col-md-push-6 {
        left: 50%;
    }
    .col-md-push-5 {
        left: 41.66666667%;
    }
    .col-md-push-4 {
        left: 33.33333333%;
    }
    .col-md-push-3 {
        left: 25%;
    }
    .col-md-push-2 {
        left: 16.66666667%;
    }
    .col-md-push-1 {
        left: 8.33333333%;
    }
    .col-md-push-0 {
        left: auto;
    }
    .col-md-offset-12 {
        margin-left: 100%;
    }
    .col-md-offset-11 {
        margin-left: 91.66666667%;
    }
    .col-md-offset-10 {
        margin-left: 83.33333333%;
    }
    .col-md-offset-9 {
        margin-left: 75%;
    }
    .col-md-offset-8 {
        margin-left: 66.66666667%;
    }
    .col-md-offset-7 {
        margin-left: 58.33333333%;
    }
    .col-md-offset-6 {
        margin-left: 50%;
    }
    .col-md-offset-5 {
        margin-left: 41.66666667%;
    }
    .col-md-offset-4 {
        margin-left: 33.33333333%;
    }
    .col-md-offset-3 {
        margin-left: 25%;
    }
    .col-md-offset-2 {
        margin-left: 16.66666667%;
    }
    .col-md-offset-1 {
        margin-left: 8.33333333%;
    }
    .col-md-offset-0 {
        margin-left: 0;
    }
}

@media (min-width: 1200px) {
    .col-lg-1,
    .col-lg-2,
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-9,
    .col-lg-10,
    .col-lg-11,
    .col-lg-12 {
        float: left;
    }
    .col-lg-12 {
        width: 100%;
    }
    .col-lg-11 {
        width: 91.66666667%;
    }
    .col-lg-10 {
        width: 83.33333333%;
    }
    .col-lg-9 {
        width: 75%;
    }
    .col-lg-8 {
        width: 66.66666667%;
    }
    .col-lg-7 {
        width: 58.33333333%;
    }
    .col-lg-6 {
        width: 50%;
    }
    .col-lg-5 {
        width: 41.66666667%;
    }
    .col-lg-4 {
        width: 33.33333333%;
    }
    .col-lg-3 {
        width: 25%;
    }
    .col-lg-2 {
        width: 16.66666667%;
    }
    .col-lg-1 {
        width: 8.33333333%;
    }
    .col-lg-pull-12 {
        right: 100%;
    }
    .col-lg-pull-11 {
        right: 91.66666667%;
    }
    .col-lg-pull-10 {
        right: 83.33333333%;
    }
    .col-lg-pull-9 {
        right: 75%;
    }
    .col-lg-pull-8 {
        right: 66.66666667%;
    }
    .col-lg-pull-7 {
        right: 58.33333333%;
    }
    .col-lg-pull-6 {
        right: 50%;
    }
    .col-lg-pull-5 {
        right: 41.66666667%;
    }
    .col-lg-pull-4 {
        right: 33.33333333%;
    }
    .col-lg-pull-3 {
        right: 25%;
    }
    .col-lg-pull-2 {
        right: 16.66666667%;
    }
    .col-lg-pull-1 {
        right: 8.33333333%;
    }
    .col-lg-pull-0 {
        right: auto;
    }
    .col-lg-push-12 {
        left: 100%;
    }
    .col-lg-push-11 {
        left: 91.66666667%;
    }
    .col-lg-push-10 {
        left: 83.33333333%;
    }
    .col-lg-push-9 {
        left: 75%;
    }
    .col-lg-push-8 {
        left: 66.66666667%;
    }
    .col-lg-push-7 {
        left: 58.33333333%;
    }
    .col-lg-push-6 {
        left: 50%;
    }
    .col-lg-push-5 {
        left: 41.66666667%;
    }
    .col-lg-push-4 {
        left: 33.33333333%;
    }
    .col-lg-push-3 {
        left: 25%;
    }
    .col-lg-push-2 {
        left: 16.66666667%;
    }
    .col-lg-push-1 {
        left: 8.33333333%;
    }
    .col-lg-push-0 {
        left: auto;
    }
    .col-lg-offset-12 {
        margin-left: 100%;
    }
    .col-lg-offset-11 {
        margin-left: 91.66666667%;
    }
    .col-lg-offset-10 {
        margin-left: 83.33333333%;
    }
    .col-lg-offset-9 {
        margin-left: 75%;
    }
    .col-lg-offset-8 {
        margin-left: 66.66666667%;
    }
    .col-lg-offset-7 {
        margin-left: 58.33333333%;
    }
    .col-lg-offset-6 {
        margin-left: 50%;
    }
    .col-lg-offset-5 {
        margin-left: 41.66666667%;
    }
    .col-lg-offset-4 {
        margin-left: 33.33333333%;
    }
    .col-lg-offset-3 {
        margin-left: 25%;
    }
    .col-lg-offset-2 {
        margin-left: 16.66666667%;
    }
    .col-lg-offset-1 {
        margin-left: 8.33333333%;
    }
    .col-lg-offset-0 {
        margin-left: 0;
    }
}

.row>[class*='col-'] {
    display: flex;
    flex-direction: column;
}

.v-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.row:before,
.row:after,
{
    display: table;
    content: " ";
}

.clearfix:after,
.container:after,
.row:after,
{
    clear: both;
}

.visible-xs,
.visible-xs-center,
.visible-sm,
.visible-sm-center,
.visible-md,
.visible-md-center,
.visible-lg,
.visible-lg-center {
  display: none !important;
}

@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
  .visible-xs-center {
    display: inline-block !important;
	margin: 0 auto !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}

.no-scroll { overflow: hidden; }

/* NAVIGATION */

    .top-nav-navigation {
        background-color: #ffffff;
        border-bottom: 1px solid #cccccc !important;
        vertical-align: middle;
        border: none;
        z-index: 10;
        position: relative;
    }
    
    .zTop {
        position: fixed;
        width: 100vw;
        top: -2px;
        z-index: 10;
        opacity: 0;
        pointer-events: none;
    }
    
    .zTop1 {
        opacity: 0.97;
        transition: all 1s ease;
        pointer-events: auto;
    }
    
    #table-L {
        height: 80px;
    }
	#table-L td {
        padding-bottom: 15px;
    }
	
	.zTop1 #table-L td {
        padding-bottom: 0px;
    }
    
    #table-L .logo {
        height: 60px;
		width: auto;
        margin-top: 10px;
    }
    
    .zTop #table-L {
        height: 40px;
    }
    
    .zTop #table-L .logo {
        height: 30px;
		width: auto;
    }

	ul.NAV-ul                         { position: relative; list-style: none; margin:0px; z-index:9999; padding-left:0px; margin-left:0px; bottom: 1px; }
	ul.NAV-ul li                      { float: left; margin:0px; padding:0; box-sizing: border-box; }
	
	a.topnav:link { font-family:'Roboto', Arial, Helvetica, sans-serif; color:var(--black); text-decoration: none; font-size: 20px; font-weight:normal; padding:2px 1vw 0px 1vw; margin:0; box-sizing: border-box;}
a.topnav:visited { font-family:'Roboto', Arial, Helvetica, sans-serif; color:var(--black);text-decoration: none; font-size: 20px; font-weight:normal; padding:2px 1vw 0px 1vw; margin:0; box-sizing: border-box;}
a.topnav:hover { font-family:'Roboto', Arial, Helvetica, sans-serif; color:var(--blue);text-decoration: none; font-size: 20px; font-weight:normal; padding:2px 1vw 0px 1vw; margin:0; box-sizing: border-box; }
a.topnav:active { font-family:'Roboto', Arial, Helvetica, sans-serif; color:var(--black);text-decoration: none; font-size: 20px; font-weight:normal; padding:2px 1vw 0px 1vw; margin:0; box-sizing: border-box;}
a.topnav-active:link { font-family:'Roboto', Arial, Helvetica, sans-serif; color:var(--blue);text-decoration: none; font-size: 20px; font-weight:normal; padding:2px 1vw 0px 1vw; margin:0; box-sizing: border-box;}
a.topnav-active:hover { font-family:'Roboto', Arial, Helvetica, sans-serif; color:var(--blue);text-decoration: none; font-size: 20px; font-weight:normal; padding:2px 1vw 0px 1vw; margin:0; box-sizing: border-box;}
a.topnav-active:active { font-family:'Roboto', Arial, Helvetica, sans-serif; color:var(--blue);text-decoration: none; font-size: 20px; font-weight:normal; padding:2px 1vw 0px 1vw; margin:0; box-sizing: border-box;}
a.topnav-active:visited { font-family:'Roboto', Arial, Helvetica, sans-serif; color:var(--blue);text-decoration: none; font-size: 20px; font-weight:normal; padding:2px 1vw 0px 1vw; margin:0; box-sizing: border-box;}

/* HAMBURGER */
.ham {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin: 0;
  padding: 0;
}
.ham-activ {
  transform: rotate(45deg);
}
.hamLine {
  fill:none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke:#000;
  stroke-width:5.5;
  stroke-linecap:round;
}
.ham .hamTop {
  stroke-dasharray: 40 160;
}
.ham .hamMiddle {
  stroke-dasharray: 40 142;
  transform-origin: 50%;
  transition: transform 400ms;
}
.ham .hamBottom {
  stroke-dasharray: 40 85;
  transform-origin: 50%;
  transition: transform 400ms, stroke-dashoffset 400ms;
}
.ham.ham-activ .hamTop {
  stroke-dashoffset: -64px;
}
.ham.ham-activ .hamMiddle {
  //stroke-dashoffset: -20px;
  transform: rotate(90deg);
}
.ham.ham-activ .hamBottom {
  stroke-dashoffset: -64px;
}

/* MOBILE NAV */
.NAV-mobile {
	transition: all 0.5 ease;
	display: none;
	top: 49px;
	left:0;
	right:0;
	bottom:0;
	height: calc(100vh - 50px);
	overflow-y: auto;
	background-color: #34c0c5;
	position: fixed;
	text-align: center;
	z-index: 100;
	border-top: 1px solid #cccccc;
}
.NAV-mobile-activ {
	display: block;
}
@media (min-width: 767px) {
  .NAV-mobile-activ {
	display: none;
  }
}
.NAV-mobile .NAV-ul, .NAV-mobile .NAV-ul li, .NAV-mobile .topnav  { display: inline-block; width: 100%; }
.NAV-mobile .topnav, .NAV-mobile .topnav-active  { display: inline-block; width: 100%; border-bottom: 1px solid #cccccc; }
.NAV-mobile .topnav-active  { background-color: #e8612a; }
.NAV-mobile a.topnav:link { font-family:'Roboto', Arial, Helvetica, sans-serif; color:#FFFFFF; text-decoration: none; font-size: 20px; font-weight:normal; margin:0; padding: 15px 5px; box-sizing: border-box; }
.NAV-mobile a.topnav:visited { font-family:'Roboto', Arial, Helvetica, sans-serif; color:#FFFFFF;text-decoration: none; font-size: 20px; font-weight:normal; margin:0; padding: 15px 5px; box-sizing: border-box;}
.NAV-mobile a.topnav:hover { font-family:'Roboto', Arial, Helvetica, sans-serif; color:#FFFFFF;text-decoration: none; font-size: 20px; font-weight:normal; margin:0; padding: 15px 5px; box-sizing: border-box; }
.NAV-mobile a.topnav:active { font-family:'Roboto', Arial, Helvetica, sans-serif; color:#FFFFFF;text-decoration: none; font-size: 20px; font-weight:normal; margin:0; padding: 15px 5px; box-sizing: border-box;}
.NAV-mobile a.topnav-active:link { font-family:'Roboto', Arial, Helvetica, sans-serif; color:#FFFFFF;text-decoration: none; font-size: 20px; font-weight:normal; margin:0; padding: 15px 5px; box-sizing: border-box;}
.NAV-mobile a.topnav-active:hover { font-family:'Roboto', Arial, Helvetica, sans-serif; color:#FFFFFF;text-decoration: none; font-size: 20px; font-weight:normal; margin:0; padding: 15px 5px; box-sizing: border-box;}
.NAV-mobile a.topnav-active:active { font-family:'Roboto', Arial, Helvetica, sans-serif; color:#FFFFFF;text-decoration: none; font-size: 20px; font-weight:normal; margin:0; padding: 15px 5px; box-sizing: border-box;}
.NAV-mobile a.topnav-active:visited { font-family:'Roboto', Arial, Helvetica, sans-serif; color:#FFFFFF;text-decoration: none; font-size: 20px; font-weight:normal; margin:0; padding: 15px 5px; box-sizing: border-box;}


.limit-width {
	border-left: none;
	border-right: none;
}
@media (min-width: 1500px) {
	.limit-width {
		border-left: calc(50vw - 750px) solid rgba(0,0,0,0);
		border-right: calc(50vw - 750px) solid rgba(0,0,0,0);
	}
}

input, textarea, select {
	font-family: Arial, Helvetica, sans-serif;
}


/* REG FORM HOMEPAGE */
.reg-form {
	position: relative;
	background-color: #e8612a;
	width: 100% !important;
}
.reg-form-img {
	position: absolute;
	width: 60%;
	max-width: 1200px;
	height: auto;
	bottom: 0;
	left: 0;
	z-index: 0;
}
.reg-form-title {
	position: absolute;
	top: 0;
	right: 0;
	width: 55%;
	max-width: 675px;
	padding: 220px 40px 0 0;
	text-align: right;
	z-index: 1;
}
.reg-form-title h1, .reg-form-title {
	color: #ffffff;
}
.promo-strike { position: relative; }
.promo-strike::after {
    content: '';
    width: 100%;
    position: absolute;
    right: 0;
    top: 50%;
	border-bottom: 5px solid rgba(232,97,42,0.75);
    -webkit-transform: skewY(-20deg);
    transform: skewY(-20deg);
}
.promo-strike-2 { position: relative; }
.promo-strike-2::after {
    content: '';
    width: 100%;
    position: absolute;
    right: 0;
    top: 50%;
	border-bottom: 2px solid rgba(232,97,42,0.75);
    /*
	-webkit-transform: skewY(-5deg);
    transform: skewY(-5deg);
	*/
}
.reg-form-table, .reg-form-table-tmo  {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 35%;
	margin: 30px 40px 45px 80px;
	z-index: 2;
}

.reg-form-table-tmo  { z-index: 2; }

.form-table input, .form-table select, .form-table textarea, .agreedTBL {
	border-top: 5px solid #000000;
	border-left: 5px solid #000000;
	border-right: 5px solid #000000;
	border-bottom: none;
	width: 100%;
	padding: 0 10px;
	height: 48px;
	outline: none;
	font-size: 18px;
}
.form-table textarea {
	resize: none;
	height: 250px;
	min-height: 100px;
	margin-bottom: 0px;
	padding: 10px;
	overflow: hidden;
}
.form-table select.select-default {
  color: #626262;
  font-size: 16px;
  text-transform: none;
}
.reg-btn  {
	color: #ffffff;
	font-weight: bold;
	cursor: pointer;
	border-top: 5px solid #000000;
	border-left: 5px solid #000000;
	border-right: 5px solid #000000;
	border-bottom: none;
	width: 100%;
	height: 48px;
	outline: none;
	font-size: 18px;
	clear: both;
	text-align: center;
	padding: 8px;
	background-color: #34c0c5;
}
select { background-color: #ffffff !important; }
.form-table input.input_half, .form-table select.input_half  {
	width: 50%;
	float: left;
}
.form-table input.no-right-border, .form-table select.no-right-border {
	border-right: none;
}
.border-bottom { clear:both; border-top: 5px solid #000000; }
.form-table input.blue {
	background-color: #34c0c5;
	color: #ffffff;
}
.upperC { text-transform:uppercase; }
.form-table input::-moz-placeholder, .form-table textarea::-moz-placeholder {
  color: #626262;
  opacity: 1;
  font-size: 16px;
  text-transform: none;
}
.form-table input:-ms-input-placeholder, .form-table textarea:-ms-input-placeholder {
  color: #626262;
  font-size: 16px;
  text-transform: none;
}
.form-table input::-webkit-input-placeholder, .form-table textarea::-webkit-input-placeholder {
  color: #626262;
  font-size: 16px;
  text-transform: none;
}
.form-table input.blue::-moz-placeholder {
  color: #ffffff;
  font-weight: bold;
  text-transform: none;
}
.form-table input.blue:-ms-input-placeholder {
  color: #ffffff;
  font-weight: bold;
  text-transform: none;
}
.form-table input.blue::-webkit-input-placeholder {
  color: rgba(255,255,255,0.9);
  font-weight: bold;
  text-transform: none;
}

/* IMG+TEXT */
.img-txt {
	position: relative;
	width: 100% !important;
}
.img-txt-img {
	position: absolute;
	width: 60%;
	max-width: 800px;
	bottom: 0;
	z-index: 0;
}
.img-real-w { width:auto; }
.img-txt-text {
	position: absolute;
	top: 0;
	bottom: 0;
	height: 100%;
	width: 50%;
	/* max-width: 600px; */
	padding: 0;
	text-align: center;
	z-index: 1;
}
.img-max-h {
	height: 100%; width: auto !important;
}

.color1 { color:var(--orange); }
.color2 { color:var(--blue); }
.color3 { color:var(--black); }
h1, .h1, h2, .h2, h3, .h3 {
    font-family: 'Raleway', Arial, Helvetica, sans-serif;
    text-decoration: none;
    font-weight: bold;
	margin-top: 0px;
    margin-bottom: 10px;
    line-height: 1;
	color: #000000;
}
h1, .h1 {
	font-size: 42px;
}
h2, .h2 {
	font-size: 34px;
}
h3, .h3 {
	font-size: 28px;
}
.logo-icon {
	height: 42px;
	width: 42px; 
	position: relative; 
	top: 8px; 
	margin: 0 4px;
}
.col-padding-10 {
	padding: 10px;
}
.col-padding-15 {
	padding: 15px;
}
.col-padding-20 {
	padding: 20px;
}
.col-padding-50 {
	padding: 50px;
}
.go-right {
	right: 0;
}
.go-left {
	left: 0;
}
.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}
.embed-responsive-4by3 {
  padding-bottom: 75%;
}
.right-block-text {
	padding-right: 60px;
}
.left-block-text {
	padding-left: 60px;
}
.panel-400 { min-height: 400px; }
.panel-450 { min-height: 450px; }
.panel-500 { min-height: 500px; }
.panel-550 { min-height: 550px; }
.panel-600 { min-height: 600px; }
.panel-650 { min-height: 650px; }
.panel-700 { min-height: 700px; }
.panel-750 { min-height: 750px; }
.panel-800 { min-height: 800px; }
.panel-850 { min-height: 850px; }
.cover-list {
	float:left; 
	width: calc(50% - 10px); 
	margin-left: 10px; 
	text-align: left;
}
.cover-list li {
	list-style: none;
	text-align: left;
	position: relative;
	padding-left: 20px;
}
.cover-list li:before {
	content: "";
	background-color: var(--orange);
	height: 8px;
	width: 8px;
	border-radius: 50%;
	margin-right: 10px;
	position: absolute;
	top: 10px;
	left: 0;
}
.logo-span {
	white-space: nowrap; 
	font-family: 'Roboto Condensed', 'Roboto', Arial, Helvetica, sans-serif; 
}
.step-box {
	float: left;
	background-color: #f3f3f3;
	-webkit-box-shadow: 1px 1px 2px 1px rgba(133,133,133,0.67);
	-moz-box-shadow: 1px 1px 2px 1px rgba(133,133,133,0.67);
	box-shadow: 1px 1px 2px 1px rgba(133,133,133,0.67);
	width: calc(33.3333333333% - 13px);
	margin: 19.5px;
	margin-left: 0;
	padding: 10px 20px;
}
.step-box-last {
	margin-right: 0px;
}
.step-box-wide {
	width: 100%;
	margin-right: 0px;
}
.number-circle {
	width: 75px;
	height: 75px;
	border: 6px solid var(--blue);
	border-radius: 50%;
	background-color: #ffffff;
	color: var(--orange);
	font-size: 55px;
	text-align: center;
	position: relative;
	margin: 0 auto;
}
.number-circle b {
	position: relative;
	top: -8px;
}
.step-box-wide .number-circle {
	margin: 10px;
}
.box-title {
	text-align: center;
	font-weight: bold;
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	margin: 10px 0;
}
.box-in-box {
	text-align: center;
	font-size: 14px;
	color: #ffffff;
	padding: 10px 5px;
	margin-bottom: 10px;
}
.box-color1 {
	background-color: var(--orange);
}
.box-color2 {
	background-color: var(--blue);
}
.white-box {
	background-color: #ffffff;
	-webkit-box-shadow: 1px 1px 2px 1px rgba(133,133,133,0.67);
	-moz-box-shadow: 1px 1px 2px 1px rgba(133,133,133,0.67);
	box-shadow: 1px 1px 2px 1px rgba(133,133,133,0.67);
	padding: 20px 0;
}
.white-box td {
	font-size: 16px;
}
.small-terms { 
	text-align: center; 
	font-family: Verdana, Arial, Helvetica, sans-serif; 
	font-size: 12px; 
	line-height: 17px !important; 
}
.small-terms i { 
	font-size: 14px;
	font-style: normal;
}
.br-1100 {
	display: none;
}
.float-center-boxes {
	width: 90vw; 
	max-width: 1100px; 
	margin: 25px auto;
}
.service-box {
	/*
	display: inline-block;
	*/
	float: left;
	border: 3px solid var(--orange);
	border-radius: 25px;
	box-sizing: border-box;
	width: calc(25% - 45px);
	height: auto;
	margin: 20px;
	padding: 20px;
}
.service-box-h1 {
	font-weight: bold;
	color: var(--orange);
	margin-bottom: 5px;
}
.service-box-txt {
	font-size: 14px;
	line-height: 16px !important;
}
.application-list {
	font-size: 15px;
	margin-top: 20px;
}
.application-list div {
	font-size: 22px;
	font-weight: bold;
}
.btn-sm-color1 {
	background-color: var(--orange);
	border-radius: 20px;
	color: #ffffff;
	font-size: 15px;
	font-weight: bold;
	cursor: pointer;
	display: inline-block;
	width: auto;
	margin: 20px auto 0 auto;
	padding: 5px 20px;
}
.btn-sm-color2 {
	background-color: var(--blue);
	border-radius: 20px;
	color: #ffffff;
	font-size: 15px;
	font-weight: bold;
	cursor: pointer;
	display: inline-block;
	width: auto;
	margin: 20px auto 0 auto;
	padding: 5px 20px;
}
.btn-join-color1 {
	background-color: var(--orange);
	border: 2px solid var(--blue);
	border-radius: 10px;
	color: #ffffff;
	font-size: 22px;
	font-weight: bold;
	cursor: pointer;
	display: inline-block;
	width: auto;
	margin: 20px auto 0 auto;
	padding: 2px 25px 5px 25px;
	transition: all 0.5s ease;
}
.btn-join-color1:hover {
	background-color: var(--blue);
}
.btn-join-color2 {
	background-color: var(--blue);
	border: 2px solid var(--blue);
	border-radius: 20px;
	color: #ffffff;
	font-size: 22px;
	font-weight: bold;
	cursor: pointer;
	display: inline-block;
	width: auto;
	margin: 20px auto 0 auto;
	padding: 2px 25px 5px 25px;
	transition: all 0.5s ease;
}
.btn-join-color2:hover {
	background-color: rgba(0,0,0,0);
	color: var(--blue);
}
.login-btn {
	font-size: 18px;
	padding: 0 10px;
	margin: 0 0 0 15px;
	font-weight: normal;
}
.login-btn:hover {
	border: 2px solid var(--blue);
	color: var(--blue);
}
.footer {
	background-color: #ffffff;
	text-align: center;
	color: #000000;
	font-size: 15px;
	padding: 50px 20px;
}
.footer .logo-span img { filter: brightness(0) invert(1); } 
.footer a:link, .footer a:visited, .footer a:hover, .footer a:active {
	font-size: 14px;
	color: #000000;
} 
.margin-bottom-5 { margin-bottom: 5px; }
.margin-bottom-10 { margin-bottom: 10px; }
.margin-bottom-15 { margin-bottom: 15px; }
.margin-bottom-20 { margin-bottom: 20px; }
.margin-bottom-25 { margin-bottom: 25px; }
.margin-bottom-30 { margin-bottom: 30px; }
.input-error {
   box-shadow: inset 3px 0 0px red, inset -3px 0 0px red, inset 0 3px 0px red, inset 0 -3px 0px red;
}
.form-errors { display: none; }
.got-form-errors {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(242,97,42,0.95);
	z-index: 2;
	display: flex;
	/* establish flex container */
	flex-direction: column;
	/* make main-axis vertical */
	justify-content: center;
	/* align items vertically, in this case */
	align-items: center;
	opacity: 0;
	transition: all 0.5s ease;
}
.opacity-1 { opacity: 1; transition: all 0.5s ease; }
#err-content {
	background-color: #ffffff;
	border: 5px solid #000000;
	width: auto;
	max-width: 600px;
	height: auto;
	padding: 0;
	position: relative;
	padding-top: 15px;
}
#err-content-close {
	color: #000000;
	background-color: #ffffff;
	border: 5px solid #000000;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	position: absolute;
	font-size: 18px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-weight: normal;
	top: -20px;
	right: -20px;
	z-index:3;
	cursor: pointer;
}
#err-content-close div {
	position: absolute;
	top: -3px;
	right: 5px;
}
#err-txt li {
	margin: 0 25px;
}
.form-error-OK {
	width: 100%;
	text-align: center;
	padding: 5px;
	color: #ffffff;
	background-color: var(--blue);
	border-top: 5px solid #000000;
	margin: 15px auto 0 auto;
	cursor: pointer;
	font-weight: bold;
}
#form-ccn {
	background-position: right center;
	background-repeat: no-repeat;
	background-size: 40px 32px;
}
.logo-td { width: 280px; }
.mobile-apps { margin: 20px 0 0 0; width: 290px; }
.t-mo-t {
	max-width: 500px;
	height: auto;
	margin: 50px auto 0 auto;
}
.t-mo-div { 
	display: none; 
	padding-top: 50px;
	text-align: center;
}
.thanks-apps {
	width: 225px;
	/*max-width: calc(50vw - 15px);*/ 
	height: auto;
}
.t-mo-table {
	position: absolute;
    z-index: 1;
    width: 100%;
    margin: 0;
    left: 0;
}

.text-column, .image-column { width: 50%; }
.p1-text {
	width: 100%;
	max-width: 50%;
	text-align: left;
}
.p2-text {
	width: 100%;
	max-width: 50%;
	margin-left: 50%;
	text-align: center;
}
.p13-text {
	width: 100%;
	max-width: 50%;
	text-align: center;
}
.hidden-1024 {
	display: none;
}
.visible-1024- {
	display: inherit;
}
.blue-line {
	border-bottom: 2px solid var(--blue);
	width: 250px;
	max-width: 95%;
	margin: 30px auto;
}
.appH1 {
	font-family: 'Shadows Into Light', Verdana, Arial, Helvetica, sans-serif;
	color: #029487;
	font-size: 42px;
	line-height: 45px;
}

.hidden-1024 .appH1 {
	font-size: calc(2vw + 11px);
	line-height: calc(2vw + 11px);
	font-weight: bold;
}
.appTxt td {
	font-size: calc(2vw + 5px);
}
.p13 td h3 {
	font-size: 22px;
	margin-top: 5px;
}
.p13 td {
	font-size: 1em;
}
.circle-box {
	float: left; 
	width: 16%;
	margin: 15px 2%;
	font-size: 1em;
	padding: 0 10px 0 10px;
}
.circle-box b {
	font-size: 1.1em;
}
.circle-box img {
	width: 60%;
	max-width: 135px;
	margin-bottom: 15px;
}
.how-box {
	float: left; 
	width: calc(25% - 12px);
	margin: 15px 6px;
	font-size: 0.8em;
	padding: 15px 20px 15px 40px;
	position: relative;
	text-align: left;
	background-color: #ebebeb;
}
.how-box h1 {
	font-size: calc(5vw + 24px);
	color: #CCCCCC;
	font-family: 'Open Sans', Verdana, Arial, Helvetica, sans-serif;
	font-weight: normal;
	position: absolute;
	top: 5px; 
	left: 40px;
}
.how-box-h1 strong {
	font-size: 0.6em;
	line-height: 0.6em;
}
.how-box b {
	font-size: 1.1em;
	display: block; 
	margin-top: 15px;
	text-align: left;
}
.how-box img {
	width: 60%;
	max-width: 135px;
	margin: 15px auto;
}
.how-box-h1 {
	font-size: 1.75em;
	margin-bottom: 0;
	padding-bottom: 0; 
	line-height: 1em;
}
.why-box {
	float: left; 
	width: calc(25% - 24px);
	margin: 15px 12px;
	font-size: 1em;
	color: #ffffff;
	padding: 25px;
	text-align: center;
	background-color: #f47321;
}
.why-box h1 {
	font-size: calc(2vw + 10px);
	color: #ffffff;
	font-family: 'Open Sans', Verdana, Arial, Helvetica, sans-serif;
	font-weight: normal;
}
.why-box-h1 {
	font-size: 1.15em;
	margin-bottom: 25px;
	padding-bottom: 0; 
	line-height: 1em;
	font-weight: normal;
}
@media (min-width: 1500px) {
	.p1-text {
		max-width: 65%;
	}
	.p1 {
		background-position: calc(50vw - 120px) center;
	}
	.p2, .p8, .p12 {
		background-position: calc(50vw - 750px) center;
	}
	body, td, th {
		font-size: 22px;
	}
	h1, .h1 {
		font-size: 42px;
	}
	h2, .h2 {
		font-size: 36px;
	}
	h3, .h3 {
		font-size: 30px;
	}
}
@media (min-width: 1120px) {
	.reg-form-img {
		/*
		height: 80%;
		width: auto;
		*/
	}
}
@media (max-width: 1220px) {
	.reg-form-title {
		width: 80%;
	}
}

@media (max-width: 1120px) {
	.p13 td {
		font-size: 13px;
	}
	.reg-form-table {
		margin: 30px 40px 45px 40px;
		width: calc(30% + 40px);
	}
	.reg-form-title {
		width: 80%;
		/*max-width: none;*/
		padding: 220px 40px 0 0px;
	}
	.br-1100 {
		display: block;
	}
	.float-center-boxes {
		max-width: 580px;
	}
	.service-box {
		width: calc(50% - 40px);
		max-width: 250px;
	}
	.img-max-h {
		height: auto !important; max-width: 50vw !important;
	}
	
 	a.topnav:link { font-size: 18px; }
	a.topnav:visited { font-size: 18px; }
	a.topnav:hover { font-size: 18px; }
	a.topnav:active { font-size: 18px; }
	a.topnav-active:link { font-size: 18px; }
	a.topnav-active:hover { font-size: 18px; }
	a.topnav-active:active { font-size: 18px; }
	a.topnav-active:visited { font-size: 18px; }

	.form-table select.select-default {
	  font-stretch: condensed;
	}
	.form-table input::-moz-placeholder, .form-table textarea::-moz-placeholder {
	  font-stretch: condensed;
	}
	.form-table input:-ms-input-placeholder, .form-table textarea:-ms-input-placeholder {
	  font-stretch: condensed;
	}
	.form-table input::-webkit-input-placeholder, .form-table textarea::-webkit-input-placeholder {
	  font-stretch: condensed;
	}
	.col-md-6.right-block-text, .col-md-6.left-block-text {
		padding-right: 20px; padding-left: 20px;
	}
	.img-txt-text-55 { width: 55%; }
	.img-txt-text-60 { width: 60%; }
	.img-real-w { max-width:50vw; }
	.login-btn {
		font-size: 16px;
		padding: 0 10px;
		color: #ffffff !important;
	}
	.how-box {
		width: calc(50% - 12px);
		margin: 15px 6px;
	}
	.how-box h1 {
		font-size: calc(10vw + 24px);
		top: 5px; 
		left: 40px;
	}
	.why-box {
		width: calc(50% - 24px);
		margin: 15px 12px;
	}
	.why-box h1 {
		font-size: 42px;
	}
}
@media (max-width: 1025px) {
	.p1 {
		background-image: none;
	}
	.p1-text {
		max-width: 100%;
		text-align: center;
	}
	.p2, .p8, .p12, .p13 {
		background-image: none;
	}
	.p2-text, .p13-text {
		max-width: 100%;
		margin-left: 0;
	}
	.text-column { width: 100%; }
	.hidden-1024 {
		display: block;
	}
	.visible-1024, .image-column {
		display: none;
	}
	.circle-box {
		width: 44%;
		margin: 25px 3%;
	}
	.circle-box-last {
		width: 44%;
		margin: 25px 28%;
	}
}
@media (max-width: 992px) {
	.mobile-apps { margin: 20px auto 0 auto !important; }
}
@media (max-width: 800px) {
	.p13 td {
		font-size: 12px;
	}
	.panel-400,
	.panel-450,
	.panel-500,
	.panel-550,
	.panel-600,
	.panel-650,
	.panel-700,
	.panel-750 { min-height: inherit; }
	.reg-form {
		height: auto;
		padding-bottom: 0;
	}
	.reg-form-title {
		width: 100vw;
		max-width: none;
		padding: 10px 30px 0 30px;
		text-align: center;
	}
	.reg-form-title {
		position: static;
	}
	.reg-form-img {
		position: relative;
		width: 100vw;
		height: auto;
		bottom: -6px;
		margin: 0 0 0 0;
		padding: 0;
	}
	.reg-form-table {
		position: static;
		width: auto;
		margin: 0;
		padding: 30px;
	}
	.reg-form-table-tmo {
		position: static;
		width: 100%;
		margin: 0px;
		padding: 30px 0 0 0;
	}
	.img-txt {
		height: auto;
		padding-bottom: 0;
	}
	.img-txt-text {
		position: static;
		width: 100vw;
	}
	.img-txt-img { 
		position: relative;
		width: 100vw;
		height: auto;
		bottom: -5px;
		margin: 0 auto;
		padding: 0;
	}
	.img-real-w { max-width: 100vw; }
	body {
		font-size: 14px;
	}
	h1, .h1 {
		font-size: 32px;
	}
	h2, .h2 {
		font-size: 29px;
	}
	h3, .h3 {
		font-size: 24px;
	}
	.logo-icon {
		height: 34px; 
		width: 34px;
		position: relative; 
		top: 6px; 
		margin: 0 4px 0 0;
	}
	.step-box {
		float: none;
		width: 100%;
	}
	.right-block-text, .left-block-text {
		padding-right: 20px; padding-left: 20px;
	}
	.panel-750,.panel-700,.panel-650,.panel-600,.panel-550,.panel-500,.panel-450,.panel-400 { height: auto; }
	.img-max-h {
		height: auto !important; width: auto !important; max-width: none !important;
	}
	.img-max-mobile-w-75 {
		 width: 75vw !important; height: auto !important; margin-left: 12.5vw !important;
	}
	.cover-list {
		font-size: 14px;
	}
	.cover-list li:before {
		top: 7px;
		height: 6px;
		width: 6px;
	}
	.logo-span {
		top: -3px; 
		position: relative;
	}
	.float-center-boxes {
		max-width: 290px;
	}
	.service-box {
		width: calc(100% - 40px);
		max-width: 250px;
	}
	.footer {
		font-size: 12px;
	}
	.xs-center {
		text-align: center !important;
	}
	#err-content {
		max-width: 90vw;
	}
	.t-mo-table {
		display: none;
	}
	.t-mo-div { display: block; }
	.t-mo-t {
		margin: 10px 5% 10px 5%;
		max-width: 90%;
	}
	
}
@media (max-width: 767px) {
	.col-padding-50 {
		padding: 50px 15px;
	}
	.login-btn {
		font-size: 20px;
		padding: 0 10px;
		margin: 0;
	}
	.circle-box {
		width: 48%;
		margin: 25px 1%;
	}
	.circle-box-last {
		width: 48%;
		margin: 25px 26%;
	}
	.how-box {
		width: calc(100% - 12px);
		margin: 15px 6px;
		font-size: 1em;
	}
	.how-box h1 {
		font-size: calc(20vw + 24px);
		top: 15px; 
		left: 40px;
	}
	.why-box {
		width: calc(100% - 12px);
		margin: 15px 6px;
	}
}