@font-face {
  font-family: Calibri;
  src: url(../fonts/calibri-regular.ttf);
  font-display: swap;
}

body {
  overflow-x: hidden;
  font-family: Calibri;
  transition: transform 0.4s;
  background-color: #ecf4ef;
}
.pageContainer {
  overflow-x: hidden;
}
body.signin-page {
  background-color: #fff;
}
a {
  text-decoration: none;
}
nav {
  padding-top: 41px;
}
.form-container {
  background-image: url(../images/body2.webp);
  background-repeat: no-repeat;
  background-position: right bottom;
  overflow: hidden;
}
.nav-banner {
  position: relative;
  z-index: 1;
  background-image: url(../images/body.webp);
  background-repeat: no-repeat;
  background-position: right bottom;
}
.nav-banner::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  background-image: url(../images/Background.webp);
  z-index: -1;
  width: 38%;
}
.nav-links li a {
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  letter-spacing: 3px;
  color: #000;
  margin: 5px 15px;
  display: block;
  text-transform: uppercase;
  position: relative;
}
.nav-links li a::after {
  content: "";
  width: 100%;
  left: 0;
  bottom: -10px;
  position: absolute;
  height: 2px;
  background-color: #73a385;
  transform: scale(0);
  -ms-transform: scale(0);
  -webkit-transform: scale(0);
  transform-origin: center;
}
.nav-links li a:hover::after {
  transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
}
.nav-links li a:hover {
  color: #73a385;
}
.nav-links li a.user::after {
  display: none;
}
.langSwitcher {
  margin: 0 0 0 25px;
  height: 40px;
  width: 60px;
  overflow: hidden;
  position: relative;
  vertical-align: middle;
}
.langSwitcher a,
.langSwitcher a.current svg {
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.langSwitcher.open a.current svg {
  transform: scaleY(-1);
  -o-transform: scaleY(-1);
  -ms-transform: scaleY(-1);
  -moz-transform: scaleY(-1);
  -webkit-transform: scaleY(-1);
}
.langSwitcher a.current {
  margin-bottom: 5px;
  min-height: 40px;
  height: 40px;
  width: 100%;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.3);
}
.langSwitcher ul {
  margin: 0;
  padding: 0;
  position: absolute;
  left: 0;
  width: 60px;
  top: 100%;
  border-radius: 5px;
  background-color: #000;
  border-top-right-radius: 5px;
  overflow: hidden;
}
.langSwitcher ul li {
  border-bottom: 0.8px solid rgba(233, 233, 233, 0.5);
}
.langSwitcher ul li:last-child {
  border: none;
}
.langSwitcher a.other {
  background: #000;
  color: #fff;
  width: 100%;
  min-height: auto;
  height: auto;
  padding: 3px 10px;
  font-size: 14px;
  font-family: "Calibri";
  border: 0.8px solid rgba(233, 233, 233, 0.8);
  border-top: none;
}
.langSwitcher.open {
  height: 40px;
  overflow: visible;
}
.langSwitcher a {
  padding: 7px 10px;
  font-size: 14px;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}
.signin-page-langSwitcher a {
  color: #fff;
}
.signin-page-langSwitcher a.other {
  background: #fff;
  color: #000;
}
.signin-page-langSwitcher a.current {
  border: 1px solid rgba(255, 255, 255, 0.3);
}
/**/
.inner {
  height: 45px;
  width: 35px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  /* margin: 0 0 0 15px; */
  border-radius: 99px;
  cursor: pointer;
}
.inner div {
  width: 35px;
}
.inner span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #73a385;
  margin: 3px 0;
}
a.user {
  width: 50px;
  height: 67px;
  border-radius: 57px;
  background: #73a385;
  display: block;
  text-align: center;
  line-height: 67px !important;
}
body.slide-right {
  overflow: hidden;
}
body.slide-right .page-container {
  transform: translateX(80%);
}
.content-wraper {
  overflow: hidden;
}
.page-container {
  transition: all 0.6s ease-in-out;
  -ms-transition: all 0.6s ease-in-out;
  -webkit-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
}
.inner span,
::before,
::after,
a {
  transition: all 0.6s ease-in-out;
  -ms-transition: all 0.6s ease-in-out;
  -webkit-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
}
input[type="submit"],
::before,
::after,
a {
  transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}
body.slide-right .inner span:nth-child(2) {
  opacity: 0;
}
body.slide-right .inner span {
  margin: -2px 0;
}
body.slide-right .inner span:nth-child(1) {
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
body.slide-right .inner span:nth-child(3) {
  transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.navlinks li {
  display: inline-block;
  margin: 10px 0;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: -80%;
  bottom: 0;
  overflow-y: auto;
  background-color: #73a385;
  /* background-image: url(../images/Background.webp);
  background-position: center;
  background-size: cover; */
  width: 80%;
  height: 100vh;
  padding: 20px;
  z-index: 9999;
}

.mobile-menu .navlinks li {
  display: block;
  padding: 10px;
}
.mobile-menu .navlinks a {
  color: #fff;
  text-transform: uppercase;
}
/**/
.signin .img {
  padding-top: 119px;
  padding-bottom: 115px;
  color: #fff;
}
.signin .img .imgg {
  width: calc(100% + 86px);
  /* margin-left: 86px; */
  border: 2px solid #e1be7d;
}
.signin .img .imgg img {
  width: 100%;
  position: relative;
  top: -20px;
  left: 20px;
  height: 400px;
  object-fit: cover;
  object-position: center;
}
.signin .img h2 {
  font-size: 45px;
  font-style: italic;
  font-weight: 400;
  line-height: 49px;
  letter-spacing: -0.01em;
  margin-top: 60px;
}
.signin .hchf-form {
  max-width: 416px;
  margin: auto;
  margin-top: 95px;
}
.hchf-form h3 {
  font-size: 42px;
  font-weight: 400;
  line-height: 51px;
  letter-spacing: -0.01em;
  margin-bottom: 30px;
}
.hchf-form .form-group label {
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0em;
  display: block;
  margin-bottom: 12px;
}
.hchf-form .form-group label img {
  display: inline-block;
  vertical-align: middle;
  margin-top: -3px;
}
.hchf-form .form-group {
  margin-bottom: 24px;
}
.hchf-form .form-group input,
.hchf-form .form-group > select {
  border: 1px solid #e0e0e0;
  outline: 0;
  border-radius: 4px;
  padding: 12px 17px;
  width: 100%;
  height: 52px;
}
.hchf-form .form-group textarea {
  border: 1px solid #e0e0e0;
  outline: 0;
  border-radius: 4px;
  padding: 12px 17px;
  width: 100%;
}
.hchf-form .form-group > select {
  color: #8f8f8f;
  cursor: pointer;
}
.hchf-form .form-check input {
  width: 16px;
  height: 16px;
  padding: 0;
  vertical-align: middle;
  cursor: pointer;
  display: inline-block;
}
.hchf-form .form-check label {
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  vertical-align: middle;
  display: inline-block;
  line-height: 20px;
  margin: 0;
  letter-spacing: -0.01em;
}
.hchf-form .form-check2 {
  width: 100%;
  text-align: center;
}
.hchf-form .form-group input[type="submit"] {
  color: #fff;
  background-color: #73a385;
  text-transform: uppercase;
}
input[type="submit"]:hover {
  opacity: 0.9;
}
.hchf-form a {
  color: #73a385;
}
.donthave {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.01em;
  color: #8f8f8f;
  margin-top: 24px;
}
input[type="checkbox"] {
  display: none !important;
}
.form-check [type="checkbox"] + label,
.form-radio [type="checkbox"] + label {
  position: relative;
  cursor: pointer;
}
.form-check input[type="checkbox"] + label::before {
  content: "";
  display: block;
  position: absolute;
  text-align: center;
  width: 16px;
  height: 16px;
  left: -23px;
  top: 2px;
  border-radius: 2px;
  border: 1px solid rgb(150 150 150 / 30%);
}
.form-check input[type="checkbox"]:checked + label::before {
  background-color: #73a385;
}

.form-check input[type="checkbox"]:checked + label::after {
  content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" width="10" height="10" fill="white" viewBox="0 0 24 24"><path d="M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z"/></svg>');
  display: block;
  position: absolute;
  left: -20px;
  top: 0px;
}
.form-radio input[type="checkbox"] + label {
  padding-left: 30px;
}
.form-radio input[type="checkbox"] + label::before,
.form-radio input[type="checkbox"] + label::after {
  content: "";
  display: block;
  position: absolute;
  text-align: center;
  width: 16px;
  height: 16px;
  left: 0;
  top: 6px;
  border: 1px solid #abb5be;
  border-radius: 50%;
  z-index: 1;
}
.form-radio input[type="checkbox"] + label::after {
  border: 5px solid #73a385;
  z-index: 2;
  opacity: 0;
}
.form-radio input[type="checkbox"]:checked + label::after {
  opacity: 1;
}
.small-footer {
  border-top: 1px solid #e5e5e5;
  padding: 18px 0;
  background-color: #fff;
}
.small-footer ul {
  margin: 0;
}
/* .small-footer ul li {
  margin: 4px 10px;
} */
.social-links a::after {
  content: "";
  height: 5px;
  width: 5px;
  background-color: #73a385;
  border-radius: 50%;
  display: inline-block;
  margin: 0 7px;
}
.social-links li:last-child a::after {
  display: none;
}
.form-container {
  padding: 90px 0 150px 0;
}
.form-container .hchf-form {
  overflow: hidden;
  max-width: 700px;
  margin: auto;
  padding: 80px 85px;
  background: #fff;
  border: 1px solid #e0e0e0;
  box-shadow: 0px 4px 12px 0px #00000014;
  border-radius: 8px;
}
.form-group .input-group select {
  width: 85px;
  background-color: #fff;
  outline: 0;
  border: 1px solid #e0e0e0;
  border-right: 0;
  height: 52px;
  border-radius: 5px 0 0 5px;
  cursor: pointer;
  color: #8f8f8f;
  font-family: Calibri;
  font-size: 15px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0em;
  padding-left: 15px;
}
.form-group .input-group input {
  width: calc(100% - 85px);
  border-radius: 0 5px 5px 0 !important;
}
.form-hidden-part {
  padding: 30px 0 10px 0;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  display: none;
}
.form-hidden-part h5 {
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0em;
  margin-bottom: 24px;
}
.required {
  color: red;
}
.form-hidden-part::after {
  content: "";
  position: absolute;
  left: -100px;
  right: -100px;
  bottom: 0;
  top: 0;
  border: 1px dashed #e0e0e0;
  background: #fafafa;
  z-index: -1;
}
select {
  /** for the dropdown indicator */
  appearance: none;
  background-image: url("../images/select-arrow.svg");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
}
.form-radio {
  margin-bottom: 12px;
}
.form-radio label {
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0em;
}
.upload-box {
  background: #fafafa;
  border: 1px dashed #e0e0e0;
  padding: 24px 15px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0em;
  color: #8f8f8f;
  cursor: pointer;
}
.upload-box span {
  display: block;
  margin-top: 10px;
}
.dropzone-wrapper {
  position: relative;
}
.dropzone-wrapper input {
  position: absolute;
  outline: none !important;
  width: 100%;
  height: 100% !important;
  cursor: pointer;
  opacity: 0;
}
.dropzone-wrapper {
  transition: all 0.4s ease-in-out;
}
.uploaded-file {
  padding-top: 10px;
  display: none;
}
.dropzone-wrapper.dragover,
.dropzone-wrapper:hover {
  background-color: #fafafa !important;
}
.progress-box {
  background-color: #fafafa;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  padding: 18px 16px;
}
.progress-box progress {
  width: 100%;
}
.progress-box span.progress-span {
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0em;
  color: #8f8f8f;
  display: block;
  margin-top: 8px;
}
.progress-box span strong {
  color: #73a385;
}
.progress-box h6 {
  font-size: 15px;
  font-weight: 600;
  line-height: 26px;
  letter-spacing: 0em;
  margin: 0;
}
.progress-box h6 svg {
  margin-top: -4px;
}
progress {
  border-radius: 3px;
  height: 4px;
  /* border: 1px solid #dee2e6; */
}
progress::-webkit-progress-bar {
  background-color: #dee2e6;
}
progress::-webkit-progress-value {
  background-color: #73a385;
}
/*media query*/

@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1460px;
  }
}
@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1340px;
  }
}
@media (min-width: 1200px) {
  .nav-links li a {
    margin: 5px 10px;
  }
}

@media (max-width: 991px) {
  .form-container .hchf-form {
    padding: 30px 20px;
  }
  .signin .img .imgg {
    width: 100%;
    padding: 20px;
  }
  .signin .img .imgg img {
    top: 0;
    left: 0;
  }
  .nav-banner::before {
    width: 100%;
  }
  .hchf-form-col {
    background-color: #fff;
    padding-bottom: 100px;
  }
  .hchf-form {
    padding: 50px 0;
    margin-top: 0;
  }
  .signin .img {
    padding: 100px 0 50px 0;
  }
  .signin .img .imgg img {
    height: 300px;
  }
}
