@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  --primary-color: #124e40;
  --white: #ffffff;
  --black: #000000;
  --secondary-dark: #25202c;
  --secondary-color: #42394f;
  --theme-color: #09080b;
  --theme-2: #04855a;
  --green: #49b97a;
  --theme-3: #e0e0ef;
  --body-color: aliceblue;
  --poppins-font: "Poppins", sans-serif;
  --box-shadow: 0 0px 8px 0 hsla(0, 0%, 85%, .83);
  --light-green: #e5f4dd;
  --antiquewhite: antiquewhite;
  --manrope-font: "Manrope", sans-serif;
  --light-danger: #f7b9b9;
  --pink: #d9c1de;
  --green-light: #daf2dd;
  --text-color: #8b898f;
  --violet: #6c34b7;
  --linear-gradient: linear-gradient(90deg, #501aa8, #870de8);
  --boxshadow-green: 0px 0px 8px 0px rgba(18, 78, 64, 1);
  --linear-gradient-green: linear-gradient(90deg, #000000, #45454e);
  --light-violet: #e7dcfd;
  --violet-background: radial-gradient(circle, rgba(230, 219, 252, 1) 0%, rgba(215, 228, 242, 1) 100%);
}

body {
  font-family: var(--manrope-font);
}

.login-page .t-Region-body h3 {
  display: none;
}

.t-Form-fieldContainer--floatingLabel.apex-item-wrapper--has-icon .apex-item-icon {
  box-shadow: none;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  display: block;
  overflow: hidden;
}

img {
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

header {
  background-color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  width: 100%;
  position: fixed;
  color: #000000;
  box-shadow: 0 1px 4px 0 hsla(0, 0%, 85%, 0.53);
  z-index: 22;
  top: 0;
  left: 0;
  overflow: hidden;
}

@media (max-width: 576px) {
  .logo {
    max-width: 90px;
  }
  header img {
    max-width: 50%;
  }
  header nav ul li a {
    font-size: 12px;
  }
  header .container .right_wrap {
    -moz-column-gap: 15px;
         column-gap: 15px;
  }
  .container .header-btn {
    padding: 0 !important;
  }
}
@media (max-width: 375px) {
  header nav ul li a {
    font-size: 12px;
  }
}
header nav ul li a {
  color: #000000;
  transition: all 0.2s ease-in-out;
}
@media (min-width: 1200px) {
  header nav ul li a {
    font-size: 16px;
  }
}

.container .header-btn {
  background-color: #a8cae5;
  padding: 10px 15px;
  border-radius: 20px;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.container .header-btn:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-color: #000;
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
}

.container .header-btn span {
  z-index: 2;
  color: #000;
  position: relative;
}

@media (min-width: 1200px) {
  header nav ul li a:hover {
    color: #305ab4;
  }
  .container .header-btn:hover span {
    color: #C5EBFC;
  }
  .container .header-btn:hover::after {
    width: 100%;
  }
}
.container nav {
  display: flex;
  padding: 15px 0;
  align-items: center;
}
@media (max-width: 575.98px) {
  .container nav {
    -moz-column-gap: 5px;
         column-gap: 5px;
  }
}
@media (min-width: 576px) {
  .container nav {
    justify-content: space-between;
  }
}

.container .right_wrap {
  display: flex;
  -moz-column-gap: 15px;
  column-gap: 15px;
  align-items: center;
}

@media (min-width: 992px) {
  .container .right_wrap {
    -moz-column-gap: 50px;
    column-gap: 50px;
  }
}
.container .right_wrap a span {
  margin-left: 5px;
}

.container .right_wrap a span img {
  vertical-align: middle;
}

.footer {
  padding: 50px 0;
  background-color: #252733;
  color: #ffffff;
  overflow: hidden;
}

.footer-container {
  max-width: 95%;
  margin: 0 auto;
}

.footer .ttl {
  font-weight: 500;
  font-size: 20px;
  text-align: left;
}

.footer_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 25px;
}

footer a {
  display: block;
}

.footer .top_left .h2 {
  margin-bottom: 20px;
  font-size: 35px;
  font-weight: 600;
  text-align: left;
}

.footer .top_left p {
  font-size: 18px;
  line-height: 1.4;
}

.footer .wrap {
  display: flex;
  padding-top: 48px;
  flex-wrap: wrap;
  row-gap: 20px;
}

.footer .wrap p {
  margin-bottom: 20px;
  text-align: left;
  font-size: 16px;
}

.footer p {
  text-align: left;
  font-size: 16px;
}

.footer .wrap li {
  margin-bottom: 8px;
}

.footer .wrap .item {
  flex: 0 0 50%;
}

@media (min-width: 768px) {
  .footer .wrap .item {
    flex: 0 0 33.33%;
  }
}
@media (min-width: 1200px) {
  .footer .wrap .item {
    flex: 0 0 25%;
  }
  .footer .top_left .h2 {
    font-size: 54px;
  }
  .footer .top_left p {
    font-size: 24px;
  }
}
.footer .wrap .item a {
  opacity: 0.6;
  transition: all 0.2s ease-in-out;
  color: #ffffff;
  font-size: 16px;
}

@media (min-width: 1200px) {
  .footer .wrap .item a:hover {
    opacity: 1;
  }
}
.footer .wrap .ttl {
  margin-bottom: 15px;
}

button {
  cursor: pointer;
}

.primary_btn {
  background-color: #C5EBFC;
  padding: 20px 40px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 20px;
  color: #000000 !important;
}

.primary_btn span {
  vertical-align: middle;
  margin-left: 15px;
}

.primary_btn span img {
  max-width: 22px;
  width: 100%;
  transition: transform 0.2s ease-in-out;
}

.primary_btn:hover span img {
  transform: translateX(5px);
}

.footer_middle {
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .footer_middle {
    margin-bottom: 50px;
  }
}
.footer_bottom .bottom_wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
  row-gap: 25px;
}

@media (min-width: 768px) {
  .footer_bottom .bottom_wrap {
    display: flex;
    align-items: center;
    flex-direction: row;
  }
}
.footer_bottom .bottom_wrap .wrap_item {
  flex: 0 0 50%;
  justify-content: space-between;
}

.footer_bottom .bottom_wrap .wrap_item a {
  opacity: 0.6;
  transition: all 0.2s ease-in-out;
  color: #ffffff;
}

@media (min-width: 1200px) {
  .footer_bottom .bottom_wrap .wrap_item a:hover {
    opacity: 1;
  }
}
.footer_bottom .bottom_wrap .wrap_item span {
  margin: 0 5px;
}

.footer_bottom .social_wrap {
  display: flex;
  -moz-column-gap: 15px;
  column-gap: 15px;
}

.footer_bottom .social_wrap a img {
  width: 28px;
  height: 30px;
  -o-object-fit: contain;
  object-fit: contain;
}


ul {
  margin: 0;
  padding: 0;
  text-align: left;
}

@media (min-width: 1200px) {
  main .container .row:nth-child(3) {
    align-items: center;
    height: -moz-fit-content;
    height: fit-content;
  }
}
main .container .row:nth-child(3) {
  justify-content: center;
}

.t-Login-container {
  display: unset;
  padding: 0;
}

.header-container {
  max-width: 95%;
  margin: 0 auto;
}

.col-12 .t-Region.t-Region--noPadding.t-Region--removeHeader.js-removeLandmark.t-Region--noUI.t-Region--hiddenOverflow.t-Form--stretchInputs.margin-bottom-lg {
  margin-bottom: 0 !important;
  height: 74px;
}
@media (max-width: 575.98px) {
  .col-12 .t-Region.t-Region--noPadding.t-Region--removeHeader.js-removeLandmark.t-Region--noUI.t-Region--hiddenOverflow.t-Form--stretchInputs.margin-bottom-lg {
    height: 50px;
  }
}

@media (min-width: 480px) and (max-width: 768px) {
  .col-middle,
  .col-right {
    max-width: 100%;
    flex-basis: 100%;
  }
  .t-Login-region {
    margin: 15px 0;
  }
  .subscribe-card {
    width: 95% !important;
    margin: 0 auto;
  }
}
@media (max-width: 767.98px) {
  .col-left {
    display: none;
  }
}
@media (min-width: 767.98px) and (max-width: 1200px) {
  .t-Login-region {
    margin: 15px 0;
  }
  .col-left {
    display: none;
  }
  .col-middle {
    max-width: 100%;
    flex-basis: 50%;
  }
}
@media (max-width: 1200px) {
  .subscribe-card {
    width: 95% !important;
    height: 300px !important;
    margin: 0 auto;
  }
}
.t-Login-body .t-Form-label {
  padding-inline-start: 7px !important;
  color: #ffffff;
}

.username-in .t-Form-itemWrapper,
.password-in .t-Form-itemWrapper,
.company-in .t-Form-itemWrapper,
.branch-in .t-Form-itemWrapper,
.app-in .t-Form-itemWrapper {
  border-bottom: 1px solid #ffffff;
}
.username-in .t-Form-itemWrapper input,
.password-in .t-Form-itemWrapper input,
.company-in .t-Form-itemWrapper input,
.branch-in .t-Form-itemWrapper input,
.app-in .t-Form-itemWrapper input {
  border-bottom-width: 0;
  border-bottom: none !important;
  margin-left: 0 !important;
  padding: 16px 7px !important;
}
.username-in .t-Form-itemWrapper input:focus,
.password-in .t-Form-itemWrapper input:focus,
.company-in .t-Form-itemWrapper input:focus,
.branch-in .t-Form-itemWrapper input:focus,
.app-in .t-Form-itemWrapper input:focus {
  outline: none;
}
.username-in select,
.password-in select,
.company-in select,
.branch-in select,
.app-in select {
  border-bottom: none !important;
  margin-left: 0 !important;
  padding: 16px 7px !important;
}
.username-in select:focus,
.password-in select:focus,
.company-in select:focus,
.branch-in select:focus,
.app-in select:focus {
  outline: none;
}
.username-in .apex-item-icon,
.password-in .apex-item-icon,
.company-in .apex-item-icon,
.branch-in .apex-item-icon,
.app-in .apex-item-icon {
  display: none !important;
}

.unwanted {
  display: none;
}

.further_asistance {
  font-size: 25px;
  margin-bottom: 15px;
  text-align: left;
}

.wrap_contact {
  display: flex;
  -moz-column-gap: 18px;
       column-gap: 18px;
  align-items: center;
}
.wrap_contact a:hover img {
  opacity: 0.5;
}
.wrap_contact img {
  width: 40px;
  transition: all 0.2s ease-in-out;
}

#P9999_SUBSCRIPTION_CONTAINER.t-Form-fieldContainer .subscribe-card {
  opacity: 0;
  transform: translateY(-10%) scale(0.7);
}
#P9999_SUBSCRIPTION_CONTAINER.t-Form-fieldContainer.visibleclass .subscribe-card {
  opacity: 1;
  transform: translateY(0%) scale(1);
}

.subscribe-card {
  transition: all 0.5s ease-in-out;
  position: relative;
  width: 100%;
  height: 350px;
  border-radius: 50px;
  padding: 30px;
  display: flex;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
  background-color: var(--white);
  box-shadow: 0 0px 8px 0 hsla(0, 0%, 85%, 0.83);
}
@media (min-width: 576px) {
  .subscribe-card {
    width: 350px;
  }
}
.subscribe-card .subscribe-bg {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 50%;
  width: 100%;
  animation: animimg 5s ease-in-out infinite;
}
.subscribe-card .subscribe-bg img {
  width: 100%;
  height: 100%;
}
.subscribe-card figure {
  margin-bottom: 0;
  position: relative;
  max-width: 50%;
  padding-bottom: 48%;
  width: 100%;
}
.subscribe-card figure img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .subscribe-card figure {
    max-width: 40%;
    padding-bottom: 30%;
  }
}
.subscribe-card p {
  margin-bottom: 0;
  font-size: 15px;
  text-align: center;
  font-weight: 500;
  line-height: 1.4;
  position: relative;
  z-index: 2;
  color: #000;
}
.subscribe-card p span {
  color: #b1aefe;
  font-weight: 600;
}
@keyframes animimg {
  0% {
    transform: translateY(15px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(15px);
  }
}
@keyframes scaleup {
  0% {
    height: 0;
    padding: 0;
  }
  95% {
    height: 350px;
    padding: 30px;
  }
}

.t-PageBody--login .t-Body-alert {
  position: absolute;
  z-index: 55;
  left: 50%;
  top: 20px;
  transform: translate(-50%, -20px);
}

.subscribe-wrap .t-Form-fieldContainer {
  margin: 0 auto;
}

.t-Login-region {
  margin: 15px auto;
}

.demo-video,
.banner-section {
  border: none;
  margin-bottom: 0;
}
.demo-video .t-Region-header,
.banner-section .t-Region-header {
  border: none;
}

.video-section {
  overflow: hidden;
  padding-top: 40px;
}
.video-section .container {
  width: 100%;
  max-width: 95%;
}
.video-section .video_wrap {
  position: relative;
  padding-bottom: 65%;
  border-radius: 1.1111111111rem;
  overflow: hidden;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .video-section .video_wrap {
    padding-bottom: 38%;
  }
}
.video-section .video_wrap video {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  left: 0;
  top: 0;
}
.video-section .content_wrap {
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .video-section .content_wrap {
    max-width: 60%;
  }
}
.video_ttl {
  font-size: 26px;
  color: #6e6c6c;
  font-weight: 700;
}
@media (min-width: 1200px) {
 .video_ttl {
    font-size: 36px;
  }
}
 .video_ttl span {
  color: #325bb7;
}
.video-section .content_wrap p {
  font-size: 16px;
  margin-bottom: 30px;
  color: #a69c9c;
  line-height: 1.5;
}
@media (min-width: 1200px) {
  .video-section .content_wrap p {
    font-size: 16px;
  }
}
.video-section .content_wrap p a {
  display: inline-block;
  vertical-align: bottom;
}/*# sourceMappingURL=login.css.map */