
#head{
  height: 140px;
  width: 95%;
  position: fixed;
  left: 2.5%;
  top: 0;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  grid-template-rows: repeat(3,1fr);
  border-top: 1px solid grey;
  background-color: white;
  grid-gap: 5px;
  grid-template-areas: "a b b c"
  "d d d e"
  "f f f f";
  z-index: 1000;
}
.flex{
  display:flex;
}
#head>div:nth-child(1){
  grid-area: a;
  height: 30px;
  margin-top: 30px;
  justify-content: space-between;
}
#head>div:nth-child(2){
  grid-area: b;
  text-align: center;
  height: 50px;
}
#head>div:nth-child(3){
  grid-area: c;
}
#head>div:nth-child(4){
  grid-area: d;
  margin-top: 10px;
  height: 30px;
  display: flex;
  justify-content: space-between;
}
#head>div:nth-child(5){
  grid-area: e;
  height: 30px;
  margin-top: 3px;
  border: 1px solid black;
}
#head>div:nth-child(6){
  grid-area: f;
  width: 100%;
  background-color: rgb(184,203,132);
  height: 40px;
  margin-top: 3.5px;
  text-align: center;
}
#search{
  display: flex;
}
#search>input{
  border: 0;
  height: 89%;
  width: 80%;
  font-size: 18px;
  padding-left: 5px;
  background: white;
}
#search>input+i{
  text-align: center;
  font-size: 20px;
  padding-top: 5px;
}
h1{
  margin-top: 25px;
  font-size: 45px;
}
h1>i{
  font-size: 7px;
}
.swc>div{
  height: 50px;
  width: 50px;
  margin-top: 15px;
}
.swc>div:nth-child(1){
  margin-left: 150px;
}
.swc>div>a{
  color: black;
}
.swc>div>i{
 font-size: xx-large;
 padding: 10px;
 padding-top: 15px;
}
.icons>p{
  font-size: 12px;
  padding-left: 2px;
}
.icons>div>i{
  font-size: x-large;
  padding-top: 2px;
  padding-right: 0;
}
.icons>p:nth-child(1){
  margin-left: 0;
}
.icons>div>img{
  padding-top: 5px;
  padding-left: 0;
}
.cats > ul {
  display: flex;
  padding-left: 0;
  margin-top: 0px;
  justify-content: space-evenly;
}
.cats > ul > li{
  color: transparent;
  padding-left: 5px;
  padding-right: 10px;
  justify-content: space-between;
}
li > a{
  text-decoration: none;
  color: black;
  font-size: 12px;
  font-weight: bold;
}
.cats > ul >li:nth-child(1)>a{
  color: red;
}
.cats > ul > li > a:hover{
  text-decoration: underline;
}
.cats > ul >li:hover .box{
  transition: all 0.7s ease;
  top: 100px;
  opacity: 1;
  visibility: visible;
}
.box{
  position: absolute;
  left: 0;
  width: 93.7%;
  top: 85px;
  opacity: 0;
  visibility: hidden;
}
.box .content{
  background: whitesmoke;
  display: flex;
  width: 100%;
  padding: 40px;
  justify-content: space-between;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.box .content .row{
  width: calc(25% - 30px);
}
.content .row header{
  color: black;
  font-size: 14px;
  font-weight: bold;
}
.content .row .links li{
  margin-left: -40px;
  margin-top: 5px;
}

.row .links li a{
  color: black;
  font-size: 12px;
  margin-top: 0px;
  font-weight: normal;
}
.row > img{
    margin-top: -15px;
}
.about> .box > .content > .row > img{
    height: 150px;
    width: 90%;
}
.body> .box > .content > .row > img:nth-child(2),
.make> .box > .content > .row > img:nth-child(2){
  margin-top: 10px;
}
.make> .box > .content > .row > img{
    height: 130px;
    width: 100%;
    margin-bottom: 10px;
}
.frag> .box > .content > .row > img,
.range> .box > .content > .row > img,
.skin> .box > .content > .row > img{
    height: 160px;
    width: 100%;
}
.row>ul+header{
   margin-top: 40px;
}
.row>ul>li>a:hover{
   text-decoration: underline;
}
.bar > h4{
  font-size: 20px;
  margin-top: 7px;
}
/* sliding images */
.img-slider{
  width: 95%;
  margin: auto;
  margin-top: 12%;
  overflow: hidden;
}
#sliding-img{
  width: 100%;
  display: inline-flex;
}
#sliding-img>img{
  width: 100%;
}
.btn{
  position: absolute;
  left     : 50%;
  bottom: -15px;
  transform: translateX(-50%);
}
.img-slider>.btn > span{
  display: inline-block;
  margin: 1px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: rgba(241, 229, 229, 0.925);
}
.active{
  background-color: black !important;
}

/* cards */

.cards{
  margin: auto;
  margin-top: 20px;
  width: 95%;
  height: 900px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-template-rows: repeat(2,1fr);
  grid-gap: 30px;
}
.cards>div{
  height: 100%;
}
.cards>div>a>img{
  width: 100%;
  height: 100%;
}

/* come together act together */
.come-act{
  display: grid;
  width: 95%;
  height: 500px;
  margin: auto;
  margin-top: 50px;
  grid-template-columns: repeat(2,1fr);
  grid-template-rows: repeat(6,1fr);
  grid-template-areas: "a a"
  "b c"
  "b c"
  "b c"
  "b c"
  "b c";
}
.come-act>div:nth-child(1){
  grid-area: a;
  text-align: center;
  word-spacing: 5px;

}
.come-act>div:nth-child(1)>h1{
  font-size: xx-large;
}
.come-act>div:nth-child(2){
  grid-area: b;
}
.come-act>div:nth-child(3){
  grid-area: c;
  text-align: center;
}
.come-act>div:nth-child(3)>h1{
  font-size: x-large;
  font-weight: normal;
  margin-top: 10px;
}
.come-act>div:nth-child(3)>p{
  font-size: 17px;
  line-height: 21px;
  padding: 20px;
  margin-top: -15px;
  text-decoration: none;
}
.come-act>div:nth-child(3)>p:nth-child(1){
  padding-top: 40px;
}
/* Find out more */
#find{
  text-align: center;
  margin-top: 40px;
}
#find>a>button{
  padding: 10px;
  font-size: 15px;
  font-weight: bold;
  background: white;
  border: 2px solid black;
}
#find>a>button:hover{
  color: white;
  background: black;
  cursor: pointer;
}
/* about */
.aboutthispage{
  margin:auto;
  width: 95%;
  margin-top: 50px;
  text-align: center;
  word-spacing: 3px;
  text-decoration: none;
}
.aboutthispage>h3{
  font-size:21px;
  font-weight: 800;
}
.aboutthispage>p:hover{
  text-decoration: none;
}
.aboutthispage>p{
  font-size: 15px;
  line-height: 21px;
  padding: 20px;
  margin-top: -30px;
}
.aboutthispage>p+h3{
  margin-top: -20px;
}
.aboutthispage>hr{
  width: 100%;
}
.newin,.personalized{
  width: 95%;
  margin: auto;
  text-decoration: underline;
  text-align: center;
}
.newin>h1,.personalized>h1{
  font-size: x-large;
}
.mainaftr{
  width: 95%;
  margin: auto;
  overflow:hidden;
}
#aftrnew{
   width: 2550px; 
  height: 500px;
  margin:auto;
  margin-top: 30px;
  margin-bottom: 30px;
  display:flex;
  justify-content: space-between;
}
 .mb{
   width: 550px;
  text-align: center;
  margin-right: 10px;
}
#aftrnew>.mb>.fb{
  width: 100%;
  height: 60%;
}
.mb>.fb>img{
  height: 100%;
  width: 100%;
}
.mb>button{
  padding: 8px;
  font-weight: bold;
  background-color: white;
  border: 1px solid black;
}
.mb>button:hover{
  background-color: black;
  color: white;
}
.mb>.sb>p:hover,.mainb>.scndb>p:hover{
  text-decoration: none;
}
#mainprsn{
  overflow-x:hidden;
}
#afterprsn{
  width: 2630px;
  height: 500px;
  margin-top: 30px;
  margin: auto;
  display: flex;
  text-align: center;
}
.mainb{
  width: 550px;
  height: 100%;
  text-align: center;
  margin-left: 2.5%;
  margin-right: 15px;
}
.mainb>.firstb{
  width: 100%;
  height: 60%;
}
.mainb>.firstb>img{
  height: 100%;
  width: 100%;
}
.mainb>i{
 bottom: 5px;
}