@import url('https://fonts.googleapis.com/css2?family=Manrope&family=Montserrat:wght@600&family=Poppins&family=Quicksand&display=swap');

*{
    box-sizing:border-box;
    margin: 0px;
    padding: 0px;
}

body{
  background-color: #F3F3F3;
}

header{
  width: 100%;
  position: sticky;
  z-index: 100;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background-color: #fff;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

#upperNav{
  display: flex;
  /* margin-top: 20px; */
  padding-top: 20px;
  /* margin-bottom: 20px; */
  justify-content: space-around;
}

#upperNav a{
  text-decoration: none;
  color: #333;
  margin-left: 20px;
  font-family: "poppins";
}

#navbar{
  display: flex;
  padding-bottom: 15px;
  margin-left: 0px;
  position: sticky;
  top: 0;
  z-index: 100;
  font-family: montserrat;
}
#menuToggle
{
  display: block;
  /* border: 1px solid black; */
  /* margin: auto; */
  position:static;
  
  padding: 50px 0px 0px 50px;
  
  z-index: 1;
  
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle a
{
  text-decoration: none;
  color: #232323;
  
  transition: color 0.3s ease;
}

#menuToggle a:hover
{
  color: red;
}


#hamburger-menu-button
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  /* top: 7px; */
  /* left: -5px; */
  padding: 50px 0px 0px 50px;
  cursor: pointer;
  
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  
  -webkit-touch-callout: none;
}

#menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  
  background: black;
  border-radius: 3px;
  
  z-index: 1;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #232323;
}


#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.5, 0.5);
}


#menuToggle input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
}


#menu
{
  position: absolute;
  width: 300px;
  margin: -100px 0 0 -50px;
  padding: 50px;
  padding-top: 125px;
  
  background: #ededed;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  transform-origin: 0% 0%;
  transform: translate(-100%, 0);
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}



#menu li
{
  padding: 10px 0;
  font-size: 17px;
}

#menuToggle input:checked ~ ul
{
  transform: none;
}

.no-scroll {
  overflow: hidden;
}
 #location{
  height: 50px; 
  width: 100px;
  margin-top: 30px;
  border: 0px;
  margin-left: 5px;
  cursor: pointer;
  font-family: montserrat;
}

#logo{
  width: 170px; 
  height:50px; 
  /* margin-top:-5px; */
  position: relative;
  top: 35px;
  bottom: -3px;
  right: 0px;
  left: 27px;
  display: block;
}
#search{
  display: flex;
  justify-content: space-between;
  margin-left: 1%;
}

#searchBar{
  width: 90%;
  /* margin-left: 25px; */
  border: 2px solid black;
  padding-left: 20px;
  font-family: montserrat;
}

#searchBtn{
  height: 50px; 
  width:10%;
  /* margin-top: 31px; */

  border: 0px;
  /* margin: auto; */
  /* margin-left: -50px; */
  cursor: pointer;
  background-color: black;
  color: white;
}

#navbar p{
  margin-top: 45px;
  margin-left: 8px;
  cursor: pointer;
}

#postingbtn{
  border-radius: 7px;
  border: none;
  width: 130px;
  background-color: yellow;
  /* font-family: 'montserrat'; */
  font-size: 15px;
  margin-top: 30px;
  padding: 2px;
  margin-left: 40px;
  border: 2px solid #FFCA28;
  cursor: pointer;
}
footer{
  background-color: #F3F3F3;
}
#postingbtn a{
  text-decoration: none;
  color : black;
  font-family: 'montserrat';
}
#nothing{
  font-family: montserrat;
  /* margin: auto; */
  text-align: center;
  padding: 250px 0px 170px 0px;
}
/* #mobilesImg{
  width: fit-content;
} */

/* footer css starts from here 👇 */

hr {
  border: 0;
  height: 1px;
  background-color: #333;
  width: 100%;
}

#upperPart{
  margin: 45px 90px 0px 90px;
  display:flex;
  justify-content: space-between;
  font-size: large;
  font-family: "lato regular, Helvetica, Arial";
  }
  
  #instagram-round-icon{
  height: 40px;
  width: 40px;
  }
  
  #socialMedia p{
  
  margin-left: -100%;
  }
  #socialMedia{
  margin-top: 20px;
  margin-left: -110%;
  }
  #socialMedia svg{
  margin-right: 10px;
  }
  #socialMedia img{
  margin-right: 10px;
  }
  footer button{
  background-color: #f8fc0d;
  border: 0px;
  border: 1px solid orange;
  color: black;
  margin-top: 20px;
  padding: 10px 30px;
  cursor: pointer;
  }
  #midPart{
  display: flex;
  margin: 5px 90px 10px 90px;
  justify-content: space-between;
  font-size: large;
  font-family: "lato regular, Helvetica, Arial";
  }
  #mid{
  width: 45%;
  margin: 45px 90px 10px 90px;
  }
  #midPart > div p{
  margin-bottom: 20px;
  }
  #services div{
  display: flex;
  cursor: pointer;
  }
  #services div :hover{
  background-color: rgba(232, 228, 228, 0.92);
  color:black;
  }
  #midPart > div div svg{
  margin-right: 10px;
  }
  
  #midTwo{
  display: flex;
  cursor: pointer;
  }
  #midTwo :nth-child(1){
  margin-right: 50px;
  }
  #midTwo :nth-child(1) :hover{
      background-color: rgba(232, 228, 228, 0.92);
  }
  #midPart p{
      margin-top:-10px ;
      padding: 10px 15px 10px 0px;
  }
  /* #midPart svg{
      padding: 10px 15px;
  } */
  #midTwo :nth-child(2){
  margin-right: 50px;
  }
  #midTwo :nth-child(2) :hover{
  /* background-color: #bbb; */
  background-color: rgba(232, 228, 228, 0.92);
  }
  #midTwo :nth-child(3) :hover{
  /* background-color: #bbb; */
  background-color: rgba(232, 228, 228, 0.92);
  }
  #midTwo hr{
  margin: -11px 0px 25px 0px;
  }
  #bottomPart{
  display: flex;
  margin: 5px 90px 10px 90px;
  justify-content: space-between;
  font-size: large;
  font-family: "lato regular, Helvetica, Arial";
  }
  #connect-on-social-media p{
  margin-left: -109%;
  }
  #bottomTwo{
  margin-left: 46%;
  cursor: pointer;
  }
  #bottomTwo h4{
  margin-top: 3%;
  margin-bottom: 3%;
  }