@import "fonts.css";
.login-sec, .login-sec .row.g-0{
  min-height: 100vh;
}
.login-sec .grid-left{
  width: 55%;
}
.login-sec .form-block{
  background: #f6f6f6;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.login-sec .form-wrapper{
  max-width: 658px;
  padding-right: 90px;
  margin: 0 auto;
  width: 100%;
  padding-top: 100px;
}
.login-sec h1{
  color: #121212;
  font-family: 'lama_sanssemibold';
  font-size: 6.4rem;
  line-height: 72px;
  letter-spacing: 1.28px;
  margin-bottom: 22px;
}
.login-sec .form-group{
  margin-bottom: 30px;
}
.login-sec .form-group label{
  color: #121212;
  font-family: 'lama_sansregular';
  font-size: 1.6rem;
  line-height: 24px;
  margin-bottom: 17px;
}
.login-sec .form-control{
  background-color: #f6f6f6;
  color: rgba(18, 18, 18, 0.50);
  width:100%;
  border-radius: 50px;
  border: 1px solid rgba(18, 18, 18, 0.25);
  padding: 12px 30px;
  font-size: 1.6rem;
  resize: none;
  box-shadow: none;
}
.login-sec .form-control::placeholder{
  color: rgba(18, 18, 18, 0.50);
}
.login-checkbox{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(18, 18, 18, 0.50);
  font-family: 'lama_sansregular';
  font-size: 1.6rem;
  user-select: none;
  position: relative;
}
.login-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.login-checkbox .checkmark {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(18, 18, 18, 0.86);
  border-radius: 50%;
  display: inline-block;
  position: relative;
  transition: all 0.2s ease;
}
.login-checkbox input:checked + .checkmark {
  background-color: #09407c;
  border-color: #09407c;
}
.login-checkbox input:checked + .checkmark::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 1px;
  width: 6px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.login-sec .forgot-password{
  color: #121212;
  font-family: 'lama_sansregular';
  font-size: 1.6rem;
  text-decoration: none;
}
.login-sec .forgot-password:hover{
  color: #09407c;
}
.login-btn{
  font-size: 1.6rem;
  font-family: 'lama_sansmedium';
  border-radius: 50px;
  background-color: #09407c;
  border: 0;
  color: #fff;
  padding: 12px 23px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  margin-top: 30px;
}
.login-btn:hover {
  background-color: #121212;
  color: #fff;
}
.login-btn span{
  position: relative;
  padding-right: 40px;
}
.login-btn span:before{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  content: '';
  width: 9px;
  height: 9px;
  background: url(../images/login-btn-arw.svg) no-repeat center /contain;
}
.login-sec .form-wrapper p{
  display: none;
}
.login-sec .grid-right{
  width:45%;
}
.login-overlay-content{
  position:relative;
  background-repeat: no-repeat;
  background-size:cover;
  background-position:center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 50px;
}
.login-overlay-content:before{
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(56, 56, 56, 0.75) 0%, rgba(56, 56, 56, 0.75) 100%);
}
.login-content-wrapper{
  max-width:440px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.login-overlay-content h3{
  color: #FFF;
  font-family: 'lama_sansmedium';
  font-size: 3.2rem;
  line-height: 40px;
  letter-spacing: 0.64px;
  margin-bottom: 20px;
}
.login-overlay-content ul{
  padding: 0 0 35px 15px;
  margin: 0;
  list-style-type: disc;
}
.login-overlay-content li, .login-overlay-content p{
  color: #FFF;
  font-family: 'lama_sansregular';
  font-size: 1.6rem;
  line-height: 24px;
  letter-spacing: 0.32px;
}
.login-overlay-content li:not(:last-child){
  margin-bottom: 10px;
}
.login-overlay-content p a{
  color: #6EAAFF;
  text-decoration:none;
  margin-left: 4px;
}
.login-overlay-content p a:hover{
  opacity: .75;
}
#password-forgotten-popup .modal-dialog{
  max-width: 911px;
  margin: 4% auto;
}
#password-forgotten-popup .modal-content{
  background-color: #F6F6F6;
  padding: 60px 95px;
  border-radius: 10px;
  border: 0;
}
#password-forgotten-popup .modal-content h3{
  font-family: 'lama_sanssemibold';
  font-size: 3.2rem;
  line-height: 48px;
  text-align: center;
  margin-bottom: 15px;
}
#password-forgotten-popup .modal-content p{
  color: #121212;
  font-family: 'lama_sansregular';
  font-size: 1.6rem;
  line-height: 24px;
  max-width: 620px;
  margin: 0 auto 40px;
  text-align: center;
}
.login-sec #password-forgotten-popup .form-group{
  margin-bottom: 40px;
}
.login-sec #password-forgotten-popup .form-control{
  padding: 19px;
}
#password-forgotten-popup .popup-btn-close{
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
.form-field{
  position: relative;
}
.toggle-password{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}
.form-field .form-control.password-field{
  padding-right: 40px;
}
/*================New-Landing=================*/
html,
body {
  height: 100%;
}
.new-landing-topbar .d-table img{
  width: 290px;
}
.new-landing-heading{
  padding: 20px 0 40px;
}
.new-landing-heading h1{
  font-size: 3.2rem;
  font-family: 'lama_sansregular';
  text-transform: uppercase;
  position: relative;
  line-height: normal;
}
.new-landing-heading h1 strong{
  font-family: 'lama_sanssemibold';
  font-weight: normal;
}
.new-landing-heading h1:before{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: '';
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.2);
}
.new-landing-heading span{
  background: #fff;
  position: relative;
  padding-left: 120px;
  padding-right: 120px;
  font-family: 'lama_sansregular';
}
.new-landing-heading h6{
  font-family: 'lama_sanslight';
  font-size: 1.6rem;
  letter-spacing: 0.28px;
  margin: 20px 0 0;
  line-height: normal;
}
.landing-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #fff;
}
.new-landing-gallery {
  flex: 1;
  display: flex;
}
.new-landing-gallery .row {
  flex: 1;
  width: 100%;
}
.each-landing-gal{
  background: /*#17417B*/ #09407c;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.new-landing-gallery .col-lg-4:nth-child(2) .each-landing-gal{
  background: #BC9917;
}
.new-landing-gallery .col-lg-4:nth-child(3) .each-landing-gal{
  background: #309340;
}
.landing-gal-image {
  flex: 1;
}
.landing-gal-image img{
  height: 100%;
  object-fit: cover;
}
.landing-gal-content {
  flex-shrink: 0;
}
.landing-gal-content{
  padding: 30px 24px 10px;
}
.landing-gal-content h4{
  font-family: 'lama_sansbold';
  font-size: 2.6rem;
  color: #fff;
  margin-bottom: 24px;
}
.landing-gal-content h6{
  font-family: 'lama_sanssemibold';
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.landing-gal-content p{
  font-family: 'lama_sansregular';
  color: #fff;
  font-size: 1.6rem;
  line-height: 20px;
  margin-bottom: 0;
  letter-spacing: normal;
}
.landing-gal-logo{
  position: absolute;
  top: 0;
  right: 0;
}
.landing-gal-logo img{
  width: 45px;
}
.new-landing-bottom{
  padding: 13px 0;
}
.new-landing-bottom p{
  font-family: 'lama_sansregular';
  color: #000;
  font-size: 1.6rem;
  margin-bottom: 0;
  letter-spacing: normal;
}
.new-landing-bottom p span{
  font-family: 'lama_sanssemibold';
  color: #17417B;
  position: relative;
  padding-left: 20px;
}
.new-landing-bottom p span:before{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  content: '';
  width: 16px;
  height: 16px;
  background: url(../images/landing-right-arrow.svg) no-repeat center /contain;
}

/*password-field*/
.toggle-password .close-password {
    display: none;
}
.toggle-password.active .open-password {
    display: none;
}
.toggle-password.active .close-password {
    display: inline;
}