.bd-custom-text ul {
      list-style: none;
    }
    
    .bd-custom-text ul li {
      margin-top: 6px;
      padding: 2px;
      font-style: normal;
      text-emphasis: none;
    }
    
    
    .bd-custom-text ul li::before {
      content: "|  ";
    }
    
    .bd-custom-menu ul li:last-child {
      padding-left: 0.8em;
      padding-right: 0.8em;
      background: rgb(79,7,14);
      background: linear-gradient(90deg, rgba(79,7,14,1) 0%, rgba(168,15,30,1) 26%, rgba(205,77,89,1) 51%, rgba(139,14,26,1) 75%, rgba(70,7,13,1) 100%);
    
    }
    
    .bd-custom-menu ul li:hover:last-child {
      background: rgb(79,7,14);
      background: linear-gradient(135deg, rgba(79,7,14,1) 0%, rgba(168,15,30,1) 26%, rgba(205,77,89,1) 51%, rgba(139,14,26,1) 75%, rgba(70,7,13,1) 100%);
    
    }
    
    .bd-custom-menu ul li:last-child a {
      color: #ffffff !important;
    }
    
    .bd-custom-btn-p a:hover, .bd-custom-btn-lg a:hover {
      color: #ffffff !important;
      background: rgb(79,7,14);
      background: linear-gradient(135deg, rgba(79,7,14,1) 0%, rgba(168,15,30,1) 26%, rgba(205,77,89,1) 51%, rgba(139,14,26,1) 75%, rgba(70,7,13,1) 100%);
    }
    
    .bd-custom-bg {
      background: rgb(79,7,14);
      background: linear-gradient(90deg, rgba(79,7,14,1) 0%, rgba(168,15,30,1) 26%, rgba(205,77,89,1) 51%, rgba(139,14,26,1) 75%, rgba(70,7,13,1) 100%);
    
    }

.bd-custom-mega a {
	color: #121212 !important;
}

.bd-custom-mega a:hover {
	color: #8B0E1A !important;
}

body::-webkit-scrollbar {
  width: 0.5em;
}
 
body::-webkit-scrollbar-track {
  background-color: transparent;
;
}
 
body::-webkit-scrollbar-thumb {
  background: rgb(79,7,14);
  background: linear-gradient(90deg, rgba(79,7,14,1) 0%, rgba(168,15,30,1) 26%, rgba(205,77,89,1) 51%, rgba(139,14,26,1) 75%, rgba(70,7,13,1) 100%);
}

.bd-custom-linkr a {
	color: #BFC5C9;
}

.bd-custom-linkr a:hover {
	color: #5AB0D4;
}











/*calculator css */


* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}

body {
  font-family: 'Source Sans Pro', sans-serif;
	background-color: #333;
	background-image: url(/assets/group-82.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}


#form-wrapper {
  height: auto;
	margin-top: 16px !important;
  width: 100%;
}

form {
  width: 640px;
}

.header {
	padding-bottom: 1.2em;
}

#form-wrapper .header h1{
	font-size: 1.4em;
}

#form-wrapper .title {
	font-weight: 700;
	color: #8B0E1A;
	letter-spacing: -0.5px;
	text-align: center;
	padding-bottom: 0.6em;
}

.first:after {
  overflow: hidden;
  display: inline-block;
  vertical-align: bottom;
  -webkit-animation: ellipsis steps(4,end) 900ms infinite;      
  animation: ellipsis steps(4,end) 2s infinite;
  content: "\2026"; /* ascii code for the ellipsis character */
  width: 0px;
}

@keyframes ellipsis {
  to {
    width: 1.25em;    
  }
}

@-webkit-keyframes ellipsis {
  to {
    width: 1.25em;    
  }
}

.trans {
  animation: fade-in-down 300ms ease-in;
}
@keyframes fade-in-down {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

label {
  font-size: 1.2em;
	letter-spacing: 0.2px;
  font-weight: 600;
}

.form-control, .form-select {
  border: 0px solid transparent;
  border-radius: 0px;
  background-color: #d7d7d7;
  padding: 0.8em 0.6em;
}

/* Buttons */

.btn {
  margin-top: 2em;
  border-radius: 0px;
  text-transform: uppercase;
  font-size: 1.1em;
}

.btn-primary {
  background: rgb(79,7,14);
  background: linear-gradient(180deg, rgba(79,7,14,1) 0%, rgba(168,15,30,1) 26%, rgba(205,77,89,1) 51%, rgba(139,14,26,1) 75%, rgba(70,7,13,1) 100%);
  border-color: rgb(79,7,14);
	color: #ffffff;
  transition: all ease-in-out 800ms;
}

.btn-primary:hover {
  border-color: rgb(79,7,14);
  background: rgb(79,7,14);
  background: linear-gradient(45deg, rgba(79,7,14,1) 0%, rgba(168,15,30,1) 26%, rgba(205,77,89,1) 51%, rgba(139,14,26,1) 75%, rgba(70,7,13,1) 100%);
}

/*progressbar*/
#progressbar {
	margin-bottom: 30px;
	overflow: hidden;
	/*CSS counters to number the steps*/
  padding-left: 0px;
	counter-reset: step;
  display: flex;
  justify-content: space-between;
}
#progressbar li {
	list-style-type: none;
	color: #8B0E1A;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 12px;
	width: 100%;
  text-align: center;
	position: relative;

}
#progressbar li:before {
	content: counter(step);
	counter-increment: step;
	width: 24px;
	line-height: 24px;
	display: block;
	font-size: 12px;
	color: #333;
	background: white;
	margin: 0 auto 5px auto;
}
/*progressbar connectors*/
#progressbar li:after {
	content: '';
	width: 100%;
	height: 2px;
	background: rgb(255, 255, 255);
	position: absolute;
	left: -50%;
	top: 9px;
	z-index: -1; /*put it behind the numbers*/
}
#progressbar li:first-child:after {
	/*connector not needed before the first step*/
	content: none; 
}
/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before,  #progressbar li.active:after{
	background: rgb(79,7,14);
  background: linear-gradient(180deg, rgba(79,7,14,1) 0%, rgba(168,15,30,1) 26%, rgba(205,77,89,1) 51%, rgba(139,14,26,1) 75%, rgba(70,7,13,1) 100%);
	color: #ffffff;
}