@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}
:root {
  --mainBackground: #f5f5f5;
  --mainColor: #282828;
  --toggleClr: #f5f5f5;
  --toggleBg: #282828;
  --greenTxt: #3c9159;
  --darkTxt: #292929;
  --footerBg: #f7fcf7;
}
.tempLink,
.tempLink:active,
.tempLink:hover,
.tempLink:focus {
  color: var(--greenTxt);
  text-decoration: none;
}
#main {
  min-height: 100vh;
  height: 600px;
  width: 100%;
  background-image: url('../assets/bg.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top right;
}
.header {
  height: 30vh;
  display: flex;
  justify-content: center;
  align-items: end;
}
.mainContent .container {
  display: flex;
  justify-content: center;
}
.bannerTxt {
  height: 500px;
  display: flex;
  max-width: 700px;
  text-align: center;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}
.bannerTxtHead {
  transition: all 1s ease;
  opacity: 0;
  transform: translateY(-100px);
  color: var(--greenTxt);
  font-size: 36px;
  font-weight: 600;
  text-shadow: 0 2px 2px #2929295c;
}
.bannerTxtBody {
  transition: all 1s ease;
  opacity: 0;
  transform: translateY(-100px);
  color: var(--darkTxt);
  font-size: 20px;
}
.footer {
  background-color: var(--footerBg);
}
.footerCells {
  padding-top: 30px;
  display: grid;
  grid-template-columns: 34% auto auto;
}
.footerCellHead {
  font-size: 26px;
  font-weight: 600;
  color: var(--greenTxt);
  text-shadow: 0 2px 2px #2929292b;
  margin-bottom: 8px;
}
.footerCellTxt {
  font-size: 14px;
  font-weight: 500;
}
.footerCellContact {
  margin-top: 10px;
}
.footerCopyright {
  padding-bottom: 30px;
}
@media (max-width: 767px) {
  .bannerTxt {
    height: 400px;
  }
  .bannerTxtHead {
    font-size: 22px;
  }
  .bannerTxtBody {
    font-size: 16px;
  }
  .footerCells {
    padding-top: 30px;
    display: grid;
    grid-template-columns: 100% auto auto;
  }
}
