.how-it-works-section {
  background-color: #FAFBFF;
}
.how-it-works-section h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0F172A;
}
.how-it-works-section .subtitle {
  text-align: center;
  color: #475569;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 20px;
}
.how-it-works-section .steps-container {
  display: grid;
  gap: 40px;
  padding: 20px 0;
  margin: 0px auto;
  align-content: center;
}
.how-it-works-section .step {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 20px;
  align-items: start;
}
.how-it-works-section .step-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.how-it-works-section .step-icon svg {
  width: 30px;
  height: 30px;
  fill: #0066ff;
}
.how-it-works-section .step-content {
  flex: 1;
}
.how-it-works-section .step-number {
  font-size: 11px;
  color: #5C6A7B;
  margin-bottom: 5px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.how-it-works-section .step-title {
  font-size: 20px;
  font-weight: 700;
  color: #001F53;
  margin: 5px 0px 7px;
}
.how-it-works-section .step-description {
  color: #475569;
  line-height: 22px;
  font-weight: 400;
  font-size: 14px;
}
.how-it-works-section .step-description a {
  color: #0057FF;
  text-decoration: underline;
}
.how-it-works-section .step-description a:hover {
  color: #0450c2;
}
@media (min-width: 1440px) {
  .how-it-works-section .steps-container {
    width: 55%;
  }
}
@media (min-width: 1180px) {
  .how-it-works-section .steps-container {
    width: 58%;
  }
}
@media (max-width: 767px) {
  .how-it-works-section .steps-container .step {
    display: flex !important;
    flex-direction: column !important;
  }
}
@media (min-width: 1024px) and (max-width: 1179px) {
  .how-it-works-section .steps-container {
    width: 68%;
  }
}
@media (max-width: 768px) {
  .how-it-works-section .steps-container {
    width: 90%;
  }
  .how-it-works-section .subtitle {
    font-size: 14px;
  }
  .how-it-works-section .step-title {
    font-size: 18px !important;
    line-height: 26px;
  }
  .how-it-works-section .step-description {
    font-size: 12px !important;
  }
}
@media (min-width: 768px) and (max-width: 820px) {
  .how-it-works-section .steps-container {
    width: 90%;
  }
}
@media (min-width: 821px) and (max-width: 1024px) {
  .how-it-works-section .steps-container {
    width: 80%;
  }
}

.free-trail-section {
  background-color: #FAFBFF;
}
.free-trail-section .custom-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .free-trail-section .custom-container {
    flex-direction: column;
  }
}
.free-trail-section h2 {
  color: #0F172A;
  font-size: 32px;
  font-weight: 700;
  line-height: 42px;
  margin-bottom: 20px;
}
.free-trail-section .content-wrapper, .free-trail-section .image-wrapper {
  flex: 1 1 50%;
  padding: 10px;
  box-sizing: border-box;
}
@media (min-width: 1024px) {
  .free-trail-section .image-wrapper {
    flex: 1 1 59% !important;
  }
  .free-trail-section .content-wrapper {
    flex: 1 1 41% !important;
  }
}
.free-trail-section .content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.free-trail-section .content-wrapper p {
  color: #475569;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  margin-bottom: 30px;
}
.free-trail-section .content-wrapper .free-trail-buttons .blue-btn {
  background-color: #0057FF;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 9.5px 20px;
  margin-right: 12px;
}
.free-trail-section .content-wrapper .free-trail-buttons .blue-btn:hover {
  background-color: #0450c2;
}
.free-trail-section .content-wrapper .free-trail-buttons .outline-btn {
  outline: 1.5px solid #0057FF;
  color: #0057FF;
  padding: 9.5px 20px;
  font-weight: 600;
}
.free-trail-section .content-wrapper .free-trail-buttons .outline-btn:hover {
  background-color: #E0EAFF;
}
.free-trail-section .image-wrapper img {
  max-width: 100%; /* Make the image responsive */
  height: auto; /* Maintain aspect ratio */
}
@media (max-width: 767px) {
  .free-trail-section .content-wrapper,
  .free-trail-section .image-wrapper {
    flex: 1 1 100%;
  }
  .free-trail-section .image-wrapper {
    text-align: center;
  }
  .free-trail-section .content-wrapper h2 {
    font-size: 22px !important;
    text-align: center;
    line-height: 32px;
  }
  .free-trail-section .content-wrapper p {
    font-size: 12px !important;
    margin-bottom: 20px;
    text-align: center;
  }
  .free-trail-section .content-wrapper .free-trail-buttons {
    display: flex;
    flex-direction: column;
  }
  .free-trail-section .content-wrapper .free-trail-buttons .blue-btn {
    margin: 0px 0px 15px 0px !important;
  }
  .free-trail-section .content-wrapper .free-trail-buttons .blue-btn, .free-trail-section .content-wrapper .free-trail-buttons .outline-btn {
    font-size: 12px !important;
  }
}
@media (min-width: 768px) and (max-width: 880px) {
  .free-trail-section .content-wrapper h2 {
    font-size: 24px !important;
  }
  .free-trail-section .content-wrapper p {
    font-size: 13px !important;
  }
  .free-trail-section .content-wrapper .blue-btn, .free-trail-section .content-wrapper .outline-btn {
    font-size: 12px !important;
  }
}

body {
  font-family: "Open Sans";
}
body .custom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 30px;
}
@media (max-width: 767px) {
  body .custom-container {
    padding: 20px;
  }
}

.ui-block-section {
  padding: 70px;
  background-image: url(https://cdn.syncfusion.com/content/images/products/angularUIBlocks/github-section-background.svg);
  background-size: cover;
}
@media (max-width: 768px) {
  .ui-block-section {
    padding: 60px 20px;
  }
}
.ui-block-section .content {
  text-align: center;
}
.ui-block-section .content .subtitle {
  font-size: 16px;
  font-weight: 400;
  color: #D2D2D2;
  letter-spacing: 0.8px;
}
.ui-block-section h2 {
  font-weight: 700;
  color: #fff;
  font-size: 30px;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 44px;
  font-size: 30px;
}
@media (max-width: 767px) {
  .ui-block-section .buttons {
    display: flex;
    flex-direction: column;
  }
  .ui-block-section .buttons .github {
    margin: 0px 0px 25px 0px !important;
  }
}
.ui-block-section .buttons .github {
  background-color: #FFD018;
  padding: 8px 24px;
  color: #0F172A;
  font-weight: 600;
  border-radius: 6px;
  margin-right: 15px;
}
.ui-block-section .buttons .github:hover {
  background-color: #E1BD00;
}
.ui-block-section .buttons .github img {
  margin-right: 10px;
}
.ui-block-section .buttons .demo {
  color: #FFD018;
  font-weight: 600;
  outline: 1px solid #FFD018;
  border-radius: 4px;
  padding: 8px 24px;
}
.ui-block-section .buttons .demo .play-btn-support {
  width: 24px;
  height: 24px;
  background-image: url(https://cdn.syncfusion.com/content/images/products/angularUIBlocks/play-icon.svg);
  background-size: cover;
  margin-right: 10px;
  display: inline-flex;
  vertical-align: middle;
}
.ui-block-section .buttons .demo:hover {
  background-color: #FFD018;
  color: #0A162F !important;
}
.ui-block-section .buttons .demo:hover .play-btn-support {
  background-image: url(https://cdn.syncfusion.com/content/images/products/angularUIBlocks/black-playbutton.svg);
}

@media (max-width: 768px) {
  .ui-feature-blocks .custom-container .features {
    display: flex;
    flex-direction: column !important;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .ui-feature-blocks h2 {
    font-size: 26px !important;
    max-width: 400px;
    margin: 0px auto;
    line-height: 38px !important;
  }
  .ui-feature-blocks .description {
    max-width: 600px !important;
  }
  .ui-feature-blocks .features {
    padding: 20px 30px !important;
  }
}
.ui-feature-blocks h2 {
  text-align: center;
  font-size: 32px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0F172A;
}
@media (max-width: 767px) {
  .ui-feature-blocks h2 {
    font-size: 20px !important;
  }
}
.ui-feature-blocks .description {
  text-align: center;
  color: #475569;
  max-width: 760px;
  margin: 0px auto;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  .ui-feature-blocks .description {
    font-size: 14px !important;
  }
}
.ui-feature-blocks .features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  padding: 20px;
}
@media (min-width: 1024px) {
  .ui-feature-blocks .features {
    padding: 20px 0px;
  }
}
.ui-feature-blocks .features .feature h3 {
  font-size: 20px;
  font-weight: 700;
  color: #001F53;
  margin: 15px 0px 10px;
}
.ui-feature-blocks .features .feature p {
  color: #475569;
  line-height: 22px;
  font-weight: 400;
  font-size: 14px;
}
.ui-feature-blocks .features .feature p a {
  color: #0057FF;
  text-decoration: underline;
}
.ui-feature-blocks .features .feature p a:hover {
  color: #0450c2;
}
@media (max-width: 768px) {
  .ui-feature-blocks .features .feature h3 {
    font-size: 18px !important;
    line-height: 24px;
  }
  .ui-feature-blocks .features .feature p {
    font-size: 12px !important;
  }
}

.blazor-feature-block {
  background-image: url(https://cdn.syncfusion.com/content/images/products/angularUIBlocks/angular-feature-block-bg.svg);
  background-size: cover;
  padding: 20px 0px;
  /* Hide dropdown on larger screens */
}
.blazor-feature-block .selected-tick-icon {
  display: none;
}
@media (max-width: 767px) {
  .blazor-feature-block {
    background-image: unset !important;
    background-color: rgb(5, 26, 67);
  }
  .blazor-feature-block .dropdown-content .dropdown-item.selected {
    background: rgb(42, 59, 90);
  }
  .blazor-feature-block .dropdown-content .dropdown-item.selected .selected-tick-icon {
    position: absolute;
    left: 18px;
    top: 14px;
    display: inline-flex;
    float: left;
    width: 16px;
    height: 16px;
    background-image: url(https://cdn.syncfusion.com/content/images/products/angularUIBlocks/yellow-tick.svg);
    background-size: cover;
  }
}
.blazor-feature-block .tabs {
  position: sticky;
  top: 0;
  padding: 16px 0px;
  z-index: 2;
  background: #051A43;
  box-shadow: 0px 8px 16px 0px rgba(5, 26, 67, 0.8);
  transition: background-color 0.3s ease;
}
@media (max-width: 767px) {
  .blazor-feature-block .tabs {
    display: none !important;
  }
}
.blazor-feature-block .tabs .sticky-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 30px;
}
.blazor-feature-block .mobile-sticky-bar {
  position: sticky;
  top: 0;
  padding: 12px 0px;
  z-index: 2;
  background: #051A43;
  box-shadow: 0px 8px 16px 0px rgba(5, 26, 67, 0.8);
}
@media (min-width: 768px) {
  .blazor-feature-block .mobile-sticky-bar {
    display: none;
  }
}
@media (min-width: 1200px) {
  .blazor-feature-block .card-container .card, .blazor-feature-block .card-container .block-footer {
    width: 358px !important;
  }
  .blazor-feature-block .card-container .block-footer {
    margin-right: 0px !important;
  }
}
.blazor-feature-block .card-container .card {
  border-radius: 17px;
  overflow: hidden;
}
.blazor-feature-block .card-container .card img {
  transition: transform 0.3s ease-in-out;
}
.blazor-feature-block .card-container .card .block-footer {
  position: relative;
}
.blazor-feature-block .card-container .card:hover {
  box-shadow: 0px 6px 16px 4px rgba(179, 226, 236, 0.16);
  border-radius: 17px;
}
.blazor-feature-block .card-container .card:hover img {
  transform: scale(1.1);
}
.blazor-feature-block .dropdown-container {
  position: relative;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}
.blazor-feature-block .dropdown-button {
  width: 100%;
  padding: 10px 16px;
  background: rgb(5, 26, 67);
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 6px;
  letter-spacing: 0.5px;
  cursor: pointer;
}
.blazor-feature-block .dropdown-button .tick-icon {
  float: right;
}
.blazor-feature-block .dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgb(5, 26, 67);
  border: 1px solid #2a3344;
  border-radius: 8px;
  margin-top: 4px;
  z-index: 1000;
}
.blazor-feature-block .dropdown-content.show {
  display: block;
  overflow: hidden;
  text-align: center;
  box-shadow: 0px 6px 12px 3.66px rgba(127, 143, 175, 0.48);
}
.blazor-feature-block .dropdown-item {
  padding: 12px 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  letter-spacing: 0.5px;
  font-size: 14px;
  cursor: pointer;
}
.blazor-feature-block .dropdown-item:hover {
  background: rgb(42, 59, 90);
}
@media (min-width: 768px) {
  .blazor-feature-block .dropdown-container {
    display: none;
  }
}
@media (max-width: 767px) {
  .blazor-feature-block .custom-container {
    text-align: center;
  }
  .blazor-feature-block .custom-container .block-footer {
    text-align: left;
  }
  .blazor-feature-block .blazor-feature-block-description {
    margin-bottom: 20px !important;
  }
  .blazor-feature-block .tabs-container .tab {
    display: none;
  }
}
.blazor-feature-block .tooltip-support {
  position: relative;
}
.blazor-feature-block .anchor-link {
  color: #FFD018;
  font-size: 14px;
  float: right;
  margin-top: 8px;
  text-decoration: none;
  display: inline-flex;
  font-weight: 600;
}
@media (max-width: 767px) {
  .blazor-feature-block .anchor-link {
    display: none;
  }
}
.blazor-feature-block .anchor-link:hover {
  color: #E1BD00;
}
.blazor-feature-block .anchor-link .sf-icon-arrow-right {
  margin-left: 10px;
}
.blazor-feature-block .anchor-link.responsive {
  float: unset !important;
}
.blazor-feature-block .anchor-link.responsive .sf-icon-arrow-right {
  font-size: 20px !important;
}
.blazor-feature-block .anchor-link.responsive {
  display: none;
}
@media (max-width: 1024px) {
  .blazor-feature-block .anchor-link.responsive {
    display: inline-flex !important;
    margin-bottom: 30px !important;
  }
}
@media (max-width: 1024px) {
  .blazor-feature-block .card-container .card {
    max-width: 358px;
  }
}
@media (max-width: 767px) {
  .blazor-feature-block .card-container {
    display: flex !important;
    flex-direction: column;
    align-items: center;
  }
  .blazor-feature-block .card-container .block-footer {
    margin-right: 0px !important;
  }
  .blazor-feature-block .card-container .card img {
    width: 100% !important;
    height: 100% !important;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .blazor-feature-block {
    padding: 20px 0px 40px 0px !important;
    text-align: center;
  }
  .blazor-feature-block .card-container > :nth-child(odd) {
    justify-self: end; /* Align odd items (first column) to the end */
  }
  .blazor-feature-block .card-container > :nth-child(even) {
    justify-self: start; /* Align even items (second column) to the start */
  }
  .blazor-feature-block .card-container {
    padding: 20px 30px !important;
  }
  .blazor-feature-block .block-footer {
    text-align: left !important;
  }
  .blazor-feature-block .block-footer .block-name {
    font-size: 16px !important;
  }
  .blazor-feature-block .card img {
    width: 100% !important;
  }
  .blazor-feature-block .card .block-footer {
    margin-right: 0px !important;
  }
  .blazor-feature-block .blazor-feature-block-title {
    max-width: 480px;
    margin: 0px auto 20px;
    text-align: center !important;
    line-height: 39px !important;
  }
  .blazor-feature-block .blazor-feature-block-description {
    text-align: center !important;
    margin: 0px auto 10px !important;
  }
  .blazor-feature-block .tabs-container .tabs {
    text-align: center;
  }
  .blazor-feature-block .tabs-container .tabs .tab {
    font-size: 12px !important;
  }
  .blazor-feature-block .tabs-container .tabs .anchor-link {
    display: none !important;
  }
}
.blazor-feature-block .card img {
  border-top-right-radius: 17px;
  border-top-left-radius: 17px;
}
.blazor-feature-block .explore-button {
  color: #FFD018;
  letter-spacing: 0.2px;
  font-weight: 600;
  border: 1px solid #FFD018;
  padding: 10px 17px;
  display: block;
  text-align: center;
  margin: 30px auto 35px;
  max-width: 182px;
  border-radius: 6px;
  text-decoration: none;
}
.blazor-feature-block .explore-button:hover {
  color: #0A162F;
  background-color: #FFD018;
}
@media (max-width: 767px) {
  .blazor-feature-block .explore-button {
    font-size: 14px;
    max-width: 200px;
    padding: 14px 17px;
    margin: 40px auto 35px;
  }
}
.blazor-feature-block .card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  row-gap: 30px;
  -moz-column-gap: 32px;
       column-gap: 32px;
  min-height: 305px;
}
.blazor-feature-block .block-footer {
  background-color: #2A3B5A;
  padding: 22px 24px;
  margin-right: 0.5px;
  border-bottom-left-radius: 17px;
  border-bottom-right-radius: 17px;
  border: 1px solid #506183;
}
.blazor-feature-block .block-footer .block-name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
.blazor-feature-block .block-footer .blocks-count {
  color: #CBD2E0;
  background-color: #40506D;
  padding: 5px 10px;
  border-radius: 20px;
  float: right;
  font-size: 12px;
  border: 1px solid #CBD2E0;
}
.blazor-feature-block .tab-content {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
  top: 0;
  left: 0;
  width: 100%;
}
.blazor-feature-block .tab-content.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}
.blazor-feature-block .tabs-container .tabs {
  margin-bottom: 40px;
}
.blazor-feature-block .tabs-container .tabs .tab.active {
  background-color: #FFD018;
  color: #0A162F !important;
  border: 1.5px solid #FFD018;
  cursor: default;
}
.blazor-feature-block .tabs-container .tabs .tab {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: #fff;
  background-color: #0A162F;
  padding: 8px 24px;
  border-radius: 20px;
  outline: none;
  border: 1.5px solid #2D4573;
  margin: 0px 5px;
}
.blazor-feature-block .tabs-container .tabs .tab:hover {
  color: #FFD018;
  border: 1.5px solid #FFD018;
}
.blazor-feature-block .tabs-container .tab:first-of-type {
  margin-left: 0px !important;
}
.blazor-feature-block .blazor-feature-block-description {
  text-align: left;
  color: #D2D6DD;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  max-width: 887px;
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  .blazor-feature-block .blazor-feature-block-description {
    font-size: 16px !important;
    text-align: center;
  }
}
.blazor-feature-block .custom-container.first {
  padding-bottom: 0px !important;
}
.blazor-feature-block .custom-container.second {
  padding-top: 0px !important;
  position: relative;
}
@media (max-width: 767px) {
  .blazor-feature-block .custom-container.second {
    margin-top: 60px;
  }
}
.blazor-feature-block .blazor-feature-block-title {
  text-align: left;
  font-size: 32px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}
@media (max-width: 767px) {
  .blazor-feature-block .blazor-feature-block-title {
    font-size: 24px !important;
    text-align: center;
    line-height: 40px;
  }
}

@media (max-width: 767px) {
  .trusted-section .custom-container h2 {
    font-size: 14px !important;
    line-height: 26px !important;
  }
  .trusted-section .custom-container .mobile-trusted-section {
    display: block !important;
  }
  .trusted-section .desktop-section {
    display: none !important;
  }
}
.trusted-section .custom-container {
  padding-top: 0px !important;
  display: flex;
  flex-direction: column;
}
.trusted-section .custom-container .desktop-section {
  display: block;
}
.trusted-section .custom-container .mobile-trusted-section {
  display: none;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .trusted-section .custom-container {
    padding: 40px 30px;
  }
}
.trusted-section .custom-container img {
  margin: 0px auto;
}
.trusted-section h2 {
  font-size: 16px !important;
  text-align: center;
  font-weight: 600;
  margin-bottom: 15px;
  color: #595E71;
}

@font-face {
  font-family: "CustomExtraBold";
  src: url("https://cdn.syncfusion.com/content/images/products/angularUIBlocks/OpenSans-ExtraBold.ttf") format("truetype");
  font-weight: 800; /* Extra Bold weight */
  font-style: normal;
}
.blazor-banner-section {
  background-image: url(https://cdn.syncfusion.com/content/images/products/angularUIBlocks/angular-banner-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}
@media (min-width: 2470px) {
  .blazor-banner-section {
    background-image: url(https://cdn.syncfusion.com/content/images/products/angularUIBlocks/4k-gradient.png) !important;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .blazor-banner-section {
    background-image: url(https://cdn.syncfusion.com/content/images/products/angularUIBlocks/tab-gradient.png) !important;
  }
}
@media (max-width: 767px) {
  .blazor-banner-section {
    background-image: url(https://cdn.syncfusion.com/content/images/products/angularUIBlocks/mobile-background.png) !important;
  }
}
@media (min-width: 1025px) {
  .blazor-banner-section .blazor-banner-image img {
    width: 852px !important;
  }
}
@media (max-width: 380px) {
  .blazor-banner-section .supported-browsers img {
    margin-top: 15px !important;
  }
}
@media (max-width: 767px) {
  .blazor-banner-section .custom-container {
    flex-direction: column;
    padding: 50px 20px 20px !important;
  }
  .blazor-banner-section .custom-container .blazor-header {
    min-width: 90%;
    text-align: center;
  }
  .blazor-banner-section .custom-container .blazor-header h1 {
    line-height: 33px !important;
  }
  .blazor-banner-section .custom-container .blazor-header p {
    line-height: 26px !important;
  }
  .blazor-banner-section .custom-container .blazor-header .banner-buttons {
    display: flex;
    flex-direction: column;
  }
  .blazor-banner-section .custom-container .blazor-header .banner-buttons .github-banner {
    justify-content: center;
    margin: 0px 0px 20px 0px;
    align-items: center;
    font-size: 16px;
  }
  .blazor-banner-section .custom-container .blazor-header .banner-buttons .banner-online-demo {
    justify-content: center;
    margin-bottom: 15px;
    align-items: center;
    font-size: 16px;
  }
  .blazor-banner-section .custom-container .blazor-banner-image {
    max-width: 90% !important;
    margin: 20px 0px 0px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .blazor-banner-section .custom-container {
    padding: 50px 30px 20px !important;
    flex-direction: column;
  }
  .blazor-banner-section .custom-container .blazor-header {
    min-width: 90%;
    text-align: center;
  }
  .blazor-banner-section .custom-container .blazor-header h1 {
    line-height: 42px !important;
  }
  .blazor-banner-section .custom-container .blazor-header p {
    font-size: 14px;
  }
  .blazor-banner-section .custom-container .blazor-header .supported-browsers span {
    font-size: 12px;
  }
  .blazor-banner-section .custom-container .blazor-banner-image {
    max-width: 90% !important;
    margin: 20px 0px 0px;
  }
}
.blazor-banner-section .custom-container {
  padding: 60px 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.blazor-banner-section .custom-container .blazor-banner-image {
  flex: 1;
  max-width: 60%;
  position: relative;
}
.blazor-banner-section .custom-container .banner-buttons {
  display: flex;
  margin-bottom: 20px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .blazor-banner-section .custom-container .banner-buttons {
    justify-content: center;
  }
}
.blazor-banner-section .custom-container .banner-buttons .github-banner {
  color: #fff;
  background-color: #0057FF;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
  display: inline-flex;
  letter-spacing: 0.2px;
  text-decoration: none;
  margin-right: 20px;
}
.blazor-banner-section .custom-container .banner-buttons .github-banner:hover {
  background-color: #0050EB;
}
.blazor-banner-section .custom-container .banner-buttons .github-banner img {
  margin-right: 10px;
}
.blazor-banner-section .custom-container .banner-buttons .banner-online-demo {
  border: 1px solid #0057ff;
  padding: 9.2px 24px;
  border-radius: 6px;
  display: inline-flex;
  text-decoration: none;
  color: #0057ff;
  font-weight: 600;
  letter-spacing: 0.2px;
}
.blazor-banner-section .custom-container .banner-buttons .banner-online-demo:hover {
  background-color: #E0EAFF;
}
.blazor-banner-section .custom-container .banner-buttons .banner-online-demo img {
  margin-right: 10px;
}
.blazor-banner-section .custom-container .supported-browsers span {
  font-size: 13px;
  letter-spacing: 0.2px;
  color: #30364D;
  font-weight: 400;
  margin-right: 12px;
}
.blazor-banner-section .custom-container .blazor-header {
  flex: 1;
  max-width: 40%;
}
.blazor-banner-section .custom-container .blazor-header .sub-header {
  margin-left: 2px;
  color: #475569;
  font-size: 14px;
}
.blazor-banner-section .custom-container .blazor-header h1 {
  color: #0F172A;
  margin: 5px 0px 20px 0px;
  font-weight: 800;
  letter-spacing: 0.5px;
  font-family: "CustomExtraBold", sans-serif !important;
  font-size: 42px;
  line-height: 48px;
}
@media (min-width: 1090px) {
  .blazor-banner-section .custom-container .blazor-header h1 {
    font-size: 42px !important;
  }
}
.blazor-banner-section .custom-container .blazor-header h1 .highlight-words {
  color: #0057FF;
}
.blazor-banner-section .custom-container .blazor-header p {
  color: #64748B;
  font-size: 16px;
  display: block;
  margin-bottom: 30px;
}
.blazor-banner-section .custom-container .blazor-header p b {
  color: #475569;
}
.blazor-banner-section #lottie {
  background-image: url(https://cdn.syncfusion.com/content/images/FT/blue-hover-button.svg);
  background-color: rgba(255, 255, 255, 0);
  width: 165px;
  height: 165px;
  transform: translate3d(0, 0, 0);
  text-align: center;
  opacity: 1;
  position: absolute;
  top: 27%;
  left: 50%;
}
.blazor-banner-section #lottie #hoverElement {
  height: 88px;
  width: 88px;
  position: absolute;
  top: 23%;
  left: 24%;
  cursor: pointer;
  border-radius: 50%;
}
@media (max-width: 1024px) {
  .blazor-banner-section #lottie {
    left: 40%;
  }
}
@media (max-width: 992px) {
  .blazor-banner-section #lottie {
    width: 120px;
    height: 120px;
    left: 42%;
    top: 31%;
  }
  .blazor-banner-section #lottie #hoverElement {
    height: 55px;
    width: 55px;
    top: 26.7%;
    left: 27%;
  }
}
@media (max-width: 768px) {
  .blazor-banner-section #lottie {
    width: 100px;
    height: 100px;
  }
  .blazor-banner-section #lottie #hoverElement {
    height: 46px;
    width: 46px;
  }
}
@media (max-width: 600px) {
  .blazor-banner-section #lottie {
    width: 60px;
    height: 60px;
  }
  .blazor-banner-section #lottie #hoverElement {
    height: 26px;
    width: 26px;
  }
}
@media (max-width: 370px) {
  .blazor-banner-section #lottie {
    width: 40px;
    height: 40px;
  }
  .blazor-banner-section #lottie #hoverElement {
    height: 20px;
    width: 20px;
  }
}

.tooltip-container {
  position: absolute;
  background-color: #333;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  top: -3px;
  left: 20px;
  transition: opacity 0.3s ease;
  z-index: 1000; /* Ensure it appears above other elements */
  pointer-events: none;
}

.tooltip-container.active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 767px) {
  .new-faq-segment {
    padding-right: 15px;
    padding-left: 15px;
  }
  .new-faq-segment #faq .faq-list h4 .question-content .faq-question {
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 22px;
  }
}
.new-faq-segment {
  background-color: #FAFBFF !important;
  width: -webkit-fill-available;
}
.new-faq-segment #faq {
  background-color: #fff !important;
}
.new-faq-segment #faq .faq-list:hover {
  border: 1px solid #0057FF !important;
  box-shadow: 0px 4px 16px 0px rgba(0, 37, 110, 0.1607843137);
}
.new-faq-segment #faq .faq-list .answer-content p {
  font-family: Open Sans;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: #475569;
}
.new-faq-segment #faq .faq-list h4 .question-content .faq-question {
  font-family: Open Sans;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-align: left;
  color: #0F172A;
}

@media (max-width: 1024px) and (min-width: 768px) {
  #faq-segment .col-sm-12 {
    float: left !important;
  }
}
#faq h3 {
  font-size: 33px;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 50px;
}

@media (max-width: 1279px) and (min-width: 768px) {
  #faq h3 {
    font-size: 26px !important;
  }
}
@media (max-width: 1023px) and (min-width: 768px) {
  #faq h3 {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  #faq {
    padding: 40px 0px !important;
  }
  #faq h3 {
    font-size: 22px !important;
    margin-bottom: 35px;
    margin-top: 0px;
    line-height: 35px;
  }
}
#faq {
  padding: 60px 0 55px;
}

#faq h2 {
  margin-bottom: 50px;
}

#faq .faq-list {
  border: 1px solid #d7ebff;
  background: #fff;
  border-radius: 5px;
  margin-bottom: 15px;
}

#faq .faq-list h4 .question-content {
  cursor: pointer;
  font-size: 16px;
  color: #1a1a1a;
  letter-spacing: 0;
  line-height: 23px;
  font-weight: 600;
  padding: 10px 20px 20px;
  display: table;
  width: 100%;
}

#faq .faq-list h4 .question-content .tick-icon {
  display: table-cell;
  font-size: 14px;
  width: 10px;
  padding-right: 10px;
}

#faq .faq-list h4 .question-content .faq-question {
  width: 84%;
  display: table-cell;
}

#faq .faq-list h4 .question-content .permalink {
  display: table-cell;
  position: relative;
  top: 2px;
  left: 7px;
  padding-right: 7px;
}

#faq .faq-list h4 .question-content .faq-arrow-icon {
  float: right;
  display: table-cell;
  top: 8px;
  position: relative;
}

#faq .faq-list .answer-content {
  padding: 0 20px 25px;
  font-size: 14px;
  color: #585858;
  letter-spacing: 0;
  line-height: 25px;
}

#faq .faq-list .answer-content a {
  color: #0057ff !important;
  font-weight: 600;
  text-decoration: none;
  outline: 0 !important;
}

#faq .faq-list .answer-content ul {
  padding: 0 15px;
}

#faq .faq-list .answer-content ul li {
  padding-bottom: 5px;
  line-height: 23px;
}

#faq .faq-list h4 .collapsed .faq-arrow-icon .faq-expand-icon, #faq .faq-list h4 .faq-collapse-icon {
  display: block;
}

#faq {
  background-color: #fafafa;
}

#faq .faq-list h4 .collapsed .faq-arrow-icon .faq-expand-icon svg, #faq .faq-list h4 .faq-collapse-icon svg {
  opacity: 1;
}

#faq .faq-list h4 {
  margin-bottom: 0;
  margin-top: 0;
}

#faq .faq-list h4 .collapsed .faq-arrow-icon .faq-collapse-icon, #faq .faq-list h4 .faq-expand-icon {
  display: none;
}

#faq .faq-list .answer-content a:hover {
  color: #0450c2 !important;
}

#faq h2 {
  font-size: 33px;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
}

#faq-segment.pdf-framework, #faq-segment.excel-framework, #faq-segment.powerpoint-framework, #faq-segment.word-framework {
  padding: 0;
}

#faq-segment.pdf-framework #faq, #faq-segment.excel-framework #faq, #faq-segment.powerpoint-framework #faq, #faq-segment.word-framework #faq {
  background-color: #f4f8ff;
}

#faq-segment {
  padding: 0;
}

@media (max-width: 767px) {
  #faq .faq-list h4 .question-content {
    font-size: 14px;
    padding: 10px 20px 15px;
  }
}
@media (max-width: 1024px) {
  #faq .mobile-responsive {
    padding: 0px 30px;
  }
}
.back-to-top i,
.slider.controls--dark .flickity-prev-next-button:before {
  color: #252525;
}

.back-to-top {
  font-size: 14px;
  position: fixed;
  width: 52px;
  height: 52px;
  background: #fff;
  border-radius: 50%;
  text-align: center;
  right: 14.625px;
  bottom: 29.25px;
  padding-top: 12px;
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.04);
  z-index: 99;
  border: 1px solid #ececec;
  transition: 0.2s ease-out;
  -webkit-transition: 0.2s ease-out;
  -moz-transition: 0.2s ease-out;
}

.back-to-top .active:hover {
  transform: translate3d(0, -5px, 0);
  -webkit-transform: translate3d(0, -5px, 0);
}

.back-to-top:not(.active) {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  -webkit-transform: translate3d(0, 20px, 0);
  pointer-events: none;
}

.back-to-top {
  margin: 0 6px 50px 0;
}

@media (min-width: 768px) and (max-width: 840px) {
  .blazor-feature-block .tabs-container .tabs .tab {
    margin: 0px 5px 12px;
  }
}
@media (max-width: 350px) {
  .blazor-feature-block #data-visualization .block-footer {
    padding: 15px 10px;
  }
}/*# sourceMappingURL=BlazorUIBlock.css.map */