html, body {
	height: 100%;
	width: 100%;
	font-family: 'Montserrat', sans-serif;
	color: #1a4091;
}

label, p {
    font-size: .8rem;
}

/* Hide arrow in number input
 Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.hw-100 {
	height: 100%;
	width: 100%;
	padding: 0px;
	margin: 0px;
}

.h-100 {
	height: 100%;
	padding: 0px;
	margin: 0px;
}

.login-div {
	background-color: #fff;
}


.carousel-item {
  height: 100vh;
  min-height: 350px;
  background: no-repeat center center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.heading {
	font-weight: 600;
	text-transform: uppercase; 
}

.heading-homepage {
	font-weight: 900;
    font-family: 'Inter', sans-serif;
    font-size: 45px;
}

.sub-heading{
    font-size: 1.5rem; 
    color: #48A15A; 
    font-weight: bold;
    font-family: 'Inter', sans-serif;
    font-size: 30px;
}

.starter-label {
	font-size: .8rem;
}

.custom-input {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: .8rem;
    font-weight: 400;
    line-height: 1.5;
    color: #1a4091;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0px;
    margin-bottom: 1rem;
}

.custom-input:focus {
    color: #1a4091;
    background-color: #fff;
    border-color: #1a4091;
    outline: 0;
    box-shadow: none;
}

.starter-button-primary {
    color: #fff;
    background-color: #1a4091;
    border-color: #1a4091;
    font-size: .8rem;
    border-radius: 2px;
}

.starter-button-primary:hover, .starter-button-primary:not(:disabled):not(.disabled):active, .starter-button-primary.focus, .starter-button-primary:focus {
    color: #1a4091;
    background-color: #fff;
    border-color: #1a4091;
    font-size: .8rem;
    border-radius: 2px;
    box-shadow: none;
}

.btn-success.disabled, .btn-success:disabled {
    color: #fff;
    background-color: #1a4091;
    border-color: #1a4091;
}

.starter-button-primary:not(:disabled):not(.disabled).active:focus, .starter-button-primary:not(:disabled):not(.disabled):active:focus, .show>.starter-button-primary.dropdown-toggle:focus {
    box-shadow: none;
}

.starter-button-secondary, .starter-button-secondary:active, .starter-button-secondary:focus {
    color: #1a4091;
    background-color: #fff;
    border-color: #1a4091;
    font-size: .8rem;
    border-radius: 2px;
}

.starter-button-secondary:hover, .starter-button-secondary:not(:disabled):not(.disabled):active, .starter-button-secondary.focus, .starter-button-secondary:focus {
    color: #fff;
    background-color: #1a4091;
    border-color: #1a4091;
    font-size: .8rem;
    border-radius: 2px;
    box-shadow: none;
}

.starter-button-secondary:not(:disabled):not(.disabled).active:focus, .starter-button-secondary:not(:disabled):not(.disabled):active:focus, .show>.starter-button-secondary.dropdown-toggle:focus {
    box-shadow: none;
}


/* SESSION */

.navigation-sidebar {
    background-color: #1a4091;
}

.sidebar-ul {
    list-style-type:none;
    margin: 0px;
    padding: 0px;
}

.sidebar-li {
    background-color: #1a4091;
    padding: 15px 30px;
    border-bottom: 1px solid #b3b3b3;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
}

.sidebar-li-active {
    background-color: #fff;
    color: #1a4091;
    border: 1px solid #1a4091;
}

.nm {
    margin: 0px !important;
}

.starter-button-primary {
    color: #fff;
    background-color: #1a4091;
    border-color: #1a4091;
    font-size: .8rem;
    border-radius: 2px;
}

.video-header-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.video-overlay {
  position: relative;
  z-index: 2;
  height: 100vh;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.4);
}

.video-overlay h1,
.video-overlay p {
  color: #fff;
}

.video-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: 1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.video-content {
  position: relative;
  z-index: 3;
}

.text-content {
  max-width: 1000px;
  padding-left: 50px;
  margin-top: 350px;
}

.video-title {
  font-family: 'Inter', sans-serif;
  font-size: 55px;
  font-weight: 700;
}

.text-success {
    font-weight: bold; 
    font-family: 'Inter', sans-serif; 
    font-size: 40px;
    color:#48A15A;
    margin-top: 20px;
}

label.required::after {
    content: " *";
    color: red;
}


