@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000;
}

h1,
h2 {
  font-size: 50px;
  font-weight: 700;
  line-height: normal;
}

h3 {
  font-size: 30px;
  font-weight: 700;
  line-height: 126%;
}

h4 {
  font-size: 24px;
  font-weight: 400;
  line-height: normal;
}

h5 {
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
}

h6 {
  color: #000;
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

a {
  text-decoration: none;
  transition: all 0.3s;
}

img {
  max-width: 100%;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

.default-btn {
  text-decoration: none;
  outline: none;
  box-shadow: none;
  transition: all 0.3s;
  border-radius: 0px;
  font-size: 26px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  line-height: 100%;
  padding: 8px 15px;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-btn {
  background: #89B890;
  color: #fff;
  border: 1px solid #89B890;
}

.theme-btn:hover {
  background: #124891 !important;
  color: #fff !important;
  border: 1px solid #124891;
  transition: all 0.3s;
}

.blue-btn {
  background: #124891;
  color: #fff;
  border: 1px solid #124891;
}

.blue-btn:hover {
  background: #fff !important;
  color: #124891 !important;
  border: 1px solid #124891;
}

.txt-blue {
  color: #124891;
}

.txt-green {
  color: #89B890;
}

/* header */
.navbar.navbar-dark {
  background: #124891;
  padding: 68px 0 45px;
}

.navbar>.container-fluid {
  align-items: flex-start;
}

.navbar .navbar-brand {
  padding: 0;
}

.navigation-wrapper {
  width: 100%;
}

.navigation-wrapper .social-media-list {
  margin-bottom: 50px;
}

.social-media-list ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
  margin: 0;
  margin-right: 60px;
}

.social-media-list ul li {
  margin-right: 10px;
}

.social-media-list ul li:last-child {
  margin-right: 0;
}

.social-media-list ul li a {
  display: block;
}

.social-media-list ul li a img {
  width: 32px;
}

.navigation-list ul.navbar-nav {
  justify-content: flex-end;
}

.navbar-expand-md .navbar-nav .nav-item {
  margin-left: 85px;
}

.navbar-expand-md .navbar-nav .nav-link {
  color: #FFF;
  font-size: 25px;
  font-weight: 700;
  line-height: normal;
  transition: all 0.3s;
  padding: 0px;
}

.navbar-expand-md .navbar-nav .nav-link.active,
.navbar-expand-md .navbar-nav .nav-link:focus,
.navbar-expand-md .navbar-nav .nav-link:hover {
  color: #89B890;
  transition: all 0.3s;
}

/* end header */

/* footer */
footer {
  background: #124891;
  padding: 75px 0 149px;
}

footer .social-media-list {
  margin-bottom: 90px;
}

footer .social-media-list ul {
  justify-content: flex-start;
}

.footer-logo ul {
  display: flex;
  align-items: center;
}

.footer-logo ul li {
  margin-right: 68px;
}

.footer-logo ul li:last-child {
  margin-right: 0;
}

.registerd-info {
  text-align: right;
}

.registerd-info img {
  margin-bottom: 50px;
}

.registerd-info p {
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

/* end footer */

/* wrapper section */
.page-wrapper {
  width: 100%;
  margin: auto;
}

.page-card {
  position: relative;
  background: #fff;
  margin: auto;
  margin-top: -430px;
}

.page-card:after {
  content: "";
  width: 100%;
  height: 430px;
  box-shadow: 6px -6px 6px 0px rgba(0, 0, 0, 0.11);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.ptb-90 {
  padding: 90px 0;
}

/* end wrapper section */

/* homepage */
.banner {
  position: relative;
  z-index: -1;
  width: 100%;
  height: 835px;
}

.banner-img {
  height: 100%;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}

.home-content {
  padding-top: 125px;
}

.home-content h1 {
  color: #154692;
  margin-bottom: 55px;
  letter-spacing: 0.7px;
}

.home-content h4 {
  color: #000;
  margin-bottom: 35px;
}

.home-content p {
  color: #000;
  margin-bottom: 30px;
}

.home-content-btns {
  display: flex;
  align-items: center;
  padding: 30px 0;
}

.home-content-btns .default-btn {
  width: 442px;
  height: 89px;
  margin-right: 19px;
}

.section-title h2 {
  margin-bottom: 29px;
  color: #124891;
}

.meet-team-list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: stretch;
}

.team-card {
  width: 24%;
  margin-right: 1.33%;
  margin-bottom: 40px;
}

.team-card:nth-child(4n) {
  margin-right: 0;
}

.team-card img {
  margin-bottom: 30px;
}

.team-card h3 {
  line-height: normal;
  margin-bottom: 7px;
}

.team-card h4 {
  font-weight: 700;
  margin-bottom: 0;
}

.team-card p {
  margin: 25px 0;
}

.team-card a {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.3s ease;
}

.team-card a:hover {
  transform: translateY(-5px);
  text-decoration: none;
}

.team-card a:hover h3 {
  color: #154692;
}

/* end homepage */

/* search page */
.search-form-section {
  background: url(../img/search-bg.png) no-repeat;
  background-size: cover;
  background-position: top center;
  padding: 155px 0;
}

.search-page-wrapper {
  background: #FFF;
  box-shadow: 6px -6px 6px 0px rgba(0, 0, 0, 0.11);
}

.innerpage-title h1,
.innerpage-title h2 {
  margin-bottom: 15px;
}

.search-form p {
  color: #000;
  margin-bottom: 30px;
}

.search-form-field {
  padding: 50px 0;
}

.search-form-field .form-group {
  display: flex;
  align-items: stretch;
}

.search-form-field .form-control {
  height: 77px;
  color: #414141;
  font-size: 24px;
  font-weight: 300;
  line-height: normal;
  padding: 10px 40px;
  border-radius: 0;
}

.search-form-field .search-btn {
  margin-left: 15px;
  width: 260px;
  box-shadow: 6px -6px 6px 0px rgba(0, 0, 0, 0.11);
}

.search-result-wrapper {
  padding-bottom: 90px;
  display: flex;
  align-items: flex-start;
}

.filter-card {
  width: 260px;
}

.search-result-card {
  width: calc(100% - 260px);
  padding-left: 20px;
}

.filter-title,
.search-result-title {
  border-bottom: 1px solid rgb(186 186 186 / 50%);
  margin-bottom: 25px;
}

.filter-title h2,
.search-result-title h2 {
  margin-bottom: 10px;
}

.filter-item-detail {
  padding: 25px 0;
}

.filter-item {
  border-bottom: 1px solid rgb(186 186 186 / 50%);
  margin-bottom: 15px;
}

.filter-accordion .accordion-button {
  background: transparent;
  box-shadow: none !important;
  color: #124891;
  font-size: 20px;
  font-weight: 700;
  line-height: 175%;
  padding: 0px 0;
  border-radius: 0 !important;
  padding-bottom: 15px;
}

.filter-item-detail .form-check {
  padding-left: 0;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.filter-item-detail .form-check-input:checked {
  background-color: #FCC75D;
  border-color: #414141;
}

.filter-item-detail .form-check-input:checked[type=checkbox] {
  --bs-form-check-bg-image: unset;
}

.filter-item-detail .form-check .form-check-input {
  margin: 0;
  box-shadow: none;
  border-color: #414141;
}

.filter-item-detail label.form-check-label {
  padding-left: 23px;
  color: #000;
  font-size: 20px;
  font-weight: 400;
  line-height: 100%;
}

.filter-item .accordion-button::after {
  background: url(../img/arrow-down.svg) no-repeat;
  transform: unset;
}

.filter-item .accordion-button:not(.collapsed)::after {
  transform: unset;
  background: url(../img/arrow-up.svg) no-repeat;
}

.search-result-preview {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  border-bottom: 1px solid rgb(186 186 186 / 50%);
  margin-bottom: 50px;
}

.search-result-preview:last-child {
  border-bottom: 0;
  margin-bottom: 0;
}

.search-result-list {
  width: 49%;
  margin-right: 2%;
  margin-bottom: 55px;
  display: flex;
  align-items: stretch;
}

.search-result-list:nth-child(2n) {
  margin-right: 0;
}

.search-list-img {
  width: 170px;
}

.search-list-content {
  width: calc(100% - 170px);
  padding-left: 30px;
}

.search-list-content h5 {
  margin-bottom: 15px;
}

.search-list-content p {
  height: 50px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-bottom: 20px;

}

.publisher-info h6 {
  margin-bottom: 5px;
}

.publisher-info {
  margin-bottom: 20px;
}

.pdf-button-group {
  display: flex;
  align-items: stretch;
}

.pdf-button-group .default-btn {
  width: 48.5%;
  margin-right: 3%;
  font-size: 13px;
  height: 44px;
}

.pdf-button-group .default-btn:last-child {
  margin-right: 0;
}

.search-preview-full-width .search-result-list {
  width: 100%;
  margin-right: 0;
}

.search-preview-full-width .search-list-content {
  display: flex;
  align-items: center;
  height: 100%;
}

.search-list-right-button {
  width: 162px;
}

.search-list-left-content {
  width: calc(100% - 162px);
  padding-right: 90px;
}

.search-list-right-button .pdf-button-group {
  display: block;
}

.search-list-right-button .view-pdf-btn {
  width: 100%;
  margin-right: 0;
  margin-bottom: 8px;
}

.search-list-right-button .view-pdf-btn:last-child {
  margin-bottom: 0;
}

.search-list-left-content p {
  -webkit-line-clamp: 3;
  height: 76px;
}

.published-with-button {
  display: flex;
  align-items: center;
}

.search-preview-side-icon .search-list-img {
  width: 120px;
}

.search-preview-side-icon .search-list-content {
  width: calc(100% - 120px);
  padding-left: 16px;
}

.search-preview-side-icon .publisher-info {
  margin-bottom: 0;
  width: calc(100% - 86px);
  padding-right: 50px;
}

.search-preview-side-icon .pdf-button-group {
  width: 86px;
}

.search-preview-side-icon .pdf-button-group .view-pdf-btn {
  background: transparent !important;
  border: none !important;
  padding: 0;
  height: auto;
}

.search-preview-side-icon .publisher-info h6:last-child {
  margin-bottom: 0;
}

.search-preview-full-width .search-list-content h5 {
  margin-bottom: 40px;
}

.search-preview-full-width .search-list-left-content p {
  margin-bottom: 35px;
}

.search-preview-full-width .search-list-left-content .publisher-info {
  margin: 0;
}

/* end search page */

/* about us page */
.about-content {
  padding-top: 90px;
}

.about-content h1 {
  margin-bottom: 15px;
}

.about-content h4 {
  color: #89B890;
  font-weight: 700;
}

.about-content h4,
.about-content p {
  margin-bottom: 20px;
}

.about-content p {
  color: #000;
}

.about-content p span {
  color: #154692;
  font-weight: 700;
  font-size: 20px;
}

.study-section {
  margin-bottom: 40px;
  background: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
  border-left: 4px solid #154692;
}

.study-section h2 {
  margin-bottom: 20px;
  color: #154692;
  font-size: 22px;
  line-height: 1.4;
}

.study-section p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.study-section p:last-child {
  margin-bottom: 0;
}

/* end about us page */

/* contact us page */
.contact-section {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 90px 0 20px;
  border-bottom: 1px solid rgb(186 186 186 / 50%);
}

.contact-info {
  width: 54%;
}

.contact-logos {
  width: 46%;
  padding-bottom: 25px;
}

.contact-logos ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.contact-logos ul li {
  width: 50%;
  padding-left: 80px;
  text-align: center;
}

.contact-info h1 {
  margin-bottom: 15px;
}

.contact-info p {
  margin-bottom: 25px;
  color: #000;
}

.contact-info p a {
  font-weight: 700;
  color: #000;
}

.get-touch-section {
  padding: 45px 0 120px;
  display: flex;
  align-items: flex-start;
}

.contact-form {
  width: 815px;
}

.write-us {
  width: calc(100% - 815px);
  padding-left: 16px;
}

.get-touch-section h6 {
  color: #000;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 11px;
}

.contact-form-title h2,
.write-us-title h2 {
  color: #154692;
  margin-bottom: 15px;
}

.write-us p {
  padding: 20px 0;
  margin: 0;
}

.contact-form .form-group .form-control {
  height: 57px;
  border: 1px solid #BABABA;
  border-radius: 0;
  color: #414141;
  font-size: 20px;
  font-weight: 300;
  line-height: normal;
  padding: 10px 30px;
}

.contact-form .form-group {
  margin-bottom: 22px;
}

.contact-form .form-group label {
  color: #000;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 11px;
}

.contact-form .form-group textarea.form-control {
  height: auto;
  resize: none;
}

.form-submit {
  padding: 15px 0;
}

.form-submit-btn {
  width: 260px;
  height: 89px;
}

/* end contact us page */

a {
  color: white;
}

a:hover {
  color: #124891;
}