@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  /* font-weight: 400; */
}
html,
body {
  height: 100%;
  width: 100%;
}

#main {
  width: 100%;
  height: 100%;
}

/* -------NavBar--------- */

nav {
  display: flex;
  width: 100%;
  height: 10%;
}

#lft-nav {
  /* position: relative; */
  display: flex;
  align-items: center;
  justify-content: end;
  padding-right: 5%;
  width: 25%;
  height: 100%;
  /* background-color: orange; */
}

/* #lft-nav img {
  position: absolute;
  right: 0%;
  top: 50%;
  transform: translate(-50%, -50%);
} */

#cntr-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4%;
  width: 50%;
  height: 100%;
  /* background-color: burlywood; */
}

#cntr-nav a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
  /* font-family: Product Sans; */
}

#rght-nav {
  display: flex;
  align-items: center;
  width: 25%;
  height: 100%;
  padding-left: 5%;
  /* background-color: rgb(90, 227, 255); */
}

/* -------NavBar - End--------- */

/* -------Part-1--------- */

#part-1 {
  display: flex;
  width: 100%;
  height: 70%;
  /* background-color: salmon; */
}

.lft-part-1 {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  width: 50%;
  height: 100%;
  /* background-color: #e9e9e9; */
  padding-left: 13%;
  gap: 20px;
}

.lft-part-1 h1 {
  font-size: 60px;
}

.lft-part-1 h1 span {
  color: orangered;
}

.lft-part-1 p {
  font-size: 25px;
  color: #757575;
}

.rght-part-1 {
  display: flex;
  align-items: center;
  justify-content: start;
  width: 50%;
  height: 100%;
  padding-left: 5%;
  /* background-color: #f56161; */
}

.cta-btn {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.btn {
  padding: 16px 32px;
  background-color: #222;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-family: Product Sans;
  font-weight: 600;
  font-size: 18px;
}

#btn-2 {
  background-color: transparent;
  border: 1px solid #222;
  color: #222;
}

/* -------Part-1 - End--------- */

/* -------Part-2--------- */

.part-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 20%;
  /* background-color: #e8e8e8; */
}

.part-2 p {
  font-size: 20px;
  color: #757575;
}

.companies {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0% 13%;
  width: 100%;
  height: 60%;
  /* background-color: rgb(255, 224, 167); */
}

.companies img {
  width: 10%;
}
