/******LESS FOOTPRINT GRID SYSTEM******
**************************************/


.grid,
.unit { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }



/* Set up some rules to govern the grid */
.grid { display: block; clear: both; }
.grid .unit { float: left; width: 100%; padding: 10px; }



/* This ensures the outer gutters are equal to the (doubled) inner gutters. */
.grid .unit:first-child { /*padding-left: 20px;*/ }
.grid .unit:last-child { /*padding-right: 20px;*/ }



/* Nested grids already have padding though, so let's nuke it */
.unit .unit:first-child { padding-left: 0; }
.unit .unit:last-child { padding-right: 0; }



.unit .grid:first-child > .unit { padding-top: 0; }
.unit .grid:last-child > .unit { padding-bottom: 0; }



/* Let people nuke the gutters/padding completely in a couple of ways */
.no-gutters .unit,
.unit.no-gutters { padding: 0 !important; }



/* Wrapping at a maximum width is optional */
.wrap .grid,
.grid.wrap { max-width: 1180px; margin: 0 auto; }


body.page-template-full-width div.wrapper > div.wrap { max-width: none; }
body.page-template-full-width div.wrapper > div.wrap > div#primary { padding: 0px; }
body.page-template-full-width div.entry-content { margin: 0px; }
 

 /****************DEFAULT GRID****************/
.grid .w-1-1 { width: 100%; }

.grid .w-1-2 { width: 50%; }

.grid .w-1-3 { width: 33.3332%; }

.grid .w-2-3 { width: 66.6665%; }

.grid .w-1-4 { width: 25%; }

.grid .w-3-4 { width: 75%; }

.grid .w-1-5 { width: 20%; }

.grid .w-2-5 { width: 40%; }

.grid .w-3-5 { width: 60%; }

.grid .w-4-5 { width: 80%; }  
 
 
 
 /****************CUSTOMIZED GRID****************/
 
 .grid .p5 { width :5%; }  
 
 .grid .p10 { width: 10%; }   
 
 .grid .p15 { width: 15%; }  
 
  .grid .p17 { width: 17%; } 
 
 .grid .p20 { width: 20%; }  
 
 .grid .p25 { width: 25%; }  
 
 .grid .p30 { width: 30%; }  
 
 .grid .p35 { width: 35%; }  
 
 .grid .p40 { width: 40%; }  
 
 .grid .p45 { width: 45%; }  
 
 .grid .p50 { width: 50%; }  
 
 .grid .p55{ width: 55%; }  
 
 .grid .p60 { width: 60%; }  
 
 .grid .p65 { width: 65%; }  
 
 .grid .p70 { width: 70%; }  
 
 .grid .p75 { width: 75%; }  
 
 .grid .p80 { width: 80%; }  
 
.grid .p83  { width: 83%; }  
 
 .grid .p85 { width: 85%; }  
 
 .grid .p90 { width: 90%; }  
 
 .grid .p95 { width: 95%; }  
 
 .grid .p100 { width: 100%; }  
 
 

/* Clearfix after every .grid */

.grid { *zoom: 1; }
.grid:after { clear: both; }
.grid:before,
.grid:after { display: table; content: ""; line-height: 0; }


/* Utility classes */
.align-center { text-align: center; }
.align-left   { text-align: left; }
.align-right  { text-align: right; }

.pull-left    { float: left; }
.pull-right   { float: right; }



/* Responsive Stuff */
@media screen and (max-width: 768px) {

    /* Stack anything that isnÃ¢â‚¬â„¢t full-width on smaller screens */
    .main-navigation ul { margin-left: 0; }
	.main-navigation ul li { float: none; text-align: center; }
	

    .grid .unit { width: 100% !important; } /*padding-left: 20px; padding-right: 20px;*/

    .unit .grid .unit { padding-left: 0px; padding-right: 0px; }

    /* Sometimes, you just want to be different on small screens */
    .center-on-mobiles { text-align: center !important; }


}

/* Expand the wrap a bit further on larger screens */
@media screen and (min-width: 1180px) {
    .wider .grid { max-width: 1180px; margin: 0 auto; }
}

.grid,
.unit { -webkit-transition: all .25s ease-in-out; -moz-transition: all .25s ease-in-out; transition: all .25s ease-in-out; }

/* *** End of Custom Grid *** */
/********************************************
* CSS Normalization and Overlapping styles  *
* AUTHOR : John Perri A. Cruz				*				
* WEBSITE : https://www.johnperricruz.com	*
* EMAIL: johnperrricruz@gmail.com			*
* @VERSION 1.0								*
*********************************************/

/*
* Typography
*/
body { font-size: 18px; overflow-x: hidden; }
h1,h2,h3,h4,h5,h6{ font-family:lato,"Helvetica Neue", Helvetica, Arial; line-height:normal; }
p,label,div,span,b,strong,a,i,em,ol,ol li,ol li a,ul,ul li,ul li a,table tr td,article,aside,address,input,button,select option,label{ font-family: lato,"Helvetica Neue", Helvetica, Arial; /*font-size:18px;*/ }
a,button{outline:none; text-decoration:none;}
/*
* Buttons and Hyperlinks
*/
.btn{
	-webkit-transition:all .2s ease;
	-moz-transition:all .2s ease;
	-o-transition:all .2s ease;
	transition:all .2s ease;
	text-decoration:none;
	display:inline-block;
	text-transform:none;
	padding:10px;
	color:#fff;
	outline:none;
}

h1 {
  font-size: 44px;
  font-weight: 300;
}

h2 {
  font-size: 32px;
  font-weight: 400;
}

h3 {
  font-size: 24px;
  font-weight: 400;
}

h4 {
  font-size: 18px;
  font-weight: 500;
}

/*Button Colors*/
.btn-danger {
    background: #f57b20;
	color:#fff;
}
.btn-danger:hover {
    background: #ef6e0d;
	color:#fff;
}

.btn.btn-primary {
    background: #242a2e;
    border-radius: 5px;
    padding: 15px 25px;
}
.btn.btn-primary:hover {
    background: #455560!important;
	color:#fff;
}
.btn.btn-transparent:hover {
    background: #fff;
    border-color: #fff;
}
.product-platform .btn:hover {
    color: #fff;
    background: #455560!important;
}
.btn-rounded{
	border-radius:5px;
}
.btn-circle{	
	border-radius:100px;
}

/*Tables*/
.table-hover tr td:hover{
	background:rgba(0,0,0,0.1);
}

/*Utils*/
.left{text-align:left;}
.right{text-align:right;}
.pull-right{float:right;}
.pull-left{float:left;}
.center{
	text-align:center;
	margin-left:auto;
	margin-right:auto;
	display:block;
}
.parallax{background-attachment:fixed!important;background-repeat:no-repeat;background-size:cover;}
.light{font-weight:lighter;}
.bold{font-weight:bolder; }
.inline{display:inline; }
.block{display:block; }
.hide{display:none!important}

/*Normalize*/
input,textarea,button,select {
	box-sizing:border-box; 
	width:100%; 
	/* height:100%!important; */
	padding:10px;
	outline:none 
}

html,body{margin:0px;}

/*Your customization starts here*/
.main-navigation ul.nav-menu {
    border: 0px;
}
nav#site-navigation {
    margin: 0px;
}
ul#menu-navigation-menu li a {
    color: #000;
    font-weight: normal;
    text-transform: none;
    font-size: 18px;
    margin: 0px;
    padding: 8px 10px;
    line-height: normal;
	-webkit-transition:.2s ease all;
	-moz-transition:.2s ease all;
	-o-transition:.2s ease all;
	transition:.2s ease all;
	border-radius:5px;
}
ul#menu-navigation-menu li a:hover {
    background: #36434c;
    color: #fff;
    border-radius: 5px;
}
ul#menu-navigation-menu {
    text-align: right;
    margin: 10px 0px;
}
ul#menu-navigation-menu li {
    margin-right: 0px;
    margin-left: 0px;
}
.wrap.grid.navigation .logo img {
    margin-top: 16px;
	-webkit-transition:all .2s ease;
	-moz-transition:all .2s ease;
	-o-transition:all .2s ease;
	transition:all .2s ease;
}
.stick {
    position: fixed;
    padding-bottom: 0px;
    position: fixed;
    top: 0px;
    z-index: 99;
    width: 100%;
    background-color: #fff;
    box-shadow: 5px 5px 45px 5px rgba(0,0,0,0.2);
}
/*.stick *{
	transition:.2s ease all;
	-webkit-transition:.2s ease all;
	-moz-transition:.2s ease all;
	-o-transition:.2s ease all;
}*/
header.stick ul li a {
    font-size: 16px!important;
    margin-right: 9px!important;
}
header.stick ul#menu-navigation-menu {
    text-align: right;
    margin: 5px;
}
header.stick .wrap.grid.navigation .logo img {
    margin-top: 19px;
    width: 120px;
}
header#masthead {
    border-top: 5px solid #455560;
    box-shadow: 0 1px 3px rgba(0,0,0,.1);
}
ul#menu-navigation-menu li.search-trigger a,
.mega-search-trigger .mega-menu-link {
   
    border-radius: 100px!important;
    width: 40px!important;
    height: 40px!important;
    line-height: normal!important;
    text-align: center!important;
    padding: 5px!important;
    color: #fff!important;
    font-size: 16px!important;
    line-height: 1.75!important;
}
ol.mega-menu {
    margin: 2em 0 0 2em;
}
ol.mega-menu li {
    width: 30%;
    margin-bottom: 1em;
}
ol.mega-menu li:before {
    /*color: #f57b20;
    position: absolute;
    margin: 10px 15px 0;*/
    content: '';
    background: url(//www.aptech.com/wp-content/themes/jpc/images/bullet-icon.png) no-repeat;
    width: 9px;
    height: 14px;
    display: inline-block;
    background-size: 9px;
}
/*ol.mega-menu li a {
    background: none !important;
    border: none !important;
    font-size: 20px !important;
    color: white;
    font-weight: 400;
    text-transform: none;
    width: auto !important;
    line-height: 1 !important;
    margin-left: 1em;
}*/
ol.mega-menu li a:hover {
    color: #f57b20 !important;
}
.mega-sub-menu .textwidget {
    background: none;
}
footer#colophon {
    padding: 30px;
    margin: auto;
    max-width: none;
    background: #242424;
    border: 0px;
}
.request-a-quote-section {
    background: #455560;
    padding: 20px;
}
.request-a-quote-section h3 {
    color: #e8e8e8;
    font-size: 24px;
    margin-bottom: 10px;
}
.request-a-quote-section p {
    font-size: 16px;
    color: #e8e8e8;
}
.request-a-quote-section .btn {
    margin-top: 7px;
}
.footer-links p {
    color: #e8e8e8;
    font-size: 18px;
    line-height: normal;
}
.footer-links p b{
	font-size:inherit;
}
.footer-links .p40 img {
    margin-bottom: 14px;
}
span.orange {
    color: #f57b20;
	font-size:inherit;
}
.footer-links h3 {
    color: #e8e8e8;
    font-size: 24px;
}
.footer-links h3 {
    margin-bottom: 17px;
}
.footer-links .wrap.grid .unit {
    padding-right: 30px;
}
.footer-links br {
    display: block;
    content: "";
    margin-bottom: 17px;
}
.copy {
    background: #0b0b0b;
    padding: 13px;
}
.copy p {
    color: #fff;
    margin-bottom: 7px;
    font-size: 18px;
}
.copy a,.copy span {
	font-size: 18px;
	text-decoration:none;
}
.copy span.sep{
	color:#fff;
}
section#below-slider {
    background: #242a2e;
    text-align: center;
    padding: 10px;
    border-bottom: 3px solid #455560;
}
section#below-slider p {
    color: #fff;
}
.home #what-we-offer {
    padding: 30px;
}
.home section h2 {
    color: #455560;
    margin-bottom: 15px;
}
.home section p {
    color: #455560;
    font-size: 18px;
    line-height: normal;
}

hr {
    background-color: #ccc;
    border: 0;
    height: 1px;
    margin: 20px auto;
    margin-bottom: 1.714285714rem;
    max-width: 1180px;
}
.wrap.grid.four-widgets h3 {
    text-align: center;
    color: #636363;
    font-size: 24px;
    font-weight: 400;
}

b {
	font-size:inherit;
}
.wrap.grid.four-widgets img {
    margin: 20px auto;
    display: block;
}
.wrap.grid.four-widgets .unit {
    text-align: center;
}
.wrap.grid.four-widgets p {
    color: #000;
    min-height: 195px;
}
section#language-platforms h2 {
    text-align: center;
    text-transform: uppercase;
}
section#language-platforms h2 + p {
    text-align: center;
}
section#language-platforms .platform img {
	max-width: 180px;
	width: 100%;
    margin: 30px 35px;
}
section#hp-banner {
   /* background: url(//www.aptech.com/wp-content/uploads/2016/10/hp_bg.jpg);*/
   background:#f7f7f7; 
	height: auto;
    max-height: 100%;
    padding: 50px 195px;
    /*  background-attachment: fixed;*/
    margin-bottom: 40px;
}
section#language-platforms {
    padding: 30px;
}
section#hp-banner .unit.container {
    position: relative;
}
section#hp-banner .unit.container img {
    position: absolute;
    width: 88%;
    left: 0px;
    right: 0px;
    top: 9px;
    max-width: 532px;
    z-index: 2;
}
section#hp-banner h3 {
    color: #000;
    font-size: 21px;
    margin-bottom: 13px;
}
section#hp-banner ul li {
    font-size: 15px;
    color: #455560;
    margin-bottom: 9px;
    /*list-style-image: url(//www.aptech.com/wp-content/themes/jpc/images/apt-bullet.png);*/
}
section#hp-banner .wrap {
    max-width: 1920px;
}
section#hp-banner ul {
    margin-left: 26px;
}
section#hp-banner .move-right {
    margin-left: 33px;
}
section#hp-banner br{
    margin-bottom: 91px;
    display: block;
    content: '';
}
span.bullet-rounded {
    background: url(//www.aptech.com/wp-content/uploads/2016/10/bullet-circle.png);
    height: 21px;
    width: 21px;
    display: inline-block;
    position: relative;
    top: 3px;
    margin: 0px 5px;
}
section#affiliates {
    padding: 20px;
    background: #e9e9e9;
}
section#affiliates h2 {
    text-align: center;
    text-transform: uppercase;
}
section#affiliates .owl-theme .owl-controls .owl-page span {
    width: 30px!important;
    height: 8px!important;
    -webkit-border-radius: 0px!important;
    -moz-border-radius: 0px!important;
    border-radius: 0px!important;
    background: #455560;
}
section#affiliates .owl-theme .owl-controls .owl-page.active span {
	background:#f57b20;
}
section#support-question {
    padding: 40px 40px 52px 40px;
}
section#support-question .light {
	padding: 10px 20px 10px 10px;
	position: relative;
	background: #455560;
	z-index:1;
}
section#support-question .dark {
    padding: 10px 20px 10px 10px;
    position: relative;
    background: #36434c;
    z-index: 2;
    top: 8px;
    left: 51px;
}
section#support-question h3 {
    color: #e8e8e8;
    margin: 0;
    line-height: initial;
}
section#support-question p {
    color: #e8e8e8;
    font-size: 16px;
    margin: 0;
}
section#support-question .light, section#support-question .dark {
    padding: 25px 20px;
}
/*Skews*/

section#support-question .light:after {
  content: " ";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%; 
  top: 0;
  left: 0;
  z-index: -1;
  background: #455560;
  transform-origin: bottom left;
  -ms-transform: skew(-30deg, 0deg);
  -webkit-transform: skew(-30deg, 0deg);
  transform: skew(-30deg, 0deg);
}
section#support-question .dark:before {
    content: " ";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: -82px;
    z-index: -1;
    background: #36434c;
    transform-origin: bottom right;
    -ms-transform: skew(30deg, 0deg);
    -webkit-transform: skew(30deg, 0deg);
    transform: skew(-30deg, 0deg);
} 
.wrap.grid.hp-posts h3 {
    text-transform: uppercase;
    font-size: 20px;
}
.wrap.grid.hp-posts .unit img {
    max-width: 100%;
}
/*.wrap.grid.hp-posts .unit {
    padding: 0px;
    margin-right: 39px;
}*/
.wrap.grid.hp-posts .unit p {
    color: #000000;
    font-size: 16px;
    margin: 18px 0px;
    min-height: 88px;
}
.wrap.grid.hp-posts .unit a {
    color: #d81e40;
    font-size: 16px;
    text-align: right;
    display: block;
    font-style: italic;
}
section#hp-banner svg {
    position: absolute;
}
section#hp-banner .p30 .container {
    position: relative;
}
.unit.p30.invert-line svg {
    left: -199px;
    top: 18px;
    z-index: 0;
}
.site-content article {
    border: 0px;
    margin: 0px;
    padding: 0px;
}
.nopadding .unit{
	padding:0px;
}
/*Product Page*/
.product-actions {
    background: #69747b;
    text-align: center;
    padding: 5px 0px;
}
.product-actions ul li {
    display: inline-block;
    margin: 0px;
}
.product-actions ul li a {
    color: #fff;
}
span.sep.white {
    margin: 0px 12px;
    color: #fff;
}
.product-actions ul {
    margin: 0px;
}
section#product-section {
    background: url(//www.aptech.com/wp-content/themes/jpc/images/product-bg.jpg);
    padding: 50px;
    background-repeat: no-repeat;
    background-size: cover;
}
section#product-section h1 {
    margin: 0px;
	text-align:center;
	font-size:35px;
	color:#fff;
}
.entry-content img, .comment-content img, .widget img, img.header-image, .author-avatar img, img.wp-post-image {
    border-radius: 0px;
    box-shadow: none;
}
section#product-section h3 {
    line-height: normal;
    color: #fff;
    font-weight: lighter;
    font-size: 28px;
    margin: 115px 0px 0px;
}
.container{
	position:relative;
}
section#product-section .container img {
    position: absolute;
    left: -115px;
    z-index: 0;
}
section#product-section .win-lin {
    max-width: 356px;
    margin: 50px 0px 30px auto;
}
section#product-section .p60.right {
    z-index: 1;
    position: relative;
}
.wrap.grid.win-lin + .center {
    max-width: 356px;
    margin: 0px 0px 30px auto;
}
section.inner-sub-nav ul {
    margin: 0px;
}
.inner-sub-nav {
    padding: 5px;
}
section.product-hero h2 {
    font-size: 36px;
}
h2.section-header {
    font-size: 36px;
    /* margin: 0px; */
}
.product-platform .section-header {
    margin: .5em 0px;
}
.innerpage-banner {
    background: url(//www.aptech.com/wp-content/themes/jpc/images/product-bg.jpg);
    background-size: cover;
    padding: 50px 20px;
}
.innerpage-banner h1 {
    text-align: center;
    color: #fff;
    /* font-size: 35px; */
    font-size: 44px;
    font-weight: 300;
    /* text-shadow: 1px 1px 1px rgba(0,0,0,0.3); */
}
.breadcrumbs a {
    color: #f57b20;
    position: relative;
/*  top: -3px;*/
}
.breadcrumbs a:after {
    top: -2px;
}
/*
.breadcrumbs a:first-of-type:after{
	top: -5px;	
}
.breadcrumbs a:first-of-type {
    top: 0px;
}
*/
.page-template-default .entry-content h2, .page-template-tocbot-template .entry-content h2, .page-template-tocbot-nosidebar-template .entry-content h2, .post .entry-content h2 {
    color: #36434c;
    font-size: 30px;
    margin: 40px 0px 20px 0px;
    font-weight: 300;
    border-bottom: 1px solid #ebebeb;
}
/*.entry-content p, .entry-summary p, .comment-content p, .mu_register p {
    color: #000;
}*/
section#submit-ticket ol li {
    color: #000;
    line-height: normal;
    margin-bottom: 21px;
}
.widget-area {
    float: none;
    width: 100%;
}
span.red {
    color: Red;
}
.submit-ticket-form input[type=text],.submit-ticket-form select,.submit-ticket-form input[type=email],.submit-ticket-form input[type=date],
.wpcf7 input[type=text],.wpcf7 select,.wpcf7 input[type=email],.wpcf7 input[type=date]{
    background: transparent;
    border: 1px solid #36434c;
    margin-bottom: 16px;
    padding: 9px;
    height: 50px;
    border-radius: 9px;
}
.submit-ticket-form p.small {
    font-size: 14px;
    font-weight: bold;
    margin-top: 14px;
}
.submit-ticket-form textarea, .wpcf7 textarea {
    background: transparent;
    border: 1px solid #36434c;
    margin-bottom: 16px;
    padding: 10px;
    border-radius: 9px;
    resize: vertical;
}
.sidebar.unit.w-1-4 {
    padding-left: 35px;
}
div.wpcf7 input[type="file"] {
    cursor: pointer;
    display: inline!important;
    width: 300px!important;
}
.submit-ticket-form hr {
    background-color: #000;
    height: 1px;
    margin: 20px auto;
    margin-bottom: 1.714285714rem;
    max-width: 1180px;
    border-color: black;
    border: 1px solid;
}
img.wpcf7-form-control.wpcf7-captchac.wpcf7-captcha-captcha-95 {
    margin-top: 12px;
}
.contact-form .unit {
    padding: 0px 10px;
}
.cf-sb {
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,.1);
    padding: 10px 20px 10px;
    margin-bottom: 50px;
    margin-left: 0px;
}
.cf-sb:first-of-type {
    margin-top: 55px;
}
.cf-sb b{
	color:#000;
}
.cf-sb p {
    font-size: 13px;
    color: #7b7b7b;
	margin:0px;
}
.contact-form {
    padding-right: 40px;
}
.map-overlay::before {
    content: ' ';
    position: absolute;
    width: 100%;
    background: #4e83a7;
    height: 449px;
    z-index: 2;
    opacity: .3;
}
ul#menu-navigation-menu li.current-menu-item a {
    background: #36434c;
    color: #fff;
    border-radius: 5px;
}
section#resources h3 {
    margin: 20px 0px 0px;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
}
section#resources .grid .container {
    display: table;
    border: 2px solid #e0e0e0;
    width: 100%;
    height: 100px;
}
section#resources .grid .container a {
    display: table-cell;
    text-align: Center;
    vertical-align: middle;
    line-height: normal;
    color: #9f9f9f;
	-webkit-transition:.2s ease all;
	-moz-transition:.2s ease all;
	-o-transition:.2s ease all;
	transition:.2s ease all;
}
section#resources .grid .container:hover {
    border-color: #f57b20;
}
section#resources .grid .container a:hover {
    color: #f57b20;	
}
.box-menu .unit {
    text-align: center;
    border: 0px;
    margin: 0px;
}
.box-menu .unit .container {
    border: 1px solid #9f9f9f;
    min-height: 107px;
    padding: 20px;
}
.entry-content a:visited, .comment-content a:visited {
    color: #f57b20;
}
#full-screen-search form {
    background: #455560!important;
    opacity: .7!important;
}
#full-screen-search button.close {
    color: #fff!important;
}
#full-screen-search form div input {
    border-radius: 10px!important;
}
#wprmenu_bar .wprmenu_icon {
    float: right;
}
#wprmenu_bar .wprmenu_icon span {
    background: #455560;
}
div#wprmenu_bar {
    border-top: 5px solid #455560;
    box-shadow: 0 1px 3px rgba(0,0,0,.1);
}
.search-result-template {
    margin: 30px 0px;
    background: #f9f9f9;
    padding: 20px;
}
.search-result-template h2 {
    margin-bottom: 20px;
}
.search-result-template h2 a{
	text-transform:uppercase;
}
.search-result-template p {
	color:#000;
	line-height:normal;
	font-size:16px;
}
#full-screen-search {
    display: table-column;
}
.admin-bar .stick {
    margin-top: 32px;
}
section#about-us {
    margin-top: 45px;
}
section#about-us p {
    line-height: normal;
    font-size: 17px;
}
.white{color:#fff;}
.section-header.center:after {
    content: '';
    border-bottom: 5px solid #f87c24;
    width: 100px;
    display: block;
    position: relative;
    text-align: center;
    margin: auto;
}
.wrap.grid.gold-badges img {
    max-width: 125px;
    margin: auto;
    display: block;
}
.wrap.grid.gold-badges b {
    color: #000;
    text-align: Center;
    display: block;
    margin: 10px auto;
}
.wrap.grid.gold-badges p {
    text-align: Center;
    font-size: 15px!important;
}
.wrap.grid.gold-badges .container {
    padding: 15px 25px;
}
.about-product-cta {
    background: url(//www.aptech.com/wp-content/themes/jpc/images/about_bg.jpg);
    padding: 50px 0px;
}
.about-product-cta.parallax h2 {
    font-size: 38px;
    color: #fff;
    font-weight: lighter;
    margin: 0px;
}
.about-product-cta.parallax p {
    text-align: center;
    color: #fff;
    line-height: normal;
    margin-top: 17px;
}
.section-header-mini:after {
    width: 49px;
    border-bottom: 3px solid #f87c24;
}
.about-product-cta.parallax .moveleft {
    position: relative;
    left: -77px;
}
section#about-us .left p {
    text-align: left;
}
.product-about.wrap.grid large {
    color: #fff;
    font-size: 30px;
    display: block;
    font-weight: bold;
    line-height: 1.25;
}
.product-about.wrap.grid large.orange {
    color: #f57b20;
}
section#about-us .left p {
    text-align: left;
    margin: 0px;
    margin-top: 30px;
    font-size: 18px;
}
.product-about.wrap.grid a {
    font-size: 18px;
    color: #fff;
    border-radius: 5px;
    display: inline-block;
    padding: 10px 30px;
    margin-top: 13px;
}
ul.bullet-check li {
    color: #fff;
    list-style: none;
    font-size: 16px;
    margin: 0px;
}
ul.bullet-check li::before {
    content: '\f00c';
    font-family: fontAwesome;
    color: #f57b20;
    margin-right: 8px;
}
ul.bullet-check {
    margin: 0px;
}
.navbar {
    margin-bottom: 0px !important;
} 
ul.wsp-pages-list li,ul.bullet-list li {
    /* background: url(//www.aptech.com/wp-content/themes/jpc/images/apt-bullet-logo.png) no-repeat 0 7px; 
    margin: 0px;
    list-style: none;*/
    margin-left: 20px;
}
.entry-content ul li > ul li {
/*	background: url(//www.aptech.com/wp-content/themes/jpc/images/apt-bullet.png) no-repeat 0 7px;	  
    margin: 0px;
    list-style: none;*/
    margin-left: 20px;
}
ul.wsp-pages-list ul.children {
    margin-left: 15px;
}
ul.wsp-pages-list li a {
    color: #36434c!important;
}
section.inner-sub-nav ul li a {
    color: #fff!important;
}
blockquote {
    background: #f4f4f4;
}
.entry-content a.btn {
    color: #fff!important;
}
.request-quote .grid .unit {
    padding: 10px!important;
    margin-bottom: 5px;
}
.request-quote p {
    margin: 0px;
}
.wpcf7 select {
    font-size: 18px;
}
.wpcf7-captchac {
    margin-top: 13px;
}
.menu-sidebar ul li a {
    color: #36434c;
}
span.wpcf7-not-valid-tip {
    color: #da1919;
    font-size: 14px;
    display: block;
    font-style: italic;
    background: #f2dede;
    padding: 6px;
    border-radius: 5px;
    position: relative;
    top: 3px;
    margin-bottom: 25px;
}
/**
 * User Forum
 */
.archive .action-bar {
    background: #111619;
}
.archive .action-bar a {
    color: #fff;
}
table.table.table-forum.dt {
    width: 100%;
    background: #111619;
	margin-top: 25px;
}
table.table.table-forum.dt tr th, table.table.table-forum.dt tr td {
    padding: 7px;
}
table.table.table-forum.dt tr th {
    color: #fff;
}
table.table.table-forum.dt tbody tr {
    border-bottom: 1px solid #e6e6e6;
}
table.table.table-forum.dt tbody tr td h3 {
    display: inline-block;
}
table.table.table-forum.dt tbody tr td h3 a {
    color: #36434c;
    font-size: 18px;
    font-weight: bold;
    position: relative;
    top: -11px;
}
table.table.table-forum.dt tbody tr td h3::before {
    content: url(//www.aptech.com/wp-content/themes/jpc/images/cloud.png);
    /* width: 20px; */
    /* display: inline-block; */
    margin-right: 11px;
}
table.table.table-forum.dt tbody tr td {
    background: #fff;
    padding: 25px 0px;
}
span.forum-category, span.forum-answer {
    display: block;
    color: #000;
    font-size: 12px;
    margin: 6px 0px;
}
table.table.table-forum.dt tbody tr td {
    background: #fff;
    padding: 25px 0px;
    font-size: 14px;
}
a.forum-auth-link {
    font-size: 14px;
    color: #f57b20;
}
table.table.table-forum.dt tbody tr td:first-of-type {
    width: 70%;
}
div#qa-menu ul li {
    margin: 0px 10px 0px 0px;
}
div#qa-menu ul li a {
    background: #36434c;
    color: #fff!important;
}
div#qa-menu ul li#qa-current-url a {
    background: #f57b20!important;
}
.wp-switch-editor {
    width: 42px;
}
.wp-core-ui .quicktags-toolbar input.button.button-small {
    width: 10%;
}

/**
 * Accordion
 */
.accordion-container {
    position: relative;
    width: 100%;
    height: auto;
    margin: 24px 0px 0px;
}
.accordion-container > h2{
  text-align: center;
  color: #fff;
  padding-bottom: 5px;
  margin-bottom: 30px;
  border-bottom: 1px solid #ddd;
}
.accordion-container .set{
  position: relative;
  width: 100%;
  height: auto;
  background-color: #f5f5f5;
}
.accordion-container .set > a {
    display: block;
    padding: 7px 10px;
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    font-weight: normal;
    border-bottom: 1px solid #ddd;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
    background: #000;
    font-size: 15px;
}
.accordion-container .set > a i {
    position: relative;
    float: right;
    margin-top: 0px;
    color: #fff;
}
.accordion-container .set > a.active {
    background-color: #f57b20;
    color: #fff;
}
.accordion-container .set > a.active i{
  color: #fff;
}
.accordion-container .content {
    position: relative;
    width: 100%;
    height: auto;
    background-color: #fff;
    border-bottom: 0px;
    display: none;
    padding: 12px;
    box-sizing: border-box;
}
.accordion-container .content p{
  padding: 10px 15px;
  margin: 0;
  color: #333;
}
.accordion-container .content p {
    padding: 10px 15px;
    margin: 0;
    color: #333;
    font-size: 15px;
    line-height: normal;
}
.accordion-container .content a.btn {
    border-radius: 5px;
    display: block;
    margin: 10px 0px;
    text-align: center;
    text-transform: uppercase;
}
ul#menu-resources li {
    padding: 7px 0px;
    border-bottom: 1px solid #eee;
}
ul#menu-resources li a {
    color: #000;
}
#qa-menu ul li:nth-of-type(2) {
    display: none;
}
article#post-95 table tr td {
    background: #36434c;
    color: #fff;
    padding: 10px;
}
article#post-95 table tr:nth-of-type(1) td {
    background: #36434c;
}
.owl-item img {
    width: 100%;
    height: auto;
}
ul#wprmenu_menu_ul li:first-of-type a {
    padding-top: 22px;
}
#wprmenu_menu ul li a, #wprmenu_menu ul li a:hover {
    border-bottom: 1px solid #403d3d!important;
}
div#wprmenu_menu i.fa.fa-search {
    font-family: fontAwesome!important;
}
div#wprmenu_menu i.fa.fa-search::after {
    content: 'Search';
    font-family: Open Sans;
    margin-left: 7px;
}
/*responsive Table*/
.page-template:not(.page-template-tocbot-template):not(.page-template-tocbot-nosidebar-template) .entry-content h2 {
    color: #36434c;
    font-size: 23px;
    margin: 10px auto;
    font-weight: bold;
}

.box-border {
    border: 2px solid #e1e1e1;
    padding: 20px;
}
.orange {
    color: #f57b20!important;
}
.box-border .grid p {
    margin: 10px 0px 0px;
    line-height: normal;
    font-size: 15px;
}
.country-chooser {
    background: #ef9350;
    padding: 10px;
    max-width: 960px;
    margin: 50px auto;
}
.country-chooser label {
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 24px;
}
div#locations h3 {
    font-weight: bold;
    font-size: 23px!important;
    text-transform: uppercase;
    margin: 0px;
    color: #36434c;
}
div#locations b {
    color: #f57b20;
}
form#dealerContactForm input[type=text],form#dealerContactForm textarea {
    background: transparent;
    border: 1px solid #36434c;
    margin-bottom: 16px;
    padding: 9px;
	width:100%!important;
    height: 50px;
    border-radius: 9px;
}
form#dealerContactForm textarea{
	height: 150px;	
}
form#dealerContactForm .btn {
    color: #fff;
    text-transform: uppercase;
    font-size: 20px;
    outline: none;
}
div#locations {
    background: url(//www.aptech.com/wp-content/themes/jpc/images/world-map.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}
#qa-user-box .qa-user-rep {
    color: #36434c;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    line-height: 1;
}
#qa-user-details th {
    font-weight: normal;
    padding-right: 0px;
    text-align: left;
    color: #36434c;
    font-size: 16px;
    text-transform: none;
}
.page-id-0 .entry-content td,.page-id-0 .comment-content td {
    border-top: 0px;
    padding: 6px 10px 6px 0;
}
ul#menu-navigation-menu li.current-menu-item .sub-menu li a {
    background: #fff;
    color: #36434c;
    text-align: left;
    font-size: 16px;
    border-radius: 0px;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
}
ul.sub-menu::before {
    content: '';
    display: block;
    margin-top: 22px;
}
nav#site-navigation {
    margin: 10px 0;
}
.main-navigation li ul li a{
    border-bottom: 1px solid #cccccc;		
}
ul#menu-navigation-menu .sub-menu li::first-of-type {
    border-top: 1px solid #cccccc;	
}
ul.sub-menu {
    width: 250px!important;
}
ul#menu-navigation-menu .sub-menu li {
    border-left: 1px solid #cccccc;
    border-right: 1px solid #cccccc;
    width: 100%;
}
ul#menu-navigation-menu .sub-menu li:first-of-type {
    border-top: 1px solid #cccccc;
}
.stick ul.sub-menu::before {
    content: '';
    display: block;
    margin-top: 17px;
}
ul#menu-navigation-menu li.current-menu-item .sub-menu li a:hover {
    background: #36434c;
    color: #fff; 
}
ul#menu-navigation-menu li ul li a {
    background: #fff;
    width: 100%;
    box-sizing: border-box;
    border-radius: 0px;
	text-align:left;
	font-size:16px;
}
ul#menu-navigation-menu li ul li a:hover {
    background: #36434c;
    width: 100%;
    box-sizing: border-box; 
    border-radius: 0px;
}
header.mobile.header.mobile-menu .unit {
    width: 50%!important;
}
a#menu i {
    font-size: 30px;
    color: #36434c;
}
header.mobile.header.mobile-menu {
    border-top: 5px solid #36434c;
}
.wpmm-header-image {
    max-width: 175px;
    margin: auto;
}
.ui-accordion .ui-accordion-content {
    padding: 0 !important;
}
.widget_wp_sidebarlogin {
    margin: 0;
}
.widget_wp_sidebarlogin form {
    margin: 0.5em;
}
.widget_wp_sidebarlogin form p {
    margin: 0 !important;
}
.widget_wp_sidebarlogin input[type="checkbox"] {
    width: inherit;
}
.widget_wp_sidebarlogin ul {
    padding: 0.5em;
    margin-bottom: 0.5em;
}

.widget_wp_sidebarlogin .logout-link a, 
.widget_wp_sidebarlogin .register-link a, 
a.register-link, 
.widget_wp_sidebarlogin .login-submit input[type="submit"] {
    border: none;
    background: #f87d20;
    width: 100%;
    display: inline-block;
    border-radius: 4px;
    border-bottom: 1px solid #da6f1d;
    color: white!important;
    text-align: center;
    /*text-transform: uppercase;*/
    padding: 5px;
    font-size: 18px;
    box-sizing: border-box;
    height: auto;
}
.widget_wp_sidebarlogin .logout-link a:hover,
.widget_wp_sidebarlogin .register-link a:hover {
    background: #f87d20;
    border-color: #da6f1d;
    color: white;
}
.rdl-form .wrap .unit {
    padding: 10px 10px 0;
}
.rdl-form .wrap .unit p {
    margin: 0;
}

.search-results #primary .search-result-template p {
   word-break: break-word;
}

/*landing page styles*/

.page-id-11963 .request-a-quote-section{
    display: none;
}
.lp-header {
    text-align: center;
    border-top: 5px solid #383f48;
    border-bottom: 1px solid #e35205;
    padding: 20px 0;
}
.lp-banner {
    text-align: center;
    margin: 40px 20px;
}
.lp-banner h2 {
    font-size: 30px;
    margin: 40px 20px 20px;
}
.lp-banner p {
    margin: 0px 35% 40px;
}
.cta-btn-lp {
    background: #DA5905;
    width: 15%;
    padding: 10px 20px;
    color: #fff;
    border-radius: 5px;
    border-bottom: 5px solid #A54304;
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0 auto;
}
.lp-tag h3 {
    font-size: 23px;
    font-weight: 300;
}
.lp-tag {
    background: #383f48;
    color: #fff;
    text-align: center;
    padding: 10px;
}
.lp-midsec .w-1-2 p {
    line-height: 1.25;
    padding: 10px 0;
}
.lp-midsec .unit.w-1-2:first-child {
    margin-top: 50px;
}
.lp-lowsec {
    padding: 40px 20px;
    text-align: center;
    background: url(//www.aptech.com/wp-content/uploads/2016/12/bg.png);
}
.lp-lowsec h3 {
    font-size: 23px;
    text-transform: uppercase;
    margin: 10px;
}
.lp-lowsec .bot {
    margin-top: 50px;
}
.lp-lowsec .bot p {
    margin-bottom: 40px;
}
.lp-lowsec .bot h3 {
    margin-bottom: 0px;
}
.page-id-11963 #what-we-offer h2 {
    text-align: center;
    margin: 20px;
    font-size: 23px;
}
.page-id-11963 .wrap.grid.four-widgets {
    margin-top: 40px;
}
.page-id-11963 .wrap.grid.four-widgets .unit {
    padding: 0 10px;
    line-height: 1.25;
}
.page-id-11963 #what-we-offer {
    padding-bottom: 120px;
    padding-top:40px;
}
.lp-prod {
    background: #383F48;
    position: relative;
    padding: 60px 20px 125px;
}
.lp-prod .cta-btn-lp {
    background: #DA5905;
    width: 50%;
    padding: 10px 20px;
    color: #fff;
    border-radius: 5px;
    border-bottom: 5px solid #A54304;
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    margin-top: 40px;
    float: right;
}
.lp-prod .unit.w-1-2:last-child {
    text-align: right;
    color: #fff;
    float: right;
    margin-right: 20%;
    width: 35%;
    line-height: 1.25;
}
.lp-prod .w-1-2:first-child img {
    position: absolute;
    top: -85px;
    left: 20%;
}
.cta-btn-lp:hover {
    background: #47555E;
    border-bottom: 5px solid #323A40;
}
.lp-midsec {
    padding-bottom: 40px;
}
.lp-midsec .w-1-2:last-child img {
    width: 100%;
}
.page-id-101 .request-quote .wpcf7-list-item {
    display: block;
}
.page-id-101 .request-quote .wrap input[type="checkbox"] {
    display: inline !important;
    width: auto;
}
.single-question .answer-content p {
    line-height: normal;
    margin-bottom: 15px;
    margin-top: 15px;
}
.single-question .qa-action-links a {
    background: #23282d;
    padding: 3px 22px;
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
}
.single-question div#wp-answer-media-buttons {
    width: 150px;
    display: inline-block;
}
.single-question input.qa-edit-submit {
    background: #23282d;
    padding: 8px 22px;
    color: #fff; 
    border-radius: 4px;
    font-size: 18px;
    text-transform: uppercase;
}
.single-question input.qa-edit-submit:hover {
    background: #23282d!important;	
	color:#fff;
} 
.single-question div#qt_answer_toolbar input[type=button] {
    margin: 3px;
}
.single-question .wp-editor-tabs {
    display: none;
}
.single-question button.button.insert-media.add_media {
    background: #23282d;
    color: #fff;
    border: 0px;
}
.wpcf7 input[type="checkbox"] {
    width: 12px;
    margin: 5px 0px 20px 0px;
}
.archive .action-bar p {
    color: #fff;
}
.archive.search .entry-header .entry-title a {
    font-weight: bold;
    color: #36434c;
    font-size: 22px;
}
.archive.search .qa-status-icon.qa-answered-icon,.archive.search .qa-unanswered-icon {
    position: relative;
    top: -9px;
}
.list-post-entry-meta .qa-status-icon.qa-answered-icon,.list-post-entry-meta .qa-unanswered-icon {
    display: none;
}
time.entry-date {
    margin-top: 24px;
    margin-top: 1.714285714rem;
    font-size: 13px;
    font-size: 0.928571429rem;
    line-height: 1.846153846;
    color: #757575;
}
a.post-edit-link {
    margin-top: 24px;
    margin-top: 1.714285714rem;
    font-size: 13px;
    font-size: 0.928571429rem;
    line-height: 1.846153846;
    color: #757575;	
}
/*
aside#text-26 .textwidget {
    padding: 15px;

}
aside#text-26 .textwidget button {
    padding: 6px;
    margin: 10px 0px;
}
*/

.button-ask-question {
    border: none;
    background: #f87d20;
    width: 100%;
    display: inline-block;
    border-radius: 4px;
    border-bottom: 1px solid #da6f1d;
    color: white!important;
    text-align: center;
    /* text-transform: uppercase; */
    padding: 5px;
    font-size: 18px;
    box-sizing: border-box;
    height: auto;
}

.platform {
    text-align: center;
}
html {
    margin-top: 0px!important;
}
.w45 li {
    width: 45% !important;
}
.mega-menu-item-text-24,
.mega-menu-item-text-27 {
    width: 27% !important;
}
.ml0 {
    margin-left: 0 !important;
}
.ml-20 {
    margin-left: 20px;
}
a.button.button-primary.button-register {
    background: #8f8f8f;
    width: 100%;
    display: inline-block;
    border-radius: 4px;
    border: 1px solid #5b5b5b;
    color: white;
    text-align: center;
    text-transform: uppercase;
    box-sizing: border-box;
    padding: 0px;
    font-size: 18px;
    margin: auto;
}
#text-29 .textwidget {
    padding: 15px;
}
.textwidget hr {
    background-color: #f57b20;
    border: 0;
    height: 1px;
    margin: 15px auto;
    max-width: 1180px;
}

.post-type-archive-question span.page-numbers, .post-type-archive-question a.page-numbers {
    background: #36434c;
    color: #fff;
    width: 25px;
    height: 25px;
    display: inline-table;
    text-align: center;
    line-height: 1.25;
    padding: 5px;
    margin-top: 55px;
}
.post-type-archive-question span.page-numbers.current {
    background: #f87d20;
}
.post-type-archive-question a.next.page-numbers {
    width: 90px;
}
.post-type-archive-question a.prev.page-numbers {
    width: 118px;
}
.wpcf7 select {
font-size: 18px;
line-height: 42px;
}

table.noborder, table.noborder th, table.noborder td {
   border: none !important;
}

.home-new-release-tag {
    text-align: right;
}

@media screen and (max-width:1152px) {
    .home-new-release-tag {
        text-align: center;
    }
}


/*** New Design Css********/
body{ font-family: "Lato", sans-serif;}

.container{max-width: 1320px;}

header#masthead{border:none}

.top-header{ background:#455560; color:#fff; font-size:12px; padding:10px 0}

.childcontent-inner .childcontent-inner {    top: 62px;}
.top-header .wrap {    display: flex;    justify-content: space-between;    align-items: center;}

.site-header .wrap .grid, .site-header .grid.wrap, .site-header .wrap,
.site-footer .wrap .grid, .site-footer .grid.wrap, .site-footer .wrap  {    max-width: 1320px;    margin: 0 auto;    width: 100%;}

.top-header .btn-try {    background: #fff;    padding: 4px 12px;    font-size: 12px;    color: #2E3E49;    border-radius: 12px;}

.megamenu li a{ font-size:16px}

li.mega.last.img-search a span{ background:url(//www.aptech.com/wp-content/uploads/2024/04/search.svg)}

.site-footer {    background: #2E3E49;    color: #fff;}

.question-footer {    background: #F57B20;    padding: 24px 30px;    border-radius: 25px;    display: flex;    justify-content: space-between;
    align-items: center;    flex-wrap: wrap;}

.question-footer .footBtn {    background: #fff;    padding: 16px 24px;    font-size: 16px;    color: #F57B20;    border-radius: 12px;    font-weight: 900;}

.main-footer-row {    display: flex;    flex-wrap: wrap;}

.main-footer-row .footer-col {    width: 33.33%;}

.footer-col.ftNav {    padding-left: 100px;}

.main-footer {    padding: 98px 0;    font-size: 20px;    line-height: 1.2;}
.site-footer a {    color: #fff;}

.main-footer .title {    margin-bottom: 40px;    display: block;    font-size: 24px;    font-weight: 900;}

.footer-col ul li {    margin: 0 0 15px;}

.bottom-footer {    background: #253038;}

.bottom-footer .copy {    background: transparent;    padding: 0;}

.bottom-footer .wrap {    display: flex;    justify-content: space-between;    padding: 15px 0;}

.bottom-footer a {    color: #F57B20;}

.footer-col.desc a {    text-decoration: underline;    color: #F57B20;}.home-banner h1 {    font-size: 64px;    font-weight: 800;    line-height: 120%;}

.siteBtn {    padding: 18px 32px;    display: inline-block;    background: #F57B20;    border-radius: 12px;    font-size: 20px;
    text-transform: uppercase;    color: #fff;    font-weight: 800;    border: 2px solid #F57B20;    text-decoration: none;}

.home-banner h1 {    color: #2E3E49;}

.siteBtn.transparent {    background: transparent;    border: 2px solid #455560;    color: #455560;}

img {    max-width: 100%;}

.home-banner {    padding: 70px 0;}

body .home-banner p {    font-size: 24px;    padding: 30px 0;}

.siteBtn:hover {    background: #455560!important;    color: #fff;    border: 2px solid #455560;}

.btn-block {    display: flex;    gap: 15px;}

.home-banner .row {    align-items: center;}

.home-banner .img-col img {    height: 500px;    border-radius: 50%;    width: 500px;    max-width: 500px;    max-height: 500px;    min-height: 500px;    object-fit: cover;}

.home-banner .img-col {    display: flex;    justify-content: flex-end;    position: relative;}

.home-banner .img-col:after, .home-banner .img-col:before{    content: "";    position: absolute;    height: 110px;    width: 110px;    background-size: cover !important;}

/*
.home-banner .img-col:after{    background: url(//www.aptech.com/wp-content/themes/jpc/css/images/hmbnr-bottom-b.png);    bottom: 5%;    left: 22%;}

.home-banner .img-col:before{    background: url(//www.aptech.com/wp-content/themes/jpc/css/images/hmbnr-top-b.png);    left: 16%;    top: 10%;    z-index: -1;}

*/

.left-img-content h2 {    font-size: 48px;    font-weight: 800;    line-height: 48px;    margin: 0 0 40px;}

img {    max-width: 100%;}

.left-img-content {    padding: 70px 0;}

.left-img-content h2 span {    color: #F57B20;}

.subHeading {    font-size: 48px;    color: #455560;}

p {    margin: 0 0 25px;}

p:last-child {    margin: 0;}

.left-img-content .row {    align-items: center;}
.homePage{color:#455560;}

.homePage p {    font-size: 24px;    margin-bottom: 15px;    line-height: 32px;}

.trust-gauss h2 {    font-size: 48px;    font-weight: 800;    color: #2E3E49;    margin: 0 0 70px;}

.trust-gauss ul li {    list-style: none;    width: 19%;
    background: #fff;
    box-shadow: 0px 39px 11px 0px rgba(0, 0, 0, 0.00), 0px 25px 10px 0px rgba(0, 0, 0, 0.01), 0px 14px 9px 0px rgba(0, 0, 0, 0.03), 0px 6px 6px 0px rgba(0, 0, 0, 0.05),
     0px 2px 3px 0px rgba(0, 0, 0, 0.05);    text-align: center;    margin: 0 0 25px;    padding: 20px;    border-radius: 25px;    display: flex;    justify-content: center;
         align-items: center;}

.trust-gauss ul {    display: flex;    flex-wrap: wrap;    justify-content: space-between;    margin: 0;    padding: 0;}

.trust-gauss {    background: #F7F7F7;    padding: 100px 0;}

.core-services .row {    justify-content: space-between;    align-items: center;    padding: 60px 0;}

.homePage h2 {    font-size: 48px;    font-weight: 900;    line-height: 48px;    margin: 0 0 40px;}

.core-services .img-col {    position: relative;}

.core-services .img-col .icon {    position: absolute;    top: -30px;    left: -30px;}

.core-services .row:nth-child(even) {    flex-direction: row-reverse;}

.core-services .row:nth-child(even) .img-col .icon {    left: auto;    right: -30px;}

.service-testimonial {    position: relative;    padding-left: 30px;    font-size: 20px;}

.service-testimonial:before {    content: "";    height: 16px;    width: 16px;    left: 0;
    background: url(//www.aptech.com/wp-content/themes/jpc/css/images/quote.svg);    background-repeat: no-repeat;    background-size: contain !important;    position: absolute;    top: 5px;}

.service-testimonial .auther {    font-size: 16px;    font-weight: 700;    margin-top: 15px;}

.core-services.core-bg {    background: rgba(245, 123, 32, 0.03); position: relative;}
.core-services.core-bg:after {
    content: "";
    height: 100px;
    width: 100%;
    background: url(//www.aptech.com/wp-content/themes/jpc/css/images/pink-triangle.png);
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    bottom: 0;
    background-size: cover;
}
.workDataSources .row {    justify-content: space-between;    align-items: center;}

.workDataSources .data-list ul li {
    list-style: none;    width: 31.5%;    display: flex;    justify-content: center;    align-items: center;    border: 1px solid rgba(69, 85, 96, 0.30);    border-radius: 25px;
    padding: 30px 15px;    margin: 0 0 15px;}

.workDataSources .data-list ul {    display: flex;    flex-wrap: wrap;    padding: 0;    justify-content: space-between;}

.workDataSources {    padding: 120px; position: relative;}
.workDataSources:after {
    content: "";
    height: 100px;
    width: 100%;
    background: url(//www.aptech.com/wp-content/themes/jpc/css/images/gray-triangle.svg);
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    bottom: 0;
    background-size: cover;
}

.customer-support .content-block {    background: #fff;    box-shadow: 0px 39px 11px 0px rgba(0, 0, 0, 0.00), 0px 25px 10px 0px rgba(0, 0, 0, 0.01), 0px 14px 9px 0px rgba(0, 0, 0, 0.03), 0px 6px 6px 0px rgba(0, 0, 0, 0.05), 0px 2px 3px 0px rgba(0, 0, 0, 0.05);    display: flex;    flex-direction: column;    justify-content: space-between;    height: 100%;
    padding: 35px;    border-radius: 25px;    font-size: 20px;    position: relative;}

.customer-support .content-block:before {    content: "";    position: absolute;    height: 48px;    width: 48px;    background: #fff url(//www.aptech.com/wp-content/themes/jpc/images/quote.svg);
    box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.1);    border-radius: 50%;    top: -24px;    background-repeat: no-repeat;    background-size: 15px 15px;
    background-position: center;}

.customer-support {    background: #F7F7F7;    padding: 60px 0;}

.support-auther {    display: flex;    align-items: center;    gap: 15px;    margin-top: 40px;}

.support-auther .desc span {    display: block;    font-weight: 300;}

.support-auther .desc {    font-weight: 700;    font-size: 16px;}

.btn-col .siteBtn {    display: inline-block;    margin-top: 60px;}

.support-top {    margin-bottom: 70px;}
.cms-page-view #what-we-offer h2 {
    color: #444444!important;
}
#what-we-offer .four-widgets p.about-aptech {
    min-height: 0px;
    color: #000;
    font-size: 18px;
    font-style: normal;
    line-height: normal;
    margin: 0 0 1.5em;
    text-align: initial;
}
/*
#what-we-offer .four-widgets h3 {
    text-align: center;
    color: #000000;
    font-size: 20.8px;
    text-transform: none;
    font-weight: bold;
    margin: 0px;
}
*/
#below-slider h3 {
    color: #fff;
    font-size: 18px;
    line-height: normal;
    font-weight: normal;
}
.footer-links img {
    display: initial;
}
.footer-links br {
    display: block;
    content: "";
    margin-bottom: 17px;
}
.copy span.sep {
    color: #fff;
}
/*Navbar consistency*/
.wrap.grid.navigation .logo img {
    max-width: 175px;
}
.unit.p83.navbar {
    padding-bottom: 0px;
    padding-top: 0px;
}
ul.megamenu.level0 {
    margin-right: 0px;
    margin-top: 18px;
    margin-bottom: 0px;
}
.jm-megamenu ul li {
    margin-left: 13px;
}
li.mega.last.img-search {
    margin: 0px;
    position: relative;
    top: -8px;
    left: 4px;
    margin-left: -2px;
}
ol.mega-menu li {
    margin-bottom: 0;
}
#childcontent1 .mega-menu, #childcontent12 .mega-menu {
    margin-left: 15%;
}
/*Cross platform class*/
#full-screen-search form {
    background: #455560!important;
}

/* ============================================ *
 * Megamenu
 * ============================================ */
.logo {
    min-height: 84px!important;
}
.navigation .logo img {
    margin-top: 19px;
}
.unit.p83.navbar {
    padding-bottom: 0px;
    padding-top: 0px;
}
ul.megamenu.level0 {
    margin-right: 0px;
    margin-top: 23px;
    margin-bottom: 0px;
}
.megamenu {
    text-align: right;
    margin: 10px 0px;
}
.megamenu li a {
    font-family: lato;
    color: #000;
    font-weight: normal;
    text-transform: none!important;
    font-size: 20px;
    margin: 0px;
    padding: 8px 10px;
    line-height: normal;
    border-radius: 5px;
}
.megacol.column1 {
    max-width: 1180px;
    margin: auto;
}
/*.jm-megamenu ul .childcontent {*/
.childcontent-inner {
    display: inline-block;
    position: absolute;
    top: 62px;
    left: 0;
    z-index: 2;
    width: 100%;
    background: #36434c;
    visibility: hidden;
    padding: 1.55em 0;
    margin-top: 3px;
}
.jm-megamenu ul li {
    display: inline-block;
    margin-left: 10px;
}
.jm-megamenu ul li a {
    padding: 8px;
    display: inline-block;
}
.jm-megamenu ul li:hover .childcontent-inner {
	visibility: visible;
}
.jm-megamenu ul li a:hover, .jm-megamenu ul li a.active {
    background: #36434c;
    color: #fff;
}
.megamenu .megamenu {
text-align:left;
}
.megacol,
.childcontent-inner {
	width: 100% !important;
}
.megamenu .megamenu li a {
    color: white;
}
.megamenu .megamenu li {
    width: 45%;
}
.mega-menu {
    position: relative;
    left: 0;
    top: 0;
}
ol.mega-menu li:before {
    content: '';
    background: url(//store.aptech.com/skin/frontend/rwd/jpc/images/bullet-icon.png) no-repeat;
    width: 9px;
    height: 14px;
    display: inline-block;
    background-size: 9px;
}
.megamenu .megamenu li {
    width: 48%;
}

#childcontent1 .mega-menu li, #childcontent12 .mega-menu li {
    width: 36%;
}
#childcontent1 .mega-menu,
#childcontent12 .mega-menu {
    margin-left: 20%;
}

#menu12 .mega-menu,
#menu1 .mega-menu {
    position: initial;
    padding: 1em;
    margin-left: 15em;
}
li.mega.last.img-search a span {
    background-image: url(//www.aptech.com/media/jmmegamenu/search-icon.png);
    display: block;
    background-repeat: no-repeat;
    width: 40px;
    height: 40px;
    color: transparent;
}
li.mega.last.img-search a:hover {
    background: transparent;
}
.childcontent-inner {
    padding-top: 0;
    margin-top: 3px;
}
ol.mega-menu {
    margin: 0;
}
.megacol.column1 {
    max-width: 1180px;
    margin: auto;
}
@media screen and (max-width: 1280px){
.megamenu .megamenu li a {
    font-size: 15px;
}
}
.navbar.unit, .navbar.unit .grid, .megamenu li a, .navbar.unit .unit {
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
}

/*Mobile menu*/
header.mobile.header.mobile-menu .unit {
    width: 50%!important;
}
header.mobile.header.mobile-menu .grid #menu {
    font-size: 24px;
    color: #455560;
}
header.mobile.header.mobile-menu img {
    max-width: 140px;
    margin-top: 4px;
}
header.mobile.header.mobile-menu {
    padding: 5px;
}
#aptech-mobile ul.menu.mm-listview li a {
    font-size: 15px;
}
#aptech-mobile a.mm-title {
    font-size: 15px;
}
#aptech-mobile ul.sub-menu::before {
	display:none;
}
#aptech-mobile ul.sub-menu.mm-listview li a {
    font-size: 15px;
}
.carousel-inner>.item>img, .carousel-inner>.item>a>img {
    display: block;
    line-height: 1;
    margin: auto;
}
/*
.entry-content pre, .comment-content pre {
    overflow: visible;
}
*/
.entry-content pre span, .comment-content pre span {
    font-size: inherit;
}
/*
.wpcf7 input[type="checkbox"] {
    height: auto!important;
}
input[type="checkbox"] {
	width: 20px!important;
    height: auto!important;
    padding: 10px!important;
    outline: none!important;
}
*/	
.unit .unit:first-child {
    padding-left: 10px;
}
input[type=email], input[type=search], input[type=number], input[type=password], input[type=tel], input[type=text],textarea{
    width: 100%;
    max-width: 100%;
} 
.normal-list li {
    background: none !important;
    list-style: disc !important;
    padding-left: 0 !important;
    margin: 0 0 0 1rem !important;
}
.wrap.grid.contact-links a {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    max-width: 100%;
    margin: 0px;
    font-size: 18px;
    min-height: 90px;
    text-align: center;
    border-radius: 5px;
}
.wrap.grid.contact-links .unit {
    padding: 23px;
}
.unit .unit:first-child {
    padding-left: 0px;
}
/**
 * Remove Safari Bug
 */
@media screen and (-webkit-min-device-pixel-ratio:0) { 
	/* Safari and Chrome */


	/* Safari only override */
	::i-block-chrome,section#support-question .dark:before,
	section#support-question .light:after	{
		display:none;
	}
	::i-block-chrome,section#support-question .dark {
		top: 0px;
		left: 0px;
	}
}

.fullblock-wrapper {
max-width: initial !important;
background-color: #fafafa;
}

.fullblock {
padding: 30px 0;
text-align: center;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.fullblock td {
padding: 10px;
}
/************************************+
DESCRIPTION  : RESPONSIVITY SCRIPT   *
AUTHOR       : JOHN PERRI CRUZ       *
DESCRIPTION  : RESPONSIVE VIEWSPORTS *
DATE CREATED : JULY 17, 2015         *
*************************************/
/*GLOBAL*/
.desktop{
    display:block;
}
.mobile{
    display:none;
}
.mobile_links{
    pointer-events: none;
}    
@media screen and (max-width: 3840px){ /*********| 4K |**********/    
	div#celebrating-badge {
		/*display: none;*/
		
	}
	.tp-parallax-wrap:last-of-type{
		left:0px!important;
	}
}
@media screen and (max-width: 1920px){ /*********| 1080P |**********/    
	div#celebrating-badge {
		display: block;
	}
	.tp-parallax-wrap:last-of-type{
		left:0px!important;
	}
}      
@media screen and (max-width: 1600px){ /*****| MID HD DESKTOP |*****/
    section#hp-banner h3 {
        color: #000;
        font-size: 16px;
        margin-bottom: 22px;
    }
    section#hp-banner ul li {
        font-size: 14px;
        margin-bottom: 15px;
    } 
    section#hp-banner {
        padding: 50px 58px;
    }
    section#hp-banner .unit.container img {
        left: -72px;
    }
}                       
@media screen and (max-width: 1440px){ /*****| MID HD DESKTOP |*****/
    section#hp-banner .unit.container img {
        position: absolute;
        width: 93%;
        left: 0px;
        right: 0px;
        top: 9px;
        max-width: 532px;
        z-index: 2;
    }
} 
@media screen and (max-width: 1366px){ /********| HD LAPTOP |*******/
    section#hp-banner h3 {
        font-size: 15px;
    }
    section#hp-banner .unit.container img {
        position: absolute;
        width: 100%;
        left: -41px;
        right: 0px;
        top: 9px;
        max-width: 532px;
        z-index: 2;
    } 
    section#hp-banner {
        padding: 50px 70px;
    }
    .wrap.grid.four-widgets p {
        font-size: 15px;
    }
    .wrap.grid.hp-posts .unit p {
        font-size: 15px;
    }
    #where-to-buy .box-border a {
        display: block;
    }
}
@media screen and (max-width: 1280px){ /**********| 720P |**********/
	section#support-question .unit {
        width: 48%;
    }
    section#support-question h3 {
        font-size: 14px !important;
        font-weight: bold;
    }
    section#support-question p {
        font-size: 14px;
    }
}
@media all and (min-width: 801px) and (max-width: 1152px) {
	#contact-us {
		margin: auto 1em;
	}
}
@media screen and (max-width: 1152px){ /******| DESKTOP RARE |*******/
    ul#menu-navigation-menu li a {
        font-size: 15px;
    }
    .wrap.grid.navigation .logo img {
        max-width: 145px;
    }
    #full-screen-search form div {
        position: absolute;
        width: 90%;
        height: 100px;
        top: 37%;
        left: 0;
        right: 0px;
        margin: 0px auto;
    }
    header.stick ul li a {
        font-size: 14px!important;
    }
    .home section p {
        font-size: 16px;
    }
    .home section h2 {
        font-size: 20px;
    }
    .wrap.grid.four-widgets h3 {
        font-size: 14px;
    }
    .wrap.grid.four-widgets p {
        min-height: 166px;
        font-size: 14px;
    }
    .wrap.grid.four-widgets a {
        font-size: 15px;
    }
    section#hp-banner {
        max-height: 100%;
        padding: 50px;
        margin-bottom: 40px;
    }
    .parallax{
        background-attachment: inherit!important;       
    }
    section#hp-banner .unit.container img {
        position: absolute;
        width: 112%;
        left: -102px;
        right: 0px;
        top: 9px;
        max-width: 532px;
        z-index: 2;
    }
    section#hp-banner h3 {
        color: #000;
        font-size: 14px;
        margin-bottom: 13px;
    }
    section#hp-banner ul li {
        font-size: 14px;
        color: #455560;
        margin-bottom: 16px;
        list-style-image: url(//www.aptech.com/wp-content/themes/jpc/images/apt-bullet.png);
    }
    /*.wrap.grid.hp-posts .unit {
        margin-right: 24px;
    }*/
    section#support-question .light, section#support-question .dark {
        padding: 20px;
    }
    section#support-question h3 {
        color: #e8e8e8;
        font-size: 20px;
    }
    .btn.btn-transparent {
        font-size: 17px;
        border: 2px solid;
        border-radius: 5px;
        font-weight: normal;
    }
    .request-a-quote-section h3 {
        font-size: 22px;
    }
    .request-a-quote-section p {
        font-size: 15px;
    }
    .footer-links h3 {
        color: #e8e8e8;
        font-size: 18px;
    }
    .footer-links p {
        font-size: 14px;
    }
    .copy p {
        color: #fff;
        margin-bottom: 7px;
        font-size: 14px;
    }
    .copy a, .copy span {
        font-size: 14px;
        text-decoration: none;
    }
    #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
        font-size: 14px!important;
    }
}
@media screen and (max-width: 1024px){ /**| APPLE IPAD LANDSCAPE |**/
	.wrap.grid.hp-posts h3 {
		font-size: 19px;
	}
	#where-to-buy .box-border strong {
		display: block;
	}
}
@media all and (min-width: 769px) and (max-width: 800px) {
	.widget-title {
		font-size: 1em;
	}
	#support a.btn {
		font-size: 0.84rem;
	}
	#contact-us .w-1-2 {
		width: 100%;
	}
	.desk-hl {
		max-width: 48% !important;
	}
}
@media screen and (max-width: 800px) { /**| APPLE IPAD PORTRAIT |***/
    .lp-banner p {
        margin: 0px 20px 20px;
        font-size: 18px;
        line-height: 1.25;
    }
    .cta-btn-lp {
        background: #DA5905;
        width: 35%;
    }
    .lp-banner img {
        width: 100%;
    }
    .lp-midsec .unit.w-1-2:first-child {
        margin-top: 30px;
        padding-left: 20px;
        margin-bottom: 30px;
    }
    .lp-midsec .w-1-2 p {
        line-height: 1.25;
        padding: 10px 0;
        font-size: 18px;
    }
    .lp-midsec .w-1-2:last-child img {
        width: 100%;
        padding-top: 50px;
    }
    .bot img {
        width: 100%;
    }
    .page-id-11963 #what-we-offer .w-1-1 {
        padding: 0 20px;
    }
    .page-id-11963 #what-we-offer .w-1-1 p {
        font-size: 18px;
        line-height: 1.25;
        text-align: center;
    }
    .lp-prod .w-1-2:first-child img {
        position: absolute;
        top: -85px;
        left: -10px;
    }
    .lp-prod .unit.w-1-2:last-child {
        text-align: right;
        color: #fff;
        float: right;
        margin-right: 6%;
        width: 40%;
        line-height: 1.25;
        font-size: 18px;
    }
    .lp-prod .cta-btn-lp {
        width: 70%;
    }
    .page-id-11963 .wrap.grid.four-widgets {
        margin-top: 40px;
        background: #fff !important;
    }
    .lp-lowsec .bot p {
        margin-bottom: 40px;
        font-size: 18px;
        line-height: 1.25;
    }



    section#hp-banner svg {
        display: none;
    }
    #wprmenu_bar .bar_logo {
        width: 150px;
        height: auto;
    }
    #wprmenu_bar .wprmenu_icon span {
        background: #455560!important;
    }
    .wrap.grid.four-widgets .unit {
        width: 50%!important;
    }
    .wrap.grid.four-widgets p {
        min-height: 112px;
        font-size: 14px;
    }
    .wrap.grid.four-widgets {
        background: #f9f9f9;
        padding: 20px;
    }
    section#hp-banner .move-right {
        margin-left: 0px;
    }
    section#hp-banner .unit.container img {
        position: initial;
        width: 100%;
        left: 0px;
        right: 0px;
        top: 0px;
        max-width: 500px;
        z-index: 2;
    }
    section#hp-banner {
        height: auto;
        max-height: 100%;
        padding: 50px;
        margin-bottom: 40px;
    }
    .desktop{
        display:none;
    }
    .mobile{
        display:block;
    }
    section#hp-banner h3 {
        color: #000;
        font-size: 24px;
        margin-bottom: 13px;
    }
    section#hp-banner span.bullet-rounded {
        display: none;
    }
    section#hp-banner br {
        display: none;
    }
    section#hp-banner ul li {
        font-size: 18px;
        color: #455560;
        margin-bottom: 16px;
        list-style-image: url(//www.aptech.com/wp-content/themes/jpc/images/apt-bullet.png);
    }
    .wrap.grid.hp-posts .unit img {
        max-width: 100%;
        margin: auto;
        display: block;
    }
    .wrap.grid.hp-posts h3 {
        color: #000000;
        text-transform: uppercase;
        font-size: 20px;
        text-align: center;
    }
    .wrap.grid.hp-posts {
        max-width: 400px;
    }
    section#support-question .light:after{
        display:none;
    }
    section#support-question .dark:before{
        display:none;
    }
    section#support-question .dark {
        padding: 20px;
        position: initial;
        background: #36434c;
        z-index: 2;
        top: 0px;
        left: 0;
        margin: 20px 0px 0px;
    }
    section#support-question h3 {
        font-size: 18px;
        font-weight: bold;
    }
    section#support-question p {
        font-size: 16px;
    }
    section#support-question .unit.p60 {
        width: 60%!important;
    }
    section#support-question .unit.p40 {
        width: 40%!important;
    }
    .request-a-quote-section * {
        text-align: center;
    }
    .copy * {
        text-align: center;
    }
    /**
     * Inner Pages
     */
     .page-template-default div#primary {
        padding: 20px;
    }
    .sidebar.unit.w-1-4 {
        padding-left: 10px;
    }
    .innerpage-banner {
        padding: 20px 20px;
    }
    .innerpage-banner h1 {
        font-size: 27px;
    }
    .inner-sub-nav a {
        color: white;
        font-size: 14px;
        padding: 0px;
    }
    .section-header:after {
        content: '';
        border-bottom: 3px solid #f87c24;
        width: 100px;
        display: block;
        position: relative;
    }
    section.product-hero h2 {
        font-size: 28px;
        margin: 10px 0px 20px;
    }
    .entry-content p, .entry-summary p, .comment-content p, .mu_register p {
        color: #000;
        font-size: 16px;
        line-height: normal;
    }
    .product-hero p, .product-hero li, .product-hero strong {
        font-size: 16px;
        color: black;
        line-height: normal;
        margin-bottom: 25px!important;
    }
    .product-cta h2 {
        font-size: 20px;
        color: white;
        font-weight: 400;
        line-height: normal;
    }
    .product-cta span {
        display: block;
        font-size: 20px;
        margin: 0.75em 0;
    }
    .button {
        display: inline-block;
        background: #f68024;
        padding: 10px 20px;
        border-radius: 5px;
        text-transform: uppercase;
        color: white;
        font-size: 20px;
        border-bottom: #8d4004 5px solid;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }
    .product-cta {
        background: #31383c;
        padding: 20px;
        text-align: center;
    }
    .product-features h2 {
        font-size: 25px;
        font-weight: 400;
    }
    .product-features .heading {
        text-align: center;
        font-size: 16px;
        line-height: normal;
    }
    .product-features .list-content {
        font-size: 16px;
        margin: 3em 0;
    }
    section.product-platform a {
        display: block;
        margin: 0px 0px 20px 0px;
    }
    h2.section-header {
        font-size: 30px;
    }
    .entry-content img, .comment-content img, .widget img, img.header-image, .author-avatar img, img.wp-post-image {
        border-radius: 0px;
        box-shadow: none;
        margin: 0px auto 20px auto;
        display: block;
    }
    .product-comparison h2 {
        font-size: 28px;
        line-height: normal;
    }
    .entry-content table, .comment-content table {
        color: #757575;
        font-size: 12px;
        font-size: 0.857142857rem;
        line-height: 2;
        margin: 0 0 24px;
        /*margin: 0px;*/
        width: 100%;
    }
    .comparison-table th {
        background: #372f2b;
        color: white;
        font-size: 16px;
    }
    .comparison-table td, .comparison-table th {
        border: 1px solid #9f9f9f;
        padding: 1em;
        vertical-align: middle;
        font-size: 15px;
    }
    .inner-sub-nav li:after {
        content: '';
        border-right: 2px solid white;
        margin: 0px 7px;
    }
    .breadcrumbs div {
        font-size: 17px;
    }
    .product-hero li {
        margin: 0px;
    }
    .entry-content dl, .comment-content dl {
        margin: 0 24px;
        margin: 0px;
    }
    table.table.table-forum.dt tbody tr td h3::before{
        display:none;
    }
    table.rwd-table tbody tr td:first-of-type {
        width: 100%;
        box-sizing: border-box;
        padding: 10px;
        margin: 0px auto;
    }
    table.rwd-table tbody tr td {
        background: #fff;
        padding: 0px;
        font-size: 14px;
    }
    table.table.table-forum.dt tbody tr td:first-of-type {
        width: 100%;
    }
    table.rwd-table tbody tr td {
        margin: 0px;
    }
    .entry-content .grid {
        padding: 0px 30px;
    }
    .contact-form {
        padding-right: 0px;
    }
    .entry-content .grid {
        padding: 0px 20px;
    }
    .sidebar.unit.w-1-4 {
        padding: 0px 20px;
    }
    p, label, div, span, b, strong, a, i, em, ol, ol li, ol li a, ul, ul li, ul li a, table tr td, article, aside, address, input, button, select option, label {
        font-size: 15px;
    }
    .page-template-default .entry-content h2 {
        font-size: 21px;
    }
    .wrap.grid.four-widgets h3 {
        font-size: 14px;
        min-height: 24px;
        word-break: break-word;
    }
    .wrap.grid.hp-posts .unit {
        margin-right: 0px;
        width: 80%!important;
        padding: 12px;
        margin: auto;
        float: none;
    }
    .wrap.grid.hp-posts {
        max-width: none;
    }
    .parallax {
        background-attachment: initial!important;
        background-position: center center!important;
    }
    .product-hero .product-image {
        top: 77px;
        max-width: 140%;
    }
    section#support-question .unit {
    	width: 100% !important;
    }
    .breadcrumbs {
    	text-align: center;
    }
    .footer-links h3 {
	    font-size: 17px;
    }
}
@media screen and (max-width: 768px) {
.product-hero .product-image {
        right: 35%;
    }

.lp-prod .unit.w-1-2 {
    text-align: center;
}
.lp-prod .w-1-2:first-child img {
    position: relative;
    top: 0;
    left: 0;
}
.lp-prod .unit.w-1-2:last-child {
    text-align: center;
    color: #fff;
    float: none;
    margin-right: 0;
    width: 100%;
    line-height: 1.25;
    font-size: 18px;
}
.lp-prod .cta-btn-lp {
    width: 70%;
    float: none;
}
.lp-prod {
    background: #383F48;
    position: relative;
    padding: 30px 20px;
}
.lp-midsec .w-1-2:last-child img {
    width: 100%;
    padding-top: 0 !important;
}
.lp-midsec .unit.w-1-2:first-child {
    margin-top: 30px;
    padding: 0 20px;
    margin-bottom: 0;
}
.page-id-11963 #what-we-offer {
    padding-bottom: 20px;
    padding-top: 40px;
}
.top img {
    width: 100%;
}

#hp-banner b {
	text-align: center;
}
}
@media screen and (max-width: 640px) { /*|SAMSUNG MOBILE LANDSCAPE|*/
    .wrap.grid.four-widgets .unit {
        width: 100%!important;
        margin-bottom: 25px;
    }
    .wrap.grid.hp-posts .unit {
        margin-right: 0px;
        width: 100%!important;
        padding: 12px;
    }
}
@media screen and (max-width: 480px) { /*| GENERIC ANDROID PHONES |*/
    .cta-btn-lp {
        background: #DA5905;
        width: 80%;
    }

    section#hp-banner h3 {
        color: #000;
        font-size: 19px;
        margin-bottom: 13px;
    }
    section#hp-banner ul li {
        font-size: 16px;
        color: #455560;
        margin-bottom: 16px;
        list-style-image: url(//www.aptech.com/wp-content/themes/jpc/images/apt-bullet.png);
    }
    section#hp-banner {
        height: auto;
        max-height: 100%;
        padding: 30px 20px;
        margin-bottom: 40px;
    }
    section#language-platforms .platform img {
        margin: auto;
        display: block;
        width: 100%;
    }
    section#support-question .unit.p60 {
        width: 100%!important;
    }
    section#support-question a {
        width: 100%;
        display: block;
        padding: 8px;
        text-align: center;
        box-sizing: border-box;
        margin: 10px 0px;
    }
    section#support-question h3 {
        font-size: 18px;
        font-weight: bold;
        text-align: center;
    }
    section#support-question p {
        font-size: 16px;
        text-align: center;
    }
    section#support-question .unit.p40 {
        width: 100%!important;
    }
    .wrap.grid.hp-posts .unit {
        margin-right: 24px;
        margin-bottom: 30px;
    }
    .wrap.grid.four-widgets h3 {
        font-size: 17px;
        min-height: 0;
    }
    .wrap.grid.four-widgets p {
        min-height: 0px;
        font-size: 14px;
        margin-bottom: 20px;
    }
    #full-screen-search form div {
        position: absolute;
        width: 90%;
        height: auto;
        top: 34%;
        left: 0px;
        margin: auto;
    }
    #full-screen-search form div input {
        width: 100%;
        height: 50px;
        background: #eee;
        padding: 20px;
        font-size: 20px;
        line-height: 60px;
    }
    .wrap.grid.four-widgets img {
        margin: 20px auto;
        display: block;
        max-width: 100px;
    }
    .table-block thead tr td,
    .table-block tbody tr td {
        display: block;
        text-align: center;
        padding: 10px;
    }
    .table-block thead {
        display: block;
        margin-top: 15px;
    }
    .table-block thead tr {
        display: block;
    }
    .table-block thead tr td {
        font-weight: bold;
    }
    .table-block thead tr td:last-child { 
        display: none;
    }
    .table-block tbody tr td code {
        white-space: normal;
    }
}
@media screen and (max-width: 414px) { /********| IPHONE 6+ |*******/
    .lp-header img {
        width: 100%;
    }
    .lp-prod .w-1-2:first-child img {
        width: 100%;
    }

    .page-template-default .entry-content h2 {
        color: #36434c;
        font-size: 18px;
        margin: 10px auto;
        font-weight: bold;
    }
    .page-template-default .entry-content p{
        color: #000;
        font-size: 15px;
    }
    /*.sidebar.unit.w-1-4 {
        padding-left: 10px;
    }*/
    .page-id-6422 #primary article .entry-content img {
        display: block;
        float: none;
        margin: 15px auto;
    }
    .page-id-116 #primary article .entry-content .btn-menu .btn-menu-container span {
        display: block;
        margin-top: 7px;
    }
}
@media screen and (max-width: 375px) { /********| IPHONE 6 |********/
    .home section p {
        font-size: 14px;
    }
    .request-a-quote-section h3 {
        font-size: 21px;
    }
    .btn.btn-primary {
        background: #242a2e;
        border-radius: 5px;
        padding: 10px 15px;
    }
    section#support-question p {
        font-size: 15px;
    }

    /* Force table to not be like tables anymore */
    .ct-container,
    .ct-container thead,
    .ct-container tbody,
    .ct-container th,
    .ct-container td,
    .ct-container tr { 
        display: block; 
    }
    
    /* Hide table headers (but not display: none;, for accessibility) */
    .ct-container thead tr { 
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    
    .ct-container tr {
        border: 1px solid #ccc;
        margin-bottom: 15px;
    }
    
    .ct-container td { 
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        text-align: center;
    }
    
    .ct-container td:before { 
        /* Now like a table header */
        position: relative;
        /* Top/left values mimic padding */
        display: block;
        width: 100%;
        font-weight: bold;
    }
    
    /* Label the data */
    .ct-container td:nth-of-type(1):before { content: "Feature/Benefit"; }
    .ct-container td:nth-of-type(2):before { content: "GAUSS"; }
    .ct-container td:nth-of-type(3):before { content: "GAUSS Engine"; }

    /* Force table to not be like tables anymore */
    .tbl-support-plan,
    .tbl-support-plan thead,
    .tbl-support-plan tbody,
    .tbl-support-plan th,
    .tbl-support-plan td,
    .tbl-support-plan tr { 
        display: block; 
    }
    
    /* Hide table headers (but not display: none;, for accessibility) */
    .tbl-support-plan thead tr { 
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    
    .tbl-support-plan tbody tr:first-child { display: none; }
    
    .tbl-support-plan tr {
        border: 1px solid #ccc;
        margin-bottom: 15px;
    }
    
    .tbl-support-plan td { 
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        text-align: center;
    }
    
    .tbl-support-plan td:before { 
        /* Now like a table header */
        position: relative;
        /* Top/left values mimic padding */
        display: block;
        width: 100%;
        color: #e07503;
        font-weight: bold;
    }
    
    /* Label the data */
    .tbl-support-plan td:nth-of-type(1):before { content: "Feature/Benefit"; }
    .tbl-support-plan td:nth-of-type(2):before { content: "Premier Support"; }
    .tbl-support-plan td:nth-of-type(3):before { content: "Best Value! Platinum Premier Support & Maintenance"; }

	.country-chooser label {
		font-size: 23px;
	}

}
@media screen and (max-width: 360px) { /*|SAMSUNG MOBILE PORTRAIT|**/
}
@media screen and (max-width: 320px) { /******| IPHONE 5,4... |*****/
}

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  background-color: transparent;
}

.table th,
.table td {
  padding: 8px;
  vertical-align: top;
  border-top: 1px solid #eceeef;
}

.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #eceeef;
}

.table tbody + tbody {
  border-top: 2px solid #eceeef;
}

.table .table {
  background-color: #fff;
}

.table-sm th,
.table-sm td {
  padding: 0.3rem;
}

.table-bordered {
  border: 1px solid #eceeef;
}

.table-bordered th,
.table-bordered td {
  border: 1px solid #eceeef;
}

.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 2px;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-active,
.table-active > th,
.table-active > td {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-success,
.table-success > th,
.table-success > td {
  background-color: #dff0d8;
}

.table-hover .table-success:hover {
  background-color: #d0e9c6;
}

.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: #d0e9c6;
}

.table-info,
.table-info > th,
.table-info > td {
  background-color: #d9edf7;
}

.table-hover .table-info:hover {
  background-color: #c4e3f3;
}

.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
  background-color: #c4e3f3;
}

.table-warning,
.table-warning > th,
.table-warning > td {
  background-color: #fcf8e3;
}

.table-hover .table-warning:hover {
  background-color: #faf2cc;
}

.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
  background-color: #faf2cc;
}

.table-danger,
.table-danger > th,
.table-danger > td {
  background-color: #f2dede;
}

.table-hover .table-danger:hover {
  background-color: #ebcccc;
}

.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
  background-color: #ebcccc;
}

.thead-inverse th {
  color: #fff;
  background-color: #292b2c;
}

.thead-default th {
  color: #464a4c;
  background-color: #eceeef;
}

.table-inverse {
  color: #fff;
  background-color: #292b2c;
}

.table-inverse th,
.table-inverse td,
.table-inverse thead th {
  border-color: #3b3e40;
}

.table-inverse.table-bordered {
  border: 0;
}

.table-inverse.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}

.table-inverse.table-hover tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 865px) {
  .table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .table-responsive.table-bordered {
    border: 0;
  }
}


.alert {
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: bold;
}

.alert-dismissible .close {
  position: relative;
  top: -0.75rem;
  right: -1.25rem;
  padding: 0.75rem 1.25rem;
  color: inherit;
}

.alert-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d0e9c6;
}

.alert-success hr {
  border-top-color: #c1e2b3;
}

.alert-success .alert-link {
  color: #2b542c;
}

.alert-info {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bcdff1;
}

.alert-info hr {
  border-top-color: #a6d5ec;
}

.alert-info .alert-link {
  color: #245269;
}

.alert-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faf2cc;
}

.alert-warning hr {
  border-top-color: #f7ecb5;
}

.alert-warning .alert-link {
  color: #66512c;
}

.alert-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebcccc;
}

.alert-danger hr {
  border-top-color: #e4b9b9;
}

.alert-danger .alert-link {
  color: #843534;
}

/*
.nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-tabs {
  border-bottom: 1px solid #ddd;
}

.nav-tabs .nav-item {
  margin-bottom: -1px;
}

.nav-tabs .nav-link {
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
  border-color: #eceeef #eceeef #ddd;
}

.nav-tabs .nav-link.disabled {
  color: #636c72;
  background-color: transparent;
  border-color: transparent;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #464a4c;
  background-color: #fff;
  border-color: #ddd #ddd #fff;
}

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  border-radius: 0.25rem;
}

.nav-pills .nav-link.active,
.show .nav-pills .nav-link {
  color: #fff;
  background-color: #0275d8;
}

.nav-fill .nav-item {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  text-align: center;
}

.nav-justified .nav-item {
  -webkit-flex-basis: 0;
      -ms-flex-preferred-size: 0;
          flex-basis: 0;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: center;
}

.tab-content > .tab-pane {
  display: none;
}

.tab-content > .active {
  display: block;
}
*/

/* ---------------  NEW --------------- */
.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.dl-horizontal:after,.dropdown-item,.modal-footer:after,.modal-header:after,.nav-tabs:after,.navbar:after,.pager:after,.row:after {
    clear: both;
}

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

.nav {
    padding-left: 0;
    margin: initial !important;
    margin-bottom: 0 !important;
    list-style: none !important;
}

.nav-link {
    display: inline-block;
}

.nav-link:focus,.nav-link:hover {
    text-decoration: none;
}

.nav-link.disabled {
    color: #818a91;
}

.nav-link.disabled,.nav-link.disabled:focus,.nav-link.disabled:hover {
    color: #818a91;
    cursor: not-allowed;
    background-color: transparent;
}

.nav-inline .nav-link+.nav-link {
    margin-left: 1rem;
}

.nav-pills .nav-item+.nav-item,.nav-tabs .nav-item+.nav-item {
    margin-left: .2rem;
}

.nav-tabs {
    border-bottom: 1px solid #ddd;
}

.nav-tabs:after,.nav-tabs:before {
    display: table;
    content: " ";
}

.nav-tabs .nav-item {
    float: left;
    margin: initial;
    margin-bottom: -1px;
}

.nav-tabs .nav-link {
    display: block;
    padding: .5em 1em;
    border: 1px solid transparent;
    border-radius: .25rem .25rem 0 0;
}

.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover {
    border-color: #eceeef #eceeef #ddd;
}

.nav-tabs .nav-link.disabled,.nav-tabs .nav-link.disabled:focus,.nav-tabs .nav-link.disabled:hover {
    color: #818a91;
    background-color: transparent;
    border-color: transparent;
}

.nav-tabs .nav-item.open .nav-link,.nav-tabs .nav-item.open .nav-link:focus,.nav-tabs .nav-item.open .nav-link:hover,.nav-tabs .nav-link.active,.nav-tabs .nav-link.active:focus,.nav-tabs .nav-link.active:hover {
    color: #55595c;
    background-color: #fff;
    border-color: #ddd #ddd transparent;
}

.nav-pills .nav-item {
    float: left;
}

.nav-pills .nav-link {
    display: block;
    padding: .5em 1em;
    border-radius: .25rem;
}

.nav-pills .nav-item.open .nav-link,.nav-pills .nav-item.open .nav-link:focus,.nav-pills .nav-item.open .nav-link:hover,.nav-pills .nav-link.active,.nav-pills .nav-link.active:focus,.nav-pills .nav-link.active:hover {
    color: #fff;
    cursor: default;
    background-color: #0275d8;
}

.nav-stacked .nav-item {
    display: block;
    float: none;
}

.nav-stacked .nav-item+.nav-item {
    margin-top: .2rem;
    margin-left: 0;
}

.navbar-divider,.navbar-nav .nav-item+.nav-item,.navbar-nav .nav-link+.nav-link {
    margin-left: 1rem;
}

ul.nav + .tab-content {
    padding: 15px;
    border: 1px solid transparent;
    border-color: transparent #ddd #ddd;
    margin-bottom: 15px;
}

.tab-content>.tab-pane {
    display: none;
}

.tab-content>.active {
    display: block;
}

.nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.fade {
    opacity: 0;
    -webkit-transition: opacity .15s linear;
    -o-transition: opacity .15s linear;
    transition: opacity .15s linear
}

.fade.in {
    opacity: 1
}

/* card */
.card {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}

.card-block {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 1.25rem;
}

.card-body {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1.25rem;
}

.card-title {
  margin-bottom: 0.75rem;
  word-break: break-all;
}

h2.card-title {
  border-bottom: none !important;
}

.card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link:hover {
  text-decoration: none;
}

.card-link + .card-link {
  margin-left: 1.25rem;
}

.card > .list-group:first-child .list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.card > .list-group:last-child .list-group-item:last-child {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: #f7f7f9;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: #f7f7f9;
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}

.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

.card-header-tabs {
  margin-right: -0.625rem;
  margin-bottom: -0.75rem;
  margin-left: -0.625rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}

.card-primary {
  background-color: #0275d8;
  border-color: #0275d8;
}

.card-primary .card-header,
.card-primary .card-footer {
  background-color: transparent;
}

.card-success {
  background-color: #5cb85c;
  border-color: #5cb85c;
}

.card-success .card-header,
.card-success .card-footer {
  background-color: transparent;
}

.card-info {
  background-color: #5bc0de;
  border-color: #5bc0de;
}

.card-info .card-header,
.card-info .card-footer {
  background-color: transparent;
}

.card-warning {
  background-color: #f0ad4e;
  border-color: #f0ad4e;
}

.card-warning .card-header,
.card-warning .card-footer {
  background-color: transparent;
}

.card-danger {
  background-color: #d9534f;
  border-color: #d9534f;
}

.card-danger .card-header,
.card-danger .card-footer {
  background-color: transparent;
}

.card-outline-primary {
  background-color: transparent;
  border-color: #0275d8;
}

.card-outline-primary .card-header,
.card-outline-primary .card-footer {
  background-color: transparent;
  border-color: #0275d8;
}

.card-outline-secondary {
  background-color: transparent;
  border-color: #ccc;
}

.card-outline-secondary .card-header,
.card-outline-secondary .card-footer {
  background-color: transparent;
  border-color: #ccc;
}

.card-outline-info {
  background-color: transparent;
  border-color: #5bc0de;
}

.card-outline-info .card-header,
.card-outline-info .card-footer {
  background-color: transparent;
  border-color: #5bc0de;
}

.card-outline-success {
  background-color: transparent;
  border-color: #5cb85c;
}

.card-outline-success .card-header,
.card-outline-success .card-footer {
  background-color: transparent;
  border-color: #5cb85c;
}

.card-outline-warning {
  background-color: transparent;
  border-color: #f0ad4e;
}

.card-outline-warning .card-header,
.card-outline-warning .card-footer {
  background-color: transparent;
  border-color: #f0ad4e;
}

.card-outline-danger {
  background-color: transparent;
  border-color: #d9534f;
}

.card-outline-danger .card-header,
.card-outline-danger .card-footer {
  background-color: transparent;
  border-color: #d9534f;
}

.card-inverse {
  color: rgba(255, 255, 255, 0.65);
}

.card-inverse .card-header,
.card-inverse .card-footer {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.2);
}

.card-inverse .card-header,
.card-inverse .card-footer,
.card-inverse .card-title,
.card-inverse .card-blockquote {
  color: #fff;
}

.card-inverse .card-link,
.card-inverse .card-text,
.card-inverse .card-subtitle,
.card-inverse .card-blockquote .blockquote-footer {
  color: rgba(255, 255, 255, 0.65);
}

.card-inverse .card-link:focus, .card-inverse .card-link:hover {
  color: #fff;
}

.card-blockquote {
  padding: 0;
  margin-bottom: 0;
  border-left: 0;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
}

.card-img {
  width: 100%;
  border-radius: calc(0.25rem - 1px);
}

.card-img-top {
  width: 100%;
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.card-img-bottom {
  width: 100%;
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

@media (min-width: 576px) {
  .card-deck {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  .card-deck .card {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 0;
        -ms-flex: 1 0 0px;
            flex: 1 0 0%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-right: 15px;
    margin-left: 15px;
  }
}

@media (min-width: 576px) {
  .card-group {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
  .card-group .card {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 0;
        -ms-flex: 1 0 0px;
            flex: 1 0 0%;
  }
  .card-group .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group .card:first-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group .card:first-child .card-img-top {
    border-top-right-radius: 0;
  }
  .card-group .card:first-child .card-img-bottom {
    border-bottom-right-radius: 0;
  }
  .card-group .card:last-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group .card:last-child .card-img-top {
    border-top-left-radius: 0;
  }
  .card-group .card:last-child .card-img-bottom {
    border-bottom-left-radius: 0;
  }
  .card-group .card:not(:first-child):not(:last-child) {
    border-radius: 0;
  }
  .card-group .card:not(:first-child):not(:last-child) .card-img-top,
  .card-group .card:not(:first-child):not(:last-child) .card-img-bottom {
    border-radius: 0;
  }
}

.card-columns .card {
  margin-bottom: 0.75rem;
}

@media (min-width: 576px) {
  .card-columns {
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
  }
  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}

/* end card */

/* blockquote */

blockquote {
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  border-left: 0.25rem solid #eceeef;
  background: inherit;
}

.blockquote-footer {
  display: block;
  font-size: 80%;
  color: #636c72;
}

.blockquote-footer::before {
  content: "\2014 \00A0";
}

.blockquote-reverse {
  padding-right: 1rem;
  padding-left: 0;
  text-align: right;
  border-right: 0.25rem solid #eceeef;
  border-left: 0;
}

.blockquote-reverse .blockquote-footer::before {
  content: "";
}

.blockquote-reverse .blockquote-footer::after {
  content: "\00A0 \2014";
}

/* end blockquote */

/* carousel */

.carousel {
  position: relative;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-item {
  position: relative;
  display: none;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  -o-transition: -o-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease, -o-transform 0.6s ease;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-perspective: 1000px;
          perspective: 1000px;
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.carousel-item-next,
.carousel-item-prev {
  position: absolute;
  top: 0;
}

.carousel-item-next.carousel-item-left,
.carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.carousel-item-next,
.active.carousel-item-right {
  -webkit-transform: translate3d(100%, 0, 0);
          transform: translate3d(100%, 0, 0);
}

.carousel-item-prev,
.active.carousel-item-left {
  -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 15%;
  color: #fff;
  text-align: center;
  opacity: 0.5;
}

.carousel-control-prev:focus, .carousel-control-prev:hover,
.carousel-control-next:focus,
.carousel-control-next:hover {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: .9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: transparent no-repeat center center;
  -webkit-background-size: 100% 100%;
          background-size: 100% 100%;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23f57b20' viewBox='0 0 8 8'%3E%3Cpath d='M4 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23f57b20' viewBox='0 0 8 8'%3E%3Cpath d='M1.5 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 0;
  z-index: 15;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}

.carousel-indicators li {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  max-width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  background-color: rgba(54, 67, 76, 0.5);
}

.carousel-indicators li::before {
  position: absolute;
  top: -10px;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 10px;
  content: "";
}

.carousel-indicators li::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 10px;
  content: "";
}

.carousel-indicators .active {
  background-color: #36434c;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #36434c;
  text-align: center;
}

/* end carousel */

/* panel */
.panel {
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid transparent;
  /*
  border-radius: 4px;
  */
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
          box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
}
.panel-body {
  padding: 15px;
}
.panel-heading {
  padding: 5px 10px;
  border-bottom: 1px solid transparent;
  /*
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  */
}
.panel-heading > .dropdown .dropdown-toggle {
  color: inherit;
}
.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit;
}
.panel-title > a,
.panel-title > small,
.panel-title > .small,
.panel-title > small > a,
.panel-title > .small > a {
  color: inherit;
}
.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel > .list-group,
.panel > .panel-collapse > .list-group {
  margin-bottom: 0;
}
.panel > .list-group .list-group-item,
.panel > .panel-collapse > .list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0;
}
.panel > .list-group:first-child .list-group-item:first-child,
.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  border-top: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.panel > .list-group:last-child .list-group-item:last-child,
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  border-bottom: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}
.list-group + .panel-footer {
  border-top-width: 0;
}
.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
  margin-bottom: 0;
}
.panel > .table caption,
.panel > .table-responsive > .table caption,
.panel > .panel-collapse > .table caption {
  padding-right: 15px;
  padding-left: 15px;
}
.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  border-top-left-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  border-top-right-radius: 3px;
}
.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  border-bottom-left-radius: 3px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  border-bottom-right-radius: 3px;
}
.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
  border-top: 1px solid #ddd;
}
.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0;
}
.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
  border: 0;
}
.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0;
}
.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0;
}
.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  border-bottom: 0;
}
.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  border-bottom: 0;
}
.panel > .table-responsive {
  margin-bottom: 0;
  border: 0;
}
.panel-group {
  margin-bottom: 20px;
}
.panel-group .panel {
  margin-bottom: 0;
  /*border-radius: 4px;*/
}
.panel-group .panel + .panel {
  margin-top: 5px;
}
.panel-group .panel-heading {
  border-bottom: 0;
}
.panel-group .panel-heading + .panel-collapse > .panel-body,
.panel-group .panel-heading + .panel-collapse > .list-group {
  border-top: 1px solid #ddd;
}
.panel-group .panel-footer {
  border-top: 0;
}
.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #ddd;
}
.panel-default {
  border-color: #ddd;
}
.panel-default > .panel-heading {
  /*
  color: #333;
  background-color: #f5f5f5;
  */
  color: #fff;
  background-color: #36434c;
  border-color: #ddd;
  border-bottom: 1px solid #f57b20;
  margin: -1px;
}
.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ddd;
}
.panel-default > .panel-heading .badge {
  color: #f5f5f5;
  background-color: #333;
}
.panel-default > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ddd;
}
.panel-primary {
  border-color: #337ab7;
}
.panel-primary > .panel-heading {
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #337ab7;
}
.panel-primary > .panel-heading .badge {
  color: #337ab7;
  background-color: #fff;
}
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #337ab7;
}
.panel-success {
  border-color: #d6e9c6;
}
.panel-success > .panel-heading {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
.panel-success > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #d6e9c6;
}
.panel-success > .panel-heading .badge {
  color: #dff0d8;
  background-color: #3c763d;
}
.panel-success > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #d6e9c6;
}
.panel-info {
  border-color: #bce8f1;
}
.panel-info > .panel-heading {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}
.panel-info > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #bce8f1;
}
.panel-info > .panel-heading .badge {
  color: #d9edf7;
  background-color: #31708f;
}
.panel-info > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #bce8f1;
}
.panel-warning {
  border-color: #faebcc;
}
.panel-warning > .panel-heading {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}
.panel-warning > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #faebcc;
}
.panel-warning > .panel-heading .badge {
  color: #fcf8e3;
  background-color: #8a6d3b;
}
.panel-warning > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #faebcc;
}
.panel-danger {
  border-color: #ebccd1;
}
.panel-danger > .panel-heading {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
.panel-danger > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ebccd1;
}
.panel-danger > .panel-heading .badge {
  color: #f2dede;
  background-color: #a94442;
}
.panel-danger > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ebccd1;
}

.clearfix:before,
.clearfix:after,
.dl-horizontal dd:before,
.dl-horizontal dd:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.btn-toolbar:before,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after,
.nav:before,
.nav:after,
.navbar:before,
.navbar:after,
.navbar-header:before,
.navbar-header:after,
.navbar-collapse:before,
.navbar-collapse:after,
.pager:before,
.pager:after,
.panel-body:before,
.panel-body:after,
.modal-header:before,
.modal-header:after,
.modal-footer:before,
.modal-footer:after {
  display: table;
  content: " ";
}
.clearfix:after,
.dl-horizontal dd:after,
.container:after,
.container-fluid:after,
.row:after,
.form-horizontal .form-group:after,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:after,
.nav:after,
.navbar:after,
.navbar-header:after,
.navbar-collapse:after,
.pager:after,
.panel-body:after,
.modal-header:after,
.modal-footer:after {
  clear: both;
}

/* end panel */

/* glyphicons */

@font-face {
  font-family: 'Glyphicons Halflings';

  src: url(//www.aptech.com/wp-content/themes/jpc/fonts/bootstrap/glyphicons-halflings-regular.eot);
  src: url(//www.aptech.com/wp-content/themes/jpc/fonts/bootstrap/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'), url(//www.aptech.com/wp-content/themes/jpc/fonts/bootstrap/glyphicons-halflings-regular.woff2) format('woff2'), url(//www.aptech.com/wp-content/themes/jpc/fonts/bootstrap/glyphicons-halflings-regular.woff) format('woff'), url(//www.aptech.com/wp-content/themes/jpc/fonts/boostrap/glyphicons-halflings-regular.ttf) format('truetype'), url(//www.aptech.com/wp-content/themes/jpc/fonts/boostrap/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg');
}
.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: normal;
  line-height: 1;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.glyphicon-asterisk:before {
  content: "\002a";
}
.glyphicon-plus:before {
  content: "\002b";
}
.glyphicon-euro:before,
.glyphicon-eur:before {
  content: "\20ac";
}
.glyphicon-minus:before {
  content: "\2212";
}
.glyphicon-cloud:before {
  content: "\2601";
}
.glyphicon-envelope:before {
  content: "\2709";
}
.glyphicon-pencil:before {
  content: "\270f";
}
.glyphicon-glass:before {
  content: "\e001";
}
.glyphicon-music:before {
  content: "\e002";
}
.glyphicon-search:before {
  content: "\e003";
}
.glyphicon-heart:before {
  content: "\e005";
}
.glyphicon-star:before {
  content: "\e006";
}
.glyphicon-star-empty:before {
  content: "\e007";
}
.glyphicon-user:before {
  content: "\e008";
}
.glyphicon-film:before {
  content: "\e009";
}
.glyphicon-th-large:before {
  content: "\e010";
}
.glyphicon-th:before {
  content: "\e011";
}
.glyphicon-th-list:before {
  content: "\e012";
}
.glyphicon-ok:before {
  content: "\e013";
}
.glyphicon-remove:before {
  content: "\e014";
}
.glyphicon-zoom-in:before {
  content: "\e015";
}
.glyphicon-zoom-out:before {
  content: "\e016";
}
.glyphicon-off:before {
  content: "\e017";
}
.glyphicon-signal:before {
  content: "\e018";
}
.glyphicon-cog:before {
  content: "\e019";
}
.glyphicon-trash:before {
  content: "\e020";
}
.glyphicon-home:before {
  content: "\e021";
}
.glyphicon-file:before {
  content: "\e022";
}
.glyphicon-time:before {
  content: "\e023";
}
.glyphicon-road:before {
  content: "\e024";
}
.glyphicon-download-alt:before {
  content: "\e025";
}
.glyphicon-download:before {
  content: "\e026";
}
.glyphicon-upload:before {
  content: "\e027";
}
.glyphicon-inbox:before {
  content: "\e028";
}
.glyphicon-play-circle:before {
  content: "\e029";
}
.glyphicon-repeat:before {
  content: "\e030";
}
.glyphicon-refresh:before {
  content: "\e031";
}
.glyphicon-list-alt:before {
  content: "\e032";
}
.glyphicon-lock:before {
  content: "\e033";
}
.glyphicon-flag:before {
  content: "\e034";
}
.glyphicon-headphones:before {
  content: "\e035";
}
.glyphicon-volume-off:before {
  content: "\e036";
}
.glyphicon-volume-down:before {
  content: "\e037";
}
.glyphicon-volume-up:before {
  content: "\e038";
}
.glyphicon-qrcode:before {
  content: "\e039";
}
.glyphicon-barcode:before {
  content: "\e040";
}
.glyphicon-tag:before {
  content: "\e041";
}
.glyphicon-tags:before {
  content: "\e042";
}
.glyphicon-book:before {
  content: "\e043";
}
.glyphicon-bookmark:before {
  content: "\e044";
}
.glyphicon-print:before {
  content: "\e045";
}
.glyphicon-camera:before {
  content: "\e046";
}
.glyphicon-font:before {
  content: "\e047";
}
.glyphicon-bold:before {
  content: "\e048";
}
.glyphicon-italic:before {
  content: "\e049";
}
.glyphicon-text-height:before {
  content: "\e050";
}
.glyphicon-text-width:before {
  content: "\e051";
}
.glyphicon-align-left:before {
  content: "\e052";
}
.glyphicon-align-center:before {
  content: "\e053";
}
.glyphicon-align-right:before {
  content: "\e054";
}
.glyphicon-align-justify:before {
  content: "\e055";
}
.glyphicon-list:before {
  content: "\e056";
}
.glyphicon-indent-left:before {
  content: "\e057";
}
.glyphicon-indent-right:before {
  content: "\e058";
}
.glyphicon-facetime-video:before {
  content: "\e059";
}
.glyphicon-picture:before {
  content: "\e060";
}
.glyphicon-map-marker:before {
  content: "\e062";
}
.glyphicon-adjust:before {
  content: "\e063";
}
.glyphicon-tint:before {
  content: "\e064";
}
.glyphicon-edit:before {
  content: "\e065";
}
.glyphicon-share:before {
  content: "\e066";
}
.glyphicon-check:before {
  content: "\e067";
}
.glyphicon-move:before {
  content: "\e068";
}
.glyphicon-step-backward:before {
  content: "\e069";
}
.glyphicon-fast-backward:before {
  content: "\e070";
}
.glyphicon-backward:before {
  content: "\e071";
}
.glyphicon-play:before {
  content: "\e072";
}
.glyphicon-pause:before {
  content: "\e073";
}
.glyphicon-stop:before {
  content: "\e074";
}
.glyphicon-forward:before {
  content: "\e075";
}
.glyphicon-fast-forward:before {
  content: "\e076";
}
.glyphicon-step-forward:before {
  content: "\e077";
}
.glyphicon-eject:before {
  content: "\e078";
}
.glyphicon-chevron-left:before {
  content: "\e079";
}
.glyphicon-chevron-right:before {
  content: "\e080";
}
.glyphicon-plus-sign:before {
  content: "\e081";
}
.glyphicon-minus-sign:before {
  content: "\e082";
}
.glyphicon-remove-sign:before {
  content: "\e083";
}
.glyphicon-ok-sign:before {
  content: "\e084";
}
.glyphicon-question-sign:before {
  content: "\e085";
}
.glyphicon-info-sign:before {
  content: "\e086";
}
.glyphicon-screenshot:before {
  content: "\e087";
}
.glyphicon-remove-circle:before {
  content: "\e088";
}
.glyphicon-ok-circle:before {
  content: "\e089";
}
.glyphicon-ban-circle:before {
  content: "\e090";
}
.glyphicon-arrow-left:before {
  content: "\e091";
}
.glyphicon-arrow-right:before {
  content: "\e092";
}
.glyphicon-arrow-up:before {
  content: "\e093";
}
.glyphicon-arrow-down:before {
  content: "\e094";
}
.glyphicon-share-alt:before {
  content: "\e095";
}
.glyphicon-resize-full:before {
  content: "\e096";
}
.glyphicon-resize-small:before {
  content: "\e097";
}
.glyphicon-exclamation-sign:before {
  content: "\e101";
}
.glyphicon-gift:before {
  content: "\e102";
}
.glyphicon-leaf:before {
  content: "\e103";
}
.glyphicon-fire:before {
  content: "\e104";
}
.glyphicon-eye-open:before {
  content: "\e105";
}
.glyphicon-eye-close:before {
  content: "\e106";
}
.glyphicon-warning-sign:before {
  content: "\e107";
}
.glyphicon-plane:before {
  content: "\e108";
}
.glyphicon-calendar:before {
  content: "\e109";
}
.glyphicon-random:before {
  content: "\e110";
}
.glyphicon-comment:before {
  content: "\e111";
}
.glyphicon-magnet:before {
  content: "\e112";
}
.glyphicon-chevron-up:before {
  content: "\e113";
}
.glyphicon-chevron-down:before {
  content: "\e114";
}
.glyphicon-retweet:before {
  content: "\e115";
}
.glyphicon-shopping-cart:before {
  content: "\e116";
}
.glyphicon-folder-close:before {
  content: "\e117";
}
.glyphicon-folder-open:before {
  content: "\e118";
}
.glyphicon-resize-vertical:before {
  content: "\e119";
}
.glyphicon-resize-horizontal:before {
  content: "\e120";
}
.glyphicon-hdd:before {
  content: "\e121";
}
.glyphicon-bullhorn:before {
  content: "\e122";
}
.glyphicon-bell:before {
  content: "\e123";
}
.glyphicon-certificate:before {
  content: "\e124";
}
.glyphicon-thumbs-up:before {
  content: "\e125";
}
.glyphicon-thumbs-down:before {
  content: "\e126";
}
.glyphicon-hand-right:before {
  content: "\e127";
}
.glyphicon-hand-left:before {
  content: "\e128";
}
.glyphicon-hand-up:before {
  content: "\e129";
}
.glyphicon-hand-down:before {
  content: "\e130";
}
.glyphicon-circle-arrow-right:before {
  content: "\e131";
}
.glyphicon-circle-arrow-left:before {
  content: "\e132";
}
.glyphicon-circle-arrow-up:before {
  content: "\e133";
}
.glyphicon-circle-arrow-down:before {
  content: "\e134";
}
.glyphicon-globe:before {
  content: "\e135";
}
.glyphicon-wrench:before {
  content: "\e136";
}
.glyphicon-tasks:before {
  content: "\e137";
}
.glyphicon-filter:before {
  content: "\e138";
}
.glyphicon-briefcase:before {
  content: "\e139";
}
.glyphicon-fullscreen:before {
  content: "\e140";
}
.glyphicon-dashboard:before {
  content: "\e141";
}
.glyphicon-paperclip:before {
  content: "\e142";
}
.glyphicon-heart-empty:before {
  content: "\e143";
}
.glyphicon-link:before {
  content: "\e144";
}
.glyphicon-phone:before {
  content: "\e145";
}
.glyphicon-pushpin:before {
  content: "\e146";
}
.glyphicon-usd:before {
  content: "\e148";
}
.glyphicon-gbp:before {
  content: "\e149";
}
.glyphicon-sort:before {
  content: "\e150";
}
.glyphicon-sort-by-alphabet:before {
  content: "\e151";
}
.glyphicon-sort-by-alphabet-alt:before {
  content: "\e152";
}
.glyphicon-sort-by-order:before {
  content: "\e153";
}
.glyphicon-sort-by-order-alt:before {
  content: "\e154";
}
.glyphicon-sort-by-attributes:before {
  content: "\e155";
}
.glyphicon-sort-by-attributes-alt:before {
  content: "\e156";
}
.glyphicon-unchecked:before {
  content: "\e157";
}
.glyphicon-expand:before {
  content: "\e158";
}
.glyphicon-collapse-down:before {
  content: "\e159";
}
.glyphicon-collapse-up:before {
  content: "\e160";
}
.glyphicon-log-in:before {
  content: "\e161";
}
.glyphicon-flash:before {
  content: "\e162";
}
.glyphicon-log-out:before {
  content: "\e163";
}
.glyphicon-new-window:before {
  content: "\e164";
}
.glyphicon-record:before {
  content: "\e165";
}
.glyphicon-save:before {
  content: "\e166";
}
.glyphicon-open:before {
  content: "\e167";
}
.glyphicon-saved:before {
  content: "\e168";
}
.glyphicon-import:before {
  content: "\e169";
}
.glyphicon-export:before {
  content: "\e170";
}
.glyphicon-send:before {
  content: "\e171";
}
.glyphicon-floppy-disk:before {
  content: "\e172";
}
.glyphicon-floppy-saved:before {
  content: "\e173";
}
.glyphicon-floppy-remove:before {
  content: "\e174";
}
.glyphicon-floppy-save:before {
  content: "\e175";
}
.glyphicon-floppy-open:before {
  content: "\e176";
}
.glyphicon-credit-card:before {
  content: "\e177";
}
.glyphicon-transfer:before {
  content: "\e178";
}
.glyphicon-cutlery:before {
  content: "\e179";
}
.glyphicon-header:before {
  content: "\e180";
}
.glyphicon-compressed:before {
  content: "\e181";
}
.glyphicon-earphone:before {
  content: "\e182";
}
.glyphicon-phone-alt:before {
  content: "\e183";
}
.glyphicon-tower:before {
  content: "\e184";
}
.glyphicon-stats:before {
  content: "\e185";
}
.glyphicon-sd-video:before {
  content: "\e186";
}
.glyphicon-hd-video:before {
  content: "\e187";
}
.glyphicon-subtitles:before {
  content: "\e188";
}
.glyphicon-sound-stereo:before {
  content: "\e189";
}
.glyphicon-sound-dolby:before {
  content: "\e190";
}
.glyphicon-sound-5-1:before {
  content: "\e191";
}
.glyphicon-sound-6-1:before {
  content: "\e192";
}
.glyphicon-sound-7-1:before {
  content: "\e193";
}
.glyphicon-copyright-mark:before {
  content: "\e194";
}
.glyphicon-registration-mark:before {
  content: "\e195";
}
.glyphicon-cloud-download:before {
  content: "\e197";
}
.glyphicon-cloud-upload:before {
  content: "\e198";
}
.glyphicon-tree-conifer:before {
  content: "\e199";
}
.glyphicon-tree-deciduous:before {
  content: "\e200";
}
.glyphicon-cd:before {
  content: "\e201";
}
.glyphicon-save-file:before {
  content: "\e202";
}
.glyphicon-open-file:before {
  content: "\e203";
}
.glyphicon-level-up:before {
  content: "\e204";
}
.glyphicon-copy:before {
  content: "\e205";
}
.glyphicon-paste:before {
  content: "\e206";
}
.glyphicon-alert:before {
  content: "\e209";
}
.glyphicon-equalizer:before {
  content: "\e210";
}
.glyphicon-king:before {
  content: "\e211";
}
.glyphicon-queen:before {
  content: "\e212";
}
.glyphicon-pawn:before {
  content: "\e213";
}
.glyphicon-bishop:before {
  content: "\e214";
}
.glyphicon-knight:before {
  content: "\e215";
}
.glyphicon-baby-formula:before {
  content: "\e216";
}
.glyphicon-tent:before {
  content: "\26fa";
}
.glyphicon-blackboard:before {
  content: "\e218";
}
.glyphicon-bed:before {
  content: "\e219";
}
.glyphicon-apple:before {
  content: "\f8ff";
}
.glyphicon-erase:before {
  content: "\e221";
}
.glyphicon-hourglass:before {
  content: "\231b";
}
.glyphicon-lamp:before {
  content: "\e223";
}
.glyphicon-duplicate:before {
  content: "\e224";
}
.glyphicon-piggy-bank:before {
  content: "\e225";
}
.glyphicon-scissors:before {
  content: "\e226";
}
.glyphicon-bitcoin:before {
  content: "\e227";
}
.glyphicon-btc:before {
  content: "\e227";
}
.glyphicon-xbt:before {
  content: "\e227";
}
.glyphicon-yen:before {
  content: "\00a5";
}
.glyphicon-jpy:before {
  content: "\00a5";
}
.glyphicon-ruble:before {
  content: "\20bd";
}
.glyphicon-rub:before {
  content: "\20bd";
}
.glyphicon-scale:before {
  content: "\e230";
}
.glyphicon-ice-lolly:before {
  content: "\e231";
}
.glyphicon-ice-lolly-tasted:before {
  content: "\e232";
}
.glyphicon-education:before {
  content: "\e233";
}
.glyphicon-option-horizontal:before {
  content: "\e234";
}
.glyphicon-option-vertical:before {
  content: "\e235";
}
.glyphicon-menu-hamburger:before {
  content: "\e236";
}
.glyphicon-modal-window:before {
  content: "\e237";
}
.glyphicon-oil:before {
  content: "\e238";
}
.glyphicon-grain:before {
  content: "\e239";
}
.glyphicon-sunglasses:before {
  content: "\e240";
}
.glyphicon-text-size:before {
  content: "\e241";
}
.glyphicon-text-color:before {
  content: "\e242";
}
.glyphicon-text-background:before {
  content: "\e243";
}
.glyphicon-object-align-top:before {
  content: "\e244";
}
.glyphicon-object-align-bottom:before {
  content: "\e245";
}
.glyphicon-object-align-horizontal:before {
  content: "\e246";
}
.glyphicon-object-align-left:before {
  content: "\e247";
}
.glyphicon-object-align-vertical:before {
  content: "\e248";
}
.glyphicon-object-align-right:before {
  content: "\e249";
}
.glyphicon-triangle-right:before {
  content: "\e250";
}
.glyphicon-triangle-left:before {
  content: "\e251";
}
.glyphicon-triangle-bottom:before {
  content: "\e252";
}
.glyphicon-triangle-top:before {
  content: "\e253";
}
.glyphicon-console:before {
  content: "\e254";
}
.glyphicon-superscript:before {
  content: "\e255";
}
.glyphicon-subscript:before {
  content: "\e256";
}
.glyphicon-menu-left:before {
  content: "\e257";
}
.glyphicon-menu-right:before {
  content: "\e258";
}
.glyphicon-menu-down:before {
  content: "\e259";
}
.glyphicon-menu-up:before {
  content: "\e260";
}

/* end glyphicons */
@-ms-viewport{width:device-width}html{-webkit-box-sizing:border-box;box-sizing:border-box;-ms-overflow-style:scrollbar}*,::after,::before{-webkit-box-sizing:inherit;box-sizing:inherit}.container{margin-right:auto;margin-left:auto;padding-right:15px;padding-left:15px}@media (min-width:576px){.container{padding-right:15px;padding-left:15px}}@media (min-width:768px){.container{padding-right:15px;padding-left:15px}}@media (min-width:992px){.container{padding-right:15px;padding-left:15px}}@media (min-width:1200px){.container{padding-right:15px;padding-left:15px}}@media (min-width:576px){.container{width:540px;max-width:100%}}@media (min-width:768px){.container{width:720px;max-width:100%}}@media (min-width:992px){.container{width:960px;max-width:100%}}@media (min-width:1200px){.container{width:1140px;max-width:100%}}.container-fluid{width:100%;margin-right:auto;margin-left:auto;padding-right:15px;padding-left:15px}@media (min-width:576px){.container-fluid{padding-right:15px;padding-left:15px}}@media (min-width:768px){.container-fluid{padding-right:15px;padding-left:15px}}@media (min-width:992px){.container-fluid{padding-right:15px;padding-left:15px}}@media (min-width:1200px){.container-fluid{padding-right:15px;padding-left:15px}}.row{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}@media (min-width:576px){.row{margin-right:-15px;margin-left:-15px}}@media (min-width:768px){.row{margin-right:-15px;margin-left:-15px}}@media (min-width:992px){.row{margin-right:-15px;margin-left:-15px}}@media (min-width:1200px){.row{margin-right:-15px;margin-left:-15px}}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.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-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.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-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.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-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px}@media (min-width:576px){.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.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-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.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-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.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-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{padding-right:15px;padding-left:15px}}@media (min-width:768px){.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.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-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.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-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.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-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{padding-right:15px;padding-left:15px}}@media (min-width:992px){.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.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-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.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-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.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-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{padding-right:15px;padding-left:15px}}@media (min-width:1200px){.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.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-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.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-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.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-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{padding-right:15px;padding-left:15px}}.col{-webkit-flex-basis:0;-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-auto{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-1{-webkit-box-flex:0;-webkit-flex:0 0 8.333333%;-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-2{-webkit-box-flex:0;-webkit-flex:0 0 16.666667%;-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-3{-webkit-box-flex:0;-webkit-flex:0 0 25%;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-webkit-box-flex:0;-webkit-flex:0 0 33.333333%;-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-5{-webkit-box-flex:0;-webkit-flex:0 0 41.666667%;-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-6{-webkit-box-flex:0;-webkit-flex:0 0 50%;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-7{-webkit-box-flex:0;-webkit-flex:0 0 58.333333%;-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-8{-webkit-box-flex:0;-webkit-flex:0 0 66.666667%;-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-9{-webkit-box-flex:0;-webkit-flex:0 0 75%;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10{-webkit-box-flex:0;-webkit-flex:0 0 83.333333%;-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-11{-webkit-box-flex:0;-webkit-flex:0 0 91.666667%;-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-12{-webkit-box-flex:0;-webkit-flex:0 0 100%;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.pull-0{right:auto}.pull-1{right:8.333333%}.pull-2{right:16.666667%}.pull-3{right:25%}.pull-4{right:33.333333%}.pull-5{right:41.666667%}.pull-6{right:50%}.pull-7{right:58.333333%}.pull-8{right:66.666667%}.pull-9{right:75%}.pull-10{right:83.333333%}.pull-11{right:91.666667%}.pull-12{right:100%}.push-0{left:auto}.push-1{left:8.333333%}.push-2{left:16.666667%}.push-3{left:25%}.push-4{left:33.333333%}.push-5{left:41.666667%}.push-6{left:50%}.push-7{left:58.333333%}.push-8{left:66.666667%}.push-9{left:75%}.push-10{left:83.333333%}.push-11{left:91.666667%}.push-12{left:100%}.offset-1{margin-left:8.333333%}.offset-2{margin-left:16.666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.333333%}.offset-5{margin-left:41.666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.333333%}.offset-8{margin-left:66.666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.333333%}.offset-11{margin-left:91.666667%}@media (min-width:576px){.col-sm{-webkit-flex-basis:0;-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-sm-auto{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-sm-1{-webkit-box-flex:0;-webkit-flex:0 0 8.333333%;-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-sm-2{-webkit-box-flex:0;-webkit-flex:0 0 16.666667%;-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-sm-3{-webkit-box-flex:0;-webkit-flex:0 0 25%;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-webkit-box-flex:0;-webkit-flex:0 0 33.333333%;-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-sm-5{-webkit-box-flex:0;-webkit-flex:0 0 41.666667%;-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-sm-6{-webkit-box-flex:0;-webkit-flex:0 0 50%;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-webkit-box-flex:0;-webkit-flex:0 0 58.333333%;-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-sm-8{-webkit-box-flex:0;-webkit-flex:0 0 66.666667%;-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-sm-9{-webkit-box-flex:0;-webkit-flex:0 0 75%;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-10{-webkit-box-flex:0;-webkit-flex:0 0 83.333333%;-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-sm-11{-webkit-box-flex:0;-webkit-flex:0 0 91.666667%;-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-sm-12{-webkit-box-flex:0;-webkit-flex:0 0 100%;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.pull-sm-0{right:auto}.pull-sm-1{right:8.333333%}.pull-sm-2{right:16.666667%}.pull-sm-3{right:25%}.pull-sm-4{right:33.333333%}.pull-sm-5{right:41.666667%}.pull-sm-6{right:50%}.pull-sm-7{right:58.333333%}.pull-sm-8{right:66.666667%}.pull-sm-9{right:75%}.pull-sm-10{right:83.333333%}.pull-sm-11{right:91.666667%}.pull-sm-12{right:100%}.push-sm-0{left:auto}.push-sm-1{left:8.333333%}.push-sm-2{left:16.666667%}.push-sm-3{left:25%}.push-sm-4{left:33.333333%}.push-sm-5{left:41.666667%}.push-sm-6{left:50%}.push-sm-7{left:58.333333%}.push-sm-8{left:66.666667%}.push-sm-9{left:75%}.push-sm-10{left:83.333333%}.push-sm-11{left:91.666667%}.push-sm-12{left:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.333333%}.offset-sm-2{margin-left:16.666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.333333%}.offset-sm-5{margin-left:41.666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.333333%}.offset-sm-8{margin-left:66.666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.333333%}.offset-sm-11{margin-left:91.666667%}}@media (min-width:768px){.col-md{-webkit-flex-basis:0;-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-md-auto{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-md-1{-webkit-box-flex:0;-webkit-flex:0 0 8.333333%;-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-md-2{-webkit-box-flex:0;-webkit-flex:0 0 16.666667%;-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-md-3{-webkit-box-flex:0;-webkit-flex:0 0 25%;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-webkit-box-flex:0;-webkit-flex:0 0 33.333333%;-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-md-5{-webkit-box-flex:0;-webkit-flex:0 0 41.666667%;-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-md-6{-webkit-box-flex:0;-webkit-flex:0 0 50%;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-webkit-box-flex:0;-webkit-flex:0 0 58.333333%;-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-md-8{-webkit-box-flex:0;-webkit-flex:0 0 66.666667%;-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-md-9{-webkit-box-flex:0;-webkit-flex:0 0 75%;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-webkit-box-flex:0;-webkit-flex:0 0 83.333333%;-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-md-11{-webkit-box-flex:0;-webkit-flex:0 0 91.666667%;-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-md-12{-webkit-box-flex:0;-webkit-flex:0 0 100%;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.pull-md-0{right:auto}.pull-md-1{right:8.333333%}.pull-md-2{right:16.666667%}.pull-md-3{right:25%}.pull-md-4{right:33.333333%}.pull-md-5{right:41.666667%}.pull-md-6{right:50%}.pull-md-7{right:58.333333%}.pull-md-8{right:66.666667%}.pull-md-9{right:75%}.pull-md-10{right:83.333333%}.pull-md-11{right:91.666667%}.pull-md-12{right:100%}.push-md-0{left:auto}.push-md-1{left:8.333333%}.push-md-2{left:16.666667%}.push-md-3{left:25%}.push-md-4{left:33.333333%}.push-md-5{left:41.666667%}.push-md-6{left:50%}.push-md-7{left:58.333333%}.push-md-8{left:66.666667%}.push-md-9{left:75%}.push-md-10{left:83.333333%}.push-md-11{left:91.666667%}.push-md-12{left:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.333333%}.offset-md-2{margin-left:16.666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.333333%}.offset-md-5{margin-left:41.666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.333333%}.offset-md-8{margin-left:66.666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.333333%}.offset-md-11{margin-left:91.666667%}}@media (min-width:992px){.col-lg{-webkit-flex-basis:0;-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-lg-auto{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-lg-1{-webkit-box-flex:0;-webkit-flex:0 0 8.333333%;-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-lg-2{-webkit-box-flex:0;-webkit-flex:0 0 16.666667%;-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-lg-3{-webkit-box-flex:0;-webkit-flex:0 0 25%;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-webkit-box-flex:0;-webkit-flex:0 0 33.333333%;-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-lg-5{-webkit-box-flex:0;-webkit-flex:0 0 41.666667%;-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-lg-6{-webkit-box-flex:0;-webkit-flex:0 0 50%;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-webkit-box-flex:0;-webkit-flex:0 0 58.333333%;-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-lg-8{-webkit-box-flex:0;-webkit-flex:0 0 66.666667%;-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-lg-9{-webkit-box-flex:0;-webkit-flex:0 0 75%;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10{-webkit-box-flex:0;-webkit-flex:0 0 83.333333%;-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-lg-11{-webkit-box-flex:0;-webkit-flex:0 0 91.666667%;-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-lg-12{-webkit-box-flex:0;-webkit-flex:0 0 100%;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.pull-lg-0{right:auto}.pull-lg-1{right:8.333333%}.pull-lg-2{right:16.666667%}.pull-lg-3{right:25%}.pull-lg-4{right:33.333333%}.pull-lg-5{right:41.666667%}.pull-lg-6{right:50%}.pull-lg-7{right:58.333333%}.pull-lg-8{right:66.666667%}.pull-lg-9{right:75%}.pull-lg-10{right:83.333333%}.pull-lg-11{right:91.666667%}.pull-lg-12{right:100%}.push-lg-0{left:auto}.push-lg-1{left:8.333333%}.push-lg-2{left:16.666667%}.push-lg-3{left:25%}.push-lg-4{left:33.333333%}.push-lg-5{left:41.666667%}.push-lg-6{left:50%}.push-lg-7{left:58.333333%}.push-lg-8{left:66.666667%}.push-lg-9{left:75%}.push-lg-10{left:83.333333%}.push-lg-11{left:91.666667%}.push-lg-12{left:100%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.333333%}.offset-lg-2{margin-left:16.666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.333333%}.offset-lg-5{margin-left:41.666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.333333%}.offset-lg-8{margin-left:66.666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.333333%}.offset-lg-11{margin-left:91.666667%}}@media (min-width:1200px){.col-xl{-webkit-flex-basis:0;-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.col-xl-auto{-webkit-box-flex:0;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:none}.col-xl-1{-webkit-box-flex:0;-webkit-flex:0 0 8.333333%;-ms-flex:0 0 8.333333%;flex:0 0 8.333333%;max-width:8.333333%}.col-xl-2{-webkit-box-flex:0;-webkit-flex:0 0 16.666667%;-ms-flex:0 0 16.666667%;flex:0 0 16.666667%;max-width:16.666667%}.col-xl-3{-webkit-box-flex:0;-webkit-flex:0 0 25%;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-4{-webkit-box-flex:0;-webkit-flex:0 0 33.333333%;-ms-flex:0 0 33.333333%;flex:0 0 33.333333%;max-width:33.333333%}.col-xl-5{-webkit-box-flex:0;-webkit-flex:0 0 41.666667%;-ms-flex:0 0 41.666667%;flex:0 0 41.666667%;max-width:41.666667%}.col-xl-6{-webkit-box-flex:0;-webkit-flex:0 0 50%;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-7{-webkit-box-flex:0;-webkit-flex:0 0 58.333333%;-ms-flex:0 0 58.333333%;flex:0 0 58.333333%;max-width:58.333333%}.col-xl-8{-webkit-box-flex:0;-webkit-flex:0 0 66.666667%;-ms-flex:0 0 66.666667%;flex:0 0 66.666667%;max-width:66.666667%}.col-xl-9{-webkit-box-flex:0;-webkit-flex:0 0 75%;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xl-10{-webkit-box-flex:0;-webkit-flex:0 0 83.333333%;-ms-flex:0 0 83.333333%;flex:0 0 83.333333%;max-width:83.333333%}.col-xl-11{-webkit-box-flex:0;-webkit-flex:0 0 91.666667%;-ms-flex:0 0 91.666667%;flex:0 0 91.666667%;max-width:91.666667%}.col-xl-12{-webkit-box-flex:0;-webkit-flex:0 0 100%;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.pull-xl-0{right:auto}.pull-xl-1{right:8.333333%}.pull-xl-2{right:16.666667%}.pull-xl-3{right:25%}.pull-xl-4{right:33.333333%}.pull-xl-5{right:41.666667%}.pull-xl-6{right:50%}.pull-xl-7{right:58.333333%}.pull-xl-8{right:66.666667%}.pull-xl-9{right:75%}.pull-xl-10{right:83.333333%}.pull-xl-11{right:91.666667%}.pull-xl-12{right:100%}.push-xl-0{left:auto}.push-xl-1{left:8.333333%}.push-xl-2{left:16.666667%}.push-xl-3{left:25%}.push-xl-4{left:33.333333%}.push-xl-5{left:41.666667%}.push-xl-6{left:50%}.push-xl-7{left:58.333333%}.push-xl-8{left:66.666667%}.push-xl-9{left:75%}.push-xl-10{left:83.333333%}.push-xl-11{left:91.666667%}.push-xl-12{left:100%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.333333%}.offset-xl-2{margin-left:16.666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.333333%}.offset-xl-5{margin-left:41.666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.333333%}.offset-xl-8{margin-left:66.666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.333333%}.offset-xl-11{margin-left:91.666667%}}.order-first{-webkit-box-ordinal-group:0;-webkit-order:-1;-ms-flex-order:-1;order:-1}.order-last{-webkit-box-ordinal-group:2;-webkit-order:1;-ms-flex-order:1;order:1}.order-0{-webkit-box-ordinal-group:1;-webkit-order:0;-ms-flex-order:0;order:0}.flex-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-webkit-flex-direction:row!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-webkit-flex-direction:column!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:row-reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:column-reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-wrap{-webkit-flex-wrap:wrap!important;-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-nowrap{-webkit-flex-wrap:nowrap!important;-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-wrap-reverse{-webkit-flex-wrap:wrap-reverse!important;-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.justify-content-start{-webkit-box-pack:start!important;-webkit-justify-content:flex-start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-end{-webkit-box-pack:end!important;-webkit-justify-content:flex-end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-center{-webkit-box-pack:center!important;-webkit-justify-content:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-between{-webkit-box-pack:justify!important;-webkit-justify-content:space-between!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-around{-webkit-justify-content:space-around!important;-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-start{-webkit-box-align:start!important;-webkit-align-items:flex-start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-end{-webkit-box-align:end!important;-webkit-align-items:flex-end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-center{-webkit-box-align:center!important;-webkit-align-items:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-baseline{-webkit-box-align:baseline!important;-webkit-align-items:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-stretch{-webkit-box-align:stretch!important;-webkit-align-items:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-start{-webkit-align-content:flex-start!important;-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-end{-webkit-align-content:flex-end!important;-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-center{-webkit-align-content:center!important;-ms-flex-line-pack:center!important;align-content:center!important}.align-content-between{-webkit-align-content:space-between!important;-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-around{-webkit-align-content:space-around!important;-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-stretch{-webkit-align-content:stretch!important;-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-auto{-webkit-align-self:auto!important;-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-start{-webkit-align-self:flex-start!important;-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-end{-webkit-align-self:flex-end!important;-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-center{-webkit-align-self:center!important;-ms-flex-item-align:center!important;align-self:center!important}.align-self-baseline{-webkit-align-self:baseline!important;-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-stretch{-webkit-align-self:stretch!important;-ms-flex-item-align:stretch!important;align-self:stretch!important}@media (min-width:576px){.order-sm-first{-webkit-box-ordinal-group:0;-webkit-order:-1;-ms-flex-order:-1;order:-1}.order-sm-last{-webkit-box-ordinal-group:2;-webkit-order:1;-ms-flex-order:1;order:1}.order-sm-0{-webkit-box-ordinal-group:1;-webkit-order:0;-ms-flex-order:0;order:0}.flex-sm-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-webkit-flex-direction:row!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-sm-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-webkit-flex-direction:column!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-sm-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:row-reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-sm-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:column-reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-sm-wrap{-webkit-flex-wrap:wrap!important;-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-sm-nowrap{-webkit-flex-wrap:nowrap!important;-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-sm-wrap-reverse{-webkit-flex-wrap:wrap-reverse!important;-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.justify-content-sm-start{-webkit-box-pack:start!important;-webkit-justify-content:flex-start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-sm-end{-webkit-box-pack:end!important;-webkit-justify-content:flex-end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-sm-center{-webkit-box-pack:center!important;-webkit-justify-content:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-sm-between{-webkit-box-pack:justify!important;-webkit-justify-content:space-between!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-sm-around{-webkit-justify-content:space-around!important;-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-sm-start{-webkit-box-align:start!important;-webkit-align-items:flex-start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-sm-end{-webkit-box-align:end!important;-webkit-align-items:flex-end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-sm-center{-webkit-box-align:center!important;-webkit-align-items:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-sm-baseline{-webkit-box-align:baseline!important;-webkit-align-items:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-sm-stretch{-webkit-box-align:stretch!important;-webkit-align-items:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-sm-start{-webkit-align-content:flex-start!important;-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-sm-end{-webkit-align-content:flex-end!important;-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-sm-center{-webkit-align-content:center!important;-ms-flex-line-pack:center!important;align-content:center!important}.align-content-sm-between{-webkit-align-content:space-between!important;-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-sm-around{-webkit-align-content:space-around!important;-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-sm-stretch{-webkit-align-content:stretch!important;-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-sm-auto{-webkit-align-self:auto!important;-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-sm-start{-webkit-align-self:flex-start!important;-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-sm-end{-webkit-align-self:flex-end!important;-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-sm-center{-webkit-align-self:center!important;-ms-flex-item-align:center!important;align-self:center!important}.align-self-sm-baseline{-webkit-align-self:baseline!important;-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-sm-stretch{-webkit-align-self:stretch!important;-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:768px){.order-md-first{-webkit-box-ordinal-group:0;-webkit-order:-1;-ms-flex-order:-1;order:-1}.order-md-last{-webkit-box-ordinal-group:2;-webkit-order:1;-ms-flex-order:1;order:1}.order-md-0{-webkit-box-ordinal-group:1;-webkit-order:0;-ms-flex-order:0;order:0}.flex-md-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-webkit-flex-direction:row!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-md-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-webkit-flex-direction:column!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-md-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:row-reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-md-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:column-reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-md-wrap{-webkit-flex-wrap:wrap!important;-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-md-nowrap{-webkit-flex-wrap:nowrap!important;-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-md-wrap-reverse{-webkit-flex-wrap:wrap-reverse!important;-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.justify-content-md-start{-webkit-box-pack:start!important;-webkit-justify-content:flex-start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-md-end{-webkit-box-pack:end!important;-webkit-justify-content:flex-end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-md-center{-webkit-box-pack:center!important;-webkit-justify-content:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-md-between{-webkit-box-pack:justify!important;-webkit-justify-content:space-between!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-md-around{-webkit-justify-content:space-around!important;-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-md-start{-webkit-box-align:start!important;-webkit-align-items:flex-start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-md-end{-webkit-box-align:end!important;-webkit-align-items:flex-end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-md-center{-webkit-box-align:center!important;-webkit-align-items:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-md-baseline{-webkit-box-align:baseline!important;-webkit-align-items:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-md-stretch{-webkit-box-align:stretch!important;-webkit-align-items:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-md-start{-webkit-align-content:flex-start!important;-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-md-end{-webkit-align-content:flex-end!important;-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-md-center{-webkit-align-content:center!important;-ms-flex-line-pack:center!important;align-content:center!important}.align-content-md-between{-webkit-align-content:space-between!important;-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-md-around{-webkit-align-content:space-around!important;-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-md-stretch{-webkit-align-content:stretch!important;-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-md-auto{-webkit-align-self:auto!important;-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-md-start{-webkit-align-self:flex-start!important;-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-md-end{-webkit-align-self:flex-end!important;-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-md-center{-webkit-align-self:center!important;-ms-flex-item-align:center!important;align-self:center!important}.align-self-md-baseline{-webkit-align-self:baseline!important;-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-md-stretch{-webkit-align-self:stretch!important;-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:992px){.order-lg-first{-webkit-box-ordinal-group:0;-webkit-order:-1;-ms-flex-order:-1;order:-1}.order-lg-last{-webkit-box-ordinal-group:2;-webkit-order:1;-ms-flex-order:1;order:1}.order-lg-0{-webkit-box-ordinal-group:1;-webkit-order:0;-ms-flex-order:0;order:0}.flex-lg-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-webkit-flex-direction:row!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-lg-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-webkit-flex-direction:column!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-lg-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:row-reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-lg-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:column-reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-lg-wrap{-webkit-flex-wrap:wrap!important;-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-lg-nowrap{-webkit-flex-wrap:nowrap!important;-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-lg-wrap-reverse{-webkit-flex-wrap:wrap-reverse!important;-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.justify-content-lg-start{-webkit-box-pack:start!important;-webkit-justify-content:flex-start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-lg-end{-webkit-box-pack:end!important;-webkit-justify-content:flex-end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-lg-center{-webkit-box-pack:center!important;-webkit-justify-content:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-lg-between{-webkit-box-pack:justify!important;-webkit-justify-content:space-between!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-lg-around{-webkit-justify-content:space-around!important;-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-lg-start{-webkit-box-align:start!important;-webkit-align-items:flex-start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-lg-end{-webkit-box-align:end!important;-webkit-align-items:flex-end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-lg-center{-webkit-box-align:center!important;-webkit-align-items:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-lg-baseline{-webkit-box-align:baseline!important;-webkit-align-items:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-lg-stretch{-webkit-box-align:stretch!important;-webkit-align-items:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-lg-start{-webkit-align-content:flex-start!important;-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-lg-end{-webkit-align-content:flex-end!important;-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-lg-center{-webkit-align-content:center!important;-ms-flex-line-pack:center!important;align-content:center!important}.align-content-lg-between{-webkit-align-content:space-between!important;-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-lg-around{-webkit-align-content:space-around!important;-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-lg-stretch{-webkit-align-content:stretch!important;-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-lg-auto{-webkit-align-self:auto!important;-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-lg-start{-webkit-align-self:flex-start!important;-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-lg-end{-webkit-align-self:flex-end!important;-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-lg-center{-webkit-align-self:center!important;-ms-flex-item-align:center!important;align-self:center!important}.align-self-lg-baseline{-webkit-align-self:baseline!important;-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-lg-stretch{-webkit-align-self:stretch!important;-ms-flex-item-align:stretch!important;align-self:stretch!important}}@media (min-width:1200px){.order-xl-first{-webkit-box-ordinal-group:0;-webkit-order:-1;-ms-flex-order:-1;order:-1}.order-xl-last{-webkit-box-ordinal-group:2;-webkit-order:1;-ms-flex-order:1;order:1}.order-xl-0{-webkit-box-ordinal-group:1;-webkit-order:0;-ms-flex-order:0;order:0}.flex-xl-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-webkit-flex-direction:row!important;-ms-flex-direction:row!important;flex-direction:row!important}.flex-xl-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-webkit-flex-direction:column!important;-ms-flex-direction:column!important;flex-direction:column!important}.flex-xl-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:row-reverse!important;-ms-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.flex-xl-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:column-reverse!important;-ms-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.flex-xl-wrap{-webkit-flex-wrap:wrap!important;-ms-flex-wrap:wrap!important;flex-wrap:wrap!important}.flex-xl-nowrap{-webkit-flex-wrap:nowrap!important;-ms-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.flex-xl-wrap-reverse{-webkit-flex-wrap:wrap-reverse!important;-ms-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.justify-content-xl-start{-webkit-box-pack:start!important;-webkit-justify-content:flex-start!important;-ms-flex-pack:start!important;justify-content:flex-start!important}.justify-content-xl-end{-webkit-box-pack:end!important;-webkit-justify-content:flex-end!important;-ms-flex-pack:end!important;justify-content:flex-end!important}.justify-content-xl-center{-webkit-box-pack:center!important;-webkit-justify-content:center!important;-ms-flex-pack:center!important;justify-content:center!important}.justify-content-xl-between{-webkit-box-pack:justify!important;-webkit-justify-content:space-between!important;-ms-flex-pack:justify!important;justify-content:space-between!important}.justify-content-xl-around{-webkit-justify-content:space-around!important;-ms-flex-pack:distribute!important;justify-content:space-around!important}.align-items-xl-start{-webkit-box-align:start!important;-webkit-align-items:flex-start!important;-ms-flex-align:start!important;align-items:flex-start!important}.align-items-xl-end{-webkit-box-align:end!important;-webkit-align-items:flex-end!important;-ms-flex-align:end!important;align-items:flex-end!important}.align-items-xl-center{-webkit-box-align:center!important;-webkit-align-items:center!important;-ms-flex-align:center!important;align-items:center!important}.align-items-xl-baseline{-webkit-box-align:baseline!important;-webkit-align-items:baseline!important;-ms-flex-align:baseline!important;align-items:baseline!important}.align-items-xl-stretch{-webkit-box-align:stretch!important;-webkit-align-items:stretch!important;-ms-flex-align:stretch!important;align-items:stretch!important}.align-content-xl-start{-webkit-align-content:flex-start!important;-ms-flex-line-pack:start!important;align-content:flex-start!important}.align-content-xl-end{-webkit-align-content:flex-end!important;-ms-flex-line-pack:end!important;align-content:flex-end!important}.align-content-xl-center{-webkit-align-content:center!important;-ms-flex-line-pack:center!important;align-content:center!important}.align-content-xl-between{-webkit-align-content:space-between!important;-ms-flex-line-pack:justify!important;align-content:space-between!important}.align-content-xl-around{-webkit-align-content:space-around!important;-ms-flex-line-pack:distribute!important;align-content:space-around!important}.align-content-xl-stretch{-webkit-align-content:stretch!important;-ms-flex-line-pack:stretch!important;align-content:stretch!important}.align-self-xl-auto{-webkit-align-self:auto!important;-ms-flex-item-align:auto!important;align-self:auto!important}.align-self-xl-start{-webkit-align-self:flex-start!important;-ms-flex-item-align:start!important;align-self:flex-start!important}.align-self-xl-end{-webkit-align-self:flex-end!important;-ms-flex-item-align:end!important;align-self:flex-end!important}.align-self-xl-center{-webkit-align-self:center!important;-ms-flex-item-align:center!important;align-self:center!important}.align-self-xl-baseline{-webkit-align-self:baseline!important;-ms-flex-item-align:baseline!important;align-self:baseline!important}.align-self-xl-stretch{-webkit-align-self:stretch!important;-ms-flex-item-align:stretch!important;align-self:stretch!important}}/*# sourceMappingURL=bootstrap-grid.min.css.map *//*
Theme Name: Aptech
Theme URI: http://primeview.com
Author: Primeview LLC
Description: This theme is built for performance, A customized theme based on twentytsixteenth framework.
Version: 2.0
*/

/* =Notes

	This is the base theme of this template.
	
/* =Reset
-------------------------------------------------------------- */

/*
@font-face {
    font-family: 'lato';
    src: url(//www.aptech.com/wp-content/themes/jpc/css/fonts/lato-regular-webfont.woff2) format('woff2'),
         url(//www.aptech.com/wp-content/themes/jpc/css/fonts/lato-regular-webfont.woff) format('woff');
    font-weight: normal;
    font-style: normal;

}*/

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	/*font-size: 100%;*/
	vertical-align: baseline;
}
body {
	line-height: normal;
	font-family: 'lato',"Helvetica Neue", Helvetica, Arial;
        font-size: 18px;
	width: 100%;
	position: absolute;
}

ol,
ul {
	list-style: none;
}
.answer-content ol {
	list-style: decimal;
	padding-left: 40px;
}
.answer-content ul {
	list-style: disc;
	padding-left: 40px;
}
blockquote,
q {
	quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption,
th,
td {
	font-weight: normal;
	text-align: left;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}
html {
	overflow-y: scroll;
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
a:focus {
	outline: thin dotted;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
	display: block;
}
audio,
canvas,
video {
	display: inline-block;
}
audio:not([controls]) {
	display: none;
}
del {
	color: #333;
}
ins {
	background: #fff9c0;
	text-decoration: none;
}
hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin: 24px;
	margin-bottom: 1.714285714rem;
}
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	top: -0.5em;
}
sub {
	bottom: -0.25em;
}
small {
	font-size: smaller;
}
img {
	border: 0;
	-ms-interpolation-mode: bicubic;
}

/* Clearing floats */
.clear:after,
.wrapper:after,
.format-status .entry-header:after {
	clear: both;
}
.clear:before,
.clear:after,
.wrapper:before,
.wrapper:after,
.format-status .entry-header:before,
.format-status .entry-header:after {
	display: table;
	content: "";
}


/* =Repeatable patterns
-------------------------------------------------------------- */

/* Small headers */
.archive-title,
.page-title,
.widget-title,
.entry-content th,
.comment-content th {
/*
	font-size: 11px;
	font-size: 0.785714286rem;
*/
	line-height: 2.181818182;
/*	font-weight: bold;*/
/*	text-transform: uppercase;
	color: #636363; */
}

/* Shared Post Format styling */
article.format-quote footer.entry-meta,
article.format-link footer.entry-meta,
article.format-status footer.entry-meta {
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
}

/* Form fields, general styles first */
button,
input,
select,
textarea {
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 6px;
	padding: 0.428571429rem;
}
button,
input {
	line-height: normal;
}
textarea {
	font-size: 100%;
	overflow: auto;
	vertical-align: top;
}

/* Reset non-text input types */
input[type="checkbox"],
input[type="radio"],
input[type="file"],
input[type="hidden"],
input[type="image"],
input[type="color"] {
	border: 0;
	border-radius: 0;
	padding: 0;
}

/* Buttons */
.menu-toggle,
input[type="submit"],
input[type="button"],
input[type="reset"],
article.post-password-required input[type=submit],
.bypostauthor cite span {
	padding: 6px 10px;
	padding: 0.428571429rem 0.714285714rem;
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 1.428571429;
	font-weight: normal;
	color: #7c7c7c;
	background-color: #e6e6e6;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: -ms-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: -webkit-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: -o-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: linear-gradient(top, #f4f4f4, #e6e6e6);
	border: 1px solid #d2d2d2;
	border-radius: 3px;
	box-shadow: 0 1px 2px rgba(64, 64, 64, 0.1);
}
.menu-toggle,
button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
	cursor: pointer;
}
button[disabled],
input[disabled] {
	cursor: default;
}
.menu-toggle:hover,
.menu-toggle:focus,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
article.post-password-required input[type=submit]:hover {
	color: #5e5e5e;
	background-color: #ebebeb;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #f9f9f9, #ebebeb);
	background-image: -ms-linear-gradient(top, #f9f9f9, #ebebeb);
	background-image: -webkit-linear-gradient(top, #f9f9f9, #ebebeb);
	background-image: -o-linear-gradient(top, #f9f9f9, #ebebeb);
	background-image: linear-gradient(top, #f9f9f9, #ebebeb);
}
.menu-toggle:active,
.menu-toggle.toggled-on,
button:active,
input[type="submit"]:active,
input[type="button"]:active,
input[type="reset"]:active {
	color: #757575;
	background-color: #e1e1e1;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: -ms-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: -webkit-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: -o-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: linear-gradient(top, #ebebeb, #e1e1e1);
	box-shadow: inset 0 0 8px 2px #c6c6c6, 0 1px 0 0 #f4f4f4;
	border-color: transparent;
}
.bypostauthor cite span {
	color: #fff;
	background-color: #21759b;
	background-image: none;
	border: 1px solid #1f6f93;
	border-radius: 2px;
	box-shadow: none;
	padding: 0;
}

/* Responsive images */
.entry-content img,
.comment-content img,
.widget img {
	max-width: 100%; /* Fluid images for posts, comments, and widgets */
}
img[class*="align"],
img[class*="wp-image-"],
img[class*="attachment-"] {
	height: auto; /* Make sure images with WordPress-added height and width attributes are scaled correctly */
}
img.size-full,
img.size-large,
img.header-image,
img.wp-post-image {
	max-width: 100%;
	height: auto; /* Make sure images with WordPress-added height and width attributes are scaled correctly */
}

/* Make sure videos and embeds fit their containers */
embed,
iframe,
object,
video {
	max-width: 100%;
}
.entry-content .twitter-tweet-rendered {
	max-width: 100% !important; /* Override the Twitter embed fixed width */
}

/* Images */
.alignleft {
	float: left;
}
.alignright {
	float: right;
}
.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.entry-content img,
.comment-content img,
.widget img,
img.header-image,
.author-avatar img,
img.wp-post-image {
	/* Add fancy borders to all WordPress-added images but not things like badges and icons and the like */
	border-radius: 3px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}
.wp-caption {
	max-width: 100%; /* Keep wide captions from overflowing their container. */
	padding: 4px;
}
.wp-caption .wp-caption-text,
.gallery-caption,
.entry-caption {
	font-style: italic;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	color: #757575;
}
img.wp-smiley,
.rsswidget img {
	border: 0;
	border-radius: 0;
	box-shadow: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}
.entry-content dl.gallery-item {
	margin: 0;
}
.gallery-item a,
.gallery-caption {
	width: 90%;
}
.gallery-item a {
	display: block;
}
.gallery-caption a {
	display: inline;
}
.gallery-columns-1 .gallery-item a {
	max-width: 100%;
	width: auto;
}
.gallery .gallery-icon img {
	height: auto;
	max-width: 90%;
	padding: 5%;
}
.gallery-columns-1 .gallery-icon img {
	padding: 3%;
}

/* Navigation */
.site-content nav {
	clear: both;
	line-height: 2;
	overflow: hidden;
}
#nav-above {
	padding: 24px 0;
	padding: 1.714285714rem 0;
}
#nav-above {
	display: none;
}
.paged #nav-above {
	display: block;
}
.nav-previous,
.previous-image {
	float: left;
	width: 50%;
}
.nav-next,
.next-image {
	float: right;
	text-align: right;
	width: 50%;
}
.nav-single + .comments-area,
#comment-nav-above {
	margin: 48px 0;
	margin: 3.428571429rem 0;
}

/* Author profiles */
.author .archive-header {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.author-info {
	border-top: 1px solid #ededed;
	margin: 24px 0;
	margin: 1.714285714rem 0;
	padding-top: 24px;
	padding-top: 1.714285714rem;
	overflow: hidden;
}
.author-description p {
	color: #757575;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.author.archive .author-info {
	border-top: 0;
	margin: 0 0 48px;
	margin: 0 0 3.428571429rem;
}
.author.archive .author-avatar {
	margin-top: 0;
}


/* =Basic structure
-------------------------------------------------------------- */

/* Body, links, basics */
html {
	font-size: 87.5%;
}
body {
	font-size: 14px;
	font-size: 1rem;
	text-rendering: optimizeLegibility;
	color: #444;
}
a {
	outline: none;
	color: #21759b;
}
a:hover {
	color: #0f3647;
}

/* Assistive text */
.assistive-text,
.site .screen-reader-text {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
	overflow: hidden;
	height: 1px;
	width: 1px;
}
.main-navigation .assistive-text:focus,
.site .screen-reader-text:hover,
.site .screen-reader-text:active,
.site .screen-reader-text:focus {
	background: #fff;
	border: 2px solid #333;
	border-radius: 3px;
	clip: auto !important;
	color: #000;
	display: block;
	font-size: 12px;
	height: auto;
	padding: 12px;
	position: absolute;
	top: 5px;
	left: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar */
}

/* Page structure */
.site {
	padding: 0px;
	background-color: #fff;
}
.site-content {
	margin: 24px 0 0;
	margin: 1.714285714rem 0 0;
}
.widget-area {
	margin: 24px 0 0;
	margin: 1.714285714rem 0 0;
}

/* Header */
.site-header {
	padding: 0px;
}
.site-header h1,
.site-header h2 {
	text-align: center;
}
.site-header h1 a,
.site-header h2 a {
	color: #515151;
	display: inline-block;
	text-decoration: none;
}
.site-header h1 a:hover,
.site-header h2 a:hover {
	color: #21759b;
}
.site-header h1 {
	font-size: 24px;
	font-size: 1.714285714rem;
	line-height: 1.285714286;
	margin-bottom: 14px;
	margin-bottom: 1rem;
}
.site-header h2 {
	font-weight: normal;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #757575;
}
.header-image {
	margin-top: 24px;
	margin-top: 1.714285714rem;
}

/* Navigation Menu */
.main-navigation {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	text-align: center;
}
.main-navigation li {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.42857143;
}
.main-navigation a {
	color: #5e5e5e;
}
.main-navigation a:hover,
.main-navigation a:focus {
	color: #21759b;
}
.main-navigation ul.nav-menu,
.main-navigation div.nav-menu > ul {
	display: none;
}
.main-navigation ul.nav-menu.toggled-on,
.menu-toggle {
	display: inline-block;
}

/* Banner */
section[role="banner"] {
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
}

/* Sidebar */
.widget-area .widget {
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
	/*margin-bottom: 48px;
	margin-bottom: 3.428571429rem;*/
	margin-bottom: 0;
	word-wrap: break-word;
}
.widget-area .widget h3 {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.widget-area .widget p,
.widget-area .widget li,
.widget-area .widget .textwidget {
/*
	font-size: 13px;
	font-size: 0.928571429rem;
*/
	line-height: 1.846153846;
}
.widget-area .widget p {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.widget-area .textwidget ul {
	list-style: disc inside;
	/*margin: 0 0 24px;
	margin: 0 0 1.714285714rem;*/
	margin: 0;
}
.widget-area .textwidget li {
	margin-left: 36px;
	margin-left: 2.571428571rem;
}
.widget-area .widget a {
	color: #757575;
}
.widget-area .widget a:hover {
	color: #36434c;
}
.widget-area .widget a:visited {
	color: #9f9f9f;
}
.widget-area #s {
	width: 53.66666666666%; /* define a width to avoid dropping a wider submit button */
}

/* Footer */
footer[role="contentinfo"] {
	border-top: 1px solid #ededed;
	clear: both;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	max-width: 960px;
	max-width: 68.571428571rem;
	margin-top: 24px;
	margin-top: 1.714285714rem;
	margin-left: auto;
	margin-right: auto;
	padding: 24px 0;
	padding: 1.714285714rem 0;
}
footer[role="contentinfo"] a {
	color: #686868;
}
footer[role="contentinfo"] a:hover {
	color: #21759b;
}


/* =Main content and comment content
-------------------------------------------------------------- */

.entry-meta {
	clear: both;
}
.entry-header {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.entry-header img.wp-post-image {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.entry-header .entry-title {
	font-size: 20px;
	font-size: 1.428571429rem;
	line-height: 1.2;
	font-weight: normal;
}
.entry-header .entry-title a {
	text-decoration: none;
}
.entry-header .entry-format {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-weight: normal;
}
.entry-header .comments-link {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #757575;
}
.comments-link a,
.entry-meta a {
	color: #757575;
}
.comments-link a:hover,
.entry-meta a:hover {
	color: #21759b;
}
article.sticky .featured-post {
	border-top: 4px double #ededed;
	border-bottom: 4px double #ededed;
	color: #757575;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 3.692307692;
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
	text-align: center;
}
div.entry-content {
margin: 15px;
}
.entry-content,
.entry-summary,
.mu_register {
	line-height: 1.714285714;
}
.entry-content h1,
.comment-content h1,
.entry-content h2,
.comment-content h2,
.entry-content h3,
.comment-content h3,
.entry-content h4,
.comment-content h4,
.entry-content h5,
.comment-content h5,
.entry-content h6,
.comment-content h6 {
	margin: 24px 0 0 0;
	margin: 1.714285714rem 0 0 0;
	line-height: 1.714285714;
}
.entry-content h1,
.comment-content h1 {
	font-size: 44px;
        font-weight: 300;
	/*font-size: 1.5rem;*/
	line-height: 1.5;
}
.entry-content h2,
.comment-content h2,
.mu_register h2 {
	font-size: 18px;
        font-weight: 300;
	/*font-size: 1.285714286rem;*/
	line-height: 1.6;
}
.entry-content h3,
.comment-content h3 {
	font-size: 24px;
        font-weight: 400;
	/*font-size: 1.142857143rem;*/
	line-height: 1.846153846;
        /*margin: 0px;*/
}
.entry-content h4,
.comment-content h4 {
	font-size: 18px;
        font-weight: bold;
	/*font-size: 1rem;*/
	line-height: 1.846153846;
}
.entry-content h5,
.comment-content h5 {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.entry-content h6,
.comment-content h6 {
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.846153846;
}
.entry-content p,
.entry-summary p,
.comment-content p,
.mu_register p {
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
	line-height: 1.714285714;
}
.entry-content a:visited,
.comment-content a:visited {
	color: #9f9f9f;
}
.entry-content .more-link {
	white-space: nowrap;
}
.entry-content ol,
.comment-content ol,
.entry-content ul:not(.nav),
.comment-content ul,
.mu_register ul {
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
	line-height: 1.714285714;
}
.entry-content ul ul,
.comment-content ul ul,
.entry-content ol ol,
.comment-content ol ol,
.entry-content ul ol,
.comment-content ul ol,
.entry-content ol ul,
.comment-content ol ul {
	margin-bottom: 0;
}
.entry-content ul:not(.nav),
.comment-content ul,
.mu_register ul {
	list-style: disc outside;
}
.entry-content ol,
.comment-content ol {
	list-style: decimal outside;
}
.entry-content li:not(.nav-item),
.comment-content li,
.mu_register li {
	margin: 0 0 0 36px;
	margin: 0.5rem 0 0 2.571428571rem;
}
.entry-content blockquote,
.comment-content blockquote {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
	padding: 24px;
	padding: 1.714285714rem;
	font-style: italic;
}
.entry-content blockquote p:last-child,
.comment-content blockquote p:last-child {
	margin-bottom: 0;
}
.entry-content code,
.comment-content code {
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
}

.entry-content pre,
.comment-content pre {
	border: 1px solid #ededed;
	color: #444;
	overflow: auto;
	padding: 12px;
	margin: 15px 0px;
}
.entry-content pre code,
.comment-content pre code {
	display: block;
}
.entry-content abbr,
.comment-content abbr,
.entry-content dfn,
.comment-content dfn,
.entry-content acronym,
.comment-content acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}
.entry-content address,
.comment-content address {
	display: block;
	line-height: 1.714285714;
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
}
img.alignleft,
.wp-caption.alignleft {
	margin: 12px 24px 12px 0;
	margin: 0.857142857rem 1.714285714rem 0.857142857rem 0;
}
img.alignright,
.wp-caption.alignright {
	margin: 12px 0 12px 24px;
	margin: 0.857142857rem 0 0.857142857rem 1.714285714rem;
}
img.aligncenter,
.wp-caption.aligncenter {
	clear: both;
	margin-top: 12px;
	margin-top: 0.857142857rem;
	margin-bottom: 12px;
	margin-bottom: 0.857142857rem;
}
.entry-content embed,
.entry-content iframe,
.entry-content object,
.entry-content video {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
/*
.entry-content dl,
.comment-content dl {
	margin: 0 24px;
	margin: 0 1.714285714rem;
}
*/
.entry-content dt,
.comment-content dt {
	font-weight: bold;
	line-height: 1.714285714;
}
.entry-content dd,
.comment-content dd {
	line-height: 1.714285714;
	margin-bottom: 12px;
/*
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
*/
        margin-left: 24px; 
}
.entry-content table,
.comment-content table {
	border-bottom: 1px solid #ededed;
        /*
	color: #757575;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;*/
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
	width: 100%;
}
.entry-content table caption,
.comment-content table caption {
	font-size: 16px;
	font-size: 1.142857143rem;
	margin: 24px 0;
	margin: 1.714285714rem 0;
}
.entry-content td,
.comment-content td {
	border-top: 1px solid #ededed;
	padding: 6px 10px 6px 0;
}
.site-content article {
	border-bottom: 4px double #ededed;
	margin-bottom: 72px;
	margin-bottom: 5.142857143rem;
	padding-bottom: 24px;
	padding-bottom: 1.714285714rem;
	word-wrap: break-word;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
}
.page-links {
	clear: both;
	line-height: 1.714285714;
}
footer.entry-meta {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #757575;
}
.single-author .entry-meta .by-author {
	display: none;
}
.mu_register h2 {
	color: #757575;
	font-weight: normal;
}


/* =Archives
-------------------------------------------------------------- */

.archive-header,
.page-header {
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
	padding-bottom: 22px;
	padding-bottom: 1.571428571rem;
	border-bottom: 1px solid #ededed;
}
.archive-meta {
	color: #757575;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	margin-top: 22px;
	margin-top: 1.571428571rem;
}

/* =Single audio/video attachment view
-------------------------------------------------------------- */

.attachment .entry-content .mejs-audio {
	max-width: 400px;
}

.attachment .entry-content .mejs-container {
	margin-bottom: 24px;
}


/* =Single image attachment view
-------------------------------------------------------------- */

.article.attachment {
	overflow: hidden;
}
.image-attachment div.attachment {
	text-align: center;
}
.image-attachment div.attachment p {
	text-align: center;
}
.image-attachment div.attachment img {
	display: block;
	height: auto;
	margin: 0 auto;
	max-width: 100%;
}
.image-attachment .entry-caption {
	margin-top: 8px;
	margin-top: 0.571428571rem;
}


/* =Aside post format
-------------------------------------------------------------- */

article.format-aside h1 {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
article.format-aside h1 a {
	text-decoration: none;
	color: #4d525a;
}
article.format-aside h1 a:hover {
	color: #2e3542;
}
article.format-aside .aside {
	padding: 24px 24px 0;
	padding: 1.714285714rem;
	background: #d2e0f9;
	border-left: 22px solid #a8bfe8;
}
article.format-aside p {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #4a5466;
}
article.format-aside blockquote:last-child,
article.format-aside p:last-child {
	margin-bottom: 0;
}


/* =Post formats
-------------------------------------------------------------- */

/* Image posts */
article.format-image footer h1 {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	font-weight: normal;
}
article.format-image footer h2 {
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
}
article.format-image footer a h2 {
	font-weight: normal;
}

/* Link posts */
article.format-link header {
	padding: 0 10px;
	padding: 0 0.714285714rem;
	float: right;
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
	font-weight: bold;
	font-style: italic;
	text-transform: uppercase;
	color: #848484;
	background-color: #ebebeb;
	border-radius: 3px;
}
article.format-link .entry-content {
	max-width: 80%;
	float: left;
}
article.format-link .entry-content a {
	font-size: 22px;
	font-size: 1.571428571rem;
	line-height: 1.090909091;
	text-decoration: none;
}

/* Quote posts */
article.format-quote .entry-content p {
	margin: 0;
	padding-bottom: 24px;
	padding-bottom: 1.714285714rem;
}
article.format-quote .entry-content blockquote {
	display: block;
	padding: 24px 24px 0;
	padding: 1.714285714rem 1.714285714rem 0;
	font-size: 15px;
	font-size: 1.071428571rem;
	line-height: 1.6;
	font-style: normal;
	color: #6a6a6a;
	background: #efefef;
}

/* Status posts */
.format-status .entry-header {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.format-status .entry-header header {
	display: inline-block;
}
.format-status .entry-header h1 {
	font-size: 15px;
	font-size: 1.071428571rem;
	font-weight: normal;
	line-height: 1.6;
	margin: 0;
}
.format-status .entry-header h2 {
	font-size: 12px;
	font-size: 0.857142857rem;
	font-weight: normal;
	line-height: 2;
	margin: 0;
}
.format-status .entry-header header a {
	color: #757575;
}
.format-status .entry-header header a:hover {
	color: #21759b;
}
.format-status .entry-header img {
	float: left;
	margin-right: 21px;
	margin-right: 1.5rem;
}


/* =Comments
-------------------------------------------------------------- */

.comments-title {
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
	font-size: 16px;
	font-size: 1.142857143rem;
	line-height: 1.5;
	font-weight: normal;
}
.comments-area article {
	margin: 24px 0;
	margin: 1.714285714rem 0;
}
.comments-area article header {
	margin: 0 0 48px;
	margin: 0 0 3.428571429rem;
	overflow: hidden;
	position: relative;
}
.comments-area article header img {
	float: left;
	padding: 0;
	line-height: 0;
}
.comments-area article header cite,
.comments-area article header time {
	display: block;
	margin-left: 85px;
	margin-left: 6.071428571rem;
}
.comments-area article header cite {
	font-style: normal;
	font-size: 15px;
	font-size: 1.071428571rem;
	line-height: 1.42857143;
}
.comments-area cite b {
	font-weight: normal;
}
.comments-area article header time {
	line-height: 1.714285714;
	text-decoration: none;
	font-size: 12px;
	font-size: 0.857142857rem;
	color: #5e5e5e;
}
.comments-area article header a {
	text-decoration: none;
	color: #5e5e5e;
}
.comments-area article header a:hover {
	color: #21759b;
}
.comments-area article header cite a {
	color: #444;
}
.comments-area article header cite a:hover {
	text-decoration: underline;
}
.comments-area article header h4 {
	position: absolute;
	top: 0;
	right: 0;
	padding: 6px 12px;
	padding: 0.428571429rem 0.857142857rem;
	font-size: 12px;
	font-size: 0.857142857rem;
	font-weight: normal;
	color: #fff;
	background-color: #0088d0;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #009cee, #0088d0);
	background-image: -ms-linear-gradient(top, #009cee, #0088d0);
	background-image: -webkit-linear-gradient(top, #009cee, #0088d0);
	background-image: -o-linear-gradient(top, #009cee, #0088d0);
	background-image: linear-gradient(top, #009cee, #0088d0);
	border-radius: 3px;
	border: 1px solid #007cbd;
}
.comments-area .bypostauthor cite span {
	position: absolute;
	margin-left: 5px;
	margin-left: 0.357142857rem;
	padding: 2px 5px;
	padding: 0.142857143rem 0.357142857rem;
	font-size: 10px;
	font-size: 0.714285714rem;
}
.comments-area .bypostauthor cite b {
	font-weight: bold;
}
a.comment-reply-link,
a.comment-edit-link {
	color: #686868;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
a.comment-reply-link:hover,
a.comment-edit-link:hover {
	color: #21759b;
}
.commentlist .pingback {
	line-height: 1.714285714;
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}

/* Comment form */
#respond {
	margin-top: 48px;
	margin-top: 3.428571429rem;
}
#respond h3#reply-title {
	font-size: 16px;
	font-size: 1.142857143rem;
	line-height: 1.5;
}
#respond h3#reply-title #cancel-comment-reply-link {
	margin-left: 10px;
	margin-left: 0.714285714rem;
	font-weight: normal;
	font-size: 12px;
	font-size: 0.857142857rem;
}
#respond form {
	margin: 24px 0;
	margin: 1.714285714rem 0;
}
#respond form p {
	margin: 11px 0;
	margin: 0.785714286rem 0;
}
#respond form p.logged-in-as {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
#respond form label {
	display: block;
	line-height: 1.714285714;
}
#respond form input[type="text"],
#respond form textarea {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.714285714;
	padding: 10px;
	padding: 0.714285714rem;
	width: 100%;
}
#respond form p.form-allowed-tags {
	margin: 0;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	color: #5e5e5e;
}
.required {
	color: red;
}


/* =Front page template
-------------------------------------------------------------- */

#what-we-offer .four-widgets p {
	min-height: 140px;
}

.entry-page-image {
	margin-bottom: 14px;
	margin-bottom: 1rem;
}
.template-front-page .site-content article {
	border: 0;
	margin-bottom: 0;
}
.template-front-page .widget-area {
	clear: both;
	float: none;
	width: auto;
	padding-top: 24px;
	padding-top: 1.714285714rem;
	border-top: 1px solid #ededed;
}
.template-front-page .widget-area .widget li {
	margin: 8px 0 0;
	margin: 0.571428571rem 0 0;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.714285714;
	list-style-type: square;
	list-style-position: inside;
}
.template-front-page .widget-area .widget li a {
	color: #757575;
}
.template-front-page .widget-area .widget li a:hover {
	color: #21759b;
}
.template-front-page .widget-area .widget_text img {
	float: left;
	margin: 8px 24px 8px 0;
	margin: 0.571428571rem 1.714285714rem 0.571428571rem 0;
}


/* =Widgets
-------------------------------------------------------------- */

.widget-area .widget ul ul {
	margin-left: 12px;
	margin-left: 0.857142857rem;
}
.widget_rss li {
	margin: 12px 0;
	margin: 0.857142857rem 0;
}
.widget_recent_entries .post-date,
.widget_rss .rss-date {
	color: #aaa;
	font-size: 11px;
	font-size: 0.785714286rem;
	margin-left: 12px;
	margin-left: 0.857142857rem;
}
#wp-calendar {
	margin: 0;
	width: 100%;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #686868;
}
#wp-calendar th,
#wp-calendar td,
#wp-calendar caption {
	text-align: left;
}
#wp-calendar #next {
	padding-right: 24px;
	padding-right: 1.714285714rem;
	text-align: right;
}
.widget_search label {
	display: block;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.widget_twitter li {
	list-style-type: none;
}
.widget_twitter .timesince {
	display: block;
	text-align: right;
}


/* =Plugins
----------------------------------------------- */

img#wpstats {
	display: block;
	margin: 0 auto 24px;
	margin: 0 auto 1.714285714rem;
}

/* =Shortcode - well
------------------------------------------------ */
.well{
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.05);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.05);
    box-sizing: border-box;
}

.well-lg {
padding: 24px;
border-radius: 6px;
}

.well-sm {
    padding: 9px;
    border-radius: 3px;
}

/* =Media queries
-------------------------------------------------------------- */

/* Does the same thing as <meta name="viewport" content="width=device-width">,
 * but in the future W3C standard way. -ms- prefix is required for IE10+ to
 * render responsive styling in Windows 8 "snapped" views; IE10+ does not honor
 * the meta tag. See https://core.trac.wordpress.org/ticket/25888.
 */
@-ms-viewport {
	width: device-width;
}
@viewport {
	width: device-width;
}

/* Minimum width of 600 pixels. */
@media screen and (min-width: 600px) {
	.author-avatar {
		float: left;
		margin-top: 8px;
		margin-top: 0.571428571rem;
	}
	.author-description {
		float: right;
		width: 80%;
	}
	.site {
		margin: 0 auto;
		max-width: 960px;
		max-width: none;
		overflow: hidden;
	}
	.site-content {
		float: left;
		width: 65.104166667%;
	}
	body.template-front-page .site-content,
	body.attachment .site-content,
	body.full-width .site-content {
		width: 100%;
	}
	/*.widget-area {
		float: right;
		width: 26.041666667%;
	}*/
	.site-header h1,
	.site-header h2 {
		text-align: left;
	}
	.site-header h1 {
		font-size: 26px;
		font-size: 1.857142857rem;
		line-height: 1.846153846;
		margin-bottom: 0;
	}
	.main-navigation ul.nav-menu,
	.main-navigation div.nav-menu > ul {
		border-bottom: 1px solid #ededed;
		border-top: 1px solid #ededed;
		display: inline-block !important;
		text-align: left;
		width: 100%;
	}
	.main-navigation ul {
		margin: 0;
		text-indent: 0;
	}
	.main-navigation li a,
	.main-navigation li {
		display: inline-block;
		text-decoration: none;
	}
	.main-navigation li a {
		border-bottom: 0;
		color: #6a6a6a;
		line-height: 3.692307692;
		text-transform: uppercase;
		white-space: nowrap;
	}
	.main-navigation li a:hover,
	.main-navigation li a:focus {
		color: #000;
	}
	.main-navigation li {
		margin: 0 40px 0 0;
		margin: 0 2.857142857rem 0 0;
		position: relative;
	} 
	.main-navigation li ul {
		margin: 0;
		padding: 0;
		position: absolute;
		top: 100%;
		z-index: 1;
		height: 1px;
		width: 1px;
		overflow: hidden;
		clip: rect(1px, 1px, 1px, 1px);
	}
	.main-navigation li ul ul {
		top: 0;
		left: 100%;
	}
	.main-navigation ul li:hover > ul,
	.main-navigation ul li:focus > ul,
	.main-navigation .focus > ul {
		border-left: 0;
		clip: inherit;
		overflow: inherit;
		height: inherit;
		width: inherit;
	}
	.main-navigation li ul li a {
		background: #efefef;
		border-bottom: 1px solid #ededed;
		display: block;
		font-size: 11px;
		font-size: 0.785714286rem;
		line-height: 2.181818182;
		padding: 8px 10px;
		padding: 0.571428571rem 0.714285714rem;
		width: 180px;
		width: 12.85714286rem;
		white-space: normal;
	}
	.main-navigation li ul li a:hover,
	.main-navigation li ul li a:focus {
		background: #e3e3e3;
		color: #444;
	}
	.main-navigation .current-menu-item > a,
	.main-navigation .current-menu-ancestor > a,
	.main-navigation .current_page_item > a,
	.main-navigation .current_page_ancestor > a {
		color: #636363;
		font-weight: bold;
	}
	.menu-toggle {
		display: none;
	}
	.entry-header .entry-title {
		font-size: 22px;
		font-size: 1.571428571rem;
	}
	#respond form input[type="text"] {
		width: 46.333333333%;
	}
	#respond form textarea.blog-textarea {
		width: 79.666666667%;
	}
	.template-front-page .site-content,
	.template-front-page article {
		overflow: hidden;
	}
	.template-front-page.has-post-thumbnail article {
		float: left;
		width: 47.916666667%;
	}
	.entry-page-image {
		float: right;
		margin-bottom: 0;
		width: 47.916666667%;
	}
	.template-front-page .widget-area .widget,
	.template-front-page.two-sidebars .widget-area .front-widgets {
		float: left;
		width: 51.875%;
		margin-bottom: 24px;
		margin-bottom: 1.714285714rem;
	}
	.template-front-page .widget-area .widget:nth-child(odd) {
		clear: right;
	}
	.template-front-page .widget-area .widget:nth-child(even),
	.template-front-page.two-sidebars .widget-area .front-widgets + .front-widgets {
		float: right;
		width: 39.0625%;
		margin: 0 0 24px;
		margin: 0 0 1.714285714rem;
	}
	.template-front-page.two-sidebars .widget,
	.template-front-page.two-sidebars .widget:nth-child(even) {
		float: none;
		width: auto;
	}
	.commentlist .children {
		margin-left: 48px;
		margin-left: 3.428571429rem;
	}
}

/* Minimum width of 960 pixels. */
@media screen and (min-width: 960px) {
	body {
		background-color: #e6e6e6;
	}
	body .site {
		margin:0px;
	}
	body.custom-background-empty {
		background-color: #fff;
	}
	body.custom-background-empty .site,
	body.custom-background-white .site {
		padding: 0;
		margin-top: 0;
		margin-bottom: 0;
		box-shadow: none;
	}
}


/* =Print
----------------------------------------------- */

@media print {
	body {
		background: none !important;
		color: #000;
		font-size: 10pt;
	}
	footer a[rel=bookmark]:link:after,
	footer a[rel=bookmark]:visited:after {
		content: " [" attr(href) "] "; /* Show URLs */
	}
	a {
		text-decoration: none;
	}
	.entry-content img,
	.comment-content img,
	.author-avatar img,
	img.wp-post-image {
		border-radius: 0;
		box-shadow: none;
	}
	.site {
		clear: both !important;
		display: block !important;
		float: none !important;
		max-width: 100%;
		position: relative !important;
	}
	.site-header {
		margin-bottom: 72px;
		margin-bottom: 5.142857143rem;
		text-align: left;
	}
	.site-header h1 {
		font-size: 21pt;
		line-height: 1;
		text-align: left;
	}
	.site-header h2 {
		color: #000;
		font-size: 10pt;
		text-align: left;
	}
	.site-header h1 a,
	.site-header h2 a {
		color: #000;
	}
	.author-avatar,
	#colophon,
	#respond,
	.commentlist .comment-edit-link,
	.commentlist .reply,
	.entry-header .comments-link,
	.entry-meta .edit-link a,
	.page-link,
	.site-content nav,
	.widget-area,
	img.header-image,
	.main-navigation {
		display: none;
	}
	.wrapper {
		border-top: none;
		box-shadow: none;
	}
	.site-content {
		margin: 0;
		width: auto;
	}

	.entry-header .entry-title,
	.entry-title {
		font-size: 21pt;
	}
	footer.entry-meta,
	footer.entry-meta a {
		color: #444;
		font-size: 10pt;
	}
	.author-description {
		float: none;
		width: auto;
	}

	/* Comments */
	.commentlist > li.comment {
		background: none;
		position: relative;
		width: auto;
	}
	.commentlist .avatar {
		height: 39px;
		left: 2.2em;
		top: 2.2em;
		width: 39px;
	}
	.comments-area article header cite,
	.comments-area article header time {
		margin-left: 50px;
		margin-left: 3.57142857rem;
	}
}
/*div#main {
    padding: 0px 20px;
}*/


/* =Universal
----------------------------------------------- */

.entry-content a {
	color: #f57b20 !important;
}

.entry-content a:hover {
	text-decoration: none !important;
}

.entry-content a, a:active, a:focus {
	outline: none;
}

.section-header {
    font-size: 1.5em !important;
    font-weight: 400 !important;
    color: black !important;
    margin-bottom: 0.45em;
}

.section-header:after {
	content: '';
    border-bottom: 5px solid #f87c24;
    width: 100px;
    display: block;
    position: relative;
}

.button {
    display: inline-block;
    background: #f68024;
    padding: 0.5em 2em;
    border-radius: 5px;
    text-transform: uppercase;
    color: white;
    font-size: 22px;
    border-bottom: #8d4004 5px solid;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.bullet-list {
	list-style: none;
}

/*ul.bullet-list ul {
    margin-left: 2.5em !important;
}*/

.bullet-list li, .widget_questions li {
/*
    background: url(//www.aptech.com/wp-content/themes/jpc/images/apt-bullet.png) no-repeat 0 7px;
    list-style: none;
*/
    padding-left: 15px;
}

.entry-content .bullet-list > li {
	margin-bottom: 10px;
}

.widget-title {
    background: #36434c;
    text-align: center;
    color: white;
    font-size: 1.175em;
    margin: 0 !important;
    font-weight: 400;
    border-bottom: 1px solid #f57b20;
    line-height: 1;
    padding: 0.75em;
}
.widget-title .fa {
    float: right;
    color: #f57b20;
}
.sidebar .widget-title {
    cursor: pointer;
}
.widget-area .bullet-list, .widget-area .widget_questions {
	margin: 0 !important;
}
.widget_questions {
	background: #efefef;
}
.widget_questions ul {
	padding: 0 10px 10px;
}
.widget_questions li {
	line-height: 1 !important;
	margin: 1em 0 !important;
}
.widget_questions li a {
	font-size: 16px;
}
.widget-area .bullet-list li, .widget-area .widget_questions li {
	margin: 0;
	font-size: 1em;
	background-position-y: 50%;
	font-weight: bold;
}

.widget-area .bullet-list li a, .widget-area .widget_questions li a {
	color: #f57b20;
}

.widget-area .bullet-list li a:hover, , .widget-area .widget_questions li a:hover {
	color: #9f9f9f;
}

.textwidget {
	background: #efefef;
	font-size: 1em !important;
}

.textwidget img {
	width: 100%;
}

.sidebar-content {
	padding: 0 10px 10px;
}

.sidebar-content p {
	font-size: 1em !important;
	margin-bottom: 0.5em !important;
	line-height: 1.25 !important;
}

.btn-menu a {
    border: 1px solid #9f9f9f;
    border-left-width: 4px;
    border-left-color: #f57b20;
    display: table;
    padding: 10px;
    color: #333 !important;
    /*margin: 10px 0;*/
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}

.btn-menu a:hover {
	background: black;
	color: white !important;
}

.btn-menu .btn-menu-container a {
    display: inline-block;
    margin: 1em 0.5em 0 0;
}

.menu-sidebar ul {
    padding: 0 1em;
}

.menu-sidebar li {
    padding: 0.5em 0 !important;
    list-style: none;
    border-bottom: 1px solid black;
    margin: 0 !important;
}

.menu-sidebar li:last-child {
	border-bottom: none;
}

ul#gauss_version_tabs {
	list-style: none !important;
}

/* =End Universal
----------------------------------------------- */

/* =Product Page
----------------------------------------------- */
.breadcrumbs {
	background: #36434c;
	padding: 1em;
	color: white;
}

.breadcrumbs .fa-home {
    font-size: 1.35em;
}

.breadcrumbs a {
	color: white;
    text-decoration: none;
    display: inline-block;
    vertical-align: text-bottom;
}

.breadcrumbs a:after {
	content: '';
	background: url(//www.aptech.com/wp-content/themes/jpc/images/breadcrumbs.png) no-repeat;
	width: 4px;
	height: 7px;
	margin: 0 1em;
	position: relative;
/*    top: -5px;*/
	display: inline-block;
}

.inner-sub-nav {
	background: #69747b;
	padding: 1em;
	text-align: center;
}

.inner-sub-nav a {
	color: white;
    font-size: 1.25em;
    padding: 0 1.25em;
}

.inner-sub-nav li {
	display: inline-block;
	margin: 0;
}

.inner-sub-nav li:after {
	content: '';
    border-right: 2px solid white;
}

.inner-sub-nav li:last-child:after {
	border: none;	
}

.product-hero {
	background: url(//www.aptech.com/wp-content/themes/jpc/images/checkered.png);
	padding: 1em;
}

.product-hero .product-image {
    position: relative;
    top: 128px;
    right: 128px;
    max-width: none;
    z-index: 0;
}

.product-hero p,
.product-hero li,
.product-hero strong {
	font-size: 1.125em;
	color: black;
    line-height: 1.25;
}

.product-hero p {
	margin-bottom: 1em;
}

.product-hero li {
	margin: 0;
}

.product-hero .bullet-list {
    box-shadow: 0px 1px 8px 0px #000;
    padding: 1em;
    border-radius: 5px;
    margin: 0;
    position: relative;
    z-index: 1;
    background: rgba(255,255,255,0.7);
}

.product-hero .bullet-list strong {
	color: #f87c24;
}

.product-hero .bullet-list strong:after {
    display: block;
    content: '';
}

.product-cta {
	background: #000;
	padding: 2em 1em 3em;
	text-align: center;
}

.product-cta h2 {
	font-size: 2.313em !important;
	color: white !important;
	font-weight: 400 !important;
}

.product-cta span {
	display: block;
	font-size: 25px;
    margin: 0.75em 0;
}

.product-cta .button {
	color: white !important;
}

.product-features {
	padding: 2em 1em 1em;
}

.product-features .grid.wrap {
	max-width: 1300px;
}

.product-features .heading {
	text-align: center;
	font-size: 1.125em;
	margin-bottom: 1em;
}

.product-features h2 {
	font-size: 2.313em !important;
	font-weight: 400;
}

.product-features h2 span {
	color: #f68024;
	font-size: inherit;
}

.product-features .grid .unit.list {
	padding-left: 0;
	padding-right: 0;
}

.product-features .list span {
	color: #e64b3c;
    display: block;
    margin-top: 5px;
    font-size: 15px;
}

.product-features img {
	width: 100%;
}

.product-features ul {
	list-style: none;
}

.product-features li {
    margin: 0;
    font-size: 17px;
}

.product-features li:before {
    content: '⬤';
    font-size: 12px;
    position: relative;
    margin-right: 0.7em;
    bottom: 3px;
    color: #e64b3c;
}

.product-features .list-content {
	margin: 1em 0 1.5em;
}

.product-features .list-head {
	font-size: 22px;
	line-height: 2;
}

.product-features .list-head:before {
    content: '';
    background: url(//www.aptech.com/wp-content/themes/jpc/images/check.png) no-repeat;
    width: 44px;
    height: 44px;
    float: left;
    margin-right: 8px;
}

.product-features .right .list-head:before {
	float: right;
	margin-left: 8px;
	margin-right: 0;
}

.product-platform {
	padding: 2em;
}

.product-platform .section-header {
	margin-top: 3em;
}

.product-platform .btn {
	background: #31383c;
    padding: 1em 1.5em;
    border-radius: 4px;
    margin-top: 1em;
    display: inline-block;
}

.product-platform hr {
	height: 12px;
    width: 100%;
    background-color: #d3d3d3;
}

.product-platform img {
	width: 100%;
}

.product-solution p {
	line-height: 1.25;
	margin-bottom: 1em;
}

.product-solution .box-menu .container {
    width: 85%;
    margin: 0 auto;
}

.product-solution .box-menu .container {
	border: 4px solid transparent !important;
}

.product-solution .box-menu .container:hover {
	border-color: #f57b20;
}

.product-solution .box-menu a {
	border: 1px solid #9f9f9f;
}

.product-solution .box-menu a:hover {
	border-color: transparent;
}

.product-solution .section-header {
	margin-top: 1em;
}

.product-solution .unit.w-1-3 {
	padding: 0;
}

.product-solution figure {
	position: relative;
	margin: 1em 1em 1em 0;
	border: 5px solid transparent;
	text-transform: uppercase;
	height: 260px;
	overflow: hidden;
}

.product-solution figure:hover, .product-solution figure:hover figcaption {
	border-color: #8e8e8e;
	background: #f68024;
}

.product-solution figcaption {
    position: absolute;
    bottom: 0;
    text-align: center;
    width: 100%;
    padding: 1em 0;
    display: inline-block;
    background: #31383c;
    color: white;
}

.box-icon {
    width: initial !important;
}

.box-menu,
.box-menu .unit {
    padding: 1em !important;
}

.product-comparison {
	background: #ebebeb url(//www.aptech.com/wp-content/themes/jpc/images/debut-light.png);
	text-align: center;
	padding: 3em 1em 1em;
	color: black;
	margin-bottom: 1em;
}

.product-comparison h2 {
	font-size: 2.375em !important;
}

.integration-list {
	padding: 2em 0;
}

.integration-list img {
	margin: 0 0.8em;
    vertical-align: middle;
}

.comparison-table h2 {
    margin: 1em;
    font-size: 1.813em !important;
    font-weight: 400 !important;
}

.comparison-table td {
	background: white;
}

.comparison-table td,
.comparison-table th {
    border: 1px solid #9f9f9f;
    padding: 1em;
    vertical-align: middle;
}

.comparison-table th {
	background: #372f2b;
	color: white;
	font-size: 1.6em;
    font-weight: normal;
    text-transform: none;
}

.comparison-table th span {
	display: block;
	color: #f57b20;
	font-weight: bold;
	font-size: inherit;
}

.comparison-table td:nth-child(n+2),
.comparison-table th:nth-child(n+2) {
	text-align: center;
}

.comparison-table th:nth-child(n+2) {
    width: 21%;
}

.comparison-table th:nth-child(n+3) {
    width: 30%;
}

.checked {
	background: url(//www.aptech.com/wp-content/themes/jpc/images/checked.png) no-repeat;
	width: 27px;
	height: 29px;
	display: inline-block;
}

/* =End Product Page
----------------------------------------------- */



/* =Industry Solutions Page
----------------------------------------------- */
.box-menu .unit {
	text-align: center;
	margin: 1em;
}

.box-menu .container:hover {
	border-color: #f57b20 !important;
}

.box-menu .container {
    height: 150px;
    display: table;
    width: 100%;
    padding: 0 !important;
}

.box-menu a {
	display: table-cell;
    vertical-align: middle;
    padding: 1em;
    text-transform: uppercase;
    font-weight: bold;
    color: #f57b20;
}

.box-icon {
    display: block;
    margin: 0 auto;
}

/* =End Industry Solutions Page
----------------------------------------------- */

/* =Resources Page
----------------------------------------------- */
#resources a {
	padding: 1em;
}

#resources a:hover {
	color: initial !important;
}

#resources a:hover small {
	display: block;
}

#resources small {
	display: none;
	color: #f57b20;
	font-size: 12px;
}

/* =End Resources Page
----------------------------------------------- */

/* =Support Plans Page
----------------------------------------------- */
.tbl-support-plan {
	border-bottom: none !important;
}

.tbl-support-plan td {
    padding: 1em !important;
    border: 1px solid #ededed;
}

.tbl-support-plan tbody strong {
    display: block;
}

/* =End Support Plans Page
----------------------------------------------- */

/* =Support Page
----------------------------------------------- */
#support p {
    margin: 1em 0;
}

#support a.btn {
    width: 100%;
    text-align: center;
}

#support .w-1-3 {
    text-align: center;
}

#support .wrap.grid {
    margin: 0.5em 0;
}

/* =End Support Plans Page
----------------------------------------------- */

#hp-banner .wrap {
    margin-bottom: 1em;
    line-height: 1.25;
}

#hp-banner .p25 {
    text-align: center;
}

#hp-banner .p25 img {
	position: relative;
    height: 130px;
	top: -15px;
}

#hp-banner b {
    display: block;
    margin-bottom: 0.5em;
    color: #f57b20;
}

#home_page_top{
	background: rgb(23,35,43);
	text-align:center;
}

#home_page_top .wrap.grid {
    max-width: 1600px;
}

#home_page_top div.hero-img {
    background-image: url(//www.aptech.com/wp-content/uploads/2022/11/hero-bg.png);
    height: 500px;
    background-size: cover;
    width: 100%;
    position: relative;
    z-index: 0;
}

#home_page_top .gauss_tagline_needsyour {
    letter-spacing: 0.25em;
    font-weight: 300;
    font-size: 1.4em;
    color: #a7aaab;
    margin-bottom: 0;
    white-space: nowrap;
}

#home_page_top .gauss_tagline_research {
    font-size: 4.5em;
    color: #f17e30;
    font-weight: bold;
}

#home_page_top .gauss_tagline_wanttohelp {
    color: #fff;
    font-weight: bold;
    font-size: 1.45em;
    margin-bottom: 40px;
}

#home_page_top .gauss_buttons > a {
    margin: 5px;
    width: 220px;
    padding: 20px 25px;
    font-weight: bold;
    text-transform: uppercase;
}

#home_page_top .gauss_buttons > a.quote {
    border: 1px solid white !important;
    background: transparent;
}

/*
@media screen and (min-width:480px){
	#home_page_top .gauss_buttons a.demo, #home_page_top .gauss_buttons a.quote{
		margin-right:8px;
		margin-left:8px;
	}		
}

@media screen and (min-width:600px){
	#home_page_top .gauss_buttons a.demo, #home_page_top .gauss_buttons a.quote{
		margin-right:15px;
		margin-left:15px;
	}		
}

#home_page_top .gauss_buttons a.demo{
	background:url(//www.aptech.com/wp-content/themes/jpc/css/images/demo_bck.jpg) no-repeat;
}

#home_page_top .gauss_buttons a.quote{
	background-color: #7d676b;
    border: #ee7c32 2px solid;
    border-radius: 35px;
}
*/

a.btn.btn-primary, .btn.btn-transparent, button.btn.btn-primary, input.btn.btn-primary{
    background-color:#EC7E1D;
    border-radius:4px!important;
    border:none!important;
    width: auto;
    height: auto;
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    font-weight: normal;
    box-sizing: border-box;
    text-align: center;
    /*text-shadow: -1px 1px #000;*/
}

#support .btn.btn-primary, .contact-links a.btn.btn-primary{
	padding:5px 20px;
}

input.btn.btn-primary, button.btn.btn-primary, aside#text-26 .textwidget button{
	width:100%;
}

.textwidget #forum_search button.btn.btn-primary{
	/*padding:5px 20px!important;*/
	height: auto;
	margin-top: 5px;
}

.btn.btn-transparent{
	padding:10px 20px!important;
	font-size:18px!important;
}

.btn.btn-transparent:hover{
	color:#EC7E1D!important;
}

.btn.btn-quote{
	color:#EC7E1D;
}

.wrap.grid.contact-links a{
	min-height:0px!important;
	border-radius:4px!important;
}

/* homepage mid section */
.home-mid {
/*max-width: 1160px;
margin: auto;
*/
padding: 30px;
}

.home-top-flex-item {
    margin: auto;
    padding: 0;
    width: 100%;
}

.home-mid-flex, .home-top-flex {
        display:flex;
        -webkit-display:flex;
        -moz-display:flex;
        justify-content: center;
        align-content: flex-start;
        flex-wrap:wrap;
    }
.home-mid-flex-item {
        width: 100%;
        margin: 40px auto;
    }
.home-mid h2 {
        font-size: 44px;
        text-align: center;
        font-weight: 300;
    }

.home-mid h3 {
      margin:0;
      font-size: 28px;
    }

.home-mid img {
        max-width: 500px;
    }
.home-mid-highlight-color {
    color: #f07d32;
}
@media screen and (max-width:1152px) {
    .home-mid h2 { 
        font-size: 34px !important;
    }
}
@media screen and (min-width:768px) {

    #home_page_top div.hero-img {
        background-image: linear-gradient(to right, rgba(23, 35, 43, 1), rgba(23, 35, 43, 0.0), rgba(23, 35, 43, 0.0), rgba(23, 35, 43, 0.0)), url(//www.aptech.com/wp-content/uploads/2022/11/hero-bg.png);
        width: 120%;
        left: -20%;
    }
   
    .home-mid-flex-item, .home-top-flex-item {
        width: 45%;
    }
    .home-mid h2 {
        font-size: 37px;
        text-align: center;
    }
    .home-mid h3 {
        margin:0;
        font-size: 28px;
    }
    
    .home-mid p, .home-mid h3 {
        width:360px;
    }
    .home-mid-item-left p, .home-mid-item-left h3, .home-mid-item-left img {
        float:right;
        text-align: right;
    }
}

/* CTA Button */
.cta-btn-lp {
background-color: #EC7E1D !important;
    border-radius: 30px !important;
    border: none !important;
    width: auto !important;
    height: auto !important;
    display: inline-block !important;
    padding: 10px 20px !important;
    text-transform: uppercase !important;
    color: #fff !important;
    font-weight: normal !important;
    text-shadow: -1px 1px #000; !important
}


.su-quote-cite:after,.su-quote-cite:before, .su-quote-style-default:after {display:none !important;}
.su-quote-style-default.su-quote-has-cite {margin:0 !important; margin:30px 0 !important;margin-left:70px !important; }
.su-quote-style-default.su-quote-has-cite:before{
	content: "";
	position: absolute ;
	width: 50px;
	height: 38px;
    margin-left:-70px;
    margin-top:0px;
	z-index: 10000;
	background:transparent url(//www.aptech.com/wp-content/themes/jpc/css/images/quote-icon-hayes.png) 0px top  no-repeat;
 
}
.su-quote-has-cite span {color:#999;font-size:20px;font-family:Georgia;font-style:italic !important;line-height:34px; }
.su-quote-style-default .su-quote-cite {position:relative !important;float:left !important;right:0 !important;bottom:0 !important;text-align:left!important;}
.su-quote-style-default {padding:0 !important;padding:0px 0 0 15px !important;border-left:5px solid #ddd !important;}


.su-quote-style-default {
	position: relative;
	margin-bottom: 1.5em;
	padding: 0.5em 3em;
	font-style: italic;
}
/*.su-quote-style-default.su-quote-has-cite { margin-bottom: 3em; }*/
.su-quote-style-default:before,
.su-quote-style-default:after {
	position: absolute;
	display: block;
	width: 20px;
	height: 20px;
	background-image: url(//www.aptech.com/wp-content/themes/jpc/css/images/quote-icon-hayes.png);
	content: '';
}
.su-quote-style-default:before {
	top: 0;
	left: 0;
	background-position: 0 0;
}
.su-quote-style-default:after {
	right: 0;
	bottom: 0;
	background-position: -20px 0;
}
.su-quote-style-default .su-quote-cite {
	display: block;
	text-align: right;
	font-style: normal;
}

.su-clearfix:before,
.su-clearfix:after {
	display: table;
	content: " ";
}
.su-clearfix:after { clear: both; }

.post-byline {
    font-size: .875em;
    font-weight: 400;
    color: #aaa;
    margin-bottom: 1em;
    text-transform: uppercase;
}

.post-list article,
.post-list question {
    float: left;
    width: 100%;
    margin-bottom: 40px;
    padding: 10px;
    border: 1px solid #eaeaea;
    border-bottom: 4px solid #eaeaea;
    border-radius: 3px;
}

.list-post-entry-meta {
    position: relative;
    bottom: -1px;
    left: 0;
    width: 100%;
    padding: 14px;
    background: rgba(247, 247, 247, 1);
}

.border-bottom-hover:hover {
    border-bottom-color: #EC7E1D;
}

.list-post-entry-meta .post-date {
    float: right;
top: -14px;
left: 12px;
    position: relative;
    /*position: absolute;
    top: 0;
    left: 0;
*/
    min-width: 90px;
    min-height: 50px;
    padding: 12px 20px;
    background: rgba(54,67,76,0.9);
    text-align: center;
}

.post-date .post-date-day {
    /*display: block;*/
    color: #fff;
    /*font-size: 31px;
    line-height: 34px;*/
    font-weight: 700;
}

.post-date .post-date-month {
    /*display: block;*/
    color: #fff;
    /*font-size: 18px;
    line-height: 24px;*/
    font-weight: 500;
    text-transform: uppercase;
}

.post-author {
    position: relative;
    font-weight: 600;
}

.post-author i {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 13px;
}

.icon-man-people-streamline-user:before {
    content: "\e0f9";
}
[class*=" icon-"]:before, [class^=icon-]:before {
    font-family: stamp-icons !important;
    font-weight: 400 !important;
    font-style: normal !important;
    font-variant: normal !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1;
    text-transform: none !important;
    speak: none;
}

.posted-in {
    position: relative;
    margin-right: 10px;
    padding-left: 23px;
    color: #676767;
    font-weight: 600;
}

.posted-in i {
    position: absolute;
    top: 1px;
    left: 0;
    font-size: 16px;
}

.post-list h2.entry-title {
    margin-top: 10px;
    margin-bottom: 5px;
}

.post-list h2.entry-title a {
    color: #000;
    font-size: 24px;
    line-height: 28px;
    /*text-transform: uppercase;*/
}

.colored-line-left, .colored-line-right, .colored-line {
    background: #36434c;
}

.colored-line-left {
    float: left;
}
.colored-line-left, .colored-line-right, .colored-line, .white-line, .grey-line {
    display: block;
    width: 80px;
    height: 2px;
}

.clearfix:before, .clearfix:after {
    content: " ";
    display: table;
}

.entry-terms-tags {
    font-size: 0.9rem;
}

/* Tippy Tooltip CSS */
span.tooltip { border-bottom: 1px dotted; }
table.tooltip { border: none; }
table.tooltip tr td:first-child { text-align: right; font-family: 'Roboto Mono', monospace !important; }
table.tooltip tr td { padding-right: 10px; padding: 2px; }

table:not(.hljs-ln):not(.table-forum) tr > th {
  background: #f4f5f7 center right no-repeat;
  padding-right: 15px;
  font-weight: bold;
  /*cursor: pointer;*/
}

table:not(.hljs-ln):not(.table-forum) th, table:not(.hljs-ln):not(.table-forum) td {
  border: 1px solid #c1c7d0;
  padding: 7px 10px;
  vertical-align: top;
  text-align: left;
  min-width: 8px;
}

img.pillar-img {
  padding: 0px;
}

.pillar-col-sq {
  max-width:400px;
  max-height:400px;
}

.pillar-col-wd {
  max-width:800px;
  max-height:400px;
}

.pillar-col {
  display: block;
  height: auto;
  margin: auto;
  object-fit: contain;
  padding: 0px;
}

.sb-slider-container {
  border-left: 2px solid #ddd;
}

.sb-slider-text {
  top: 2px;
}

.sb-header {
  padding-left: 15px;
}

.sb-left-col { 
  border-right: 1px solid #ddd;
}
/*

GAUSS style (c) Matt Evans <matt@aptech.com>

*/

code.lang-shell {
  color: #fff;
  background-color: #000;
}

figure pre.hljs-container {
  border: none;
}

pre.hljs-container {
  padding: 0px !important;
  margin: 0;
  font-size: 16px;
}

pre.hljs-container-solo {
  margin-bottom: 15px;
}

pre table.hljs-ln {
  margin: 0 !important;
  border-bottom: none;
}

.hljs-ln td {
  border-top: none;
}

/* for block of numbers */
.hljs-ln td.hljs-ln-numbers {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    text-align: right;
    color: #ccc !important;
    border-right: 1px solid #ccc;
    vertical-align: top;
    padding-right: 5px;

}

/* for block of code */
.hljs-ln td.hljs-ln-code {
    padding-left: 10px;
}

figure {
  display: block;
  margin: 1em 0;
  width: 100%;
  color: #9e9e9e;
  border: 1px solid #aaa;
  border-radius: 3px;
  /*background: rgb(22, 22, 22);*/
}

figure figcaption {
  display: block;
  /*font-family: sans-serif;*/
  padding: 2px 10px 2px 10px;
  border-bottom: 1px solid #aaa;
  border-radius: 3px 3px 0 0;
  font-weight: bold;
  font-variant: small-caps;
  font-size: 16px;
  background: #36434c;
  color: #fff;
}

.numbers {
   cursor: context-menu;
   -webkit-user-select: none;
	-moz-user-select: none;
  -ms-user-select: none;
	user-select: none;
/*  box-shadow: inset 0 0 4px 0 rgba(0, 0, 0, 0.5);*/
}

/*
pre,
pre * {
  font: normal normal normal 1em/1.4 monaco, courier, monospace;
}*/

pre {
  font-size: 0.8em;
}

pre,
pre code,
pre samp {
  display: block;
  margin: 0;
  cursor: text;
}

pre code,
pre samp {
  /* enforce white-space for IE7 */
  white-space: pre;
  /* enforce word-wrap for mobile safari */
  word-wrap: normal;
  padding: 10px;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  overflow-x: auto;
  /*box-shadow: inset 0 1px 0 1px rgba(0, 0, 0, 0.5);*/
}


/* additional focus rules to provide a visual cue */

pre [contenteditable]:focus {
  border-radius: 0 0 3px 0;
  background: #fff;
  outline: none;
  background: rgb(22, 22, 22);
  box-shadow: inset 0 1px 4px 1px rgba(0, 0, 0, 0.5);
}

pre.line-numbers {
  position: relative;
  margin-top: 0px;
  margin-bottom: 0px;
}

/*
pre.line-numbers code,
pre.line-numbers samp {
  margin-left: 3em;
  border-left: 1px solid #ccc;
}
*/

pre.line-numbers > div {
  display: none; /* block */
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 0 0 0 3px;
  overflow: hidden;
  counter-reset: line;
}

pre.line-numbers > div > span {
  display: block;
  width: 2.5em;
  padding: 0 0.5em 0 0;
  text-align: right;
  color: #ccc;
  overflow: hidden;
  counter-increment: line;
}

pre.line-numbers > div > span::before {
  content: counter(line);
}

pre.line-numbers > div > span:first-child {
  margin-top: 20px;
}

/*
pre.line-numbers > div > span:nth-child(odd) {
  background: #111;
}*/

@media print {
  pre code {
    overflow-x: visible;
    white-space: pre-wrap;
  }
  pre.line-numbers div {
    display: none;
  }
  pre.line-numbers > code,
  pre.line-numbers > samp {
    margin-left: 0;
  }
}

code.hljs {
    padding-top: 10px;
}
/* double-up the syntax elements for cross-browser RTF-keystroke support */

pre b,
pre strong {
  font-weight: normal;
  color: #039;
}

pre u,
pre u b,
pre u strong {
  text-decoration: none;
  color: #083;
}

pre i,
pre em,
pre i *,
pre em *,
pre i * *,
pre em * * {
  letter-spacing: -0.1em;
  text-decoration: none;
  font-style: normal;
  color: #c55;
}

/* end custom */

pre.tutorial-output {
  max-height: 260px;
  overflow: auto !important;
}

pre {
  background-color: #f7f7f9 !important;
}

pre, pre *, code {
  font-family: 'Roboto Mono', monospace !important;
  font-size: 16px !important;
  line-height: 1.4 !important;
}

code:not(.hljs) {
  /*padding: .2rem .4rem;*/
  padding: 1px 4px;
  font-size: 90%;
  /*color: #bd4147;*/
  color: inherit;
  background-color: #f7f7f9;
  /*border-radius: .25rem;*/
}

code span {
  font-size: 16px;
}

.hljs {
  display: block;
  overflow-x: auto;
  /* padding: 0.5em; */
  background: inherit;
  /* color: black; */
}

.hljs-comment,
.hljs-doctag,
.hljs-quote {
  color: #007f00;
}

.hljs-keyword,
.hljs-selector-tag,
.hljs-section,
.hljs-name {
  color: #0000ff;
}

.hljs-variable,
.hljs-template-variable {
  color: #660;
}

.hljs-string,
.hljs-selector-attr,
.hljs-selector-pseudo,
.hljs-regexp {
  color: #7f007f;
}

.hljs-meta {
  color: #7f7f00;
}

.hljs-literal,
.hljs-symbol,
.hljs-bullet,
.hljs-number,
.hljs-link {
  color: #00007f;
}

.hljs-title,
.hljs-built_in,
.hljs-builtin-name {
  color: #00557f;
  font-weight: bold;
}

.hljs-type,
.hljs-attr {
  color: #606;
}

.hljs-attribute,
.hljs-subst {
  color: #000;
}

.hljs-formula {
  background-color: #eee;
  font-style: italic;
}

.hljs-selector-id,
.hljs-selector-class {
  color: #9B703F
}

.hljs-addition {
  background-color: #baeeba;
}

.hljs-deletion {
  background-color: #ffc8bd;
}

.hljs-strong {
  font-weight: bold;
}

.hljs-emphasis {
  font-style: italic;
}
/* initially hide all groups (even before JS is loaded), so the page will never render them while loading */
[data-class="wpcf7cf_group"], .wpcf7cf_remove, .wpcf7cf_add {
    display:none;
}

.wpcf7cf_repeater_sub {
    margin-bottom: 20px;
}

.wpcf7cf_repeater_controls, .wpcf7cf_step_controls {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 20px;
}

.wpcf7cf_multistep .wpcf7cf_step {
    /* display:none; */
    width: 100%;
}

.wpcf7cf_multistep .wpcf7cf_step .step-title {
    display: none;
}

.wpcf7cf_multistep .wpcf7cf_steps-dots {
    display: flex;
    width: 100%;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.wpcf7cf_multistep .wpcf7cf_steps-dots .dot .step-index {
    display: inline-block;
    border-radius: 50%;
    background: #dfdfdf;
    color: #000000;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
}

.wpcf7cf_multistep .wpcf7cf_steps-dots .dot {
    border-bottom: 5px solid #dfdfdf;
    text-align: center;
    flex: 1;
    padding: 15px;
    min-width: 120px;
}
.wpcf7cf_multistep .wpcf7cf_steps-dots .dot.completed {
    border-bottom: 5px solid #333;
}
.wpcf7cf_multistep .wpcf7cf_steps-dots .dot.active {
    border-bottom: 5px solid #333;
    font-weight: bold;
}

.wpcf7cf_multistep .wpcf7cf_steps-dots .dot.completed .step-index {
    background-color: #333;
    color: #ffffff;
}

.wpcf7cf_multistep .wpcf7cf_steps-dots .dot.active .step-index {
    background-color: #333;
    color: #ffffff;
}

.wpcf7cf_step_controls .disabled {
    pointer-events: none;
    cursor: default;
    opacity: .5;
}