﻿@import "https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap";
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif; }
/* 
header {
  position: fixed;
  top: 60px;
  left: 80px;
  z-index: 1; } */

.login-page {
  display: flex;
  flex-flow: row wrap; }

.login-page.password {
  align-items: center; }
  .login-page.password .form-section {
    margin-bottom: 17px; }

.otp-page section#form-section {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 195px;
  align-items: center;
  padding-left: 0px; }

.login-page.login .form-button-wrapper {
  margin-top: 17px; }

.forgotpass section#form-section {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 175px; }

.mobile-menu a {
  color: #fff;
  text-decoration: none !important; }

a[onclick] {
  cursor: pointer; }

#hero__img {
  width: 45%; }

.hero__img__banner {
  height: 100vh;
  position: fixed;
  width: 44.5%; }
  .hero__img__banner img {
    object-fit: cover;
    width: 100%;
    height: 100%; }

.mobile-menu {
  display: none; }

#form-section {
  width: 55%;
  padding: 80px 80px 42px 65px; }

.form-content-header {
  margin-bottom: 35px; }

.page-title {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 600;
/*  line-height: 51px;
  margin-bottom: 6px;*/
  color: #3D74FF; }

.title-tagline {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400; }

.from-title {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 20px; 
  align-items: center;
}

.form-count {
    background-color: #3D74FF24;
    margin-right: 4px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 21px;
    font-weight: 400;
    padding: 4px 12px;
    height: fit-content;
}

.form-section-title {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 21px;
    font-weight: 400;
    padding: 4px 12px;
    background: linear-gradient(90deg, #3d74ff40 0%, rgba(255, 255, 255, 0) 100%);
    margin: 0;
}

.from-row {
  display: flex;
  justify-content: space-between;
  flex-flow: wrap; }

.user-information .form-field {
  width: calc(32% - 10px); }

.form-field {
  width: calc(50% - 10px); }

.form-field.single-field {
  width: 100%; }

.textfield-outlined {
  position: relative;
  margin-bottom: 18px;
  padding-top: 6px;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.4px; }
  .textfield-outlined > input {
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
    width: 100%;
    padding: 9px 13px 9px;
    font-size: 14px;
    line-height: inherit;
    color: #000000;
    border-style: solid;
    border-width: 1px;
    border-color: transparent #bcbcbc #bcbcbc;
    border-radius: 4px;
    -webkit-text-fill-color: currentColor;
    background-color: transparent;
    caret-color: #3D74FF;
    transition: border 0.2s, box-shadow 0.2s; }
    .textfield-outlined > input:not(:focus):placeholder-shown {
      border-top-color: #bcbcbc; }
      .textfield-outlined > input:not(:focus):placeholder-shown + label {
        font-size: 14px;
        line-height: 54px; }
    .textfield-outlined > input + label {
      display: flex;
      width: 100%;
      max-height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      font-size: 12px;
      line-height: 15px;
      color: #4c4c4c;
      cursor: text;
      transition: color 0.2s, font-size 0.2s, line-height 0.2s;
      font-family: "Poppins", sans-serif;
      font-weight: 500;
    }
      .textfield-outlined > input + label::before {
        content: "";
        display: block;
        box-sizing: border-box;
        height: 8px;
        min-width: 10px;
        margin-top: 6px;
        border-top: solid 1px #bcbcbc;
        pointer-events: none;
        box-shadow: inset 0 1px transparent;
        transition: border 0.2s, box-shadow 0.2s;
        margin-right: 4px;
        border-left: solid 1px transparent;
        border-radius: 4px 0; }
      .textfield-outlined > input + label::after {
        content: "";
        display: block;
        box-sizing: border-box;
        height: 8px;
        min-width: 10px;
        margin-top: 6px;
        border-top: solid 1px #bcbcbc;
        pointer-events: none;
        box-shadow: inset 0 1px transparent;
        transition: border 0.2s, box-shadow 0.2s;
        flex-grow: 1;
        margin-left: 4px;
        border-right: solid 1px transparent;
        border-radius: 0 4px; }
    .textfield-outlined > input:focus {
      border-color: transparent #3D74FF #3D74FF;
      outline: none; }
      .textfield-outlined > input:focus + label {
        color: #4c4c4c; }
        .textfield-outlined > input:focus + label::before {
          border-top-color: #3D74FF !important; }
        .textfield-outlined > input:focus + label::after {
          border-top-color: #3D74FF !important; }
  .textfield-outlined ~ label:hover > input {
    border-color: transparent; }
  .textfield-outlined label:hover > input + label::before {
    border-top-color: #3D74FF; }
  .textfield-outlined label:hover > input + label::after {
    border-top-color: #3D74FF; }
  .textfield-outlined label:hover > input:not(:focus):placeholder-shown {
    border-color: #3D74FF; }
  .textfield-outlined > input.input-validation-error {
    border-color: transparent #e94025 #e94025; }
    .textfield-outlined > input.input-validation-error:focus {
      border-color: transparent #e94025 #e94025;
      outline: none; }
      .textfield-outlined > input.input-validation-error:focus + label::before {
        border-top-color: #e94025 !important; }
      .textfield-outlined > input.input-validation-error:focus + label::after {
        border-top-color: #e94025 !important; }
    .textfield-outlined > input.input-validation-error + label::before {
      border-color: #e94025; }
    .textfield-outlined > input.input-validation-error + label::after {
      border-color: #e94025; }
    .textfield-outlined > input.input-validation-error:not(:focus):placeholder-shown {
      border-color: #e94025; }

.password-icon {
  position: absolute;
  right: 8%;
  top: 60%;
/*  padding-top: 6px;*/
  display: flex;
  align-items: center; }
  .password-icon span {
    height: 20px;
    width: 20px; }
  .password-icon span.eye {
    display: none;
    background: url("/assets/YBB2B/img/eye-on.svg") no-repeat;
    filter: brightness(0);
    background-size: 20px;
  }
  .password-icon span.eye-off {
    background: url("/assets/YBB2B/img/eye-off.svg") no-repeat;
    height: 20px; 
    filter: brightness(0);
    background-size: 20px;
  }

select.form-select {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  padding: 9px 13px 9px;
  width: 100%;
  border-radius: 4px;
  border-color: #bcbcbc;
  color: #4c4c4c;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  background: url("/assets/YBB2B/img/down-arrow.svg") 8px 4px no-repeat;
  background-position-x: calc(100% - 18px);
  background-position-y: 50%;
  line-height: 21px;
  transition: 0.5s all;
  font-weight: 500;
}
  select.form-select:focus-visible {
    border-color: #3D74FF;
    outline-color: #3D74FF; }
  select.form-select option {
    border-radius: 0;
    padding: 4px 10px; }

.error-massage {
    display: none;
    margin-top: 5px;
    padding-left: 15px;
    color: #fd8787;
    font-family: "Poppins", sans-serif;
    font-size: 11px;
    font-weight: 400;
    line-height: 15px;
}

.input-validation-error ~ .error-massage {
  display: block; }

.validation-error .error-massage {
  display: block;
  padding-left: 0; }

.checker-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px; }

.term-condition-checkbox {
  margin-bottom: 35px; }
  .term-condition-checkbox > label {
    font-size: 12px;
    font-weight: 400;
    font-family: "Poppins", sans-serif; }
    .term-condition-checkbox > label a {
      color: #3D74FF;
      text-decoration: none; }

input[type="checkbox"] {
  position: relative;
  border: 2px solid #bcbcbc;
  border-radius: 2px;
  background: none;
  cursor: pointer;
  line-height: 0;
  margin: 0 8px 0 0;
  outline: 0;
  padding: 0 !important;
  vertical-align: text-top;
  height: 20px;
  width: 20px;
  appearance: none;
  -webkit-appearance: none; }
  input[type="checkbox"]:before {
    content: "";
    position: absolute;
    right: 50%;
    top: 48%;
    width: 4px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    margin: -1px -1px 0 -1px;
    transform: rotate(45deg) translate(-50%, -50%);
    z-index: 2; }
    input[type="checkbox"]:checked {
        opacity: 1;
        background-color: #3D74FF;
        border-color: #3D74FF;
    }

.form-button-wrapper {
  padding-bottom: 35px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.22);
  margin-bottom: 35px; }
  .form-button-wrapper .form-button {
    width: 200px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    line-height: 18px;
    font-family: "Poppins", sans-serif;
    padding: 11px 0;
    text-align: center;
    border-radius: 20px;
    background-color: #3D74FF;
    border: none; }

/*.password {
    .form-button-wrapper {
        border: none;
        padding: 0;
        margin-bottom: 0;
    }
}*/
/*.otp-page {
    .form-button-wrapper {
        border: none;
        padding: 0;
        margin-bottom: 0;
    }

    .form-section {
        margin-bottom: 35px;
    }
}*/
.login-page-link {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 18px; }
  .login-page-link a {
    color: #3D74FF;
    text-decoration: none; }

.forgot-password {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: #3D74FF; }

.remember-me-checkbox label {
  font-family: "Poppins", sans-serif;
  color: #797979;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px; }

.verification-code--inputs {
  margin-bottom: 16px; }
  .verification-code--inputs input[type="text"] {
    height: 40px;
    width: 38px;
    padding: 8px;
    border: 1px solid #bcbcbc;
    border-radius: 4px;
    margin-right: 18px;
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: #000; }
    .verification-code--inputs input[type="text"]:valid {
      background-color: #c5e4ff;
      border-color: #c5e4ff; }
    .verification-code--inputs input[type="text"]:last-child {
      margin-right: 0; }
    .verification-code--inputs input[type="text"]:focus-visible {
      border-color: #3D74FF;
      outline: none; }

.otp-content {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: #797979; }
  .otp-content span {
    color: #3D74FF; }

.password-validation-msg {
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 15px;
  color: #797979;
  padding-left: 15px; }

.otp-page .form-section {
  margin-bottom: 35px; }

/*@media not all and (min-resolution: 0.001dpcm) {
    @supports {
        (-webkit-appearance: {
			none) {
            .textfield-outlined > input, .textfield-outlined > input + label, .textfield-outlined > input + label: :before, .textfield-outlined > input + label::after {
                transition-duration: 0.1s;
            }
        }
    }
}*/
.ut-modal-show {
  position: relative;
  transition: background-color 0.5s; }
  .ut-modal-show::after {
    content: "";
    background: rgba(0, 0, 0, 0.8);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99; }

.ut-term-popup {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0;
  display: none;
  justify-content: center;
  align-items: center;
  height: 100%; }
  .ut-term-popup.show {
    display: flex; }
  .ut-term-popup .modal-dialog {
    width: 70%;
    height: calc(100vh - 80px);
    display: block;
    background: #fff;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.16);
    border-radius: 10px; }
  .ut-term-popup .modal-content {
    height: 100%;
    overflow: auto; }
  .ut-term-popup .modal-header {
    display: flex;
    align-items: center;
    position: relative;
    padding: 20px 24px;
    gap: 15px;
    background-color: #e6f5ff;
    border-radius: 10px 10px 0 0;
    position: sticky;
    top: 0;
    z-index: 99; }
  .ut-term-popup .modal-body {
    padding: 32px; }
  .ut-term-popup .modal-title {
    font-size: 24px;
    line-height: 36px;
    font-weight: 600;
    color: #000000; }

.close-popup {
  position: absolute;
  right: 16px;
  top: 0;
  width: 24px;
  height: 24px;
  bottom: 0;
  margin: auto;
  opacity: 0.3; }
  .close-popup:hover {
    opacity: 1; }
  .close-popup::before {
    transform: rotate(45deg); }
  .close-popup::after {
    transform: rotate(-45deg); }

.close-popup::before,
.close-popup::after {
  position: absolute;
  left: 15px;
  content: " ";
  height: 24px;
  width: 2px;
  background-color: #333; }

#ut-termCondition {
  padding: 40px 0 50px; }

.ut-page-title {
  font-size: 24px;
  line-height: 36px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #000000; }

.ut-term-content {
  margin-bottom: 50px; }

.ut-term-content p,
.ut-service-title-note {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #4b4b4b;
  margin-bottom: 16px; }

.ut-ourTermCondition > ol,
.ut-ourTermCondition > ul {
  list-style-type: none;
  counter-reset: css-counter 0; }

.ut-term-card {
  margin-bottom: 30px; }
  .ut-term-card.active .ut-card-head::after {
    transform: rotate(136deg);
    bottom: 0;
    top: 8px; }
  .ut-term-card.active .ut-card-content {
    display: block; }

.ut-card-head {
  background-color: #e6f5ff;
  padding: 10px 16px;
  position: relative;
  cursor: pointer;
  font-size: 18px;
  color: #000000;
  font-weight: 500; }
  .ut-card-head::before {
    counter-increment: css-counter 1;
    content: counter(css-counter) ". "; }
  .ut-card-head::after {
    content: "";
    position: absolute;
    right: 16px;
    bottom: 3px;
    top: 0;
    border-left: 1px solid #3D74FF;
    border-bottom: 1px solid #3D74FF;
    width: 10px;
    height: 10px;
    margin: auto;
    transform: rotate(-45deg); }

.ut-card-content {
  padding: 16px 0 30px;
  border-bottom: 1px dashed #bcbcbc;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #4b4b4b;
  display: none; }
  .ut-card-content p {
    padding-bottom: 10px; }

.ut-card-content ol,
.ut-card-content ul {
  padding: 5px 0 5px 24px;
  list-style: lower-roman; }
  .ut-card-content ol li,
  .ut-card-content ul li {
    padding-left: 5px; }

.ut-service-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
  color: #000000;
  margin-bottom: 12px; }

.ut-our-services {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap; }

.ut-service-box {
  width: calc(33.33% - 15px);
  position: relative;
  padding-left: 16px; }
  .ut-service-box::after {
    content: "";
    width: 5px;
    height: 5px;
    background-color: #000;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 8px; }

.ut-service-box-title,
.ut-service-address {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400; }

.ut-service-box-title {
  color: #000;
  font-weight: 600; }

.ut-service-address {
  color: #4b4b4b; }

@media (min-width: 992px) and (max-width: 1220px) {
  #form-section {
    width: 55%;
    padding: 60px 42px 42px 42px;
    display: flex;
    align-items: center; }
  .hero__img__banner {
    height: 100vh;
    position: relative;
    width: 100%; }
  .hero__img__banner img {
    width: 100%;
    height: 100%; }
  .verification-code--inputs input[type="text"] {
    margin-right: 5px; } }

@media (min-width: 768px) and (max-width: 991px) {
  header {
/*    position: absolute;*/
    top: 60px;
    left: 80px; }
  .hero__img__banner {
    height: auto;
    position: relative;
    width: 100%; }
    .hero__img__banner img {
      height: 430px; }
  #hero__img {
    width: 100%; }
  #form-section {
    width: 100%;
    padding: 40px 70px; }
  .ut-term-popup .modal-dialog {
    width: 85%; }
  .logo{
      height: 50px !important;
      padding:0px 92px 0px 80px !important;
  }
  #sticky-header .logo {
    top: -40px !important;
}
  .header-area .wrapper{
      display: flex;
      flex-direction: column;
      align-items: center;
  }

}
.header-area .wrapper{
    align-items: center;
}

@media screen and (max-width: 767px) {
  #hero__img {
    width: 100%; }
  .hero__img__banner {
    height: auto;
    width: 100%;
    position: initial; }
    .hero__img__banner img {
      height: 430px; }
  #form-section {
    width: 100%;
    padding: 28px 18px !important; }
  header {
/*    position: absolute;*/
    top: 60px;
    left: 60px; }
  .verification-code--inputs input[type="text"] {
    margin-right: 5px; }
  .ut-term-popup .modal-body {
    padding: 24px; }
  .ut-term-popup .modal-dialog {
    width: 90%; }
  .ut-term-popup .modal-title {
    font-size: 18px; }
  .close-popup::before,
  .close-popup::after {
    height: 20px; }
  .ut-service-box {
    width: calc(50% - 15px); }
  .ut-card-head,
  .ut-service-title {
    font-size: 16px; }
  .ut-service-box-title,
  .ut-service-address,
  .ut-term-content p,
  .ut-service-title-note,
  .ut-card-content {
    font-size: 14px; }
  .ut-term-card {
    margin-bottom: 20px; }
  .ut-term-popup .modal-header {
    padding: 12px 24px; } }

@media (max-width: 575px) {
  .hero__img__banner img {
    height: 230px; }
  .logo {
    width: 120px; }
    .logo img {
      width: 100%; }
  header {
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
/*    padding: 24px 18px; */

  }
  .mobile-menu {
    display: block; }
  :is(.mobile-menu) a {
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    font-family: "Poppins", sans-serif;
    color: #fff;
    text-decoration: none; }
  .page-title {
    font-size: 24px;
    line-height: 36px; }
  .title-tagline {
    font-size: 14px; }
  .form-field {
    width: 100% !important; }
  .form-section-title {
    font-size: 12px;
    line-height: 18px; }
  .form-count {
    font-size: 12px;
    line-height: 18px; }
  .textfield-outlined > input + label {
    font-size: 10px; }
  .form-button-wrapper {
    border: none;
    padding: 0;
    margin: 0;
    position: initial;
    left: 0;
    bottom: 10px;
    width: calc(100% - 36px);
    margin: 0 18px; }
    .form-button-wrapper .form-button {
      width: 100%; }
  .login-page-link {
    display: none; }
  .login-page.register {
    padding-bottom: 30px; }
  .ut-term-popup .modal-dialog {
    width: 100%;
    margin: 0 15px; }
  .ut-term-popup .modal-body {
    padding: 20px; }
  .ut-term-popup .modal-header {
    padding: 10px 20px; }
  .ut-term-popup .modal-title {
    font-size: 16px; }
  .close-popup::before,
  .close-popup::after {
    height: 18px; }
  .ut-service-box {
    width: 100%; }
  .ut-card-head,
  .ut-service-title {
    font-size: 14px; }
  .ut-card-head {
    padding-right: 32px; }
  .ut-service-box-title,
  .ut-service-address,
  .ut-term-content p,
  .ut-service-title-note,
  .ut-card-content {
    font-size: 12px; }
  .ut-term-card {
    margin-bottom: 20px; } }

@media (min-width: 320px) and (max-width: 374px){
    .header-area .social_wrap .social_links {
        margin-right: 4px;
        display: flex;
        flex-direction: column;
        align-items: end;
        gap: 8px;
    }
    .header-area .main-header-area .main-menu ul li{
        margin: 0 15px 0 0 !important;
    }
    .main-header-area.sticky .wrapper{
        margin-top: 16%;
    }
}