/** ================================== **/
/** ------( HTML - Body & Tags )------ **/
/** ================================== **/

body {
  margin: 0;
  display: flex;
  flex-direction: column;
  font-family: 'Times New Roman', Times, serif;
  overflow-x: hidden;
  color: #232323;
  margin: 0;
  font-family: inherit;
}
a {
  text-decoration: none;
  font-family: inherit;
  color: unset;
}
button {
  border: 0;
  padding: 0;
  color: inherit;
  background-color: inherit;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  cursor: pointer;
}


.btn {
    background-color: #e9582e;
    color: #fff;
    padding: 12px 25px;
    border-radius: 25px;
    display: inline-block;
    margin-top: 20px;
    font-size: 16px;
}

.btn-outline {
    padding: 12px 25px;
    border-radius: 25px;
    border: 2px solid #e9582e;
    color: #e9582e;
    display: inline-block;
    margin-top: 20px;
    font-size: 16px;
}

/* Web Pages Path */
.webpagepath {
  display: flex;
  flex-direction: row;
  width: 100%;
  margin: 40px 0 0 0;
  padding: 0 0 40px 0;
  gap: 10px;
  border-bottom: 1px solid #EBEBEB;
}
.webpagepath-divider {
  display: flex;
  color: #757575
}
.webpagepath-link {
  display: flex;
  color: #757575
}
.webpagepath-currentlink {
  display: flex;
  color: #E54C2A
}
/* ------------------------------------------------------------- */
/*   STORY                                                       */
/* ------------------------------------------------------------- */

.story {
    display: flex;
    padding: 120px 80px;
    gap: 60px;
    align-items: center;
}

.story-image img {
    width: 540px;
}

/* ------------------------------------------------------------- */
/*   SERVICES                                                    */
/* ------------------------------------------------------------- */

.services {
    background-color: #e9582e;
    padding: 40px 80px;
    display: flex;
    justify-content: space-between;
    border-radius: 10px;
    max-width: 1100px;
    margin: 0 auto;
    color: white;
}

.service {
    display: flex;
    align-items: center;
    gap: 15px;
}

.service img {
    width: 55px;
}

.service h4 {
    font-weight: 600;
}

/* ------------------------------------------------------------- */
/*   PRODUCTS                                                    */
/* ------------------------------------------------------------- */

.products {
    text-align: center;
    padding: 120px 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.product img {
    width: 180px;
    border-radius: 12px;
}

.product p {
    font-weight: 600;
    margin-top: 10px;
}

.product span {
    color: #e9582e;
    font-weight: 500;
}

/* Trending layout */
.trending-layout {
    display: flex;
    justify-content: center;
    width: 85%;
    margin: 0 auto;
    gap : 15px;
}

.side-banner img {
    width: 380px;
    border-radius: 10px;
}

/* ------------------------------------------------------------- */
/*   BIG BANNER                                                  */
/* ------------------------------------------------------------- */

.big-banner-bg {
    background-image: url(assets/bg-temoignages.jpg);
    display: flex;
    height: 400px;
    width: 100%;
    align-items: center;
    justify-content: center;
}
.big-banner {
    flex-direction: column;
    width: 60%;
    display: flex;
    gap: 10px;
    color: #fff;
    align-items: center;
    justify-content: center;
}
.big-banner img {
    width: 100px;
    border-radius: 100%;
}
.big-banner p {
    text-align: center;
}

/* ------------------------------------------------------------- */
/*   FEATURED                                                    */
/* ------------------------------------------------------------- */

.featured-layout {
    display: flex;
    justify-content: center;
    width: 85%;
    margin: 0 auto;
    gap : 15px;
}

.product-list-featured {
    flex: 1;
}

/* ------------------------------------------------------------- */
/*   BLOG                                                        */
/* ------------------------------------------------------------- */

.blog {
    padding: 120px 0;
    text-align: center;
    line-height: 1.8;
    color: #fff;
}
.p.blog-author{
    display : flex;
    color : #444;
}
.blog-titreinfo {
    display: flex;
    flex-direction: row;
    align-items: center;
    color : #444;
}
.blog-date {
       width: 25%;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 85%;
    margin: 40px auto 0;
}

.blog-card-img {
    width: 100%;
}

.blog-title {
    width: 75%;
    font-weight: 600;
    color : #444;
}

.blog-author {
    color: #e9582e;
    font-size: 14px;
}

.blog-desc {
    font-size: 14px;
    margin-top: 8px;
    opacity: .8;
    color : #444;
}

.p.blog-desc {
    display : flex;
    color :#444;
}

/* -------------------------------------------------- */

.site-header{
    background:var(--accent);
    padding:24px 0;
    color:#fff;
    text-align:center
}

.site-header.logo{
    font-weight:700;
    font-size:20px
}


.breadcrumb{
    background:#efefef;
    padding:12px 5%;
    font-size:14px
}


.breadcrumb a{
    color:#666;
    text-decoration:none;
    margin-right:8px
}


.breadcrumb span{
    color:#999
}


.container{
    width:90%;
    max-width:var(--container-width);
    margin:40px auto
}


.post{
    display:flex;
    gap:30px;
    align-items:flex-start
}

.post-media{
    width:320px;
    flex:0 0 320px
}

.post-media img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:4px
}


.post-content{flex:1}

.post-title{
    font-size:22px;
    margin:0 0 8px
}

.post-meta{
    font-size:12px;
    color:#999;
    margin-bottom:18px 
}

.post-meta{
    border-top: 1px, #999;
    border-bottom: 1px, #999;
    padding-top : max var(--container-width);
    padding-bottom: max var(--container-width);
}

.post-content p{
    line-height:1.8;
    color:#444
}


.newsletter{
    background:var(--muted);
    padding:60px 20px;
    text-align:center;
    margin-top:40px
}
.newsletter h2{
    margin:0 0 6px;
    font-size:22px
}


.newsletter-sub{
    margin:0 0 18px;
    color:#666
}

.newsletter-form{
    margin-top:18px
}

.newsletter input{
    padding:12px 14px;
    width:320px;
    max-width:80%;
    border-radius:30px;
    border:1px solid #ddd;
    outline:none
}


.newsletter button{
    padding:12px 22px;
    margin-left:10px;
    border-radius:30px;
    border:none;
    background:var(--accent);
    color:#fff;
    cursor:pointer
}


.newsletter-message{
    margin-top:16px;
    font-weight:600
}


.site-footer{
    display:flex;
    gap:30px;
    justify-content:space-around;
    padding:50px 5%;
    background:#fafafa;
    margin-top:40px
}
.footer-col{
    max-width:260px
}

.footer-col h3{
    margin-top:0
}

.footer-col ul{
    padding-left:18px;
    margin:6px 0
}


/* Responsive */


select {
  border: 0;
  padding: 0;
  color: inherit;
  background-color: inherit;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  cursor: pointer;
  box-shadow: none;
  outline: none;
}
select.webpage-link {
  position: relative;
}
option.webpage-link {
  background-color: #232323;
}

/** ===================================== **/
/** ------( Navigation Bar & Menu )------ **/
/** ===================================== **/

.header-background {
  display: flex;
  height: 100px;
  width: 100%;
  align-items: center;
  justify-content: center;
  background-color: #E54C2A;

}
.header-container {
  display: flex;
  width: 70%;
  align-items: center;
  justify-content: space-between;
  color: #EBEBEB;
}

.webpage-section {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
.webpage-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.webpage-link {
  display: flex;
  padding: 0 10px;
  font-weight: 600;
}

/* Burger Menu */
.burger-menu {
  display: none;
  width: 25px;
  height: 25px;
}

/* Website Logo */
.website-logo {
  display: flex;
  height: 80px;
  width: 80px;
  align-items: center;
  justify-content: center;
  padding: 5px;
  background-color: #E54C2A;
  border-radius: 50%;
}
.website-logo img {
  height: 95%;
  width: 95%;
}

.webpagetools-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.webpage-tools {
  display: flex;
  padding: 1px 15px;
}
.webpage-tools.borderline {
  border-left: 1px solid #EBEBEB;
  border-right: 1px solid #EBEBEB;
}
.webpage-tools-icon {
  display: flex;
  width: 25px;
  align-items: center;
  justify-content: center;
}

/* Barre de recherche */
.search-section {
  display: none;
  width: 420px;
  height: 40px;
  background-color: #232323;
}
.search-bar {
  display: flex;
  width: 100%;
  padding: 10px 45px 10px 10px;
  color: #FFFFFF;
  background-color: inherit;
  outline: none;
  &::placeholder{
    color: #FFFFFF;
  }
}
.search-button {
  margin: 0 0 0 -35px;
  width: 40px;
  justify-content: center;
  align-items: center;
  background-color: inherit;
}

/* Responsive Tablette - 770px */
@media screen and (max-width: 770px) {
  .website-logo {
    height: 100px;
    width: 100px;
  }
  .webpage-link {
    display: none;
  }
  .burger-menu {
    display: flex;
  }
}
/* Responsive Smartphone - 480px */
@media screen and (max-width: 480px) {
  .header-background {
    height: 200px;
  }
  .header-container {
    flex-direction: column;
  }
  .search-section {
    display: flex;
    width: 280px;
  }
}

/** ---------------------------------------- **/

.section-background {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center; 
}  
.section-container {
  display: flex;
  flex-direction: column;
  width: 80%;
  align-items: flex-start;
}


/** ---------------------------------------- **/

.createaccount-container h2 {font-size: 2em;font-weight: 200;}
.createaccount-container sub {font-size: 1.2em;}

/* Create Account */
.createaccount-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 80px 0;
  gap: 5px;
}

.createaccount-form {
  display: flex;
  flex-direction: column;
  padding: 40px 0 0 0;
  gap: 15px;
  border-top: 1px solid #EBEBEB;
}
.createaccount-forminputs {
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}

/* Category Tags */
.tags-container {
  display: flex;
  flex-direction: row;
  gap: 3px;
  align-items: flex-end;
}
.importanttag {
  display: flex;
  color: #FF0F0F;
  font-weight: 550;
}
.categorytag {
  display: flex;
}

.createaccount-inputs {
  border: 1px solid #AFAFAF;
  border-radius: 10px;
  color: #232323;
  width: 80%;
  padding: 5px 10px;
  &:focus {
    outline: none;
  }
  &::placeholder{
    color: #AFAFAF;
  }
}
.input-firstname {display: flex;}
.input-lastname {display: flex;}
.input-email {display: flex;}
.input-password {display: flex;}

/* "Create Account" Button */
.createaccount-buttonbox {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}
.createaccount-button {
  border: 0;
  border-radius: 40px;
  padding: 10px 20px;
  background-color: #EBEBEB;
  color: #757575;
  font-weight: 550;
}
.createaccount-return {display: flex;}


/** ---------------------------------------- **/
.error404-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 80px 0;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.error404-image {
  width: 800px;
}
.backhome-button {
  border: 0;
  border-radius: 40px;
  padding: 10px 20px;
  background-color: #EBEBEB;
  color: #232323;
  font-weight: 550;
}

/** ---------------------------------------- **/
.aboutus-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 80px 0;
  gap: 10px;
}
.aboutus-container h1 {font-size: 2em;}
.aboutus-container sub {font-size: 1em;}

/** ---------------------------------------- **/



/** ---------------------------------------- **/
.footer-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  justify-content: center;
}

/** Footer Newsletter **/
.footernewsletter {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 0 80px 0;
  align-items: center;
  justify-content: center;
  background-image: url(assets/blog6-370x232.jpg.jpeg);
  background-size: cover;
  gap: 50px;
}
.footernewsletter-text {
  display: flex;
  flex-direction: column;
  margin: 120px 0 0 0;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  gap: 10px;
}
.footernewsletter-subcription {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 600px;
  height: 40px;
}

.subsinput-text {
  border: 1px solid #AFAFAF;
  border-radius: 40px;
  color: #232323;
  width: 100%;
  padding: 0 45px 0 20px;
  &:focus {
    outline: none;
  }
  &::placeholder{
    color: #AFAFAF;
  }
}
.subsinput-button {
  border: 0;
  border-radius: 40px;
  margin: 0 0 0 -40px;
  padding: 0 40px;
  background-color: #E54C2A;
  color: #FFFFFF;
  font-weight: 550;
}

/** Footer Contents **/
.footercontents-background {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.footercontents-container {
  display: flex;
  flex-direction: row;
  margin: 60px 0;
  padding: 100px 0;
  width: 75%;
  align-items: flex-start;
  justify-content: space-evenly;
  border-top: 1px solid #EBEBEB; 
  gap: 5px;
}
.footercontents-box {
  display: flex;
  flex-direction: column;
  width: 25%;
  justify-content: flex-start;
  gap: 10px;
}

/* Footer Contents - "About Us" */
.footercontents-coms {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
}
.footercontents-comslogo {
  display: flex;
  width: 18px;
}

/* Footer Contents - Products */
.footercontents-products {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 15px;
}
.footerproducts-img {
  display: flex;
  width: 90px;
}

.footerproducts-desc {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footerproducts-desc sub {
  color: #E54C2A;
  font-size: 1.2em;
  font-weight: 550
}


/** Copyright & Social Links **/
.copyrightsociallink-background {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #EBEBEB;  
}
.copyrightsociallink-container {
  display: flex;
  flex-direction: row;
  margin: 20px 0;
  width: 80%;
  align-items: center;
  justify-content: space-between;
}

.copyright-container {
  display: flex;
  flex-direction: row;
  width: 50%;
  align-items: center;
  justify-content: flex-start;
  gap: 3px;
}
.copyright-text {
  color: #757575;
}
.copyright-text a {
  color: #E54C2A;
}

.sociallink-container {
  display: flex;
  flex-direction: row;
  width: 50%;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}
.sociallink-base {
  display: flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border: 1px solid #AFAFAF;
  border-radius: 100%;
}
.interactive-sociallink {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.sociallink-15pxlogo {
  width: 15px;
}