/* on both */
html, body {
  margin: 0 0;
/*   overflow-x: hidden; */
}
body {
  background: #FFF;
  font-family: 'Lato', sans-serif;
  color: black;
  font-size: 18px;
}
* {
    box-sizing: border-box;
    margin: 0;
}

/* Grid setup */

.row::after {
    content: "";
    clear: both;
    display: block;
}
[class*="col-"] {
    float: left;
    padding: 0 20px;
}

/* For desktop: */
.col-1  { width: 8.33%; }
.col-2  { width: 16.66%; }
.col-3  { width: 25%; }
.col-4  { width: 33.33%; }
.col-5  { width: 41.66%; }
.col-6  { width: 50%; }
.col-7  { width: 58.33%; }
.col-8  { width: 66.66%; }
.col-9  { width: 75%; }
.col-10 { width: 83.33%; }
.col-11 { width: 91.66%; }
.col-12 { width: 100%; }

/* For mobile phones: */
@media only screen and (max-width: 768px) {
    [class*="col-"] {
        width: 100%;
    }
}

/* Containers */

div.content {
	margin: 0 auto;
	max-width: 1000px;
}
div.applogo img,span { /* Vertically align text and images */
	vertical-align: middle;
	text-align: center;
	display: inline-block;
}

/* Headers & Footer */

header,footer {
	color: white;
	background: #3D454C;
    padding: 15px 0;	
}
header.home img {
	margin-bottom: 20px;
}

/* Sections */

section {
	padding: 50px 0;
}
section.features .col-4 {
	padding: 0 20px;
}
section.intro img {
	margin: 40px 0px 0px 0px;
}
section.algorithm {
	padding: 0;
	padding-bottom: 30px;
}
section.algorithm span {
	text-align: left;
}
section.algorithm span.name {
	font-weight: 700
}
section.algorithm li {
	font-size: 16px;
}
section.algorithm span {
	text-align: left;
}
section.contactform {
	padding-bottom: 100px;
}
section.contactform form {
	display:inline;
}
section.contactform input,textarea {
    font-family: sans-serif;
    font-size: 18px;
    padding: 10px 10px;
    margin: 10px 0px 30px 0px;
    border: 1px solid #dcdcdc;
    background-color: #fff;
    font-family: sans-serif;
}
section.contactform input,textarea {
    margin-right: 0;
    width: 100%;
}
section.contactform textarea {
    height: 14rem;
}
section.contactform input:focus {
    outline: none;
    background-color: #ffa;
}
section.contactform button {
	float: right;
}

/* Colors */

.white {
	color: white;
}
.darkgray {
	color: #d8d8d8;
}
.gradientgray1 {
    background: #EBEBEB; /* For browsers that do not support gradients */
    background: linear-gradient(rgba(235,235,235,1), rgba(255,255,255,1)); /* Standard syntax */
}

.gradientgray2 {
    background: #EBEBEB; /* For browsers that do not support gradients */
    background: linear-gradient(rgba(235,235,235,1), rgba(250,250,250,1)); /* Standard syntax */
}

/* Fonts */

.large {
	font-size: 34px;
}
.medium {
	font-size: 24px;
}
.small {
	font-size: 16px;
}
.tiny {
	font-size: 14px;
}

/* Lines */

hr {
    display: block;
    height: 1px;
    border: 0;
    margin: 20px auto;
    padding: 0;
}

hr.dark { border-top: 1px solid #33393F; }
hr.light { border-top: 1px solid #E0E0E0; }

/* Buttons */

.btn {
	background: #5C9CDF;
	font-family: Arial;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    border-radius: 4px;
    cursor: pointer;
    border: none;
}
.btn:hover {
	background: #69B2FF;
	color: white;
	text-decoration: none;
}
.btninfo {
	color: white;
	font-size: 16px;
    padding: 6px 32px;
    margin-top: 20px;
}
.btnbuy {
	color: white;
	font-size: 16px;
    font-weight: 500;
    padding: 12px 54px 10px 54px;
	margin: 30px 0;
}

/* Links */

a {
  color: #fff;
  text-decoration: none;
  line-height: 1;
}
a:visited {
  color: #fff;
}
a:hover {
  color: #89D2FF;
}

/* Other */

.centered {
	text-align: center;
}
h1 {
	font-size: 32px;
	font-weight: normal; 
}
h2,h3,h4 {
	font-size: 30px;
	font-weight: normal;
	margin-bottom: 20px; 
}
img {
    max-width: 100%;
    height: auto;
}
ul {
	list-style-type: circle;
	margin-left: -20px;
}
#video-secureremove001 {
    max-width: 100%;
}

/* Margins */

.mb20 {
	margin-bottom: 20px;
}
.my20 {
	margin: 20px 0;
}
.mt17 {
	margin-top: 17px;
}

p.error_box,p.success_box{background-color:#fee5e6;color:#b30612;padding:10px;font-weight:400;margin:0;border-bottom:1px solid #ecd2d3}
