
/* styling sheet for about us, contact us and sale */
*{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
  }
  /* the scroll btn */
  /* the scrolling effect */
#progressed {
    position: fixed;
    bottom: 40px;
    right: 30px;
    height: 50px;
    width: 50px;
    display: none;
    place-items: center;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    background: conic-gradient(rgb(3, 204, 101) 0%, rgb(215, 215, 215) 0%);
    cursor: pointer;
    z-index: 5000;
  }
  #progress-values {
    display: block;
    height: calc(100% - 15px);
    width: calc(100% - 15px);
    background-color: rgb(255, 255, 255);
    border-radius: 50%;
    place-items: center;
    font-size: 28px;
    color:rgba(0, 146, 69, 0.8);
    text-align: center;
    justify-content: center;
    justify-items: center;
  }

/* contact us begins */
/* mobile */
.contactus{
    background-color:rgb(44, 22, 8);
    background-image: url(images/contactbckgrnv2.png);
    background-repeat: no-repeat;
    background-size: cover; 
 
}
.contactus .contactus-container{
    background-color: rgb(44, 22, 8);
    color: rgb(255, 255, 255);
    padding: 25px;
}
.contactus-header{
    padding-bottom: 35px;
}
.contactus-header h1{
    font-size: 43px;
    font-family:"Kaushan Script", serif;
    color: white;
    font-weight: 500;
    font-style: normal; 
    margin: 0px;
}
.contactus-header p{
    padding: 0px;
}
.contactus-body h3{
    font-weight: 600;
    padding: 10px 0px 0px 0px;
}
.contactus-body h4{
    padding: 10px 0px;
}
/* the form */
.contactus #form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contactus .input-group {
    display: flex;
    gap: 10px;
}
.form-group
input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid rgb(204, 204, 204);
    border-radius: 4px;
    color: rgb(44, 22, 8);
    background-color: rgb(255, 228, 196);
}
.form-group
input[type="text"],
input[type="email"]{
    color: rgb(44, 22, 8);
    font-size: 16px;
}
.contactus input::placeholder,
textarea::placeholder {
    color: rgb(44, 22, 8);
    opacity: 1;
    font-size: 16px;
}

.contactus textarea {
    height: 100px;
    color: rgb(44, 22, 8);
    font-size: 15px;
    border: none;
    
}

.contactus button{
    padding: 10px;
    background-color: rgb(245, 166, 35);
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

.contactus button:hover {
    background-color: rgb(19, 139, 17);
    font-weight: 600;
}
.contactus #error {
    color:  rgb(245, 166, 35);
    max-width: 500px;
    width: 100%;
    text-align: left;

}
.contactus .error-message {
    color: rgb(245, 166, 35);
    font-size: 16px;
    margin-top: 5px;
    text-align: left;
}

/* desktop */

@media screen and (min-width: 900px){
    .contactus-container{
        max-width: 900px;
        width: 100%;
        height: auto;
        margin: 0 auto;
        margin-top: 50px;
        margin-bottom: 50px;
        align-items: center;
        justify-content: center;
       
    }
    .contactus .contactus-container{
        text-align: center;
    }
    .contactus .contactus-body {
        text-align: left;
    }
  
    }
    /* contact faq */
.faq-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.faq-container {
    width: 100%;
    max-width: 900px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.faq-section h1{
    font-size: 43px;
    font-family:"Kaushan Script", serif;
    color: white;
    font-weight: 500;
    font-style: normal; 
    margin: 0px;
}
.faq-tab {
    max-width: 900px;
    position: relative;
}

.faq-tab .label {
    position: relative;
    color: rgb(21, 11, 4);
    background-color: rgb(255, 228, 196);
    font-weight: 600;
    padding: 30px;
    cursor: pointer;
    border-radius: 5px;
    text-align: left;

}

.faq-tab .label::before{
    content: '+';
    position: absolute;
    top: 50%;
    right: 20px;
    font-size: 1.5em;
    transform: translateY(-50%);
}
.faq-tab.active .label::before{
    content: '-';
}


.faq-tab .content {
    position: relative;
    background-color: rgb(255, 228, 196);
    margin: 4px 0px;
    overflow: hidden;
    transition: 0.5s;
    overflow-y: auto;
    height: 0;
    color: rgb(21, 11, 4);

}
.faq-tab.active .content{
    height: 120px;
    padding: 10px;
    transition: 0.5s;
}

/* contact us ends */
/* About us begins */

.aboutus-body{
    background-color:rgb(246, 239, 230);
    text-align: center;
    justify-content: center;
}
.aboutus-body-content img{
    max-width: 300px;
    width: 100%;
    padding: 15px;
}
.aboutus-body-content-text p{
    text-align: left;
    padding: 15px 15px 8px 15px;
    margin-left: 9px;
}
.aboutus-body-content-text h4{

        font-size: 16px;  
        font-family: "Kaushan Script", serif;
        font-style: normal; 
        font-weight: 300;
        color: rgb(44, 22, 8);
        margin: 10px;
        padding-bottom: 10px;
        text-align: center;
        padding: 0px 10px 25px 10px; 
        text-align: left;
    }
/* desktop */

@media screen and (min-width: 900px){
    .aboutus-body-content{
        display: flex;
        flex-direction: row;
        justify-content: center;
        margin: 40px 40px 80px 40px;
    }
    .aboutus-body-content img{
        max-width: 350px;
        width: 100%;
        height: auto;
        padding: 15px;
    }
    .aboutus-body-content-text p{
        margin-top: 30px;
        width: 500px;
    }
}
/* About us ends */
/* sale */

.summer-sale-banner{
    background-color: rgba(66, 33, 11, 1);
    background-image: url(images/contactbckgrn.png);
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    height: 200px;
    width: 100%;
}
.summer-sale-banner h1{
    color: white;
    font-size: 38px;
    text-align: center;
    justify-content: center;
    text-shadow: 4px 5px 5px rgb(5, 2, 1);
    margin-top: 20px;
}
.summer-afro-banner h1{
    color: white;
    font-size: 45px;
    text-align: center;
    justify-content: center;
    text-shadow: 4px 5px 5px rgb(5, 2, 1);
    margin-top: 280px;
   
}
.summer-afro-banner p{
    color: white;
    font-size: 28px;
    text-align: center;
    justify-content: center;
    text-shadow: 3px 3px 5px rgb(5, 2, 1),-2px -2px 5px rgb(5, 2, 1);
    margin-top: -40px;
   
}
/* sale body */
/* mobile */
.sale-body-section{
    margin: 30px;
    align-items: center;
    justify-content: center;
    
}
.sale-group-cards2{
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-top: 35px;
    align-items: center;
    justify-content: space-evenly;

}
.sale-product-cards{
    justify-content: center;
    align-items: center;
    position: relative;
}
.sale-product-cards img{
    width: 100%;
    max-width: 200px;
    height: auto;

}
   /* 50% icon */ 
   .box-percentage-icon{
    color: rgba(255, 255, 255);
    background-color:rgb(44, 22, 8);
    font-weight: bold;  
    padding: 2px 2px;
    width: fit-content;
    position: absolute;
    left: 10px;
    top: 10px;
    font-size: 13px;
   
 }
.sale-product-cards h3{
text-align: center;
font-size: 18px;
padding-top: 8px;
}
.sale-product-cards-p{
    display: flex;
    flex-direction: row;
    padding: 5px;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    margin-bottom: 10px;
}
.sale-product-cards .strikethrough{
    text-decoration: line-through;
}
.sale-product-cards a{
    margin: 48px;
    margin-top: 50px;
    
}
.sale-btn{
    background-color: rgb(0, 146, 69, 1);
    color: rgb(255, 255, 255);
    padding: 8px 10px;
    text-decoration: none;
    font-size: 13px;
    border-radius: 5px;
    font-weight: bold;   

}
.sale-btn:hover{
    box-shadow: 2px 2px 5px rgba(27, 0, 0, 0.639);
    background-color: rgba(255, 255, 255);
    color: rgb(0, 146, 69, 1);
    transition: 0.5s ease;

} 

.sale-body-section-desktop{
    display: none;
}

/* sale section desktop view */
@media screen and (min-width: 900px){
    .sale-body-section{
        display: none;
    }
    .sale-body-section-desktop{
        display: block;
        margin: 30px;
        align-items: center;
        justify-content: center;
        
    }
    .sale-group-cards-three{
        display: flex;
        flex-direction: row;
        gap: 20px;
        margin-top: 35px;
        align-items: center;
        justify-content: space-evenly;
    
    }

}
/* closs sale section desktop view */

/* testimonial section */
.testimonial-section{
    background-color: rgba(240, 220, 192, 1);
    width: 100vw;
    height: auto;
}
.testimonial-section h1 {
    font-size: 38px;
    color: rgba(66, 33, 11, 1);
    margin-bottom: 0px;
}
.container {
    position: relative;
    margin: 0px;
}

.review-container {
    position: relative;
    overflow: hidden;
    width: 80%;
    left: 10%;
}

.slide {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    text-align: center;
    list-style-type: none;

}
.slide h3{
    color: rgba(66, 33, 11, 1);
    font-weight: 500;
    font-size: 33px;
    font-weight: 600;
    font-family: "Kaushan Script", serif;
    
   
    

}
.slide h4{
    font-size: 18px;
    margin-bottom: 35px;
   color: rgba(66, 33, 11, 1);
}
.slide p{
    font-size: 15px;
    line-height: 1.6;
    color: rgb(52, 26, 9);
    margin-bottom: 5px;

}
.Testimonial-stars i {
    font-size: 20px;
    color: rgba(66, 33, 11, 0.8);
}

.container #prev {
    background-image: url('images/arrow-left-over.svg');
}
.container #next {
    right: 0;
    background-image: url('images/arrow-right-over.svg');
}

.container #prev, 
#next {
    position: absolute;
    top: 10%;
    transform:translateY(-50%);
    z-index: 9999;
    display: inline-block;
    height: 48px;
    width: 48px;
    border-radius: 50%;
    background-position: center center;
    background-repeat:no-repeat;
    transition: all .3s ease-in;
    margin: 50px;
}
@media screen and (max-width: 900px){
.container #prev
 {
    top: 15%;
    margin: 10px;
}

.container #next {
    top: -13%;
    margin-right: 25px;
    
}

}
/* END REVIEW SLIDER */

