/** ADD YOUR AWESOME CODES HERE **/
.bu{
	font-family:'Raleway', sans-serif;
}
.navbar-header .navbar-brand img {
    max-width:170px;
}
.slider-area .slider-wrapper .slider-item {
	height: 420px;
}

.slide-text {
	margin-top: 50px;
}

.parallax.parallax-off  {
	height: 350px;
	/*min-height: 350px;*/
	padding: 80px;
}

.social-box{
	width: 30px;
	text-align: left;
}

.box-title {
	height: 3em;
	/*text-align: center; vertical-align:middle; display: table-cell;*/ /* text-align center not working on display table-cell */
	display: flex;
	justify-content: center;
	align-items: center;
}

.box-title.increase-height{
	height: 4em;
}

.about-text hr {
	margin-top: 0px;
}

.box-image {
	height: 14rem;
	padding: 0 1rem;
	line-height:14rem; /*setting line-height = box ht solves the prob; other choice is display:table-cell; even that needs lineht. or parent to be table */ /*vertical-align:middle; - default*/
}

.about-text img {
	max-width: 100%;
	max-height: 14rem;
	height: auto;
	/*width:100%;*/
	object-fit: contain;
	object-position: 50% 50%;
	
	/*vertical-align:center;*/
}

/* if img width is less than 90%, then rescale img based on height and set width to auto - easier option: object-fit:contain - preserves aspect ratio */

.about-text-inner{
	height: 11.5rem;
	margin-bottom:2rem;
	margin-top:2rem;
	padding:0px 1rem;
	
	overflow:hidden;
	display:-webkit-box;
	-webkit-line-clamp: 6;
	text-overflow:ellipsis;
    -webkit-box-orient: vertical;
}

.about-text-inner.reduce-height{
	height: 6rem;
}

.about-text-inner:hover{
	/*height:auto;*/	/*adjust height as per content*/
	overflow:auto;		/*unset, visible - same*/
	-webkit-line-clamp: 100;
}

.about-text-inner::-webkit-scrollbar{
  width: 0.5rem;
}
ul.dropdown-content::-webkit-scrollbar {
  width: 1rem;
}
.about-text-inner::-webkit-scrollbar-track, ul.dropdown-content::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
}
.about-text-inner::-webkit-scrollbar-thumb, ul.dropdown-content::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
}
/*
select {
	width: 100%;
	opacity: 0.5;
    height: 40px; - not working; overridden by form.less
    border: none; 
	background: #F4F4F4; - not working; overridden by form.less
    border-bottom: 2px solid #EEE; - not working; overridden by form.less
	border-radius: 4px; - not working; overridden by form.less
    color: #354052; - not working; overridden by form.less
    padding: 0px 10px; - not working; overridden by form.less
    
    -webkit-transition: 0.2s border-color, 0.2s opacity;
    transition: 0.2s border-color, 0.2s opacity; - not working; overridden by form.less
}
*/
select.select-hidden{
	display: none;
}
/*
form select:valid{
    opacity: 1;
	color: #10161A;
	background-color:#e8f0fd; 
}
form select:focus{
	border-bottom: 2px solid #8a1c89;
}
*/
.register-form select.select-hidden.show-validation:required, .feedback-form select.select-hidden.show-validation:required{
	display: block;
	height: 1px; width: 1px;  padding: 0; 
	top: calc(100% - 2px);
	left: calc(50% - 1px);
	position:absolute;
	z-index:-999;
	pointer-events:none;
}

/*for styling the caret and list options diplay we use the customization based on materialize*/
.select-wrapper {
    position: relative;
	width:100%;
}
/* properties already applied by style_basic.css */
/*
.select-wrapper input.select-dropdown, form select  {
	height: 40px;
	width: 100%;
	border: none;
	font-size: 15px;
	opacity: 0.5;
	background: #F4F4F4;
    border-bottom: 2px solid #EEE;
	border-radius: 4px;
    color: #354052;
	padding: 0px 10px;
    -webkit-transition: 0.2s border-color, 0.2s opacity, 0.2s box-shadow;
    transition: 0.2s border-color, 0.2s opacity, 0.2s box-shadow;	
}
*/
.select-wrapper input.select-dropdown{
	opacity: 0.5;
	font-size: 15px;
	position: relative;
	
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	z-index: 1;
}
.select-wrapper input[type="text"][readonly] {
	background: #F4F4F4;
	color: #354052;
}
.select-wrapper .caret {
	position: absolute;
    right: 0; top: 0; bottom: 0;
    margin: auto 0;
    width:2rem;
	height:2rem;
	z-index: 2;
	
    fill: rgba(0,0,0,0.87);
	border:none;
}
.dropdown-trigger, .select-wrapper .caret, .select-wrapper input.select-dropdown  {
    cursor: pointer;
}
ul.dropdown-content {
    background-color: #fff;
    /*min-width: 100px;*/
	position: absolute;
	width: 100%;
	/*max-height:fit-content;*/
	max-height: 10em;
	left: 0;
    top: 100%;
	margin: 0;
	border: 0.2px solid #10161A;
	border-top:none;
    overflow: auto;
    opacity: 0;
    z-index: 99;
    /*-webkit-transform-origin: 0 0;
    transform-origin: 0 0;*/
	
	font-size: 1em;
	line-height: 1.6em;
}
ul.dropdown-content>li {
    list-style-type: none;
}

ul.dropdown-content>li:hover {
    background-color: #8a1c89;
	color: white;
}
ul.dropdown-content>li.selected {
    background-color: #8a1c89;
	color: white;
}
.select-wrapper input.select-dropdown.selected{
    opacity: 1;
	color: #10161A;
	background-color:#e8f0fd;
}
ul.dropdown-content.active{
	display: block;
	opacity: 1;
	transform: scaleX(1) scaleY(1);
}
ul.dropdown-content:not(.active) {
	display: none;
}

.dropdown-content li {
    clear: both;
	padding: 0 5px;
    color: rgba(0,0,0,0.87);
    cursor: pointer;
    /*min-height: 50px;
    line-height: 1.5rem;*/
    width: 100%;
    text-align: left;
}

form .main-btn {
	font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}


@media (max-width: 992px) {
	.parallax.parallax-off  {
	height: 600px;
}
	.copyrights .container, .copyrights .footer-distributed, .copyrights .footer-left {
		padding: 0px;
	}
	.slide-text {
	margin-top: -20px;
	}
}

@media (max-width: 768px) {
	.parallax.parallax-off  {
	height: 950px;
	padding:40px;
	}
	.about-text-inner{
		max-height: 11.5rem;
		height: auto;
	}
}

@media (max-width: 1170px) {
	.top-bar a{
		font-size: 12px;
	}
}

@media (max-width: 360px) {
.slider-content-area .slider-content-btn {
	margin-top: -25px;
}
}

@media (min-width: 992px) {
	.col-md-offset-1pt5 {
		margin-left: 12.5%
	}
}
@media (max-width: 992px) and (min-width: 768px) {
	.about-text-inner{
		height: 9.5rem;
		-webkit-line-clamp: 5;
	}
}

/*
.about-text-inner:before {
  position: absolute;
  content: "...";
  font-size:16px;
  bottom: 0; 
  right: 0;  
  color: black;
}
.about-text-inner:after {
  content: "";
  color:white;
  position: absolute;
  right: 0; 
  width: 1rem;
  height: 1rem;
  background: white;
  margin-top: 0.2rem;
}
*/