* {
  margin: 0px;
  padding: 0px;
}

a {
  text-decoration: none;
  color: unset;
}

body {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  background-color: #eeeeee;
}

/* Header : Headin */

.headin {
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 1;
  background: #035bcd;
}

.headin-contain {
  width: 80%;
  padding: 180px 0px 100px;
  color: white;
}

.headin-title {
  font-size: 40px;
  letter-spacing: 1px;
}

.headin-name {
  width: 70%;
  padding-top: 14px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.7em;
}

/* UX */

.ux {
  display: flex;
  justify-content: center;
}

.ux-contain {
  width: 80%;
  padding: 100px 0px;
}

.ux-content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 45px 40px;
}

/* Box */

.box {
  width: auto;
  padding: 50px 40px;
  box-shadow: 0px 4px 17px gainsboro;
  border-radius: 20px;
  background: rgb(245, 245, 245);
}

.box-headin {
  display: flex;
  align-items: center;
  gap: 17px;
}

.box-title {
  flex: 1;
  font-size: 30px;
  letter-spacing: 0.4px;
  line-height: 1em;
}

.box-logo {
  width: 60px;
  height: 60px;
  border-radius: 50px;
  font-size: 17px;
  background: rgb(236, 236, 236);
  color: #016ffb;
  display: flex;
  justify-content: center;
  align-items: center;
}

.box-content {
  padding-top: 21px;
}

.box-name {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.8px;
  line-height: 1.6em;
  /* color: #444; */
}

.box-data {
  margin-top: 27px;
  padding-top: 27px;
  border-top: 1px solid gainsboro;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.6px;
  color: black;
}

ul {
  padding-left: 14px;
}

li {
  margin-top: 10px;
  padding-left: 7px;
}

.box-data a {
  color: #035bcd;
}

/* Lean */

.lean {
  display: flex;
  justify-content: center;
}

.lean-content {
  width: 72%;
  padding-bottom: 140px;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1.8em;
  color: #444;
}

/* Mobile Responsive */

/* 1300px */

@media screen and (max-width: 1300px) {
  .ux-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* 900px */

@media screen and (max-width: 900px) {
  .headin-title {
    font-size: 34px;
  }

  .headin-name {
    width: auto;
  }

  .ux-content {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

/* 800px */

@media screen and (max-width: 800px) {
  .headin-contain {
    padding: 100px 0px 40px;
  }

  .ux-contain {
    padding: 100px 0px 80px;
  }

  .lean-content {
    padding-bottom: 80px;
  }
}

/* 768px */

@media screen and (max-width: 768px) {
  .headin-contain.banner-active {
    padding: 200px 0px 40px;
  }
}

/* 700px */

@media screen and (max-width: 700px) {
  .headin-title {
    font-size: 28px;
  }
}

/* 600px */

@media screen and (max-width: 600px) {
  .headin-title {
    font-size: 21px;
  }
}

/* 500px */

@media screen and (max-width: 500px) {
  .box {
    padding: 40px 30px;
  }

  .box-headin {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 14px;
  }
}

/* 450px */

@media screen and (max-width: 450px) {
  .mobile {
    width: 100%;
  }
}

/* 400px */

@media screen and (max-width: 400px) {
  .headin-title {
    font-size: 18px;
  }
}
