* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  user-select: none;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background-color: #fff;
}

::-webkit-scrollbar-thumb {
  background: #3db777;
  /* border-radius: 5px; */
}

::-webkit-scrollbar-thumb:hover {
  background: #2e8d5c;
}

.navBar {
  width: 100%;
  height: 80px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  background-color: #1f212c;
  font-family: "poppins", sans-serif;
  color: #fff;
}

.navBar .navLeft {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.navBar .navLeft a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ffff;
}

.navBar .navLeft img {
  height: 50px;
  width: 50px;
  margin-right: 6px;
}

.navBar .navLeft p {
  font-size: 20px;
  font-weight: bolder;
}

.navBar .navMid {
  display: flex;
}

.navBar .navMid ul {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  list-style: none;
}

.navBar .navMid li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  margin: 0 20px;
}

.navBar .navMid .active {
  padding-bottom: 6px;
  border-bottom: 3px solid #2e8d5c;
}

.navBar .navRight {
  display: flex;
  flex-direction: row;
  margin-left: 60px;
}

.navBar .navRight a {
  text-decoration: none;
  color: #fff;
  margin: 0 15px;
  background-color: #3db777;
  padding: 5px 15px;
  border-radius: 5px;
  font-size: 14px;
}

.hamBurger {
  display: none;
}

.hamBurger i {
  font-size: 25px;
}

.navMidMain {
  display: flex;
}

@media only screen and (max-width: 800px) {
  .navBar {
    position: relative;
  }
  .navBar .navRight {
    margin-left: 0;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
  }
  .hamBurger {
    display: block;
  }
  .navMidMain {
    display: none;
  }
  .navBar .navMid {
    display: inline;
  }
  .navBar .navMid ul {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .navBar .navMid ul li {
    padding: 15px 0;
  }
  .navMidMain.show {
    z-index: 100;
    display: block;
    position: absolute;
    top: 100%;
    height: 300px;
    width: 100%;
    background-color: #1f212c;
  }
}

/* login area  */

.loginArea {
  background-color: #1f212c;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}

.loginArea form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #f3f3f3;
  padding: 20px 20px;
  font-family: "poppins", sans-serif;
  border-radius: 6px;
  margin: 50px 0;
}

.loginArea .flex label {
  font-size: 15px;
}

.loginArea .flex input {
  font-family: "poppins", sans-serif;
  width: 280px;
}

.loginArea .hideInput {
  display: none;
}

.loginArea .flex select {
  font-family: "poppins", sans-serif;
  height: 30px;
  outline: none;
  margin: 8px 0;
}

.loginArea .flex .passwordsignup,
.loginArea .flex .confirmpasswordsignup {
  position: relative;
}

.loginArea .flex #togglePasswordSignup,
.loginArea .flex #toggleConfirmPassword {
  position: absolute;
  top: 32%;
  right: 3%;
  cursor: pointer;
}

.loginArea .termsCont label {
  font-size: 14px;
}

.forgetArea form {
  padding: 10px 15px;
  height: 250px;
  width: 300px;
}

.loginArea form h2 {
  margin: 10px 0;
}

.loginArea form input {
  font-family: "poppins", sans-serif;
  width: 200px;
  height: 35px;
  margin: 7px 0;
  padding: 5px;
  outline: none;
}

.loginArea form input:focus {
  border: 1px solid #3db777;
}

.forgetArea form input {
  width: 90%;
}

.loginArea form .password {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
}

.loginArea form .password #togglePassword {
  position: absolute;
  right: 3%;
  cursor: pointer;
}

.loginArea form .termsCont {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.loginArea form .termsCont input {
  width: 18px;
  height: 18px;
  margin: 6px;
  cursor: pointer;
}

.loginArea form .termsCont label a {
  text-decoration: none;
  color: #383838;
}

.forgetArea form .termsCont {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.forgetArea form .termsCont a {
  width: 90%;
  font-size: 13px;
  text-align: center;
}

.loginArea form button {
  color: #fff;
  margin: 15px 0;
  background-color: #3db777;
  padding: 5px 25px;
  border-radius: 2px;
  font-size: 17px;
  border: 1px solid #383838;
}

.loginArea form button:hover {
  color: #fff;
  cursor: pointer;
  background-color: #383838;
}

.loginArea form a {
  text-decoration: none;
  color: #e94a00;
}

.loginArea form a:hover {
  color: #383838;
}

.loginArea form h4 {
  font-size: 11px;
  color: #e90000;
}

.validationArea form {
  height: 300px;
  position: relative;
}

.validationArea p {
  font-size: 12px;
  text-align: center;
  margin-top: -10px;
  margin-bottom: 10px;
  padding: 0 8px;
}

.validationArea form {
  padding: 25px 0;
}

.validationArea form .backBottom {
  position: absolute;
  bottom: 1%;
  text-align: center;
}

.validationArea form .backBottom a {
  font-size: 12px;
}

/* hero area here  */

.heroArea {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #1f212c;
}

.notFoundArea {
  height: 100vh;
}

.heroArea .heroContainer {
  font-family: "poppins", sans-serif;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  /* flex-wrap: wrap; */
  justify-content: space-around;
  align-items: center;
}

.heroArea .heroContainer .textDiv {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 55px;
  width: 50%;
}

.heroArea .heroContainer .textDiv .checkLists {
  display: flex;
  flex-direction: column;
}

.heroArea .heroContainer .textDiv .checkLists a {
  text-decoration: none;
  color: #c2c2c2;
}

.heroArea .heroContainer .textDiv .checkLists a:hover {
  text-decoration: none;
  color: #e94a00;
}

.heroArea .heroContainer .textDiv .textChecks {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  /* justify-content: space-around; */
  align-items: center;
  color: #ececec;
  margin-top: 15px;
}

.heroArea .heroContainer .textDiv .textChecks p {
  margin: 4px;
  margin-right: 12px;
}

.heroArea .heroContainer .textDiv .ctaBtns {
  margin: 20px 0;
}

.heroArea .heroContainer .textDiv .ctaBtns a {
  text-decoration: none;
  background-color: #2e8d5c;
  color: #fff;
  padding: 6px 13px;
}

.heroArea .heroContainer .textDiv h1 {
  font-size: 40px;
  color: #ffff;
}

.heroArea .heroContainer .textDiv h2 {
  font-size: 40px;
  color: #ffff;
}

.heroArea .heroContainer .svgDiv {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.heroArea .heroContainer .svgDiv img {
  height: 450px;
  width: 450px;
}

.heroArea .statsTable {
  background-color: #292b36;
  color: #ffff;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-evenly;
  height: 100%;
  width: 100%;
  padding: 25px 10px;
  font-family: "poppins", sans-serif;
  text-transform: uppercase;
}

.heroArea .statsTable .statContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px 5px;
}

.heroArea .statsTable .statContainer h3 {
  font-weight: bolder;
  font-size: 30px;
}

.heroArea .statsTable .statContainer p {
  font-weight: 500;
  font-size: 18px;
}

.heroArea .pcViewArea {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  height: 100%;
  width: 100%;
  padding: 45px 10px;
}

.heroArea .pcViewArea .imageDiv {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.heroArea .pcViewArea .imageDiv img {
  height: 350px;
  width: auto;
}

.heroArea .pcViewArea .pcViewText {
  font-family: "poppins", sans-serif;
  width: 50%;
  padding: 15px;
  color: #ffff;
}

.heroArea .pcViewArea .pcViewText h2 {
  font-weight: bolder;
  font-size: 30px;
  margin: 6px 0;
  width: 80%;
}

.heroArea .pcViewArea .pcViewText p {
  font-size: 22px;
  margin: 7px 0;
  width: 80%;
}

.heroArea .pcViewArea .pcViewText .pcViewBtn {
  margin-top: 14px;
}

.heroArea .pcViewArea .pcViewText .pcViewBtn a {
  text-decoration: none;
  color: #ffff;
  background-color: #e94a00;
  padding: 6px 10px;
}

.heroArea .reviewArea {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  height: 100%;
  width: 100%;
  padding: 45px 10px;
}

.heroArea .reviewArea .commentSection {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "poppins", sans-serif;
  width: 50%;
}

.heroArea .reviewArea .commentSection .commentBox {
  display: flex;
  flex-direction: row;
  /* justify-content: center; */
  align-items: center;
  width: 260px;
  height: 90px;
  background-color: #e9e9e9;
  border-radius: 8px;
  padding: 15px 10px;
  margin: 25px 2px;
}

.heroArea .reviewArea .commentSection .commentBox1 {
  transform: rotate(-5deg);
}

.heroArea .reviewArea .commentSection .commentBox2 {
  transform: rotate(5deg);
  margin-right: 60px;
}

.heroArea .reviewArea .commentSection .commentBox3 {
  transform: rotate(-5deg);
  margin-left: 60px;
}

.heroArea .reviewArea .commentSection .commentBox4 {
  transform: rotate(5deg);
}

.heroArea .reviewArea .commentSection .commentBox .commentImage img {
  height: 50px;
  width: 50px;
}

.heroArea .reviewArea .commentSection .commentText {
  display: flex;
  flex-direction: column;
  margin: 2px 10px;
}

.heroArea .reviewArea .commentSection .commentText h4 {
  font-size: 13px;
  color: #383838;
  font-weight: 400;
}

.heroArea .reviewArea .commentSection .commentText p {
  font-size: 11px;
  width: 90%;
  color: #1d1d1d;
  font-weight: bold;
}

.heroArea .reviewArea .commentSection .commentDot {
  display: flex;
  justify-content: flex-start;
  height: 100%;
}

.heroArea .reviewArea .commentSection .commentDot i {
  margin-top: 5px;
  margin-right: 10px;
  font-weight: 500;
}

.heroArea .reviewArea .textSection {
  font-family: "poppins", sans-serif;
  width: 50%;
}

.heroArea .reviewArea .textSection h2 {
  font-size: 30px;
  color: #ffff;
  margin-bottom: 10px;
  width: 80%;
}

.heroArea .reviewArea .textSection p {
  font-size: 17px;
  margin: 10px 0;
  color: #ebebeb;
  width: 80%;
}

.heroArea .callSection {
  height: 100%;
  width: 100%;
  padding: 40px 10px;
  font-family: "poppins", sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.heroArea .callSection h2 {
  color: #e9e9e9;
  font-size: 30px;
  width: 70%;
  text-align: center;
}

.heroArea .callSection p {
  color: #e0e0e0;
  font-size: 20px;
  width: 70%;
  text-align: center;
  margin: 10px 0;
}

.heroArea .callSection a {
  margin: 10px 0;
  background-color: #3db777;
  text-decoration: none;
  color: #ffff;
  padding: 6px 12px;
  border-radius: 5px;
}

.heroArea .callSection a:hover {
  background-color: #e94a00;
}

@media only screen and (max-width: 1100px) {
  .heroArea .pcViewArea {
    flex-direction: column;
  }
  .heroArea .pcViewArea .imageDiv {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .heroArea .pcViewArea .pcViewText {
    width: 100%;
    text-align: center;
  }
  .heroArea .pcViewArea .pcViewText h2 {
    width: 99%;
  }
  .heroArea .pcViewArea .pcViewText p {
    margin: 6px 0;
    width: 99%;
  }
  .heroArea .reviewArea {
    flex-direction: column;
  }
  .heroArea .reviewArea .commentSection {
    width: 99%;
  }
  .heroArea .reviewArea .textSection {
    flex-direction: column;
    width: 99%;
    text-align: center;
    margin-top: 30px;
  }
  .heroArea .reviewArea .textSection h2 {
    width: 99%;
    font-size: 24px;
  }
  .heroArea .reviewArea .textSection p {
    width: 99%;
    font-size: 17px;
  }
}

@media only screen and (max-width: 900px) {
  .heroArea .heroContainer {
    flex-direction: column;
  }
  .heroArea .heroContainer .textDiv {
    width: 95%;
    padding: 20px;
  }
  .heroArea .heroContainer .statsDiv {
    width: 95%;
  }
  .heroArea .heroContainer .svgDiv img {
    height: 280px;
    width: 280px;
  }
}

@media only screen and (max-width: 450px) {
  .heroArea .heroContainer .textDiv h2 {
    font-size: 25px;
  }
  .heroArea .heroContainer .textDiv h1 {
    font-size: 25px;
  }
  .heroArea .statsTable {
    flex-direction: column;
  }
  .heroArea .statsTable .statContainer {
    padding: 30px 0;
  }
}

@media only screen and (max-width: 550px) {
  .heroArea .pcViewArea .imageDiv img {
    height: 200px;
  }
  .heroArea .pcViewArea .pcViewText h2 {
    font-size: 24px;
  }
  .heroArea .pcViewArea .pcViewText h1 {
    font-size: 24px;
  }
  .heroArea .pcViewArea .pcViewText p {
    font-size: 17px;
    margin: 30px 0;
  }
  .loginArea {
    height: 100%;
  }
  .heroArea .callSection h2 {
    width: 100%;
  }
}

/* top footer section styling here  */

.topFooter {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  /* align-items: center; */
  width: 100%;
  height: 100%;
  font-family: "poppins", sans-serif;
  background-color: #1f212c;
  padding: 25px 15px;
}

.topFooter ul li {
  list-style: none;
}

.topFooter ul li a {
  text-decoration: none;
  color: rgb(209, 209, 209);
}

.topFooter ul li a:hover {
  color: #3db777;
}

.topFooter p {
  color: rgb(209, 209, 209);
}

.footSize {
  height: 100%;
  width: 25%;
}

.footSize ul li a {
  display: flex;
  align-items: center;
}

.footSize ul li a i {
  font-size: 10px;
  margin-right: 5px;
  margin-top: 1px;
  color: #ffff;
}

.footlogo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footIcon a i {
  font-size: 23px;
  color: #ff2e63;
  margin-bottom: 20px;
}

.bgName {
  display: flex;
  flex-direction: column;
  padding: 10px;
}

.bgName h1 a {
  font-size: 17px;
}

.socialIcons {
  display: flex;
  justify-content: center;
  align-items: center;
}

.socialIcons i {
  margin: 5px;
  color: #3db777;
}

.socialIcons i:hover {
  color: white;
}

.topFooter .footlogo .footIcon img {
  width: 60px;
  height: 60px;
}

.topFooter h1 {
  font-size: 18px;
  color: #fff;
}

.topFooter h1 a {
  text-decoration: none;
  color: #fff;
}

.topFooter h2 {
  font-size: 18px;
  color: #fff;
}

.topFooter h2 a {
  text-decoration: none;
  color: #fff;
}

/* footer styling here  */

.footer {
  display: flex;
  flex-direction: column;
  font-family: "poppins", sans-serif;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 100%;
  background-color: #1f212c;
  padding: 10px;
}

.footer .footer1 h2 {
  font-size: 15px;
  color: #eaeaea;
  font-weight: 100;
}

.footer .footer1 a {
  font-size: 15px;
  text-decoration: none;
  color: #3db777;
  font-weight: 100;
}

.footer .footer1 a:hover {
  color: #3db777;
}

.footer .footer2 a {
  font-size: 12px;
  text-decoration: none;
  color: #3db777;
  font-weight: 100;
  margin: 2px 8px;
}

.footer .footer2 a:hover {
  color: #e94a00;
}

@media only screen and (max-width: 650px) {
  .topFooter {
    flex-direction: column;
    align-items: center;
  }
  .footSize {
    width: 100%;
    padding-bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .footIcon a i {
    margin-bottom: -50px;
  }
  .footSize ul li a {
    justify-content: center;
  }
}
