
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60px;
  line-height: 60px;
  background-color: #f5f5f5;
  
}

.nav-link:hover {
color: #ee7c3cff !important;
}

.nav-link{
  color: #fff !important;
}

.active{
  color: #ee7c3cff !important;
  background-color: transparent !important;
  /*text-decoration-line: underline !important;*/
}



.btn-primary{
  background-color: #ee7c3cff !important;
  border-color:  #ee7c3cff !important;
  
}

.btn-primary:hover{
  background-color: rgb(248, 160, 109) !important;
}

.border_gradient { 
  border-bottom: 5px solid transparent; 
  border-image: linear-gradient(to right, #ee7c3cff, rgba(238, 125, 60, 0.438)); 
  border-image-slice: 1; 
  padding: 5px; 
} 

tr:hover {
  background-color: rgba(214, 122, 26, 0.13);
}

tr a{
  color: #ee7c3cff;
  background-color: transparent;
  text-decoration: none;
}

tr a:hover{
  color: #0d1b2aff;
  background-color: transparent;
  text-decoration: underline;
}

tr:hover td {
  background-color: transparent; /* or #000 */
}

.back-nav {
  color: #ee7c3cff;
  background-color: transparent;
  text-decoration: none; 
}

.back-nav:hover {
  color: #0d1b2aff;
  background-color: transparent;
  text-decoration: none; 
}

.cards-wrapper {
  display: flex;
}
.card img {
  max-width: 100%;
  max-height: 100%;
}

.video-background-holder {
  position: relative;
  background-color: black;
  height: 100vh;
  min-height: 25rem;
  width: 100%;
  overflow: hidden;
}

.video-background-holder video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.video-background-content {
  position: relative;
  z-index: 2;
}

.video-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.table-scrollable {
  overflow-x: auto;
  max-width: 600px;
  box-shadow: inset 0 0 5px rgba(150, 150 ,150,0.35);
  margin: auto;
}

.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: rgba(13, 27, 42, 1);
  background-color: rgba(13, 27, 42, 0.8);
  overflow-x: hidden;
  transition: 0.5s;
}

.overlay_spinner {
  position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(13, 27, 42, 0.8);
      z-index: 1051;
}


.overlay_spinner_content{
   position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
}

.overlay-content {
  position: relative;
  top: 15%;
  width: 90%;
  text-align: left;
  margin-top: 0px;
  margin-left: 5%;
}

.overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 36px;
  color: #fff;
  display: block;
  transition: 0.3s;
}

.overlay a:hover, .overlay a:focus {
  color: #ee7c3cff;
}

.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
}

@media screen and (max-height: 450px) {
  .overlay a {font-size: 12px}
  .overlay .closebtn {
  font-size: 12px;
  top: 15px;
  right: 35px;
  }
}

.loader {
  width: 48px;
  height: 48px;
  border: 5px solid;
  border-color: #ee7c3cff transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

* {
  box-sizing: border-box;
}

.fab-wrapper {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
}
.fab-checkbox {
  display: none;
}
.fab {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 3rem;
  height: 3rem;
  background: #ee7c3cff ;
  border-radius: 50%;
  background: #1b263bff;
  box-shadow: 0px 5px 15px #81a4f1;
  transition: all 0.3s ease;
  z-index: 1;
  /*border-bottom-right-radius: 6px;*/
  border: 1px solid #415a77ff;
}

.fab:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
}
.fab-checkbox:checked ~ .fab:before {
  width: 90%;
  height: 90%;
  left: 5%;
  top: 5%;
  background-color: rgba(255, 255, 255, 0.2);
}
.fab:hover {
  background: #1b263bff;
;
  box-shadow: 0px 5px 20px 5px #81a4f1;
}

.fab-dots {
  position: absolute;
  height: 8px;
  width: 8px;
  background-color: #ee7c3cff;
  border-radius: 50%;
  top: 50%;
  transform: translateX(0%) translateY(-50%) rotate(0deg);
  opacity: 1;
  /*animation: blink 3s ease infinite;
  transition: all 0.3s ease;*/
}

.fab-dots-1 {
  left: 8px;
  animation-delay: 0s;
}
.fab-dots-2 {
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  animation-delay: 0.4s;
}
.fab-dots-3 {
  right: 8px;
  animation-delay: 0.8s;
}

.fab-checkbox:checked ~ .fab .fab-dots {
  height: 6px;
}

.fab .fab-dots-2 {
  transform: translateX(-50%) translateY(-50%) rotate(0deg);
}

.fab-checkbox:checked ~ .fab .fab-dots-1 {
  width: 32px;
  border-radius: 10px;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.fab-checkbox:checked ~ .fab .fab-dots-3 {
  width: 32px;
  border-radius: 10px;
  right: 50%;
  transform: translateX(50%) translateY(-50%) rotate(-45deg);
}

@keyframes blink {
  50% {
    opacity: 0.25;
  }
}

.fab-checkbox:checked ~ .fab .fab-dots {
  animation: none;
}

.fab-wheel {
  position: absolute;
  bottom: 0;
  right: 0;
  border: 1px solid #fff;
  width: 10rem;
  height: 10rem;
  transition: all 0.3s ease;
  transform-origin: bottom right;
  transform: scale(0);
}

.fab-checkbox:checked ~ .fab-wheel {
  transform: scale(1);
}
.fab-action {
  position: absolute;
  background: #1b263bff;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: White;
  box-shadow: 0 0.1rem 1rem rgba(24, 66, 154, 0.82);
  transition: all 1s ease;

  opacity: 0;
}

.fab-checkbox:checked ~ .fab-wheel .fab-action {
  opacity: 1;
}

.fab-action:hover {
  background-color: #ee7c3cff;
}

.fab-wheel .fab-action-1 {
  right: -1rem;
  top: 0;
}

.fab-wheel .fab-action-2 {
  right: 3.4rem;
  top: 0.5rem;
}
.fab-wheel .fab-action-3 {
  left: 0.5rem;
  bottom: 3.4rem;
}
.fab-wheel .fab-action-4 {
  left: 0;
  bottom: -1rem;
}

.iconClass{
  position: relative;
  color:#ee7c3cff;
}
.iconClass span{
  position: absolute;
  top: -5px;
  right: -16px;
  display: block;
}
.fade_rule {
        height: 1px;
        background-color: #E6E6E6;
        width: 66.0em;
        margin: 0 auto;
        background-image: linear-gradient(left , white 2%, #E6E6E6 50%, white 98%);
        background-image: -o-linear-gradient(left , white 2%, #E6E6E6 50%, white 98%);
        background-image: -moz-linear-gradient(left , white 2%, #E6E6E6 50%, white 98%);
        background-image: -webkit-linear-gradient(left , white 2%, #E6E6E6 50%, white 98%);
        background-image: -ms-linear-gradient(left , white 2%, #E6E6E6 50%, white 98%);
        background-image: -webkit-gradient( linear, left bottom, right bottom, color-stop(0.02, white), color-stop(0.5, gray), color-stop(0.98, white) );
}






