body,
html {
  margin: 0px;
  padding: 0px;
}

body{
    position: relative;
}

a {
  text-decoration: none;
  color: unset;
}

.landingPage {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background-image: url(../media/mvLandingBackground.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

#spiceLogoCont {
  display: flex;
  margin: 50px 0px 0px 0px;
}

#spiceLogo {
  width: 65px;
  height: 56px;
}

#landingLogoCont {
  display: flex;
  justify-content: center;
}

#landingMessageWrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#landingMessageWrap p {
  font-size: 1rem;
}

#landingLogoText {
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  width: 230px;
  justify-content: space-between;
  margin-top: 5px;
  box-sizing: border-box;
}

#topline {
  position: relative;
  left: -0.5vw;
}

#bottomline {
  margin-top: 0px;
}

#landingLogoText p {
}

#landingLogo {
  width: 146px;
  height: 68px;
}

#copyrightCont {
  color: white;
  justify-content: flex-end;
  display: flex;
  align-items: center;
  font-size: 0.8rem;
}

#copyrightSymbol {
  margin: 0px 5px;
  width: 15px;
  height: 15px;
}

#ctBars {
  box-sizing: border-box;
  padding-left: 10px;
  width: 35.5px;
  height: 17px;
}

/************************************************home */

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 10vh;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
}

#logoMenuWrap {

    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: flex-end;
  grid-template-areas: "logo btnToggle"
  "menuList menuList";
  width: 100vw;
  
  /* display: flex;
  justify-content: space-between;
  align-items: center;
  flex-basis: 100vw; */
}

#logoWrap {
    grid-area: logo;
  margin-left: 5vw;
  width: 84px;
  height: 40px;
}

#menu {
    grid-area: menuList;
  display: none;
  font-size: 1.5rem;
  flex-direction: column;
  justify-content: center;
  gap: 5vh;
  
}

#menuList {
  gap: 10vw;
  display: flex;
  flex-direction: column;

}



.menuItem {
  list-style: none;
}

#mvToggle{
    grid-area: btnToggle;
    display: flex;
    justify-self: flex-end;
    
}

#mvToggle img {
  width: 31px;
  height: 25px;
  margin-right: 5vw;
  display: block;
}

#contact {
  display: none;
  justify-content: center;
  align-items: center;
  width: 8vh;
  height: 8vh;
  background-color: #da5808;
  margin-right: 5vw;
}

/*  */

#hero {

  position: relative;
  padding-left: 5vw;
  background-image: url(../media/mvHeroImg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  height: 80vh;
  display: flex;
  flex-direction: column;
  color: white;
}

#heroTextWrap {
  margin-top: 10vh;
  width: 70vw;
  height: 45vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#snappytitle {
  width: 70vw;
  font-size: 24px;
  font-weight: 700;
}

#heroText {
  margin-bottom: 5vh;
  font-size: 0.9rem;
}

#callToActionCont {
  display: flex;
  gap: 5vw;
}

#callToAction {
  background-color: #da5808;
  color: white;
  padding: 6px 10px;
  border-radius: 5px;
  text-align: center;
  width: 80px;
}

#testimonialSlide {
     display:none;
  position: absolute;
  left: 0px;
  width: 100%;
  height: 15vh;
  background-image: url(../media/testmonialBg.png);
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0px;
  padding: 5vw;
  box-sizing: border-box;
  font-size: 0.8rem;
  font-weight: 700;
  overflow: hidden;
}

#testimonialSlideTitle {
  margin: 0px;
}

.dot{
  width:3vw;
  height: 3vw;
  border-radius: 10vw;
  background-color: white;

}

.active {
  background-color: #da5808;
}

#dotCont{
  display: flex;
  gap: 2vw;
  justify-content: space-between;
  align-items: center;
}

#headingDotCOnt{
  display: flex;
  justify-content: space-between;
  align-items: center;
}




.profile {
  display: flex;
  
  align-items: center;
  justify-content: space-between;
  font-weight: 300;
  gap: 2vw;
}

.profile img {
  width: 8vw;
  height: 8vw;
}

.testimony {
  display: none;
  align-items: center;
  gap: 3vw;
}

#testimonyText {
  font-weight: 300;
  font-size: 0.7rem;
  width: 80%;
  flex: 3;
}


.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}


footer {
  height: 10vh;
  background-color: #1e2a68;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 5vw;
  font-size: 0.8rem;
}

/************************************************************products*/

#productsDisplay {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background-image: url(../media/bgIllustration.svg);
  background-repeat: no-repeat;
  background-size: cover;
  /* height: 80vh; */
  padding: 0px 9vw;
  margin-bottom: 10vh;
}

#pageDescriptionWrap {
  margin-top: 5vh;
  text-align: center;
  font-size: 0.9rem;
  width: 100%;
  /*   height: 40vh; */
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
}

#pageHeading {
  text-transform: uppercase;
  text-align: center;
  width: 35vw;
  font-size: 24px;
  font-weight: 700;
}

#bar {
  margin: 4vh 0px;
  width: 20vw;
  height: 0.5px;
  background-color: #da5808;
}

#cardWrap {
  display: grid;
  grid-template-columns: 40vw 40vw;
  grid-template-rows: 28vh 28vh;
  gap: 5vw;
}


#chromium{
  background-image: url(../media/Chromium.png);  
}

#copper{
  background-image: url(../media/Copper.png);
}

#lithium{
  background-image: url(../media/Lithium.png);
}

#package{
  background-image: url(../media/package.png);
}

#magnesium{
  background-image: url(../media/Magnesium.png);
}

#iron{
  background-image: url(../media/Iron.png);
}

#nickel{
  background-image: url(../media/Nickel.png);
}

#gold{
  background-image: url(../media/gold.png);
}

.card {
  position: relative;
  font-size: 0.7rem;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 2vw;
  border-radius: 5px;
  color: white;
}

.card:last-child {
  background-color: #1e2a68;
}

.cardHeading {
  font-size: 0.8rem;
  font-weight: 700;
}

.cardDescription {
  font-size: 0.7rem;
  margin-top: 2vh;
}

.btnEnquire {
  position: absolute;
  bottom: 5vw;
  right: 5vw;
  background-color: white;
  padding: 5px 10px;
  border-radius: 2px;
  border: none;
  color: #da5808;
  font-size: 0.6rem;
}

#writeEmail {
  margin-top: 5vh;
  padding: 8px 20px;
  border-radius: 2px;
  border: 1px solid #da5808;
  color: #da5808;
  font-size: 0.7rem;
  background-color: white;
}

/**************************************** contact Us*/

#contactUsDisplay {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background-image: url(../media/bgIllustration.svg);
  background-repeat: no-repeat;
  background-size: cover;
  height: 80vh;
  padding: 0px 9vw;
}

#contactDetailsWrap {
  margin-top: 5vh;
  text-align: center;
  font-size: 0.9rem;
  width: 100%;
  /*   height: 40vh; */
  display: flex; /* flex */
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
}

.detailsWrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;

  margin-bottom: 6vh;
}

.detailsWrap:first-of-type {
  margin: unset;
  margin: 6vh 0vh;
}

#contactUsDescription {
}

#faqLink {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 19vw;
  border-top: 1px solid #da5808;
  border-bottom: 1px solid #da5808;
}

#contactFormWrap {
  margin-top: 10vh;
  width: 100%;
  display: none; /* flex */
  justify-content: center;
  align-items: center;
}

#contactForm {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;

  align-items: center;
  border-radius: 5px;
}

.contactInputWrap {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.contactInputWrap input {
  width: 100%;
  margin: 2vh 0vh;
}

.contactInputWrap input:focus {
  background-color: rgb(236, 236, 236);
}
#txtContactMessage {
  font-family: "Lora";
  margin: 2vh 0vh;
  height: 30vh;
  padding: 3vw;
  width: 100%;
  box-sizing: border-box;
}

#btnContactSubmit {
  font-size: 0.7rem;
  padding: 2vw 3vh;
  align-self: flex-start;
  margin: 2vh 0vh;
  border: none;
  background-color: #da5808;
  /* width: 10vw; */
  height: 4vh;
  color: white;
  border-radius: 2px;
}

#success{
  padding: 8px 20px;
border-radius: 2px;
border: 1px solid green;
  color: green;
}

#error{
  padding: 8px 20px;
border-radius: 2px;
border: 1px solid red;
  color:red;
}

#menuRibbon{
  display: none;
}

/**********************************************************************about Us*/
.displayFirst {
  grid-area: display1;
}
.displaySecond {
  grid-area: display2;
}
.displayThird {
  grid-area: display3;
}
.displayFourth {
  grid-area: display4;
}

#aboutUsDisplay {
  display: grid;
  grid-template-areas: "display1" "display2" "display3" "display4";
  /* flex-direction: column;
    justify-content: space-between; */
  align-items: center;
  background-image: url(../media/bgIllustration.svg);
  background-repeat: no-repeat;
  background-size: cover;
  /* height: 80vh; */
}

#aboutDetailsWrap {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  gap: 5vh;
  margin: 5vh 5vw;
}

#qouteHeading {
  font-size: 1.2rem;
  font-weight: 700;
}

#aboutViewMore {
  padding: 1vh 5vw;
  font-size: 0.7rem;
  height: 3.5vh;
  background-color: unset;
  border: 1px solid #da5808;
  border-radius: 2px;
  color: #da5808;
}

#aboutImgWrap {
  position: relative;
  background-image: url(../media/aboutUsImg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100vw;
  height: 20vh;
  
}

#qoute {
  position: absolute;
  left: 30vw;
  top: 4vh;
  background-color: rgba(0, 0, 0, 0.655);
  box-sizing: border-box;
  padding: 3vw;
  color: white;
}

.qouteTextWrap {
  border-left: 10px solid #da5808;
  box-sizing: border-box;
  padding: 0vh 5vw;
  font-size: 0.7rem;
}

#integrity {
  font-size: 16px;
  font-weight: 700;
}

.detailHeading {
  font-size: 1.2rem;
  font-weight: 700;
  color: #000000;
}

.detailDescription {
  font-size: 1em;
}

.btnAbout {
  font-size: 0.7rem;
  text-align: center;
  box-sizing: border-box;
  padding: 1vh 5vw;
  background-color: #da5808;
  border-radius: 2px;
  color: white;
}

.aboutContr {
  display: flex;
  justify-content: center;
  gap: 5vw;
  font-size: 0.8rem;
}

/****** screen switch class */
.setOne {
  display: block;
}

.setTwo {
  display: none;
}
