/* CSS Reset */ 
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%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Box model */
*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}

/* Grid system */

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

.container {
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
}

@media only screen and (min-width: 768px) {
    .container {
      width: 720px;
    }
}

@media only screen and (min-width: 1170px) {
    .container {
        width: 1080px;
        padding-right: 0;
        padding-left: 0;
    }
}


/* Basic */

body {
    font: 400 16px/22px "Source Sans Pro", sans-serif;
    color: #000;
    padding-top: 70px;
    text-align: center;
}

section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.img {
    width: 100%;
}

.section-title {
    font-size: 54px;
    font-weight: 200;
    line-height: 1em;
    margin-bottom: 40px;
    font-variant: small-caps;
}

.bg-second-style {
    background-color: #f3f0e7;
}

/* Buttons */
.btn {
    display: inline-block;
    padding:  24px 36px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 19px;
    font-weight: 300px;
    line-height: 1em;
    text-transform: uppercase;
    cursor: pointer;
}
.btn:hover {
    background-color: #ffd200;
    border-color: #ffd200;
    color: #212121;
}
.btn-fill {
    background-color: #e11a27;
    color: #fff;
}
.btn-line {
    border: 1px solid #010101;
    color: #212121;
}

/* Header */
.header {
    margin-top: -70px;
    width: 100%;
    height: 70px;
    position: fixed;
    z-index: 10000;
    background-color: #fff;
    box-shadow: 0 0 3px 3px rgba(0, 0, 0, .05);
}
.icon-menu,
.icon-exit,
.logo {
    display: inline-block;   
}
.icon-menu,
.icon-exit {
    position: absolute;
}
.icon-menu {
    margin-top: 26px;
    left: 15px;
    width: 25px;
    height: 18px;
    background-image: url("../../images/icon-menu.png");
}
.phone-number {
    display: none;
}
.icon-exit {
    margin-top: 21px;
    right: 15px;
    width: 33px;
    height: 29px;
    background-image: url("../../images/icon-exit.png");
}
.logo {
    margin-top: 24px;
    width: 163px;
    height: 21px;
    background-image: url("../../images/logo.png");    
}

@media only screen and (min-width: 768px) {
    .logo {
        margin-left: 30px;
        float: left;
    }
    .phone-number {
        display: block;
        float: right;
        padding: 10px 15px;
        border-radius: 10px;
        background-color: #ffd200;
        margin-top: 17px;
        margin-right: 30px;
        line-height: 1em;
    }
    .phone-number b {
        font-weight: 700;
        border-bottom: 1px dashed #000;
        letter-spacing: .06em;
    }
}

@media only screen and (min-width: 1170px) {
    .logo,
    .phone-number {
        margin-left: 0;
        margin-right: 0;
    }

}

/* Banner */
.banner {
    text-align: center;
    padding: 100px 0 150px;
    background: url("../../images/img-00.jpg"), #f3f0e7;
    background-size: cover;
}
.banner-subtitle {
    font-size: 24px;
    line-height: 1em;
    margin-bottom: 60px;
}
@media only screen and (min-width: 768px) {
    .banner {
        padding: 100px 0 250px;
    }
}
/* How works */
.steps-list {
    text-align: center;
}
.steps-list li {
    margin-bottom: 40px;
}
.step-title {
    font-size: 24px;
    font-weight: 300;
}
.icon-steps {
    display: inline-block;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 5px solid #ffd200;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    margin-bottom: 25px;
}
.icon-cloud {
    background-image: url("../../images/icon-cloud.png");
}
.icon-pc {
    background-image: url("../../images/icon-pc.png");
}
.icon-hand {
    background-image: url("../../images/icon-hand.png");
}
.icon-stuff {
    background-image: url("../../images/icon-stuff.png");
}
@media only screen and (min-width: 480px) {
    .steps-list li {
        width: 50%;
        float:left;
        text-align: center;
        margin-bottom: 40px;
    }    
}
@media only screen and (min-width: 768px) {
    .steps-list li {
        width: 25%;
        margin-bottom: 0;
    }
}

/* Advantages */
.advantages-list {
    text-align: center;
    
}
.advantages-list li {
    margin-bottom: 40px;
}
.advantage-img {
    display: inline-block;
    width: 270px;
    height: 270px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 25px;
}
.advantage-description {
    padding: 0 15px;
}
.advantage-title {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 15px;
}

@media only screen and (min-width: 768px) {
    .advantages-list {
        text-align: left;
        margin-bottom: 40px;
    }
    .advantage-img {
        width: 200px;
        height: 200px;
    }
    .advantages-list li {
        width: 33.33%;
        float: left;
        text-align: center;
        margin-bottom: 0;
    }
}

/* Solutions */
.solution-title {
    font-size: 36px;
    line-height: 1em;
    font-weight: 400;
    text-align: center;
    padding: 40px 0;
    font-variant: small-caps;
}
.solution-item {
    border-radius: 10px;
    background-color: #ffd200;
    margin-bottom: 40px;
    height: 450px;
    position: relative;
}
.solution-item:nth-of-type(2):before {
    content: "";
    width: 100%;
    height: 44px;
    background-image: url("../../images/icon-topCard.png");
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: -22px;
    left: 0;
    z-index: 100;
}
.solution-desc-box {
    background-color: #fff;
    margin: 0 5px;
    padding: 20px;
    text-align: left;
    font-size: 18px;
    font-weight: 400;
    line-height: 34px;
    height: 290px;
    position: relative;
}
.solution-desc-box li {
    position: relative;
    padding-left: 35px;
}
.solution-desc-box li:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url(../../images/icon-list.png);
    text-align: center;
    position: absolute;
    top: 5px;
    left: 0;
    
}
.solution-price {
    margin-top: 20px;
    font-size: 60px;
    line-height: 1em;
    text-align: center;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    
}
.solution-bm-words {
    font-size: 22px;
    line-height: 1em;
    padding: 10px 10px;
    background-color: #ffd200;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

@media only screen and (min-width: 480px) {
    .solution-item {
        width: 48%;
        float: left;
        margin-right: 4%;

    }
    .solution-item:nth-of-type(2) {
        margin-right: 0;
    }
    .solution-item:last-of-type {
        margin-bottom: 0;
    }
}
@media only screen and (min-width: 1170px) {
    .solution-item {
        width: 30%;
        margin-right: 5%;
        margin-bottom: 0;
    }
    .solution-item:nth-of-type(2) {
        margin-right: 5%;
    }
    .solution-item:last-of-type {
        margin-right: 0;
    }
}

/* Testimonials */

.user-img,
.user-id {
    display: inline-block;
}
.user-img {
    width: 120px;
    height: 120px;
    margin-right: 10px;
    border-radius: 50%;
    overflow: hidden;
    vertical-align: middle;
}
.user-id {
    vertical-align: middle;
}
.user-desc {
    text-align: left;
    margin-bottom: 20px;
}
.user-name {
    font-size: 30px;
    font-weight: 300;
    margin-bottom: 15px;
    line-height: 1em;
}

.comment p {
    text-align: left;
    margin-bottom: 20px;
}
.comment p.next-user {
    text-align: right;
    margin-bottom: 40px;
}
.next-testimonial {
    padding-right: 40px;
    text-decoration: none;
    color: inherit;
    position: relative;
}
.next-testimonial:after {
    content: "";
    width: 26px;
    height: 3px;
    background-image: url("../../images/icon-arrow.png");
    position: absolute;
    right: 0;
    top: 8px;
} 
@media only screen and (min-width: 768px) {
    .user-img {
        margin-right: 30px; 
        width: 140px;
        height: 140px;
    }
    .comment {
        width: 50%;    
    }
    .testimonials {
        background-image: url("../../images/img-06.jpg");
        background-repeat: no-repeat;
        background-position: right 0;
        background-size: auto 100%;
        text-align: left;
    }
  
}
@media only screen and (min-width: 1170px) {
    .testimonials {
        background-image: url("../../images/img-04.jpg");
        
    }
}

/* Conditions */
.condition-title {
    font-size: 36px;
    line-height: 1em;
    font-weight: 400;
    text-align: center;
    padding: 20px 0;
    font-variant: small-caps;
    background-color: #ffd200;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.condition-item {
    border-radius: 10px;
    margin-bottom: 40px;
    position: relative;
    background-color: #f7f0e6;
    height: 300px;
}
.condition-desc {
    
    border-top: 5px solid #fff;
    padding: 20px;
    text-align: left;
}
.condition-desc ul {
    list-style: circle inside;
}
.condition-desc p {
    margin-bottom: 15px;
}
.black-dang {
    color: #e11a27;
    font-weight: 700;
}

@media only screen and (min-width: 480px) {
    .condition-item {
        width: 48%;
        float: left;
        margin-right: 4%;
    }
    .condition-item:nth-of-type(2) {
        margin-right: 0;
    }
}

@media only screen and (min-width: 1170px) {
    .condition-item {
        width: 30%;
        margin-right: 5%;
    }
    .condition-item:nth-of-type(2) {
        margin-right: 5%;
    }
    .condition-item:last-of-type {
        margin-right: 0;
    }
}

/* Footer */
.footer {
    background-color: #ffd200;
    padding: 40px 0;
}
.footer-nav {
    margin-bottom: 20px;
}
.ref-list li {
    margin-bottom: 5px;
}
.ref-list a {
    color: inherit;
    text-decoration: none;
    font-size: 18px;
    line-height: 1em;
}
.ref-list-social li {
    display: inline-block;
    padding-right: 10px;
}
.ref-list-social a {
    text-decoration: none;
    color: #000;
    font-size: 26px;
    line-height: 1em;
}
.ref-list {
    width: 80%;
    margin: 0 auto;
    padding-top: 10px;
    border-top: 1px solid #000;
    text-align: center;
    margin-bottom: 20px;
}


@media only screen and (min-width: 768px) {
    .ref-list {
        width: 15%;
        margin-right: 5%;
        float: left;
        margin-bottom: 0;
        text-align: left;
    }
    .ref-list-social {
        float: right;
        margin-right: 0;
    }
}

@media only screen and (min-width: 1170px) {
    .ref-list {
        width: 10%;
    }
}

/* Menu side-bar */
.menu {
    position: fixed;
    top: 70px;
    left: -300px;
    z-index: 100;
    width: 250px;
    height: 100%;
    padding: 40px 30px;
    text-align: left;
    background-color: #fff;
    transition: left .3s ease;
    box-shadow: 4px 0 10px 10px rgba(0, 0, 0, .1);
}
.menu li {
   
}
.menu a:hover {
    background-color: #ffd200;
}
.menu a {
    padding: 15px 30px;
    border-radius: 10px;
    display: block;
    font-size: 24px;
    text-decoration: none;
    color: #000;
}
.copyrights a {
    color: inherit;
}