* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/InterBold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/InterSemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/InterRegular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Mono";
  src: url("/fonts/spacemono.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
body {
  max-width: 100vw;
  width: 100%;
  overflow-x: clip;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #efefef;
  color: #0a0a0a;
  overscroll-behavior: none;
  font-family: "Inter", sans-serif;
  padding: 0 16px 50px 16px;
}
@media (max-width: 600px) {
  body {
    padding: 0 16px 30px 16px;
  }
}

h1 {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 90%;
}
@media (max-width: 600px) {
  h1 {
    font-size: 32px;
    line-height: 95%;
  }
}

h2 {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.05em;
}
@media (max-width: 600px) {
  h2 {
    font-size: 26px;
  }
}

h3 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.05em;
}
@media (max-width: 600px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 120%;
}

h5 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 120%;
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
}
p.small {
  font-size: 14px;
  line-height: 120%;
}
@media (max-width: 600px) {
  p {
    line-height: 140%;
  }
}

.mono {
  font-family: mono;
  font-size: 13px;
  letter-spacing: -0.04em;
  background: #efefef;
  width: -moz-fit-content;
  width: fit-content;
}

.mT50 {
  margin-top: 50px;
}

.mT30 {
  margin-top: 30px;
}

.mT20 {
  margin-top: 20px;
}

.mT10 {
  margin-top: 10px;
}

.logo img {
  width: 120px;
  height: auto;
}
@media (max-width: 600px) {
  .logo img {
    width: 100px;
  }
}

nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  max-width: 868px;
  width: calc(100% - 32px);
  padding: 15px 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  z-index: 1000;
  /* Desktop Nav */
  /* Mobile Nav */
  /* Mobile Nav Open */
}
nav .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
nav .top .hamburger {
  width: 50px;
  height: 44px;
  background: rgb(226, 226, 226);
  display: none;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
nav .top .hamburger .line {
  width: 30px;
  height: 2px;
  background: #0a0a0a;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 868px) {
  nav .top .hamburger {
    display: flex;
  }
}
nav .top .hamburger.active {
  background: #00b4d8;
}
nav .top .hamburger.active .line {
  background: #fff;
}
nav .top .hamburger.active .line:nth-child(1) {
  transform: translateY(6px) rotate(45deg) scale(0.8);
}
nav .top .hamburger.active .line:nth-child(2) {
  transform: translateY(-5px) rotate(-45deg) scale(0.8);
}
nav .links {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: flex-end;
}
nav .links a {
  text-decoration: none;
  font-size: 16px;
  color: #0a0a0a;
  border-radius: 7px;
  transition: all 0.3s ease-in-out;
  padding: 5px 10px;
}
nav .links a:hover {
  opacity: 0.7;
}
nav .links a.active {
  color: #00b4d8;
  border: 1px solid #00b4d8;
}
nav .links a.active:hover {
  opacity: 1;
}
nav .links a i {
  margin-right: 5px;
}
@media (max-width: 868px) {
  nav .links {
    display: none;
  }
}
nav .mobileLinks {
  display: none;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  padding: 10px 0 40px 0;
  opacity: 0;
}
nav .mobileLinks a {
  text-decoration: none;
  font-size: 16px;
  color: #0a0a0a;
  border-radius: 7px;
  transition: all 0.3s ease-in-out;
  padding: 5px 10px;
  width: -moz-fit-content;
  width: fit-content;
}
nav .mobileLinks a:hover {
  opacity: 0.7;
}
nav .mobileLinks a.active {
  color: #00b4d8;
  border: 1px solid #00b4d8;
}
nav .mobileLinks a.active:hover {
  opacity: 1;
}
nav .mobileLinks a i {
  margin-right: 5px;
}
nav .mobileLinks.show {
  opacity: 1;
  display: flex;
}
@media (max-width: 868px) {
  nav {
    flex-direction: column;
    gap: 20px;
    padding: 10px 10px 10px 20px;
  }
}

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
footer .container {
  max-width: 868px;
  width: 100%;
  background: #fff;
  padding: 40px 20px 0 20px;
  border-radius: 10px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
footer .container a {
  font-size: 16px;
  color: #0a0a0a;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.1s ease-in-out;
}
footer .container a:hover {
  color: #00b4d8;
}
footer .container .top {
  display: flex;
}
footer .container .top .col {
  flex: 1;
}
footer .container .top .col p {
  width: 100%;
  max-width: 200px;
}
footer .container .top .col .logo {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.05em;
}
footer .container .top .col:nth-child(2) {
  display: flex;
}
footer .container .top .col:nth-child(2) .linksCol {
  flex: 1;
}
footer .container .top .col:nth-child(2) .linksCol ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer .container .copyrights {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #dfdfdf;
  margin-top: 40px;
  padding: 30px 0;
}
footer .container .copyrights a {
  font-size: 14px;
}
footer .container .copyrights .links {
  display: flex;
  gap: 20px;
}
@media (max-width: 600px) {
  footer .container a {
    font-size: 14px;
  }
  footer .container .top {
    flex-direction: column;
    gap: 30px;
  }
  footer .container .top .col .logo {
    font-size: 17px;
  }
  footer .container .top .col:nth-child(2) .linksCol ul {
    gap: 5px;
  }
  footer .container .copyrights {
    margin-top: 30px;
    padding: 20px 0;
    flex-direction: column-reverse;
    gap: 20px;
  }
  footer .container .copyrights .links {
    flex-direction: column;
    gap: 10px;
  }
}

main {
  width: 100%;
  max-width: 868px;
  display: flex;
  gap: 20px;
  padding-top: 180px;
  padding-bottom: 70px;
}
main .content {
  flex: 1.5;
  /* FAQ */
}
main .content ul {
  padding-left: 32px;
}
main .content ul li {
  margin-top: 5px;
}
main .content .inlineLinks {
  color: #00b4d8;
}
main .content .accordion {
  width: 100%;
}
main .content .accordion .accordion-item {
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
main .content .accordion .accordion-item .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  gap: 20px;
  background: #ade8f4;
  font-weight: bold;
  cursor: pointer;
  border-radius: 8px;
}
main .content .accordion .accordion-item .top p {
  margin: 0;
}
main .content .accordion .accordion-item .top .icon {
  font-size: 24px;
  font-weight: 400;
}
main .content .accordion .accordion-item .bottom {
  padding: 20px;
  margin-top: 10px;
  display: none;
  background: #fff;
  border-radius: 10px;
}
main .content .accordion .accordion-item.active .bottom {
  display: block;
}
main .content .block,
main .content .highlight-Block {
  padding: 20px;
  border-radius: 10px;
}
main .content .block {
  background: #fff;
}
main .content .highlight-Block {
  background: #caf0f8;
  color: #023e8a;
}
main .content .highlight-Block a {
  color: #023e8a;
}
main .content .faq {
  width: 100%;
}
main .content .faq .accordion-item {
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  border-bottom: 1px solid #dfdfdf;
  padding-bottom: 10px;
}
main .content .faq .accordion-item .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 8px;
}
main .content .faq .accordion-item .top p {
  margin: 0;
}
main .content .faq .accordion-item .top .icon {
  font-size: 24px;
  font-weight: 400;
}
main .content .faq .accordion-item .bottom {
  margin-top: 10px;
  display: none;
  background: #fff;
  border-radius: 10px;
}
main .content .faq .accordion-item .bottom .font-code {
  font-family: Mono;
  font-size: 12px;
  background: #efefef;
}
main .content .faq .accordion-item.active .bottom {
  display: block;
}
main .tool_Container {
  position: sticky;
  top: 120px;
  flex: 1;
  height: -moz-fit-content;
  height: fit-content;
  /* Main Tool */
  /* Ratings */
}
main .tool_Container .tool-wrapper {
  background: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 10px;
  border-radius: 10px;
  /* For discount calculator */
}
main .tool_Container .tool-wrapper .input-holder {
  padding: 20px;
  background: rgba(193, 245, 255, 0.5254901961);
  border-radius: 6px;
}
main .tool_Container .tool-wrapper .input-group {
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
main .tool_Container .tool-wrapper input {
  width: 100%;
  padding: 16px;
  border: 1px solid #caf0f8;
  border-radius: 7px;
  font-size: 16px;
  outline: none;
  transition: 0.3s;
  -webkit-appearance: none;
          appearance: none;
  -moz-appearance: textfield;
}
main .tool_Container .tool-wrapper input:focus {
  border-color: #00b4d8;
}
main .tool_Container .tool-wrapper input::-webkit-outer-spin-button,
main .tool_Container .tool-wrapper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
main .tool_Container .tool-wrapper .error {
  border-color: red !important;
}
main .tool_Container .tool-wrapper .result-box {
  width: 100%;
  min-height: 50px;
  padding: 16px;
  border: 1px solid #caf0f8;
  border-radius: 8px;
  font-size: 16px;
  text-align: center;
  background: #f8f8f8;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
}
main .tool_Container .tool-wrapper .btn-holder {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
main .tool_Container .tool-wrapper .btn-holder button {
  width: 100%;
  padding: 16px;
  background: #00b4d8;
  color: #fff;
  border: none;
  border-radius: 7px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}
main .tool_Container .tool-wrapper .btn-holder button:hover {
  background: #00d5ff;
}
main .tool_Container .tool-wrapper .btn-holder .clear-btn {
  background: #b7b7b7;
}
main .tool_Container .tool-wrapper .btn-holder .clear-btn:hover {
  background: #aaaaaa;
}
main .tool_Container .tool-wrapper label {
  font-size: 14px;
  margin-top: 10px;
}
main .tool_Container .rating {
  display: flex;
  align-items: center;
  gap: 8px;
}
main .tool_Container .rating .stars {
  display: flex;
  gap: 2px;
  color: #f1bf00;
  font-size: 12px;
}
@media (max-width: 868px) {
  main {
    flex-direction: column-reverse;
    padding-top: 120px;
    gap: 50px;
    padding-bottom: 30px;
  }
  main .content {
    flex: 1;
  }
  main .tool_Container {
    flex: 1;
    position: static;
  }
}/*# sourceMappingURL=style.css.map */