body {
    margin: 0;
    font-family: 'Heebo' , sans-serif;
}

.container {
    width: 1440px;
    max-width: 90%;
    margin: auto;
}

header {
    height: 70px;
    box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.1);
}

header section.logo {
    font-size: 27px;
}

header section.logo span.blue-dot {
    background-color: #33C6DD;
    height: 10px;
    width: 10px;
    display: inline-block;
    vertical-align: middle;
    border-radius: 10px ;
}

header nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

header nav ul li {
    display: inline-block;
    margin-right: 26px;
}

header nav ul li:last-of-type {
    margin-right: 0;
}

header nav ul li a {
    color: #3E3E3E;
    text-decoration: none;
    font-size: 15px;
}

header nav ul li a:hover {
    color: #33C6DD;
}


header .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

section.hero {
    position: relative;
}

section.hero img {
   width: 100%;
   height: auto;
}

section.hero .hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

section.hero .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

section.hero h1,
section.hero p {
    color: white;
    margin-top: 0;
    margin-bottom: 20px;
    max-width: 495px;
}

section.hero h1 {
    font-weight: 400;
    font-size: 50px;
    line-height: 56px;
}

section.hero p {
    font-weight: 300;
    font-size: 20px;
    line-height: 28px;
}

section.hero button {
    width: 200px;
    height: 50px;
    background-color: #33C6DD;
    border: 1px solid #33C6DD;
    border-radius: 25px;
    color: white;
    cursor: pointer;
    font-size: 16px;
    text-transform: uppercase;
}

section.hero button:hover {
    background-color: white;
    border: 1px solid #33C6DD;
    color: #33C6DD;
}

section.best-sellers {
    padding-top: 90px;
}

section.best-sellers h2 {
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 34px;
    font-weight: 400;
    line-height: 42px;
    text-align: center;
}

section.best-sellers hr {
    margin: auto;
    width: 60px;
    border: none;
    height: 6px;
    background-color: #33C6DD;
    margin-bottom: 76px;
}

section.best-sellers .product-slider .container {
    display: flex;
    justify-content: space-around;
}

section.best-sellers .product-slider .product {
    border: 1px solid #DDDDDD;
    border-radius: 8px;
    margin: 0 8px;
    text-align: center;
    width: 33%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

section.best-sellers .product-slider .product:hover {
    cursor: pointer;   
}

section.best-sellers .product-slider .product:hover button {
    border: 1px solid #33C6DD;
    background-color: #33C6DD;
    color: white;
    cursor: pointer;
}

section.best-sellers .product-slider .product.new::before {
   content: "New";
   position: absolute;
   top: 12px;
   right: 12px;
   text-align: center;
   color: white;
   background: #614DC9;
   border-radius: 16px;
   font-weight: 700;
   font-size: 14px;
   padding: 5px 26px;
}

section.best-sellers .product-slider .product img .product-info {
    margin-top: 50px;
}

section.best-sellers .product-slider .product img {
    max-width: 100%;
}

section.best-sellers .product-slider .product h5 {
    font-weight: 400;
    font-size: 14px;
    line-height: 30px;
    color: #33C6DD;
    margin-top: 0;
    margin-bottom: 10px;
}

section.best-sellers .product-slider .product h4 {
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    margin-top: 0;
    margin-bottom: 10px;
}

section.best-sellers .product-slider .product .price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
}

section.best-sellers .product-slider .product .price h3 {
    font-weight: 700;
    font-size: 28px;
    line-height: 30px;
    margin-top: 0;
    margin-bottom: 0px;
}

section.best-sellers .product-slider .product .price.discount h3 {
    color: #EC1C1C;
}

section.best-sellers .product-slider .product .price span.original-price {
    margin: 0 10px;
    font-size: 16px;
    line-height: 24px;
    color: #9B9B9B;
    text-decoration: line-through;
}

section.best-sellers .product-slider .product button {
    height: 44px;
    background-color: transparent;
    border: 1px solid #000000;
    border-radius: 25px;
    width: 220px;
    max-width: 100%;
    font-weight: 400;
    line-height: 16px;
    text-transform: uppercase;
}

section.newsletter {
    background-color: #f5f5f5;
    width: 950px;
    max-width: 100%;
    margin: 80px auto;
    padding: 72px 0;
    text-align: center;
}

section.newsletter h3 {
    font-weight: 400;
    font-size: 24px;
    line-height: 42px;
    margin-top: 0;
    margin-bottom: 10px;
}

section.newsletter p {
    font-size: 16px;
    line-height: 24px;
    margin-top: 0;
    margin-bottom: 10px;
}

section.newsletter input[type=email] {
    width: 320px;
    height: 48px;
    border-radius: 25px 0 0 25px;
    padding: 0;
    padding-left: 24px;
    font-size: 14px;
    line-height: 21px;
    border: 1px solid #000000;
    box-sizing: border-box;
    border-right: none;
}

section.newsletter input[type=email]::placeholder {
    color: #3E3E3E;
}

section.newsletter button[type=submit] {
    background-color: #614DC9;
    border: 1px solid #614DC9;
    height: 48px;
    border-radius: 0 25px 25px 0;
    padding: 0 36px;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #FFFFFF;
    text-transform: uppercase;
}

section.newsletter button[type=submit]:hover {
    background-color: white;
    border: 1px solid #000000;
    color: #614DC9;
    cursor: pointer;
}

footer {
    background-color: #3E3E3E;
    color: white;
    padding: 60px 0;
}

footer .container {
    display: flex;
    justify-content: space-between;
    width: 950px;
    max-width: 100%;
}

footer ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 25%;
}

footer ul li.list-title {
   font-weight: 400;
   font-size: 20px;
   line-height: 26px;
   margin-bottom: 20px;
}

footer ul li {
   font-weight: 400;
   font-size: 16px;
   line-height: 24px;
   margin-bottom: 10px;
}

footer ul li a {
    color: white;
    text-decoration: none;
 }

 footer ul li a:hover {
    color: #33C6DD;
 }

footer ul li:last-of-type {
    margin-bottom: 0px;
 }

 section.copyright {
    text-align: center;
    background-color: #2B2B2B;
    padding: 18px 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #E0E0E0;
 }


 /* ################# */
 /* Styles for Smaller Desktop */
 /* ################# */
 @media only screen and (max-width: 1440px) {
    
    .container {
        width: 1180px;
        max-width: 90%;
    }

    section.hero h1,
    section.hero p {
    margin-bottom: 12px;
}

section.hero h1 {
    font-size: 44px;
    line-height: 50px;
}

section.hero p {
    font-size: 18px;
    line-height: 26px;
}

section.hero button {
    font-size: 14px;
}


section.best-sellers .product-slider .product h5 {
    font-size: 12px;
    margin-bottom: 8px;
}

section.best-sellers .product-slider .product h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

section.best-sellers .product-slider .product .price {
    margin-bottom: 6px;
}

section.best-sellers .product-slider .product .price h3 {
    font-size: 24px;
    line-height: 30px;
}

section.best-sellers .product-slider .product .price span.original-price {
    font-size: 14px;
    line-height: 21px;
}

section.best-sellers .product-slider .product button {
    height: 40px;
    width: 180px;
    font-size: 14px;
    line-height: 21px;
    }


    section.newsletter {
        width: 880px;
        margin: 70px auto;
        padding: 50px 0;
    }
    
    section.newsletter h3 {
        font-size: 22px;
    }
    
    section.newsletter p {
        font-size: 14px;
        line-height: 21px;
        margin-bottom: 15px;
    }
    
    section.newsletter input[type=email] {
        font-size: 12px;
        line-height: 18px;
    }
    
    section.newsletter button[type=submit] {
        font-size: 12px;
        line-height: 18px;
    }
    
    footer {
        padding: 50px 0;
    }
    
    footer .container {
        width: 1180px;
        max-width: 90%;
    }
    
    footer ul li.list-title {
       font-size: 16px;
       margin-bottom: 12px;
    }
    
    footer ul li {
       font-size: 14px;
       line-height: 21px;
    }

    section.copyright {
        padding: 14px 0;
        font-size: 14px;
     }

}

  /* ################# */
 /* Styles for Tablet */
 /* ################# */
  @media only screen and (max-width: 960px) {
    
    .container {
        width: 92%;
        max-width: 92%;
    }


section.hero h1 {
    font-size: 40px;
    line-height: 46px;
}

section.hero p {
    font-size: 16px;
    line-height: 24px;
}

section.hero button {
    font-size: 14px;
}


section.best-sellers .product-slider .product h5 {
    font-size: 11px;
    margin-bottom: 5px;
}

section.best-sellers .product-slider .product h4 {
    font-size: 13px;
    margin-bottom: 6px;
}

section.best-sellers .product-slider .product .price h3 {
    font-size: 24px;
    line-height: 30px;
}

section.best-sellers .product-slider .product .price span.original-price {
    font-size: 14px;
    line-height: 21px;
}

section.best-sellers .product-slider .product button {
    height: 40px;
    width: 180px;
    font-size: 14px;
    line-height: 21px;
    }


    section.newsletter {
        width: 880px;
        margin: 70px auto;
        padding: 50px 0;
    }
    
    section.newsletter h3 {
        font-size: 22px;
    }
    
    section.newsletter p {
        font-size: 14px;
        line-height: 21px;
        margin-bottom: 15px;
    }
    
    section.newsletter input[type=email] {
        font-size: 12px;
        line-height: 18px;
    }
    
    section.newsletter button[type=submit] {
        font-size: 12px;
        line-height: 18px;
    }
    
    footer {
        padding: 50px 0;
    }
    
    footer .container {
        width: 1180px;
        max-width: 90%;
    }
    
    footer ul li.list-title {
       font-size: 16px;
       margin-bottom: 12px;
    }
    
    footer ul li {
       font-size: 14px;
       line-height: 21px;
    }

    section.copyright {
        padding: 14px 0;
        font-size: 14px;
     }
    
  }
  /* ################# */
 /* Styles for Mobile */
 /* ################# */
  @media only screen and (max-width: 576px) {
    
    .container {
        width: 92%;
        max-width: 92%;
    }
  }

