html {
  scroll-padding-top: 75px;
}

body {
  padding: 0;
  margin: 0;
  font-family: "Outfit", sans-serif;
  background-color: rgb(235, 238, 243);
  overflow-x: hidden;
}

input[type=button],
input[type=submit],
select {
  position: relative;
  appearance: auto;
  -webkit-appearance: none;
  -webkit-border-radius: 13px;
  border-radius: 13px;
}

/** Base input styling **/
input[type=text],
input[type=email],
input[type=password],
input[type=tel],
input[type=button],
input[type=number] {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  position: relative;
  font-size: 14px;
  transition: 0.1s ease-out;
  width: 100%;
  background-color: #fff;
  padding: 7px 12px;
  border: 1px solid rgb(211, 211, 211);
  border-radius: 3px;
  outline: none;
}

::placeholder {
  font-weight: 300 !important;
  color: #707070 !important;
}

fieldset {
  display: flex;
  flex-direction: column;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
fieldset input,
fieldset textarea,
fieldset button {
  box-sizing: inherit;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=tel]:focus,
input[type=button]:focus,
input[type=number]:focus {
  transition: 0.1s ease-in;
  border: 1px solid #000;
  box-shadow: 1px 1px rgba(0, 0, 0, 0.25);
}

textarea {
  font-family: "Outfit", sans-serif;
  transition: 0.1s ease-out;
  background-color: #fff;
  padding: 7px 12px;
  border: 1px solid rgb(211, 211, 211);
  border-radius: 3px;
  outline: none;
  font-size: 14px;
  height: 110px;
  resize: none;
  width: 100%;
}

textarea:focus {
  transition: 0.1s ease-in;
  border: 1px solid #000;
  box-shadow: 1px 1px rgba(0, 0, 0, 0.25);
}

button,
input[type=submit] {
  transition: 0.2s ease-out;
  box-shadow: 1px 1px rgba(61, 61, 61, 0.644);
  border: none;
  outline: none;
  background-color: #2a2a2a;
  border-radius: 9px;
  padding: 7px 20px;
  color: #fff;
  width: auto;
  font-size: 16px;
  font-weight: 300;
  font-family: "Outfit", sans-serif;
  cursor: pointer !important;
}

label {
  font-weight: 400;
}

select {
  border: 1px solid rgb(211, 211, 211);
}

button {
  border-radius: 10px;
}

button:hover {
  cursor: pointer;
  transition: 0.2s ease-in;
  box-shadow: 4px 4px rgba(0, 0, 0, 0.6);
}

*::before,
*::after {
  box-sizing: border-box;
}

p,
li,
ul,
span,
div,
a {
  font-weight: 300;
  font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500 !important;
}

h1 {
  font-size: 2.1em;
}

h2 {
  font-size: 1.8em;
}

.solution-text {
  font-size: inherit;
  font-weight: 500 !important;
  background-color: rgba(202, 207, 221, 0.6509803922);
  padding: 3px;
  min-width: 100px;
  text-align: center;
}

a {
  color: #000;
  text-decoration: none;
}

::-webkit-scrollbar {
  width: 9px;
}

select {
  width: 100%;
  margin: 5px 0;
  padding: 7px 12px;
  transition: 0.2s ease;
  border: 1px solid rgb(211, 211, 211);
}

/* Track */
::-webkit-scrollbar-track {
  background-color: rgba(235, 238, 243, 0);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background-color: rgb(59, 59, 59);
  border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background-color: rgb(36, 36, 36);
}

.main-wrap {
  width: 1200px;
  margin: 0 auto;
}

#success-message {
  margin: 1em;
  border: 1px solid rgb(211, 211, 211);
  border-left: 5px solid rgb(24, 167, 24);
  padding: 5px;
  background-color: #fff;
  font-size: 14px;
}

#error-message {
  margin: 1em;
  border: 1px solid rgb(211, 211, 211);
  border-left: 5px solid rgb(236, 71, 71);
  padding: 5px;
  background-color: #fff;
  font-size: 14px;
}

#success-alert {
  position: absolute;
  background-color: rgb(24, 167, 24);
  border-radius: 5px;
  left: 50%;
  top: 55px;
  max-width: 520px;
  z-index: 9999;
  padding: 0.5em 1em;
  transition: 0.2s ease-in;
  font-weight: 600;
  border: 2px solid rgb(24, 167, 24);
  opacity: 100%;
}
#success-alert i,
#success-alert span {
  color: rgb(255, 255, 255);
  margin: 5px;
}

#error-alert {
  position: absolute;
  background-color: rgb(236, 71, 71);
  border-radius: 5px;
  left: 50%;
  top: 55px;
  max-width: 320px;
  z-index: 9999;
  padding: 0.5em 1em;
  transition: 0.2s ease-in;
  font-weight: 600;
  border: 2px solid rgb(236, 71, 71);
  opacity: 100%;
}
#error-alert i,
#error-alert span {
  color: rgb(255, 255, 255);
  margin: 5px;
}

#local-success-alert,
#local-success-alert-event,
#local-success-alert-client,
#local-success-alert-service {
  background-color: rgb(255, 255, 255);
  border-radius: 5px;
  max-width: 320px;
  z-index: 9999;
  padding: 0.5em 1em;
  transition: 0.2s ease-in;
  font-weight: 600;
  border: 2px solid rgb(24, 167, 24);
  opacity: 100%;
  margin: 0 auto;
}
#local-success-alert i,
#local-success-alert-event i,
#local-success-alert-client i,
#local-success-alert-service i {
  color: rgb(24, 167, 24);
  margin: 5px;
}

#local-error-alert,
#local-error-alert-event,
#local-error-alert-client,
#local-error-alert-service {
  margin: 0 auto;
  background-color: rgb(255, 255, 255);
  border-radius: 5px;
  max-width: 320px;
  z-index: 9999;
  padding: 0.5em 1em;
  transition: 0.2s ease-in;
  font-weight: 600;
  border: 2px solid rgb(236, 71, 71);
  opacity: 100%;
}
#local-error-alert i,
#local-error-alert-event i,
#local-error-alert-client i,
#local-error-alert-service i {
  color: rgb(236, 71, 71);
  margin: 5px;
}

.ui-widget-header,
.ui-state-default,
.ui-button {
  background: #b9cd6d;
  border: 1px solid #b9cd6d;
  color: #ffffff;
  font-weight: bold;
}

.toc {
  position: -webkit-sticky;
  position: sticky;
  top: 70px;
  right: 0;
  min-width: 250px;
  width: 20%;
  height: fit-content;
}

#toc ul {
  list-style-type: none;
  padding: 10px;
  background-color: #fff;
  border: 1px solid rgb(211, 211, 211);
}

#toc ul li {
  border-radius: 5px;
  margin-bottom: 5px;
  display: flex;
}

#toc ul li a {
  width: 100%;
  top: 45px;
  font-size: 12px;
  padding: 5px 8px;
  border-radius: 5px;
  margin-bottom: 5px;
}

/* Style for Highlighting */
.activetoc {
  border-radius: 5px;
  color: #fff;
  background-color: rgb(39, 39, 39);
}

.features-section {
  display: flex;
  flex-direction: column;
  max-width: 900px;
  margin: 30px auto;
  text-align: center;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}
.features-section .features-slider {
  display: flex;
  position: relative;
  height: 185px;
  box-sizing: border-box;
}
.features-section .feature-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  padding: 20px 0;
}
.features-section .feature-slide p {
  font-size: 18px;
}
.features-section .feature-slide h3 {
  font-size: 22px;
}
.features-section .feature-slide.active {
  opacity: 1;
}
.features-section .feature-slide i {
  color: #000000;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
  font-size: 2.5rem;
}
.features-section .slide-top {
  display: flex;
  justify-content: center;
  align-items: center;
  height: fit-content;
}
.features-section .slide-top h3 {
  margin: 0;
  padding: 0;
}
.features-section .slide-top i {
  margin: 0 5px;
  font-size: 20px;
}
@media (max-width: 600px) {
  .features-section .features-section {
    margin: 20px;
    padding: 15px;
  }
  .features-section .features-slider {
    height: 260px;
  }
  .features-section .slider-nav .nav-link {
    padding: 6px 12px;
  }
}

/* Responsive Design */
.slider-nav {
  box-sizing: border-box;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  padding: 10px;
  border-bottom: 1px solid rgb(211, 211, 211);
}

.slider-nav .nav-link {
  font-size: 12px;
  color: #666;
  text-decoration: none;
  cursor: pointer;
  padding: 6px 10px;
  text-align: center;
  border-radius: 5px;
  transition: color 0.3s ease, background 0.3s ease;
  box-sizing: border-box;
}

.slider-nav .nav-link.active {
  color: #1d1d1d;
  background: #f0f0f0;
  font-weight: bold;
}

.slider-nav .nav-link:hover {
  color: #414141;
  background: #e0e0e0;
}

.register-container {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  box-sizing: border-box;
}
.register-container .form-group {
  width: 400px;
}
.register-container .register-intro {
  max-width: 50%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.register-container .register-intro h1 {
  font-size: 1.8em;
  text-align: center;
}
.register-container .register-intro .signup-features {
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid rgb(211, 211, 211);
  margin: 1em;
  display: flex;
  flex-direction: column;
}
.register-container .register-intro .signup-features ul {
  padding: 1em;
}
.register-container .register-intro .signup-features ul li {
  list-style: none;
  font-size: 1.2em;
  padding: 0.5em;
}
.register-container .register-intro .signup-features ul li i {
  margin: 5px;
}

/* CONTENT STYLINGS */
.content-main {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.content-main .post-main {
  display: flex;
  height: max-content;
  padding: 10px;
  width: 100%;
}
.content-main .post-main .body {
  width: 100%;
}
.content-main .post-main code {
  text-wrap: auto;
  width: 100%;
}
.content-main .post-main .main {
  box-sizing: border-box;
  line-height: 28px;
  width: 100%;
}
.content-main .post-main .main * {
  box-sizing: inherit;
}
.content-main .post-main .main a:not(.anchor) {
  background-color: #d4dcff;
  padding: 1px 4px;
  transition: 0.1s ease;
  border-radius: 2px;
}
.content-main .post-main .main a:not(.anchor):hover {
  background-color: #2b2b2b;
  color: #fff;
  transition: 0.1s ease;
}
.content-main .post-main .title {
  background-color: #1d1d1d;
  box-sizing: border-box;
  border-radius: 1em;
  padding: 1em 2em;
  margin: 10px;
  box-shadow: 3px 3px rgb(65, 65, 65), 6px 6px rgb(102, 102, 102);
}
.content-main .post-main .title h1,
.content-main .post-main .title span {
  color: #fff;
}
.content-main .post-main .main {
  padding: 0.5em;
  border-radius: 5px;
}
.content-main .post-main .body {
  margin-right: 2em;
}
.content-main .post-main pre {
  width: 100%;
  height: fit-content;
  padding: 0.5em;
  background-color: #252525;
  margin: 0.5em;
  border-radius: 5px;
  border: 1px solid rgb(0, 0, 0);
}
.content-main .post-main pre code {
  color: #fff;
}
.content-main .post-main h1,
.content-main .post-main h2,
.content-main .post-main h3,
.content-main .post-main h4,
.content-main .post-main h5,
.content-main .post-main h6 {
  font-weight: 600;
}
.content-main .post-main h2 {
  font-size: 1.5em;
}
.content-main .post-main p {
  padding: 0.3em;
  font-size: 18px;
}
.content-main .post-main a {
  font-size: 18px;
  text-decoration: underline;
}
.content-main .post-main .anchor {
  text-decoration: none;
}
.content-main .post-main ul,
.content-main .post-main li {
  margin: 5px;
  font-size: 18px;
}
.content-main .post-main #snip {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1.5em auto;
  padding: 1em;
  border-radius: 5px;
  border: 1px solid rgb(211, 211, 211);
  border-left: 5px solid rgb(77, 90, 165);
  background-color: #fff;
  max-width: 75%;
}
.content-main .post-main img {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 95%;
  border-radius: 5px;
  border: 1px solid rgb(211, 211, 211);
  margin: 2em auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}
.content-main .post-main #notice {
  display: flex;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  background-color: #fff;
  border: 1px solid rgb(211, 211, 211);
  padding: 1em;
  font-size: 18px;
  border-radius: 10px;
  box-sizing: border-box;
  width: 95%;
  margin: 0 auto;
}
.content-main .post-main #notice i {
  width: 45px;
}
.content-main .resources-main {
  margin: 1em;
  display: flex;
  width: 100%;
  justify-content: center;
}
.content-main .categories {
  margin: 1em;
  display: flex;
  flex-direction: column;
}
.content-main .categories .category {
  border-radius: 5px;
  padding: 7px 12px;
  margin: 0.25em;
}
.content-main .categories .active {
  cursor: pointer;
  background-color: rgba(211, 211, 211, 0.623);
}
.content-main .posts {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 1em;
}
.content-main .posts .post {
  background-color: #fff;
  margin: 0.5em;
  border-radius: 5px;
  border: 1px solid rgb(211, 211, 211);
  padding: 1em;
}
.content-main .posts .post a {
  font-size: 1.2em;
}
.content-main .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0.5em;
}
.content-main .pagination .step-links a {
  padding: 3px 7px;
  border-radius: 5px;
}
.content-main .pagination .current {
  margin: 20px 0;
}

.cta-1 {
  background-color: #1d1d1d;
  padding: 1em;
  border-radius: 1em;
  width: 80%;
  margin: 0 auto;
  color: #fff;
}
.cta-1 .cta-1-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 90%;
  padding: 2em;
}
.cta-1 .cta-1-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 70%;
}
.cta-1 #cta-1-lead {
  font-size: 1.7em;
}
.cta-1 #cta-button {
  color: #111111;
  font-size: 1.2em;
  background-color: rgb(255, 255, 255);
  border-radius: 7px;
  padding: 7px 20px;
  transition: 0.2s ease;
  margin: 0 5px;
}
.cta-1 #cta-button:hover {
  transition: 0.2s ease;
  box-shadow: 3px 3px #dfdfdf;
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 80px;
  height: 34px;
}

.switch input {
  display: none;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #bbbaba;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #272727;
}

input:checked + .slider:before {
  -webkit-transform: translateX(46px);
  -ms-transform: translateX(46px);
  transform: translateX(46px);
}

/*------ ADDED CSS ---------*/
.on {
  display: none;
}

.on,
.off {
  color: white;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  font-size: 10px;
  font-family: Verdana, sans-serif;
}

.on {
  left: 30%;
}

.off {
  left: 70%;
}

input:checked + .slider .on {
  display: block;
}

input:checked + .slider .off {
  display: none;
}

/*--------- END --------*/
/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/** Home **/
#content {
  margin-top: 70px;
}

.no-events {
  padding: 0.5em;
  background-color: #fff;
  text-align: center;
  width: 80%;
  border-radius: 5px;
  border: 1px solid rgb(211, 211, 211);
  margin: 0 auto;
  font-size: 1em;
}

.main-break {
  background-color: #252525;
  width: 100%;
  margin: 5em 0;
}
.main-break h1 {
  text-align: center;
  color: #fff;
  padding: 1em;
}

.cta-button-2 {
  margin-top: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-button-2 button {
  font-size: 1.2em;
  border-radius: 7px;
  padding: 7px 20px;
  margin: 0 5px;
}

.coming-soon {
  padding: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.coming-soon .top {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  width: fit-content;
  border-radius: 10px;
  border: 1px solid rgb(211, 211, 211);
  padding: 0.5em;
}
.coming-soon .top h3,
.coming-soon .top i {
  margin: 0.5em;
}
.coming-soon .top i {
  font-size: 1.3em;
}
.coming-soon .mailing-list-container {
  width: 100%;
  margin: 0;
  padding: 1em;
}
.coming-soon h4 {
  text-align: center;
}
.coming-soon button {
  margin: 0 !important;
}

.solutions-main {
  display: flex;
  flex-direction: column;
  padding: 1em;
}
.solutions-main .solutions-individual {
  margin: 0 auto 25px auto;
}
.solutions-main .solutions-individual img {
  border: 1px solid rgb(211, 211, 211);
  max-width: 900px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}
.solutions-main h1 {
  text-align: center;
}
.solutions-main .solution-cta {
  margin: 0 auto;
}
.solutions-main .solution-cta a {
  transition: 0.1s ease-out;
  box-shadow: 1px 1px rgba(61, 61, 61, 0.644);
  border: none;
  outline: none;
  padding: 7px 15px;
  color: #fff;
  width: auto;
  font-size: 20px;
  font-weight: 300;
  font-family: "Outfit", sans-serif;
  cursor: pointer !important;
  margin: 0.5em;
  background-color: #2a2a2a;
  border-radius: 7px;
  padding: 7px 20px;
}
.solutions-main .solution-cta a:hover {
  cursor: pointer;
  transition: 0.1s ease-in;
  box-shadow: 3px 3px rgba(0, 0, 0, 0.5);
}
.solutions-main .solutions-intro {
  text-align: center;
  font-size: 24px;
  font-weight: 300;
  padding: 1em;
  border-radius: 25px;
}
.solutions-main .solutions-features {
  display: flex;
  justify-content: space-around;
}
.solutions-main .solutions-features .feature {
  min-width: 20%;
  max-width: 20%;
  margin: 10px;
  padding: 1em;
  border-radius: 5px;
}
.solutions-main .solutions-features .feature .feature-head {
  display: flex;
  align-items: center;
}
.solutions-main .solutions-features .feature h4 {
  padding: 3px;
  margin-right: 1em;
}

.features-main {
  padding: 2em 0;
}

.features-main h2 {
  font-size: 1.8em;
  margin-bottom: 1em;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns */
  gap: 1.5em;
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-grid li {
  padding: 1em;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  text-align: center;
}

.features-grid .li-top {
  font-size: 1.2em;
  font-weight: 600;
  margin-bottom: 0.5em;
}

.features-grid .li-top i {
  margin-right: 0.5em;
}

.features-grid .li-bottom {
  font-size: 1em;
  font-weight: 400;
  color: #333;
}

.solution-text::after {
  content: "|";
  animation: blink 0.7s infinite;
  margin-left: 2px;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}
/* Responsive Design */
/* Responsive design: Stack into a single column on smaller screens */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr; /* 1 column on small screens */
  }
}
.why-choose-main {
  display: none;
}
.why-choose-main .why-choose-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.step-img-container {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  align-items: center;
  width: 100%;
  position: relative;
}

.step-img-container .block-1,
.step-img-container .block-2 {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 90%;
  height: fit-content;
  margin: 1em;
  border-radius: 2px;
}

.step-img-container .left,
.step-img-container .right {
  max-width: 41%;
  margin: 1em;
}

.step-img-container h2 {
  margin-bottom: 0.5em; /* Space between heading and paragraph */
  padding-bottom: 0.5em;
}

.step-img-container p {
  font-size: 1.2em; /* Slightly smaller than heading */
  font-weight: 300; /* Lighter weight for contrast */
  line-height: 1.4; /* Improved readability */
  margin: 10px 0; /* Reset default margins */
}

.step-img-container img {
  width: 100% !important;
  max-width: 350px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .step-img-container .block-1,
  .step-img-container .block-2 {
    flex-direction: column; /* Stack on smaller screens */
    width: 90%;
  }
  .step-img-container .left,
  .step-img-container .right {
    flex-direction: column;
    max-width: 100%; /* Full width on mobile */
    margin: 0.5em 0;
  }
  .step-img-container h1 {
    font-size: 1.5em;
  }
  .step-img-container p {
    font-size: 1em;
  }
}
.use-cases {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  border-radius: 1em;
  padding: 1em;
  margin: 2em 1em;
}
.use-cases h1 {
  width: 100%;
}
.use-cases .row {
  width: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}
.use-cases .use-case {
  width: 40%;
  margin: 0.5em;
  padding: 0.5em;
  display: flex;
  align-items: center;
}
.use-cases .use-case .use-case-text {
  display: flex;
  flex-direction: column;
}
.use-cases .use-case h2 {
  font-size: 1.25em;
}
.use-cases .use-case i {
  min-width: 55px;
  min-height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5;
  margin: 1em;
  font-size: 1.5em;
}

.home-main .home-lead {
  margin-top: 7vh;
  margin-bottom: 7vh;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}
.home-main .home-lead .home-left {
  width: 48%;
}
.home-main .home-lead .home-left #landing-intro {
  font-size: 1.5em;
}
.home-main .home-lead .home-left .cta-buttons {
  margin-top: 50px;
  display: flex;
  align-items: center;
}
.home-main .home-lead .home-left .cta-buttons button {
  font-size: 20px;
  margin-right: 15px;
}
.home-main .home-lead .home-right {
  width: 48%;
}
.home-main .home-lead .home-right img {
  margin: 1em;
  width: 95%;
  height: 95%;
}

.main-features {
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-features .feature {
  min-width: 20%;
  max-width: 20%;
  margin: 10px;
  padding: 1em;
}
.main-features .feature .feature-head {
  display: flex;
  align-items: center;
}
.main-features .feature h4 {
  padding: 3px;
  margin-right: 1em;
}

.mailing-list-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 2em;
  margin: 1.2em 0;
}
.mailing-list-container span {
  text-align: center;
  margin: 1em;
  font-size: 1.3em;
}
.mailing-list-container input:focus .mailing-list-entry {
  box-shadow: 2px 2px rgb(36, 36, 36);
}
.mailing-list-container .mailing-list-entry {
  border: 1px solid rgb(211, 211, 211);
  border-radius: 5px;
  display: flex;
  align-items: center;
  position: relative;
  background-color: #fff;
  padding: 5px;
  width: 35em;
  max-width: 90%;
}
.mailing-list-container .mailing-list-entry input {
  border: none;
}
.mailing-list-container .mailing-list-entry input:focus {
  outline: none;
  box-shadow: none;
  border: none;
}
.mailing-list-container .mailing-list-entry button {
  box-shadow: none;
  border-radius: 5px;
  min-width: 130px;
  border: none;
}
.mailing-list-container .mailing-list-entry button i {
  margin: 0 3px;
}
.mailing-list-container .mailing-list-entry button:hover {
  box-shadow: none;
}
.mailing-list-container .mailing-list-entry:has(input:focus) {
  border: 1px solid #000;
  box-shadow: 1px 1px rgba(0, 0, 0, 0.25);
}

.error {
  display: flex;
  justify-content: center;
  align-items: center;
}
.error .error-container {
  box-sizing: border-box;
  margin: 2em;
  width: 90%;
  max-width: 800px;
  background-color: #fff;
  border-radius: 25px;
  border: 1px solid rgb(211, 211, 211);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  padding: 2em;
}
.error .error-container img {
  max-height: 300px;
  max-width: 100%;
}

.response {
  display: none;
  margin: 1em;
}

/** Footer **/
footer {
  opacity: 0.8;
  margin: 25px auto;
  border-top: 1px solid rgb(211, 211, 211);
  width: 1000px;
}
footer .footer-container {
  display: flex;
  flex-direction: column;
}
footer .footer-container .footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}
footer .footer-container .footer-top .socials i {
  font-size: 24px;
}
footer .footer-container .footer-middle {
  display: flex;
  justify-content: space-between;
  padding: 20px;
}
footer .footer-container .footer-middle .footer-head {
  margin-bottom: 5px;
}
footer .footer-container .footer-middle .footer-head span {
  font-weight: 500;
}
footer .footer-container .footer-middle .footer-body-list {
  display: flex;
  flex-direction: column;
}
footer .footer-container .footer-middle .footer-body-list a {
  margin: 1px 0;
}
footer .footer-container .footer-bottom {
  display: flex;
  justify-content: center;
}
footer .footer-logo {
  display: flex;
  align-items: center;
}
footer .footer-logo #footer-title {
  font-family: "Pacifico", cursive;
  font-size: 20px;
  margin-left: 10px;
}
footer .footer-logo a {
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .footer-links a {
  margin-left: 10px;
}
footer .footer-powered-by {
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .footer-powered-by .powered-by {
  margin: 20px;
}
footer .footer-powered-by .powered-by a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
footer .footer-powered-by a img,
footer .footer-powered-by span {
  font-family: "Outfit", sans-serif;
  margin: 5px;
}
footer .footer-powered-by #footer-title {
  font-weight: 500;
}

/** Base/Navigation **/
.nav-wrap {
  width: 1200px;
  height: 100%;
  margin: 0 auto;
  clear: both;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav {
  z-index: 999;
  width: 100%;
  position: fixed;
  height: 70px;
  top: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: rgb(235, 238, 243);
  border-bottom: 1px solid rgb(211, 211, 211);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.02);
  /* Fade in */
}
nav a {
  margin-left: 10px;
  display: block;
  position: relative;
  padding: 1px 0;
  text-decoration: none;
  color: #000;
}
nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 3px;
  width: 100%;
  height: 0.01em;
  background-color: #000000;
  opacity: 0;
  transition: opacity 200ms, transform 200ms;
}
nav a:hover::after,
nav a:focus::after {
  opacity: 0.75;
  transform: translate3d(0, 0.1em, 0);
}
nav #logo:hover::after,
nav #logo:focus::after {
  opacity: 0;
}
nav .nav-logo {
  display: flex;
  align-items: center;
  font-family: "Pacifico", cursive;
  font-size: 30px;
  cursor: pointer;
}
nav .nav-logo span {
  padding: 8px;
  color: #2b2b2b;
  font-size: 30px;
}
nav .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40%;
  height: 100%;
}
nav .nav-links ul {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  list-style: none;
}
nav .nav-links ul li {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}
nav .nav-links ul li a {
  margin: 0;
}
nav .nav-links .solutions-link .solutions-dropdown {
  display: none;
  position: absolute;
  background-color: #fff;
  margin-top: 180px;
  border: 1px solid rgb(211, 211, 211);
  padding: 0.5em;
  border-radius: 5px;
  z-index: 999;
}
nav .nav-links .solutions-link .solutions-dropdown .col-1 a,
nav .nav-links .solutions-link .solutions-dropdown .col-2 a {
  margin: 0.5em;
  padding: 0.1em;
}
nav .nav-links .solutions-link .solutions-dropdown .col-1 a i,
nav .nav-links .solutions-link .solutions-dropdown .col-2 a i {
  margin-right: 5px;
}
nav .nav-links .solutions-link i {
  font-size: 12px;
  margin: 5px 0 0 5px;
}
nav .nav-links .solutions-link:hover .fa-caret-up {
  transform: rotate(180deg);
  transition: transform 0.1s ease;
}
nav .nav-links .solutions-link:hover .solutions-dropdown {
  display: flex; /* Show dropdown on hover */
}
nav .nav-login {
  display: flex;
  align-items: center;
  margin-right: 10px;
}
nav .nav-login #nav-btn {
  border-radius: 3px;
  padding: 5px 13px;
  text-decoration: none;
  transition: 0.1s ease;
  color: #fff;
  background-color: rgb(36, 36, 36);
  margin-left: 25px;
}
nav .nav-login #nav-btn:hover,
nav .nav-login #nav-btn:focus {
  transition: 0.2s ease;
  box-shadow: 3px 3px rgba(31, 31, 31, 0.75);
}
nav .nav-login #nav-btn:hover::after,
nav .nav-login #nav-btn:focus::after {
  opacity: 0;
}

.widget-container {
  box-sizing: border-box;
  background-color: #2a2a2a;
  border-radius: 100px;
  padding: 30px;
  width: 90%;
  margin: 50px auto;
  color: #fff;
}
.widget-container h1 {
  text-align: center;
  margin-bottom: 20px;
}

.nav-links .solutions-link, .nav-links .resources-link, .nav-links .directory-link {
  height: fit-content;
  padding: 3px 10px;
}
.nav-links .solutions-link a, .nav-links .resources-link a, .nav-links .directory-link a {
  display: flex;
  align-items: center;
  height: fit-content;
  box-sizing: border-box;
}
.nav-links .solutions-link a i, .nav-links .resources-link a i, .nav-links .directory-link a i {
  margin: 1px 4px;
  padding: 0;
}

.scroll-content {
  height: 60px;
  overflow: hidden;
  position: relative;
}

.scroll-item {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s ease;
  text-align: center;
}

.scroll-item i {
  font-size: 1.5em;
  margin-right: 10px;
}

.scroll-item span {
  font-size: 1.3em;
}

#booking-link {
  box-sizing: border-box;
  margin: 7px 0;
}
#booking-link #url-prefix {
  box-sizing: border-box;
  margin: 12px 0;
}
#booking-link #your-link-prefix {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  border: 1px solid rgb(211, 211, 211);
}
#booking-link #your-link-prefix #prefix {
  padding: 5px 3px 5px 5px;
  background-color: rgba(216, 216, 216, 0.6862745098);
  color: #000000;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
#booking-link #your-link-prefix #your-link {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  width: 100%;
  background-color: #fff;
}

.mobile-dropdown,
.burger {
  display: none;
}

/** Login **/
.auth-wrapper {
  box-sizing: border-box;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px 0;
}
.auth-wrapper h3 {
  text-align: center;
}
.auth-wrapper form {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
.auth-wrapper form input {
  width: 100%;
  box-sizing: border-box;
}
.auth-wrapper form p {
  margin: 0;
}
.auth-wrapper p {
  text-align: center;
}

.pw-reset ul {
  display: none;
}

/** Register **/
.errorlist,
.messages {
  display: none;
  background-color: #fff;
  border: 1px solid rgb(211, 211, 211);
  list-style: none;
  padding: 5px;
  max-width: 400px;
  margin: 10px auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}
.errorlist li,
.messages li {
  margin: 0 !important;
  padding: 5px;
  list-style: none;
  font-size: 14px;
  font-weight: 400;
}
.errorlist li i,
.messages li i {
  color: red;
  margin-right: 5px;
  font-size: 14px;
}

.auth-wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 50px 0;
}
.auth-wrapper form {
  display: flex;
  flex-direction: column;
}
.auth-wrapper form button {
  margin-top: 10px;
}
.auth-wrapper form br {
  line-height: 0;
}
.auth-wrapper form input {
  box-sizing: border-box;
}
.auth-wrapper form .helptext ul {
  background-color: #fff;
  border: 1px solid rgb(211, 211, 211);
  padding: 15px 30px;
  list-style-type: square;
  border-radius: 5px;
}
.auth-wrapper form .helptext li {
  font-size: 14px;
  margin-bottom: 5px;
}
.auth-wrapper form #id_password1_helptext {
  display: none;
}

/** Date Selector **/
.date-wrapper {
  width: 1100px;
  clear: both;
  margin: 0 auto;
  padding: 50px 0;
}
.date-wrapper p {
  margin: 8px 0;
}

.date-select-form {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.date-select-form label {
  display: none;
}

#frontend-lead {
  margin: 15px;
}
#frontend-lead #username {
  font-weight: 400;
  font-size: 24px;
}

.roadmap-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.roadmap-container h1 {
  padding: 0.5em;
  text-align: center;
  border-bottom: 6px dotted rgb(211, 211, 211);
}
.roadmap-container .plan {
  max-width: 800px;
  display: flex;
  align-items: center;
  border: 1px solid rgb(211, 211, 211);
  padding: 0.5em;
  border-radius: 5px;
  background-color: #fff;
  margin: 1em;
}
.roadmap-container .plan .plan-left {
  padding: 1em;
  text-align: center;
  min-width: 20%;
  max-width: 200px;
  border-right: 1px solid rgb(211, 211, 211);
}
.roadmap-container .plan .plan-right {
  padding: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1em auto;
}
.roadmap-container .plan .plan-right span {
  font-size: 1.2em;
}
.roadmap-container .blue {
  box-shadow: 7px 7px rgb(183, 179, 235);
}
.roadmap-container .dark {
  box-shadow: 7px 7px rgba(26, 24, 56, 0.767);
}
.roadmap-container .green {
  box-shadow: 7px 7px rgba(93, 184, 100, 0.884);
}
.roadmap-container .pink {
  box-shadow: 7px 7px rgba(204, 115, 197, 0.884);
}
.roadmap-container img {
  opacity: 0.6;
  margin: 1em auto;
  max-width: 500px;
}
.roadmap-container .omni-teams {
  display: flex;
  flex-direction: column;
}
.roadmap-container .omni-teams span {
  border: 1px solid rgb(211, 211, 211);
  font-size: 1.5em;
  border-radius: 5px;
  text-align: center;
  padding: 1em;
  background-color: #fff;
}

.pp,
.tos {
  max-width: 800px;
  padding: 1em;
  margin: 1em auto;
}
.pp h1,
.tos h1 {
  font-size: 2em;
}
.pp li,
.tos li {
  margin: 0.3em;
}

.active {
  display: flex;
}

.inactive {
  display: none;
}

.day div {
  color: rgba(0, 0, 0, 0.6431372549);
  font-weight: 500;
}

.plans-main {
  padding: 2em;
}

.plans-container {
  max-width: 1200px;
  margin: 0 auto;
}

.plans-container h2 {
  font-size: 2em;
  margin-bottom: 1em;
  text-align: center;
}

.pricing-toggle-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 0.9em;
}

.pricing-toggle-container span {
  margin: 0 0.5em;
}

.pricing-switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
}

.pricing-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.pricing-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000; /* Black when off */
  transition: 0.4s;
  border-radius: 20px;
}

.pricing-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .pricing-slider {
  background-color: #fff; /* White when on */
  border: 1px solid #000; /* Black border to maintain contrast */
}

input:checked + .pricing-slider:before {
  transform: translateX(20px);
  background-color: #000; /* Black dot when on */
}

.plans-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  border: 1px solid rgb(211, 211, 211);
  border-radius: 5px;
}

.plans-table th,
.plans-table td {
  padding: 1em;
  text-align: center;
  border: 1px solid rgb(211, 211, 211);
  font-size: 1em;
}

.plans-table th {
  font-weight: 600;
}

.plans-table th .plan-price {
  display: inline-block;
  font-weight: 400;
  font-size: 0.9em;
  margin-top: 0.5em;
}

.plans-table th .coming-soon {
  display: block;
  font-weight: 400;
  font-size: 0.8em;
  margin-top: 0.5em;
  font-style: italic;
}

.plans-table td {
  font-weight: 400;
}

.plans-table .section-header {
  text-align: left;
  font-weight: 600;
  background-color: #202020;
  color: #fff;
  font-size: 1.1em;
}

.plans-table .section-toggle {
  text-align: right;
  background-color: #fafafa;
}

.plans-table .checkmark {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #000;
  color: #fff;
  border-radius: 50%;
  line-height: 20px;
  text-align: center;
  font-size: 0.8em;
}

.plans-table tbody tr td:first-child {
  text-align: left;
  font-weight: 500;
}

.plans-table tbody tr:not(.section-header) {
  border-top: 1px dashed rgb(211, 211, 211);
}

/* Mobile-specific styling */
@media (max-width: 768px) {
  .widget-container {
    width: 100%;
    border-radius: 10px;
    padding: 20px;
  }
  .solutions-intro {
    font-size: 18px !important;
  }
  .footer-middle {
    flex-direction: column;
    width: 90%;
    margin: 0 auto;
  }
  .plans-table {
    display: block; /* Change table to block for stacking */
  }
  .plans-table thead {
    display: none; /* Hide the header row on mobile */
  }
  .plans-table tbody {
    display: block;
  }
  .plans-table tr {
    display: block;
    margin-bottom: 1.5em;
    border: 1px solid rgb(211, 211, 211);
    border-radius: 5px;
  }
  .plans-table td {
    display: block;
    text-align: left;
    padding: 0.5em 1em;
    border: none;
    border-bottom: 1px dashed rgb(211, 211, 211);
    font-size: 0.9em; /* Slightly smaller font size on mobile */
  }
  /* Style the first cell (feature name) as a header */
  .plans-table td:first-child {
    font-weight: 600;
    border-bottom: 1px solid rgb(211, 211, 211);
  }
  /* Add plan names as pseudo-elements before each cell (except the first) */
  .plans-table td:not(:first-child):before {
    content: attr(data-plan);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5em;
    color: #333;
  }
  /* Assign plan names to each cell using data attributes */
  .plans-table tr td:nth-child(2) {
    border-top: 1px solid rgb(211, 211, 211);
  }
  .plans-table tr td:nth-child(2):before {
    content: "Free Tier";
  }
  .plans-table tr td:nth-child(3):before {
    content: "Standard Tier";
  }
  .plans-table tr td:nth-child(4):before {
    content: "Pro Tier";
  }
  /* Hide the toggle on mobile and ensure monthly pricing is shown */
  .pricing-toggle-container {
    display: none;
  }
  .plan-price.monthly-price {
    display: inline-block !important;
  }
  .plan-price.annual-price {
    display: none !important;
  }
  /* Adjust checkmark size for mobile */
  .plans-table .checkmark {
    width: 18px;
    height: 18px;
    line-height: 18px;
    font-size: 0.7em;
  }
  /* Hide the section-toggle cell on mobile */
  .plans-table .section-toggle {
    display: none;
  }
  /* Ensure the section header spans the full width */
  .plans-table .section-header {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.5em;
    font-size: 1em;
    box-sizing: border-box;
  }
}
.get-started-plans {
  display: flex;
  justify-content: center;
  margin: 2em;
}
.get-started-plans a {
  font-size: 1.2em;
  background-color: #000;
  padding: 7px 12px;
  border-radius: 3px;
  color: #fff;
}

@media only screen and (max-width: 1200px) {
  footer {
    width: 95% !important;
  }
  .main-wrap {
    width: 95%;
  }
  #frontend-lead {
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .date-wrapper {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .features-main ul {
    padding: 0;
  }
  .step-img-container .left,
  .step-img-container .right {
    max-width: 90% !important;
  }
  .step-img-container .block-1 {
    flex-direction: column;
  }
  .step-img-container .block-2 {
    flex-direction: column-reverse;
  }
  .plans-container {
    flex-direction: column;
    align-items: center;
  }
  .plans-container .plan {
    width: 90%;
    max-width: 500px;
  }
  .tooltip {
    display: none;
  }
  .roadmap-container .plan {
    flex-direction: column;
  }
  .roadmap-container .plan .plan-left {
    width: 100%;
    border: none;
    border-bottom: 1px solid rgb(211, 211, 211);
  }
  .roadmap-container img {
    width: 100%;
    max-width: 100%;
  }
  h1 {
    font-size: 2em;
  }
  .solutions-main {
    padding: 0.5em;
  }
  .solutions-main img {
    max-width: 95%;
  }
  .solutions-main .solutions-features {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .solutions-main .solutions-features .feature {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 75%;
    min-width: 50%;
  }
  .main-features {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .main-features .feature {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 75%;
    min-width: 50%;
  }
  .use-cases .row {
    flex-direction: column;
  }
  .use-cases .row .use-case {
    width: 100%;
  }
  .book-info-container {
    width: 100%;
  }
  .book-inner-container {
    flex-direction: column;
    justify-content: center;
  }
  .book-inner-container .info-right,
  .book-inner-container .info-left {
    width: auto;
    margin: 3px;
  }
  .book-inner-container .info-left {
    padding: 2px 4px;
  }
  .book-inner-container .info-right {
    border-top: 1px solid rgb(211, 211, 211);
  }
  .book-inner-container .book-info-availability {
    padding: 0.5em 0;
    float: left;
  }
  .cta-1 {
    padding: 1em;
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .cta-1 .cta-1-inner {
    padding: 0;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
  }
  .cta-1 .cta-1-left,
  .cta-1 .cta-1-right {
    display: flex;
    text-align: center;
    justify-content: center;
    margin: 10px auto;
    max-width: 100%;
    width: 100%;
  }
  .content-main .post-main {
    width: 100%;
    padding: 0;
  }
  .content-main .post-main .body {
    margin: 0;
  }
  .content-main .post-main .title h1 {
    font-size: 28px;
  }
  .content-main .posts {
    width: 95%;
    border-right: none;
  }
  .content-main .categories {
    display: none;
  }
  .toc {
    display: none;
  }
  .body {
    margin-right: 0;
  }
  .mailing-list-container {
    padding: 0 !important;
  }
  .footer-top {
    flex-direction: column;
  }
  footer {
    overflow-x: hidden;
    flex-direction: column;
  }
  footer .footer-container {
    flex-direction: column;
  }
  footer div {
    margin-bottom: 10px;
  }
  footer .footer-links {
    display: flex;
    flex-direction: column;
  }
  footer .footer-links a {
    margin: 5px;
  }
  .main-wrap {
    width: 88%;
  }
  .main-wrap .home-lead {
    margin: 0 !important;
    flex-direction: column !important;
  }
  .main-wrap .home-lead .home-left,
  .main-wrap .home-lead .home-right {
    width: 100%;
  }
  nav .nav-links {
    display: none;
  }
  nav .nav-login {
    display: none;
  }
  .auth-wrapper,
  .register-wrapper {
    width: 90%;
  }
  .auth-wrapper .register-container,
  .register-wrapper .register-container {
    flex-direction: column-reverse;
    width: 100%;
  }
  .auth-wrapper .register-container .register-intro,
  .register-wrapper .register-container .register-intro {
    max-width: 98%;
  }
  .auth-wrapper .register-container .register-intro ul,
  .register-wrapper .register-container .register-intro ul {
    margin: 0;
    padding: 10px;
  }
  .auth-wrapper .register-container .register-intro h1,
  .register-wrapper .register-container .register-intro h1 {
    margin: 5px;
    padding: 5px;
  }
  .auth-wrapper form,
  .register-wrapper form {
    width: 90% !important;
  }
  .burger {
    width: 55px;
    height: 70px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3px;
    transition: all 0.5s ease;
    margin: 1em;
    z-index: 1000;
  }
  .burger-strip {
    transition: all 0.5s ease;
  }
  .strip div {
    height: 2px;
    border-radius: 2px;
    background: rgb(56, 56, 56);
    margin: 11px;
    transition: all 0.55s cubic-bezier(0.075, 0.82, 0.165, 1);
    width: 30px;
  }
  .burger.active .burger-strip-2 div:first-child {
    transform: translateY(13px) rotate(45deg);
  }
  .burger.active .burger-strip-2 div:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-strip-2 div:last-child {
    transform: translateY(-13px) rotate(-45deg);
  }
  .mobile-dropdown {
    display: none;
  }
  .burger.active .mobile-dropdown {
    display: block;
    position: fixed;
    left: 0;
    top: 70px;
    width: 100%;
    height: auto;
    background-color: rgb(235, 238, 243);
    border-bottom: 1px solid rgb(200, 200, 200);
    border-top: 1px solid rgb(200, 200, 200);
  }
  .mobile-dropdown ul {
    list-style: none;
    margin: 15px;
    padding: 0;
  }
  .mobile-dropdown ul li {
    margin: 20px 0;
  }
  .mobile-dropdown ul li a {
    font-size: 20px;
  }
  .nav #nav-btn {
    border-radius: 3px;
    padding: 5px 13px;
    text-decoration: none;
    transition: 0.1s ease;
    color: #fff;
    background-color: rgb(36, 36, 36);
    margin-left: 25px;
  }
  .nav #nav-btn:hover,
  .nav #nav-btn:focus {
    transition: 0.2s ease;
    box-shadow: 3px 3px rgba(31, 31, 31, 0.75);
  }
  .nav #nav-btn:hover::after,
  .nav #nav-btn:focus::after {
    opacity: 0;
  }
  .date-wrapper {
    padding: 20px 0;
  }
  #frontend-form {
    box-sizing: border-box;
    margin: 10px;
  }
}
.solutions-slider-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  height: 520px;
}

.solutions-slider {
  display: flex;
  height: 100%;
  transition: transform 0.3s ease; /* Smooth manual sliding */
}

.solutions-slide {
  height: 90%;
  width: auto;
  object-fit: contain;
  flex: 0 0 auto;
  margin: 0 10px;
  border: 1px solid #ddd;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 1em;
}

.progress-container {
  width: 100%;
  height: 10px;
  background: #e0e0e0;
  margin-top: 10px;
  position: relative;
  cursor: pointer;
}

.progress-bar {
  height: 100%;
  width: 0; /* Will be updated dynamically */
  background: #4a90e2; /* Blue, adjust color as needed */
  transition: width 0.1s linear; /* Smooth progress updates */
}

.auth-wrapper {
  /* Black border for selected plan */
}
.auth-wrapper .stripe {
  box-sizing: border-box;
}
.auth-wrapper .stripe input {
  box-sizing: inherit;
  margin: 7px 0;
}
.auth-wrapper .stripe .StripeElement {
  border: 1px solid rgb(211, 211, 211);
  background-color: #fff;
  border-radius: 3px;
  padding: 7px 12px;
  transition: 0.1s ease-in;
}
.auth-wrapper .stripe .StripeElement--focus {
  transition: 0.1s ease-in;
  border: 1px solid #000;
  box-shadow: 1px 1px rgba(0, 0, 0, 0.25);
}
.auth-wrapper .stripe .btn {
  width: 100%;
}
.auth-wrapper .form-field label {
  display: block;
  margin-bottom: 3px;
}
.auth-wrapper .input-wrapper {
  position: relative;
  box-sizing: border-box;
}
.auth-wrapper .form-field input.invalid {
  border-color: red;
}
.auth-wrapper .exclamation {
  display: none;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: red;
  font-weight: bold;
  font-size: 16px;
}
.auth-wrapper .error {
  color: red;
  font-size: 14px;
  display: block;
  margin-top: 5px;
}
.auth-wrapper .honeypot-field {
  display: none;
}
.auth-wrapper #submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.auth-wrapper .plans-toggle {
  display: flex;
  gap: 10px;
  margin-bottom: 7px;
}
.auth-wrapper .plans-toggle div {
  padding: 10px;
  cursor: pointer;
  border: 1px solid rgb(211, 211, 211);
  background-color: #fff;
  border-radius: 10px;
}
.auth-wrapper .plans-toggle div.selected {
  background: #333333;
  color: #fff;
}
.auth-wrapper .plan {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  border: 1px solid rgb(211, 211, 211);
  margin-bottom: 10px;
  cursor: pointer;
  background-color: #fff;
  box-sizing: border-box;
  border-radius: 10px;
}
.auth-wrapper .plan.selected {
  border: 3px solid #000;
  padding: 13px;
}
.auth-wrapper .plan:hover {
  background: rgb(247, 247, 247);
}
.auth-wrapper .plan-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  right: 0;
  min-width: 100px;
}
.auth-wrapper .plan-price span {
  text-align: center;
  font-size: 14px;
}
.auth-wrapper .plan-info {
  padding: 5px;
  box-sizing: border-box;
  max-width: fit-content;
}
.auth-wrapper .plan-info h3 {
  margin: 0;
}
.auth-wrapper .save-notice {
  width: fit-content;
  display: flex;
  padding: 3px 7px;
  margin-bottom: 7px;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
}
.auth-wrapper .save-notice i {
  color: #1e9201;
  margin: 5px;
}
.auth-wrapper .save-notice span {
  font-size: 14px;
}
.auth-wrapper .plan-title {
  align-items: center;
  display: flex;
}
.auth-wrapper .plan-tag {
  background-color: #1c7705;
  color: #fff;
  font-size: 12px;
  margin: 0 5px;
  width: fit-content;
  padding: 2px 6px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: fit-content;
}
.auth-wrapper .plan-tag span {
  font-size: 12px;
}
.auth-wrapper .register-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.auth-wrapper .register-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}
.auth-wrapper .register-content h3 {
  text-align: left;
}
.auth-wrapper #selected-text {
  margin: 5px;
}
.auth-wrapper #selected-text span {
  font-weight: 500;
}
.auth-wrapper #payment-notice {
  width: 90%;
  text-align: center;
  font-size: 12px;
  margin: 5px 0;
}
.auth-wrapper #payment-notice a {
  font-weight: 500;
  font-size: 12px;
}

@media (max-width: 768px) {
  .register-content {
    flex-direction: column;
  }
  .plan-selection,
  .form-wrapper {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .solutions-slider-container {
    max-width: 100%;
    height: 200px;
  }
  .solutions-slide {
    height: 85%;
    margin: 0 5px;
  }
  .progress-container {
    height: 8px;
  }
}
.ics-converter-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border-radius: 8px;
}
.ics-converter-container #ics-help-txt {
  border: 1px solid rgb(211, 211, 211);
  padding: 10px;
  box-sizing: border-box;
  max-width: 400px;
  border-radius: 10px;
  background-color: #fff;
  font-size: 14px;
}
.ics-converter-container #contentArea {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.ics-converter-container form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.ics-converter-container .drop-zone {
  border: 2px dashed #5a5a5a;
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  min-height: 70px;
}
.ics-converter-container .drop-zone:hover {
  background-color: #f8f9fa;
  border-color: #1a1a1a;
}
.ics-converter-container .drop-zone.dragover {
  background-color: #e9ecef;
  border-color: #0056b3;
}
.ics-converter-container .error {
  color: #dc3545;
  margin-top: 10px;
  display: none;
}
.ics-converter-container .events-container {
  width: 100%;
  margin-top: 20px;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 5px;
  max-height: 50vh;
  overflow-y: scroll;
  background-color: #fff;
  box-sizing: border-box;
}
.ics-converter-container .event-header, .ics-converter-container .event-row {
  display: flex;
  border-bottom: 1px solid #ddd;
}
.ics-converter-container .event-header {
  font-weight: bold;
}
.ics-converter-container .event-header .event-cell {
  background-color: #202020;
  color: white;
  padding: 5px;
  box-sizing: border-box;
  font-weight: 500;
  border-radius: 5px;
}
.ics-converter-container .event-row:nth-child(even) {
  background-color: #f2f2f2;
}
.ics-converter-container .event-cell {
  width: 20%;
  max-width: 20%;
  box-sizing: border-box;
  flex: 1;
  padding: 8px;
  text-align: left;
  border-right: 1px solid #ddd;
  font-size: 12px;
  max-height: 75px;
  overflow: scroll; /* Enables vertical scrolling */
  scrollbar-width: none; /* Firefox: hides scrollbar */
  -ms-overflow-style: none; /* IE and Edge: hides scrollbar */
}
.ics-converter-container .event-cell::-webkit-scrollbar {
  display: none;
}
.ics-converter-container .event-cell:last-child {
  border-right: none;
}
.ics-converter-container .no-events {
  padding: 8px;
  text-align: center;
  color: #555;
}
.ics-converter-container .action-buttons {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.home-main .home-lead {
  gap: 4%;
}
.home-main .home-lead .home-left h1 {
  color: #000;
  font-size: clamp(2.15rem, 3.2vw, 3.4rem);
  line-height: 1.14;
  margin: 0 0 0.65em;
  max-width: 720px;
}
.home-main .home-lead .home-left #landing-intro {
  color: #000;
  display: block;
  line-height: 1.35;
  max-width: 680px;
}
.home-main .home-lead .home-right img {
  display: block;
  margin: 0 auto;
  max-height: 520px;
  object-fit: contain;
}

.solution-text {
  background-color: rgba(202, 207, 221, 0.6509803922);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  color: #000;
  display: inline;
  min-width: 0;
  padding: 0 4px;
}

.solution-text::after {
  content: none;
}

.widget-container {
  background-color: #2a2a2a;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
  color: #fff;
  margin: 4.5em auto;
  max-width: 1040px;
  padding: 2.25em;
  width: 90%;
}
.widget-container h2 {
  color: #fff;
  font-size: 1.8em;
  margin: 0 0 0.8em;
}
.widget-container .scroll-content {
  height: 44px;
}
.widget-container .scroll-item {
  gap: 10px;
}
.widget-container .scroll-item i,
.widget-container .scroll-item span {
  color: #fff;
}
.widget-container .scroll-item span {
  font-size: 1.15em;
}

.main-features {
  align-items: stretch;
  gap: 1em;
  margin: 1.5em 0 3.5em;
}
.main-features .feature {
  background-color: #fff;
  border: 1px solid rgb(211, 211, 211);
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
  flex: 1 1 0;
  margin: 0;
  max-width: none;
  min-width: 0;
  padding: 1.25em;
}
.main-features .feature-head {
  justify-content: space-between;
  gap: 0.75em;
}
.main-features h4 {
  color: #000;
  line-height: 1.2;
  margin: 0 0 0.75em;
  padding: 0;
}
.main-features i {
  color: #2a2a2a;
}
.main-features span {
  color: #333;
  line-height: 1.45;
}

@media (max-width: 768px) {
  .home-main .home-lead {
    gap: 2em;
  }
  .home-main .home-lead .home-left h1 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }
  .widget-container {
    border-radius: 8px;
    padding: 1.5em;
    width: 100%;
  }
  .main-features {
    flex-direction: column;
  }
}

/*# sourceMappingURL=style.css.f70f0237fe5f.map */
