*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
    font-family: "Philosopher", sans-serif;
    font-weight: 400;
}
html,body{
    height:100%;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
    font-family: "Philosopher", sans-serif;
    font-weight: 400;
	background: url(../img/bg.jfif) center center fixed!important;
	background-size: cover;
}

.for-mobile{
	display: none;
}
.dis-flex{
	display: flex;
	align-items: center;
}

.fullwidth img{
    max-width:100%;
    height: auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.form-control:focus {
    border-color: rgb(160, 160, 160);
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.677);
}

ul li.list-group-item{
    border: 0;
    background: transparent;
    list-style-type: square;
    color: #aaa;
    margin-left: 10px;
    padding: 0px;
}
ul.list-group{
    margin-bottom: 20px;
}

a{
    text-decoration: none;
    color: #fff;
}
a:hover{
    text-decoration: none!important;
    color: #ddd;
}

p{
    color: #aaa;
    font-size: 14pt;
}

td{
    color: #aaa;
    font-size: 14pt;
}
th{
    color: #fff;
    font-size: 14pt;
    font-weight: 700;
}


h1,h3{
    color: #aaa;
    font-weight: 700;
}

h2{
    color: #aaa;
    font-weight: 700;
    font-style: italic;
}

.alert .alert-warning {
    color: #aaa;
}

/* For the navbar */
.navbar-nav .nav-item.active .nav-link {
    color: #fff;
}
.navbar-nav .nav-item:hover .nav-link {
    color: #bbb!important;
}

.navbar-nav .dropdown-menu {
    background-color: #EEE;
}
.navbar-nav .dropdown-menu .dropdown-item:hover {
    color: #bbb!important;
    background-color: #333333;
}

.navbar-nav > li > .dropdown-menu { background-color: #111111; }

.navbar-nav .dropdown-menu .dropdown-item {
    color: #bbb;
}

/* For the login screen */
.login{
	width: 100%;
	display: flex;
	height: 100vh;
    flex-grow: 1;
	align-items: center;
	justify-content: center;
}
.login-box {
	width: 45%;
    min-width: 280px;
	color: #fff;
	margin: 0 auto;
}
.login-box  p{
	text-align: center;
	font-size: 14pt;
	margin-top: 10px;
}
.logo{
	width: 100%;
	padding-top: 50px;
	text-align: center;
}
.logo img{
	width: 70%;
	margin-bottom: 15px;
}
.login-box input{
	width: 100%;
	margin-bottom: 20px;
	padding: 10px;
}
.submite-btn {
	width: 100%;
	text-align: center;
}
input[type="submit"] {
    border: 1px #fff solid;
    background: transparent;
    width: 150px;
    color: #fff;
	border-radius: 5px;
}
input[type="button"] {
    border: 1px #fff solid;
    background: transparent;
    color: #fff;
	border-radius: 5px;
}

/* For the FAQ */
.faq-container {
    max-width: 100%;
    margin: auto;
	color: #fff;
    border-radius: 8px;
    padding: 20px;
}

.faq-container h1 {
    text-align: center;
    margin-bottom: 50px;
    color: #fff;
}

.faq-item {
    border-top: 1px solid #ddd;
    padding: 10px 0;
}
.faq-item:last-child{
	border-bottom: 1px solid #ddd;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    margin: 0;
    font-size: 16pt;
	font-weight: 700;
    color: #fff;
}

.faq-icon {
    font-size: 16pt;
    color: #fff;
    transition: transform 0.3s ease;
}
.faq-icon i{
	transition: .3s;
	transform: rotate(45deg);
}

.faq-answer {
	max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out, opacity 0.5s ease-in-out;
    padding-top: 0;
    opacity: 0;
}

.faq-answer.open {
    max-height: 1000px; /* Adjust based on your content */
    padding-top: 10px;
    opacity: 1;
}

.faq-answer p {
    margin: 0;
    color: #b2b2b2;
    line-height: 1.6;
}

.faq-question.open .faq-icon i {
    transform: rotate(-45deg);
	transition: transform 0.3s ease;
}

/* For the chat */

.form-inline .form-control:focus {
    border-color: rgb(160, 160, 160);
    box-shadow: 0 0 0 0.05rem rgba(255, 255, 255, 0.677);
}

.triangleSelf {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 3px 8px 8px;
    border-color: transparent transparent #6fbced transparent;
    margin-right:25px;
    float:right;
    clear:both;
}
.messageSelf {
    padding:10px;
    color:#000;
    margin-right:15px;
    margin-bottom:10px;
    background-color:#6fbced;
    line-height:20px;
    max-width:90%;
    text-align:left;
    border-radius:5px;
    float:right;
    clear:both;
}

.triangleOther {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 8px 8px 3px;
    border-color: transparent transparent #58b666 transparent;
    margin-left:25px;
    clear:both;
}
.messageOther {
    padding:10px;
    color:#000;
    margin-left:15px;
    margin-bottom:10px;
    background-color:#58b666;
    line-height:20px;
    max-width:90%;
    float:left;
    text-align:left;
    border-radius:5px;
    clear:both;
}
