@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

.main-header {
  width: 100%;
  height: 80px;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.05);
  display: grid;
  align-items: center;
}

.main-container {
  padding-left: 4%;
  padding-right: 4%;
}

.nav-left > img {
  width: 53px;
  height: 36px;
  margin-right: 35px;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-left ul a li {
  list-style: none;
  display: inline-block;
  margin: 0px 15px;
  padding-left: 20px;
  color: #282c3f;
  font-size: 14px;
}

.search-bar {
  background: #f5f5f6;
  color: #696e79;
  border-radius: 0 5px 5px 0;
}

.search-bar i {
  padding: 0px 15px;
}

.search-bar input {
  outline: none;
  border: none;
  background: #f5f5f6;
  padding: 8px 10px 8px;
  width: 350px;
  font-size: 14px;
  font-weight: 400;
}

.nav-right div {
  margin: 0px 20px;
  text-align: center;
  cursor: pointer;
}

.nav-right div a i {
  font-size: 14px;
  color: #000;
}

.nav-right div a{
  text-decoration: none;
}

.nav-right div a p , .nav-right div p{
  font-size: 12px;
  color: #000;
}

.main-text{
  text-transform: uppercase;
    color: #3e4152;
    letter-spacing: .15em;
    font-size: 1.8em;
    margin: 80px 0 10px 30px;
    max-height: 5em;
    font-weight: 700;
}
.img-sec1{
  display: flex;
  margin-top: 80px;
}

.img-sec1 img{
  width: 253px;
  height: 332px;
  object-fit: contain;
}

.footer-content{
  display: flex;
  justify-content: space-evenly;
  margin-top: 150px;
  padding: 20px 0;
  line-height: 30px;
  background: #FAFBFC;
}

.footer-content ul{
  list-style: none;
  margin-top: 30px;
  font-size: 13px;
}

.footer-content ul li{
 font-weight: 400;
 cursor: pointer;
 color: #696b79;
}

.social-icons{
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 15px;
  font-size: 22px;
  color: #55565e;
  cursor: pointer;
}

