@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,300,700);
body,
html {
    padding: 0px;
    margin: 0px;
    font-family: 'Open Sans', sans-serif;
    color: rgb(75, 75, 75);
    font-size: 14px;
}

a {
    text-decoration: none;
}

a img {
    border: 0px;
}

a:focus {
    outline: none;
}

section {
    display: block;
    width: 100%;
}

h2 {
    font-size: 36px;
}

h2 span {
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0px 15px;
}

header.sticky {
    display: none;
    z-index: 100;
    position: fixed;
    -webkit-box-shadow: 0px 2px 12px -2px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 2px 12px -2px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 2px 12px -2px rgba(0, 0, 0, 0.75);
}

header {
    background-color: #878787;
    width: 100%;
    display: inline-block;
    padding: 10px 0px 5px;
}

.Header {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 100%;
}

.Logo {
    order: 1;
}

.Phone {
    order: 3;
    padding: 13px 0px;
    font-size: 40px;
    font-weight: 700;
    color: white;
}

.Phone a {
    color: #fff;
}

.Banner {
    padding: 55px 0;
    display: inline-block;
    ;
    width: 100%;
    background-image: url('../img/banner.jpg');
    background-size: cover;
    -webkit-box-shadow: inset 0px 0px 14px 1px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: inset 0px 0px 14px 1px rgba(0, 0, 0, 0.75);
    box-shadow: inset 0px 0px 14px 1px rgba(0, 0, 0, 0.75);
}

.Banner__inner {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.Banner__form {
    order: 2;
    padding-left: 30px;
    box-sizing: border-box;
}

.Banner__form ul {
    padding: 0px;
    text-align: center;
}

.Banner__form ul li {
    display: inline-block;
    list-style: none;
    text-align: center;
}

.Banner__form img {
    width: 100%;
}

.Banner__txt {
    order: 1;
}

.Banner__form_inner {
    position: relative;
    width: 340px;
    background-color: white;
    border-radius: 6px;
    padding: 0px 25px 5px 25px;
    text-align: center;
    font-size: 14px;
    -webkit-box-shadow: 0px 2px 22px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 2px 22px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 2px 22px 0px rgba(0, 0, 0, 0.75);
}

.qInfo {
    margin-top: 15px;
}

.Banner__form_head {
    background-color: #3d1a4b;
    color: white;
    padding: 10px;
    text-align: center;
    /* border-radius: 0 0 6px 6px; */
    font-size: 20px;
    margin: 0px -26px 20px;
    /* margin-bottom: 20px; */
    margin-top: 0px;
    /* max-width: 220px; */
}

.Banner__txt ul {
    padding: 0px;
    margin: 0px;
}

.Banner__txt li {
    list-style-type: none;
    font-weight: 700;
    font-size: 21px;
}

.Banner__txt ul > li:before {
    content: url('../img/check.png');
    margin-right: 10px;
}

.Banner__txt {
    color: white;
    line-height: 1.8;
    font-size: 26px;
}

.Banner__txt p {
    margin-top: 0px;
}

.Banner__txt h1 {
    font-size: 45px;
    font-weight: 300;
    line-height: 1.5;
    margin: 0px;
}

.Form {
    padding: 0px;
}

.Form [name=fname]::-webkit-input-placeholder::before,
.Form [name=lname]::-webkit-input-placeholder::before {
    content: "\f007";
    font-family: fontAwesome;
    margin-right: 15px;
}

.Form [name=email]::-webkit-input-placeholder::before {
    content: "\f003";
    font-family: fontAwesome;
    margin-right: 15px;
}

.Form [name=phone]::-webkit-input-placeholder::before {
    content: "\f095";
    font-family: fontAwesome;
    margin-right: 15px;
}

.Form [name=i_need]::-webkit-input-placeholder::before {
    content: "\f05d";
    font-family: fontAwesome;
    margin-right: 15px;
}

.Form input:focus,
.Form textarea:focus {
    outline: none;
}

.Form input.inputError::-webkit-input-placeholder {
    color: rgb(193, 109, 109);
}

.Form::-webkit-input-placeholder {
    color: #d2d2d2;
}

.Form input,
.Form textarea {
    height: 35px;
    font-size: 18px;
    background: #f1f1f1;
    font-weight: 400;
    width: 90%;
    padding: 0px 15px;
    border: 1px solid white;
    margin-bottom: 5px;
    /* text-align: center; */
}

.Form textarea {
    height: 70px;
    padding-top: 5px;
    font-size: 20px;
}

.Form input:focus,
.Form textarea:focus {
    border-color: white;
    border: 1px solid rgb(208, 208, 208);
}

.alert {
    padding: 10px;
    margin-bottom: 10px;
}

.alert-success {
    background-color: rgb(169, 215, 177);
}

.alert-danger {
    background-color: rgb(238, 166, 166);
}

.btn.disabled {}

.btn {
    border: 2px solid #3d1a4b;
    border-top-width: 4px;
    padding: 10px 40px;
    background-color: #fff;
    color: #3d1a4b;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.5s;
    box-sizing: border-box;
}
.btn.phone i {
    font-size: 18px;
}

.btn:hover {}

.Form button {
    margin: 10px 0px;
    cursor: pointer;
}

button:focus {
    outline: none;
}

button {
    background-color: transparent;
    border: 0px;
}

h1 span {
    font-weight: 700;
}

.blue {
    color: #00a0fa;
}

.purple {
    color: #741a60;
}

.red {
    color: #cf0000;
}

.Keys {
    text-align: center;
}

.Keys h2 {
    font-weight: 300;
}

.Keys h2 img {
    display: inline;
    vertical-align: middle;
}

.Keys ul {
    padding: 0px;
    margin: 50px 0px 0px;
    text-align: center;
}

.Keys ul li img {
    width: 100%;
}

.Keys ul li {
    overflow: hidden;
    border: 3px solid #3c3c3c;
    width: 280px;
    height: 300px;
    text-align: center;
    vertical-align: top;
    display: inline-block;
}

.Keys ul li:not(:last-child) {
    margin-right: 10px;
}

.VideoBlock h2 {
    margin-top: 0px;
}

.VideoBlock {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    background-image: url('../img/video.jpg');
    background-size: cover;
    background-position: left bottom;
    min-height: 400px;
    padding: 10px 0px 30px;
    margin-top: 20px;
    text-align: center;
    align-items: center;
    justify-content: center;
    color: white;
}

.VideoBlock img {
    -webkit-transition: -webkit-transform .8s ease-in-out;
    transition: transform .8s ease-in-out;
}

.VideoBlock img:hover {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
}

.BulletPoints h2 {
    font-weight: 300;
    margin-top: 0px;
    margin-bottom: 10px;
    text-align: center;
}

.BulletPoints .slogan {
    font-weight: 300;
    text-align: center;
    font-size: 22px;
    padding: 0px;
    margin: 0px;
}

.BulletPoints ul {
    padding: 0px;
    margin-top: 50px;
}

.BulletPoints ul li {
    list-style: none;
    display: inline-block;
    width: calc(99%/3);
    margin-bottom: 20px;
}

.BulletPoints ul li img {
    display: inline;
    margin-right: 10px;
    vertical-align: middle;
}

.BulletPoints__item h3 {
    color: #741a60;
    font-size: 16px;
    margin: 0px;
}

.BulletPoints__item p {
    margin-bottom: 0px;
}

.callBlock {
    text-align: center;
}

.callBlock .btn {
    display: inline-block;
}

.callBlock p span {
    font-weight: 700;
    font-size: 16px;
}

.About {
    text-align: center;
    padding-top: 40px;
    line-height: 1.8;
    margin-bottom: 60px;
}

.About h2 {
    font-weight: 300;
    margin-bottom: 0px;
}

.smPhone {
    font-weight: 700;
    font-size: 24px;
}

.offerTestimonials {
    display: inline-block;
    text-align: center;
    margin-top: 40px;
    background-color: #3f194f;
    width: 100%;
}

.Offer {
    display: inline-block;
    float: left;
    width: 50%;
    text-align: left;
    box-sizing: border-box;
    padding-right: 20px;
}

.offerTestimonials h2 {
    font-weight: 300;
    margin-top: 40px;
    position: relative;
}

.Offer img {
    width: 100%;
}

.Testimonials h2:after {
    content: url('../img/quote.png');
    bottom: -80px;
    position: absolute;
    text-align: center;
    margin: auto;
    left: 0px;
    right: 0px;
}

.Testimonials li {
    font-style: italic;
    padding: 0px 50px;
    box-sizing: border-box;
}

#Testimonials {
    margin-top: 25px;
    margin-bottom: 40px;
}

.Testimonials {
    color: white;
    box-sizing: border-box;
    overflow: hidden;
    display: inline-block;
    float: left;
    width: 50%;
    line-height: 1.8;
    font-size: 20px;
    padding-left: 20px;
}

.ribbon {
    position: absolute;
    right: -5px;
    top: -5px;
    z-index: 1;
    overflow: hidden;
    width: 75px;
    height: 75px;
    text-align: right;
}

.ribbon span {
    font-size: 10px;
    font-weight: bold;
    color: #FFF;
    text-transform: uppercase;
    text-align: center;
    line-height: 20px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    width: 100px;
    display: block;
    background: #79A70A;
    background: linear-gradient(#F79E05 0%, #8F5408 100%);
    box shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);
    position: absolute;
    top: 19px;
    right: -21px;
}

.ribbon span::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 100%;
    z-index: -1;
    border-left: 3px solid #8F5408;
    border-right: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #8F5408;
}

.ribbon span::after {
    content: "";
    position: absolute;
    right: 0px;
    top: 100%;
    z-index: -1;
    border-left: 3px solid transparent;
    border-right: 3px solid #8F5408;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #8F5408;
}

.lSSlideOuter .lSPager.lSpg>li.active a,
.lSSlideOuter .lSPager.lSpg>li:hover a {
    background-color: rgb(255, 213, 250);
}

.lSSlideOuter .lSPager.lSpg>li a {
    background-color: #AFAFAF;
    border-radius: 30px;
    display: inline-block;
    height: 10px;
    overflow: hidden;
    text-indent: -999em;
    width: 10px;
    position: relative;
    z-index: 99;
    -webkit-transition: all .5s linear 0s;
    transition: all .5s linear 0s;
}

.QuoteBlock {
    display: inline-block;
    width: 100%;
    background-color: #00a0fa;
    text-align: center;
    color: white;
    margin-bottom: 40px;
}

.QuoteBlueBlock .btn {
    margin: 0 10px;
}

.QuoteBlock h2 {
    font-weight: 400;
}

footer {
    padding: 26px 0px 5px;
    text-align: center;
}

footer img {
    max-width: 100%;
}

.Phone img {
    display: none;
}

.Steps {
    text-align: center;
}

.Steps ul {
    padding: 0px;
}

.Steps ul li {
    list-style: none;
    text-align: center;
    display: inline-block;
    ;
    width: calc(99%/4);
    box-sizing: border-box;
    vertical-align: top;
    padding: 0px 40px;
    position: relative;
}

.Steps ul li:not(:last-child):after {
    content: url('../img/step.png');
    position: absolute;
    right: -45px;
    top: 50px;
}

.Steps h2 {
    font-weight: 300;
    text-transform: uppercase;
}

.QuoteBlueBlock {
    -webkit-box-shadow: inset 0px 0px 14px 1px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: inset 0px 0px 14px 1px rgba(0, 0, 0, 0.75);
    box-shadow: inset 0px 0px 14px 1px rgba(0, 0, 0, 0.75);
    background-image: url('../img/QuoteBlock.jpg');
    background-size: cover;
    background-position: center;
    padding: 0px 0px 15px;
    text-align: center;
    display: inline-block;
    margin-top: -5px;
}

.QuoteBlueBlock .btn {
    display: inline-block;
    padding: 15px 30px;
}

.QuoteBlueBlock h2,
.QuoteBlueBlock h3 {
    color: white;
    font-weight: 400;
}

.QuoteBlueBlock ul {
    padding: 0px;
}

.QuoteBlueBlock ul a {
    color: white;
}

.QuoteBlueBlock ul li {
    display: inline-block;
    text-align: center;
    padding: 3px 10px;
}

footer ul {
    padding: 0px;
    margin: 0px 0px 20px;
}

footer ul li {
    display: inline-block;
    text-align: center;
    padding: 3px 10px;
}

footer h2 {
    font-weight: 300;
    margin-bottom: 0px;
    font-size: 26px;
}


/* Older MSIE workarounds */

.lt-ie10 .Logo {
    display: inline-block;
    float: left;
}

.lt-ie10 .Phone {
    display: inline-block;
    float: right;
}

.lt-ie10 .VideoBlock {
    padding-top: 60px;
}

.lt-ie10 .Banner__inner {
    display: inline-block;
    width: auto;
    margin: 0px;
}

.lt-ie10 .Banner__inner {
    display: inline-block;
    width: 100%;
}

.lt-ie10 .Banner__txt {
    display: inline-block;
    float: left;
    width: 70%;
}

.lt-ie10 .Banner__form {
    display: inline-block;
    float: right;
    width: 30%;
    text-align: center;
}

.lt-ie10 .Banner {
    margin-top: -5px;
}

.lt-ie10 .placeholder {
    color: #bbb;
}

.lt-ie10 .ribbon {
    display: none;
}

@media only screen and (max-width: 1024px) {
    .container {
        max-width: 100%;
        padding: 0px 15px;
    }
}

@media only screen and (max-width: 768px) {
    .btn.phone {
        margin: 10px 0;
        display: table;
        width: 100%;
    }
    .QuoteBlueBlock .btn {
        width: 100%;
        margin: 10px 0;
    }
    .Offer {
        float: none;
        width: 100%;
    }
    .BulletPoints ul li {
        width: 100%;
    }
    .Banner__form {
        padding-left: 0px;
    }
    h2 {
        font-size: 24px;
    }
    .lt-ie10 .Banner__form,
    .lt-ie10 .Banner__txt {
        width: 100%;
        display: inline-block;
        text-align: center;
    }
    .lt-ie10 .QuoteBlock {
        display: none;
    }
    .Keys ul li {
        margin-bottom: 20px;
        margin-right: 0px !important;
        width: 100%;
        height: auto;
    }
    .Offer {
        padding-right: 0px;
        border-right: 0px;
    }
    .Keys h2 img {
        display: block;
        margin: auto;
    }
    .Banner__inner {
        -webkit-flex-direction: column;
        flex-direction: column;
        min-height: auto;
    }
    .Banner__form_inner {
        width: auto;
        background-color: white;
        order: 1;
    }
    .Banner__txt {
        order: 1;
        margin-bottom: 10px;
    }
    .Logo img {
        width: 140px;
    }
    .Steps {
        display: none;
    }
    .Phone img {
        width: 80px;
        display: inline-block;
    }
    .Phone span {
        display: block;
    }
    .Phone {
        padding: 0px;
        font-size: 21px;
        font-weight: 700;
        text-align: right;
    }
    .Testimonials {
        display: none;
    }
    .Banner__txt {
        text-align: center;
        line-height: 1.4;
        font-size: 26px;
    }
    .callBlock .btn {
        width: 100%;
    }
    .Banner__txt h1 {
        font-size: 30px;
    }
    .btn {
        padding: 10px 25px;
        font-size: 16px;
    }
    .Banner__form_head {
        font-size: 18px;
        font-weight: bold;
    }
    .Banner__txt ul > li:before {
        content: "\f00c";
        font-family: fontAwesome;
    }
    .About {
        padding-top: 0px;
    }
    .Banner {
        padding: 25px 0;
        box-shadow: inset 0px 0px rgba(0, 0, 0, 0.75);
    }
    .Banner__txt {
        color: #fff;
    }
    .Banner__txt p {
        font-size: 20px;
    }
    .Banner__txt li {
        text-align: left;
        font-size: 18px;
    }
}
