@import url(http://fonts.googleapis.com/css?family=Special+Elite);
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,300,700,800);

html {
  -webkit-font-smoothing: antialiased;
}
html {
	height: 100%;
	background: #fff;
	-ms-text-size-adjust:100%;
	-webkit-text-size-adjust:100%;
}
ol, ul {
    list-style: outside none none;
	padding:0;
	margin:0;
}
a {
    color: #4a454b;
}
a {
  text-decoration: none !important;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -khtml-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  position: relative;
  /*&:after {
    content: '';
    height: 1px;
    width: 0;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: @red;
    .transition(width, 0.3s,linear);
  }*/
}
a,
a:visited {
  outline: 0px;
}
a:hover {
  color: #0c9eef;
  /*&:after {
    width: 100%;
  }*/
}
a.bluelink{
	color:#0c9eef;
}
a:hover.bluelink{
	color:#000;
}
.main-screen {
	text-align:center;
}
.container {
    padding: 0;
}
p:last-child {
    margin-bottom: 0;
}
body{
  width: 100%;
  font-family: 'Open Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x:hidden;
}
article, aside, footer, header, nav, main, section, summary, details, hgroup, figure, figcaption {
    display: block;
}
h1, .h1, h2, .h2, h3, .h3 {
    margin-bottom: 10px;
    margin-top: 20px;
}
.buyback-content{
	position: relative;
	width:100%;
	height:100%;
}
.main {
    overflow: hidden;
    width: 100%;
}
.main {
    margin-bottom: -96px;
    position: relative;
    top: -96px;
    z-index: 1;
}
.section {
    position: relative;
    z-index: 1;
}
.section:before, .section:after {
	display: table;
  	content: " ";
}
.section:after{
	clear: both;
}
.hero-section-padding{
	height:290px;
}
.topbar {
    background-color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid #e9e9e9;
	padding:10px 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 2;
}
.content-wrapper {
    height: 100%;
    position: relative;
    width: 100%;
	text-align:center;
}
.hero-logo{
	font-size: 52px;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.14286;
}
.hero-container{
	margin-bottom: 0;
    margin-top: 0;
    position: absolute;
    text-align: center;
    top: 50%;
    transform: translate3d(0px, 45%, 0px);
	-webkit-transform:translate3d(0px, 45%, 0px);
    width: 100%;
    z-index: 4;
}
.txt{
	font-size: 24px;
    font-weight: 200;
}
.top40{
	padding-top:40px !important;
}
.no-bottom{
	padding-bottom:20px !important;
}
a.link{
	font-size: 24px;
    font-weight: 700;
	color:#23a2e5;
	letter-spacing: -0.01em;
}
a.link:hover{
	text-decoration:none;
	color:#151617;
}
.subsection-headline {
    font-size: 42px;
    font-weight: 200;
    letter-spacing: -0.01em;
    line-height: 1.14286;
}
.section-content{
	width:100%;
}
.section-content:before, .section-content:after {
	display: table;
  	content: " ";
}
.section-content:after{
	clear: both;
}
.image-hero-container{
    position: absolute;
    z-index: 1;
	width:100%;
}
.image-hero-container .dollars {
    left: 0;
    position: absolute;
    top: 50px;
    width: 300px;
    z-index: 2;
	-webkit-transform-origin:50% 50% 0px;
	-ms-transform-origin:50% 50% 0px;
	transform-origin:50% 50% 0px;
	text-align:left;
}
.image-hero-container .shipping{
    right: 0;
    position: absolute;
    top: 0;
    width: 300px;
	text-align:right;
    z-index: 1;
	-webkit-transform-origin:50% 50% 0px;
	-ms-transform-origin:50% 50% 0px;
	transform-origin:50% 50% 0px;
}
@-webkit-keyframes updown {
from {
-webkit-transform:translate(0, 0)
}
65% {
-webkit-transform:translate(0, 7px)
}
to {
	-webkit-transform: translate(0, 0)
}
}
@-moz-keyframes updown {
from {
-moz-transform:translate(0, 0)
}
65% {
-moz-transform:translate(0, 7px)
}
to {
	-moz-transform: translate(0, 0)
}
}
@-ms-keyframes updown {
from {
-ms-transform:translate(0, 0)
}
65% {
-ms-transform:translate(0, 7px)
}
to {
	-ms-transform: translate(0, 0)
}
}
@keyframes updown {
from {
transform:translate(0, 0)
}
65% {
transform:translate(0, 7px)
}
to {
	transform: translate(0, 0)
}
}
.updown {
	-moz-animation: updown 3s infinite ease-in-out;
	-webkit-animation: updown 3s infinite ease-in-out;
	animation: updown 3s infinite ease-in-out
}
@-webkit-keyframes flytop {
  0% {
    -webkit-transform:  translate3d(0px, -300px, 0px) rotate(10deg);
            transform:  translate3d(0px, -300px, 0px) rotate(10deg);
  }   
  100% {
    -webkit-transform: translate3d(0px, 0px, 0px) rotate(0deg);
            transform: translate3d(0px, 0px, 0px) rotate(0deg);
  }
}
@keyframes flytop {
  0% {
   -webkit-transform:  translate3d(0px, -300px, 0px) rotate(10deg);
            transform:  translate3d(0px, -300px, 0px) rotate(10deg);
  } 
  100% {
    -webkit-transform: translate3d(0px, 0px, 0px) rotate(0deg);
            transform: translate3d(0px, 0px, 0px) rotate(0deg);
  }
}
.flytop{
	-webkit-animation: flytop 2s ease-in;
          animation: flytop 2s ease-in;
		  
}

@-webkit-keyframes flytop2 {
  0% {
    -webkit-transform:  translate3d(0px, -350px, 0px) rotate(40deg);
            transform:  translate3d(0px, -350px, 0px) rotate(40deg);
  }

  100% {
    -webkit-transform: translate3d(0px, 0px, 0px) rotate(0deg);
            transform: translate3d(0px, 0px, 0px) rotate(0deg);
  }
}
@keyframes flytop2 {
  0% {
    -webkit-transform:  translate3d(0px, -350px, 0px) rotate(40deg);
            transform:  translate3d(0px, -350px, 0px) rotate(40deg);
  }
 
  100% {
    -webkit-transform: translate3d(0px, 0px, 0px) rotate(0deg);
            transform: translate3d(0px, 0px, 0px) rotate(0deg);
  }
}
.flytop2{
	-webkit-animation: flytop 3s ease-in;
          animation: flytop 3s ease-in;
		  
}
.section-intro-content {
	-webkit-transition:opacity 1s ease-out;
	transition:opacity 1s ease-out
}
.content-center {
text-align:center
}
.content-center p {
	margin-left:auto;
	margin-right:auto;
}
.section-hero .hero-section-padding {
	height:100vh;
	padding-bottom:896px
}
.section-intro-content{
	margin:30px 0;
}
.section-content {
    margin: 0 auto;
    position: relative;
    width: 90%;
    z-index: 1;
}
.intro {
    font-size: 20px;
    font-weight: 200;
    letter-spacing: normal;
    line-height: 1.35417;
}
.section-content-cards  ul li{
	color:#0c9eef;	
	font-size: 20px;
    font-weight: 700;
    letter-spacing: normal;
    line-height: 1.35417;

}
.overview-headline{
	font-size: 39px;
    letter-spacing: -0.01em;
    line-height: 1.14286;
}
.section-content-small{
	width: 980px;
	margin:0 auto;
}
.content-lightgray, .section-lightgray {
    background-color: #efefef;
}
.content-white, .section-white {
    background-color: #fff;
}
.section-content-small {	
    padding-bottom: 10px;
    padding-top: 80px;
}
.section-content-cards{	
    padding-bottom: 80px;
    padding-top: 80px;
}
.eyebrow {
    display: block;
    font-size: 25px;
    font-weight: 200;
    letter-spacing: 0;
    line-height: 2.2;
    margin-bottom: 16px;
}
.blue-small{
	color:#0c9eef;
	display: block;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 2.2;
}
.card-left{
	width:auto;
}
.card-left h2{
	margin:0 0 15px;
	padding:0;
}
.figure{
	width:auto;
}
.image-getpaid {
	 display: block;
	 margin-bottom: 16px;
}
.image-getpaid2{
	 display: block;
	 margin-top:50px;
	 margin-bottom: 16px;
}
.screen-area {
    width: 1030px;
	 margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    position: relative;
}
.image-figure{
	width: 562px;
	float:left;
}
.background-cards{
	background:url(images/cards-background.png);
	background-attachment:fixed;
	background-position:top center;
}
.rotating {
  display: inline-block;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: rotateX(0) rotateY(0) rotateZ(0);
  -moz-transform: rotateX(0) rotateY(0) rotateZ(0);
  -ms-transform: rotateX(0) rotateY(0) rotateZ(0);
  -o-transform: rotateX(0) rotateY(0) rotateZ(0);
  transform: rotateX(0) rotateY(0) rotateZ(0);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform-origin-x: 50%;
}

.rotating.flip {
  position: relative;
}

.rotating .front, .rotating .back {
  left: 0;
  top: 0;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
}

.rotating .front {
  position: absolute;
  display: inline-block;
  -webkit-transform: translate3d(0,0,1px);
  -moz-transform: translate3d(0,0,1px);
  -ms-transform: translate3d(0,0,1px);
  -o-transform: translate3d(0,0,1px);
  transform: translate3d(0,0,1px);
}

.rotating.flip .front {
  z-index: 1;
}

.rotating .back {
  display: block;
  opacity: 0;
}

.rotating.spin {
  -webkit-transform: rotate(360deg) scale(0);
  -moz-transform: rotate(360deg) scale(0);
  -ms-transform: rotate(360deg) scale(0);
  -o-transform: rotate(360deg) scale(0);
  transform: rotate(360deg) scale(0);
}



.rotating.flip .back {
  z-index: 2;
  display: block;
  opacity: 1;
  
  -webkit-transform: rotateY(180deg) translate3d(0,0,0);
  -moz-transform: rotateY(180deg) translate3d(0,0,0);
  -ms-transform: rotateY(180deg) translate3d(0,0,0);
  -o-transform: rotateY(180deg) translate3d(0,0,0);
  transform: rotateY(180deg) translate3d(0,0,0);
}

.rotating.flip.up .back {
  -webkit-transform: rotateX(180deg) translate3d(0,0,0);
  -moz-transform: rotateX(180deg) translate3d(0,0,0);
  -ms-transform: rotateX(180deg) translate3d(0,0,0);
  -o-transform: rotateX(180deg) translate3d(0,0,0);
  transform: rotateX(180deg) translate3d(0,0,0);
}

.rotating.flip.cube .front {
  -webkit-transform: translate3d(0,0,100px) scale(0.9,0.9);
  -moz-transform: translate3d(0,0,100px) scale(0.85,0.85);
  -ms-transform: translate3d(0,0,100px) scale(0.85,0.85);
  -o-transform: translate3d(0,0,100px) scale(0.85,0.85);
  transform: translate3d(0,0,100px) scale(0.85,0.85);
}

.rotating.flip.cube .back {
  -webkit-transform: rotateY(180deg) translate3d(0,0,100px) scale(0.9,0.9);
  -moz-transform: rotateY(180deg) translate3d(0,0,100px) scale(0.85,0.85);
  -ms-transform: rotateY(180deg) translate3d(0,0,100px) scale(0.85,0.85);
  -o-transform: rotateY(180deg) translate3d(0,0,100px) scale(0.85,0.85);
  transform: rotateY(180deg) translate3d(0,0,100px) scale(0.85,0.85);
}

.rotating.flip.cube.up .back {
  -webkit-transform: rotateX(180deg) translate3d(0,0,100px) scale(0.9,0.9);
  -moz-transform: rotateX(180deg) translate3d(0,0,100px) scale(0.85,0.85);
  -ms-transform: rotateX(180deg) translate3d(0,0,100px) scale(0.85,0.85);
  -o-transform: rotateX(180deg) translate3d(0,0,100px) scale(0.85,0.85);
  transform: rotateX(180deg) translate3d(0,0,100px) scale(0.85,0.85);
}
.rotate{
	color:#0c9eef;
}
.btn-blue {
  color: #fff !important;
  background-color: #0c9eef;
  border-color: #0c9eef;
  font-weight:900;
  border-bottom:3px solid #0d5075;
}
.btn-blue:hover,
.btn-blue:focus,
.btn-blue.focus,
.btn-blue:active,
.btn-blue.active {
  color: #fff !important;
  background-color: #0b7cbb;
  border-color: #0b7cbb;
}
.btn-green {
  color: #fff;
  background-color: #6cc644;
  border-color: #6cc644;
  font-weight:900;
  border-bottom:4px solid #2a5c14;
}
.btn-green:hover,
.btn-green:focus,
.btn-green.focus,
.btn-green:active,
.btn-green.active {
  color: #fff;
  background-color: #4c9a2a;
  border-color: #4c9a2a;
}
.btn-black {
  color: #fff;
  background-color: #0b7cbb;
  border-color: #0b7cbb;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black:active,
.btn-black.active {
  color: #0b7cbb;
  background-color: #fff;
  border-color: #fff;
}
.background-sellanything{
	background:url(images/sell-anything.png) no-repeat;
	background-position:top center;
}
.bigblue{
	font-size: 35px;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.14286;
	color: #0c9eef;
	text-align:center;
	margin-bottom:30px;
}
.bigblue2 {
    color: #0c9eef;
    font-size: 35px;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.14286;
    margin: 30px 0 0;
    text-align: center;
}
.custom-quote{
	margin:45px 0 0;
	text-align:center;
}
.custom-quote .txt{
	font-size: 14px;
    font-weight: 200;
}
.iconplus{
	display:block;
}
.iconimg{
	margin:20px 0;
}
.iconhead{
	font-weight:700;
	text-transform:uppercase;
	display:inline;
}
.iconplus .accordion-toggle .iconhead:before {
    /* symbol for "opening" panels */
    font-family: 'FontAwesome';  /* essential for enabling glyphicon */
    content: "\f146";    /* adjust as needed, taken from bootstrap.css */	
    color: grey;         /* adjust as needed */
	margin-right:10px;
}
.iconplus .accordion-toggle.collapsed .iconhead:before {
    /* symbol for "collapsed" panels */
   content: "\f0fe";   /* adjust as needed, taken from bootstrap.css */
}
.cl-effect-21 {
	text-shadow: none;
	-webkit-transition: color 0.3s;
	-moz-transition: color 0.3s;
	transition: color 0.3s;
}

.cl-effect-21:hover,
.cl-effect-21:focus {
	color: #6cc644;
}
.counterbox{
	width:80%;
	margin:0 auto;
	padding:40px 0 0;
	color:#636363;
	border-top:1px solid #f3f3f3;
	margin-top:30px
}
.counter{
	font-size:70px;
	font-weight:600;
	line-height:1;
	clear:both;
}
.countername{
	font-size:24px;
}
.bottomarea{
	background:#f9f9f9;
}
.bottom-header{
    max-width: 650px;
	background-color: #f9f9f9;
    margin: 0 auto;
    position: relative;
	padding:20px 25px;
}
.bottom-header h3 {
    color: #636363;
    font-size: 30px;
	margin:0;
	text-align:center;
}

.bottomanswer{
	background:#fff;
	box-shadow: 0 0 0px rgba(0, 0, 0, 0.1) inset;
	border-top:1px solid #e6e6e6;
}
.bottomanswer-header{
    background-color: #fff;    
	border-top:1px solid #e6e6e6;
	border-left:1px solid #e6e6e6;
	border-right:1px solid #e6e6e6;
	border-bottom:0px solid #e6e6e6;
    margin: 0 auto -2px;
	z-index:2;
    max-width: 650px;
    padding: 20px 25px;
    position: relative;
}
.bottomanswer-header h3 {
    color: #636363;
    font-size: 30px;
	margin-bottom:0;
}
.ta-center {
    text-align: center !important;
}
.sellto{
	font-size: 18px;
    font-weight: 700;
	text-transform:uppercase;
	display:block;
}
.bottomarea .btn-green, .bottomarea .btn-blue {
    font-weight: 900;
    padding: 10px 40px;
    text-transform: uppercase;
}
.main-section {
    padding-bottom: 50px;
    padding-top: 30px;
    position: relative;
}
.privacy {
    color: #fff;
    font-size: 11px;
    margin-top: 10px;
}
.privacy a{
	color:#000;
}
.privacy a:hover{
	color:#fff;
}
footer {
  background-color: #0c9eef;
  /* posts-group */
}
footer .top-footer {
  background-color: #0c9eef;
  padding: 40px 0;
}
footer .top-footer .head{
	font-size:16px;
	font-weight:800;
	color:#fff;
	padding-bottom:10px;
}
footer .top-footer .head a{
	color:#fff;
}
footer .top-footer .head a:hover{
	color:#043b5a;
}
ul.about-link{
	padding:15px 0 0;
}
ul.about-link li {
    margin-bottom: 3px;
}
ul.about-link li a{
	color:#fff;
}
ul.about-link li a:hover{
	color:#043b5a;
}
.platform-link {
   padding:15px 0 0;
}
ul.platform-link li a{
	color:#fff;
}
ul.platform-link li a:hover{
	color:#043b5a;
}
.fotter_categories {
    margin-left: 0;
    padding:15px 0 0;
}
.fotter_categories li {
    float: left;
    margin-bottom: 3px;
    width: 190px;
}
.fotter_categories li a{
	color:#fff;
}
.fotter_categories li a:hover{
	color:#043b5a;
}
footer .bottom-footer {
  background-color: #000;
  padding: 20px 0 30px;
}
footer .bottom-footer .copyrights {
  line-height: 1.42857;
  margin-bottom: 0;
  color:#0c9eef;
}
footer .bottom-footer .copyrights p{
	color:#0c9eef;
}
footer .bottom-footer .copyrights a {
  color: #fff;
}
footer .bottom-footer .copyrights a:hover {
  color: #ffffff;
}
footer .bottom-footer  li {
  color: #666666;
  line-height: 40px;
  display:inline;
  margin-right:20px;
}
footer .bottom-footer  li a {
  color: #0c9eef;
 
}
footer .bottom-footer  li a:hover {
  color: #fff;
}
.footer-widget {
  margin-bottom: 40px;
}
.footer-widget .section-header .section-title {
  font-size: 16px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 19.5px;
}
.footer-widget .section-header .border-divider {
  width: 34px;
  background-color: #514b52;
}
.footer-widget:last-child {
  margin-bottom: 0;
}
/*Secure area*/
.secure-area, .social-area{
	margin-top:10px;
}
.secure-area li{
	display:inline-block;
}
.secure-area .smallh {
    font-size: 15px;
    font-weight: 500;
	color:#fff;
	margin-bottom:10px;
}
/* --- social-media  --------------------- */
.social-media {
  text-align: left;
  font-size: 0;
}
.social-media li {
  display: inline-block;
  margin: 3px 0 3px 3px;
}
.social-media li:first-child {
  margin-left: 0;
}
.footer-social.social-media li a{
	border:1px solid #85d3ff;
}
.social-media li a {
  display: block;  
  width: 34px;
  height: 34px;
  line-height: 34px;
  color: #fff;
  font-size: 15px;
  text-align: center;
  -webkit-border-radius: 2px 2px 2px 2px;
  -moz-border-radius: 2px 2px 2px 2px;
  -o-border-radius: 2px 2px 2px 2px;
  -ms-border-radius: 2px 2px 2px 2px;
  -khtml-border-radius: 2px 2px 2px 2px;
  border-radius: 2px 2px 2px 2px;
}
.social-media li a i {
  font-size: 15px;
  padding:0;
}
.social-media li a:hover {
  background-color: #ffffff;
  color: #ffffff;
}
.social-media li .facebook:hover {
  background-color: #3b5998;
}
.social-media li .gplus:hover {
  background-color: #dd4b39;
}
.social-media li .twitter:hover {
  background-color: #55acee;
}
.social-media li .pinterest:hover {
  background-color: #cc2127;
}
.social-media li .vimeo:hover {
  background-color: #1ab7ea;
}
.social-media li .dribbble:hover {
  background-color: #ea4c89;
}
.social-media li .linkedin:hover {
  background-color: #0976b4;
}
.social-media li .rss:hover {
  background-color: #f26522;
}
.social-media li .globe:hover {
  background-color: #6cc644;
}
.social-media li .youtube:hover{
	background-color: #ef4e41;
}
.social-media.colored li a {
  color: #ffffff;
}
.social-media.colored li a:hover {
  background-color: #f23f5f;
  color: #ffffff;
}
.social-media.colored li .facebook {
  background-color: #3b5998;
}
.social-media.colored li .gplus {
  background-color: #dd4b39;
}
.social-media.colored li .twitter {
  background-color: #55acee;
}
.social-media.colored li .pinterest {
  background-color: #cc2127;
}
.social-media.colored li .vimeo {
  background-color: #1ab7ea;
}
.social-media.colored li .dribbble {
  background-color: #ea4c89;
}
.social-media.colored li .linkedin {
  background-color: #0976b4;
}
.social-media.colored li .rss {
  background-color: #f26522;
}
.ta-left.social-media li {
  margin: 3px 3px 3px 0;
}
.ta-right.social-media li {
  margin: 3px 0 3px 3px;
}
.social-style-black li a {
	color:#000;
}
.social-style-black span{
  font-size: 15px;
  color: #0c9eef;
}
.fl {
    float: left;
}
/*Blue Dialog*/
#sellsmarter .modal-header {
    background-color: #1ba4dc !important;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    padding: 22px 0 20px;
}
#sellsmarter .modal-header {
    border-bottom: 4px solid #e5e5e5;
    min-height: 16.4286px;
    padding: 15px;
}
#sellsmarter .modal-title{
	color:#fff;
	text-transform:uppercase;
	font-weight:800;
}
#sellsmarter button:hover {
  color: #fff;
  background-color: #000;
  text-shadow: 0 0px 0 #fff
}
#sellsmarter button.close{
	line-height: 0;
}
#sellsmarter .modal-footer{
	text-align:center;
	text-transform:uppercase;
}
/**/
/*Green Dialog*/
#buybetter .modal-header {
    background-color: #6cc644 !important;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    padding: 22px 0 20px;
}
#buybetter .modal-header {
    border-bottom: 4px solid #e5e5e5;
    min-height: 16.4286px;
    padding: 15px;
}
#buybetter .modal-title{
	color:#fff;
	text-transform:uppercase;
	font-weight:800;
}
#buybetter button:hover {
  color: #fff;
  background-color: #000;
  text-shadow: 0 0px 0 #fff
}
#buybetter button.close{
	line-height: 0;
}
#buybetter .modal-footer{
	text-align:center;
	text-transform:uppercase;
}
.sell-buy{
	width:auto;
	display: block
}
.sell-buy-item{
	display:block;
	width:100%;
    margin-bottom: 10px;
	clear:both;
}
.iconsell{
	margin-right: 10px;
	display: inline;
	float: left;
}
.cont {
	font-size:13px;
   padding-top: 10px;
   padding-bottom: 21px;
    padding-left: 70px;
}
.cont2 {
	font-size:13px;
   padding-bottom: 21px;
   padding-left: 70px;
   padding-top: 16px;
}
.comingsoon {
    position: relative;
    text-align: center;
    width: 100%;
}
@media only screen and (max-width: 767px) {
.topbar {
	position:relative;
}
.section-content-small, .section-content-small {
	margin: auto;
	width: auto;
	padding-left: 15px;
	padding-right: 15px;
}
.hero-container, .image-hero-container{
	position:relative;
}
.container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}
.hero-logo{
	font-size:20px;
}
.subsection-headline{
	font-size:18px;
}
.txt{
	font-size:14px;
}
.intro{
	font-size:14px;
}
a.link{
	font-size:14px;
}
.overview-headline{
	font-size:18px;
	font-weight:700;
}
.eyebrow{
	font-size:18px;
	line-height:1.2;
}
h1, .h1{
	font-size:20px;
	font-weight:700;
}
h2, .h2, h3, .h3{
	font-size:16px;
	font-weight:700;
}
.blue-small{
	font-size:16px;
}
.counter{
	font-size:35px;
}
.countername{
	font-size:18px;
}
.cl-effect-21{
	margin-bottom:10px;
}
.bottom-header h3{
	font-size:20px;
	font-weight:700;
}
.btn-blue{
	margin-bottom:10px;
}
.bigblue{
	font-size:20px;
	font-weight:700;
}
.section-content-cards ul li{
	font-size:14px;
}
.image-hero-container .dollars, .image-hero-container .shipping{
	display:none;
}
.hero-section-padding{
	height:20px;
}
}
@media only screen and (max-width: 1024px) {
		.section-content-small, .section-content-small {
    margin: auto;
    width: auto;
	padding-left: 15px;
    padding-right: 15px;
}
.hero-container, .image-hero-container{
	position:relative;
}
.container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}
.hero-section-padding{
	height:100px;
}
.counter{
	font-size:40px;
}
.countername{
	font-size:20px;
}
.overview-headline{
	font-size:22px;
	font-weight:700;
}
.eyebrow{
	font-size:22px;
	line-height:1.2;
}
.intro{
	font-size:17px;
}
}