/* base styles
================================================== */
* {
    margin: 0;
    padding: 0;
    outline: 0;
}

body,
html {
    height: 100%;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #263645;
    background-color: #fff;
}

:focus {
    outline: 0
}

img {
    max-width: 100%;
    height: auto;
    display: inline-block;
    vertical-align: middle;
    border: none;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px white inset;
}

form textarea:focus,
form input[type="text"]:focus,
form input[type="tel"]:focus,
form input[type="password"]:focus,
form input[type="email"]:focus {
    border: 0;
}

form select,
form input[type="password"],
form input[type="search"],
form input[type="email"],
form input[type="tel"],
form input[type="text"] {
    color: #263645;
    font-size: 16px;
    padding: 0 10px;    
    background-color: #fff;
    border: 0;
    height: 43px;
    line-height: 35px;
    border-radius: 2px;
    width: 100%;
}

form textarea {
    color: #263645;
    font-size: 16px;
    padding: 10px;
    background-color: #fff;
    border: 0;
    border-radius: 2px;
    resize: none;
    width: 100%;
    min-height: 120px;
}

.Y-Center-outer {
    display: table;
    height: 100%;
}

.Y-Center-inner {
    display: table-cell;
    vertical-align: middle;
}

.Y-Center {
    position: absolute;
    top: 50%;

    -webkit-transform: translate3d(0, -50%, 0);
    -ms-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
}

.XY-Center {
    position: absolute;
    text-align: center;
    top: 50%;
    left: 50%;

    -webkit-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}

.space {padding: 50px 0;}

/* typography
================================================== */
h1, h2, h3, h4, h5, h6 {font-family: 'Open Sans', sans-serif; color: #263645;}

h1 {font-size: 26px; line-height: 32px;}
h2 {font-size: 22px; line-height: 28px;}
h3 {font-size: 18px; line-height: 28px;}
h4 {font-size: 18px; line-height: 28px;}
h5 {font-size: 18px; line-height: 28px;}
h6 {font-size: 18px; line-height: 28px;}

strong {font-weight: 700;}

a {
    color: #06a84e;

    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

a:hover,
a:active,
a:focus {
    color: #06a84e;
    outline: 0;
    text-decoration: none;
}

p {
    color: #263645;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.5;
}

.heading {
    text-align: center;
    margin: 0 0 15px 0;
    font-size: 30px;
    line-height: 38px;
    color: #263645;
    font-weight: bold;
    text-transform: uppercase;
}

/* Buttons
================================================== */
.btn-primary {
    background-color: #f44336;
    border: 2px solid #f44336;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 16px;

    border-radius: 2px;
    padding: 7px 13px;

    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.btn-primary:focus,
.btn-primary:hover {
    color: #fff;
    background-color: #ce3125;
    border: 2px solid #ce3125;
}

.btn-secondary {
    border: 2px solid #06a84e;
    color: #06a84e;

    border-radius: 2px;
    padding: 7px 13px;

    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.btn-secondary:focus,
.btn-secondary:hover {
    color: #fff;
    background-color: #06a84e;
}

/* header
================================================== */
header {
    position: relative;
    z-index: 100;
    min-height: 640px;
    background: url('../img/header-bgr.jpg') no-repeat top center;
    background-size: cover;
}

header:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    background: transparent;
    background-size: 100%;
}

header .header-intro {
    text-align: right;
    padding: 35px 0 0 0;
}

header h1 {
    font-weight: bold;
    font-size: 34px;
    line-height: 38px;
    margin: 0 0 10px 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

header h2 {
    font-size: 22px;
    line-height: 28px;
}

header .order {
    padding: 37px 15px 5px;
    margin: 0 0 0 40px;
    width: 100%;
    background-color: #8fb523;
}

header .order .phone-order {
    font-weight: bold;
    font-size: 30px;
    text-align: center;
    color: #fff;
}

header .order .phone-order span {
    display: block;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
}

header img {
    margin: 0 0 0 -15px;
}

header .order .order-heading h3 {
    font-size: 24px;
    line-height: 28px;
    margin: 0 0 15px 0;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
}

header .order .timeleft {
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
}

header .order .timeleft span {
    display: block;
    font-weight: normal;
    font-size: 14px;
}

header .order .timeleft #getting-started {
    margin-bottom: 15px;
}

header .order .order-form .btn-primary {
    width: 100%;
}

.video{
    position: relative;
    height: 312px;
    background: #333;
}
.video .youtube,
.video embed,
.video video,
.video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.price {
    margin: 10px 0 0 0;
}

.price .old-price {
    font-size: 32px;
    line-height: 1.5;
    margin-right: 15px;
    text-decoration: line-through;
    font-weight: normal;
    color: #8e8e8e;
}

.price .new-price {
    position: relative;
    font-size: 42px;
    line-height: 1.5;
    font-weight: bold;
    padding: 0 15px;
    border: 3px solid #f44336;
    border-radius: 100px;
    color: #f44336;
    width: 190px;
    height: 59px;
}

.price .new-price .sale {
    color: #f44336;
    background-color: #fff;
    font-size: 12px;
    position: absolute;
    top: -9px;
    left: 10%;
    width: 110px;
    text-align: center;
}

.price div {
    display: inline-block;
}

/* 
================================================== */
.section-01 {
    background-color: #fff;
}

.section-01 .heading {
    text-align: left;
}

.section-01 p:last-of-type {
    margin: 0;
}


.section-02 {
    background-color: #F9F9F9;
}

.section-02 .heading {
    text-align: left;
}

.section-02 ul li {
    font-size: 18px;
    margin: 0 0 7px 0;
}


.section-03 {
    background-color: #f1f2f6;
    background-image: linear-gradient(360deg, #f1f2f6 0%, #e4e4e4 100%);
    padding-bottom: 0;
}

.section-03 .heading {
    text-align: center;
    margin: 0 0 50px 0;
}

.section-03 .section-03-img {
    background-color: #fff;
    border-radius: 100%;
    padding: 30px;
    border: 20px solid #e6e6e6;
    overflow: hidden;
    position: relative;
}

.section-03 ul li {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 18px;
    line-height: 26px;
    font-style: italic;
    margin: 30px 0 70px;
    position: relative;
}

.section-03 ul.left-side {
    text-align: right;
    padding-right: 40px;
}

.section-03 ul.right-side {
    text-align: left;
    padding-left: 40px;
}

.section-03 ul.left-side li:nth-child(1):before {
    content: "";
    background: url(../img/top-left.svg) no-repeat;
    width: 100px;
    height: 20px;
    position: absolute;
    top: 25px;
    right: -120px;
    background-size: 100px;
    z-index: 5;
}

.section-03 ul.right-side li:nth-child(1):before {
    content: "";
    background: url(../img/top-right.svg) no-repeat;
    width: 100px;
    height: 20px;
    position: absolute;
    top: 25px;
    left: -120px;
    background-size: 100px;
    z-index: 5;
}

.section-03 ul.left-side li:nth-child(2):before {
    content: "";
    background: url(../img/center.svg) center center no-repeat;
    width: 100px;
    height: 20px;
    position: absolute;
    top: 3px;
    right: -120px;
    background-size: 100px;
    z-index: 5;
}

.section-03 ul.right-side li:nth-child(2):before {
    content: "";
    background: url(../img/center.svg) center center no-repeat;
    width: 100px;
    height: 20px;
    position: absolute;
    top: 3px;
    left: -120px;
    background-size: 100px;
    z-index: 5;
}

.section-03 ul.left-side li:nth-child(3):before {
    content: "";
    background: url(../img/bottom-left.svg) bottom center no-repeat;
    width: 100px;
    height: 20px;
    position: absolute;
    top: 31px;
    right: -120px;
    background-size: 100px;
    z-index: 5;
}

.section-03 ul.right-side li:nth-child(3):before {
    content: "";
    background: url(../img/bottom-right.svg) bottom center no-repeat;
    width: 100px;
    height: 20px;
    position: absolute;
    top: 31px;
    left: -120px;
    background-size: 100px;
    z-index: 5;
}


.section-04 {
    background-color: #f1f2f6;
    padding-bottom: 0;
}

.section-04 .heading {
    text-align: center;
    margin: 0 0 50px 0;
}

.section-04 ul {
    text-align: center;
}

.section-04 ul li {
    margin: 0 0 50px 0;
}

.section-04 ul li img {
    display: block;
    border-radius: 100%;
    margin: 0 auto 20px;
    max-width: 180px;
    border: 7px solid #8db31f;
}

.section-04 ul li p {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 0 20px;
    min-height: 48px;
    margin: 0;
}
    
.section-04 ul li p span {
    display: inline-block;
    background-color: #8db31e;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    line-height: 30px;
    position: absolute;
    bottom: 57px;
    left: 50%;
    margin-left: -15px;
}


/* footer
================================================== */
footer {
    text-align: center;
    background-color: #313131;
    padding: 20px 0 0;
}

footer p {
    color: #fff;
    font-size: 14px;
}

footer .heading {
    color: #fff;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* 
================================================== */
.center-block {
    margin: 0 auto;
    display: block;
}

/* basic
================================================== */
.p0 {
    padding: 0;
}

.mt50 {
    margin-top: 120px;
}

/* errors
================================================== */
form .input-wrapper label {
    display: none;
    pointer-events: none;
  }
  
  form .input-wrapper {
    position: relative;
    margin-bottom: 20px;
  }
  
  form .input-wrapper .error {
    border: 1px solid red!important;
    padding-top: 6px!important;
  }
  
  form .input-wrapper .error+label {
    width: 100%;
    height: 100%;
    color: red;
    display: block !important;
    font-size: 11px;
    line-height: 17px;
    position: absolute;
    top: 0;
    left: 10px;
    text-align: left
  }
  
  form .input-wrapper .error+label:before,
  form .input-wrapper .error+label:after {
    content: "";
    position: absolute;
    right: 30px;
    top: 50%;
    width: 3px;
    height: 21px;
    background-color: red
  }
  
  form .input-wrapper .error+label:before {
    -webkit-transform: translate(0, -50%) rotate(135deg);
    transform: translate(0, -50%) rotate(135deg)
  }
  
  form .input-wrapper .error+label:after {
    -webkit-transform: translate(0, -50%) rotate(45deg);
    transform: translate(0, -50%) rotate(45deg)
  }
.footer {
    background-color: #313131!important;
    color: #fff!important;
    padding-top: 0!important;
}
.footer p {
    color: #fff!important;
}

.cpu{
    background: #222;
    color: #fff;
    text-align: center;
    padding: 15px 0;
}
.cpu img{
    display: block;
    margin: 0 auto;
}
.cpu a{
    display: inline-block;
    vertical-align: top;
    margin: 5px;
}