:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Nunito", sans-serif;
  --nav-font: "Inter", sans-serif
}

:root {
  --background-color: #ffffff;
  --default-color: #212529;
  --heading-color: #2d465e;
  --accent-color: #0d83fd;
  --surface-color: #ffffff;
  --contrast-color: #ffffff
}

:root {
  --nav-color: #212529;
  --nav-hover-color: #0d83fd;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #212529;
  --nav-dropdown-hover-color: #0d83fd
}

.light-background {
  --background-color: #f3f9ff;
  --surface-color: #ffffff
}

.dark-background {
  --background-color: #0d83fd;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #409dfd;
  --contrast-color: #ffffff
}

:root {
  scroll-behavior: smooth
}

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font)
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: .3s
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font)
}


.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px;
  transition: all .5s;
  z-index: 997
}

.header .header-container {
  background: var(--surface-color);
  border-radius: 50px;
  padding: 8px 10px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, .1)
}

.header .logo {
  line-height: 1;
  padding-left: 5px
}

.header .logo img {
  max-height: 48px;
  margin-right: 8px
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 500;
  color: var(--heading-color)
}

@media (max-width:400px) {

  .header .logo h1 {
    font-size: 20px;
    margin: 0;
    font-weight: 500;
    color: var(--heading-color)
  }
}

@media (max-width:1200px) {
  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px
  }

  .header .logo {
    order: 0
  }

  .header .navmenu {
    order: 3
  }


}

@media (min-width:1200px) {
  .navmenu {
    padding: 0
  }

  .footer .footer-links ul li {
    padding: 10px 0;
    margin: 0 56px;
    display: flex;
    align-items: center
  }

  .i-github-header {
    font-size: 28px;
    color: #2f4f4f;
    width: 36px;
    height: 36px
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center
  }

  .navmenu li {
    position: relative
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 0 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: .3s
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 36px;
    line-height: 0;
    height: 36px;
    width: 36px;
    margin-left: 5px;
    transition: .3s
  }

  .navmenu li:last-child a {
    padding-right: 0
  }

  .navmenu .active,
  .navmenu .active:focus,
  .navmenu li:hover>a {
    color: var(--nav-hover-color)
  }
}

@media (max-width:1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color .3s
  }

  .footer .footer-links ul li {
    padding: 10px 0;
    margin: 0 24px;
    display: flex;
    align-items: center
  }



  .i-github-header {
    font-size: 28px;
    color: #2f4f4f;
    width: 46px;
    height: 46px;
    align-items: end
  }

  .navmenu {
    padding: 0;
    z-index: 9997
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: .3s;
    z-index: 9998;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1)
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: .3s
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 36px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: .3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%)
  }

  .i-github-header .bi.bi-github {
    font-size: 32px;
    width: 32px;
    height: 32px
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color)
  }

  .navmenu .active,
  .navmenu .active:focus,
  .navmenu a:hover {
    color: var(--nav-dropdown-hover-color)
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg)
  }

  .mobile-nav-active {
    overflow: hidden
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, .8);
    transition: .3s
  }

  .mobile-nav-active .navmenu>ul {
    display: block
  }
}

.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative
}

.footer .footer-top {
  padding-top: 6px
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font)
}

.footer h4 {
  font-size: 16px;
  font-weight: 700;
  position: relative;
  padding-bottom: 12px
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  justify-content: center
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1
}

.footer .footer-links ul a:hover {
  color: var(--accent-color)
}

.footer .footer-contact p {
  margin-bottom: 5px
}

.footer .copyright {
  padding: 12px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%)
}

.footer .copyright p {
  margin-bottom: 0
}

.footer .credits {
  margin-top: 8px;
  font-size: 13px
}

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 24px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all .4s
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color)
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px
}

@media screen and (max-width:768px) {
  [data-aos-delay] {
    transition-delay: 0 !important
  }
}

.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 170px 0 80px 0;
  text-align: center;
  position: relative
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px
}

.section,
section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip
}

@media (max-width:1199px) {

  .section,
  section {
    scroll-margin-top: 66px
  }
}

.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto
}

.section-title p {
  margin-bottom: 0
}

.hero {
  position: relative;
  padding-top: 160px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 50%, color-mix(in srgb, var(--accent-color), transparent 98%) 25%, transparent 50%)
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 90% 10%, color-mix(in srgb, var(--accent-color), transparent 92%), transparent 40%);
  pointer-events: none
}

.hero .hero-content {
  position: relative;
  z-index: 1
}

.hero-content .hero-buttons {
  display: flex;
  align-items: center
}

.hero-content .hero-buttons .img-wp {
  height: 96px;
  margin-right: 40px;
  align-items: center
}

.hero .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem
}

.hero-text {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem
}

.hero .hero-content h1 .accent-text {
  color: var(--accent-color)
}

@media (max-width:992px) {
  .hero .hero-content {
    text-align: center;
    margin-bottom: 3rem
  }

  .hero .hero-content h2 {
    font-size: 2.5rem
  }

  .hero .hero-content .hero-buttons {
    justify-content: center;
    transform: scale(0.7);
  }
}

@media (max-width:575px) {
  .hero .hero-content h1 {
    font-size: 2rem
  }
}

.hero .hero-image {
  position: relative;
  text-align: center;
  z-index: 1
}

.hero .hero-image img {
  max-width: 100%;
  transform: scale(1.4);
  height: auto
}

@keyframes float-badge {
  0% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }

  100% {
    transform: translateY(0)
  }
}

@keyframes experience-float {
  0% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }

  100% {
    transform: translateY(0)
  }
}

.features .nav-item {
  margin: 0;
  padding: 0 5px 0 0
}

.features .nav-item:last-child {
  padding-right: 0
}

.features .nav-link {
  background-color: none;
  color: var(--heading-color);
  padding: 10px 30px;
  transition: .3s;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  margin: 0
}

@media (max-width:468px) {
  .features .nav-link {
    padding: 8px 20px
  }
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px
}

.features .nav-link h4 {
  font-size: 14px;
  font-weight: 500;
  margin: 0
}

.features .nav-link:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%)
}

.features .nav-link:hover h4 {
  color: var(--accent-color)
}

.features .nav-link.active {
  background-color: var(--accent-color);
  border-color: var(--accent-color)
}

.features .nav-link.active h4 {
  color: var(--contrast-color)
}

.details .features-item {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  justify-content: center
}

.details .features-item+.features-item {
  margin-top: 24px
}

@media (max-width:640px) {
  .details .features-item+.features-item {
    margin-top: 40px
  }
}

.details .features-item h3 {
  font-weight: 700;
  font-size: 26px
}

.details .features-item ul {
  list-style: none;
  padding: 0
}

.details .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center
}

.details .features-item ul li:last-child {
  padding-bottom: 0
}

.details .features-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color)
}

.details .features-item p:last-child {
  margin-bottom: 0
}

.features-cards {
  --default-color: #555;
  --heading-color: #333
}

.features-cards .feature-box {
  height: 100%;
  padding: 40px 30px;
  border-radius: 10px
}

.features-cards .feature-box:hover {
  box-shadow: 0 0 25px rgba(0, 0, 0, .29);
  transition: all .5s ease
}

.features-cards .feature-box i {
  font-size: 44px;
  display: inline-block;
  line-height: 0;
  color: var(--accent-color);
  margin-bottom: 20px
}

.features-cards .feature-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0
}

.features-cards .feature-box p {
  font-size: 15px;
  margin-bottom: 0
}

.features-cards .feature-box.orange {
  background-color: #fff3e2
}

.features-cards .feature-box.orange i {
  color: #edb86e
}

.features-cards .feature-box.blue {
  background-color: #deedfd
}

.features-cards .feature-box.blue i {
  color: #20a5f8
}

.features-cards .feature-box.green {
  background-color: #d5f1e4
}

.features-cards .feature-box.green i {
  color: #48c88a
}

.features-cards .feature-box.red {
  background-color: #fdeded
}

.features-cards .feature-box.red i {
  color: #f28484
}

.terms-of-service .tos-header {
  margin-bottom: 60px;
  margin-top: 60px
}

.terms-of-service .tos-header .last-updated {
  display: inline-block;
  padding: 8px 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
  color: var(--accent-color);
  font-size: .95rem;
  margin-bottom: 20px
}

.terms-of-service .tos-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px
}

.terms-of-service .tos-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto
}

.terms-of-service .tos-content .content-section {
  margin-bottom: 50px;
  scroll-margin-top: 100px
}

.terms-of-service .tos-content .content-section:last-child {
  margin-bottom: 0
}

.terms-of-service .tos-content .content-section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--heading-color)
}

.terms-of-service .tos-content .content-section p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify
}

.terms-of-service .tos-content .content-section p:last-child {
  margin-bottom: 0
}

.terms-of-service .tos-content .content-section .info-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px
}

.terms-of-service .tos-content .content-section .info-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0
}

.terms-of-service .tos-content .content-section .info-box p {
  margin: 0;
  font-size: .95rem
}

.terms-of-service .tos-content .content-section .list-items {
  list-style: none;
  padding: 0;
  margin: 20px 40px
}

.terms-of-service .tos-content .content-section .list-items li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%)
}

.terms-of-service .tos-content .content-section .list-items li:last-child {
  margin-bottom: 0
}

.terms-of-service .tos-content .content-section .list-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color)
}

.terms-of-service .tos-content .content-section .alert-box {
  display: flex;
  gap: 20px;
  padding: 25px;
  background-color: var(--surface-color);
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
  margin-top: 20px
}

.terms-of-service .tos-content .content-section .alert-box i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0
}

.terms-of-service .tos-content .content-section .alert-box .alert-content h5 {
  font-size: 1.1rem;
  margin-bottom: 8px
}

.terms-of-service .tos-content .content-section .alert-box .alert-content p {
  margin: 0;
  font-size: .95rem
}

.terms-of-service .tos-content .content-section .prohibited-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 20px 0
}

@media (max-width:576px) {
  .terms-of-service .tos-content .content-section .prohibited-list {
    grid-template-columns: 1fr
  }
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background-color: #ffe4e1;
  border-radius: 12px
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item i {
  color: #dc3545;
  font-size: 1.2rem
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item span {
  font-size: .95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%)
}

.terms-of-service .tos-content .content-section .disclaimer-box {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 15px;
  margin-top: 20px
}

.terms-of-service .tos-content .content-section .disclaimer-box p {
  margin-bottom: 15px;
  font-weight: 500
}

.terms-of-service .tos-content .content-section .disclaimer-box ul {
  list-style: none;
  padding: 0;
  margin: 0
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: .95rem
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li:last-child {
  margin-bottom: 0
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color)
}

.terms-of-service .tos-content .notice-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px
}

.terms-of-service .tos-content .notice-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0
}

.terms-of-service .tos-content .notice-box p {
  margin: 0;
  font-size: .95rem
}

.terms-of-service .tos-contact {
  margin-top: 60px
}

.terms-of-service .tos-contact .contact-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px
}

@media (max-width:576px) {
  .terms-of-service .tos-contact .contact-box {
    flex-direction: column;
    text-align: center
  }
}

.terms-of-service .tos-contact .contact-box .contact-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.terms-of-service .tos-contact .contact-box .contact-icon i {
  font-size: 1.8rem;
  color: var(--contrast-color)
}

.terms-of-service .tos-contact .contact-box .contact-content {
  flex: 1
}

.terms-of-service .tos-contact .contact-box .contact-content h4 {
  font-size: 1.4rem;
  margin-bottom: 8px
}

.terms-of-service .tos-contact .contact-box .contact-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all .3s
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, .1)
}

@media print {
  .terms-of-service .tos-contact {
    display: none
  }

  .terms-of-service .content-section {
    page-break-inside: avoid
  }
}

/*  */