* {
  margin: 0px;
  padding: 0px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

/* **************************************** Header-div ************************************************** */
#header-div {
  background-color: rgb(235, 235, 235);
  display: flex;
  color: black;
  justify-content: space-between;
  padding: 5px 70px;
  font-weight: 350;
}

#header-div>div:nth-child(1) {
  display: flex;
  gap: 18px;
  font-size: 18px;
}

#header-div>div:nth-child(2) {
  display: flex;
  gap: 13px;
  font-size: 15px;
}

#header-div a {
  color: black;
  text-decoration: none;
}

#header-div>div:nth-child(1) a:hover {
  color: rgb(253, 94, 3);
}

#header-div>div:nth-child(2) a:last-child {
  color: rgb(253, 94, 3);
}

/* **************************************** nav ************************************************** */
nav {
  width: 100%;
  padding: 5px 0px;
  display: flex;
  height: 13vh;
  align-items: center;
  justify-content: space-between;
}

nav>div:first-child{
  width: 10%;
  margin-left: 70px;
}
nav img {
  height: 60px;
  width: 100%;
  align-items: center;
}
.search {
  display: flex;
  text-align: center;
  width: 50%;
}

.search__input {
  font-size: inherit;
  background-color: #e0dede;
  border: none;
  color: #646464;
  padding: 5px 1rem;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  transition: all ease-in-out .5s;
  margin-right: -2rem;
}

.search__input:focus {
  outline: none;
  background-color: #e0dede;
}

.search__input::-webkit-input-placeholder {
  font-weight: 100;
  color: rgb(107, 106, 106);
}

.search__button {
  border: none;
  background-color: #e0dede;
  margin-top: .1em;
  height: 60%;
  padding: 4px 0px;
}

.search__button:hover {
  cursor: pointer;
}

.search__icon {
  height: 1.3em;
  width: 1.3em;
  fill: #0a0a0a;
}

.icon {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  font-size: 25px;
  width: 21%;
  padding: 5px;
  gap: 10px;
  margin-right: 45px;
}

.icon div:hover {
  cursor: pointer;
}

/* **************************************** Dropdown Menu ************************************************** */

.dropdown {
  width: 99%;
  margin: auto;
  position: relative;
  z-index: 999;
  border-bottom: 1px solid #eae7e7;
  border-top: 1px solid #eae7e7;
}

.dropdown ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 92%;
  margin: auto;
  /* border: 1px solid red; */
}

.dropdown ul li {
  position: relative;
}

.dropdown ul li a {
  color: #333;
  text-decoration: none;
  padding: 15px 20px;
  display: block;
  font-size: 14px;
  font-weight: 600;
}

.dropdown ul li>a:hover {
  background-color: #f2f2f2;
  border-bottom: 2.5px solid #ff8a00;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  width: max-content;
  z-index: 1;
  padding: 20px;
  border: 1px solid black;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.row {
  display: flex;
}

.col {
  flex: 1;
}

.col h6 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.dropdown-content>div>div a {
  display: block;
  padding: 0px 8px;
  font-weight: 400;
  font-size: 14px;
  color: rgb(138, 133, 133);
  text-decoration: none;
}

.col>div {
  margin-top: 25px;
}

.col>div:first-child {
  margin-top: 0px;
}

.col a:hover {
  color: #ff8a00;
}

/* **************************************** Slider ************************************************** */
.slider1 {
  width: 90%;
  margin: auto;
  height: fit-content;
  display: flex;
  margin-bottom: 30px;
  /* border: 1px solid black; */
  justify-content: space-between;
}

.swiper {
  width: 75%;
  height: 72vh;
  display: flex;
  /* border: 1px solid red; */
}

.swiper-slide>img {
  width: 100%;
  height: 100%;
}

.slider1>div:last-child {
  width: 23%;
  height: 72vh;
  /* border: 1px solid red; */

}

.slider1>div:last-child img {
  width: 100%;
  height: 100%;
}

/* **************************************** Gun image ************************************************** */

.gun-image {
  width: 87.5%;
  height: 20vh;
  margin: auto;
  margin-bottom: 30px;
  /* border: 1px solid black; */

}

.gun-image img {
  width: 100%;
  height: 100%;
  padding-left: 7px;
}

/* **************************************** divs ************************************************** */
.WhatTheFry,
.TrendsInFurniture,
.NewArrival,
.TheWinterEdit,
.TopBrans,
.Blog,
.CustomerSpeaks,
.NeedHelp,
.ShopByRoom {
  width: 89%;
  height: fit-content;
  margin: auto;
  margin-bottom: 40px;
  /* border: 1px solid red; */
}

.WhatTheFry>div,
.TrendsInFurniture>div,
.NewArrival>div,
.TheWinterEdit>div,
.TopBrans>div,
.Blog>div,
.CustomerSpeaks>div,
.NeedHelp>div,
.ShopByRoom>div {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: space-between;
  margin-top: 10px;
}


.WhatTheFry>div a,
.NewArrival>div a,
.TopBrans>div a,
.Blog>div a,
.ShopByRoom>div a {
  width: 24%;
  height: 100%;
  text-decoration: none;
  color: black;
}
.TrendsInFurniture>div a,
.TheWinterEdit>div a,
.CustomerSpeaks>div a {
  width: 32%;
  height: 100%;
  text-decoration: none;
  color: black;
}
.NeedHelp>div a {
  width: 15%;
  height: 100%;
  text-decoration: none;
  color: black;
}

.WhatTheFry>div>a img,
.TrendsInFurniture>div>a img,
.NewArrival>div>a img,
.TheWinterEdit>div>a img,
.TopBrans>div>a img,
.Blog>div>a img,
.CustomerSpeaks>div>a img,
.NeedHelp>div>a img,
.ShopByRoom>div>a img{
  width: 100%;
}

.WhatTheFry p,
.TrendsInFurniture p,
.NewArrival p,
.TopBrans p,
.Blog p,
.CustomerSpeaks p {
  color: grey;
}

.WhatTheFry h2,
.TrendsInFurniture h2,
.NewArrival h2,
.TopBrans h2 {
  font-weight: 450;
}

.CustomerSpeaks h2 {
  font-size: 18px;
  font-weight: 400;
}

.NeedHelp h2 {
  font-size: 17px;
  font-weight: 350;
}

.TrendsInFurniture>div a:hover,
.TheWinterEdit>div a:hover,
.CustomerSpeaks>div a:hover,
.ShopByRoom>div a:hover,
.WhatTheFry>div a:hover,
.NewArrival>div a:hover,
.TopBrans>div a:hover,
.Blog>div a:hover,
.NeedHelp>div a:hover {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 4px 0px;
  border-radius: 5px;
  padding: 5px;

}

/* .WhatTheFry>div>a img:hover,
.TrendsInFurniture>div>a img:hover,
.NewArrival>div>a img:hover,
.TheWinterEdit>div>a img:hover,
.TopBrans>div>a img:hover,
.Blog>div>a img:hover,
.CustomerSpeaks>div>a img:hover,
.NeedHelp>div>a img:hover{
  width: 101%;
} */

/* **************************************** Footer ************************************************** */
footer {
  background-color: #f5f5f5;
  padding-top: 40px;
  width: 100%;
  /* border: 1px solid yellow; */
}

footer>div:nth-child(1) {
  display: flex;
  width: 87%;
  height: 300px;
  /* border: 1px solid black; */
  margin: auto;
  font-weight: 300;
}

footer>div:nth-child(1) div {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  width: 25%;
  /* border: 1px solid black; */
  margin: auto;
  margin-top: 2px;
  gap: 10px 0px;

}

footer a {
  color: #737272;
  text-decoration: none;
}

footer>div img {
  height: 10vh;
  width: 130px;
}

footer>div:nth-child(2) {
  display: flex;
  width: 90%;
  margin: auto;
  margin-top: 40px;
  font-weight: 300;
}

footer>div:nth-child(2) div {
  width: 30%;
  margin: auto;
}

footer>div:nth-child(3) {
  display: flex;
  width: 87%;
  margin: auto;
  margin-top: 40px;
  font-weight: 300;
  padding: 40px 0px;
  border-top: 1px solid rgb(193, 192, 192);
  border-bottom: 1px solid rgb(193, 192, 192);
}

footer>div:nth-child(3)>div {
  width: 70%;
  margin: auto;
  height: 23vh;
}

footer>div:nth-child(3) img {
  height: 80%;
  width: 80%;

}

.footer-icons {
  display: flex;
  align-items: center;
  margin-top: 8px;

}

.footer-icons a {
  color: #fff;
  padding: 10px;
  border-radius: 50%;
  margin-right: 10px;
  text-align: center;
  width: 35px;
  height: 35px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.facebook-icon {
  background-color: rgb(27, 120, 241);
}

.youtube-icon {
  background-color: rgb(241, 27, 27);
}

.twitter-icon {
  background-color: rgb(87, 146, 224);
}

.instagram-icon {
  background-color: rgb(241, 27, 173);
}

.linkedin-icon {
  background-color: rgb(6, 73, 161);
}

.pinterest-icon {
  background-color: rgb(241, 27, 27);
}


.facebook-icon:hover{
   color: rgb(27, 120, 241);
   background-color: white;
  text-decoration: none;
}

.youtube-icon:hover {
   background-color: white;
   text-decoration: none;
color: rgb(241, 27, 27);
}

.twitter-icon:hover{
   background-color: white;
   text-decoration: none;
 color: rgb(87, 146, 224);
}

.instagram-icon:hover{
   background-color: white;
   text-decoration: none;
 color: rgb(241, 27, 173);
}

.linkedin-icon:hover{
   background-color: white;
   text-decoration: none;
 color: rgb(6, 73, 161);
}

.pinterest-icon:hover{
   background-color: white;
   text-decoration: none;
  color: rgb(241, 27, 27);
}

.fab {
  font-size: 20px;
}

footer>div:nth-child(4) {
  display: flex;
  width: 87%;
  margin: auto;
  margin-top: 40px;
  padding-bottom: 40px;
  font-weight: 300;
  justify-content: space-between;
}

footer>div:nth-child(4) div {
  display: flex;
  gap: 10px;
  color: #737272;
}


@media screen and (min-width:766px) and (max-width:950px){
  #header-div>div a{
    font-size: 13px;
  }
  nav {
    flex-wrap: nowrap;
  }
  nav > div:first-child {
    width: 10%;
    margin: 0;
    text-align: center;
  }
  nav img {
    height: 40px;
  }
  .search {
    width: 60%;
  }
  .icon {
    width: 10%;
    justify-content: center;
    margin-right: 15px;
  }
.dropdown li:nth-child(8),.dropdown li:nth-child(9),.dropdown li:nth-child(10){
    display: none;
  }
  .slider1{
    width: 100%;
  }
  .swiper{
    width: 100%;
  }
  .WhatTheFry h2,
.TrendsInFurniture h2,
.NewArrival h2,
.TopBrans h2 {
  font-size: 18px;
  font-weight: 450;
}
.WhatTheFry p,
.TrendsInFurniture p,
.NewArrival p,
.TopBrans p,
.Blog p,
.CustomerSpeaks p {
  font-size: 13px;
}

.CustomerSpeaks h2 {
  font-size: 18px;
  font-weight: 400;
}

.NeedHelp h2 {
  font-size: 13px;
  font-weight: 350;
}
footer>div h2{
 font-size: 16px;
 font-weight: 450;
}
footer>div a{
  font-size: 14px;
  font-weight: 300;
 }
 footer>div:nth-child(1){
  height: 260px;
 }
 footer>div:nth-child(1) img{
   height: 10vh;
   width:100px;
 }
 footer>div:nth-child(3){
  display: grid;
  width: 100%;
  grid-template-columns: repeat(1,1fr);
  gap: 20px;
  padding: 10px;
 }
 footer>div:nth-child(4) p{
  font-size: 15px;
  width: 100%;
 }
 footer>div:nth-child(4) div{
  gap: 8px;
 }
 .WhatTheFry>h1,
.TrendsInFurniture>h1,
.NewArrival>h1,
.TheWinterEdit>h1,
.TopBrans>h1,
.Blog>h1,
.CustomerSpeaks>h1,
.NeedHelp>h1,
.ShopByRoom>h1{
  font-size: 25px;
  font-weight: 450;
}
} 
@media screen and (max-width:765px){
  #header-div{
    display: none;
  }
  nav {
    flex-wrap: nowrap;
  }
  nav > div:first-child {
    width: 15%;
    margin: 0;
    text-align: center;
  }
  nav img {
    height: 40px;
  }
  .search {
    width: 50%;
  }
  .icon {
    width: 10%;
    justify-content: center;
    margin-right: 15px;
  }
  .dropdown li:nth-child(6),.dropdown li:nth-child(7),.dropdown li:nth-child(8),.dropdown li:nth-child(9),.dropdown li:nth-child(10){
    display: none;
  }
  .imageee{
    display: none;
  }
  .swiper{
    width: 100%;
  }
  .WhatTheFry h2,
.TrendsInFurniture h2,
.NewArrival h2,
.TopBrans h2 {
  font-size: 15px;
  font-weight: 450;
}
.WhatTheFry p,
.TrendsInFurniture p,
.NewArrival p,
.TopBrans p,
.Blog p,
.CustomerSpeaks p {
  font-size: 12px;
}

.CustomerSpeaks h2 {
  font-size: 15px;
  font-weight: 400;
}

.NeedHelp h2 {
  font-size: 10px;
  font-weight: 350;
}
footer>div h2{
 font-size: 13px;
 font-weight: 450;
}
footer>div a{
  font-size: 11px;
  font-weight: 300;
 }
 footer>div:nth-child(1){
  height: 220px;
 }
 footer>div:nth-child(1) img{
   height: 7vh;
   width:70px;
 }
 footer>div:nth-child(3){
  display: grid;
  width: 100%;
  grid-template-columns: repeat(1,1fr);
  gap: 20px;
  padding: 10px;
 }
 footer>div:nth-child(4) p{
  font-size: 12px;
  width: 100%;
 }
 footer>div:nth-child(4) div{
  gap: 5px;
 }
 .WhatTheFry>h1,
.TrendsInFurniture>h1,
.NewArrival>h1,
.TheWinterEdit>h1,
.TopBrans>h1,
.Blog>h1,
.CustomerSpeaks>h1,
.NeedHelp>h1,
.ShopByRoom>h1{
  font-size: 22px;
  font-weight: 450;
}
} 
