/* Quiz Game Start*/
.quiz-box {
	width: 100%;
}
.result-header {
	text-align: center;
	margin-bottom: 30px;
}  
.result-header h2{font-size: 36px!important; font-weight:600;}
.score-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
.correct-answers {
    font-size: 24px;
    font-weight: 600;
    color: #0B6623;
}
.quiz-tile {
background-color: #f7f7f7;
padding: 15px;
border-radius: 5px;
margin-bottom: 20px;
}  
.quiz-tile label {
	display: block;
	padding: 10px;
	border-radius: 5px;
	margin-bottom: 8px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.download-button {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background-color: #4CAF50;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}
.download-button:hover {
    background-color: #45a049;
}

.quiz-question {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 10px;
}
.quiz-button{font-size: 18px; background-color: #4CAF50; color: white; padding: 10px 20px; border: none; border-radius: 5px; cursor: pointer; text-align: center;}  
.correct-answer {
	background-color: #d4edda;
	color: #155724;       
}

.incorrect-answer {
	background-color: #f8d7da;
	color: #721c24;      
}

.quiz-option {
	background-color: #f0f0f0;
	color: #333;
	border: 2px solid transparent;
}

.quiz-tile label:hover {
	background-color: #e0e0e0;
}

@media (max-width: 600px) {
  
.quiz-tile {
        padding: 5px 10px;
        margin-bottom: 10px;
    }	
.quiz-tile label {	
	padding: 10px;
	border-radius: 5px;
	margin-bottom: 8px;	
}	
.result-header h2{font-size: 26px!important; font-weight:600;}	
	.quiz-question {
		font-size: 16px;
	}
	.quiz-tile label {
		padding: 8px;
	}	
.quiz-box {
        padding: 0;
    }   
	.score-details {
        flex-direction: column;
        text-align: center;
    }    
    .download-button {
        margin-top: 20px;
    }	
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden; 
}
.home-container {
padding: 0;
margin: 0 30px;
background-color: fff;
}

/* Slider Design Start*/

.flex-container {
  display: flex;
  justify-content: center; 
  align-items: center; 
  height: 100vh; 
}

.centered-img {
  max-width: 100%; 
  max-height: 100%; 
}	
	

/*.home-slider{width:70%;  float: left; position: relative;margin-right: 1%;  }
.latestnews{width:29%;  float: right; position: relative;  }*/

.home-slider, .latestnews { width: 100%; }

/* Slider Section */
.home-slider {
    width: 70%;
    float: left;
    position: relative;
    margin-right: 1%;
}

.carousel-inner img {
    width: 100%;
    height: auto;
}

.carousel-control {
    width: 5%;
}

/* Latest News Section */
.latestnews {
    width: 29%;
    float: right;   
	background-color: #FFF;
}

.register-button {
    display: inline-block;
    width: 100%;
    padding: 15px 0;
    font-size: 20px;    
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: 0.3s ease;
    margin-bottom: 25px;	
	border: none;
    color: #fff;    
    cursor: pointer;    
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, box-shadow 0.3s;
	margin: 0 0 5px 0;
}

.newsletter-btn, .quiz-btn {
	float: left;
    width: 49%;
    padding: 15px 0;
    font-size: 20px;    
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: 0.3s ease;
    margin-bottom: 5px;	
	border: none;
    color: #fff;    
    cursor: pointer;    
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, box-shadow 0.3s;
	margin: 0 0 5px 0;
}

.register-button a, .quiz-btn a, .newsletter-btn a{color: #fff;}

.register-button {background: linear-gradient(135deg, #0E87CC, #45a049); color: #fff; margin-bottom: 10px; }
.quiz-btn { background: linear-gradient(135deg, #EF6C00, #FF9800);color: #fff; margin-bottom: 20px; }
.newsletter-btn{ background: linear-gradient(135deg, #4DD0E1, #00ACC1);color: #fff; margin-bottom: 20px;margin-left:2%;}

.register-button:hover, .quiz-btn:hover, .newsletter-btn:hover {
    background-color: #45a049;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
	transform: translateY(-2px);
}

.list-group {
border: 0;
padding: 0;
overflow:auto;
position: relative;	
width: 100%;	
}

.marq {
height: 205px;
position: relative;
overflow:auto;
padding: 10px;
	
}

.marquee-content {
position: absolute;
animation: scroll 15s linear infinite;
will-change: transform;
}

.marquee-content:hover {
animation-play-state: paused;
}

@keyframes scroll {
0% {
top: 100%;
}
100% {
top: -100%;
}
}

.list-group ol {
padding: 0;
margin: 0;
}

.list-group li {
margin: 10px 0;
display: flex;
align-items: flex-start;
position: relative;
padding-left: 20px;
}
.list-group li img {
margin-right: 10px;
}

.list-group a {
color: #fff;
text-decoration: none;
transition: color 0.3s;
font-size: 14px;
font-weight: 600;
}

.list-group a:hover {
color: #ffd700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .home-slider, .latestnews {
        width: 100%;
        float: none;
        margin: 0;
    }

    .register-button, .quiz-btn, .newsletter-btn {
        width: 100%;
        font-size: 18px;
        padding: 10px 0;
    }

    .box-heading {
        font-size: 18px;
    }

    .carousel-control {
        width: 8%;
    }
}


.list-group { background:#F0F0F0;}
.list-group li { background:#fff; padding: 15px;  border-left: 5px solid #0E87CC; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
.list-group li a { text-decoration: none; color: #333; font-weight: 600; }
.list-group li a:hover { color: #EF6C00; }
.news-date { font-size: 12px; color: #777; margin-bottom: 5px; }


/* Slider Design end*/
/* Dashboard start*/

.dashboard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    color: #E1E1E1;
    text-align: center;
    align-items: center;
    justify-content: center;
}
.card {
    position: relative;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;    
    overflow: hidden;    
}
.card:hover {
    transform: scale(1.05);
    cursor: pointer;
}
#card1::before, #card2::before, #card3::before, #card4::before, #card5::before, #card6::before, #card7::before, #card8::before, #card9::before, #card10::before, #card11::before, #card12::before {    
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 60%;
    left: 15%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    color: rgba(255, 255, 255, 0.1); /* Light color for background icon */
}
#card1::before { content: '\f773'; }
#card2::before { content: '\f0c0'; }
#card3::before { content: '\f85e'; }
#card4::before { content: '\e4e4'; }
#card5::before { content: '\f559'; }
#card6::before { content: '\f812'; }
#card7::before { content: '\e4d7'; }	
#card8::before { content: '\1F3C6'; }	
#card9::before { content: '\f1b8'; color:#D0CC97; }	
#card10::before { content: '\f85e'; }	
#card11::before { content: '\f1bb'; }	
#card12::before { content: '\f4ce'; }	


.card-content h2 {
    margin: 0;
    font-size: 16px;
    color: #fff!important;
    text-transform: capitalize;font-weight: 500;
}
.card-content p {
    font-size: 50px;
    margin: 10px 0;
    color: #fff;
    text-align: center;
}
.card-content a {
    text-decoration: none;
    color: #E1E1E1;
    font-size: 18px;
}

/*#card1 { background-color: #900C3F; }
#card2 { background-color: #141E46; }
#card3 { background-color: #0074F1; }
#card4 { background-color: #EF5350; }
#card5 { background-color: #9D4BE0; }
#card6 { background-color: #415256; }
#card7 {background-color: #F94C10;}
#card8 {background-color: #2F6757;}
#card9 {background-color: #EF6C00;}
#card10 {background-color: #00796B;}
#card11 {background-color: #8E24AA;}
#card12 {background-color: #FFD600;}

*/

/*

#card9 {background-color: #900C3F;}
#card10 {background-color: #FF5722;}
#card11 {background-color: #6D4C41;}
#card12 {background-color: #D32F2F;}

#card15 {background-color: #388E3C;}
#card16 {background-color: #0288D1;}
#card17 {background-color: #F57F17;}
#card18 {background-color: #6D4C41;}
#card19 {background-color: #1B5E20;}*/

/*#card1 { background-color: #4A90E2; }
#card2 { background-color: #50E3C2; }
#card3 { background-color: #F5A623; }
#card4 { background-color: #B0BEC5; }
#card5 { background-color: #9B59B6; }
#card6 { background-color: #E74C3C; }
#card7 {background-color: #F1C40F;}
#card8 {background-color: #1ABC9C;}
#card9 {background-color: #34495E;}
#card10 {background-color: #D5006D;}
#card11 {background-color: #EAB8E4;}
#card12 {background-color: #B2FF59;}*/

#card1 { background-color: #0D47A1; }
#card2 { background-color: #212121; }
#card3 { background-color: #2E7D32; }
#card4 { background-color: #C62828; }
#card5 { background-color: #EF6C00; }
#card6 { background-color: #006064; }
#card7 {background-color: #6A1B9A;}
#card8 {background-color: #455A64;}
#card9 {background-color: #BDB76B;}
#card10 {background-color: #D5006D;}
#card11 {background-color: #1ABC9C;}
#card12 { background-color: #2CADE1; }

@media (max-width: 1200px) {
    .dashboard {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}
@media (max-width: 768px) {
    .dashboard {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .card-content h2 {
        font-size: 20px;
    }
    .card-content p {
        font-size: 30px;
    }
    .card-content a {
        font-size: 16px;
    }
}  
/* Dashboard End*/
/*Ramasr site map*/
.gis_container {
    width: 100%;
    height: 100vh; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;    
    box-sizing: border-box;
	background-color: #fff;
	margin: 1px auto;
}

.gis_container .heading_tag{font-size: 36px; padding:10px 0 20px 0; text-align: center;}
.subheading_tag{font-size: 20px; padding:10px 0 20px 0; color:#148ED0; }

.iframe-container {
    position: relative;
    overflow: hidden;
    width: 100%; 
	height: auto;
    padding-top: 60%; 
    border: 1px solid #ddd;   
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {
	.gis_container {
    width: 100%;
    height: auto; 
}

    .iframe-container {
        width: 100%; 
        padding-top: 100%; 
    }
}

/*District wise restoration activity*/
.district_wise {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin: 20px auto;
        padding: 20px;
        border: 1px solid #ccc;
        border-radius: 8px;
        background-color: #ffffff;
    }
    .conatct_box, .carousel_box {
        flex: 1 1 58%;
    }
	.carousel_box {
        flex: 1 1 40%;				
    }

    .conatct_box {
        padding-right: 20px;
        overflow: hidden;
    }
    .conatct_box h3 {
        color: #0E87CC;
        margin-top: 0;
    }
    .conatct_box ul {
        list-style-type: none;
        padding: 0;
    }
    .conatct_box li {
        margin-bottom: 0px;
        padding: 0;
    }
	.district_wise .carousel-inner, .district_wise .conatct_box{ height: auto;  display: inline-block;}	
	.district_wise .carousel-indicators li{ border-color: #0E87CC;}

    .carousel-inner img {
        width: 100%;
        height: auto;
    }
    
	.description {
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .show-more-btn {
        cursor: pointer;
        color: #0E87CC;
        background: none;
        border: none;
        padding: 0;
        margin: 0;
        font-size: 12px;
    }
.show-more-btn:hover {
    text-decoration: underline;
}
	
    @media (max-width: 992px) {
        .conatct_box, .carousel_box {
            flex: 1 1 100%;
        }
		.home-container {
	margin: 0 10px;
	}
    }
/*District wise restoration activity*/

/* dashboard ramsar site details*/
.truncate-multiline {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: max-height 0.5s ease-in-out; text-align: justify;	
}

.more-content {
	display: none;
}

.titlesection {    
    color: #000;
    padding: 20px;
    text-align: center;
    border-radius: 5px;
    margin-bottom: 20px;
}

.info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;   
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
}

.ramsar_image{width: 38%;}	
.details{ width: 40%;} 	
.details i{ font-size: 15px;	}	
.details table{font-size: 14px;}	
.details table th{font-size: 12px;}	

.documents {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 20%;    
}

.documents a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    background-color:#C8C8C8;
	background-color:#D2D2D2;
	background-color: aliceblue;
    color: #000;
    text-decoration: none;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.9);
    transition: all 0.3s ease;
}

.documents a i {
    font-size: 20px;
    color: #007bff;
    transition: transform 0.3s ease;
}

.documents a:hover {
    background-color: #007bff;
    color: #ffffff;
    transform: translateY(-3px);
}

.documents a:hover i {
    color: #ffffff;
    transform: scale(1.2);
}

/* Responsive design */
@media (max-width: 500px) {
    .documents {
        max-width: 100%;
        padding: 5px;
    }

    .documents a {
        font-size: 14px;
        padding: 12px 16px;
    }
}

.values-threats {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
}

.values, .threats {
    width: 48%;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px; 
	overflow:scroll;
	position: relative;
	height: 300px;
}
.values{ box-shadow: 0 0 10px rgba(0, 101, 1, 0.5); border: 1px solid #006501; }
.threats {box-shadow: 0 0 10px rgba(189, 34, 38, 0.5); border: 1px solid #BD2226;}

.values:hover{ box-shadow: 0 0 10px rgba(0, 101, 1, 0.9);}
.threats:hover {box-shadow: 0 0 10px rgba(189, 34, 38, 0.9); }
.values .fas{ color:#006501; font-size: 20px;	}	
.threats .fas{ color:#BD2226; font-size: 20px;	}		
	
.values h3, .threats h3 {
    margin-bottom: 10px;
    font-weight: 600;
}
	
.values h3{color:#006501!important;}
.threats h3{ color:#BD2226!important;}
	
.values ul, .threats ul {
    list-style-type: none; padding-left: 20px;
}

.values ul li, .threats ul li {
    padding: 5px 0;
    font-size: 1.1em;
    color: #000;
}
.values-threats {
    list-style-type: none; 
    padding-left: 0; 
}

.values-threats li {
    display: flex; 
    align-items: center; 
    margin-bottom: 5px; 
}

.threats-bullet li::before {
     content: '⚠';
    color: #BD2226; 
    font-size: 20px; 
    margin-right: 10px; 
}
.values-bullet li::before {content: '✓';color: #006501; font-size: 20px; margin-right: 10px; }

.criteria-ebird {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 20px;
	padding: 20px;
	border-radius: 5px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	margin: 30px 0;
}

.criteria h2, .ebird h2 {
	font-size: 1.5em;
	color: #007bff;
}

.criteria, .ebird {
	height: auto;
}

.criteria {
	width: 58%;	
}

.ebird {
	width: 40%;
}

.criteria-list {
	display: flex;
	flex-wrap: wrap;
}

.criteria-list a {
	display: inline-block;
	width: 40px;
	height: 40px;	
	text-align: center;
	line-height: 40px;
	margin: 10px 15px;
	border-radius: 50%;
	position: relative;
	text-decoration: none;
	font-weight: bold;
	border: 1px solid #006501;
	color: #006501;
}
.bg_criteria{background-color: #006501!important; color: #fff!important; border: none!important;}
.criteria-list a:hover{ background-color:#006501;box-shadow: 0 0 10px rgba(0, 101, 1, 0.9); color: #fff;}	
.criteria-list a:hover::after {
	content: attr(alt);
	position: absolute;
	bottom: 110%;
	left: 50%;
	transform: translateX(-50%);
	background-color: rgba(0, 0, 0, 0.7);
	color: #fff;
	padding: 20px;
	border-radius: 20px;
	white-space: normal;
	z-index: 1;
	opacity: 0.9;
	transition: opacity 0.3s;
	font-size: 14px;
	width: 700px;
	height: auto;
	overflow: auto;
	text-align: justify;
	line-height: 30px;
}

.ebird_btn1 {
	width: 45%;
	float: left;			
	margin-right: 5%;
}
.ebird_btn2 {
	width: 50%;
	float: left;
	margin-top: 10px;
}
.ebird_btn2 a i {
    margin-right: 10px;
	font-size: 20px;
}
.ebird_btn1 a, .ebird_btn2 a {
	display: block;
	width: 100%;
	margin: 30px 0;
	padding: 10px;
	font-size: 14px;
	background-color: aliceblue;
	color: #000;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
	border-radius: 5px;
	cursor: pointer;
	text-align: center;
}

.ebird_btn2 a i {	
	font-size: 20px;
}

.ebird_btn2 a:hover, .ebird_btn1 a:hover {
	background-color: #0056b3;
	color: #fff;
}  

.additional-info {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    margin: 30px 0;
}

.additional-info p {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #6c757d;
}

.species, .species-count {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    margin: 30px 0;
}

.species h2, .species-count h2 {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 20px;
}

.species p, .species-count p {
    font-size: 1.1em;
    color: #000;
}
.details table {	
	border-collapse: collapse;		
}
.details th, .details td {	
	text-align: left;
	padding:5px 10px;
}
.details th {	
	width: 170px; 
	white-space: nowrap; 
	color: #5BA9D9;	
}
.details td {
	white-space: normal; 
}
	
.additional-info{
	display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 2fr));
    gap: 20px;
    color: #000;
    text-align: center;
    align-items: center;
    justify-content: center;
}	
.additional-info-list {
    position: relative;
    background-color: #fff;    
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;    
    overflow: hidden;  
	font-size: 14px;
}	
.species-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 6fr));
    gap: 20px;
    color: #000;
    text-align: center;
    align-items: center;
    justify-content: center;
}
.species-list {
    position: relative;
    background-color: #fff;    
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;    
    overflow: hidden;  
	font-size: 14px;
}

.species-list i, .additional-info-list i{ font-size: 40px; color: #5BA9D9;}
@media (max-width: 768px) {
    .details, .documents, .values, .threats,  .additional-info, .species, .species-count, .ramsar_image {
        width: 100%; margin: 15px 0;
    }

    .values-threats, .criteria-ebird {
        flex-direction: column;
    }

    .info {
        flex-direction: column;
    }

	.criteria-ebird, .criteria, .ebird, .ebird_btn2, .ebird_btn1 {
		width: 100%;
		margin: 10px 0;
	}

	.criteria-ebird {
		flex-direction: column;
	}

	.criteria-list a {
		margin: 10px;
	}


	.criteria-list a:hover::after {
		width: 90%; 
		left: 50%;
		transform: translateX(-50%);
		bottom: 130%;
	}

}
	

@media (max-width: 480px) {
	.criteria-list a:hover::after {
		width: 100%; 
		left: 50%;
		transform: translateX(-50%);
		bottom: 140%;
		padding: 15px; 
		font-size: 12px; 
		line-height: 20px; 
	}
}
/*ramsar site details end*/

video {max-width: 100%;height: auto;display: block;margin: 0 auto;}
table{  border-collapse: collapse;border-spacing: 0; width: 100%; }			
.ramsar_q_title{
	color:#FDFDFD;
	font-weight: 600;
	text-align: center; !important 
	padding: 0;!important	
}

.well img{
	width: 100%;
	height: 120px;	
	align-items: center;
	border-radius: 5px;
}
.ramsar_q_box{
	padding: 10px 10px 0 10px;
	 border-radius: 10px;
	background-color: aquamarine; 
}



.nav-container {
  background-color:#21139B;!important
}

.container .ramsar_name{padding:30px 0; color:#0E87CC; font-size: 30px; clear: both;}

/*.container .ramsar_logo_header{ background-color: aqua; display: inline; clear: both; height: 200px; }*/

.ramsar_logo_header .tnlogo{ width:100px;}
.ramsar_logo_header .ramsarlogo{ width:100px;}
.ramsar_logo_header .tnwmlogo{ width:150px;}
.p-20 h2{ color:#0E87CC; font-weight: 600;}

 #factsheet table{border-collapse: collapse;border-spacing: 0; width: 100%; table-layout:auto; }
#factsheet a{ color:#000;}
#factsheet a:hover{ color:#2E8857;}
 #factsheet th, #factsheet td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: justify;font-size: 14px; white-space:inherit;
   }

   #factsheet tr:nth-child(odd){background-color: #f2f2f2;}
   #factsheet tr:hover {background-color: #ddd;}
   #factsheet th {
    background-color: #0E87CC;
    color: white;
   }

	.special{ background-color:#7FD4FF; }
	#ramsarcriteria tr:hover {background-color: #ddd;}		

/*glowing text wetlands mitra*/
.glow {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center; 	
}

.neon {
    position: relative;
    overflow: hidden;
    filter: brightness(200%);	
	text-align: center center;
	padding: 10px;
}
a .text1{color:#FFFFFF; padding: 13px;}

.text1 {   
    font-size: 31px;
    font-weight: bold;
    font-family: sans-serif;    
    position: relative;
    user-select: none;
	color: aliceblue;
}

.text1::before {
    content: attr(data-text);
    position: absolute;
    color: white;
    filter: blur(0.02em);
    mix-blend-mode: difference;
}

.gradient {
    position: absolute;
    background: linear-gradient(45deg, red, gold, lightgreen, gold, red);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    mix-blend-mode: multiply;
}

.spotlight {
    position: absolute;
    top: -100%;
    left: -100%;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(
            circle,
            white,
            transparent 25%
        ) center / 25% 25%,
        radial-gradient(
            circle,
            white,
            black 25%
        ) center / 12.5% 12.5%;
    animation: light 5s linear infinite;
    mix-blend-mode: color-dodge;
}

@keyframes light {
    to {
        transform: translate(50%, 50%);
    }
}

.top_header{text-align: center; background-color:#086536; padding: 1px 0; border-bottom: 1px solid #fff; box-shadow: 0 8px 6px -6px #086536;}
.dname{color: #fff;font-size: 14px; }
.tnswaname{color: #fff;text-transform:capitalize; font-size: 12px;}

.tollfree{color:#FFFFFF;text-transform:capitalize; font-size: 14px; float: right; margin-right: 50px; }
.tollfree .bi-telephone{ font-size:15px;}

.tnlogosection{width: 8%;  float: left; text-align: center; }
.missionnamesection{width: 77%;  float: left;text-align: center; font-weight: 700;font-size: 50px;text-transform:capitalize !important; color:#0E87CC; margin-top: 40px;}
.tnswalogosection{width: 15%;  float: left;text-align: center;}


	
.img-responsive {
  opacity: 1;
  display: block;
  transition: .5s ease;
  backface-visibility: hidden;
}

.middle {
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}

.img-grid:hover .img-responsive {
  opacity: 0.3;
}

.img-grid:hover .middle {
  opacity: 1;
}

.text {
  background-color: #7c8836;
  color: white;
  font-size: 16px;
  padding: 10px 10px;
}

/* image grid*/

.img-grid {
		position: relative;
		padding: 10px;
	}
.img-container {width: 100%;height: 0;padding-bottom: 100%; position: relative;overflow: hidden;}
.img-container img {width: 100%;height: 100%;object-fit: cover;position: absolute;top: 0;left: 0;}

.middle {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}
.text {
	background-color: rgba(0,0,0,0.5);
	color: white;
	font-size: 16px;
	padding: 10px;
	text-align: center;
}
@media (max-width: 768px) {
	.col-md-3 {
		width: 50%;
	}
}
@media (max-width: 480px) {
	.col-md-3 {
		width: 100%;
	}
	.home-container {
	margin: 0 5px;
	}

}

/* image grid end*/


.pull-right
{
    background-color: #8d9b32;
    color: #fff;
    padding: 5px;
}

.wmenu {
  overflow: hidden;
  float: right;
}

.wmenu a {
  float: left;
  color: #005CB8;
  text-align: center;
  padding: 5px 10px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
}

.wmenu a:hover {
  background-color: #ddd;
  color: black;
}
/*.topnav a.active {
  background-color: #04AA6D;
  color: white;
}*/

.register {
  	width: 400px;
  	background-color: #ffffff;
  	box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
  	margin: 100px auto;
}
.register h1 {
  	text-align: center;
  	color: #0E87CC;
  	font-size: 24px;
  	padding: 20px 0 20px 0;
  	border-bottom: 1px solid #dee0e4; font-weight:500;
}
.register form {
  	display: flex;
  	flex-wrap: wrap;
  	justify-content: center;
  	padding-top: 20px;
}
.register form label {
  	display: flex;
  	justify-content: center;
  	align-items: center;
  	width: 50px;
 	height: 50px;
  	background-color: #0E87CC;
  	color: #ffffff;
}
.register form input[type="password"], .register form input[type="text"], .register form input[type="email"], .register form input[type="mobile"], .register form select, .register form input[type="file"],.register form textarea, .register form input[type="number"], .register form input[type="email"], .register form input[type="tel"], .register form input[type="date"], .register form input[type="url"], .register form input[type="month"] {
  	width: 310px;
  	height: 50px;
  	border: 1px solid #dee0e4;
  	margin-bottom: 20px;
  	padding: 0 15px; background-color: transparent;
}
.register form input[type="submit"] {
  	width: 90%;  	
  	background-color: #0E87CC;
 	border: 0;
  	cursor: pointer;
  	font-weight:700;
	font-size: 14px;
  	color: #ffffff;
  	transition: background-color 0.2s;
}
.register form input[type="submit"]:hover {
	background-color: #0187E6;
  	transition: background-color 0.2s;
}      

input[type=file]{ display: inline; }  
#image_preview img{ width: 150px; height: 100px; padding: 5px;  }  

.formdivider  {
	width: 400px;  float: left;background-color: #ffffff;
}
.formdivider label {
  	display: flex;
  	justify-content: center;
  	align-items: center;
  	width: 50px;
 	height: 50px;
  	background-color: #0E87CC;
  	color: #ffffff;
	float: left;
}
.register input[type="tel"], .formdivider input[type="tel"], .formdivider input[type="password"], .register input[type="text"], .register input[type="email"], .register input[type="mobile"], .register select {
  	width: 310px;
  	height: 50px;
  	border: 1px solid #dee0e4;
  	margin-bottom: 20px;
  	padding: 0 15px;
}	
.formdivider input[type="submit"] {
  	width: 360px;
  	padding: 15px;
  	margin-bottom: 15px;
  	background-color: #0E87CC;
 	border: 0;
  	cursor: pointer;
  	font-weight: bold;
  	color: #ffffff;
  	transition: background-color 0.2s;
}
.formdivider input[type="submit"]:hover {
	background-color: #2868c7;
  	transition: background-color 0.2s;
}	
.formtitle{ background-color:#0b6623; height:inherit; color: #fff; font-size: 20px; padding: 10px; display:flow-root; /*white-space: nowrap; overflow:auto;  text-overflow: ellipsis; */}


.searchbar{float: right;  }
.searchbar form{  margin-bottom: -1px;}

.searchbar input[type="text"], .searchbar select, .searchbar input[type="submit"] {font-size: 14px; color: #000; background-color: #fff; border: 1px solid #fff; height: 30px; border-radius:5px }
.searchbar input[type="submit"]{padding: 0px 20px; font-size: 16px; color: #0b6623;}
.searchbar input[type="submit"]:hover{ color: #fff; background-color: #0b6623}	

.searchbar input[type="text"]{width: 150px}

.formtitle {
        background-color: #0b6623;
        color: #fff;
        font-size: 20px;
        padding: 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
    .title-left {
        flex: 1;
    }
    .searchbar {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .searchbar form {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        align-items: center;
    }
	.searchbar input[type="text"],.searchbar select,.searchbar input[type="text"] {width: 150px;font-size: 14px;color: #000;background-color: #fff;border: 1px solid #ccc;height: 30px;border-radius: 5px;padding: 5px;}

    .searchbar input[type="submit"] {       
        font-size: 16px;
		padding: 0px 20px;
        cursor: pointer;
        transition: 0.3s;
        background-color: #fff;
        border: 1px solid #0b6623;
        height: 30px;
        border-radius: 5px;  
		color: #0b6623;
    }   
	.searchbar input[type="submit"]:hover{ color: #fff; background-color: #0b6623}
    .addnew a {
        color: #fff;
        text-decoration: none;
        font-weight: bold;
    }
   
.pagination{ float:right; font-size: 14px;  padding: 5px 0; color:#0b6623; }
.pagination a{ color:#2868c7;	} 
.totalcount{ float:left;font-size: 14px;  padding: 5px 0; color:#0b6623; }
.container h1, .container h2 {
  color:#0E87CC!important;
  text-transform: uppercase;
  font: 500 20px/26px 'Poppins', sans-serif;
    font-family: "Poppins", sans-serif;
  margin-bottom: 15px;
}
.disabled{ color: #A5A5A5;}

/* Multiple Login */

.ramsar360{position: absolute; margin-top: -500px; width:100%; height: 100%; border: 0}
.container {
    position: relative;
    z-index: 1;
}
.avatar-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 20px auto;
}
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 10%;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    justify-content: center;
    align-items: center;
}
.modal-content {
    background-color: white;
    margin: auto;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}
.avatarbox {
    text-align: center;
    flex: 1 1 200px;
    max-width: 250px;
    background-color:#fff;
	background-color: rgba(255,255,255,0.6);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}	
.avatarbox:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}
.imgcontainer {
  text-align: center;  
  position: relative;	
}
.imgcontainer h2{color:#0B6623; font-size: 20px; font-weight: 600;}
.container2 label{color:#0E87CC; margin: 10px 0 0 0;}
.modal input[type=text], .modal input[type=password] {
  width: 100%;
  padding: 12px 20px;
  margin: 1px 0;
  display: block;
  color: #0E87CC;
  border: 1px solid #0E87CC;
  box-sizing: border-box;
}
.avatar {
    width: 100px;
    height: 100px;
    margin: 10px 0;	
}
img.avatar {
  width: 20%;
  border-radius: 50%;
  border: 1px solid #747070;
}
img.avatar2 {
  width: 50%;
  border-radius: 50%;
  border: 1px solid #747070;
}
.loginbt {
  background-color: #0B6623;
	color:#fff;
	padding: 10px 0px;	
	border: none;
	cursor: pointer;	
	font-size: 20px;
	border-radius: 10px;
	width: 50%;
	display:flex;
	justify-content: center;
    margin: 10px auto;
	text-align: center;
}
.loginbt:hover {
  opacity: 0.8;
  color:#E1E1E1;
}
.registerbt a {
    display: inline-block;
    color: #0B6623;
    padding: 5px 20px;    
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
	font-size: 14px;	
	border-radius: 10px;
}
.registerbt a:hover { opacity: 0.8; color: #0E87CC;}
.cancelbtn {
  width: auto;
  padding: 5px 18px;
  background-color: #f44336;
  cursor: pointer;
  color: #fff;
  border: 1px solid #f44336;
  border-radius: 10px;
}
.close {
  position: absolute;
  right: 0;
  top: 0;
  color: #000;
  font-size: 35px;
  font-weight: bold;
}
.close:hover,
.close:focus {
  color: red;
  cursor: pointer;
}
.psw a {
  float: right;
  padding-top: 10px;
  color:#086536;
  font-weight: 600;
}
.psw a:hover {
  color:#00FF00; 
}
.submitbt {
    background-color: #086536;	
	color:#fff;
	padding: 14px 20px;
	margin: 8px 0;
	border: none;
	cursor: pointer;
	width: 100%;
	font-size: 20px;
}
.animate {
  -webkit-animation: animatezoom 0.6s;
  animation: animatezoom 0.6s
}
@-webkit-keyframes animatezoom {
  from {-webkit-transform: scale(0)} 
  to {-webkit-transform: scale(1)}
} 
@keyframes animatezoom {
  from {transform: scale(0)} 
  to {transform: scale(1)}
}
.bi-unlock, .bi-file-earmark-plus-fill, .bi-file-earmark-arrow-down-fill{ font-size:20px;color: aliceblue;}	
.bi-file-earmark-lock2,.bi-file-earmark-lock2-fill{ font-size:25px;color: aliceblue;}	



.register {
  	width: 840px;
  	background-color: #ffffff;
  	box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
  	margin: 0px auto;	
	padding-left: 40px;
}

.bi-geo, .bi-chat-left-text, .bi-geo-alt, .bi-person-circle, .bi-telephone, .bi-envelope, .bi-house, .bi-water, .bi-compass, .bi-card-image, .bi-pin-map, .bi-person-badge, .bi-person-check, .bi-key, .bi-mailbox, .bi-recycle, .bi-tree, .bi-signpost-fill, .bi-people, .bi-trash, .bi-calendar-month, .bi-file-earmark-pdf, .bi-image, .bi-collection, .bi-stack, .bi-file-text{ font-size:25px;}
.register form .checkbox3 label{
  display:inline;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 20px;
  background-color: #fff;
  color: #000;
  line-height: 12px;
  font-weight: 400;
}
.register form .checkbox4 label{ 
  display: inline;
  width:auto;
  height: 20px;
  background-color: #fff;
  color: #000; 
  font-weight: 400;
}
.bi-file-earmark-plus-fill, .bi-file-earmark-arrow-down-fill{ font-size:20px;color: aliceblue;}
.bi-geo, .bi-chat-left-text, .bi-geo-alt, .bi-person-circle, .bi-telephone, .bi-envelope, .bi-house, .bi-water, .bi-compass, .bi-card-image, .bi-pin-map, .bi-person-lines-fill{ font-size:20px;}

.addnew{float: right; margin:5px 10px 0 10px;}
.addnew a{color:#fff; font-size: 14px;}

.iframe_video{ width:360px; height:300px; margin: 0 10px;}

.button {
  	background-color: #0E87CC;	
	color:#fff;
	padding: 10px 20px;
	border: none;
	cursor: pointer;
	width: 100%;
	font-size: 20px;
	border-radius:10px;
	margin-top: 10px;
	display: block;
	text-align: center;
}

.button:hover {
  opacity: 0.8;
  color:antiquewhite;
}


.smallbutton {  		
	color:#0E87CC;
	background-color: #fff;
	padding: 5px;	
	cursor: pointer;
	width: 30%;
	font-size: 16px;
	border-radius:10px;
	text-align: center;	
	float:right;
}

.smallbutton:hover {
  opacity: 0.8;
  color:#fff;
  background-color: #0E87CC;		
}


/* brief document */
#regForm {
  background-color: #ffffff;
  margin: 12px auto;
  font-family: Raleway;
  padding: 0px;
  width: 100%;
  min-width: 300px;
}
#regForm p{
text-align: left;		
	}		
/* Mark input boxes that gets an error on validation: */
#regForm input.invalid {
  background-color: #ffdddd;
}
/* Hide all steps by default: */
#regForm .tab {
  display: block;
}
#regForm button {
  background-color: #04AA6D;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  font-size: 17px;
  font-family: Raleway;
  cursor: pointer;
}
#regForm button:hover {
  opacity: 0.8;
}
#prevBtn {
  background-color: #bbbbbb;
}
/* Make circles that indicate the steps of the form: */
#regForm .step {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbbbbb;
  border: none;  
  border-radius: 50%;
  display: inline-block;
  opacity: 0.5;
}
#regForm .step.active {
  opacity: 1;
}
/* Mark the steps that are finished and valid: */
#regForm .step.finish {
  background-color: #04AA6D;
}	
	/*Check box*/
#regForm .checkbox1 {
  display: inline-block;
  position: relative;
  padding-left: 20px;
  margin:0px 15px 10px 15px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* Hide the browser's default checkbox */
#regForm .checkbox1 input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
/* Create a custom checkbox */
#regForm .checkmark {
  position: absolute;
  top: 6;
  left: 0;
  height: 15px;
  width: 15px;
  background-color: #eee;
}
/* On mouse-over, add a grey background color */
#regForm .checkbox1:hover input ~ .checkmark {
  background-color: #ccc;
}
/* When the checkbox is checked, add a blue background */
#regForm .checkbox1 input:checked ~ .checkmark {
  background-color: #2196F3;
}
/* Create the checkmark/indicator (hidden when not checked) */
#regForm .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
/* Show the checkmark when checked */
#regForm .checkbox1 input:checked ~ .checkmark:after {
  display: block;
}
/* Style the checkmark/indicator */
#regForm .checkbox1 .checkmark:after {
  left: 5px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.bottomfooter a img {
    width: 30px; 
    margin: 0 10px;
}	
.websitename{float: left; text-align: center; color: #FFFFFF; }	
.socialmedia{float: right; color: #FFFFFF;}

@media (max-width: 768px) {
    .avatar-grid {
        flex-direction: column;
        gap: 25px;
    }
    .avatarbox {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    button, .registerbt a {
        padding: 8px 15px;
        font-size: 14px;
    }
}

@media only screen and (min-width: 319px) and (max-width: 1229px){	
	.container{ padding: 0 10px;	}
	.container2 {padding: 0;border-radius:5px;}
	
/*login page Start*/	
	.avatar {
		width: 50px;
		height: 50px;		
	}
	.avatar2 {
		width: 70px;
		height: 70px;			
	}		
	img.avatar2 {
	  width: 25%;
	}	
	img.avatar {width: 20%;}
	.ramsar360{position: absolute; margin-top:-1250px; width:100%; height: 100%}
	/*
	.avatarbox{	padding: 0px;height: auto%;padding: 20px 0; text-align: center}	
	.avatararbox2{ width: 100%; margin:10px 0; float: left; height: auto; }	
	.modal-content {
	  margin: 1% auto 1% auto; 
	  border: 1px solid #888;
	  width: 90%; 
	}*/
/*login page Start*/	
	
	.text { font-size: 21px; }	
	
	.home-slider{width:100%; float: none; padding: 0;margin-bottom:0;clear: both; margin-left: 0; }
	
	.latestnews{ width:100%; float: none; padding: 0;margin-bottom:0;clear: both; margin-left: 0;}	
	
	.register-button, .quiz-btn {
		width: calc(100% - 2%);	
		margin: 1%;
		font-size: 5vw;
	}

	.container .ramsar_name{padding: 10px 0; color:#0E87CC; font-size: 20px;}
	.ramsar_logo_header .tnlogo{ width:70px;}
	.ramsar_logo_header .ramsarlogo{ width:70px;}
	.ramsar_logo_header .tnwmlogo{ width:120px;}	
	.ramsar_logo_header .col-6{ float:left}

	.tnlogosection{width: 15%;  }
	.missionnamesection{width: 60%;  font-size: 16px; margin-top: 0px;}
	.tnswalogosection{width: 25%;  }

	.bg-img { height: auto; width: 100%}  	
	

.formtitle{ margin-top: 50px}	
.searchbar{ background-color: #0b6623; display: block; width: 100%; margin: 1px 0; clear: both; }
.searchbar input[type="text"], .searchbar select, .searchbar input[type="submit"] {font-size: 12px;  margin: 5px 0; }	
.searchbar input[type="text"]{width: 140px}
	
.wetland_list td:nth-child(3),.wetland_list td:nth-child(4),.wetland_list td:nth-child(5),.wetland_list td:nth-child(6),.wetland_list td:nth-child(7),.wetland_list td:nth-child(8) { display: none;}	
.wetland_list th:nth-child(3),.wetland_list th:nth-child(4),.wetland_list th:nth-child(5), .wetland_list th:nth-child(6),.wetland_list th:nth-child(7),.wetland_list th:nth-child(8) { display: none;}		

.wetland_restoration_list td:nth-child(2),.wetland_restoration_list th:nth-child(2),.wetland_restoration_list td:nth-child(5),.wetland_restoration_list th:nth-child(5),.wetland_restoration_list td:nth-child(7),.wetland_restoration_list th:nth-child(7),.wetland_restoration_list td:nth-child(9),.wetland_restoration_list th:nth-child(9){ display: none;}	

.eco_restoration_list td:nth-child(4),.eco_restoration_list th:nth-child(4),.eco_restoration_list td:nth-child(5),.eco_restoration_list th:nth-child(5),.eco_restoration_list td:nth-child(6),.eco_restoration_list th:nth-child(6),.eco_restoration_list td:nth-child(7),.eco_restoration_list th:nth-child(7),.eco_restoration_list td:nth-child(8),.eco_restoration_list th:nth-child(8){ display: none;}	

.wetland_mitra_list td:nth-child(4),.wetland_mitra_list th:nth-child(4), .wetland_mitra_list td:nth-child(5),.wetland_mitra_list th:nth-child(5){ display: none;}
.ngo_list td:nth-child(4),.ngo_list th:nth-child(4),.ngo_list td:nth-child(3),.ngo_list th:nth-child(3),.ngo_list td:nth-child(7),.ngo_list th:nth-child(7),.ngo_list td:nth-child(6),.ngo_list th:nth-child(6){ display: none;}

	
.bi-geo, .bi-chat-left-text, .bi-geo-alt, .bi-person-circle, .bi-envelope, .bi-house, .bi-water, .bi-compass, .bi-card-image, .bi-pin-map, .bi-joystick, .bi-currency-dollar, .bi-person-bounding-box, .bi-people-fill, .bi-file-earmark-arrow-up{ font-size:20px;}

	
.wetland_restoration_list th{font-size: 5px;}	

.bg-img {   height: 1500px;  }
.register {
  	width: 100%;
  	box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
  	margin:0 auto;
	margin-bottom: 50px;
	padding: 0px;
}
.formdivider  { width: 95%;  }	
	
.register form input[type="password"], .register form input[type="text"], .register form input[type="email"], .register form input[type="mobile"], .register form select, .register form input[type="file"],.register form textarea, .register form input[type="number"], .register form input[type="email"], .register form input[type="tel"] {width: 85%;}
.register form input[type="submit"] {width: 100%;padding: 15px;margin:0;}	
	
.register h1 { font-size: 20px; font-weight: 600; }
.btn{top: 220px;left: 10px;}

.table tr {    display: table;  width:100%;   }               
.table td {    display: table-row;}  
.iframe_video{ width:100%; height:30%; margin: 10px 0;}
	
/*glowing text wetlands mitra*/	
.glow {margin:10px 0;}
.text1 {font-size: 23px;}

	/* footer*/
.websitename{ text-align: center;  width: 100%; }	
.socialmedia{text-align: center;width: 100%;}
.dname{ clear: both; display: block;font-size: 12px;}
.tnswaname{clear: both; display: block;}
.tollfree{  display: block; clear: both; width: 100%; margin: 0px; }
.tollfree .bi-telephone{ font-size:15px;}
	
}

/* Side Menu */

/*.sidebar {
  position: fixed;
  width: 300px; 
  height: 100%;
  left: 0px;
  background: #1b1b1b;
  transition: left 0.4s ease; 
	z-index: 9999;
}

.sidebar.show {
  left: 0px;
}
.sidebar .text{
  color: white;
  font-size: 18px;
  font-weight: 500;
  line-height: 40px;
  text-align: center;
  background: #1e1e1e;
  letter-spacing: 1px;
}
.sidebar ul{
  background: #1b1b1b;
  height: 100%;
  width: 100%;
  list-style: none;
  padding: 0;
}
.sidebar ul li{  
  border-top: 1px solid rgba(255,255,255,0.1);
}
.sidebar ul li:last-child{
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.sidebar ul li a{
  position: relative;
  color: white;
  text-decoration: none;
  font-size: 14px;
  padding: 10px;
  font-weight: 500;
  display: block;
  width: 100%;
  border-left: 3px solid transparent;
}
.sidebar ul li a.active {color: #0b6623; font-weight: bold; border-left-color: #0b6623;}
.sidebar ul li a:hover{background: #0b6623; color: white;}
.sidebar ul ul{
  position: static;
  display: none;
}
.sidebar ul .feat-show.show{
  display: block;
}
.sidebar ul .serv-show.show1{
  display: block;
}
.sidebar ul ul li{
  line-height: 40px;
  border-top: none;
}
.sidebar ul ul li a{
  font-size: 14px;
  color: #e6e6e6;
  padding-left: 20px;
}
.sidebar ul li.active ul li a{
  color: #e6e6e6;
  background: #1b1b1b;
  border-left-color: transparent;
}
.sidebar ul ul li a:hover{
  color: cyan!important;
  background: #1e1e1e!important;
}
.sidebar ul li a span{
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 22px;
  transition: transform 0.4s;
}
.sidebar ul li a span.rotate{
  transform: translateY(-50%) rotate(-180deg);
}

.sidebar_btn {
  position:absolute;
  top: 230px;
  left: 5px;
  height: 45px;
  width: 45px;
  text-align: center;
  background: #1b1b1b;
  border-radius: 3px;
  cursor: pointer;
  transition: left 0.4s ease;
  display: block;
	z-index: 9999;
}

.sidebar_btn.click {
  left: 320px;
}

.sidebar_btn span {
  color: white;
  font-size: 28px;
  align-content: center;
  line-height: 45px;
}

.sidebar_btn.click span:before {
  content: '\f00d';
}

button {
  width: 100%;
}

.alert{ width: 90%;}

@media only screen and (min-width: 319px) and (max-width: 1229px){	
  .sidebar {
    width: 80%; 
    left: -80%; 
	scroll-behavior: smooth;
  	overflow-y: auto; 
  	overflow-x: hidden; 
  }

  .sidebar.show {
    left: 0; 
  }

  .sidebar_btn.click {
    left: 85%; 
  }
	
	.alert{ width: 100%;}
}*/
/* Side Menu END*/


/* Updated Sidebar Styles */
.sidebar {
  position: fixed;
  width: 300px;
  height: 100%;	
  display: block;
  background: #1b1b1b;
  transition: left 0.4s ease;
  z-index: 9999;
}

.sidebar.show {
  left: 0;
}
.sidebar_btn {
  position: absolute;
  top: 220px;
  left: 5px;
  height: 45px;
  width: 45px;
  text-align: center;
  background: #1b1b1b;
  border-radius: 3px;
  cursor: pointer;
  transition: left 0.4s ease;
  z-index: 9999;
}
.sidebar_btn.click {
  left: 310px;
}
.sidebar_btn span {
  color: white;
  font-size: 28px;
  line-height: 45px;
}
@media only screen and (max-width: 1750px) {
  .sidebar {
    width: 300px;
    left: -300px;
	display: none;
  }

  .sidebar_btn.click {
    left: 310px;   }
}

@media only screen and (max-width: 480px) {
  .sidebar {
    width: 80%;
    left: -80%;display: none;
  }

  .sidebar_btn.click {
    left: 81%;
  }
}

.welcome_container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  background: #fff;
}

.alert {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
}

button {
  width: 100%;
  padding: 10px;
}

.sidebar ul {
  background: #1b1b1b;
  list-style: none;
  padding: 0;
  margin: 0;
  height: 100%;
  overflow-y: auto;
}
.sidebar ul li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: white;
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

.sidebar ul li a.active,
.sidebar ul li a:hover {    
  border-left-color: #0b6623;
  background: rgba(255, 255, 255, 0.1);
}

.sidebar ul ul {
  display: none;
}

.sidebar ul ul li a {
  padding-left: 40px;
  font-size: 14px;
}


	