@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Norican&display=swap');

@import url('https://fonts.cdnfonts.com/css/myriad-pro');
@import url('https://fonts.googleapis.com/css2?family=Tangerine:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&display=swap');

*, :before, :after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
font-family: 'Source Sans 3', sans-serif;

}


ul, ol{
	list-style: none;
}

html, body{

	margin: 0;
	padding: 0;
	/*min-width: 93rem;*/
	width: 100%;
	height: 100%;


}


body{

	  background: url("../Content/Images/Background2.jpg");
  background-repeat: repeat;
  background-size: auto;

}
.whole-page{

	min-height: 55vh;
	margin-top: 8rem;


}





.top-img-left{

	position: absolute;

	top: 0;
	height: 100%;
	width: 100%;

  background: url("../Content/Images/Menu-Left.png");
  background-repeat: no-repeat;
  background-position: left;
  z-index: -1;


}


.top-img-right{

	position: absolute;

	top: 0;
	height: 100%;
	width: 100%;

  background: url("../Content/Images/Menu-Right.png");
  background-repeat: no-repeat;
  background-position: right;
  z-index: -1;


}

/* Button used to open the chat form - fixed at the bottom of the page */
.open-button {
	cursor: pointer;
	position: fixed;
	outline: none;
	border: none;

	background-color: #ad0202;

	z-index: 10000;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
	color: #ffffff;
	font-weight: 600;
	bottom: 20px;
	right: 20px;
	width: auto;
	padding: 0.5rem 1rem;
	height: auto;
	font-size: 0.8rem;
	height: auto;

	border-top-left-radius: 1rem;
	border-top-right-radius: 1rem;
	border-bottom-left-radius: 1rem;
}




.open-button:hover{

	transform: scale3d(1.1, 1.1, 1.1);
	transition: all 0.3s ease-in-out;

}


.top-button {
	display: none;
	cursor: pointer;
	position: fixed;
	outline: none;
	border: none;
	background-color: #ad0202;

	z-index: 10000;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
	color: #ffffff;
	font-weight: 600;
	bottom: 65px;
	right: 20px;
	width: 3rem;

	height: 3rem;
	font-size: 0.9rem;

	border-radius: 50%;
}




.top-button:hover{

	transform: scale3d(1.1, 1.1, 1.1);
	transition: all 0.3s ease-in-out;

}



/* The popup chat - hidden by default */
.chat-popup {
  display: none;
  position: fixed;
  bottom: 70px;
  right: 20px;

  z-index: 25000;

}

/* Add styles to the form container */
.form-container {
  width: 20rem;
  border-radius: 5px;

  background-color: #ffffff;
  box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}




.chat-heading{


	border-top-left-radius: 5px;
	border-top-right-radius: 5px;

	background-color: #ffffff;
	position: relative;

}

.chat-heading p{


	font-size: 0.9rem;
	font-weight: 600;
	text-align: center;
	padding-top: 1rem;
	padding-bottom: 0.5rem;
	margin: 0;
	color: #3C4048;

}




.chat-form-content{

	width: 100%;
	background-color: #ffffff;
	padding: 1rem 2rem;


}



.chat-label{

	font-size: 0.9rem;
	color: #3C4048;
	padding: 0.5rem 0;
}


.chat-input-box{

	width: 100%;
}


.chat-input-field{

	width: 100%;
	border: 0.5px solid #B2B2B2;
	padding: 0.5rem;
	font-size: 0.9rem;
	color: #3C4048;
	outline: none;

}



.chat-input-field:focus-visible{

	width: 100%;
	outline: none;
	border: 0.5px solid #000000;

	
}


textarea.chat-input-field{

	min-height: 10rem;

}


.chat-input-button{

	width: 100%;
	background-color: #03C988;
	font-size: 0.9rem;
	color: #ffffff;
	font-weight: 400;
	border: none;
	outline: none;
	padding: 1rem 0;
	margin-top: 1rem;



}


.other-button-box{

	width: 25rem !important;
}

.chat-input-button:hover,
.chat-input-button:focus {
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
  color: #ffffff;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
	
}

.chat-input-button:hover {
  transform: translateY(-1px);
}

.chat-input-button:active {
  background-color: #02b87c;
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
  color: #ffffff;
  transform: translateY(0);
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}


.chat-close{

	background-color: transparent;
	border: none;
	outline: none;
	color: #000000;
	display: block;
	position: absolute;
	z-index: 10000;
	top: 1rem;
	right: 1rem;

}


.left-menu{

	position: fixed;
	top: 38%;
	left: 0;
	background-color: #00843d;

	z-index: 10000;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.right-menu{

	position: fixed;
	top: 38%;
	right: 0;
	background-color: #00843d;
cursor: pointer;
	z-index: 10000;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.right-menu-container{

	margin: 0;
	padding: 0;
	list-style: none;
	cursor: pointer;
}

.right-menu-link{

	text-decoration: none;
	color: #ffffff;
	margin: 0;
	padding: 0;
	cursor: pointer;

}


.right-menu-link:hover{

	color: #ad0202;
	transition: all 0.3s ease-in-out;
	cursor: pointer;
}


.right-menu-item{

	padding: 0.5rem;
	position: relative;
	cursor: pointer;
	color: #ffffff;
	list-style: none;
}


.right-menu-item:hover{

	color: #ad0202;
	transition: all 0.3s ease-in-out;
	cursor: pointer;
}

.right-submenu-container{

	position: absolute;
	left: 100%;
	top: 0;
	background-color: #BACDDB;
	color: #000000;
	margin: 0;
	padding: 0;
	display: none;
	list-style: none;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;


}

.right-submenu-container a{

	color: #000000;
	text-decoration: none;
	font-size: 0.9rem;
}





.right-submenu-container li{

	padding: 0.3rem 1rem;
	width: 100%;
	text-align: center;
	list-style: none;
}

.right-submenu-container li:hover{

	background-color:  #ad0202;
	transition: all 0.3s ease-in-out;
	color: #ffffff;
}


.right-menu-item:hover > .right-submenu-container,
.right-menu-item:focus > .right-submenu-container,
.right-menu-item:focus-visible > .right-submenu-container{

	display: block;
	color: #000000;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}




.top-container{


	width: 100%;
	position: fixed;
	top: 0;
	z-index: 10000;
	background-color: rgba(222, 252, 236, 0.95);
	padding-top: 0.5rem;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;


}


.top-links{

	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
	display: flex;

	background-color: transparent;
	justify-content: right;
}


.top-links ul{

	display: flex;
	justify-content: center;
	list-style: none;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;


}

.top-links ul li{

	padding: 0rem 0.8rem;
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
	border-right: solid 0.5px black;


}


.top-links ul a{

	font-size: 0.8rem;
	font-weight: 500;
	color: #000000;
	text-decoration: none;


}


.top-links ul a:hover{


	color: #00843d;
	
	transition: all 0.3s ease-in-out;
	transform: translateX(3px);



}


.gsc-results-wrapper-overlay {
    border: none;
    margin: auto;
    border-radius: 1px;
    overflow: auto;
    height: 80%;
    -webkit-box-shadow: 0 3px 10px rgba(34, 25, 25, 0.4);
    -moz-box-shadow: 0 3px 10px rgba(34, 25, 25, 0.4);
    -ms-box-shadow: 0 3px 10px rgba(34, 25, 25, 0.4);
    -o-box-shadow: 0 3px 10px rgba(34, 25, 25, 0.4);
    box-shadow: 0 3px 10px rgba(34, 25, 25, 0.4);
    border-collapse: separate;
    background: white;
    padding: 30px;
    width: 80%;
    position: fixed !important;
    top: 5%;
    left: 10%;
    right: 10%;
    opacity: 0;
    z-index: 100002;
    visibility: hidden;
    -webkit-transition: all 0.25s linear;
    -moz-transition: all 0.25s linear;
    -ms-transition: all 0.25s linear;
    -o-transition: all 0.25s linear;
    transition: all 0.25s linear;
    -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=7, Direction=135, Color='#888888')";

}

.gsc-control-cse {

	padding: 0 !important;

}


.gsc-input, .gsc-search-button{

	padding: 0;
}


.gsc-search-button tr:hover{

	background-color: red !important;
}


.gsc-input-box{

	width: 15rem !important;
	border: 0.5px solid #B2B2B2 !important;
	outline: none	!important;

	border-radius: 20px	!important;

	padding: 0.2rem 1rem !important;

}

.gsc-input-box:focus-visible{


	border: 0.5px solid #000000 !important;


}


.gs_tti50, .gsib_a
{
	padding: 0 !important;
}

button.gsc-search-button{

	width: auto !important;
	background-color: #03C988 !important;
	font-size: 1rem !important;
	color: #ffffff;
	font-weight: 400 !important;
	border: none !important;
	outline: none !important;
	padding: 0.2rem 0.5rem !important;
	border-radius: 50% !important;


}


button.gsc-search-button:hover,
button.gsc-search-button:focus {
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
  color: #ffffff;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
	
}

button.gsc-search-button:hover {
  transform: translateY(-1px);
}

button.gsc-search-button:active {
  background-color: #02b87c;
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
  color: #ffffff;
  transform: translateY(0);
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}




.top-logo-container{

	height: auto;
	background-color: transparent;

	width: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;



}


.top-logo-container img{

	height: 4rem;
	width: auto;
	padding: 0;

}



.menu-close , .menu-open{

	display: none;
}


.top-menu-container{


	
	z-index: 100000 !important;

	margin: 0;
	padding: 0;


}


.top-right{

	width: 67%;

}


.menu-container{

	display: flex;
	justify-content: right;
	list-style: none;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
	

}

.gsc-control-cse {
    background-color: transparent !important;
    border: none !important;
}


.menu-item{

	padding: 0.5rem 1rem;
	font-size: 0.9rem;
	list-style: none;
	cursor: pointer;

	text-decoration: none;
	color: #206A5D;
	font-weight: 500;
	line-height: 2rem;
	background-color: transparent;
	border: none;
	outline: none;
	width: 100%;
	border-radius: 0.8rem;


}


.menu-item:hover{


	cursor: pointer;

	text-decoration: none;

	background-color: #CDFADB;
	color: #206A5D;

	scale: 1.1;
	transition: all 0.3s ease-in-out;

}


.menu-item-list:hover{




	scale: 1.03;
	transition: all 0.3s ease-in-out;

}


.menu-item-list{

	position: relative;
	margin: 0;
	padding: 0;
	cursor: pointer;
}



.submenu-container{


	list-style: none;
	margin: 0;
	padding: 0;
	background-color: #ffffff;
	position: absolute;
	top: 100%;
	right: 0;
	z-index: 50000;
	width: 15vw;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
	border-radius: 5px;

}






.submenu-item{

  display: flex;
	width: 15vw;
	background-color: transparent;
	outline: none;
	border: none;
	text-align: left;
	padding: 0.3rem 1rem;
	color: #000000;
	font-size: 0.9rem;
	text-decoration: none;
	cursor: pointer;

}



.submenu-item-list{

	border-top: 0.5px solid #EEEEEE;
	position: relative;
	margin: 0;
	padding: 0;
	cursor: pointer;
}


.submenu-item:first-child {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.submenu-item:last-child {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.submenu-item:hover{


	background-color: #CDFADB;
	color: #206A5D;
	transition: all 0.3s ease-in-out;
	text-decoration: none;
	cursor: pointer;
	scale: 1.05;



}




.level2-submenu-container{

	list-style: none;
	margin: 0;
	padding: 0;
	background-color: #ffffff;
	position: absolute;
	right: 100%;
	top: 0;
	z-index: 50000;
	width: 19vw;

	box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
	border-radius: 5px;



}


/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #888; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}




.level2-submenu-item{

	display: flex;
	width: 19vw;
	background-color: transparent;
	outline: none;
	border: none;
	text-align: left;
	padding: 0.3rem 1rem;
	color: #000000;
	font-size: 0.9rem;
	cursor: pointer;
	text-decoration: none;


}



.level2-submenu-item-list{

	border-top: 0.5px solid #EEEEEE;
	position: relative;
	cursor: pointer;
}


.level2-submenu-item:first-child {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.level2-submenu-item:last-child {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.level2-submenu-item:hover{


	background-color: #CDFADB;
	color: #206A5D;
	transition: all 0.3s ease-in-out;
	cursor: pointer;
	text-decoration: none;
	scale: 1.05;



}
















.level3-submenu-container{

	list-style: none;
		
	margin: 0;
	padding: 0;
	background-color: #ffffff;
	position: absolute;
	right: 100%;
	top: 0;
	z-index: 50000;
	width: 19vw;


	box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
	border-radius: 5px;


}






.level3-submenu-item{

	display: flex;
	width: 19vw;
	background-color: transparent;
	outline: none;
	border: none;
	text-align: left;
	padding: 0.3rem 1rem;
	color: #000000;
	font-size: 0.9rem;
	cursor: pointer;
	text-decoration: none;


}



.level3-submenu-item-list{

	border-top: 0.5px solid #EEEEEE;
	cursor: pointer;

}


.level3-submenu-item:first-child {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.level3-submenu-item:last-child {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.level3-submenu-item:hover{


	background-color: #CDFADB;
	color: #206A5D;
	transition: all 0.3s ease-in-out;
	cursor: pointer;
	text-decoration: none;
	scale: 1.05;



}




.owl-carousel{

	width: auto !important;
	margin: 0 10% !important;
}

.owl-stage-outer{

	height: 20vw !important;
	
}

.owl-item img
{
	height: 20vw;
	width: fit-content; !important;
	object-fit: cover;
}

.owl-prev{

	position: absolute;
	top: 42%;
	left: 0;

	color: #ffffff !important;
	opacity: 0.3 !important;



}



.owl-next{

	position: absolute;
	top: 42%;
	right: 0;
	color: #ffffff !important;
	opacity: 0.3 !important;


}



.owl-prev:hover{

	opacity: 1 !important;
	background-color: transparent !important;
	transition: all 0.3s ease-in-out;



}



.owl-next:hover{

	opacity: 1 !important;
	background-color: transparent !important;
	transition: all 0.3s ease-in-out;


}

.owl-dots{

	display: none;
}



.update-ticker-container{

	display: flex;
	background-color: #F1F6F9;
	padding: 0.5rem 0;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;

}

.update-ticker-heading
{

	font-size: 0.9rem;
	font-weight: 600;
	padding: 0.5rem 1rem;
}


.update-ticker{

	font-size: 0.9rem;
	font-weight: 300;
	padding: 0.5rem 1rem;
}




.margin-container{

	margin: 0 10%;
}


.home-second-container{

	display: flex;
	justify-content: space-between;
	align-items: center;
	background: radial-gradient(circle at center ,#0b9460, #0b9460 10%, transparent 10%, transparent  20%, #0b9460 20%, #0b9460 30%, transparent 30%, transparent 40%, #0b9460 40%, #0b9460 50%, transparent 50%, transparent 60%, #0b9460 60%, #0b9460 70%, transparent 70%, transparent 80%, #0b9460 80%, #0b9460 90%, transparent 90%);
    background-size: 3em 3em;
    background-color: #0b9c60;
    padding: 1rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;


}

.home-second-container-heading{

	margin: auto;

}


.home-second-container-heading p{

	font-size: 2.5rem;
	color: #ffffff;
font-family: 'Playfair Display', serif;
	margin: 0;
	padding: 0;

}


.identity-card{

	display: flex;
	height: 10rem;
	width: 30rem;
	background-color: #ffffff;
}




.identity-card-image img{

	height: 100%;


}


.identity-card-text-container{

	padding: 1rem;

	height: 100%;

}




.identity-card-heading{

	font-size: 1.2rem;
	font-weight: 600;
	color: #00843d;
	margin: 0;
	padding: 0;
}


.identity-card-text{

	font-size: 0.8rem;
	font-weight: 200;
	text-align: justify;
	margin: 0;
	padding: 0;


  text-overflow: ellipsis;
  overflow: hidden; 
   display: -webkit-box;
   -webkit-line-clamp: 4;
   -webkit-box-orient: vertical;
}


.identity-card-link{

	font-size: 0.9rem;
	font-weight: 500;
	text-decoration: none;
	color: #000000;
	display: flex;
	justify-content: right;
}



.identity-card-link:hover{

	text-decoration: none;
	transition: all 0.3s ease-in-out;
	color: #00843d;

}





.identity-image-card{

	width: 40%;
	height: 8rem;
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url(../Content/Images/services.jpg);

  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}




/*

.service-box-container
{
	display: flex;
	justify-content: space-between;
	width: auto;
	margin-top: 5rem;
	margin-bottom: 5rem;


}


.service-box-container a
{
	margin: 0;
	padding: 0;
	text-decoration: none;
	color: #000000;
	width: 22%;


}


.service-box-container a:hover
{

	text-decoration: none;

}


.service-box-container a:hover > .service-box
{
	transition: all 0.3s ease-in-out;
	transform: scale3d(1.03, 1.03, 1.03);

}

.service-box-container a:hover
{
	transition: all 0.3s ease-in-out;
	color: #00843d;

}



.service-box
{
	background-color: #ffffff;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
	height: 16vw;
	width: auto;
	margin: 1rem;

}

.service-box-image
{
	height: 85%;

}


.service-box-image img
{
	height: 100%;
	width: 100%;
	object-fit: cover;

}


.service-box-heading
{
	height: 15%;
	display: flex;
	justify-content: center;
	align-items: center;

}


.service-box-heading-text
{
	margin: 0;
	padding: 0;
	text-align: center;
	font-size: 0.9rem;
	font-weight: 500;
	

}

*/


table { 
	width: 100%; 
	border-collapse: collapse; 
	}

/* Zebra striping */
tr{ 
	border: 0.5px solid #F5F5F5; 
	cursor: pointer;
	}

tr:hover{ 
	border: 0.5px solid #F5F5F5; 
	cursor: pointer;
	background-color: #F5F5F5;
	}



th { 
	color: #000000; 
	font-weight: bold; 
	background-color: red;
	background-color: #eeeeee;

	}

td, th { 
	padding: 10px; 
	border: 0.5px solid #F5F5F5; 
	text-align: left; 
	font-size: 0.9rem;
	}








.currency-table th, .currency-table td{

	font-size: 1rem !important;

}




.home-bottom-box-container{

	display: flex;
	justify-content: space-between;
	width: auto;
	
}

.home-bottom-box{

	width: auto;
	height: auto;
	min-height: 20rem;
	margin: 1rem;
	background-color: #ffffff;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;

}

.home-bottom-box:nth-of-type(1) {width: 58%;}
.home-bottom-box:nth-of-type(2) {width: 37%;}

.home-bottom-box-header{

	background-color: #ad0202;
	color: #ffffff;
	font-size: 0.9rem;
	font-weight: 600;
	text-align: left;
	padding: 1rem;
}




.home-bottom-box-inside{

	height: 10rem;
	width: 100%;
	background-color: #F4F9F9;
	padding: 0.5rem;
	display: flex;
	border-bottom: solid 0.5px #BACDDB;

}


.home-bottom-box-inside1{

	height: 7rem;
	width: 100%;
	background-color: #ffffff;
	padding: 0.5rem;
	display: flex;
	border: solid 0.5px #BACDDB;

}


.home-bottom-box-inside img{

	height: 9rem;
	width: 9rem;
	object-fit: contain;

}


.home-bottom-box-inside1 img{

	height: 6rem;
	width: 6rem;
	object-fit: contain;

}


.home-bottom-box-inside p{

	margin: 0;
	margin-left: 0.5rem;
	font-size: 0.9rem;
	cursor: pointer;
	text-align: left;

}


.home-bottom-box-inside1 p{

	margin: 0;
	margin-left: 0.5rem;
	font-size: 0.9rem;
	cursor: pointer;
	text-align: left;

}



.home-bottom-box-link{


	color: #000000;

}


.home-bottom-box-link:hover{

	color: #00843d;

	text-decoration: none;
	transition: all 0.3s ease-in-out;
	transform: scale3d(1.05, 1.05, 1.05);


}

.home-bottom-box-link:hover > .home-bottom-box-inside{

	transition: all 0.3s ease-in-out;
	background-color: #ffffff;
	transform: scale3d(1.005, 1.005, 1.005);



}

.home-bottom-box-link:hover > .home-bottom-box-inside1{

	transition: all 0.3s ease-in-out;
	background-color: #F4F9F9;
	transform: scale3d(1.005, 1.005, 1.005);



}







.sub-top-links{

	margin-top: 1rem;
	margin-bottom: 1rem;
	background-color: #BACDDB;
}


.sub-top-links ul{

	display: flex;
	justify-content: center;
	list-style: none;
	flex-wrap: wrap;
	margin: 0;


}

.sub-top-links ul li{

	padding: 0.1rem 0.4rem;
	margin-top: 0.2rem;
	margin-bottom: 0.2rem;
	border-right: solid 0.5px black;


}


.sub-top-links ul a{

	font-size: 0.7rem;
	font-weight: 500;
	color: #000000;
	text-decoration: none;


}


.sub-top-links ul a:hover{


	background-color: #ad0202;
	color: #ffffff;
	
	transition: all 0.3s ease-in-out;




}




.CurrentLink{


	background-color: #ad0202;
	color: #ffffff !important;

}





/* (A) STANDARD ROW HEIGHT */



.icon-links{

	margin-top: 5rem;
	margin-bottom: 5rem;
}


.icon-links ul{

	display: flex;
	justify-content: space-around;
	list-style: none;
	margin: 0;
	width: 100%;
	padding: 0;


}

.icon-links-item{

	padding: 0rem 1rem;
	margin-top: 1rem;
	margin-bottom: 1rem;
	width: 100%;
	text-align: center;
	


}


.icon-links-svg{

	width: 8rem;
	height: 6rem;
	color: #00843d;


}



.icon-links ul a{

	font-size: 0.9rem;
	font-weight: 500;
	color: red;
	text-decoration: none;
	border-right: 1px solid #EEEEEE;
	display: flex;
	align-items: center;
	width: 16%;

}


.icon-links ul a:hover{

	text-decoration: none;
	transition: all 0.3s ease-in-out;
	transform: scale3d(1.05, 1.05, 1.05);
	box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;



}



.icon-links-item:hover>.icon-links-svg{

	color: #ad0202;
	transition: all 0.3s ease-in-out;



}



.icon-links ul a:last-child {
  border-right: none;
}


.icon-links-heading{

	font-size: 0.9rem;
	font-weight: 400;
	color: #00843d;
	margin: 0;
	padding: 0;
	margin-top: 2rem;
}

.icon-links-item:hover>.icon-links-heading{

	color: #ad0202;
	transition: all 0.3s ease-in-out;



}







.bottom-links{

	margin-top: 1rem;
	margin-bottom: 1rem;
}


.bottom-links ul{

	display: flex;
	justify-content: center;
	list-style: none;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;


}

.bottom-links ul li{

	padding: 0rem 1rem;
	margin-top: 1rem;
	margin-bottom: 1rem;
	border-right: solid 0.5px black;


}


.bottom-links ul a{

	font-size: 0.9rem;
	font-weight: 500;
	color: #000000;
	text-decoration: none;


}


.bottom-links ul a:hover{


	color: #00843d;
	
	transition: all 0.3s ease-in-out;
	transform: translateX(5px);



}















.footer-container{



	background: radial-gradient(circle at center ,#0b9460, #0b9460 10%, transparent 10%, transparent  20%, #0b9460 20%, #0b9460 30%, transparent 30%, transparent 40%, #0b9460 40%, #0b9460 50%, transparent 50%, transparent 60%, #0b9460 60%, #0b9460 70%, transparent 70%, transparent 80%, #0b9460 80%, #0b9460 90%, transparent 90%);
    background-size: 3em 3em;
    background-color: #0b9c60;
	padding: 2rem 0rem;
}


.footer-content{


	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;

}

.footer-column{

	margin: 2rem 1rem;
	width: 20rem;
}

.footer-link-heading{

	font-size: 1.5rem;
	font-weight: 600;
	color: #ffffff;

}



.footer-link{

	display: block;
	color: #ECF4F3;
	text-decoration: none;
	margin: 0.8rem 0;
	font-size: 0.9rem;
	font-weight: 400;
	text-decoration: none;

}

.footer-link:hover{

	color: #ffffff;
	text-decoration: none;

}




.top-heading{

	font-size: 1.5rem;
	font-weight: 400;
	border-bottom: 1px solid #ad0202;
	color: #ad0202;
	margin-top: 1rem;
	margin-bottom: 2rem;

}

.content-description{

	font-size: 0.9rem;
	color: #000000;
	line-height: 1.75rem;
	text-align: justify;

	margin-top: 1rem;
	margin-bottom: 1rem;

}








.bod-card{

	box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
	background-color: #ffffff;


	margin-top: 2rem;
	margin-bottom: 2rem;
	position: relative;
	background-color: #F5F5F5;



}



.bod-close-button{

	position: absolute;
	right: 1rem;
	top: 1rem;
	opacity: 0.8;

}




.bod-close-button:focus{

	opacity: 1.0;
	box-shadow: none !important;

}


.bod-card1{

	box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
	background-color: #ffffff;


	margin: 2rem auto;
	width: 35rem;

	text-align: center;




}


.bod-1{

	background-color: transparent;
	outline: none;
	border: none;
	margin: 0 auto;
	padding: 0;
	height: fit-content;
	width: fit-content;
	display: flex;
	justify-content: center;
}


.bod-content{

	padding: 1rem;
	display: flex;



}

.bod-content1{

	padding: 1rem;




}


.bod-info{
	margin-left: 1rem;
}



.bod-img{

  width: 15rem;
  height: auto;
  object-fit: contain;
  box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;


}

.bod-img-news{

  width: auto;
  height: 20rem;
  object-fit: contain;
  box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
  display: flex;
  margin: 0 auto;


}


.bod-designation{

	font-size: 1.5rem;
	color: #000000;
	font-weight: 600;
}

.bod-designation1{

	font-size: 1.5rem;
	color: #000000;
	font-weight: 600;
	margin-top: 1rem;
}



.bod-heading{

	font-size: 1.8rem;
	color: #000000;
	font-weight: 600;
	text-align: center;
	padding-top: 1rem;
	padding-bottom: 1rem;
	padding-left: 0.5rem;
	padding-right: 0.5rem;
}



.bod-history{

	text-align: justify;
	font-size: 0.9rem;
	line-height: 2rem;
	color: #000000;

}
























.form-d-card-link{


	text-decoration: none;
	font-size: 0.9rem;
	color: #000000;
	cursor: pointer;


}


.form-d-card:hover{


	transform: scale3d(1.01, 1.01, 1.01);

	transition: all 0.3s ease-in-out;
	background-color: #eff7f6;
	text-decoration: none;


}


.form-d-card-link:hover{


	text-decoration: none;


}

.form-d-card{


	display: flex;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
	background-color: #ffffff;
	transition: all 0.3s ease-in-out;

	margin-top: 0rem;
	margin-bottom: 1rem;
	padding: 1rem;



}


.fdc-left{

  align-self: center;
  width: 85%;
}

.fdc-left p{
	margin: 0;
	padding: 0;
	font-size: 0.9rem;

	color: #000000;
}

.fdc-right{
	width: 15%;
    text-align: center;
}


.pdf-thum{


	width: 4rem;
	height: auto;
}



.form-d-space{

	margin: 2rem 0;
}


.center-video{

	display: flex;
	justify-content: center;
	margin: 0 auto;
	height: 350px;

}



.total-branch-count-container{


	width: 100%;	
	box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
	background-color: #ffffff;
	margin-top: 2rem;
	margin-bottom: 2rem;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	padding-left: calc(5% + 1rem);
	padding-right: calc(5% + 1rem);

}

.branch-container{

	display: flex;
	justify-content: space-between;
	width: 100%;	
	box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
	background-color: #ffffff;
	margin-top: 2rem;
	margin-bottom: 2rem;
	padding-left: 5%;
	padding-right: 5%;

}

.branch-list{

	width: 17rem;
	height: auto;
	padding: 1rem;
	background-color: #ffffff;
}




.modbr{

	color: #000000;
	font-size: 0.9rem;
	text-decoration: none;
	display: flex;

}

.modbr:hover{

	color: #00843d;
	text-decoration: none;
	transition: all 0.3s ease-in-out;


}



.branch-name{

	margin-right: 1rem;

}


#myModal{

	z-index: 50000;
}


#myModalLabel{

	font-size: 2rem;
	color: #000000;
}

.modal-branch-name{

	padding: 0.3rem 0.5rem;
	background-color: #00843d;
	color: #ffffff;
	font-size: 0.9rem;
}


.branch-modal-table-heading{

	font-size: 0.9rem;
	font-weight: 600;
	text-align: center;
	padding: 0.3rem 0.5rem;
}

.branch-modal-table-text-center{

	font-size: 0.9rem;
	text-align: center;
	padding: 0.3rem 0.5rem;

}

.branch-modal-table-text-left{

	font-size: 0.9rem;
	text-align: left;
	padding: 0.3rem 0.5rem;
	
}


.modal-branch-btn{

	padding: 0.5rem 2rem;
	background-color: #ED2B2A;
	box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
	color: #ffffff;
	outline: none;
	border: none;
	font-weight: 600;
	font-size: 0.9rem;
}




.modal-branch-btn:hover,
.modal-branch-btn:focus,
.modal-branch-btn:focus-visible,
.modal-branch-btn:active{


	background-color: #D21312;
	transition: all 0.3s ease-in-out;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;

}


.head-office-container{

	display: flex;
	justify-content: space-between;
	width: 100%;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
	background-color: #ffffff;
	margin: 2rem 0;
}


.head-office-container p{

	font-size: 0.9rem;
	color: #000000;


}


.complaint-content p{

	font-size: 0.9rem;
	color: #000000;
}



.complaint-content{

	margin: 2rem 0;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
	background-color: #ffffff;
	padding: 2rem;
}

.complaint-content p{

	text-align: justify;
}



.capital-management-table tr:hover{

	background-color: #ECF8F9 !important;
}


.capital-management-table{

	font-size: 0.9rem;
	color: #000000;
}



.investor-information-link{

	font-size: 0.9rem;
	color: #000000;
	line-height: 1.75rem;
	text-align: justify;
	text-decoration: none;
	margin-top: 1rem;
	margin-bottom: 1rem;
	display: block;

}

.investor-information-link:hover{


	color: #00843d;
	transition: all 0.3s ease-in-out;
	text-decoration: none;


}





@media screen and (max-width: 900px) {

.top-img-left{

	background-size: 15% 100%;

}

.menu-item:hover{


	cursor: pointer;

	text-decoration: none;

	background-color: #CDFADB;
	color: #206A5D;

	scale: 1.02;
	transition: all 0.3s ease-in-out;

}


.top-img-right{

	background-size: 15% 100%;

}


.margin-container{

	margin: 0 2%;
}

.owl-carousel {
    width: auto !important;
    margin: 0 2% !important;
}


.whole-page{


	margin-top: 9rem;
}




.top-logo-container{

	display: block;
	text-align: center;

}






.gsc-input-box{

	width: 6rem !important;

}


.top-right{

	width: 100%;
	display: flex;
	justify-content: center;

}


.top-links {

    justify-content: center;
}


.home-second-container{

	display: block;
	justify-content: space-between;
	text-align: center;


}













.home-second-container-heading p{

	font-size: 1.5rem;
	color: #ffffff;


}


.identity-card{


	width: 100%;
	margin-top: 1rem;
	height: auto;
	display: block;

}




.identity-card-image img{

	width: 100%;
	margin-right: 0;

}






.home-bottom-box{

	width: 100%;


}



.home-bottom-box:nth-of-type(1) {flex-grow: 1;min-width: auto;}
.home-bottom-box:nth-of-type(2) {flex-grow: 1;min-width: auto;}







.owl-prev{


	top: 20%;
	left: 0;

	color: #ffffff !important;
	opacity: 0.3 !important;



}



.owl-next{


	top: 20%;



}

.top-menu-container{


	height: 100%;
	top: 0 !important;
	position: fixed !important;
	width: 100%;
	overflow: scroll;
	display: none;
	background-color: #ffffff;
}


.menu-container{

	display: block;


}

.menu-item{

	width: 100%;
	text-align: left;
	display: flex;
}




#accordian>ul.show-dropdown>li.active>a,
#accordian>ul>li>ul.show-dropdown>li.active>a,
#accordian>ul>li>ul>li>ul.show-dropdown>li.active>a,
#accordian>ul>li>ul>li>ul>li>ul.show-dropdown>li.active>a,
#accordian>ul>li>ul>li>ul>li>ul>li>ul.show-dropdown>li.active>a{
	background-color: #F4F9F9;
  color: #00843d;

}

.submenu-container{

	position: static;

	width: 100%;

}



.submenu-item{


	padding-left: 2rem;
	width: 100%;
	text-align: left;
	display: flex;



}


.level2-submenu-item{

	padding-left: 3rem;
	width: 100%;
	text-align: left;
	display: flex;

}




.level2-submenu-container{

	position: static;

	width: 100%;

}




.level3-submenu-item{

	padding-left: 4rem;
	width: 100%;
	text-align: left;
	display: flex;

}


.level3-submenu-container{

	position: static;

	width: 100%;

}







.menu-close{

	background-color: transparent;
	border: none;
	outline: none;
	color: #000000;
	display: block;
	position: fixed;
	z-index: 10000;
	top: 1rem;
	right: 1rem;

}

.menu-open{

	background-color: transparent;
	border: none;
	outline: none;
	color: #000000;
	display: block;
	position: fixed;
	z-index: 10000;
	top: 2rem;
	right: 0.3rem;

}

.menu-open:hover,
.menu-open:active,
.menu-open:focus,
.menu-close:hover,
.menu-close:active,
.menu-close:focus{


	color: #00843d;
	font-weight: 600;
	transition: all 0.3s ease-in-out;


}




.form-container {
  width: calc(100vw - 40px);

}


.other-button-box{

	width: 100% !important;
}



.sub-top-links{

	margin-top: 1rem !important;
	margin-bottom: 1rem !important;
	background-color: #BACDDB;
}


.sub-top-links ul{

	display: flex;
	justify-content: left;
	list-style: none;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;


}

.sub-top-links ul li{

	padding: 0.1rem 0.3rem;
	margin-top: 0.2rem;
	margin-bottom: 0.2rem;
	border-right: none;
	text-align: center;



}




.sub-top-links ul a{

	font-size: 0.6rem;
	font-weight: 500;
	color: #000000;
	text-decoration: none;
	width: 25%;


}


.sub-top-links ul a:hover{


	background-color: #ad0202;
	color: #ffffff;
	
	transition: all 0.3s ease-in-out;




}



.identity-image-card{

	width: 100%;
	height: 6rem;

}

.icon-links {
    margin-top: 3rem;
    margin-bottom: 3rem;
}



.icon-links ul {

    flex-wrap: wrap;
}


.icon-links ul a {

    width: 47%;
    border-right: none;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}



.service-box-container {

    flex-wrap: wrap;
    margin-top: 3rem;
    margin-bottom: 3rem;

}



.service-box-container a
{

	width: 47%;

}

.service-box
{

	width: 100%;
	margin: 1rem 0rem;
	height: 40vw;

}

.home-bottom-box {

    margin: 1rem 0rem;


}




.home-bottom-box-container{

	display: block;
	width: auto;
	
}

.home-bottom-box{

	width: 100%;
	height: auto;


}

.home-bottom-box:nth-of-type(1) {width: 100%;}
.home-bottom-box:nth-of-type(2) {width: 100%;}




.footer-column{


	width: 100%;
}









.bod-info{
	margin-left: 0rem;
}


	.bod-content{
		display: block;
		text-align: center;
	}



	.bod-img-div{

		margin-bottom: 1rem;
	}

.bod-img-news{

  width: 100%;



}



.bod-card{





}


.bod-card1{

  width: 100%;
	min-width: 100%;


}

.bod-heading{
	font-size: 1.5rem;
}

.bod-designation, .bod-designation{
	font-size: 1.2rem;
}


.bod-close-button{



}









	.pdf-thum {
		padding-right: 1rem;
	}





.center-video{

	display: flex;
	justify-content: center;
	width: 100%;
	height: 220px;
	margin: 0 auto;

}




.branch-container{

	display: block;
	width: 100%;	


}

.branch-list{

	width: 100%;
	height: auto;

}







#myModalLabel{

	font-size: 1.6rem;
}

.modal-branch-name{


	font-size: 0.8rem;
}


.branch-modal-table-heading{

	font-size: 0.8rem;

}

.branch-modal-table-text-center{

	font-size: 0.8rem;


}

.branch-modal-table-text-left{

	font-size: 0.8rem;

	
}


.modal-branch-btn{


	font-size: 0.8rem;
}



#myModal .modal-footer {

    display: flex;
    justify-content: center;
}



.head-office-container{

	display: block;
	width: 100%;
	margin: 2rem 0;
}


.head-office-content iframe{

	width: 100%;
}



.complaint-content{


	padding: 1rem;
}



.capital-management-table{

	width: 100%;
}




}














@media screen and (min-width: 901px) {



.menu-item:hover + .submenu-container{


	display: block !important;



}




.submenu-container{


	display: none !important;

}




.submenu-container:hover{


	display: block !important;


}







.level2-submenu-container{


	display: none !important;

}





.submenu-item:hover + .level2-submenu-container{


	display: block !important;


}


.level2-submenu-container:hover{


	display: block !important;


}











.level3-submenu-container{


	display: none !important;

}





.level2-submenu-item:hover + .level3-submenu-container{


	display: block !important;


}


.level3-submenu-container:hover{


	display: block !important;


}



}






@media only screen and (max-width: 1200px) and (min-width: 901px) {

.menu-item{

	padding: 0.5rem 0.4rem;
	font-size: 0.9rem;
	list-style: none;
	cursor: pointer;

	text-decoration: none;
	color: #206A5D;
	font-weight: 500;
	line-height: 2rem;
	background-color: transparent;
	border: none;
	outline: none;
	width: 100%;

}


.top-search-box-input{

	width: 10rem;
	border: 0.5px solid #B2B2B2;
	outline: none;
	border-radius: 20px;
	padding: 0.2rem 0.5rem;
}

.top-links ul li{

	padding: 0rem 0.4rem;
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
	border-right: solid 0.5px black;


}

}