body {
  font: 15px/1.5 "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont,
    Helvetica, Arial, sans-serif;
  padding: 0;
  margin: 0;
  color: #424a4f;
}

.container {
  width: 80%;
  margin: auto;
  overflow: hidden;
  max-width: 1300px;
}

.container-header {
  width: 90%;
  margin: auto;
  overflow: hidden;
  max-width: 1300px;
}

ul {
  margin: 0;
  padding: 0;
}


/* Responsive Menu */
#loginlink .icon {
  display: none;
}

.hiddenItem {
  display: none;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  min-width: 190px;
  background-color: #dbecf4;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

/* Links inside the dropdown */
.dropdown-content a {
  text-decoration: none;
  margin: 5px 0px;
}

/* Change color of dropdown links on hover */
.dropdown-content > a:hover {
  background-color: #f1f1f1;
}

/* Footer */
footer {
  background-color: #e6e4e6;
  padding: 40px 0px 5px 0px;
}

.container-footer {
  margin: auto;
  max-width: 1300px;
  width: 95%;
}

.grid-footer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  justify-items: center;
  grid-gap: 10px;
  border-bottom: #fff solid 1px;
}

.grid-footer-item {
  width: 95%;
  transition: 0.3s;
  text-align: left;
  vertical-align: middle;
}

.grid-footer-item ul {
  list-style-type: none;
  font-size: 18px;
}

.grid-footer-item li {
  margin: 1px 0px;
}

.grid-footer-item li a {
  color: #212121;
  font-weight: 600;
  text-transform: none;
}

.grid-footer-item p {
  font-size: 16px;
  line-height: 18px;
  color: #040d14;
}

.grid-footer-item img {
  width: 100%;
}

footer p {
  font-size: 12px;
  line-height: 14px;
  color: #757575;
}

footer a {
  text-decoration: none;
  text-transform: capitalize;
  color: #040d14;
}

/* //////////////////////////////////////////*/

/*#section-calculator {
  margin-top: 90px;
  padding: 50px 0px 0px 0px;
}*/

.container-calculator {
  width: 95%;
  margin: auto;
  overflow: hidden;
  max-width: 1300px;
}

.jumbo {
  text-align: center;
  margin-bottom: 20px;
}

.jumbo h1 {
  font-size: 45px;
  margin: 0px;
  padding: 0px;
  color: #6b8f71;
  font-weight: 600;
}

.jumbo h2 {
  font-size: 18px;
  font-weight: normal;
  text-align: left;
}

.grid-calculator p {
  font-size: 18px;
  font-weight: normal;
  text-align: left;
}

.grid-calculator {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 30px;
  margin-bottom: 50px;
  justify-items: center;
}

.card-calculator {
  width: 95%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  height: fit-content;
  margin-top: 20px;
}

.card-calculator h1 {
  background-color: #55a4cc;
  padding: 10px 0px 10px 10px;
  margin: 0px;
  font-size: 24px;
  color: #fff;
  font-weight: 600;
}

.card-calculator h2 {
  margin: 0px;
  font-size: 18px;
  font-weight: normal;
}

.grid-calculator ul {
  list-style: none;
  font-size: 18px;
  margin-left: 30px;
}

.grid-calculator ul li {
  position: relative;
  padding-left: 20px;
  margin-top: 10px;
}

.grid-calculator ul li:before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  background-image: url("../img/bullet.png");
  background-size: cover;
  background-position: center;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

input {
  padding: 10px 5px;
  font-size: 16px;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}

input:focus {
  border-color: rgb(85 164 204);
  outline: 0;
  box-shadow: 0 0 0 4px rgba(85, 164, 204, 0.25);
}

select {
  padding: 10px 5px;
  font-size: 16px;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}

select:focus {
  border-color: rgb(85 164 204);
  outline: 0;
  box-shadow: 0 0 0 4px rgba(85, 164, 204, 0.25);
}

table {
  border-collapse: collapse;
  width: 100%;
  font-size: 16px;
}

button {
  background-color: #6b8f71;
  color: white;
  font-size: 16px;
  padding: 10px 5px;
  margin: 5px 0 10px 0;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  border: none;
  font-weight: 600;
  font-family: inherit;
}

button:focus {
  border-color: #6b8f71;
  outline: 0;
  box-shadow: 0 0 0 4px rgba(107, 143, 113, 0.25);
}

.icon {
  color: #dc3545;
  background-color: #fff;
  font-size: 16px;
  padding: 0px;
  margin: 0px;
}

td {
  border-bottom: 1px solid #ddd;
}

.left {
  text-align: left;
  padding: 10px 10px 10px 20px;
}

.right {
  text-align: right;
  padding: 10px 20px 10px 0px;
}

.bold-text {
  font-weight: 600;
}

.error {
  color: #dc3545;
  text-align: center !important;
  font-size: 16px !important;
  margin: 10px 0px 0px 0px;
}

.main-tr {
  background-color: #f1f1f1;
}

.dataTable {
  overflow-x: auto;
}

#dataTable {
  width: 100%;
  text-align: left;
  font-size: 14px;
}

#dataTable td,
th {
  padding: 5px 10px;
}

/* calculator list */

#calculator-list {
  margin: auto;
  font-size: 20px;
  margin-bottom: 40px;
  max-width: 700px;
}

/*.calculator-card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  margin: 20px 10px;
}*/

.calculator-card h1 {
  background-color: #55a4cc;
  padding: 10px 0px 10px 10px;
  margin: 0px;
  font-size: 24px;
  color: #fff;
  font-weight: 600;
}

.calculator-card ul {
  margin-left: 40px;
  padding-bottom: 10px;
}

.calculator-card li {
  margin: 10px 0px;
}

.calculator-card a {
  text-decoration: none;
  color: #424a4f;
}

.calculator-card a:hover {
  color: #6b8f71;
  font-weight: 600;
}

#TopBtn {
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: #6b8f71;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 10px;
  font-size: 16px;
  width: fit-content;
}

@media (max-width: 870px) {
  /* Responsive Menu */
  .container-header {
    width: 100%;
    margin: auto;
    overflow: hidden;
  }

  #section-calculator {
    padding: 30px 0px 0px 0px;
  }

  header nav #navTop {
    display: none;
  }

  header #loginlink a {
    font-size: 18px;
  }

  header #branding img {
    width: 200px;
  }

  header #loginlink {
    padding-top: 18px;
    padding-right: 10px;
  }

  header #loginlink li {
    display: none;
  }

  #loginlink .icon {
    text-align: right;
    display: block;
  }

  #loginlink.responsive li {
    float: none;
    display: block;
    text-align: right;
    margin-top: 0;
  }

  #loginlink.responsive {
    padding: 0;
    position: fixed;
    right: 0;
    width: 200px;
    padding-top: 18px;
    padding-right: 10px;
    margin-bottom: 20px;
    background: #fff;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  }

  .dropdown-content {
    position: inherit;
  }

  /* //////////////////////////////////////////*/
  .jumbo {
    margin-bottom: 0px;
  }

  .jumbo h1 {
    font-size: 34px;
  }

  .jumbo h2 {
    font-size: 18px;
  }

  .grid-calculator p {
    font-size: 16px;
  }

  .grid-calculator ul {
    font-size: 16px;
  }

  .card-calculator h1 {
    font-size: 18px;
  }

  #boxes-service h3 {
    font-size: 14px;
  }

  #boxes-service .box img {
    width: 50px;
  }

  .calculator-card h1 {
    font-size: 18px;
  }

  .calculator-card a {
    font-size: 18px;
  }
}

/* //////////////////////////////////////////*/
/*-----Calculator-----*/
.calculator-card {
    background-color: #09537B;
    color: #fff;
    justify-content: center;
}

.card-body {
    flex: 1 1 auto;
    overflow-wrap: anywhere;
}

.card-body .card-text a {
    color: black;
    text-decoration: none;
}

ul.caluclator_li li {
 cursor: pointer;
 display: list-item;
 font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
 font-size: 18px;
 line-height: 27px;
 margin-bottom: 5px;
 text-align: left;

}


#section-calculator .main-head {
    color: #189550;
}

#section-calculator h2 {
    color: #189550;
    position: relative; 	
}

#section-calculator p {
    font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
    font-size: 18px;
    line-height: 27px;
    margin: 14.94px 0px;
 }

#section-calculator h2::after {
    content: '';
    position: absolute;
    bottom: -5px; 
    left: 0;
    width: 100%;
    height: 2px; 
    background-color: #189550; 
 }
 
 
 table th {
    padding-top: 12px;
    padding-bottom: 12px;
    background-color: #6b8f71;
    color: #fff;
    font-weight: 600;
 }
 
 table td{
     border-bottom: 1px solid #f4f4f4;
    padding: 15px 5px;
 }
 
 .blog-main h4 {
    color: #424a4f;
    position: relative; 
}

.blog-main h4::after {
    content: '';
    position: absolute;
    bottom: -5px; 
    left: 0;
    width: 100%;
    height: 2px; 
    background-color: #189550; 
}


#main-home .list-col h3{
  color: #189550;
	display: inline;
	font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
	font-size: 30px;
	font-weight: 400;
	line-height: 45px;
	text-decoration: underline solid #189550;
}

#main-home .list-col a{
  text-decoration: none;
  cursor: pointer;
	display: inline;
	font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
	line-height: 24px;
	text-align: left;
  margin: 5px;
  color: black;
 }
 
  #main-home .list-col h4{
  color: #6B8F71;
	display: inline;
	font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
	font-size: 30px;
	font-weight: 400;
	line-height: 45px;
	text-decoration: none;
}


div.blog-card {
	background-position: 0% 50%;
	background-repeat: no-repeat;
	background-size: 100%;
	border-radius: 5px;
	box-shadow:
		rgba(0, 0, 0, 0.2) 0px 4px 8px 0px,
		rgba(0, 0, 0, 0.19) 0px 6px 20px 0px;
	cursor: pointer;
	margin: 20px 10px 60px;
	min-height: 250px;
	overflow: hidden;
	position: relative;
	text-decoration: none !important;
}

div.blog-card p.blog_p {
	background-color: rgba(85, 164, 204, 0.88);
	color: #ffffff;
	cursor: pointer;
	font-family:
		"Segoe UI",
		system-ui,
		-apple-system,
		BlinkMacSystemFont,
		Helvetica,
		Arial,
		sans-serif;
	font-size: 18px;
	line-height: 27px;
	margin: 150px 0px 0px;
	padding: 0px 10px 20px;
	text-decoration: none !important;
}

div.blog-card h3.blog_h3 {
	background-color: rgba(107, 143, 113, 0.82);
	color: #ffffff;
	cursor: pointer;
	font-family:
		"Segoe UI",
		system-ui,
		-apple-system,
		BlinkMacSystemFont,
		Helvetica,
		Arial,
		sans-serif;
	font-size: 14px;
	font-weight: 600;
	line-height: 21px;
	padding: 0px 0px 0px 10px;
	text-align: left;
	text-decoration: none !important;
}

div.blog-card h1.blog_h1 {
	background-color: rgba(107, 143, 113, 0.82);
	color: #ffffff;
	cursor: pointer;
	font-family:
		"Segoe UI",
		system-ui,
		-apple-system,
		BlinkMacSystemFont,
		Helvetica,
		Arial,
		sans-serif;
	font-size: 24px;
	font-weight: 600;
	line-height: 36px;
	margin: 20px 0px 0px;
	padding: 0px 0px 0px 10px;
	text-decoration: none !important;
}



div.blog-category a {
  color: black !important;
  text-decoration: none !important;
 
}


section.showcase-account {
	background-color: #b7d8e9;
	background-position: 50% 50%;
	border: none;
}

div.container-showcase {
	margin: 0px 33.7344px 0px 33.7188px;
	max-width: 1300px;
	overflow: hidden;
	padding: 0px 0px 134.891px;
}




section.showcase-account h1 {
	color: #040D14;
	font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
	font-size: 38px;
	font-weight: 600;
	margin: 128.141px 0px 20px;
	text-align: center;
}

section.showcase-account h2 {
	color: #040D14;
	font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
	font-size: 24px;
	font-weight: normal;
	line-height: 34px;
	margin: 0px 0px 40px;
	text-align: center;
}



section.showcase-account a.button-refer {
	background-color: #6B8F71;
	border-radius: 15px;
	color: #FFFFFF;
	cursor: pointer;
	display: inline;
	font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
	font-size: 18px;
	font-weight: 600;
	line-height: 27px;
	padding: 10px 30px;
	text-align: center;
	text-transform: capitalize;
	text-decoration: none;
}

div.blog-category a {
	cursor: pointer;
	display: inline;
	list-style-type: none;
}

div.blog-category li {
	color: #424a4f;
	cursor: pointer;
	display: list-item;
	font-family:
		"Segoe UI",
		system-ui,
		-apple-system,
		BlinkMacSystemFont,
		Helvetica,
		Arial,
		sans-serif;
	font-size: 18px;
	line-height: 27px;
	list-style-type: none;
	margin: 5px 0px 5px 30px;
	text-align: left;
	
}

/*-----Research-----*/

div.container-ipoTable {
	margin: 100px 164.5px;
	max-width: 1000px;
	overflow: hidden;
	padding: 10px;
}

/*-----Download-----*/
ul.download-list li {
    color: #424a4f;
    cursor: pointer;
    display: list-item;
    font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 5px;
    text-align: left;
}

/*-----Download-----*/
p.service_header {
    font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
    line-height: 27px;
    font-size: 24px;
    margin-top: 10px;
    color: #424a4f;
    position: relative;
    animation: animatefade 2s;
}

/*-----Services-----*/
.services_section h3 {
    color: #424a4f;
    position: relative; 
}

.services_section h3::after {
    content: '';
    position: absolute;
    bottom: -5px; 
    left: 0;
    width: 100%;
    height: 2px; 
    background-color: #189550; 
}

.services_section p {
	color: #424A4F;
	font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
	font-size: 22px;
	line-height: 33px;
	margin: 5px 30px 0px;
}

.services_section h4 {
	font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
	font-size: 20px;
	font-weight: 600;
	line-height: 30px;
	margin: 5px 0px 5px 30px;
}

.services_section ul {
	list-style-type: none;
	margin: 0px 0px 0px 50px;
	
}


/* //////////////////////////////////////////*/
