@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");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html,
body {
  height: 100%;
  width: 100%;
}

main {
  height: 100%;
  width: 100%;
  background-color: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 70px 1fr 1fr;
  grid-template-areas:
    "nav nav"
    "left-div top-right-div"
    "left-div btm-right-div";
  grid-row-gap: 20px;
}

nav {
  /* background-color: red; */
  grid-area: nav;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
}
nav i {
  color: #8f91cc;
  font-size: 1.5em;
}
nav h1 {
  text-transform: uppercase;
  font-size: 1.5em;
  color: #010101;
  font-weight: 500;
  display: flex;
  align-items: center;
}

nav #mid-nav a {
  text-decoration: none;
  font-size: 1em;
  color: #010101;
  font-weight: 500;
  margin-left: 18px;
  &:hover {
    border-bottom: 3px solid #8f91cc;
  }
}

nav #nav-right {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
nav #login {
  font-size: 16px;
  border: none;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 80px;
  background-color: rgb(255, 255, 255);
  &:hover {
    background-color: rgb(237, 232, 232);
  }
}

nav #talk {
  font-size: 16px;
  border: none;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 80px;
  background-color: #2c313f;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
  &:hover {
    background-color: #424b61;
  }
}

nav #talk i {
  background-color: #8994bb;
  color: white;
  padding: 5px;
  border-radius: 50%;
  font-size: 1.5em;
}

#left-div {
  /* background-color: lightblue; */
  grid-area: left-div;
  /* margin-top: 20px; */
  padding: 20px;
}

#left-div #span1 {
  display: inline-block;
  height: 50px;
  width: 180px;
  border-radius: 80px;
  /* background-color: red; */
  background-image: url(https://plus.unsplash.com/premium_photo-1731202301186-bde14d79581c?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&q=80&w=1170);
  background-size: cover;
  background-position: center;
  margin-right: 18px;
}

#left-div h2 {
  font-size: 5em;
  font-weight: 400;
  line-height: 6rem;
}
#left-div #span2 {
  display: inline-block;
}

#left-div #span2 button {
  padding: 10px 50px;
  text-transform: uppercase;
  border-radius: 80px;
  font-size: 1rem;
  font-weight: 600;
  background-color: white;
  display: flex;
  align-items: center;
}

#left-div #span2 button i {
  font-size: 40px;
  font-weight: 400;
}
#btn-div {
  margin-top: 20px;
}

#btn-div #contact {
  font-size: 16px;
  border: none;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 80px;
  background-color: #2c313f;
  color: white;

  &:hover {
    background-color: #424b61;
  }
}

#btn-div #call {
  border: none;
  background-color: white;
  font-size: 14px;
  border-bottom: 1px solid;
  margin-left: 18px;
  font-weight: 600;
}

#left-div #para {
  /* background-color: red; */
  margin-top: 15px;
  font-weight: 600;
}
#logo-div {
  margin-top: 40px;
  display: flex;
  justify-content: flex-start;
  gap: 20px;
}
#logo-div img {
  height: 50px;
}
#top-right-div {
  /* background-color: lightcoral; */
  grid-row: top-right-div;
  background-image: url(https://images.unsplash.com/photo-1624628639856-100bf817fd35?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&q=80&w=1074);
  background-size: cover;
  background-position: center;
  border-radius: 30px;
  margin-right: 50px;
}

#btm-right-div {
  /* background-color: lightskyblue; */
  grid-area: btm-right-div;
}

#btm-right-div img {
  height: 260px;
  width: 350px;
  border-radius: 30px;
  margin-right: 18px;
}
