@import url(https://fonts.googleapis.com/css?family=Montserrat:300,400,400i,500,500i,600,600i,700,700i%7CRoboto:400,400i,500,500i,700,700i);
@import url(https://fonts.googleapis.com/css2?family=Heebo:wght@300;500;600;700;800&family=Roboto:wght@300;400;500;700&display=swap);

body, html {
  height: 100%;
  margin: 0;
  color: #303030;
  background: #FFFFFF;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden !important;
}

body.modal-open {
  overflow: hidden;
}


/* Loader Styles start here */
.loader-wrapper {
  --line-width: 5px;
  --curtain-color: #f1faee;
  --outer-line-color: #55675F;
  --middle-line-color: #00844B;
  --inner-line-color: #303030;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  z-index:1000;
}

.loader {
  display:block;
  position: relative;
  top:50%;
  left:50%;
/*   transform: translate(-50%, -50%); */
  width:100px;
  height:100px;
  margin:-75px 0 0 -75px;
  border:var(--line-width) solid transparent;
  border-top-color: var(--outer-line-color);
  border-radius:100%;
  -webkit-animation: spin 2s linear infinite;
          animation: spin 2s linear infinite;
  z-index:1001;
}

.loader:before {
  content:"";
  position: absolute;
  top:4px;
  left:4px;
  right:4px;
  bottom:4px;
  border:var(--line-width) solid transparent;
  border-top-color: var(--inner-line-color);
  border-radius:100%;
  -webkit-animation: spin 3s linear infinite;
          animation: spin 3s linear infinite;
}

.loader:after {
  content:"";
  position: absolute;
  top:14px;
  left:14px;
  right:14px;
  bottom:14px;
  border:var(--line-width) solid transparent;
  border-top-color: var(--middle-line-color);
  border-radius:100%;
  -webkit-animation: spin 1.5s linear infinite;
          animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
  0%   { 
    -webkit-transform: rotate(0deg); 
      -ms-transform: rotate(0deg); 
          transform: rotate(0deg);
  }
  100% { 
    -webkit-transform: rotate(360deg); 
      -ms-transform: rotate(360deg); 
          transform: rotate(360deg);
  }
}
@keyframes spin {
  0%   { 
    -webkit-transform: rotate(0deg); 
      -ms-transform: rotate(0deg); 
          transform: rotate(0deg);
  }
  100% { 
    -webkit-transform: rotate(360deg); 
      -ms-transform: rotate(360deg); 
          transform: rotate(360deg);
  }
}

.loader-wrapper .loader-section {
  position:fixed;
  top:0;
  background:var(--curtain-color);
  width:51%;
  height:100%;
  z-index:1000;
}

.loader-wrapper .loader-section.section-left {
  left:0
}
.loader-wrapper .loader-section.section-right {
  right:0;
}

/* Loaded Styles */ 
.loaded .loader-wrapper .loader-section.section-left {
  transform: translateX(-100%);
  transition: all 0.7s 0.3s cubic-bezier(0.645,0.045,0.355,1.000);
}
.loaded .loader-wrapper .loader-section.section-right {
  transform: translateX(100%);
  transition: all 0.7s 0.3s cubic-bezier(0.645,0.045,0.355,1.000);
}
.loaded .loader {
  opacity: 0;
  transition: all 0.3s ease-out;
}
.loaded .loader-wrapper {
  visibility: hidden;
  transform:translateY(-100%);
  transition: all .3s 1s ease-out;
}

.row.custom{ margin: auto;}

/* Preloader */
#loader {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 70px;
  height: 70px;
  margin: -76px 0 0 -76px;
  border: 16px solid #f6f6f6;
  border-radius: 50%;
  border-top: 16px solid #00844B;
  border-bottom: 16px solid #00844B;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
}

.navbar-light .navbar-toggler {
    box-shadow: none;
  }

  li.nav-item.dropdown{}

.navbar-expand-lg .navbar-nav .dropdown-menu{
  position: absolute;
  right: 0;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


#myDiv {
  /* display: none; */
}

a:hover {
  text-decoration: none;
}

.navbar-login {
  width: 305px;
  padding: 10px;
  padding-bottom: 0px;
}

.navbar-login-session {
  padding: 10px;
  padding-bottom: 0px;
  padding-top: 0px;
}

.icon-size {
  font-size: 87px;
}

.bg {
  background-image: url("../assets/img/bg-3.jpg");
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.bg-2 {
  background: #F0F2F5;
  /* min-height: 100vh; */
  position: relative;
}
.bg-3 {
  background: #ffffff;
}

.darkPreview {
  background: #303030;
  min-height: 100vh;
  position: relative;
}

.jumbotron {
  width: 100%;
  background-color: #55675F;
  background-image: url("../assets/img/bg-6.jpg");
  background-position:top;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  height: 40vh;
  margin: 0;
  text-align: left;
}

.jumbotron.style-2 {
  width: 100%;
  background-color: #55675F;
  background-image: url("../assets/img/bg-5.jpg");
  background-position:center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  height: 35vh;
  margin: 0;
  text-align: left;
}

#jumbotron-header {
  min-height: 100%;
  display: flex;
  align-items: center;
}

#jumbotron-header h1 {
  font-family: 'Heebo', sans-serif;
  font-size: 42px;
  color: #FFFFFF;
  font-weight: 600;
}

#jumbotron-header p {
  font-size: 20px;
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  margin-top: 30px;
}

#service {
  background: #fff;
}

.notice-bar {
  background-color: #E02020;
  padding: 6px;
}

.notice-bar a {
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  font-family: 'Heebo', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2px;
}

.navbar {
  /* padding: 15px 0; */
}

.navbar-2 {
  padding: 15px !important;
}

.navbar.bg-white {
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.10);
}

.navbar-brand img {
  max-width: 200px;
}

.navbar-light .navbar-nav .nav-link {
  color: #55675F;
  font-size: 15px;
  font-family: 'Heebo', sans-serif;
  font-weight: 400;
}

.navbar-light .navbar-nav .nav-link:hover {
  color: #00844B;
}

.navbar-light .navbar-nav .active>.nav-link, .navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show>.nav-link {
  color: #00844B !important;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-left: 30px;
}

.carousel {
  height: 60vh;
}
.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 100%;
  }

.carousel-item {
  height: 100%;
  background: no-repeat ;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.item-1 {
  background-image: url("../assets/img/bg-4.jpg") !important;
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
}

.item-2 {
  background-image: url("../assets/img/bg-2.jpg") !important;
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
}

.item-3 {
  background-image: url("../assets/img/bg-1.jpg") !important;
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: 50%;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
}

.cta{
  margin-top: 60px;
  display: flex;
  flex-direction: row;
}

.cta a.btn.lrg{
  width: 280px;
  margin: 0;
}

.cta a:last-child{
  margin-left: 20px;
}

.chairmans-msg{
  margin-top: 50px;
}
.chairmans-msg p{
  font-size: 16px !important;
}

.chairmans-photo{
  display: flex;
  justify-content: center;
  align-items: center;
  /* max-height: 400px; */
}

.logo-footer img {
  max-width: 200px;
}

.logo-footer p {
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #303030;
  margin-top: 20px;
}

footer {
  border-top: solid 2px #00844B;
  background-color: #fff;
  padding: 50px 0px;
}

footer .links {
  display: table;
  /* margin: auto; */
  width: auto;
}

footer .links p.link-title {
  font-size: 16px;
  font-family: 'Heebo', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #909090;
  margin-bottom: 20px;
  letter-spacing: 0px;
}

footer .links p {
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: 30px;
  color: #303030;
  margin-bottom: 20px;
}

footer .links ul {
  padding: 0;
}

footer .links ul li {
  font-family: 'Montserrat', sans-serif;
  display: list-item;
  list-style: none;
  margin: 10px 0;
  color: #303030;
  font-size: 14px;
  font-weight: 400;
}

footer .links ul li a {
  text-decoration: none;
  color: #303030;
}

footer .links ul li a:hover {
  text-decoration: none;
  color: #00844B;
}

footer.footer-2 {
  border: none !important;
  background: #F0F2F5 !important;
  padding: 20px;
  color: #55675F;
  font-size: 12px;
  font-weight: 300;
  position: static;
  bottom: 0;
  left: 0;
  right: 0;
}

.carousel-fade .carousel-inner .item {
  opacity: 0;
  transition-property: opacity;
  transition-duration: 4s;
  transition-timing-function: linear;
}

.carousel-fade .carousel-inner .active {
  opacity: 1;
}

.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  left: 0;
  opacity: 0;
  z-index: 1;
}

.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}

.carousel-fade .carousel-control {
  z-index: 2;
}

@media all and (transform-3d), (-webkit-transform-3d) {

  .carousel-fade .carousel-inner>.item.next,
  .carousel-fade .carousel-inner>.item.active.right {
    opacity: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  .carousel-fade .carousel-inner>.item.prev,
  .carousel-fade .carousel-inner>.item.active.left {
    opacity: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  .carousel-fade .carousel-inner>.item.next.left,
  .carousel-fade .carousel-inner>.item.prev.right,
  .carousel-fade .carousel-inner>.item.active {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.container {
  position: relative;
}

.container-fluid {
  width: 100%;
  padding-right: 120px;
  padding-left: 120px;
}

.header-content {
  position: relative;
  padding: 100px 0px 40px 0px;
  margin: auto;
  /* width: 96.66666666666666%; */
  color: #404040;
  z-index: 99;
  height: 600px;
  display: flex;
  flex-direction:
}

.header-content h1 {
  font-size: 48px;
  color: #303030;
  margin-bottom: 30px;
  font-family: 'Heebo', sans-serif;
}

.header-content p{
  font-size: 18px;
  color: #303030;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
  line-height: 32px;
  font-weight: 400;
}

.header-content  ul {
  font-size: 18px;
  color: #303030;
  margin-bottom: 60px;
  font-family: 'Montserrat', sans-serif;
  line-height: 32px;
  font-weight: 400;
  padding-inline-start: 20px;
}
.header-content  li{
  list-style-position: outside;
  margin-bottom: 20px;
}

.btnGrad, .btnGrad-1, .btnGrad-2, .btnGrad-3, .btnGrad-4, .btnGrad-default, .btnGrad-default-outline, .btnPlain, .btnRed {
  /* background: radial-gradient(circle at top left, #00844B, #256437) !important; */
  color: #FFFFFF;
  padding: 15px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  line-height: normal;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
  outline: none;
  border-radius: 4px;
  /* max-width: 250px; */
}

.btnGrad {
  background: radial-gradient(circle at top left, #00844B, #256437) !important;
}

.btnRed {
  background: #E02020;
  color: #FFFFFF;
}

.btnPlain {
  background: #00844B !important;
  color: #fff;
}

.btnGrad-default {
  background: #55675F !important;
}

.btnGrad-default-outline {
  background: #ffffff !important;
  border: 2px solid #55675F;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  color: #55675F;
  /* padding: 15px 50px; */
}

.btnGrad-default-outline:hover {
  color: #55675F;
  box-shadow: none;
}

.btnRed:hover, .btnPlain:hover {
  color: #FFFFFF;
  box-shadow: none;
}

.actionBtn {
  background: #ffffff !important;
  border: 1px solid #55675F;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  color: #55675F;
  font-weight: 500;
  box-shadow: none;
  border-radius: 4px;
  width: 100px;
}

/* .btnGrad{
  background: radial-gradient(circle at top left, #00844B, #256437);
}

.btnGrad-1{
  background: radial-gradient(circle at top left, #E8A300, #F6C800);
}

.btnGrad-2{
  background: radial-gradient(circle at top left, #E02020, #BF1100);
}

.btnGrad-3{
  background: radial-gradient(circle at bottom left, #8EA199, #55675F);
}
.btnGrad-4 {
  background: radial-gradient(circle at top left, #56A3A3, #568181);
} */
a.btnOutline {
  color: #00844B;
  border: solid 2px #00844B;
  padding: 14px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  line-height: normal;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
  outline: none !important;
  border: solid 2px #00844B;
  /* background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(101deg, #00844B, #256437); */
  background-origin: border-box;
  background-clip: content-box, border-box;
  box-shadow: 2px 1000px 1px #fff inset;
  border-radius: 4px;
}

a.btnOutline:hover, .btnOutline:hover {
  box-shadow: none;
  color: #00844B;
  outline: none !important;
}

.btnGrad:focus, .btnOutline:focus {
  box-shadow: none;
  ;
}

.btnGrad:hover, .btnGrad-1:hover, .btnGrad-2:hover, .btnGrad-3:hover, .btnGrad-4:hover, .btnGrad-default:hover {
  box-shadow: none;
  color: #FFFFFF;
  outline: none !important;
}

[type="radio"]:checked,
[type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}

[type="radio"]:checked+label,
[type="radio"]:not(:checked)+label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #303030;
  font-size: 18px;
  font-family: 'Montserrat', sans-serif;
}

[type="radio"]:checked+label:before,
[type="radio"]:not(:checked)+label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #ddd;
  border-radius: 100%;
  background: #fff;
}

[type="radio"]:checked+label:after,
[type="radio"]:not(:checked)+label:after {
  content: '';
  width: 12px;
  height: 12px;
  background: #00844B;
  position: absolute;
  top: 4px;
  left: 4px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

[type="radio"]:not(:checked)+label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

[type="radio"]:checked+label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

header.forms {
  display: block;
}

.authBlock {
  display: block;
  margin-top: 30px;
}

.modalCard{
  box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
  padding: 40px;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.modalCard .card-img{
  margin-bottom: 30px;
  }

.modalCard .card-title{
  margin-bottom: 10px;
}

.modalCard .card-body{
  padding: 10px;
  margin-bottom: 20px;
}

.modalCard .card-footer{
  background-color: transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* padding-top: 20px; */
  width: 100%;
  border: none;
}

.modalCard .card-footer a{
  color: #909090;
}

.modalCard .card-footer a.btn{
  color: #FFFFFF;
}

.modalCard .card-footer a:hover, .modalCard .card-footer a:focus{
  color: #FFFFFF;
}

.modalCard .card-footer button{
  margin: 0;
  margin-bottom: 20px;
}

.modalCard h5{
  font-size: 21px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}

.modalCard p{
  font-size: 16px !important;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  margin: auto !important;
  margin-bottom: 20px;
}


.card.authCard {
  box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
  padding: 35px 30px;
  border-radius: 4px;
  border: none;
  text-align: left;
}

.card.authCard-2 {
  box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
  padding: 40px;
  border-radius: 4px;
  border: none;
  text-align: left;
}

.card.authCard h4, .card.authCard-2 h4 {
  color: #00844B;
  font-family: 'Heebo', sans-serif;
  font-size: 24px;
  margin-bottom: 10px;
}

.card.authCard p, .card.conCard p {
  color: #55675F;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  margin: 0;
}

.card.authCard .card-body {
  padding: 20px 0 0;
}

.card.conCard {
  box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
  padding: 40px 30px;
  border-radius: 4px;
  border: none;
}

.card.conCard h2 {
  color: #55675F;
  font-family: 'Montserrat', sans-serif;
  font-size: 21px;
  font-weight: 600;
}

.card.conCard p {
  color: #55675F;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  margin: 10px 0 30px;
}

.formLabel {
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  color: #55675F
}

input, input.form-control, input:-internal-autofill-selected  {
  border: solid 1px #ccc;
  border-radius: 4px;;
  padding: 20px 10px;
  color: #303030;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  margin-bottom: 20px;
}

.form-control:focus {
  box-shadow: none;
  border: solid 1px #949796;
}

.form-control::after {
  color: #303030;
}

a.loginLink {
  color: #00844B;
  font-weight: 600;
}

a.loginLink:hover {
  text-decoration: none;
}

input.customChk {
  width: 25px;
  height: 25px;
}

button.close {
  line-height: 0px;
  font-size: 28px;
  position: absolute;
  right: 20px;
  top: 20px;
  color: #ccc;
  box-shadow: none;
  text-align: center;
}

#verifyForm {
  width: 100%;
  /* margin: 25px auto 25px; */
}

#verifyForm input {
  margin: 0 auto 20px;
  text-align: center;
  line-height: 60px;
  font-size: 50px;
  border: solid 1px #ccc;
  outline: none;
  width: 100%;
  transition: all .2s ease-in-out;
  border-radius: 3px;
  font-size: 30px;
  color: #303030;
}

#verifyForm input:focus {
  border-color: #55675F;
  box-shadow: 0 0 3px #ccc inset;
}

#verifyForm input::selection {
  background: transparent;
}

ul.pwdConditions {
  padding-inline-start: 0px;
}

ul.pwdConditions li {
  list-style: none;
  color: #404040;
  font-size: 14px;
  font-weight: 400;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 20px;
}

ul.pwdConditions li:before {
  content: '✓';
  padding: 0 10px 0 0;
  color: #00844B;
}

.field-icon {
  float: right;
  margin-right: 20px;
  margin-top: -43px;
  position: relative;
  z-index: 2;
}

.card .card-image {
  display: block;
  margin: auto;
}

.modal-content.notice {
  max-width: 380px;
  margin: auto;
  padding: 0;
}

.modal-content.pwdReset {
  width: 100%;
  margin: auto;
  padding: 0;
}

.modal-content.notice .authBlock {
  margin-top: 0;
}

.contenttBlock {
  padding: 80px 0;
  text-align: center;
}

.contenttBlock-1 {
  padding: 80px 0;
  background: #FFFFFF;
}

.contenttBlock-2 {
  padding: 60px 0;
  text-align: center;
}

.contenttBlock-3 {
  padding: 60px 0;
  text-align: center;
}

.contenttBlock-2 h2.sectionTitle {
  font-size: 32px;
  font-family: 'Heebo', sans-serif;
  font-weight: 400;
  color: #303030;
}

.sectionTitle {
  margin-bottom: 20px;
}

.sectionTitle h2{
  font-size: 32px;
  color: #303030;
}

.contenttBlock p, .contenttBlock-2 p {
  font-size: 16px;
  color: #303030;
  font-family: 'Montserrat', sans-serif;
  margin-top: 30px;
  margin-bottom: 30px;
}

.card.service-card {
  /* padding: 30px; */
  border-radius: 4px;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
  text-align: left;
}

.card.service-card .serviceTitle {
  padding: 30px;
  border-bottom: solid 1px #ccc;
}

.serviceTitle h2 {
  font-size: 21px;
  margin: 0;
}

.card.service-card .serviceDescription {
  padding: 20px 30px 40px;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
}

.card.service-card .serviceDescription p {
  margin: 10px 0 30px;
  font-size: 15px;
  font-family: 'Montserrat', sans-serif;
}

a.serviceLink {
  color: #00844B;
}

a.serviceLink:hover {
  color: #00844B;
  font-weight: 600;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -200px;
  color: #00844B;
  min-width: 250px;
  padding: 10px 0;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.dropdown-item {
  color: #55675F;
  padding: 15px 25px;
  font-size: 14px;
  font-weight: 500;
}

.dropdown-item.actionItem {
  color: #55675F;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 400;
}

.dropdown-item:hover {
  color: #00844B;
}

.dropdown-item:active {
  /* color: #55675F; */
  background-color: transparent;
}

.profilBlock {
  padding: 5px 25px;
  color: #00844B;
}

.profilBlock h5 {
  color: #55675F;
  text-align: left;
  font-size: 16px;
  margin: 0;
}

.profilBlock i{
  color: #55675F;
  text-align: left;
  font-size: 12px;
}

.userProfile img{
  width: 50px;
  padding-left: 10px;
}
.userProfile img{
  width: 50px;
  padding:
}

.service-header, .service-header-1, .service-header-2, .service-header-3, .service-header-4 {
  padding: 20px 50px;
  color: #FFFFFF;
  border-radius: 4px 4px 0 0;
  text-align: left;
  background: #00844B;
}

.instrction-header{
  color: #404040;
  padding: 20px 50px;
  border-radius: 4px 4px 0 0;
}

.preview-header {
  padding: 20px 50px;
  color: #FFFFFF;
  border-radius: 4px 4px 0 0;
  text-align: left;
  background: #00844B;
}

/* .service-header{
  background: #00844B;
}
.service-header-1 {
  background: #E8A300;
}
.service-header-2 {
  background: #E02020;
}
.service-header-3 {
  background: #0D66CF;
}
.service-header-4 {
  background: #56A3A3;
} */
.greenText {
  color: #00844B !important;
}

.muteText{
  color: #909090;
}

.navyText {
  color: #55675F !important;
}

.mustardText {
  color: #E8A300 !important;
}

.redText {
  color: #E02020 !important;
}

.blueText {
  color: #0D66CF !important;
}

.cyanText {
  color: #56A3A3 !important;
}

.serviceTitle.mustardCard {
  border-bottom: solid 2px #E8A300 !important;
}

.serviceTitle.redCard {
  border-bottom: solid 2px #E02020 !important;
}

.serviceTitle.blueCard {
  border-bottom: solid 2px #0D66CF !important;
}

.serviceTitle.cyanCard {
  border-bottom: solid 2px #56A3A3 !important;
}

.serviceTitle.greenCard {
  border-bottom: solid 2px #00844B !important;
}

.service-header h2, .service-header-1 h2, .service-header-2 h2, .service-header-3 h2, .service-header-4 h2, .preview-header h2 {
  margin: 0;
  font-size: 18px;
  font-family: 'Heebo'
}

.service-description {
  padding: 15px 50px 50px;
  background: #FFFFFF;
  text-align: left;
}

.service-description p {
  margin: 30px 0;
  font-size: 16px;
}

ul.prqList {
  list-style: outside;
  padding-left: 30px;}

ul.prqList li {
  color: #404040;
  font-size: 16px;
  font-weight: 400;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 20px;
}

ul.prqList li:before {
  padding: 0 10px 0 0;
  color: #55675F;
}

.instructions {
  margin: 40px 0px 50px;
}

.instructions h4 {
  font-size: 18px;
  margin-bottom: 30px;
  color: #55675F;
}

.card.tableCard {
  padding: 30px 50px;
  border: none !important;
  border-radius: 4px;
  background-color: #ffffff;
}

.tableTitle {
  border-bottom: solid 1px #E0E0E0;
  padding: 0px 0 20px;
  margin: 0 0 30px;
}

.tableTitle h1 {
  font-size: 20px;
  color: #55675F;
  margin: 0;
}

.carousel-control-prev, .carousel-control-next {
  display: none;
}

.decisionCard{
  padding: 40px 30px;
  text-align: left;
}

.decisionCard .card-body{
  padding: 0;
  text-align: left;
}

.card.decisionCard h4 {
    color: #00844B;
    font-family: 'Heebo', sans-serif;
    font-size: 22px;
    margin-bottom: 30px;
}

.decisionWrap{
  display: flex;
  margin-top: 30px !important;
  margin-bottom: 10px !important;

}

.card-body h5{
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 40px;
}
.decisionWrap a{
  padding: 12px;
  width: 150px !important;
}


label {
  font-family: "Montserrat", sans-serif;
  color: #55675f;
  font-size: 14px;
  display: block;
}

/* Notification Updaate */

.nav-item{
  display: flex;
flex-direction: row;
align-content: center;
align-items: center;
position: relative;
}

.nav-link{
  color: #55675F;
}

.nav-link.nav-btn{
  border: solid 1px #00844B;
  background-color: #00844B;
  color: #FFFFFF !important;
  border-radius: 4px;
  padding: 8px 20px!important;
  margin-left: 30px;
}

.card.noticeCard{
  border: none;
  padding: 15px;
  border-radius: 5px;
  margin: 10px 0;
  background: #fff;
  color: #404040;
}
.card.noticeCard .card-title{
  font-family: 'Heebo', sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  color: #303030;
}
.card.noticeCard p{
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  margin-top: 5px;
}
.card.noticeCard a{
  font-size: 14px;
  color: #e02020;
  margin-top: 15px;
  text-decoration: underline;
  font-style: italic;
}
.card.noticeCard:hover{
  background: #F4F9F7;
}

li.nav-item.dropdown.notify{
  position: relative;
  width: 85px;
  height: 55px;
}

.bell {
  position:relative;
  display:inline-block;
  margin: 0;
  padding:0;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  border: solid 1px #55675F;
}

.bell .anchor {
  transform-origin:center top;
  display:inline-block;
  margin:7px;
  padding:0;
}

.bell .layer-1 {
  color:#55675F;
  z-index:9;
  animation: animation-layer-1 5000ms infinite;
  opacity:0;
}

.bell .layer-2 {
  color:#55675F;
  z-index:8;
  position:absolute;top:0;left:0;
  animation: animation-layer-2 5000ms infinite;
}

.bell .layer-3 {
  color:#333642;
  z-index:7;
  position:absolute;top:0;left:0;
  animation: animation-layer-3 5000ms infinite;
}

@keyframes animation-layer-1 {
  0% { transform: rotate(0deg);opacity:0; }
  8.0% { transform: rotate(0deg);opacity:0; }
  12.0% { transform: rotate(42deg);opacity:.5; }
  16.0% { transform: rotate(-35deg);opacity:.4; }
  20.0% { transform: rotate(0deg);opacity:.1; }
  23.0% { transform: rotate(28deg);opacity:.3; }
  26.0% { transform: rotate(-20deg);opacity:.2; }
  29.0% { transform: rotate(0deg);opacity:.1; }
  31.0% { transform: rotate(16deg);opacity:0; }
  33.0% { transform: rotate(-12deg);opacity:0; }
  35.0% { transform: rotate(0deg);opacity:0; }
  37.0% { transform: rotate(-6deg);opacity:0; }
  39.0% { transform: rotate(0deg);opacity:0; }
}

@keyframes animation-layer-2 {
  0% { transform: rotate(0deg); }
  8.0% { transform: rotate(0deg); }
  12.0% { transform: rotate(42deg); }
  16.0% { transform: rotate(-35deg); }
  20.0% { transform: rotate(0deg); }
  23.0% { transform: rotate(28deg); }
  26.0% { transform: rotate(-20deg); }
  29.0% { transform: rotate(0deg); }
  31.0% { transform: rotate(16deg); }
  33.0% { transform: rotate(-12deg); }
  35.0% { transform: rotate(0deg); }
  37.0% { transform: rotate(-6deg); }
  39.0% { transform: rotate(0deg); }
  40.0% { transform: rotate(6deg); }
  44.0% { transform: rotate(-3deg); }
  49.0% { transform: rotate(2deg);}
  55.0% { transform: rotate(0deg); }
  62.0% { transform: rotate(1deg); }
  70.0% { transform: rotate(0deg); }
}

@keyframes animation-layer-3 {
  0% { transform: rotate(0deg);opacity:1; }
  8.0% { transform: rotate(0deg);opacity:1; }
  12.0% { transform: rotate(52deg);opacity:.5; }
  16.0% { transform: rotate(-48deg);opacity:.4; }
  20.0% { transform: rotate(0deg);opacity:1; }
  23.0% { transform: rotate(42deg);opacity:.3; }
  26.0% { transform: rotate(-30deg);opacity:.2; }
  29.0% { transform: rotate(0deg);opacity:1; }
  31.0% { transform: rotate(26deg);opacity:.15; }
  33.0% { transform: rotate(-18deg);opacity:.1; }
  35.0% { transform: rotate(0deg);opacity:1; }
  37.0% { transform: rotate(-12deg);opacity:.8; }
  40.0% { transform: rotate(6deg);opacity:1; }
  44.0% { transform: rotate(-3deg);opacity:.8; }
  49.0% { transform: rotate(2deg);opacity:1; }
  55.0% { transform: rotate(0deg);opacity:1; }
  62.0% { transform: rotate(1deg);opacity:1; }
  70.0% { transform: rotate(0deg);opacity:1; }
}

ul.menu li.nav-item a[data-bubble]:after {
	content:attr(data-bubble);
	position:absolute;
   top: 5px;
	right: 12px;
	height:1.5em;
	line-height:1.6em;
	padding:0 .46em;
	text-align:center;
	text-shadow:0 0.063em 0 rgba(0,0,0,.2);
	background-color:#E02020;
	color:#FFF;
  font-size: 10px;
	box-shadow:0 0.063em 0.063em rgba(0,0,0,.2);
	border-radius:50%;
	z-index:1;
  -webkit-transform: translateZ(0);/*Prevents text flicker*/
	will-change: transform;
}

.dropdown-menu.notify-drop {
  min-width: 450px;
  background-color: #fff;
  min-height: 500px;
  max-height: 500px;
  padding: 15px;
  border: solid 1px #F0F2F5;
  border-radius: 5px;
  position: absolute !important;
  left: -380px !important;
}
.dropdown-menu.notify-drop .notify-drop-title {
  border-bottom: 1px solid #F0F2F5;
  padding: 15px 0;
  margin-bottom: 10px;
}
.dropdown-menu.notify-drop .drop-content {
  min-height: 380px;
  max-height: 380px;
  overflow-y: scroll;
  background-color: #fff;
}

.dropdown-menu.notify-drop .drop-content li{
  list-style: disc;
  font-size: 24px;
}
.dropdown-menu.notify-drop .drop-content::-webkit-scrollbar-track
{
  background-color: #F5F5F5;
}

.dropdown-menu.notify-drop .drop-content::-webkit-scrollbar
{
  width: 4px;
  background-color: #fff;
}

.dropdown-menu.notify-drop .drop-content::-webkit-scrollbar-thumb
{
  background-color: #ccc;
}

.dropdown-menu.notify-drop .drop-content > li:nth-child(2n+0) {
  background-color: #fafafa;
}
.dropdown-menu.notify-drop .drop-content > li:after {
  content: "";
  clear: both;
  display: block;
}
.dropdown-menu.notify-drop .drop-content > li:hover {
  background-color: #fcfcfc;
}
.dropdown-menu.notify-drop .drop-content > li:last-child {
  border-bottom: none;
}
.dropdown-menu.notify-drop .drop-content > li .notify-img {
  float: left;
  display: inline-block;
  width: 45px;
  height: 45px;
  margin: 0px 0px 8px 0px;
}

.dropdown-menu.notify-drop .rIcon:hover {
  color: #333;
}
.dropdown-menu.notify-drop .drop-content > li a {
  font-size: 14px;
  font-weight: normal;
}
.dropdown-menu.notify-drop .drop-content > li {
  font-weight: bold;
  font-size: 11px;
}
.dropdown-menu.notify-drop .drop-content > li hr {
  margin: 5px 0;
  width: 100%;
  border-color: #e2e2e2;
}
.dropdown-menu.notify-drop .drop-content .pd-l0 {
  padding-left: 0;
}
.dropdown-menu.notify-drop .drop-content > li p {
  font-size: 14px;
  color: #666;
  font-weight: normal;
  margin: 3px 0;
}

#ImportantNotice .modal-body, .modal-body,#ImportantNoticeContact .modal-body, .modal-body{
  padding: 30px;
}
#ImportantNotice .modal-header,
#ImportantNoticeContact .modal-header{
        background: #E02020;
color: #fff;
font-size: 14px;
text-transform: uppercase;
font-family: 'Montserrat', sans-serif;
font-weight: 500;
padding: 20px 30px;
border: none;
}
.modal-header{
  color: #404040;
  font-size: 14px;
  text-transform: capitalize;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  padding: 20px 30px;
  flex-direction: column;
  }

#ImportantNotice .modal-header .modal-title,
#ImportantNoticeContact .modal-header .modal-title{
font-size: 16px;
font-weight: 600;
}
#ImportantNotice .modal-footer, .modal-footer,
#ImportantNoticeContact .modal-footer, .modal-footer{
justify-content: flex-start;
padding: 15px 30px;
}
#ImportantNotice .modal-footer button,
#ImportantNoticeContact .modal-footer button{
padding: 12px 30px !important;
margin: 10px 0;
}
#ImportantNotice button.close,
#ImportantNoticeContact button.close{
  color: #FFFFFF;
  margin: 0px;
  font-weight: 400;
  font-size: 32px;
}

#contactForm .form-control{
  margin-bottom: 10px;
}

.form-card{
  border: none;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.form-card .card-body{
  padding: 40px;
}

.form-header{
  text-align: left;
  background-color: #F9F9F9;
  padding: 40px;
  padding-bottom: 0;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}

.form-header .nav.nav-tabs li:first-child{
  margin-right: 30px;
}

.form-header .nav.nav-tabs li{
  padding-bottom: 10px;
}

.form-header .nav.nav-tabs li a{
  color: #909090 !important;
  font-weight: 400;
  font-family: "Montserrat";
  padding-bottom: 10px;
  font-size: 14px;

}

.form-header .nav.nav-tabs li a.active{
  color: #00844B !important;
  font-weight: 500;
  border-bottom: solid 3px #00844B;
}

.alerts{
padding: 10px;
font-family: "Montserrat";
margin-bottom: 20px;
}

.alerts ul{
  list-style: outside;
  padding-left: 25px;
}

.alerts ul li{
  margin-bottom: 10px;
}

.alerts.error{
  background-color: #fdf6f6;
}

.alerts.error p, .alerts.error ul{
  font-size: 14px;
  margin: 10px;
  color: #E02020 !important;
}


/* camera */
#faceOverlay {
  position: relative;
  width: 300px;
  height: 300px;
  margin: auto;
  border: 2px dashed #666;
  border-radius: 50px;
  overflow: hidden;
}

#videoFeed {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#photoCanvas{
  display: block;
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.camera-control{
  display: flex; 
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
}

.modalCard .camera-control button{
  margin: 0px;
  padding: 20px;
}

p.sm-text{
  color: #55675F;
  font-size: 14px !important;
  margin-bottom: 20px;
}


