@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;1,100;1,200;1,300;1,400;1,500;1,600&display=swap");
main .aboutSection h2, main .aboutSection .aboutContent .contentCard #textCard h3, main .serviceSection h2, main .chooseSection .textPane h1, body, header .headerSection .navigations nav ul, .drawMenu .linksPane nav ul, .mainPageTopContainer .heroSection .heroContainer h1, .mainPageTopContainer .heroSection .heroContainer h2, .otherPageTopContainer .heroSection .heroContainer h1, .otherPageTopContainer .heroSection .heroContainer h2, footer .footSection .pageInfoSection p {
  padding: 0;
  margin: 0;
}

@keyframes progressRotate {
  100% {
    transform: rotate(360deg);
  }
}
* {
  font-family: "Poppins", sans-serif;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

body {
  position: relative;
  width: 100%;
  font-family: "Poppins", sans-serif;
}
body button {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

header {
  background-color: rgb(16, 34, 43);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 10;
}
header .headerSection {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 0;
  padding-block: 10px;
}
header .headerSection .pageLogo #siteLogo {
  width: 280px;
}
header .headerSection .navigations nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
header .headerSection .navigations nav ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  width: 70px;
  list-style-type: none;
  font-weight: 400;
  padding-block: 6px;
  transition: border-bottom 100ms ease;
  cursor: pointer;
}
header .headerSection .navigations nav ul li[data-active=Yes] {
  font-weight: 700;
  border-bottom: 4px solid #21E5A7;
}
header .headerSection .navigations nav ul li:hover {
  font-weight: 700;
  border-bottom: 4px solid #21E5A7;
}
header .headerSection .navigations nav ul li a {
  text-decoration: none;
  color: white;
  font-size: 14px;
}
header .headerSection .authButts {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
header .headerSection .authButts button {
  width: 100px;
  padding: 4px;
  background-color: transparent;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: white;
  border: 2px solid #21E5A7;
  border-radius: 8px;
  cursor: pointer;
  transition: all 100ms ease;
}
header .headerSection .authButts button:hover {
  font-weight: 800;
  background-color: #21E5A7;
  border: 2px solid #21E5A7;
  color: rgb(16, 34, 43);
}
header .headerSection .menuButt {
  display: none;
  margin-inline: 20px;
}
header .headerSection .menuButt svg {
  width: 30px;
  height: 30px;
  fill: white;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media screen and (max-width: 520px) {
  header .headerSection {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    padding: 10px;
  }
  header .headerSection .navigations {
    display: none;
  }
  header .headerSection .authButts {
    display: none;
  }
  header .headerSection .pageLogo #siteLogo {
    max-width: 200px;
  }
  header .headerSection .menuButt {
    display: flex;
  }
}
@media screen and (min-width: 520px) and (max-width: 912px) {
  header .headerSection {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    padding: 10px;
  }
  header .headerSection .navigations {
    display: none;
  }
  header .headerSection .authButts {
    display: none;
  }
  header .headerSection .menuButt {
    display: flex;
  }
}

.drawMenu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  background-color: rgb(16, 34, 43);
  width: 0;
  visibility: hidden;
  transition: width 0.5s ease;
  z-index: 20;
  overflow: auto;
}
.drawMenu.active {
  width: 300px;
  padding: 10px;
  visibility: visible;
}
.drawMenu.active .linksPane {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
}
.drawMenu.active .linksPane #closeButt {
  opacity: 1;
}
.drawMenu .linksPane {
  width: auto;
  position: relative;
}
.drawMenu .linksPane #closeButt {
  fill: white;
  position: absolute;
  right: 0;
  margin-right: 10px;
  width: 30px;
  height: 30px;
  margin-top: 20px;
  opacity: 0;
  transition: opacity 0.5s ease;
  transition-delay: 0.2s;
}
.drawMenu .linksPane h1 {
  width: auto;
  font-size: 30px;
  text-align: center;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: white;
  margin-top: 60px;
}
.drawMenu .linksPane nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-direction: column;
}
.drawMenu .linksPane nav ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  width: 70px;
  list-style-type: none;
  font-weight: 400;
  padding-block: 6px;
  transition: border-bottom 100ms ease;
  cursor: pointer;
}
.drawMenu .linksPane nav ul li[data-active=Yes] {
  font-weight: 700;
  border-bottom: 4px solid #21E5A7;
}
.drawMenu .linksPane nav ul li:hover {
  font-weight: 700;
  border-bottom: 4px solid #21E5A7;
}
.drawMenu .linksPane nav ul li a {
  text-decoration: none;
  color: white;
  font-size: 14px;
}
.drawMenu .linksPane .authButts {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  justify-content: center;
  gap: 20px;
  margin-block: 20px;
}
.drawMenu .linksPane .authButts button {
  width: 260px;
  padding: 8px;
  background-color: #21E5A7;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: rgb(16, 34, 43);
  border: 2px solid #21E5A7;
  border-radius: 8px;
}
@media screen and (min-width: 520px) and (max-width: 912px) {
  .drawMenu.active {
    width: 400px;
  }
}

.mainPageTopContainer .headerMaker {
  background-color: #21E5A7;
  padding: 5px;
}
.mainPageTopContainer .heroSection {
  display: flex;
  position: relative;
  height: 500px;
  background-image: url("/assets/images/boardImg.jpg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  filter: grayscale(0.6);
  overflow: hidden;
}
.mainPageTopContainer .heroSection .heroShadow {
  position: absolute;
  left: 0;
  right: 0;
  background-color: rgb(12, 11, 11);
  height: 100%;
  opacity: 0.8;
  z-index: 1;
}
.mainPageTopContainer .heroSection .heroBottomCard {
  background: url("/assets/images/backcurvewhite.png");
  background-size: 120% 100%;
  background-position: 100%;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20px;
  color: white;
  height: 100px;
  width: 160%;
  z-index: 10;
}
.mainPageTopContainer .heroSection .heroContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-direction: column;
  width: 100%;
  height: 90%;
  color: white;
  z-index: 2;
}
.mainPageTopContainer .heroSection .heroContainer h1 {
  width: 70%;
  font-size: 30px;
  text-align: center;
  font-weight: 800;
  font-family: "Poppins", sans-serif;
}
.mainPageTopContainer .heroSection .heroContainer h2 {
  width: 80%;
  font-size: 18px;
  text-align: center;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}
.mainPageTopContainer .heroSection .heroContainer button {
  width: 300px;
  padding: 12px;
  margin-block: 10px;
  background-color: #21E5A7;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: rgb(16, 34, 43);
  border: 2px solid rgb(16, 34, 43);
  border-radius: 8px;
  cursor: pointer;
  transition: padding 100ms ease, font-weight 100ms ease;
}
.mainPageTopContainer .heroSection .heroContainer button:hover {
  padding: 14px;
  font-weight: 700;
}
@media screen and (max-width: 520px) {
  .mainPageTopContainer .heroSection .heroContainer h1 {
    width: 70%;
    font-size: 18px;
    text-align: center;
    font-weight: 800;
    font-family: "Poppins", sans-serif;
  }
  .mainPageTopContainer .heroSection .heroContainer h2 {
    width: 80%;
    font-size: 14px;
    text-align: center;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
  }
  .mainPageTopContainer .heroSection .heroContainer button {
    width: 250px;
    padding: 10px;
    font-size: 12px;
  }
}
@media screen and (min-width: 520px) and (max-width: 912px) {
  .mainPageTopContainer .heroSection .heroContainer h1 {
    width: 70%;
    font-size: 30px;
    text-align: center;
    font-weight: 800;
    font-family: "Poppins", sans-serif;
  }
  .mainPageTopContainer .heroSection .heroContainer h2 {
    width: 80%;
    font-size: 14px;
    text-align: center;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
  }
  .mainPageTopContainer .heroSection .heroContainer button {
    width: 280px;
    padding: 10px;
    font-size: 12px;
  }
}

.otherPageTopContainer .headerMaker {
  background-color: #21E5A7;
  padding: 5px;
}
.otherPageTopContainer .heroSection {
  display: flex;
  position: relative;
  height: 440px;
  background-image: url("/assets/images/boardImg.jpg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  filter: grayscale(0.6);
  overflow: hidden;
}
@media screen and (max-width: 520px) {
  .otherPageTopContainer .heroSection {
    height: 350px;
  }
}
.otherPageTopContainer .heroSection .heroShadow {
  position: absolute;
  left: 0;
  right: 0;
  background-color: rgb(12, 11, 11);
  height: 100%;
  opacity: 0.8;
  z-index: 1;
}
.otherPageTopContainer .heroSection .heroBottomCard {
  background: url("/assets/images/backcurvewhite.png");
  background-size: 120% 100%;
  background-position: 100%;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20px;
  color: white;
  height: 100px;
  width: 160%;
  z-index: 10;
}
.otherPageTopContainer .heroSection .heroContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-direction: column;
  width: 100%;
  height: 90%;
  color: white;
  z-index: 2;
}
.otherPageTopContainer .heroSection .heroContainer h1 {
  width: 70%;
  font-size: 50px;
  text-align: center;
  font-weight: 800;
  font-family: "Poppins", sans-serif;
}
.otherPageTopContainer .heroSection .heroContainer h2 {
  width: 80%;
  font-size: 20px;
  text-align: center;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}
@media screen and (max-width: 520px) {
  .otherPageTopContainer .heroSection .heroContainer h1 {
    width: 70%;
    font-size: 18px;
    text-align: center;
    font-weight: 800;
    font-family: "Poppins", sans-serif;
  }
  .otherPageTopContainer .heroSection .heroContainer h2 {
    width: 80%;
    font-size: 14px;
    text-align: center;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
  }
}
@media screen and (min-width: 520px) and (max-width: 912px) {
  .otherPageTopContainer .heroSection .heroContainer h1 {
    width: 70%;
    font-size: 30px;
    text-align: center;
    font-weight: 800;
    font-family: "Poppins", sans-serif;
  }
  .otherPageTopContainer .heroSection .heroContainer h2 {
    width: 80%;
    font-size: 14px;
    text-align: center;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
  }
}

footer .partnerSection {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-direction: column;
  gap: 30px;
  padding: 40px;
}
footer .partnerSection h1 {
  font-size: 40px;
  margin-bottom: 0;
}
footer .partnerSection .partLogo {
  display: grid;
  grid-template-columns: repeat(auto-fit,160px);
  grid-template-rows: auto;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 20px;
  margin-bottom: 30px;
}
footer .partnerSection .partLogo img {
  width: 60%;
  max-height: 50px;
}
@media screen and (max-width: 520px) {
  footer .partnerSection {
    padding: 10px;
  }
  footer .partnerSection h1 {
    font-size: 20px;
    margin-bottom: 0;
  }
  footer .partnerSection .partLogo {
    display: grid;
    grid-template-columns: repeat(auto-fit,80px);
    grid-template-rows: auto;
  }
  footer .partnerSection .partLogo img {
    width: 100%;
    max-height: 40px;
  }
}
@media screen and (min-width: 520px) and (max-width: 912px) {
  footer .partnerSection h1 {
    font-size: 20px;
    margin-bottom: 0;
  }
  footer .partnerSection .partLogo {
    display: grid;
    grid-template-columns: repeat(auto-fit,80px);
    grid-template-rows: auto;
  }
  footer .partnerSection .partLogo img {
    width: 100%;
    max-height: 40px;
  }
}
footer .footSection {
  background-color: rgb(16, 34, 43);
}
footer .footSection .newsLetterSection {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 0;
  height: 100px;
  padding: 20px;
  gap: 10px;
  background-color: rgba(16, 34, 43, 0.651);
  box-shadow: 0px 0px 10px black;
}
footer .footSection .newsLetterSection h1 {
  width: auto;
  font-size: 18px;
  text-align: center;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: white;
}
footer .footSection .newsLetterSection .letterbox {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}
footer .footSection .newsLetterSection .letterbox .emailbox {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  height: 45px;
  border-radius: 10px;
  outline: 2px solid rgba(199, 195, 202, 0.705);
  overflow: hidden;
}
footer .footSection .newsLetterSection .letterbox .emailbox svg {
  margin-inline: 10px;
  margin-right: 5px;
  width: 25px;
  height: 25px;
}
footer .footSection .newsLetterSection .letterbox .emailbox .newsletterform {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  height: 50px;
}
footer .footSection .newsLetterSection .letterbox .emailbox .newsletterform input {
  width: auto;
  font-size: 14px;
  text-align: start;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  width: 100%;
  background-color: rgb(16, 34, 43);
  border: transparent;
  color: white;
  caret-color: white;
}
footer .footSection .newsLetterSection .letterbox .emailbox .newsletterform input:focus {
  outline: transparent;
}
footer .footSection .newsLetterSection .letterbox .emailbox .newsletterform .subButton {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  width: auto;
  font-size: 14px;
  text-align: center;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  background-color: #21E5A7;
  color: rgb(16, 34, 43);
  width: 200px;
  height: 100%;
  border: 0px;
  gap: 2px;
  margin-left: 2px;
  cursor: pointer;
}
footer .footSection .newsLetterSection .letterbox .emailbox .newsletterform .subButton svg {
  display: none;
  fill: rgb(16, 34, 43);
  width: 16px;
  height: 16px;
}
footer .footSection .newsLetterSection .letterbox .emailbox .newsletterform .subButton.active svg {
  display: flex;
  animation: progressRotate 1s infinite linear;
}
footer .footSection .newsLetterSection .successNote {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  background-color: #21E5A7;
  padding: 10px;
  padding-inline: 20px;
  border-radius: 50px;
  display: none;
}
footer .footSection .newsLetterSection .successNote.active {
  display: flex;
}
footer .footSection .newsLetterSection .successNote svg {
  fill: rgb(16, 34, 43);
  width: 20px;
  height: 20px;
  margin-right: 5px;
}
footer .footSection .newsLetterSection .successNote span {
  width: auto;
  font-size: 14px;
  text-align: center;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: rgb(16, 34, 43);
}
footer .footSection .newsLetterSection .failNote {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  background-color: rgb(255, 77, 79);
  padding: 10px;
  padding-inline: 20px;
  border-radius: 50px;
  display: none;
}
footer .footSection .newsLetterSection .failNote.active {
  display: flex;
}
footer .footSection .newsLetterSection .failNote svg {
  fill: rgb(168, 7, 26);
  width: 20px;
  height: 20px;
  margin-right: 5px;
}
footer .footSection .newsLetterSection .failNote span {
  width: auto;
  font-size: 14px;
  text-align: center;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: rgb(168, 7, 26);
}
@media screen and (max-width: 520px) {
  footer .footSection .newsLetterSection {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-direction: column;
    height: auto;
  }
  footer .footSection .newsLetterSection h1 {
    font-size: 18px;
  }
  footer .footSection .newsLetterSection .letterbox {
    width: 95%;
    margin-block: 10px;
  }
  footer .footSection .newsLetterSection .letterbox .emailbox {
    height: 40px;
  }
  footer .footSection .newsLetterSection .letterbox .emailbox .newsletterform input {
    font-size: 12px;
  }
  footer .footSection .newsLetterSection .letterbox .emailbox .newsletterform .subButton {
    font-size: 12px;
    width: 160px;
  }
  footer .footSection .newsLetterSection .letterbox .emailbox .newsletterform .subButton svg {
    width: 12px;
    height: 12px;
  }
  footer .footSection .newsLetterSection .successNote,
  footer .footSection .newsLetterSection .failNote {
    margin-block: 10px;
    width: 80%;
  }
}
@media screen and (min-width: 520px) and (max-width: 912px) {
  footer .footSection .newsLetterSection {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-direction: column;
    height: auto;
  }
  footer .footSection .newsLetterSection h1 {
    font-size: 18px;
  }
  footer .footSection .newsLetterSection .letterbox {
    width: 95%;
    margin-block: 10px;
  }
}
footer .footSection .pageInfoSection {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto;
  align-items: start;
  padding: 60px;
  gap: 70px;
}
footer .footSection .pageInfoSection p {
  width: auto;
  font-size: 30px;
  text-align: start;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: white;
  margin-bottom: 10px;
}
footer .footSection .pageInfoSection a {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 14px;
  text-align: start;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: white;
  text-decoration: none;
  border-bottom: 1px solid white;
}
footer .footSection .pageInfoSection span {
  width: auto;
  font-size: 14px;
  text-align: start;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: white;
}
footer .footSection .pageInfoSection .aboutPane {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
}
footer .footSection .pageInfoSection .aboutPane span {
  margin-block: 5px;
}
footer .footSection .pageInfoSection .quicklinksPane .linksPane {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
}
footer .footSection .pageInfoSection .contactPane {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
}
footer .footSection .pageInfoSection .contactPane div {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto;
  justify-content: start;
  align-items: center;
  margin-block: 5px;
  gap: 10px;
}
footer .footSection .pageInfoSection .contactPane div svg {
  fill: white;
  width: 30px;
  height: 30px;
}
@media screen and (max-width: 520px) {
  footer .footSection .pageInfoSection {
    display: grid;
    grid-template-columns: repeat(auto-fit,100%);
    grid-template-rows: auto;
    padding: 20px;
    gap: 20px;
  }
  footer .footSection .pageInfoSection p {
    width: auto;
    font-size: 18px;
    text-align: start;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
  }
  footer .footSection .pageInfoSection span {
    width: auto;
    font-size: 12px;
    text-align: start;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
  }
  footer .footSection .pageInfoSection a {
    width: -moz-fit-content;
    width: fit-content;
    font-size: 12px;
    text-align: start;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
  }
  footer .footSection .pageInfoSection .quicklinksPane .linksPane {
    display: grid;
    grid-template-columns: repeat(5, auto);
    grid-template-rows: auto;
    justify-content: center;
    gap: 10px;
  }
  footer .footSection .pageInfoSection .contactPane div svg {
    width: 20px;
    height: 20px;
  }
}
@media screen and (min-width: 520px) and (max-width: 912px) {
  footer .footSection .pageInfoSection {
    display: grid;
    grid-template-columns: repeat(auto-fit,1fr);
    grid-template-rows: auto;
    gap: 10px;
  }
  footer .footSection .pageInfoSection .aboutPane {
    width: 80%;
  }
}
footer .footSection .copyrightSection {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  width: 100%;
  padding-bottom: 20px;
}
footer .footSection .copyrightSection .holderPane {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  width: 80%;
  border: 1px solid rgba(33, 229, 167, 0.5960784314);
  border-radius: 20px;
  padding: 10px;
  margin-bottom: 30px;
}
footer .footSection .copyrightSection .holderPane img {
  width: auto;
}
footer .footSection .copyrightSection .holderPane span {
  width: auto;
  font-size: 14px;
  text-align: start;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: white;
  margin-right: 20px;
}
@media screen and (max-width: 520px) {
  footer .footSection .copyrightSection .holderPane {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto;
    justify-content: center;
    align-items: center;
  }
  footer .footSection .copyrightSection .holderPane img {
    width: 150px;
  }
  footer .footSection .copyrightSection .holderPane span {
    width: auto;
    font-size: 12px;
    text-align: center;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    margin-right: 0;
    margin-block: 10px;
  }
}

main .productSection {
  display: grid;
  grid-template-columns: repeat(auto-fit, 300px);
  grid-template-rows: auto;
  grid-auto-flow: row;
  justify-content: center;
  margin-block: 50px;
  padding: 20px;
  height: -moz-fit-content;
  height: fit-content;
  gap: 20px;
}
main .productSection .productCard {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  flex-direction: column;
  padding: 20px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 20px rgba(177, 175, 175, 0.527);
  border: 1px solid white;
  border-radius: 10px;
  scale: 1;
  transition: scale 100ms ease;
}
main .productSection .productCard:hover {
  scale: 1.1;
}
main .productSection .productCard:hover #iconCard span {
  font-size: 18px;
  font-weight: 100;
}
main .productSection .productCard #iconCard {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  height: 100px;
  width: 100px;
  background-color: #21E5A7;
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}
main .productSection .productCard #iconCard svg {
  width: 50px;
  height: 50px;
  fill: rgb(16, 34, 43);
}
main .productSection .productCard span {
  padding: 5px;
  text-align: center;
}
main .productSection .productCard span:nth-child(2) {
  font-size: 18px;
  font-weight: 800;
}
main .productSection .productCard span:nth-child(3) {
  font-size: 14px;
  font-weight: 400;
}
@media screen and (max-width: 520px) {
  main .productSection {
    grid-template-columns: repeat(auto-fit, 90%);
    gap: 20px;
    padding: 10px;
    margin-block: 20px;
  }
}
@media screen and (min-width: 520px) and (max-width: 912px) {
  main .productSection {
    grid-template-columns: repeat(auto-fit, 45%);
    gap: 30px;
    padding: 10px;
  }
}
main .aboutSection {
  background-color: rgba(33, 229, 167, 0.5960784314);
  padding: 10px;
}
main .aboutSection h1 {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0;
  color: rgb(16, 34, 43);
  margin-inline-start: 60px;
  font-size: 30px;
}
main .aboutSection h1 svg {
  margin-inline: 20px;
  width: 30px;
  height: 30px;
  fill: rgb(16, 34, 43);
}
main .aboutSection h2 {
  color: rgb(16, 34, 43);
  margin-inline-start: 80px;
  font-size: 18px;
  font-weight: 400;
}
main .aboutSection .aboutContent {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-direction: column;
  padding: 50px;
}
main .aboutSection .aboutContent .contentCard {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
main .aboutSection .aboutContent .contentCard #iconCard {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  height: 80px;
  width: 80px;
  background-color: rgb(16, 34, 43);
  border-radius: 20px;
  padding: 10px;
}
main .aboutSection .aboutContent .contentCard #iconCard svg {
  fill: #21E5A7;
  width: 40px;
  height: 40px;
}
main .aboutSection .aboutContent .contentCard #textCard {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-direction: column;
  width: 80%;
}
main .aboutSection .aboutContent .contentCard #textCard h3 {
  width: 100%;
  font-size: 30px;
  text-align: start;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  color: rgb(16, 34, 43);
  padding: 10px;
}
main .aboutSection .aboutContent .contentCard #textCard span {
  width: 100%;
  font-size: 14px;
  text-align: start;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}
@media screen and (max-width: 520px) {
  main .aboutSection h1 {
    margin-inline-start: 10px;
    font-size: 20px;
  }
  main .aboutSection h1 svg {
    margin-inline: 5px;
    width: 20px;
    height: 20px;
  }
  main .aboutSection h2 {
    margin-inline-start: 20px;
    font-size: 14px;
  }
  main .aboutSection .aboutContent {
    padding: 40px;
    padding-inline: 10px;
  }
  main .aboutSection .aboutContent .contentCard {
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 20px;
    flex-direction: column;
  }
  main .aboutSection .aboutContent .contentCard #iconCard {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    height: 60px;
    width: 60px;
    background-color: rgb(16, 34, 43);
    border-radius: 20px;
    padding: 10px;
  }
  main .aboutSection .aboutContent .contentCard #iconCard svg {
    fill: #21E5A7;
    width: 30px;
    height: 30px;
  }
  main .aboutSection .aboutContent .contentCard #textCard {
    width: 100%;
  }
  main .aboutSection .aboutContent .contentCard #textCard h3 {
    width: 100%;
    font-size: 18px;
    text-align: start;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
  }
  main .aboutSection .aboutContent .contentCard #textCard span {
    width: 100%;
    font-size: 14px;
    text-align: start;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
  }
}
@media screen and (min-width: 520px) and (max-width: 912px) {
  main .aboutSection h1 {
    margin-inline-start: 10px;
    font-size: 20px;
  }
  main .aboutSection h1 svg {
    margin-inline: 5px;
    width: 20px;
    height: 20px;
  }
  main .aboutSection h2 {
    margin-inline-start: 10px;
    font-size: 18px;
  }
  main .aboutSection .aboutContent {
    padding: 30px;
    padding-inline: 10px;
  }
  main .aboutSection .aboutContent .contentCard {
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 20px;
    flex-direction: column;
  }
  main .aboutSection .aboutContent .contentCard #iconCard {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    height: 80px;
    width: 80px;
    background-color: rgb(16, 34, 43);
    border-radius: 20px;
    padding: 10px;
  }
  main .aboutSection .aboutContent .contentCard #iconCard svg {
    fill: #21E5A7;
    width: 40px;
    height: 40px;
  }
  main .aboutSection .aboutContent .contentCard #textCard {
    width: 100%;
  }
  main .aboutSection .aboutContent .contentCard #textCard h3 {
    width: 100%;
    font-size: 18px;
    text-align: start;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
  }
  main .aboutSection .aboutContent .contentCard #textCard span {
    width: 100%;
    font-size: 14px;
    text-align: start;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
  }
}
main .serviceSection {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-direction: column;
}
main .serviceSection h1 {
  width: auto;
  font-size: 30px;
  text-align: center;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  margin-top: 50px;
}
main .serviceSection h2 {
  width: auto;
  font-size: 18px;
  text-align: center;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  margin-block: 30px;
}
main .serviceSection .serviceContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  width: 100%;
  position: relative;
  margin-top: 50px;
  overflow: hidden;
}
main .serviceSection .serviceContainer .serviceCardPad {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, 330px);
  grid-template-rows: auto;
  grid-auto-flow: row;
  justify-content: center;
  height: -moz-fit-content;
  height: fit-content;
  gap: 50px;
  background-color: rgb(16, 34, 43);
  padding-block: 50px;
}
main .serviceSection .serviceContainer .serviceCardPad .serviceCard {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  flex-direction: column;
  padding: 30px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 20px rgba(177, 175, 175, 0.4);
  border: 1px solid white;
  border-radius: 10px;
  scale: 1;
  cursor: pointer;
  transition: scale 100ms ease;
}
main .serviceSection .serviceContainer .serviceCardPad .serviceCard:hover {
  scale: 1.1;
}
main .serviceSection .serviceContainer .serviceCardPad .serviceCard:hover #iconCard span {
  font-size: 18px;
  font-weight: 100;
}
main .serviceSection .serviceContainer .serviceCardPad .serviceCard #iconCard {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  height: 100px;
  width: 100px;
  background-color: #21E5A7;
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}
main .serviceSection .serviceContainer .serviceCardPad .serviceCard #iconCard svg {
  width: 50px;
  height: 50px;
  fill: rgb(16, 34, 43);
}
main .serviceSection .serviceContainer .serviceCardPad .serviceCard:nth-child(3) #iconCard svg {
  transform: rotate(180deg);
}
main .serviceSection .serviceContainer .serviceCardPad .serviceCard span {
  padding: 5px;
  text-align: center;
}
main .serviceSection .serviceContainer .serviceCardPad .serviceCard span:nth-child(2) {
  font-size: 18px;
  font-weight: 800;
}
main .serviceSection .serviceContainer .serviceCardPad .serviceCard span:nth-child(3) {
  font-size: 14px;
  font-weight: 400;
}
main .serviceSection .assetsContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-direction: column;
  background-color: #21E5A7;
  padding-block: 20px;
  padding-bottom: 60px;
}
main .serviceSection .assetsContainer h1 {
  width: auto;
  font-size: 40px;
  text-align: center;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  margin-top: 50px;
  color: rgb(16, 34, 43);
}
main .serviceSection .assetsContainer h2 {
  width: 70%;
  font-size: 18px;
  text-align: center;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: rgb(0, 0, 0);
}
main .serviceSection .assetsContainer p {
  width: 70%;
  font-size: 18px;
  text-align: center;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  color: rgb(16, 34, 43);
}
main .serviceSection .assetsContainer ul li {
  width: auto;
  font-size: 18px;
  text-align: start;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: rgb(0, 0, 0);
}
main .serviceSection .assetsContainer .valuableDisplay {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  width: 100%;
  flex-direction: row;
  flex-wrap: wrap;
  margin-block: 20px;
  gap: 10px;
}
main .serviceSection .assetsContainer .valuableDisplay div img {
  width: 400px;
  height: 300px;
  border-radius: 10px;
  margin: 1%;
}
@media screen and (max-width: 520px) {
  main .serviceSection h1 {
    width: auto;
    font-size: 18px;
    text-align: center;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    margin-top: 40px;
  }
  main .serviceSection h2 {
    width: auto;
    font-size: 14px;
    text-align: center;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
  }
  main .serviceSection .serviceContainer {
    margin-top: 20px;
  }
  main .serviceSection .serviceContainer .serviceCardPad .serviceCard {
    box-shadow: 0px 0px 10px rgba(177, 175, 175, 0.562);
  }
  main .serviceSection .serviceContainer .serviceCardPad .serviceCard:hover {
    scale: 1;
  }
  main .serviceSection .assetsContainer {
    padding-block: 10px;
    padding-bottom: 20px;
  }
  main .serviceSection .assetsContainer h1 {
    width: auto;
    font-size: 24px;
    text-align: center;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    margin-top: 40px;
  }
  main .serviceSection .assetsContainer h2 {
    width: 90%;
    font-size: 14px;
    text-align: center;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
  }
  main .serviceSection .assetsContainer p {
    width: 90%;
    font-size: 16px;
    text-align: center;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
  }
  main .serviceSection .assetsContainer ul li {
    width: auto;
    font-size: 14px;
    text-align: start;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    margin-inline: 5px;
  }
  main .serviceSection .assetsContainer .valuableDisplay {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-direction: column;
    gap: 5px;
  }
  main .serviceSection .assetsContainer .valuableDisplay div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-direction: column;
  }
  main .serviceSection .assetsContainer .valuableDisplay div img {
    min-width: 95%;
    max-width: 95%;
    height: 300px;
  }
}
@media screen and (min-width: 520px) and (max-width: 912px) {
  main .serviceSection .assetsContainer {
    padding-block: 10px;
    padding-bottom: 20px;
  }
  main .serviceSection .assetsContainer h1 {
    width: auto;
    font-size: 24px;
    text-align: center;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    margin-top: 40px;
  }
  main .serviceSection .assetsContainer h2 {
    width: 90%;
    font-size: 14px;
    text-align: center;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
  }
  main .serviceSection .assetsContainer p {
    width: 90%;
    font-size: 16px;
    text-align: center;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
  }
  main .serviceSection .assetsContainer ul li {
    width: auto;
    font-size: 14px;
    text-align: start;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    margin-inline: 5px;
  }
  main .serviceSection .assetsContainer .valuableDisplay {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    gap: 5px;
  }
  main .serviceSection .assetsContainer .valuableDisplay div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    width: 48%;
    flex-wrap: wrap;
  }
  main .serviceSection .assetsContainer .valuableDisplay div img {
    width: 100%;
    height: 300px;
  }
}
main .chooseSection {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-template-rows: auto;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
main .chooseSection .textPane {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 0;
  flex-direction: column;
  padding: 40px;
}
main .chooseSection .textPane h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  font-size: 20px;
}
main .chooseSection .textPane h1 svg {
  fill: rgb(16, 34, 43);
  height: 24px;
  width: 30px;
}
main .chooseSection .textPane h2 {
  font-size: 30px;
}
main .chooseSection .textPane button {
  width: 200px;
  padding: 12px;
  margin-block: 10px;
  background-color: #21E5A7;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: rgb(16, 34, 43);
  border: 2px solid rgb(16, 34, 43);
  border-radius: 8px;
  cursor: pointer;
  transition: width 150ms ease, padding 100ms ease, font-weight 100ms ease;
}
main .chooseSection .textPane button:hover {
  width: 250px;
  padding: 14px;
  font-weight: 800;
}
main .chooseSection .cardPane {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  gap: 20px;
  justify-content: center;
  align-items: center;
  padding: 60px;
}
main .chooseSection .cardPane .chooseCard {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  gap: 10px;
  justify-content: center;
  align-items: center;
  background-color: rgb(16, 34, 43);
  padding: 40px;
  border-radius: 10px;
}
main .chooseSection .cardPane .chooseCard svg {
  fill: #21E5A7;
  width: 60px;
  height: 60px;
}
main .chooseSection .cardPane .chooseCard span {
  color: white;
  font-size: 14px;
}
main .chooseSection .cardPane .chooseCard span:nth-child(2) {
  font-size: 18px;
  font-weight: 600;
}
@media screen and (max-width: 520px) {
  main .chooseSection {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto;
  }
  main .chooseSection .textPane {
    padding: 10px;
    padding-top: 30px;
  }
  main .chooseSection .textPane h1 {
    font-size: 14px;
  }
  main .chooseSection .textPane h2 {
    font-size: 18px;
  }
  main .chooseSection .textPane button {
    width: 240px;
    margin: 0 auto;
    padding: 10px;
    margin-block: 10px;
    font-weight: 600;
  }
  main .chooseSection .cardPane {
    padding: 10px;
  }
  main .chooseSection .cardPane .chooseCard {
    padding: 20px;
  }
  main .chooseSection .cardPane .chooseCard svg {
    width: 30px;
    height: 30px;
  }
  main .chooseSection .cardPane .chooseCard span {
    font-size: 12px;
  }
  main .chooseSection .cardPane .chooseCard span:nth-child(2) {
    font-size: 14px;
    font-weight: 700;
  }
}
main .metricSection {
  display: grid;
  grid-template-columns: repeat(8,1fr);
  grid-template-rows: repeat(6,1fr);
  justify-content: center;
  align-items: center;
}
main .metricSection .infoPane {
  grid-area: 1/1/4/9;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-direction: column;
  background-color: #21E5A7;
  color: rgb(16, 34, 43);
  height: 400px;
}
main .metricSection .infoPane h2 {
  width: 100%;
  font-size: 30px;
  text-align: center;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}
main .metricSection .infoPane span {
  width: 80%;
  font-size: 18px;
  text-align: center;
  font-weight: 300;
  font-family: "Poppins", sans-serif;
  margin-bottom: 30px;
}
main .metricSection .metricPane {
  grid-area: 3/2/5/8;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  grid-template-rows: auto;
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  z-index: 3;
}
main .metricSection .metricPane .metric {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  gap: 20px;
}
main .metricSection .metricPane .metric svg {
  width: 50px;
  height: 50px;
  fill: rgb(16, 34, 43);
}
main .metricSection .metricPane .metric #detailPane {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
}
main .metricSection .metricPane .metric #detailPane span:nth-child(1) {
  font-size: 18px;
  font-weight: 700;
}
main .metricSection .metricPane .metric #detailPane span:nth-child(2) {
  font-size: 14px;
  font-weight: 400;
}
main .metricSection .reviewPane {
  grid-area: 4/1/7/9;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-direction: row;
  gap: 20px;
  justify-content: start;
  align-items: center;
  background-color: rgb(16, 34, 43);
  height: 400px;
  overflow-x: scroll;
  padding-inline: 40px;
}
main .metricSection .reviewPane .reviewCard {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  gap: 10px;
  padding: 20px;
  min-width: 400px;
  margin-top: 60px;
  border: 3px solid #21E5A7;
  border-radius: 20px;
  color: white;
}
main .metricSection .reviewPane .reviewCard svg {
  width: 20px;
  height: 20px;
}
main .metricSection .reviewPane .reviewCard span {
  font-size: 14px;
}
main .metricSection .reviewPane .reviewCard span:nth-child(1) {
  font-size: 18px;
  font-weight: 800;
}
main .metricSection .reviewPane .reviewCard i {
  font-size: 14px;
  font-weight: 300;
}
@media screen and (max-width: 520px) {
  main .metricSection {
    display: grid;
    grid-template-columns: repeat(8,1fr);
    grid-template-rows: repeat(5,1fr);
    justify-content: center;
    align-items: start;
  }
  main .metricSection .infoPane {
    grid-area: 1/1/3/9;
    height: auto;
    padding-block: 10px;
  }
  main .metricSection .infoPane h2 {
    width: 90%;
    font-size: 18px;
    text-align: center;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
  }
  main .metricSection .infoPane span {
    width: 90%;
    font-size: 14px;
    text-align: center;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    margin-bottom: 10px;
  }
  main .metricSection .metricPane {
    grid-area: 3/1/4/9;
    justify-content: center;
    align-items: center;
    height: auto;
    padding-block: 10px;
    border-radius: 0;
  }
  main .metricSection .metricPane .metric {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-direction: column;
    gap: 10px;
  }
  main .metricSection .metricPane .metric svg {
    width: 30px;
    height: 30px;
  }
  main .metricSection .metricPane .metric #detailPane {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto;
    justify-content: center;
    align-items: center;
  }
  main .metricSection .metricPane .metric #detailPane span:nth-child(1) {
    font-size: 14px;
    font-weight: 600;
  }
  main .metricSection .metricPane .metric #detailPane span:nth-child(2) {
    display: none;
  }
  main .metricSection .reviewPane {
    grid-area: 3/1/6/9;
    height: 350px;
    justify-content: start;
    overflow-x: scroll;
    padding-inline: 10px;
  }
  main .metricSection .reviewPane .reviewCard {
    min-width: 240px;
  }
  main .metricSection .reviewPane .reviewCard svg {
    width: 15px;
    height: 15px;
  }
  main .metricSection .reviewPane .reviewCard span {
    font-size: 12px;
  }
  main .metricSection .reviewPane .reviewCard span:nth-child(1) {
    font-size: 14px;
    font-weight: 600;
  }
  main .metricSection .reviewPane .reviewCard i {
    font-size: 10px;
  }
}
@media screen and (min-width: 520px) and (max-width: 912px) {
  main .metricSection {
    display: grid;
    grid-template-columns: repeat(8,1fr);
    grid-template-rows: repeat(5,1fr);
    justify-content: center;
    align-items: start;
  }
  main .metricSection .infoPane {
    grid-area: 1/1/3/9;
    height: 250px;
    padding-block: 10px;
  }
  main .metricSection .infoPane h2 {
    width: 90%;
    font-size: 18px;
    text-align: center;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
  }
  main .metricSection .infoPane span {
    width: 90%;
    font-size: 14px;
    text-align: center;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    margin-bottom: 10px;
  }
  main .metricSection .metricPane {
    grid-area: 3/1/5/9;
    height: 120px;
    justify-content: center;
    align-items: center;
    padding-block: 10px;
    border-radius: 0;
  }
  main .metricSection .metricPane .metric {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-direction: column;
    gap: 10px;
  }
  main .metricSection .metricPane .metric svg {
    width: 30px;
    height: 30px;
  }
  main .metricSection .metricPane .metric #detailPane {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto;
    justify-content: center;
    align-items: center;
  }
  main .metricSection .metricPane .metric #detailPane span:nth-child(1) {
    font-size: 14px;
    font-weight: 600;
  }
  main .metricSection .metricPane .metric #detailPane span:nth-child(2) {
    display: none;
  }
  main .metricSection .reviewPane {
    grid-area: 4/1/6/9;
    height: 100%;
    justify-content: start;
    overflow-x: scroll;
    padding-inline: 10px;
  }
  main .metricSection .reviewPane .reviewCard {
    min-width: 240px;
    margin-top: 0;
  }
  main .metricSection .reviewPane .reviewCard svg {
    width: 15px;
    height: 15px;
  }
  main .metricSection .reviewPane .reviewCard span {
    font-size: 12px;
  }
  main .metricSection .reviewPane .reviewCard span:nth-child(1) {
    font-size: 14px;
    font-weight: 600;
  }
  main .metricSection .reviewPane .reviewCard i {
    font-size: 10px;
  }
}/*# sourceMappingURL=main.css.map */