.error {
  color: red;
  display: none;
}
form {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
}
.recaptch-cover {
  padding: 0px;
  position: relative;
  background-color: transparent;
  max-width: 725px;
  width: 100%;
}
.recaptch-cover .recaptch-cover-header {
  padding: 10px;
  text-align: left;
  display: block;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.recaptch-cover .recaptch-cover-header label {
  line-height: 1.2;
}

.recaptch-cover .recaptch-cover-header button {
  background: var(--_colors---blue-400);
  color: var(--text-1);
  border-color: var(--_colors---blue-400);
  border-radius: 100px;
  padding: 0.75rem 1.75rem;
}
@media (max-width: 576px) {
  .recaptch-cover .recaptch-cover-header button {
    font-size: 17px;
  }
  .recaptch-cover .recaptch-cover-header label {
    font-size: 17px;
  }
}
.recaptch-cover .recaptch-cover-header button:active {
  background: transparent;
  border-color: var(--text-1);
}
.recaptch-cover .recaptch-cover-header button:hover {
  background: var(--_colors---software-dev);
  border-color: var(--text-1);
}
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
  border-color: #b7beff;
}
.form-control:focus {
  box-shadow: none;
  outline: none;
  background-color: #ece4e4;
  border-color: #b7beff;
  color: var(--text-1);
}
.loading-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 1111;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 50px;
  color: #ffffff;
  display: none;
}
form label {
  color: #000000;
}
.loading-overlay.active {
  display: flex;
}
#refreshCaptcha {
  cursor: pointer;
}
.form-control::placeholder {
  color: rgba(0, 0, 0, 0.5);
  opacity: 1; /* Firefox */
}
.form-control::-ms-input-placeholder {
  /* Edge 12 -18 */
  color: rgba(0, 0, 0, 0.5);
}

.math-captcha {
  text-align: center;
}

.math-expression {
  font-size: 24px;
  font-weight: bold;
  margin-top: 30px;
}

.answer-options {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.answer-option {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  border: 1px solid #3a74d4;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  background: transparent;
  color: var(--text-1);
}

.answer-option:hover {
  border-color: #3a74d4;
}

.answer-option.selected {
  background: #8eb8fd;
  color: white;
  border-color: #8eb8fd;
}

.error {
  color: red;
  display: none;
}

#submitBtn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.jconfirm {
  -webkit-perspective: 400px;
  perspective: 400px;
}
.jconfirm {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999999;
  font-family: inherit;
  overflow: hidden;
}
.jconfirm.jconfirm-modern .jconfirm-bg {
  background-color: slategray;
  opacity: 0.6;
}
.jconfirm .jconfirm-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.jconfirm .jconfirm-scrollpane {
  -webkit-perspective: 500px;
  perspective: 500px;
  -webkit-perspective-origin: center;
  perspective-origin: center;
  display: table;
  width: 100%;
  height: 100%;
}
.jconfirm .jconfirm-row {
  display: table-row;
  width: 100%;
}
.jconfirm .jconfirm-cell {
  display: table-cell;
  vertical-align: middle;
}
.jconfirm .jconfirm-holder {
  max-height: 100%;
  padding: 50px 0;
}
@media (min-width: 992px) {
  .justify-content-lg-center {
    justify-content: center !important;
  }
}
@media screen and (max-width: 820px) {
  form .form-group.col-md-6 {
    width: 100% !important;
  }
  form#contactForm {
    flex: 1 1 100%;
    flex-direction: column;
  }
}
@media (min-width: 768px) {
  .justify-content-md-center {
    justify-content: center !important;
  }
}
@media (min-width: 576px) {
  .justify-content-sm-center {
    justify-content: center !important;
  }
}

.jconfirm .jconfirm-box-container.jconfirm-no-transition {
  -webkit-transition: none !important;
  transition: none !important;
}
.jconfirm .jconfirm-box-container {
  -webkit-transition: -webkit-transform;
  transition: -webkit-transform;
  transition: transform;
  transition:
    transform,
    -webkit-transform;
}
.jconfirm.jconfirm-modern .jconfirm-box {
  background-color: white;
  -webkit-box-shadow:
    0 7px 8px -4px rgba(0, 0, 0, 0.2),
    0 13px 19px 2px rgba(0, 0, 0, 0.14),
    0 5px 24px 4px rgba(0, 0, 0, 0.12);
  box-shadow:
    0 7px 8px -4px rgba(0, 0, 0, 0.2),
    0 13px 19px 2px rgba(0, 0, 0, 0.14),
    0 5px 24px 4px rgba(0, 0, 0, 0.12);
  padding: 30px 30px 15px;
}
.jconfirm .jconfirm-box.jconfirm-type-red {
  border-top: solid 7px #e74c3c;
  -webkit-animation-name: type-red;
  animation-name: type-red;
}
.jconfirm .jconfirm-box.jconfirm-type-animated {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.jconfirm .jconfirm-box {
  opacity: 1;
  -webkit-transition-property: all;
  transition-property: all;
}
.jconfirm .jconfirm-box {
  background: white;
  border-radius: 4px;
  position: relative;
  outline: 0;
  padding: 15px 15px 0;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}
.jconfirm.jconfirm-modern .jconfirm-box div.jconfirm-closeIcon {
  color: rgba(0, 0, 0, 0.87);
  top: 15px;
  right: 15px;
}
.jconfirm .jconfirm-box div.jconfirm-closeIcon {
  height: 20px;
  width: 20px;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  opacity: 0.6;
  text-align: center;
  font-size: 27px !important;
  line-height: 14px !important;
  display: none;
  z-index: 1;
}

.jconfirm .jconfirm-box div.jconfirm-title-c {
  display: block;
  font-size: 22px;
  line-height: 20px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default;
  padding-bottom: 15px;
}

.jconfirm.jconfirm-modern .jconfirm-box div.jconfirm-title-c {
  color: rgba(0, 0, 0, 0.87);
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

.jconfirm.jconfirm-modern .jconfirm-box div.jconfirm-title-c .jconfirm-icon-c {
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition:
    transform 0.5s,
    -webkit-transform 0.5s;
  -webkit-transform: scale(0);
  transform: scale(0);
  display: block;
  margin-right: 0;
  margin-left: 0;
  margin-bottom: 10px;
  font-size: 69px;
  color: #aaa;
}

.jconfirm.jconfirm-modern.jconfirm-open
  .jconfirm-box
  .jconfirm-title-c
  .jconfirm-icon-c {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.jconfirm .jconfirm-box div.jconfirm-title-c .jconfirm-title {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: inherit;
  font-family: inherit;
  display: inline-block;
  vertical-align: middle;
}

.jconfirm .jconfirm-box div.jconfirm-content-pane {
  margin-bottom: 15px;
  height: auto;
  -webkit-transition: height 0.4s ease-in;
  transition: height 0.4s ease-in;
  display: inline-block;
  width: 100%;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
}

.jconfirm .jconfirm-box div.jconfirm-content-pane.no-scroll {
  overflow-y: hidden;
}
.jconfirm .jconfirm-box div.jconfirm-content-pane .jconfirm-content {
  overflow: auto;
}
.jconfirm.jconfirm-modern .jconfirm-box div.jconfirm-content {
  text-align: center;
  font-size: 15px;
  color: #777;
  margin-bottom: 25px;
}

.jconfirm.jconfirm-modern .jconfirm-box .jconfirm-buttons {
  text-align: center;
}
.jconfirm .jconfirm-box .jconfirm-buttons {
  padding-bottom: 11px;
}
.jconfirm .jconfirm-clear {
  clear: both;
}

.jconfirm .jconfirm-box .jconfirm-buttons button {
  display: inline-block;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-radius: 4px;
  min-height: 1em;
  -webkit-transition:
    opacity 0.1s ease,
    background-color 0.1s ease,
    color 0.1s ease,
    background 0.1s ease,
    -webkit-box-shadow 0.1s ease;
  transition:
    opacity 0.1s ease,
    background-color 0.1s ease,
    color 0.1s ease,
    background 0.1s ease,
    -webkit-box-shadow 0.1s ease;
  transition:
    opacity 0.1s ease,
    background-color 0.1s ease,
    color 0.1s ease,
    box-shadow 0.1s ease,
    background 0.1s ease;
  transition:
    opacity 0.1s ease,
    background-color 0.1s ease,
    color 0.1s ease,
    box-shadow 0.1s ease,
    background 0.1s ease,
    -webkit-box-shadow 0.1s ease;
  -webkit-tap-highlight-color: transparent;
  border: 0;
  background-image: none;
}

.jconfirm.jconfirm-modern .jconfirm-box .jconfirm-buttons button {
  font-weight: bold;
  text-transform: uppercase;
  -webkit-transition: background 0.1s;
  transition: background 0.1s;
  padding: 10px 20px;
}
.jconfirm .jconfirm-box .jconfirm-buttons button.btn-default {
  background-color: #ecf0f1;
  color: #000;
  text-shadow: none;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}

.mt-3 {
  margin-top: 1rem !important;
}
.math-captcha {
  text-align: center;
}
.math-captcha p {
  margin: 0 auto;
  display: block;
  text-align: center;
}
.footer-video-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 2;
  object-fit: cover;
}
.cs_fooer::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 3;
}
.cs_fooer {
  position: relative;
}
.cs_fooer_main {
  z-index: 4;
  position: relative;
}
.cs_fooer .container {
  position: relative;
  z-index: 4;
}

.cta-video-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 2;
  object-fit: cover;
}
.cs_cta {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cs_cta.cs_style_1 .cs_cta_in {
  z-index: 3;
}
.cs_cta.cs_style_1::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 2;
}
.cs_scrollup.cs_scrollup_show {
  bottom: 80px;
}
.cs_scrollup {
  right: 10px;
}
.bg-animation {
  position: relative;
}

.background-matrix {
  position: absolute;
}

.background-dot {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.cs_mission.cs_radius_5 {
  background: linear-gradient(
    135deg,
    rgba(255, 44, 23, 0.25),
    rgba(255, 255, 255, 0.05)
  );
  border-radius: 20px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  padding: 30px;
  transition: all 0.3s ease;
}

.cs_mission.cs_radius_5:hover {
  background: linear-gradient(
    135deg,
    rgba(255, 44, 23, 0.35),
    rgba(255, 255, 255, 0.1)
  );
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.switch-box .slider {
  background: #4d4949;
}

.cs_dark .switch-box .slider {
  background: #b7beff;
}
@media (min-width: 900px) {
  .different {
    position: relative;
    top: -120px;
    left: 44px;
  }
}
.feature-ecco .cs_fs_18 {
  font-size: 15px;
}
.list-icon {
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 30px;
  width: 25px;
}

@media (max-width: 767px) {
  .cs_footer_links {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .cs_footer_links li:not(:last-child)::after {
    display: none;
  }

  ul.nav-sublinks {
    margin-top: 0;
  }
}
@media screen and (min-width: 992px) {
  .cs_height_150 {
    height: 50px;
  }
}
@media screen and (min-width: 992px) {
  .cs_height_125 {
    height: 75px;
  }
}
@media screen and (min-width: 992px) {
  .cs_height_185 {
    height: 120px;
  }
}
