html {
    font-family: 'Open Sans', sans-serif;
    font-size: 62.5%;
    line-height: 1.25;
}

body {
    font-size: 16px;
    font-size: 1.6rem;
}

img {
    max-width: 100%;
    height: auto;
    flex-shrink: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

.wrapper {
    padding: 0 10px;
}
.container {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 1024px;
    flex-wrap: wrap;
    min-height: 1px;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
    width: 100%;
}

#nav-toggle {
    position: fixed;
    right: 10px;
    top: 10px;
    background-color: rgba(255, 255, 255, .5);
    padding: 8px 10px;
}

.nav-open {
    transform: translate(0, 0);
}

.overlay {
    visibility: hidden;
    background-color: rgba(0, 0, 0, .0);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: fixed;
}

.overlay-on {
    background-color: rgba(0, 0, 0, .5);
    transition: 1s ease;
    visibility: visible;
}
.logo {
    width: 190px;
    padding: 20px;
}

nav {
    position: fixed;
    background-color: #FFF;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    transform: translate(300px, 0);
    width: 300px;
    transition: .5s ease;
    align-items: center;
    display: flex;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    padding: 10px 0;
}

nav * a {
    display: inline-flex;
    text-decoration: none;
    color: #000;
    padding: 10px 15px;
    background-color: rgba(255,255,255,0);
    transition: .5s ease;
    align-items: center;
}
nav * a:hover {
    background-color: #46BD2E;
    transition: 0.5s ease;
    color: #FFF;
}
span.icon {
    padding: 1rem;
    background-color: #df5263;
    margin: 1rem;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.ico-cart {
    padding-left: 10px;
    width: 25px;
}
.center {
    text-align: center;
    width: 100%;
}

.title {
    padding-bottom: 2em;
}
.orange {
    color: #46BD2E;
}
.red-italic {
    color: red;
    font-style: oblique;
}
.thin {
    font-weight: 100;
}
.medium {
    font-weight: 400;
}
.italic {
    font-style: oblique;
}
.underline {
    text-decoration: underline;
}
.uppercase {
    text-transform: uppercase;
}
.hero {
    width: 100%;
    background: #F0F0F0;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    color: #000;
    margin-bottom: 1.5rem;
}

.hero h1 {
    color: #46BD2E;
}
.hero h2 {
    color: #4A4A4A;

}

.hero .image {
    height: 66vh;
    overflow: hidden;
    border: solid 2px #FFF;
    justify-content: center;
    align-items: start;
}
.hero-text {
    width: 70%;
    padding: 0 5%;
    text-align: center;
}
.signature {
    max-width: 150px;
}
.big-border {
    background-color: #9ba07d;
    height: 10px;
    margin: 10px 0;
}

.browser-height {
    align-content: center;
    align-self: center;
}
.btn, .btn-invert {
    font-weight: 100;
    background: #46BD2E;
    border: solid 2px;
    border-color: #46BD2E;
    border-radius: 6px;
    font-size: 14px;
    font-size: 1.4rem;
    color: #fff;
    text-align: center;
    display: inline-block;
    padding: 5px 20px;
    transition: .5s ease;
    margin: 10px 10px 10px 0;

}
.btn:hover {
    background: #fff;
    color: #46BD2E;
    transition: .5s ease;

}
.btn-invert {
    background: #fff;
    color: #46BD2E;
}
.btn-invert:hover {
    background: #46BD2E;
    color: #fff;
}

/*

Items
*/

.item {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 10px;
    padding-bottom: 2em;
    justify-content: flex-start;
}

.item-image {
    display: flex;
    flex-grow: 0;
    justify-content: center;
    align-items: center;
    align-self: center;
    height: 30vh;
    overflow: hidden;
}

.item-image img {
    width: 100%;
    object-fit: cover;
    object-position: top;
    height: 100%;
}

.item-text {
    text-align: center;
    padding-bottom: 20px;
}
.item h1, .item h2 {
    font-size: 24px;
    font-size: 2.4rem;
}
/*
Home page
*/
.checklist {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 20px;
    font-size: 2rem;
}
.checklist li {
    font-weight: bold;
    color: #4baf4f;
    text-transform: uppercase;
}
.checklist li::before {
    content: "✓";
    font-size: 30px;
    font-size: 3rem;
    color: #4CAF50;
    font-weight: 900;
    margin-right: 8px;
}
.home-badges {
    display: flex;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}
.home-badges img {
    max-width: 50%;
}

/*
Quarantee
*/
.guarantee {
    border: solid 2px #46BD2E;
    border-radius: 15px;
    overflow: hidden;
}
.guarantee h1 {
    background: #46BD2E;
    color: #fff;
    margin: 0;
    padding: 10px;
    font-size: 16px;
    font-size: 1.6rem;
    text-align: center;
}
.guarantee p {
  margin: 10px;
  font-size: 16px;
  font-size: 1.6rem;
}
.quarantee-icons-center {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%
}

.order-now {
    text-align: center;
}
.order-now img.ico-cart {
    width: 100px;
}

.guarantee-container {
    min-height: 80vh;
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*
 Interview
 */
 .interview-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.interview-title h1,
.interview-title h2 {
   text-align: center;
   margin: .5rem 0;
   width: 100%;
}
.interview-title h1{
    color: #46BD2E;
    font-size: 3em;
}
.interview-title .red-box {
    background: #df5263;
    color: #FFEB3B;
    border-radius: 5px;
    padding: 1rem;
    font-size: 1.5em;
    width: 90%;
}
.helena-interview {
    padding: 0 10px;
}
.interview h2 {
    color: #4A4A4A;
    font-size: 2em;
}
.interview-intro {
    background: #fbc933;
    padding: 1rem;
    float: left;
    max-width: 100%;
    margin: 0 1rem 1rem 0;
    font-style: oblique;
}

.name-right {
 font-style: normal;
 text-align: right;
 font-weight: bold;
}
.marie-interview h3 {
    color: #FB0106FF;
}
.marie-interview {
    padding: 0 2.5rem 0 0;
}
.first-letter {
    float: left;
    font-size: 4rem;
    line-height: 1;
    font-weight: bold;
    font-style: oblique;
    margin: 0 .7rem 0 0;
}

.helena-image
{
    display: flex;
    width: 100%;
}
.text-under-image {
    padding: 5px;
    font-size: 1.2rem;
    text-align: center;
    background-color: #FFEB3B;
    margin-bottom: 15px;
}
.question {
   background: #cfcfcf;
   padding: 10px;
   border-radius: 10px;
   display: inline-flex;
   margin: 5px 35px 5px 0px;
   position: relative;
}
.question::after {
    content: "";
    position: absolute;
    right: -40px;
    margin-top: -12px;
    width: 45px;
    height: 45px;
    overflow: hidden;
    border-radius: 45px;
    background: url(../img/interview-avatar.jpg);
    background-size: cover;
    background-position: center;
    border: solid 1px #cfcfcf;
    box-shadow: 1px 1px 3px #9E9E9E;
}
.question b {
    padding-right: 7px;
}
.answer {
 display: inline-block;
 padding: 10px;
 background: #ffe5be;
 border-radius: 10px;
 margin: 5px 0 5px 40px;
}
.answer::before {
    content: "";
    position: absolute;
    margin-left: -50px;
    margin-top: -10px;
    width: 45px;
    height: 45px;
    overflow: hidden;
    border-radius: 45px;
    background: url(../img/marie-avatar.jpg);
    background-size: cover;
    background-position: center;
    border: solid 1px #fee6be;
    box-shadow: 1px 1px 3px #9E9E9E;
}

/*
how-it-works
*/

.doc-image-box {
    float: left;
    margin: 0 20px 0 0;
    max-width: 125px;
    display: flex;
    flex-direction: column;
}
.doc-image-box .text-under-image {
    background: #cccccc;
    font-size: 11px;
    font-size: 1.1rem;
    border: solid 1px #ccc;
}
.doc-image {
    display: flex;
    border: solid 1px #ccc;
}
.header-how-it-works {
    text-align: center;
}
/*

Quarantee page

*/
.guarantee-container img {
    max-width: 40%;
}
.guarantee-container .col-6 {
    text-align: center;

    flex-direction: column;
    align-items: center;
    justify-content: center;
}


/*

Test form

*/
.test-form form {
    background-color: #f0f0f0;
    border-radius: 15px;
    padding: 15px;
}

.test-form .center {
    display: block;
}
.test-form  ul {
    margin: 0;
    padding: 0;
}
.test-form  ul li {
    list-style: none;
    margin: 0;
    padding: 15px 5px;
    display: flex;
}

.check label {
    padding-left: 10px;
}
.test-result {
    display: inline-block;
    background: #cfcfcf;
    position: relative;
    border-radius: 15px;
    padding: 10px;
}
.test-result-show {
    display: inline-block;
}

.how-to-use {
    padding: 15px;
    border-radius: 15px;
    border: dashed red 3px;
    color: red;
    font-weight: bold;
}

.how-to-use-title {
    padding-bottom: 10px;
}


 /*

testimonies

*/

.testimonies-text {
}
.testimonie {
    padding: 15px;
    background: #f0f0f0;
    margin: 15px;
    border-radius: 15px;
    display: inline-block;
}



/*

order

*/

.post-fee {
    font-size: 12px;
    font-size: 1.2rem;

}
.terms {
    font-size: 14px;
    font-size: 1.4rem;
}
.terms-second {
    font-size: 12px;
    font-size: 1.2rem;
}
.terms-second [type=checkbox] {
    width: 10px;
}
.order-form input {
    width: 100%;
    padding: 5px;
}
.order-form p {
    display: flex;
}
.product {
    background: #f0f0f0;
    border-radius: 15px;
    padding: 15px 0;
    margin: 0 0 15px 0;
}

.product-row {
    display: flex;
}

.product-row .container {
    align-items: center;

}
.price-title {display: none;}
.price {
    font-weight: 600;
    font-size: 20px;
    font-size: 2rem;
}
.price-before {
    text-decoration: line-through;
    text-decoration-color: #ff0000;
}
.product-text, .product-price {
    padding: 0 0 0 10px;
}

.product-text .btn, .order-total-btn .btn, .btn-home {
    background: #E05263;
    font-size: 18px;
    font-size: 1.8rem;
    border-color: #E05263;
    margin-top: 25px;
    cursor: pointer;
}
.product-text .btn:hover, .order-total-btn .btn:hover, .btn-home:hover {
    background: #fff;
    font-size: 18px;
    font-size: 1.8rem;
    border-color: #E05263;
    color: #E05263;
}
.btn-home {
    background: #E05263;
    font-size: 20px;
    font-size: 2rem;
    border-color: #E05263;
    margin-top: 15px;
    font-weight: bold;
    text-transform: uppercase;
}
.btn-home:hover {
    font-size: 20px;
    font-size: 2rem;
}

.product-title {
    font-weight: bold;
    font-size: 20px;
    font-size: 2rem;
    margin-bottom: 10px;
}

.product-image {
    text-align: center;
}
.product-image img {
    max-width: 70px;
}

.total-post-fee, .total {
    text-align: right;
    padding: 0 15px;
}
.order-total .product-text .btn {
    display: none;
}
.total-ammount {
    font-weight: bold;
}
.order-total-btn {
    text-align: right;
    margin-bottom: 30px;
}
.order-total .price-title {display: inline;}

/*
Ordering country
*/
ul.country-chose {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}
ul.country-chose li {

}
ul.country-chose a {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-flow: row;
}
ul.country-chose img {
    width: 30px;
    border: solid 1px;
    margin-right: 5px;
}


/*

Footer

*/

footer {
    font-size: 12px;
    font-size: 1.2rem;
    color: #fff;
    background-color: #46BD2E;
    margin-top: 20px;
}

@media (min-width: 760px) {
    .interview-intro {
        background: #fbc933;
        padding: 1rem;
        float: left;
        max-width: 40%;
        margin: 0 1rem 1rem 0;
        font-style: oblique;
    }
    .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%;
    }

    .overlay {
        display: none;
    }
    .hero {
        background-attachment: fixed;
    }




    .hero {

        flex-direction: row;

    }

/*
.hero .image {
    max-width: 30%;
    height: 100%;
    overflow: hidden;
    border: solid 2px #FFF;
    display: flex;
    justify-content: center;
    align-items: center;

    }*/
    .hero-text {
        width: 70%;

    }
.item-image {
    height: 30vh;
}


}


@media (min-width: 1024px) {

   header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    padding: 0px;
    display: flex;
    justify-content: space-between;
    border-bottom: solid 1px #f0f0f0;
    background-color: rgba(255, 255, 255, .9);
    z-index: 999;
}
.header-scroll {
    background-color: rgba(255, 255, 255, .9);
    transition: .5s ease;
}
nav {
    position: static;
    position: initial;
    background-color: transparent;
    top: auto;
    top: initial;
    right: initial;
    bottom: auto;
    bottom: initial;
    transform: none;
    width: auto;
    color: #fff;
    font-weight: 100;
    font-size: 16px;
    font-size: 1.6rem;
}

nav ul li {
    display: inline-block;
    padding: 0 10px;
}

#nav-toggle {
    display: none;
}
nav * a {
    padding: 10px 5px;
}
.home-badges img {
    max-width: 29%;
}
.item-image {
    height: 20vh;
}
}
@media (min-width: 1200px) {
    nav * a {
        padding: 10px 20px;
    }
}