/*
 Theme Name: Twenty Nineteen Child
 Theme URI: https://www.element8.ae
 Author: Element8
 Author URI: https://www.element8.ae
 Template: twentynineteen
 Description: Child theme for Twenty Seventeen.
 Version: 0.20
 License: GNU General Public License v2 or later
 License URI: http://www.gnu.org/licenses/gpl-2.0.html
 Tags:
 Text Domain: twentynineteen-child
 */

:root {
  --color-primary: #b5bf35;
  --color-primary-hover: #184377;
  --color-secondary: #184377;
  --color-secondary-hover: #000;
  --font-primary: "Roboto", sans-serif;
  --transition-time: 0.35s;
  --container-width: 1300px;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  text-rendering: optimizeLegibility;
}

body {
  color: #094278;
  color: #000;
  font-size: 15px;
  background: #ffffff;
  font-family: var(--font-primary);
  padding: 0;
  margin: 0;
}

a {
  color: #094278;
  text-decoration: none;
  -moz-transition: all var(--transition-time) ease;
  -o-transition: all var(--transition-time) ease;
  -webkit-transition: all var(--transition-time) ease;
  -ms-transition: all var(--transition-time) ease;
  transition: all var(--transition-time) ease;
}

a:hover {
  color: var(--color-primary);
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #094278;
}

p {
  font-size: 16px;
  line-height: 24px;
}

p:only-child,
p:last-child {
  margin: 0;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

small,
.small {
  font-size: 14px;
}

img {
  height: auto;
  max-width: 100%;
}

img,
svg {
  vertical-align: middle;
}

input,
select,
button,
textarea {
  cursor: pointer;
  font-family: var(--font-primary);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

button,
[role="button"] {
  cursor: pointer;
}

:disabled {
  cursor: default;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  line-height: inherit;
}

span {
  display: inline-block;
}

select {
  background-image: url(assets/images/down-arrow.png);
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 18px;
  -ms-progress-appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

blockquote {
  padding: 30px;
  background: #f2f2f2;
  color: #184377;
  border-left: 5px solid #184377;
  margin-left: 0;
}

blockquote p {
  margin: 0 !important;
}

:focus {
  outline: none;
}

textarea {
  min-height: 150px;
  resize: none;
}

.form-field {
  display: block;
  width: 100%;
  height: 44px;
  padding: 5px 15px;
  background-color: #fff;
  border: 1px solid #ced4da;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

iframe {
  border: 0;
}

.w-25 {
  width: 100% !important;
}

.w-50 {
  width: 100% !important;
}

.w-75 {
  width: 100% !important;
}

.w-100 {
  width: 100% !important;
}

/* -------------------------------------------------------------- */

.p-0 {
  padding: 0 !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

/* -------------------------------------------------------------- */

.m-0 {
  margin: 0 !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

/* -------------------------------------------------------------- */

.button {
  display: inline-block;
  cursor: pointer;
  background-color: #d4d5d6;
  border: 1px solid transparent;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 0 30px;
  height: 44px;
  line-height: 44px;
  font-size: 1rem;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  -webkit-transition: all var(--transition-time) ease-in-out;
  transition: all var(--transition-time) ease-in-out;
}

.button+.button {
  margin-left: 10px;
}

.button-primary {
  color: #ffffff;
  background: var(--color-primary);
}

.button-primary:hover {
  background: var(--color-primary-hover);
}

/* -------------------------------------------------------------- */

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

/* -------------------------------------------------------------- */

.m-auto {
  margin-left: auto;
  margin-right: auto;
}

.ml-auto {
  margin-left: auto;
}

.mr-auto {
  margin-right: auto;
}

.container {
  width: 100%;
  margin: 0 auto;
  max-width: var(--container-width);
}

/* -------------------------------------------------------------- */

.text-primary {
  color: var(--color-primary);
}

.text-secondary {
  color: var(--color-secondary);
}

.bg-primary {
  background-color: var(--color-primary);
}

.bg-secondary {
  background-color: var(--color-secondary);
}

/* -------------------------------------------------------------- */

.zoom-effect {
  overflow: hidden;
}

.zoom-effect>a {
  display: block;
}

.zoom-effect img {
  position: relative;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all var(--transition-time) ease-in-out;
  transition: all var(--transition-time) ease-in-out;
  will-change: transform;
}

.zoom-effect:hover img {
  -webkit-transform: scale(1.12);
  transform: scale(1.12);
}

/* -------------------------------------------------------------- */

.owl-nav button {
  --size: 50px;
  --side: 80px;
  position: absolute;
  top: 50%;
  margin-top: -25px;
  width: var(--size);
  height: var(--size);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d8d8d8 !important;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all var(--transition-time) ease-in-out;
  transition: all var(--transition-time) ease-in-out;
  will-change: transform;
}

.owl-nav button span {
  font-size: 30px;
  color: #fff;
}

.owl-nav button.owl-prev {
  left: var(--side);
}

.owl-nav button.owl-next {
  right: var(--side);
}

.owl-nav button.owl-prev:hover,
.owl-nav button.owl-next:hover {
  background: var(--color-primary-hover) !important;
}

.owl-nav button.owl-prev:hover span,
.owl-nav button.owl-next:hover span {
  color: #fff;
}

/* -------------------------------------------------------------- */

.pagination {
  margin-top: 40px;
  display: flex;
  column-gap: 5px;
}

.pagination .page-numbers {
  --size: 47px;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  display: flex;
  font-weight: 500;
  align-items: center;
  justify-content: center;
}

.page-numbers.current,
.pagination .active,
.pagination a:hover {
  color: #fff;
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.pagination li+li {
  margin-left: 14px;
}

/* -------------------------------------------------------------- */

.search-pannel {
  --search-height: 40px;
  position: absolute;
  height: var(--search-height);
  top: -5px;
  width: 200px;
  display: none;
  border-radius: 30px;
  overflow: hidden;
  right: calc(100% + -9px);
  z-index: 99;
  display: none;
}

.search-expand {
  width: 100%;
  color: #000;
  font-weight: 400;
  z-index: 999;
  padding: 0 5% 0 20px;
  background: #fff;
  border: none;
  font-size: 14px;
  height: var(--search-height);
}

.search-btn {
  cursor: pointer;
  margin-left: 20px;
}

/* -------------------------------------------------------------- */

.contact-map {
  min-height: 600px;
}

.wpcf7-form-control-wrap {
  width: 100%;
}

.wpcf7-not-valid-tip {
  font-size: 12px;
  margin-top: 5px;
  text-align: left;
}

.wpcf7 form .wpcf7-response-output {
  color: #fff;
  font-size: 12px;
  text-align: center;
}

.wpcf7 form.invalid .wpcf7-response-output {
  background: #dc3232;
  border-color: #dc3232;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: #46b450;
  background-color: #46b450;
}

/* -------------------------------------------------------------- */

.default-page {
  padding: 100px 0;
}

.default-page ol:not(.pagination),
.default-page ul:not(.pagination) {
  padding-left: 28px;
}

.default-page ol:not(:last-child),
.default-page ul:not(:last-child) {
  margin: 0 0 20px 0;
}

/* -------------------------------------------------------------- */

.error404 header,
.search-results header,
.search-no-results header {
  background: #e1e0e0;
}

.error-404,
.search-page-inner,
.search-noresult-inner {
  text-align: left;
  padding: 120px 120px;
}

.error-404 h1,
.search-page h1,
.search-noresult h1 {
  font-size: 30px;
}

.error-404 h1 {
  margin-bottom: 15px;
}

.error-404 h3 {
  margin: 40px 0 25px 0;
}

.error-404 h4 {
  margin-bottom: 15px;
}

.error-404 ul li {
  font-size: 15px;
  margin-bottom: 0;
}

.error-404 ul li+li {
  margin-top: 10px;
}

.error-404 .button {
  margin-top: 30px;
}

/* -------------------------------------------------------------- */

.search-page ul {
  padding: 0;
  margin: 40px 0 0 0;
  list-style: none;
}

.search-page li {
  border: 1px solid #ddd;
}

.search-page li+li {
  margin-top: 20px;
}

.search-page li a {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.search-page .image {
  width: 30%;
}

.search-page .content {
  width: 70%;
  padding: 20px 30px;
}

/* -------------------------------------------------------------- */

.search-no-results .search-form {
  display: flex;
  margin-top: 20px;
  max-width: 380px;
  width: 100%;
}

.search-no-results .search-form label {
  width: 100%;
}

.search-no-results .search-field {
  width: 100%;
  padding-left: 15px;
  border: 1px solid #999;
}

.search-no-results .search-field,
.search-no-results .search-submit {
  height: 40px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}

.search-no-results .search-submit {
  border: none;
  padding: 0 20px;
  color: #ffffff;
  font-weight: bold;
  margin-left: 5px;
  background: var(--color-primary);
}

.search-no-results .search-submit:hover {
  background: var(--color-primary-hover);
}

/* -------------------------------------------------------------- */

.sub-banner {
  padding: 0;
  background: #f1f1f1;
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
}

.sub-banner h1 {
  font-size: 80px;
  line-height: 80px;
  max-width: 1000px;
  font-family: "futura_stdheavy";
  text-transform: uppercase;
  color: #fff;
}

/* -------------------------------------------------------------- */

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  margin: 0px 0 0 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li+li {
  margin-left: 30px;
}

.breadcrumbs a {
  color: #fff;
  font-size: 21px;
  position: relative;
  text-transform: capitalize;
}

.breadcrumbs a:hover,
.breadcrumbs a.active {
  color: var(--color-primary);
}

.breadcrumbs a::after {
  content: "";
  width: 8px;
  height: 11px;
  position: absolute;
  transform: translate(10px, 5px);
  background: url(assets/images/arrow-right.png) no-repeat;
}

/* --------------------------------reset end------------------------------------- */

.header {
  width: 100%;
  padding: 0px 0;
  height: 60px;
  position: fixed;
  top: 0;
  z-index: 999;
  background: #184377;
  display: flex;
  align-items: center;
}

.site-logo{
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
     transition: all 0.3s ease-in-out;
}

.header.header-sticky .site-logo{
     max-width: 100px;
}

.header .container {
  display: flex;
  max-width: 1500px;
  flex-wrap: wrap;
  align-items: center;
}

.ico-search {
  color: #fff;
}

.site-logo {
  position: absolute;
  top: 0px;
}

.header-options {
  margin-left: 20px;
  display: flex;
  align-items: center;
}

.launguge-switch {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  margin-left: 25px;
  position: relative;
  top: -5px;
}

.wpml-ls-legacy-list-horizontal a {
  color: #fff;
  font-size: 15px;
}

.wpml-ls-legacy-list-horizontal,
.wpml-ls-legacy-list-horizontal a {
  padding: 0 !important;
}

/* ------------------------------------------------------------ */

.menu-ul {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.menu-ul a {
  text-transform: capitalize;
  font-weight: 400;
  color: #fff;
  line-height: 60px;
}

.menu-ul li+li {
  margin-left: 30px;
}

.menu-ul a:hover,
.current_page_item>a,
.current-menu-item>a {
  color: var(--color-primary);
}

.mob-menu-icn {
  width: 10px;
  height: 7px;
  background: url(assets/images/menu-arrow-down.png) no-repeat;
  background-size: cover;
  margin-left: 5px;
  transition: transform 0.35s ease-in-out;
}

/* ------------------------------------------------------------ */

.sub-menu {
  width: 170px;
  background: #fff;
  padding: 15px;
  border: 1px solid #ddd;
  transform: translateY(20px);
  transition: opacity 0.35s ease-out, visibility.35s ease-out,
    top 0.35s ease-out, transform 0.35s ease-in-out;
}

.sub-menu li+li {
  margin: 10px 0 0 0;
}

.header li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(10px);
}

/* ------------------------------------------------------------ */

.menu-icon {
  width: 40px;
  height: 24px;
  z-index: 9;
  position: relative;
  cursor: pointer;
  display: none;
  margin-left: auto;
  -webkit-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: all var(--transition-time) ease-in-out;
  transition: all var(--transition-time) ease-in-out;
}

.menu-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 4px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: all var(--transition-time) ease-in-out;
  transition: all var(--transition-time) ease-in-out;
}

.menu-icon span:nth-child(1) {
  top: 0;
}

.menu-icon span:nth-child(2),
.menu-icon span:nth-child(3) {
  top: 10px;
}

.menu-icon span:nth-child(4) {
  top: 20px;
}

.menu-icon.open span:nth-child(1) {
  top: 10px;
  width: 0;
  left: 50%;
}

.menu-icon.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.menu-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.menu-icon.open span:nth-child(4) {
  top: 10px;
  width: 0;
  left: 50%;
}

.menu-icon.open span {
  background: var(--color-primary);
}

@media (max-width: 1000px) {
  .menu-icon {
    display: block;
  }

  .nav-bar {
    position: fixed;
    width: 100%;
    z-index: 8;
    background: #fff;
    top: 0;
    height: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    -webkit-transition: all var(--transition-time) ease-in-out;
    transition: all var(--transition-time) ease-in-out;
  }

  .header .slow {
    height: 100%;
  }

  .menu-ul {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
    flex-direction: column;
  }

  .menu-ul li {
    --space: 4%;
    padding: 0;
    margin: 0 var(--space);
  }

  .menu-ul li+li {
    margin-top: 15px;
    margin-left: var(--space);
  }

  .menu-ul a {
    font-size: 20px;
    color: #000;
    font-weight: bold;
  }

  .sub-menu {
    width: 100%;
    padding: 0;
    display: none;
    border: none;
    margin-bottom: 15px;
  }

  .sub-menu li {
    margin: 0;
  }

  .sub-menu li a {
    font-size: 14px;
  }

  .sub-menu li+li {
    margin: 10px 0 0 0;
  }

  .mob-menu-icn {
    position: absolute;
    right: 0;
    top: 0;
  }

  .header li .mob-menu-icn.active {
    transform: scaleY(-1);
  }
}

/*footer*/

.footer {
  --hover: #b5bf35;
  padding: 115px 0 38px 0;
  background: #21457b;
  margin-top: -30px;
}

.footer .container {
  display: flex;
  flex-wrap: wrap;
}

.footer h4 {
  color: #f1f1f1;
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 40px 0;
}

.newsletter {
  width: 41.5%;
}

.newsletter_form {
  display: flex;
  flex-wrap: wrap;
  background: #ffffff;
}

.newsletter_form,
.newsletter_form .submit,
.newsletter_form input {
  border: none;
  -moz-border-radius: 100px;
  -webkit-border-radius: 100px;
  border-radius: 100px;
}

.newsletter_form input {
  padding: 0 35px;
  height: 50px;
  font-size: 14px;
  font-weight: 300;
  background: #ffffff;
  width: calc(100% - 158px);
}

.newsletter_form .submit {
  width: 158px;
  text-align: center;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  background: #000000;
  transition: background 0.25s ease-in-out;
  margin-left: auto;
  position: relative;
  right: -2px;
}

.newsletter_form .submit:hover {
  background: var(--hover);
}

.footer_right_side {
  display: flex;
  flex-wrap: wrap;
  width: 50%;
  row-gap: 30px;
  margin-left: auto;
  justify-content: space-between;
}

.ouicklinks {
  max-width: 300px;
}

.ouicklinks ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 18px;
}

.ouicklinks li {
  width: 50%;
}

.ouicklinks a {
  color: #ffffff;
  font-size: 16px;
}

.social_icons ul {
  display: flex;
  align-items: center;
  align-items: center;
}

.social_icons li+li {
  margin-left: 16px;
}

.social_icons a {
  color: #ffffff;
  font-size: 26px;
}

.ouicklinks a:hover,
.copy_right a:hover,
.social_icons a:hover {
  color: var(--hover);
}

.copy_right {
  width: 100%;
  margin-top: 65px;
  display: flex;
  column-gap: 7px;
  flex-wrap: wrap;
}

.copy_right p {
  margin: 0;
  font-size: 14px;
}

.copy_right a,
.copy_right p {
  color: #ffffff;
}

@media (max-width: 1040px) {
  .footer {
    padding: 70px 0 38px 0;
  }

  .footer h4 {
    margin: 0 0 30px 0;
  }

  .copy_right {
    margin-top: 50px;
  }
}

@media (max-width: 860px) {
  .newsletter {
    width: 100%;
  }

  .about-proposition-section {
    padding: 50px 0;
  }

  .footer .container {
    row-gap: 30px;
  }

  .footer_right_side {
    width: 100%;
  }

  .footer_right_side {
    justify-content: flex-start;
  }

  .copy_right {
    margin-top: 15px;
  }
}

@media (max-width: 767px) {
  .footer {
    padding: 50px 0 38px 0;
  }

  .newsletter_form input {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .social_icons {
    width: 100%;
  }

  .ouicklinks ul {
    row-gap: 15px;
  }

  .newsletter_form .submit {
    width: 118px;
  }

  .newsletter_form input {
    width: calc(100% - 118px);
    padding: 0 10px 0 20px;
    height: 46px;
    font-size: 16px;
  }

  .ouicklinks {
    max-width: 100%;
  }

  .footer h4 {
    margin: 0 0 20px 0;
  }
}

/* --------------------------------header style------------------------------------- */

.main {
  --px-120: 120px;
  overflow: hidden;
}

.wpml-ls-statics-footer,
.otgs-development-site-front-end {
  display: none !important;
}

.pb-120 {
  padding-bottom: var(--px-120);
}

.pt-120 {
  padding-top: var(--px-120);
}

.px-120 {
  padding-top: var(--px-120);
  padding-bottom: var(--px-120);
}

.banner-title {
  text-transform: uppercase !important;
  font-family: "futura_stdheavy" !important;
}

.main-banner {
  width: 100%;
  height: auto;
  position: relative;
}

.banner-top-content {
  position: absolute;
  bottom: 60px;
  width: 100%;
  z-index: 99;
}

input:focus {
  outline: none !important;
}

.banner-top-content .item {
  background-color: #eeeeee;
  border: 3px solid #eeeeee;
  border-radius: 15px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

/*@media (min-width: 1200px) {
  .banner-top-content .container {
    max-width: 960px;
  }
}*/


.banner-top-content .item:hover {
  background-color: #21457b;
}

.rs_splitted_lines span .rs_splitted_chars {
  color: rgb(181, 191, 53) !important;
}

.banner-top-content .item a {
  display: flex;
  width: 100%;
}

.banner-top-image {
  width: 110px;
  /* height: 110px; */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 10px;
}

.banner-top-text {
  padding: 15px;
  width: calc(100% - 110px);
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.programes-main-inner ul li:hover::after {
  background: rgb(0, 0, 0);
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.06486344537815125) 39%,
      rgb(181 191 53) 100%);
}

.banner-top-text p {
  font-size: 15px;
  line-height: 20px;
  color: #094278;
  margin-bottom: 0px;
  margin-top: 10px;
  font-weight: 300;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-line-clamp: 2;
  -moz-line-clamp: 2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;	
}

.banner-top-content .item:hover .banner-top-text p {
  color: #fff;
}

.banner-top-text span {
  font-size: 11px;
  color: #fff;
  display: inline-block;
  background-color: #dd5136;
  padding: 4px 12px;
  border-radius: 10px;
}

.our-imapact-section {
  width: 100%;
  height: auto;
  padding: 100px 0px;
  background-image: url(assets/images/impact-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-repeat: no-repeat;
}

.our-imapact-section .main-title {
  color: #fff;
}

.hme-about-section-inner {
  position: relative;
}

.main-title {
  font-size: 48px;
  line-height: 50px;
  color: #094278;
  text-transform: capitalize;
  font-family: "futura_stdheavy" !important;
}

.our-impact-inner {
  width: 100%;
  margin-top: 40px;
}

.our-impact-inner ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 12px;
  margin-left: -0.5%;
  margin-right: -0.5%;
}

.our-impact-inner ul li {
  width: 32.33%;
  min-height: 320px;
  background-repeat: no-repeat;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-border-radius: 17px;
  -moz-border-radius: 17px;
  border-radius: 17px;
  overflow: hidden;
  padding: 35px;
  display: flex;
  align-items: flex-end;
  margin-left: 0.5%;
  margin-right: 0.5%;
  position: relative;
}

.our-impact-inner ul li::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  bottom: 0;
  z-index: 1;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  transition: all 0.2s linear;
  background: rgb(0, 0, 0);
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.06486344537815125) 39%,
      rgba(0, 0, 0, 0.6166841736694677) 100%);
}

.banner-btn {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.banner-btn:hover {
  background-color: #b5bf35 !important;
}

.our-impact-inner ul li:nth-child(2):after,
.our-impact-inner ul li:nth-child(4):after,
.our-impact-inner ul li:nth-child(6):after {
  display: none;
}

/*.our-impact-inner ul li:last-child {
  align-items: center;
}*/

.impact-box h3 {
  font-size: 90px;
  line-height: 70px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
}

.impact-box p {
  font-size: 20px;
  line-height: 25px;
  color: #fff;
  font-family: "futura_stdmedium";
  font-weight: 500;
  min-height:50px;	
}

.impact-box {
  position: relative;
  z-index: 3;
}

.impact-box h4 {
  font-family: "Poppins", sans-serif;
  font-size: 27px;
  line-height: 35px;
  color: #fff;
  font-weight: 500;
}

.impact-box .green-btn {
  margin-top: 10px;
}

.green-btn {
  height: 50px;
  line-height: 51px;
  display: inline-block;
  text-transform: uppercase;
  padding: 0px 30px;
  font-size: 14px;
  font-weight: 500;
  background-color: #b5bf35;
  color: #fff;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}

.green-btn:hover {
  background-color: #000;
  color: #fff;
}

.home-programe-section {
  width: 100%;
  padding: 100px 0px 60px;
}

.programes-main-inner {
  width: 100%;
  margin-top: 30px;
}

.programes-main-inner ul {
  display: flex;
  flex-wrap: wrap;
  height: auto;
  row-gap: 20px;
  margin-left: -1%;
  margin-right: -1%;
}

.programes-main-inner ul li {
  width: 31.3%;
  min-height: auto;
  margin-left: 1%;
  margin-right: 1%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.programes-main-inner ul li:hover {
  background-size: 115%;
}

.programes-main-inner ul li::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  bottom: 0;
  z-index: 1;
  background: rgb(0, 0, 0);
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.06486344537815125) 39%,
      rgba(0, 0, 0, 0.6166841736694677) 100%);
}

.programes-main-inner ul li img {
  width: 100%;
  height: auto;
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.programes-main-inner ul li:hover img {
  -webkit-transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

.programes-main-inner ul li a {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 30px 45px;
  position: relative;
  z-index: 4;
  display: block;
  display: flex;
  align-items: flex-end;
  position: absolute;
  top: 0px;
  left: 0px;
  box-sizing: border-box;
}

.programes-main-inner ul li p {
  font-size: 21px;
  line-height: 28px;
  color: #fff;
  font-weight: 400;
}

.home-partners-section {
  width: 100%;
  padding: 30px 0px 60px;
}

.partner-slider-main {
  width: 100%;
  margin-top: 35px;
}

.partner-slider .item {
  border: 1px solid #cdcdcd;
  background-color: #fff;
  overflow: hidden;
  min-height: 148px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.partner-slider .item:hover {
  border-color: transparent;
}

.partner-slider .item:hover:after {
  content: "";
  width: 100%;
  height: 100%;
  border: 3px solid #09a5df;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  border-radius: 14px;
}

.partner-slider .item{
    padding: 10px;
}

.partner-slider .item img {
    width: auto !important;
    height: auto;
    max-height: 100px;
    max-width: 100%;
}

.partner-slider .owl-nav button.owl-next,
.partner-slider .owl-nav button.owl-prev {
  width: 45px;
  height: 45px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  font-size: 0px;
}

.partner-slider .owl-nav button.owl-next span,
.partner-slider .owl-nav button.owl-prev span {
  display: none;
}

.partner-slider .owl-nav button.owl-prev {
  left: -70px;
  background-image: url(assets/images/arrow-left.png) !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

.partner-slider .owl-nav button.owl-next {
  right: -70px;
  background-image: url(assets/images/arrow-right.png) !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

.home-video-section {
  width: 100%;
  padding: 60px 0 130px;
  overflow: hidden;
}

.home-video-main {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.home-video-main a {
  display: block;
  overflow-y: hidden;
}

.home-video-main a div {
  overflow: hidden;
  border-radius:16px;
}

.home-video-main a::after {
  content: "";
  width: 77px;
  height: 77px;
  background-image: url(assets/images/play.png);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 50%;
  top: 50%;
	transform:translate(-50%,-50%);
}

.home-video-main:hover img {
  transform: scale(1.1, 1.1);
}

.home-video-main img {
  width: 100%;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.home-news-publication-section {
  width: 100%;
  padding: 200px 0px 130px;
  background-color: #f4fbfe;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}

.main-publication-slider {
  width: 100%;
  min-height: 200px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border: 1px solid #d0d0d0;
  -webkit-border-top-right-radius: 20px;
  -moz-border-top-right-radius: 20px;
  border-top-right-radius: 20px;
  -webkit-border-bottom-right-radius: 20px;
  -moz-border-bottom-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

.main-publication-first-image {
  width: 32%;
  overflow: hidden;
  position: relative;
  z-index: 50;
}

.publication-first-content {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 50px;
  z-index: 5;
  left: 0px;
  top: 0px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}

.publication-first-content span {
  font-size: 11px;
  line-height: 20px;
  font-weight: bold;
  padding: 0px 15px;
  display: inline-block;
  background-color: #607d13;
  color: #fff;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  z-index: 5;
}

.main-publication-first-image img {
  width: 100%;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
}

.main-publication-first-image:hover img {
  -webkit-transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

.main-publication-slider-box {
  width: 62%;
  margin-left: 5.3%;
  padding-right: 10px;
  position: relative;
}

.main-publication-slider-box::after {
  content: "";
  background-color: #f4fbfe;
  width: 2000px;
  height: 100%;
  position: absolute;
  left: -2000px;
  top: 0;
  z-index: 9;
}

.media-slider-style .item img {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.media-slider-style .owl-stage-outer {
  overflow: hidden;
}

.media-slider-style .owl-nav button.owl-next,
.media-slider-style .owl-nav button.owl-prev {
  width: 35px;
  height: 35px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  font-size: 0px;
}

.media-slider-style .owl-nav button.owl-next span,
.media-slider-style .owl-nav button.owl-prev span {
  display: none;
}

.media-slider-style .owl-nav button.owl-prev {
  right: 45px;
  left: inherit;
  top: -30px;
  background-image: url(assets/images/arrow-left.png) !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 24px !important;
}

.media-slider-style .owl-nav button.owl-next {
  left: inherit;
  top: -30px;
  right: 0px;
  background-image: url(assets/images/arrow-right.png) !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 24px !important;
}

.second-title {
  font-size: 36px;
  line-height: 35px;
  color: #094278;
  font-family: "futura_stdheavy" !important;
}

.media-slider-style {
  margin-top: 20px;
}

.main-home-news {
  margin-top: 60px;
}

.main-media-image {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}

.main-media-image img {
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.main-media-image:hover img {
  -webkit-transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

.main-media-image span {
  position: absolute;
  font-size: 9px;
  line-height: 20px;
  font-weight: 500;
  padding: 0px 15px;
  display: inline-block;
  background-color: #ef3c3c;
  color: #fff;
  right: 5px;
  bottom: 5px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  z-index: 5;
}
.main-media-content {
  width: 100%;
  padding-top: 15px;
}

.main-media-content span {
  font-size: 11px;
  line-height: 20px;
  font-weight: bold;
  padding: 0px 10px;
  display: inline-block;
  background-color: #00a1b7;
  color: #fff;
  left: 20px;
  top: 20px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

.main-media-content span.green {
  background-color: #c5c343;
}

.main-media-content p {
  margin-top: 15px;
  font-size: 18px;
  line-height: 25px;
  font-weight: 400;
  color: #094278;
  -webkit-line-clamp: 2;
    -moz-line-clamp: 2;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;	
}

.publication-first-content label {
  font-size: 11px;
  line-height: 18px;
  font-weight: 500;
  padding: 4px 15px 2px;
  display: inline-block;
  background-color: #f08700;
  color: #fff;
  left: 20px;
  top: 20px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 16px;
  position: absolute;
  text-transform: uppercase;
  left: 50px;
}

.publication-first-content {
  justify-content: left;
}

.publication-first-content p {
  font-family: "futura_stdmedium";
  font-weight: 500;
  font-size: 23px;
  line-height: 30px;
  color: #fff;
  width: auto;
  margin-bottom: 0px;
  margin-top: 20px;
}

.publication-first-content span.light-blue {
  background-color: #00a1b7;
}

.hme-about-section {
  width: 100%;
  padding: 100px 0px;
  min-height: 400px;
  position: relative;
}

.hme-about-section-inner {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.home-about-content {
  width: 100%;
}

.home-about-content .main-title {
  line-height: 40px;
  font-size: 30px;
  margin-bottom: 30px;
}

.home-about-content p {
  font-size: 18px;
  line-height: 26px;
  color: #094278;
}

.home-about-content .green-btn {
  margin-top: 30px;
  background-color: #21457b;
}

.home-about-content .green-btn:hover {
  background-color: #b5bf35;
}

.our-imapact-section .green-btn:hover .our-impact-inner ul li:last-child {
  background-color: #b5bf35;
}

.home-about-right {
  width: 100%;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  row-gap: 15px;
  margin-top: 70px;
  position: relative;
}

.home-about-content-left {
  width: 100%;
}

.about-main-section-p {
  margin-top: 50px;
}

.about-proposition-section-p {
  margin-bottom: 50px;
}

.home-about-right ul {
  margin-left: -0.5%;
  margin-right: -0.5%;
  display: flex;
  flex-wrap: wrap;
}

.home-about-right ul li {
  width: 24%;
  margin-left: 0.5%;
  margin-right: 0.5%;
  -webkit-border-radius: 17px;
  -moz-border-radius: 17px;
  border-radius: 17px;
  overflow: hidden;
}

.about-right-main {
  background-color: #21457b;
  padding: 25px 30px;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 100%;
  min-height: 295px;
  height: 100%;
}

.home-about-right ul li:hover .about-right-main {
  background-color: #173666;
}

.home-about-right ul li h3 {
  font-size: 22px;
  line-height: 24px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #fff;
}

.about-icon {
  width: 72px;
  height: 72px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  background-color: #ffffff;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  border-radius: 24px;
  margin-bottom: 15px;
}

.home-about-right ul li p {
  color: #fff;
  -webkit-line-clamp: 2;
    -moz-line-clamp: 2;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;	
}

.white-btn {
  height: 40px;
  line-height: 42px;
  display: inline-block;
  padding: 0px 30px;
  margin-top: 10px;
  font-size: 14px;
  background-color: #fff;
  color: #21457b;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}

.home-about-right ul li:hover .white-btn {
  background-color: #b5bf35;
  color: #fff;
}

.white-btn:hover {
  background-color: #b5bf35;
  color: #fff;
}

.right-txt {
  width: 14px;
  height: 256px;
  position: absolute;
  right: 5%;
  bottom:70px;
  z-index: 99;
  animation: expand 2s infinite;
  -webkit-animation: expand 5s infinite;
}

@keyframes expand {
  0% {
    bottom: 70px;
  }

  20% {
    bottom: 50px;
  }

  40% {
    bottom: 70px;
  }

  60% {
    bottom: 50px;
  }

  80% {
    bottom: 70px;
  }

  100% {
    bottom: 50px;
  }
}

@-webkit-keyframes expand {
  0% {
    bottom: 70px;
  }

  20% {
    bottom: 50px;
  }

  40% {
    bottom: 70px;
  }

  60% {
    bottom: 50px;
  }

  80% {
    bottom: 70px;
  }

  100% {
    bottom: 50px;
  }
}

/**********about************/

.sub-banner {
  width: 100%;
  height: 440px;
  margin-top: 60px;
  background-repeat: no-repeat;
  background-image: cover;
}

.page-menu {
  width: 100%;
  min-height: 70px;
  background-color: #f4fbfe;
  -webkit-border-bottom-left-radius: 30px;
  -moz-border-bottom-left-radius: 30px;
  border-bottom-left-radius: 30px;
  -webkit-border-bottom-right-radius: 30px;
  -moz-border-bottom-right-radius: 30px;
  border-bottom-right-radius: 30px;
}

/* .page-menu .container {
  max-width: 1500px;
} */

.page-menu .page-menu-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.page-menu .page-menu-inner a {
  width: 100%;
  line-height: 70px;
  display: inline-block;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: #094278;
  text-transform: uppercase;
  font-family: var(--font-primary);
}

.page-menu .page-menu-inner a:hover {
  color: var(--color-primary);
}

.about-menu li a {
  padding: 0px 45px;
}

/* .about-menu li+li a {
  padding-left: 30px;
} */

.main-wrapper {
  width: 100%;
  height: auto;
  background-color: #fff;
  position: relative;
  z-index: 2;
  -webkit-border-bottom-left-radius: 30px;
  -moz-border-bottom-left-radius: 30px;
  border-bottom-left-radius: 30px;
  -webkit-border-bottom-right-radius: 30px;
  -moz-border-bottom-right-radius: 30px;
  border-bottom-right-radius: 30px;
}

.about-main-section {
  width: 100%;
  height: auto;
}

.about-main-section-wrap {
  padding-bottom: 100px;
}

.about-main-section-inner {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 90px;
}

.about-main-section-inner:nth-child(2n) {
  flex-direction: row-reverse;
}

.about-main-section-inner:nth-child(2n) .about-main-left-content {
  width: 50%;
  padding-left: 50px;
  padding-right: 0px;
  display: flex;
  justify-content: flex-end;
}

.about-main-section-inner:nth-child(2n) .about-main-right-content {
  width: 50%;
}

.about-main-section-inner:nth-child(2n) .mission_icon {
  position: absolute;
  right: 0;
  top: -72px;
  z-index: -1;
}

.about-main-left-content {
  width: 60%;
  padding-right: 50px;
}

.about-main-left-content h4 {
  font-size: 134px;
  width: fit-content;
  line-height: 140px;
  margin-top: 20px;
  font-family: "Futura";
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  color: #fff;
  -webkit-text-stroke: 1px #094278;
  letter-spacing: -2px;
}

.about-main-left-content p {
  font-size: 13px;
  max-width: 540px;
}

.about-main-section-inner .main-title {
  margin-bottom: 25px;
  text-transform: capitalize;
}

.about-main-right-content {
  width: 40%;
  padding-top: 10px;
}

.mission_icon {
  position: absolute;
  right: -60px;
  top: -65px;
  z-index: -1;
}

.about-main-right-content p {
  margin-bottom: 0px;
}

.page-menu .page-menu-inner li {
  position: relative;
}

.page-menu .page-menu-inner li.current-menu-item a::after,
.page-menu .page-menu-inner li.active a::after {
  content: "";
  border-style: solid;
  border-width: 0px 6px 8px 6px;
  height: 0;
  width: 0;
  border-color: transparent;
  border-bottom-color: #094278;
  display: inline-block;
  height: 12px;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: -2px;
  z-index: 4;
}

.about-values-box {
  width: 100%;
  margin-top: 40px;
}

.about-values-box ul {
  display: flex;
  flex-wrap: wrap;
  margin-left: -1.5%;
  margin-right: -1.5%;
}

.value-box {
  width: 100%;
  min-height: 510px;
  -webkit-border-radius: 17px;
  -moz-border-radius: 17px;
  border-radius: 17px;
  padding: 65px;
}

.owl-carousel.value-slider .owl-nav button.owl-next,
.owl-carousel.value-slider .owl-nav button.owl-prev {
  width: 45px;
  height: 45px;
  background-color: #cccccc !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

.owl-carousel.value-slider .owl-nav button.owl-next:hover,
.owl-carousel.value-slider .owl-nav button.owl-prev:hover {
  background-color: #b5bf35 !important;
}

.owl-carousel.value-slider .owl-nav button.owl-prev {
  left: -70px;
  background-image: url(assets/images/arrow-left.png) !important;
}

.owl-carousel.value-slider .owl-nav button.owl-next {
  right: -70px;
  background-image: url(assets/images/arrow-right.png) !important;
}

.owl-carousel.value-slider .owl-nav button.owl-next span,
.owl-carousel.value-slider .owl-nav button.owl-prev span {
  display: none;
}

.value-box-icon {
  min-height: 110px;
  display: flex;
  align-items: center;
}

.value-box-icon img {
  max-height: 95px;
  width: auto !important;
}

.value-box-content {
  padding-top: 20px;
}

.value-box-content h3 {
  font-size: 40px;
  line-height: 46px;
  color: #fff;
  font-family: "futura_stdheavy";
  margin-bottom: 80px;
}

.value-box-content p {
  color: #fff;
}

.evelution-first-section {
  width: 100%;
}

.evelution-first-section .main-title {
  margin-bottom: 25px;
}

.evelution-second-section {
  width: 100%;
}

.evelution-slider-main {
  width: 100%;
}

.about-evolution-section {
  padding: 70px 0px 150px;
}

.evolution-second-section {
  margin-top: 70px;
  overflow: hidden;
}

.evoltion-slider-content {
  width: 100%;
}

.evoltion-slider-date {
  min-height: 130px;
  line-height: 58px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: 80px;
  font-weight: bold;
  color: #fff;
  background-color: #2a7cbb;
  padding-left: 5px;
  font-family: "Squada One", cursive;
  position: relative;
  display: flex;
  align-items: center;
}

.evoltion-slider-content {
  width: 100%;
  padding: 17px 25px 0px 40px;
}

.evoltion-slider-content p {
  font-size: 13px;
  color: #094278;
  line-height: 18px;
  max-width: 180px;
}

.owl-carousel.evolution-slider .owl-stage-outer {
  overflow: visible;
}

.evolution-slider::after {
  content: "";
  width: 3000px;
  left: -3000px;
  height: 100%;
  position: absolute;
  top: 0;
  background-color: #fff;
}

.owl-carousel.evolution-slider .owl-nav button.owl-next,
.owl-carousel.evolution-slider .owl-nav button.owl-prev {
  width: 45px;
  height: 45px;
  top: 35px;
  background-color: #fff !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

.owl-carousel.evolution-slider .owl-nav button.owl-next:hover,
.owl-carousel.evolution-slider .owl-nav button.owl-prev:hover {
  background-color: #b5bf35 !important;
}

.owl-carousel.evolution-slider .owl-nav button.owl-prev {
  left: 40px;
  background-image: url(assets/images/arrow-left-blue.png) !important;
}

.owl-carousel.evolution-slider .owl-nav button.owl-next {
  right: 40px;
  background-image: url(assets/images/arrow-right-blue.png) !important;
}

.owl-carousel.evolution-slider .owl-nav button.owl-next span,
.owl-carousel.evolution-slider .owl-nav button.owl-prev span {
  display: none;
}

.evoltion-slider-date {
  position: relative;
}

.evoltion-slider-date::before {
  content: "";
  width: 36px;
  height: 138px;
  background-image: url(assets/images/after.png);
  background-repeat: no-repeat;
  position: absolute;
  right: 0px;
  top: -6px;
  z-index: 8;
  background-position: right;
}

.evoltion-slider-date::after {
  content: "";
  width: 36px;
  height: 100%;
  background-color: #2a7cbb;
  position: absolute;
  right: -8px;
  top: 0px;
}

.evolution-slider::before {
  content: "";
  border-style: solid;
  border-width: 0px 68px 16px 68px;
  height: 0;
  width: 0;
  border-color: transparent;
  border-bottom-color: #fff;
  display: inline-block;
  height: 12px;
  position: absolute;
  left: -60px;
  top: 58px;
  z-index: 4;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  transform: rotate(90deg);
}

/*****team*****/

.team-first-section {
  width: 100%;
  padding: 110px 0 150px;
}

.team-first-section-inner {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.founder-image {
  width: 35%;
  position: relative;
}

.founder-image::after {
  content: "";
  width: 138px;
  height: 122px;
  position: absolute;
  background-image: url(assets/images/fonder-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  bottom: -40px;
  right: -65px;
  z-index: -1;
}

.founder-image img {
  width: 100%;
}

.founder-message {
  width: 65%;
  padding-left: 180px;
}

.founder-message h2 {
  font-family: "futura_stdheavy";
  font-size: 58px;
  line-height: 72px;
  margin-bottom: 35px;
}

.founder-message h3 {
  font-family: "futura_stdheavy";
  font-size: 28px;
  line-height: 36px;
  margin-bottom: 20px;
}

.founder-message h4 {
  font-family: "futura_stdheavy";
  font-size: 23px;
  line-height: 24px;
  margin-bottom: 25px;
}

.team-second-section {
  width: 100%;
  padding: 120px 0px;
  background-color: #21457b;
}

.team-second-section .main-title {
  color: #fff;
  margin-bottom: 40px;
}

.team-second-section.white-bg {
  background-color: #fff;
  padding-bottom: 90px;
}

.padding-30 {
  padding-bottom: 30px;
}

.team-second-title {
  width: 100%;
  /* max-width: 500px; */
}

.team-second-section p {
  color: #fff;
}

.team-list-main {
  width: 100%;
  margin-top: 30px;
}

.team-list-main ul {
  display: flex;
  flex-wrap: wrap;
  margin-left: -1%;
  margin-right: -1%;
  row-gap: 20px;
}

.team-list-main ul li {
  width: 18%;
  margin-left: 1%;
  margin-right: 1%;

  overflow: hidden;
  position: relative;
}

.team-list-main ul li img {
  width: 100%;
  height: auto;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}

.team-list-main ul li:hover {
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}

.team-list-main ul li:hover .team-list-hover {
  top: 0;
}

.team-list-hover {
  width: 100%;
  height: 100%;
  background-color: #89a386;
  position: absolute;
  top: 100%;
  left: 0;
  padding: 30px 15px 15px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.team-list-hover h4 {
  font-size: 16px;
  line-height: 24px;
  font-family: "futura_stdheavy";
  color: #fff;
  margin-bottom: 5px;
}

.team-list-hover p {
  font-size: 12px;
  line-height: 16px;
  color: #fff;
}

.team-list-hover-img {
  width: 90px;
  height: 90px;
  display: inline-block;
  overflow: hidden;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  margin-bottom: 15px;
}

.team-second-section.white-bg .main-title {
  color: #094278;
}

.team-second-section.white-bg p {
  color: #094278;
}

.team-second-section.white-bg .team-list-hover p {
  color: #fff;
}

/****partner****/

.partner-full-section {
  width: 100%;
  height: auto;
  padding-top: 50px;
}

.partner-main-nav {
  width: 100%;
  margin-bottom: 55px;
}

.partner-main-nav ul {
  border-bottom: 1px solid #e8e8e8;
  display: flex;
}

.partner-main-nav ul li {
  margin-right: 55px;
}

.partner-main-nav ul li.active {
  border-bottom: 2px solid #21457b;
}

.partner-main-nav ul li a {
  display: block;
  line-height: 50px;
  font-size: 20px;
  font-weight: 500;
  color: #094278;
}

.partner-main-nav ul li a:hover {
  color: #b5bf35;
}

.partner-main-listing {
  width: 100%;
  padding: 120px 0px;
}

.partner-main-listing.padding-zero {
  padding: 0px;
}

.partner-title-main .main-title {
  margin-bottom: 25px;
}

.partner-listing-wrap {
  margin-top: 40px;
}

.partner-listing-wrap ul {
  display: flex;
  flex-wrap: wrap;
  margin-left: -1%;
  margin-right: -1%;
  row-gap: 25px;
}

.partner-listing-wrap ul li {
  width: 23%;
  margin-left: 1%;
  min-height: 148px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1%;
  border: 1px solid #e3e3e3;
  -moz-border-radius: 16px;
  -webkit-border-radius: 16px;
  border-radius: 16px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.partner-listing-wrap ul li:hover {
  box-shadow: 6px 6px 14px 2px rgba(0, 0, 0, 0.1);
}

.partner-listing-wrap ul li img {
  max-height: 100px;
}

/***programmes***/

.programmes-main-wrapper {
  width: 100%;
  padding: 110px 0 140px;
}

.programmes-main-wrapper .main-title {
  margin-bottom: 25px;
}

.programmes-inner-main {
  display: flex;
  flex-wrap: wrap;
  margin-top: 70px;
  row-gap: 40px;
  margin-left: -1.5%;
  margin-right: -1.5%;
}

.programmes-box {
  width: 30.3%;
  margin-left: 1.5%;
  margin-right: 1.5%;
  border: 1px solid #e3e3e3;
  -webkit-border-radius: 17px;
  -moz-border-radius: 17px;
  border-radius: 17px;
  padding: 35px;
  padding-bottom: 150px;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.programmes-box p{
	-webkit-line-clamp: 3;
    -moz-line-clamp: 3;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.programmes-box h3 {
  font-size: 28px;
  line-height: 38px;
  color: #094278;
  margin-bottom: 40px;
  min-height:76px;	
}

.programmes-box:hover {
  background-color: #2a7cbb;
}

.programmes-box:hover h3,
.programmes-box:hover p {
  color: #fff;
}

.white-btn.blue-btn {
  background-color: #2a7cbb;
  color: #fff;
  padding: 0px 25px;
  position: absolute;
  left: 40px;
  bottom: 60px;
  height: 50px;
  line-height: 52px;
}

.programmes-box:hover .white-btn.blue-btn {
  background-color: #b5bf35;
}

.programmes-box ul {
  margin-top: 40px;
  row-gap: 5px;
  display: flex;
  flex-wrap: wrap;
}

.programmes-box ul li {
  width: 100%;
  border: 1px solid #21457b;
  -webkit-border-radius: 29px;
  -moz-border-radius: 29px;
  border-radius: 29px;
  position: relative;
}

.programmes-box ul li a {
  display: block;
  line-height: 20px;
  padding: 15px 55px 15px 20px;
  width: 100%;
  font-size: 14px;
  font-weight: 500;
}

.programmes-box:hover ul li {
  border: 1px solid #fff;
}

.programmes-box ul li::after {
  content: "";
  width: 22px;
  height: 22px;
  background-image: url(assets/images/blue-arrow.png);
  position: absolute;
  right: 20px;
  top: 15px;
}

.programmes-box:hover ul li::after {
  background-image: url(assets/images/white-arrow.png);
}

.programmes-box:hover ul li a {
  color: #fff;
}

.corporate-governance-wrapper {
  width: 100%;
  padding: 65px 0px 150px;
}

.corporate-governance-wrapper .main-title {
  margin-bottom: 20px;
}

.corporate-governance-wrapper ul {
  margin-top: 50px;
}

.corporate-governance-wrapper ul>li {
  width: 80%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}

.corporate-governance-wrapper ul>li:nth-child(2n) {
  margin-left: 20%;
}

.corporate-governance-wrapper ul>li::after {
  content: "";
  width: 95%;
  height: 1px;
  background-color: #e1e1e1;
  position: absolute;
  bottom: 0;
  right: 0px;
  z-index: -1;
}

.corporate-governance-img {
  width: 34%;
  overflow: hidden;
}

.corporate-governance-img img {
  width: 100%;
}

.corporate-governance-content {
  width: 66%;
  padding: 20px 0px 20px 80px;
}

.corporate-governance-content h3 {
  font-size: 27px;
  line-height: 38px;
  font-family: "futura_stdheavy";
  margin-bottom: 20px;
  color: #094278;
}

.corporate-governance-content a {
  display: block;
  width: 100%;
  max-width: 250px;
  line-height: 22px;
  font-size: 14px;
  font-weight: 500;
  margin-top: 40px;
  position: relative;
}

.corporate-governance-content a::after {
  content: "";
  width: 22px;
  height: 22px;
  background-image: url(assets/images/blue-arrow.png);
  position: absolute;
  right: 0px;
  top: 0px;
}

.corporate-governance-content a:hover::after {
  background-image: url(assets/images/green-arrow.png);
}

.partner-bottom-contact {
  width: 100%;
  padding: 70px 0px;
  background-color: #f4fbfe;
  -webkit-border-bottom-left-radius: 30px;
  -moz-border-bottom-left-radius: 30px;
  border-bottom-left-radius: 30px;
  -webkit-border-bottom-right-radius: 30px;
  -moz-border-bottom-right-radius: 30px;
  border-bottom-right-radius: 30px;
}

.partner-bottom-contact-inner {
  width: 100%;
  padding-right: 250px;
  position: relative;
}

.partner-bottom-contact-inner h3 {
  font-family: "futura_stdheavy";
  font-size: 36px;
  line-height: 30px;
  margin-bottom: 15px;
}

.partner-bottom-contact-inner p {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 0px;
}

.partner-bottom-contact-inner .green-btn {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0px;
  top: 0;
  margin: auto;
  background-color: #094278;
}

.partner-bottom-contact-inner .green-btn:hover {
  background-color: #b5bf35;
}

.home-news-publication-section.governance-news {
  padding: 80px 0px 140px;
}

.corporate-governance-overview {
  width: 100%;
  overflow: auto;
  padding: 90px 0 45px;
}

.corporate-governance-overview-inner {
  width: 100%;
}

.corporate-governance-overview-inner .main-title {
  margin-bottom: 25px;
  font-size: 58px;
}

.news-detail-top-section ul,
.event-detail-content-text ul,
.corporate-governance-overview-inner ul {
  color: #094278;
  margin: 0 0 15px 0;
  padding-left: 22px;
  list-style: circle;
  display: inline-block;
}
.news-detail-top-section ul li{
	font-size:16px;
	font-weight:600;
}

.news-detail-top-section ul ul,
.event-detail-content-text ul ul,
.corporate-governance-overview-inner ul ul {
  margin: 10px 0;
  list-style: disc;
}

.news-detail-top-section li+li,
.corporate-governance-overview-inner li+li {
  margin-top: 10px;
}

.governance-overview-img {
  width: 100%;
  max-width: 415px;
  float: right;
  margin-left: 140px;
  margin-bottom: 45px;
  position: relative;
}

.governance-overview-img::after {
  content: "";
  width: 138px;
  height: 122px;
  position: absolute;
  background-image: url("assets/images/fonder-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  bottom: -40px;
  left: -65px;
  z-index: -1;
}

.governance-overview-img img {
  width: 100%;
}

.corporate-governance-overview-inner p {
  margin-bottom: 30px;
}

.governance-bottom-contact {
  width: 100%;
  padding: 70px 0px;
  background-color: #89a386;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.governance-bottom-contact-inner {
  width: 100%;
  padding-right: 250px;
  position: relative;
}

.governance-bottom-contact-inner h3 {
  font-family: "futura_stdheavy";
  font-size: 36px;
  line-height: 30px;
  margin-bottom: 0px;
  color: #fff;
  text-transform: capitalize;
}

.governance-bottom-contact-inner p {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 0px;
  color: #fff;
}

.governance-bottom-contact-inner .green-btn {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0px;
  top: 0;
  margin: auto;
  background-color: #fff;
  color: #000;
}

.governance-bottom-contact-inner .green-btn:hover {
  background-color: #094278;
  color: #fff;
}

.collabration-main-section {
  padding-bottom: 110px;
  width: 100%;
  display: inline-block;
}

.collabration-main-section.intergrated {
  padding-top: 50px;
}

.corporate-governance-overview .green-btn {
  background-color: #094278;
  color: #fff;
}

.corporate-governance-overview .green-btn:hover {
  background-color: var(--color-primary);
}

.collabration-main-section .main-title {
  text-align: left;
}

.collabration-main-section ul {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.collabration-main-section ul li {
  width: 23%;
  margin-left: 1%;
  min-height: 148px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1%;
  border: 1px solid #e3e3e3;
  -moz-border-radius: 16px;
  -webkit-border-radius: 16px;
  border-radius: 16px;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.collabration-main-section ul li:hover {
  border-color: transparent;
}

.collabration-main-section ul li:hover:after {
  content: "";
  width: 100%;
  height: 100%;
  border: 3px solid #09a5df;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  border-radius: 14px;
}

.collabration-main-section ul li img {
  width: auto !important;
  height: 100px;
  object-fit: cover;
}

.home-partners-section.detail-page .main-title {
  text-align: center;
}

/* .home-partners-section.detail-page .impact_para {
  max-width: 1000px;
} */

.anti-corruption-main-wrapper {
  padding: 100px 0px 90px;
}

.anti-corruption-main-wrapper .founder-message {
  padding-left: 120px;
}

.achivements-main-wrapper {
  width: 100%;
  height: auto;
  padding: 30px 0px 60px;
}

.achivements-title {
  width: 100%;
  text-align: center;
}

.achivements-title h4 {
  text-transform: uppercase;
  color: #2a7cbb;
  font-size: 58px;
  line-height: 50px;
  font-family: "futura_stdmedium";
  font-weight: 100;
  letter-spacing: 18px;
  margin-bottom: 0px;
}

.achivements-title h2 {
  font-size: 134px;
  line-height: 120px;
  font-family: "Futura";
  font-weight: bold;
  color: #21457b;
  text-transform: uppercase;
}

.achivements-main-wrapper .center_para {
  max-width: 975px;
  margin: 0 auto;
}

.achivements-main-wrapper .center_para p {
  text-align: center;
  margin-top: 40px;
  color: #094278;
  text-align: center;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px;
}

.achivements-main-wrapper .center_para p+p {
  margin-top: 20px;
}

.achivements-main-list {
  width: 100%;
  position: relative;
  margin-top: 50px;
  z-index: 2;
}

.achivements-main-list ul {
  display: flex;
  flex-wrap: wrap;
  margin-left: -1.5%;
  margin-right: -1.5%;
  row-gap: 25px;
}

/* .achivements-main-list .three_col{
  margin: 0 auto;
  max-width: 1090px;
} */
.achivements-main-list .three_col ul {
  margin: 0 -1%;
  row-gap: 25px;
}

.achivements-main-list .three_col .imp_pic {
  text-align: center;
}

.achivements-main-list .three_col li {
  width: 31%;
  margin: 0 1%;
  padding: 40px 50px 30px;
  display: flex;
  align-items: center;
}

.achivements-main-list ul li {
  width: 22%;
  border: 1px solid #21457b;
  margin-left: 1.5%;
  margin-right: 1.5%;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  padding: 40px 40px 30px;
  background-color: #fff;
  display: flex;
  align-items: center;
}

.achv_wrap {
  max-width: 1090px;
  margin: 0 auto;
}

.achivements-main-list-bottom {
  width: 100%;
  margin-top: 30px;
}

.achivements-main-list-bottom p {
  text-align: center;
  font-size: 13px;
  line-height: 22px;
}

.anti-corruption-first-section {
  width: 100%;
  padding: 60px 0px 50px;
}

.anti-corruption-first-section p {
  margin-bottom: 20px;
}

.anti-corruption-first-section p:last-child {
  margin-bottom: 0;
}

.anti-corruption-second-section {
  width: 100%;
  padding-bottom: 60px;
}

.anti-corruption-second-section-inner {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.anti-corruption-message {
  width: 66%;
  height: auto;
  padding: 60px 80px;
  background-color: #21457b;
  -webkit-border-radius: 17px 17px 70px 17px;
  -moz-border-radius: 17px 17px 70px 17px;
  border-radius: 17px 17px 70px 17px;
  color: #fff;
  margin-top: 70px;
  display: flex;
  flex-wrap: wrap;
}

.anti-corruption-message p {
  color: #fff;
  font-size: 23px;
  line-height: 30px;
  font-style: italic;
  font-weight: 300;
}

.anti-corruption-message-title {
  margin-left: auto;
  margin-top: 15px;
}

.news-filter-inner .nice-select ul.list .option {
  margin-left: 0;
  margin-right: 0;
}

.recent-events-filter-inner .nice-select ul.list .option {
  margin-left: 0;
  margin-right: 0;
}

.anti-corruption-message-title h4 {
  font-size: 33px;
  line-height: 30px;
  font-weight: 600;
  color: #fff;
}

.anti-corruption-message-title span {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
}

.anti-corruption-image {
  width: 30%;
  margin-left: 4%;
}

.anti-corruption-image-inner {
  width: 100%;
  overflow: hidden;
}

.anti-corruption-image-inner img {
  width: 100%;
  display: block;
  -webkit-border-radius: 17px 17px 17px 70px;
  -moz-border-radius: 17px 17px 17px 70px;
  border-radius: 17px 17px 17px 70px;
}

.anti-corruption-play {
  text-align: center;
  margin-top: 25px;
}

.anti-corruption-play img {
  display: inline-block;
}

.key-objects-section {
  width: 100%;
  display: block;
  flex-wrap: wrap;
  padding-top: 20px;
}

.key-objects-section ul {
  position: relative;
  margin-top: -25px;
}

.key-objects-section ul li {
  min-height: 100px;
  padding: 20px 60px 20px 90px;
  position: relative;
  border: 1px solid #dfdfdf;
  -webkit-border-radius: 17px;
  -moz-border-radius: 17px;
  border-radius: 17px;
  display: flex;
  align-items: center;
  width: 65%;
  background-color: #fff;
}

.key-objects-section ul li div {
  position: relative;
}

.key-objects-section ul li span {
  content: "";
  width: 22px;
  height: 22px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  background-color: #2a7cbb;
  position: absolute;
  left: -50px;
  top: 0px;
}

.key-objects-section ul li div span::after {
  content: "";
  width: 9px;
  height: 9px;
  background-color: #fff;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  position: absolute;
  left: 7px;
  top: 7px;
}

.key-objects-section ul li:nth-child(2),
.key-objects-section ul li:nth-child(3),
.key-objects-section ul li:nth-child(4) {
  margin-top: -1px;
}

.key-objects-section ul li:nth-child(2) {
  width: 78%;
}

.key-objects-section ul li:nth-child(3) {
  width: 90%;
}

.home-partners-section.detail-page {
  padding-bottom: 80px;
}

.key-objects-section h2 {
  font-size: 134px;
  line-height: 120px;
  margin-top: 0px;
  font-family: "Futura";
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  -webkit-text-stroke: 1px #21457b;
  letter-spacing: -2px;
}

/* 
.leader-ship-section {
  width: 100%;
  padding: 100px 0px 70px;
}

.leader-ship-inner-box {
  width: 80%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-height: 420px;
  background-color: #21457B;
  background-image: url(assets/images/quote-new.png);
  background-repeat: no-repeat;
  background-position: left 55px bottom 100px;
  padding: 30px;
  -webkit-border-radius: 28px 85px 28px 28px;
  -moz-border-radius: 28px 85px 28px 28px;
  border-radius: 28px 85px 28px 28px;


}

.leader-ship-content {
  width: 65%;
  padding: 0px 40px 0px 30px;
  display: flex;
  flex-wrap: wrap;

}

.leader-ship-content p {
  color: #fff;
  font-size: 23px;
  line-height: 33px;
  font-weight: 300;
  font-style: italic;
}

.leader-ship-content p+p {
  margin-top: 40px;
}

.leader-ship-content h3 {
  color: #FFF;
  font-size: 33px;
  font-style: normal;
  font-weight: 500;
  line-height: 42px;
  margin-bottom: 40px;
}

.leader-ship-image {
  width: 35%;
  -webkit-border-radius: 17px 70px 17px 17px;
  -moz-border-radius: 17px 70px 17px 17px;
  border-radius: 17px 70px 17px 17px;
  overflow: hidden;
}

.leader-ship-image img {
  width: 100%;

}

.leadership-message-title {
  margin-left: auto;
  margin-top: 15px;
}

.leadership-message-title h4 {
  font-size: 26px;
  line-height: 30px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 5px;
}

.leadership-message-title span {
  color: #fff;
  font-size: 13px;
}

.leader-ship-inner-box-main {
  display: flex;
  flex-wrap: wrap;
  row-gap: 40px;
}

.leader-ship-inner-box.green {
  background-image: none;
  margin-left: auto;
} */

.leader-ship-section {
  width: 100%;
  padding: 70px 0px 70px;
}

.leader-ship-inner-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /* min-height: 420px;
  background-color: #21457B;
  background-image: url(assets/images/quote-new.png); */
  /* background-repeat: no-repeat;
  background-position: left 55px bottom 100px; */
}

.leader-ship-content {
  width: 78%;
  padding: 65px 80px;
  display: flex;
  flex-wrap: wrap;
  -webkit-border-radius: 17px 17px 70px 17px;
  -moz-border-radius: 17px 17px 70px 17px;
  border-radius: 17px 17px 70px 17px;
  background-color: #21457b;
  min-height: 330px;
}

.leader-ship-content p {
  color: #fff;
  font-size: 23px;
  line-height: 33px;
  font-weight: 300;
  font-style: italic;
}

.leader-ship-content p+p {
  margin-top: 40px;
}

.leader-ship-content h3 {
  color: #fff;
  font-size: 33px;
  font-style: normal;
  font-weight: 500;
  line-height: 42px;
  margin-bottom: 40px;
}

.leader-ship-image {
  width: 25%;
  max-width: 230px;
  overflow: hidden;
}

.leader-ship-image img {
  width: 100%;
  -webkit-border-radius: 17px 17px 17px 70px;
  -moz-border-radius: 17px 17px 17px 70px;
  border-radius: 17px 17px 17px 70px;
  background-position: center center;
  background-size: cover;
}

.leadership-message-title {
  margin-left: auto;
  margin-top: 15px;
}

.leadership-message-title h4 {
  font-size: 26px;
  line-height: 30px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 5px;
}

.leadership-message-title span {
  color: #fff;
  font-size: 13px;
}

.leader-ship-inner-box-main {
  display: flex;
  flex-wrap: wrap;
  row-gap: 65px;
}

.leader-ship-inner-box.green {
  background-image: none;
  margin-left: auto;
}

.leader-ship-inner-box.green .leader-ship-content {
  background-color: #89a386;
}

/* .leader-ship-inner-box.green .leader-ship-content {
  background-color: #89A386;
} */

.programe-activities-section {
  padding: 70px 0px 0px;
}

.programe-activities-section h2 {
  font-size: 58px;
  line-height: 60px;
  margin-bottom: 20px;
}

.programe-activities-section-inner {
  width: 100%;
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  row-gap: 25px;
}

.programe-activities-box ul {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #2a7cbb;
  border-bottom: 1px solid #2a7cbb;
}

.programe-activities-box ul li {
  height: 130px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 0px 50px;
  max-width: 390px;
  position: relative;
}

.programe-activities-box ul li p {
  padding-left: 40px;
  position: relative;
}

.programe-activities-box ul li p span {
  height: 17px;
  line-height: 18px;
  width: 17px;
  text-align: center;
  padding: 0;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  background-color: #21457b;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  display: inline-block;
  align-items: center;
  position: absolute;
  left: 10px;
  top: 3px;
  justify-content: center;
}

.programe-activities-box ul li:nth-child(1) {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2a7cbb;
}

.programe-activities-box ul li::after {
  content: "";
  width: 40px;
  height: 132px;
  background-image: url(assets/images/after-new3.svg);
  background-repeat: no-repeat;
  position: absolute;
  right: -39px;
  z-index: -1;
}

.programe-activities-box ul li:nth-child(1)::before {
  content: "";
  width: 40px;
  height: 132px;
  background-image: url(assets/images/after-new3.svg);
  background-repeat: no-repeat;
  position: absolute;
  left: 0px;
}

.programe-activities-box ul li:nth-child(1)::after {
  background-image: url(assets/images/after-new4.svg);
  background-repeat: no-repeat;
  right: -36px;
}

.programe-activities-box ul li h4 {
  font-size: 25px;
  line-height: 25px;
  color: #fff;
}

.how-programmes-main-wrapper {
  width: 100%;
  padding: 90px 0 160px;
}

.how-programmes-main-wrapper .main-title {
  text-align: center;
}

.howtowork-first-section {
  padding-top: 130px;
  width: 100%;
}

.how-to-get-video {
  width: 100%;
  margin-bottom: 90px;
  position: relative;
}

.how-to-get-video img {
  width: 100%;
}

.play-btn {
  width: 75px;
  height: fit-content;
  display: block;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.corporate-governance-wrapper.gray-banner ul li:last-child:after {
  display: none;
}

.main-publication-slider-box .second-title {
  text-transform: capitalize;
}

.family-firm-bottom-section {
  padding: 20px 0px 90px;
}

.family-firm-bottom-section .main-title {
  margin-bottom: 60px;
}

.family-firm-bottom-section .main-title {
  text-align: center;
}

.family-firm-bottom-section ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-left: -1.5%;
  margin-right: -1.5%;
}

.family-firm-bottom-section ul li {
  width: 40%;
  margin-left: 1.5%;
  margin-right: 1.5%;
  text-align: center;
}

.family-firm-bottom-section ul li h3 {
  font-size: 28px;
  line-height: 35px;
  font-family: "futura_stdheavy";
  font-weight: 800;
  color: #094278;
  margin-bottom: 0px;
}

.firm-img {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 15px;
  min-height: 195px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  border: 1px solid #e3e3e3;
  margin-bottom: 15px;
}

.margin-bottom-zero {
  margin-bottom: 0px !important;
}

.governance-overview-img.right {
  float: left;
  margin-left: 0px;
  margin-right: 110px;
}

.governance-overview-img.right::after {
  content: "";
  width: 138px;
  height: 122px;
  position: absolute;
  background-image: url(assets/images/fonder-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  bottom: -40px;
  left: inherit;
  right: -65px;
  z-index: -1;
}

.student-progress-section {
  width: 100%;
  padding: 130px 0px 160px;
  margin-bottom: -30px;
  background-color: #f4fbfe;
  -webkit-border-top-right-radius: 30px;
  -moz-border-top-right-radius: 30px;
  border-top-right-radius: 30px;
  -webkit-border-top-left-radius: 30px;
  -moz-border-top-left-radius: 30px;
  border-top-left-radius: 30px;
  position: relative;
  z-index: 0;
}

.student-progress-section ul {
  display: flex;
  flex-wrap: wrap;
  max-width: 1080px;
  margin: 0 auto;
}

.student-progress-section ul li {
  width: 25%;
  position: relative;
}

.progress-box {
  width: calc(100% - 30px);
  margin: 0 auto;
  display: block;
  padding: 25px;
  margin-bottom: 15px;
  min-height: 215px;
  padding-top: 60px;
  background-color: #fff;
  display: flex;
  align-items: flex-end;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}

.student-progress-section ul li:nth-child(2n) .progress-box {
  margin-bottom: 0px;
  margin-top: 15px;
  align-items: flex-start;
  padding-top: 25px;
  padding-bottom: 60px;
}

.student-progress-section ul li:nth-child(2n) .progress-box-outer {
  border-radius: 0px;
  bottom: inherit;
  top: 0px;
  -webkit-border-top-left-radius: 30px;
  -moz-border-top-left-radius: 30px;
  border-top-left-radius: 30px;
  -webkit-border-top-right-radius: 30px;
  -moz-border-top-right-radius: 30px;
  border-top-right-radius: 30px;
  background-position: bottom center;
  box-shadow: -10px -9px 19px -9px rgba(0, 0, 0, 0.24);
  -webkit-box-shadow: -10px -9px 19px -9px rgba(0, 0, 0, 0.24);
  -moz-box-shadow: -10px -9px 19px -9px rgba(0, 0, 0, 0.24);
}

.student-progress-section ul li:nth-child(2n) .progress-number {
  top: inherit;
  bottom: -40px;
  box-shadow: -10px -9px 19px -9px rgba(0, 0, 0, 0.24);
  -webkit-box-shadow: -10px -9px 19px -9px rgba(0, 0, 0, 0.24);
  -moz-box-shadow: -10px -9px 19px -9px rgba(0, 0, 0, 0.24);
}

.progress-box-outer {
  width: 100%;
  height: 54%;
  left: 0;
  bottom: 0px;
  position: absolute;
  z-index: -1;
  background-size: 100%;
  background-repeat: no-repeat;
  -webkit-border-bottom-left-radius: 30px;
  -moz-border-bottom-left-radius: 30px;
  border-bottom-left-radius: 30px;
  -webkit-border-bottom-right-radius: 30px;
  -moz-border-bottom-right-radius: 30px;
  border-bottom-right-radius: 30px;
  box-shadow: 10px 10px 19px -9px rgba(0, 0, 0, 0.29);
  -webkit-box-shadow: 10px 10px 19px -9px rgba(0, 0, 0, 0.29);
  -moz-box-shadow: 10px 10px 19px -9px rgba(0, 0, 0, 0.29);
}

.progress-number {
  width: 85px;
  height: 85px;
  font-family: "futura_stdheavy";
  display: flex;
  align-items: center;
  font-size: 30px;
  justify-content: center;
  background-color: #fff;
  color: #595959;
  border: 10px solid #89a386;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  margin: 0 auto;
  box-shadow: 10px 10px 19px -9px rgba(0, 0, 0, 0.29);
  -webkit-box-shadow: 10px 10px 19px -9px rgba(0, 0, 0, 0.29);
  -moz-box-shadow: 10px 10px 19px -9px rgba(0, 0, 0, 0.29);
}

.green-btn.normal {
  text-transform: initial;
}

.corporate-governance-overview-inner .main-title {
  line-height: 72px;
}

.overview-full-width {
  padding: 60px 0px 10px;
}

.overview-full-width .main-title {
  margin-bottom: 20px;
}

.overview-full-width p {
  margin-bottom: 20px;
}

.project-aims-section {
  width: 100%;
  padding-top: 60px;
}

.project-aims-list {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  margin-left: -1%;
  margin-right: -1%;
}

.project-aims-list li {
  width: 31.3%;
  margin-left: 1%;
  margin-right: 1%;
  padding: 50px 40px 40px;
  -webkit-border-radius: 17px;
  -moz-border-radius: 17px;
  border-radius: 17px;
}

.project-aims-list li p {
  font-size: 23px;
  line-height: 35px;
  color: #fff;
  font-family: "futura_stdheavy";
}

.philanthropy-icon {
  max-height: 93px;
  margin-bottom: 30px;
}

.philanthropy-icon img {
  max-height: 90px;
}

.project-aims-section .green-btn {
  background-color: #21457b;
  margin-bottom: 40px;
}

.project-aims-section .green-btn:hover {
  background-color: #b5bf35;
}

.project-aims-section p {
  margin-bottom: 35px;
}

.corporate-partner-full-section {
  width: 100%;
  height: auto;
  padding: 100px 0px;
}

.main-events-slider {
  margin-bottom: 140px;
}

.main-media-content h3 {
  font-size: 23px;
  font-family: "futura_stdheavy";
  line-height: 30px;
  margin-top: 15px;
  min-height: 60px;
 -webkit-line-clamp: 2;
    -moz-line-clamp: 2;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;	
}

.event-slider-time {
  margin-top: 20px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 10px;
}

.event-slider-date {
  font-size: 14px;
  line-height: 26px;
  font-weight: 600;
  padding: 0px 10px;
  display: inline-block;
  background-color: #b5bf35;
  color: #fff;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  padding-left: 30px;
  background-image: url(assets/images/calender.png);
  background-repeat: no-repeat;
  background-position: left 10px top 5px;
}

.event-slider-location {
  font-size: 14px;
  line-height: 26px;
  font-weight: 600;
  padding: 0px 10px;
  display: inline-block;
  background-color: #21457b;
  color: #fff;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  padding-left: 25px;
  background-image: url(assets/images/location.png);
  background-repeat: no-repeat;
  background-position: left 10px top 5px;
}

.main-media-content span.events {
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  font-size: 14px;
  line-height: 26px;
}

.sub-banner.sub-banner-small {
  height: 195px;
  min-height: auto;
  text-align: center;
}

.sub-banner.sub-banner-small h1 {
  max-width: inherit;
  margin-bottom: 0px;
}

.recent-events-section {
  width: 100%;
  padding: 90px 0px 140px;
}

.recent-events-section-inner {
  width: 100%;
  margin-top: 40px;
}

.recent-events-section-inner ul {
  display: flex;
  flex-wrap: wrap;
  margin-left: -1.5%;
  margin-right: -1.5%;
  row-gap: 60px;
}

.recent-events-section-inner ul li {
  width: 30.3%;
  margin-left: 1.5%;
  margin-right: 1.5%;
  position: relative;
}

.main-media-content span.events {
  position: absolute;
  right: 20px;
  top: 20px;
  display: inline-block;
  width: max-content;
  left: inherit;
}

.featured-event-first {
  width: 100%;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  margin-bottom: 65px;
  margin-top: 30px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 40px 50px;
}

.featured-event-first .main-media-content {
  max-width: 600px;
}

.featured-event-first .main-media-content h3 {
  font-size: 30px;
  line-height: 35px;
}

.featured-event-first .main-media-content h3 a {
  color: #fff;
}

.featured-event-first .event-slider-date,
.featured-event-first .event-slider-location {
  background-color: #00a1b7;
}

.recent-events-filter {
  padding-top: 55px;
  width: 100%;
  position: relative;
  z-index: 3;
}

.recent-events-filter-inner {
  width: 100%;
  padding-bottom: 55px;
  border-bottom: 1px solid #e3e3e3;
}

.recent-events-filter-inner ul {
  margin-left: -1%;
  margin-right: -1%;
  display: flex;
  flex-wrap: wrap;
}

.recent-events-filter-inner ul li {
  width: 34%;
  margin-left: 1%;
  margin-right: 1%;
  position: relative;
}

.recent-events-filter-inner ul li:last-child {
  width: 26%;
}

.select-filter {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.select-filter label {
  width: 80px;
  /* line-height: 50px; */
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: #094278;
}

.main-select {
  width: calc(100% - 85px);
}

.nice-select {
  background-color: #f2f2f2;
  font-size: 16px;
  line-height: 50px;
  height: 50px;
  font-weight: 400;
  color: #094278;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  border-radius: 40px;
  border: none;
  padding: 0px 20px;
  padding-right: 35px;
}

.nice-select .current{
	   overflow: hidden;
	       width: 100%;
}

.nice-select .list li {
	width: 100%;
  min-height: auto;
       line-height: 25px;
    margin-bottom: 5px;
	padding: 8px 10px;
}

.new-filter2 {
  width: 100%;
  background-color: #f2f2f2;
  font-size: 16px;
  line-height: 50px;
  height: 50px;
  font-weight: 400;
  color: #094278;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  border-radius: 40px;
  border: none;
  padding: 0px 20px;
  cursor: auto;
}

.new-filter2::placeholder {
  color: #094278;
}

.new-filter2.calender {
  background-image: url(assets/images/calender-blue.png);
  background-repeat: no-repeat;
  background-position: right 20px center;
}

.filter-search {
  width: 100%;
}

.filter-search .new-filter2 {
  padding-right: 110px;
}

.search-btn-new:hover {
  background-color: #000;
}

.search-btn-new {
  width: 100px;
  border: none;
  height: 50px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  border-radius: 40px;
  background-color: #184377;
  font-size: 0px;
  position: absolute;
  top: 0;
  right: 0px;
  background-image: url(assets/images/search-icon.png);
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.nice-select:after {
  width: 12px;
  height: 10px;
  background-image: url(assets/images/select-arrow.png) !important;
  border: none !important;
  background-position: center;
  background-repeat: no-repeat;
  content: "";
  display: block;
  margin-top: -4px;
  pointer-events: none;
  position: absolute;
  right: 14px;
  top: 50%;
  -webkit-transform-origin: 66% 66%;
  -ms-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

.nice-select.open:after {
  margin-top: -4px;
}

.news-filter-inner {
  width: 100%;
  padding-bottom: 55px;
  border-bottom: 1px solid #e3e3e3;
}

.news-filter-inner ul {
  margin-left: -1%;
  margin-right: -1%;
  display: flex;
  flex-wrap: wrap;
}

.news-filter-inner ul li {
  width: 31.3%;
  margin-left: 1%;
  margin-right: 1%;
  position: relative;
}

.recent-events-section-inner.margin-top-zero {
  margin-top: 0px;
}

.main-media-content p {
  margin-top: 10px;
}

.main-media-content.news-content h3 {
  margin-top: 20px;
}

.main-media-content.news-content h3 a{
     display: inline-block;
     height: auto;
}

.main-media-content.news-content p {
  margin-top:0;
  font-size: 16px;
  line-height: 24px;
}

.sub-banner .main-title {
  color: #fff;
  max-width: 1000px;
  line-height: 60px;
}

.sub-banner.detail-page {
  align-items: flex-end;
  padding-bottom: 40px;
}

.event-name.publication {
  margin-bottom: 20px;
}

.sub-banner.detail-page .date {
  color: #fff;
  margin-bottom: 15px;
  width: 100%;
  font-size: 21px;
}

.news-detail-top-section {
  width: 100%;
  padding: 100px 0 90px;
}

.news-detail-top-section p {
  line-height: 26px;
  margin-bottom: 30px;
}

.news-detail-top-section img {
  margin-top: 30px;
  margin-bottom: 35px;
}

.related-news-section {
  width: 100%;
  padding: 90px 0 120px;
  background-color: #f4fbfe;
  position: relative;
  z-index: 1;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}

.related-news-section .main-title {
  padding-right: 100px;
}

.related-news-slider {
  width: 100%;
  margin-top: 50px;
}

.sub-banner.detail-page p {
  font-size: 21px;
  color: #fff;
}

.event-name {
  font-size: 14px;
  line-height: 26px;
  font-weight: bold;
  padding: 0px 15px;
  display: inline-block;
  background-color: #00a1b7;
  color: #fff;
  margin-bottom: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  margin-bottom: 15px;
}

.events-detail-top-section {
  width: 100%;
  padding: 150px 0 45px;
}

.events-list-main ul {
  margin-left: -1%;
  margin-right: -1%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.events-list-main ul li {
  width: 20%;
  margin-left: 1%;
  margin-right: 1%;
  display: inline-block;
}

.event-list-icon {
  width: 80px;
  height: 80px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  background-color: #21457b;
  display: flex;
  margin: 0 auto;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.event-list-icon img {
  height: auto;
}

.event-list-content {
  margin-top: 20px;
  text-align: center;
}

.event-list-content h4 {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.event-list-content p {
  color: #8e8e8e;
}

.detail-page .white-btn {
  height: 50px;
  line-height: 52px;
  margin-top: 15px;
  font-weight: 500;
}

.related-news-section.white-bg {
  background-color: #fff;
}

.corporate-governance-wrapper.gray-banner {
  background-color: #f4fbfe;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}

.corporate-governance-wrapper.gray-banner {
  padding: 90px 0px 100px;
}

.corporate-governance-wrapper.gray-banner ul {
  margin-top: 40px;
}

.corporate-governance-wrapper.gray-banner h3 {
  margin-top: 20px;
}

.event-organizer {
  font-size: 14px;
  line-height: 25px;
  font-weight: 500;
  padding: 0px 10px;
  display: inline-block;
  background-color: #00a1b7;
  color: #fff;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  margin-top: 5px;
}

.events-detail-text-section {
  width: 100%;
  padding: 45px 0px 90px;
}

.event-detail-content-inner {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.event-detail-content-img {
  width: 36%;
  text-align: center;
}

.event-detail-content-img img {
  /* width: 100%; */
  width: 80%;
}

.event-detail-content-img .green-btn {
  background-color: #21457b;
  margin: 0 auto;
  margin-top: 30px;
  text-transform: none;
}

.event-detail-content-img .green-btn:hover {
  background-color: #b5bf35;
}

.event-detail-content-text {
  width: 64%;
  /* padding-left: 70px; */
  padding: 55px;
}

.event-detail-content-text p {
  margin-bottom: 20px;
}

.event-detail-content-text p span {
  width: 100%;
  display: block;
  font-weight: 600;
}

.event-detail-content-social {
  margin-top: 80px;
  display: flex;
  justify-content: center;
}

.event-social-inner {
  display: flex;
  align-items: center;
}

.event-social-inner label {
  font-size: 18px;
  line-height: 25px;
  font-weight: bold;
  width: 140px;
  color: #21457b;
}

.event-social-inner ul {
  display: flex;
  flex-wrap: wrap;
  column-gap: 25px;
}

.event-social-inner ul li {
  width: 85px;
  height: 85px;
  border: 1px solid #cccccc;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}

.event-social-inner ul li a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
}

.evolution-second-section.impact {
  margin-top: 50px;
}

.about-evolution-section.impact {
  padding: 100px 0px 150px;
}

.our-impact-page-inner {
  width: 100%;
  margin-top: 40px;
}

.our-impact-page-inner ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 35px;
  margin-left: -1.5%;
  margin-right: -1.5%;
}

.our-impact-page-inner ul li::after {
  display: none;
}

.our-impact-page-inner ul li {
  width: 30.33%;
  min-height: 245px;
  background-repeat: no-repeat;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-border-radius: 17px;
  -moz-border-radius: 17px;
  border-radius: 17px;
  overflow: hidden;
  padding: 35px;
  display: flex;
  align-items: center;
  margin-left: 1.5%;
  margin-right: 1.5%;
  position: relative;
}

.our-imapact-top-section {
  width: 100%;
  padding: 110px 0px;
}

.our-imapact-top-section p {
  line-height: 26px;
}

/* .our-impact-list-main {
  margin-top: 45px;
} */

.our-impact-list-main h3 {
  font-size: 27px;
  line-height: 38px;
}

.our-impact-list-main ul {
  margin-left: -1%;
  margin-right: -1%;
  margin-top: 45px;
  display: flex;
  flex-wrap: wrap;
}

.our-impact-list-main ul li {
  width: 48%;
  display: flex;
  align-items: center;
  min-height: 85px;
  padding: 10px 30px;
  margin-left: 1%;
  margin-right: 1%;
  margin-bottom: 25px;
  border: 1px solid #21457b;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
}

.impact-list-inner {
  width: 100%;
  display: flex;
}

.impact-list-icon {
  width: 50px;
}

.impact-list-text {
  width: calc(100% - 50px);
  display: flex;
  align-items: center;
}

.impact-list-text p {
  margin-bottom: 0px;
}

.publication-filter-inner {
  width: 100%;
  padding-bottom: 55px;
  border-bottom: 1px solid #e3e3e3;
}

.publication-filter-inner ul {
  margin-left: -1%;
  margin-right: -1%;
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
}

.publication-filter-inner ul li {
  margin-left: 1%;
  margin-right: 1%;
  width: 23%;
  position: relative;
}

.publication-filter-inner ul li:last-child {
  width: 100%;
}

.publication-list-section {
  width: 100%;
  padding: 40px 0px 140px;
}

.publication-list-section .main-media-content span {
  background-color: #b5bf35;
}

.publication-list-section .main-media-content p {
  font-size: 16px;
  min-height:50px;
  -webkit-line-clamp: 2;
  -moz-line-clamp: 2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;	
}

.publication-list-btn {
  width: 100%;
  display: flex;
  margin-top: 20px;
  column-gap: 15px;
}

.publication-list-btn .green-btn {
  text-transform: none;
}

.green-btn.blue-btn {
  background-color: #00a1b7;
}

.green-btn.grey-btn {
  background-color: #909090;
}

.green-btn.blue-btn:hover,
.green-btn.grey-btn:hover {
  background-color: #b5bf35;
}

.event-name.publication {
  background-color: #b5bf35;
}

.white-btn.event-btn {
  background-color: #00a1b7;
  color: #fff;
  text-transform: none !important;
}

.white-btn.event-btn:hover {
  background-color: #b5bf35;
}

.news-publication-top-section {
  width: 100%;
  padding: 110px 0 90px;
}

.news-publication-top-section-inner {
  display: flex;
  flex-wrap: wrap;
}

.news-publication-top-left {
  width: 70%;
}

.news-publication-top-right {
  width: 30%;
  padding-left: 60px;
}

.news-publication-top-left img {
  margin: 45px 0;
}

.news-publication-inner {
  width: 100%;
  border: 1px solid #808080;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  padding: 35px;
  text-align: center;
}

.news-publication-inner h3 {
  font-size: 30px;
  line-height: 30px;
  font-family: "futura_stdheavy";
  color: #094278;
}

.news-publication-inner img {
  margin-top: 5px;
  margin-bottom: 15px;
}

.corporate-governance-wrapper .corporate-governance-content ul {
  margin-top: 20px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 10px;
}

.corporate-governance-wrapper .corporate-governance-content ul li {
  width: auto;
  display: inline-block;
  border: none;
  line-height: 50px;
  background-color: #21457b;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  padding: 0px 15px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}

.corporate-governance-wrapper .corporate-governance-content ul li::after {
  display: none;
}

.corporate-governance-wrapper .corporate-governance-content ul>li:nth-child(2n) {
  margin-left: 0;
}

.text-center {
  text-align: center;
  width: 100%;
}

.university-bottom-section {
  width: 100%;
  padding: 100px 0px 90px;
}

.university-collabration-slider {
  width: 100%;
  padding-bottom: 60px;
  border-bottom: 1px solid #d9d9d9;
  margin-bottom: 70px;
}

.main-media-image img {
  background-repeat: no-repeat;
  background-size: cover;
}

.university-slider1 .main-media-content h3 {
  margin-top: 5px;
}

.university-slider1 {
  margin-top: 35px;
}

.university-report-slider {
  margin-top: 35px;
}

.university-reports-main {
  width: 100%;
}

.owl-carousel.university-report-slider .owl-nav .owl-next span,
.owl-carousel.university-report-slider .owl-nav button.owl-prev span,
.owl-carousel.university-slider1 .owl-nav .owl-next span,
.owl-carousel.university-slider1 .owl-nav button.owl-prev span,
.owl-carousel.related-news .owl-nav .owl-next span,
.owl-carousel.related-news .owl-nav button.owl-prev span {
  display: none;
}

.owl-carousel.university-report-slider .owl-nav button.owl-next,
.owl-carousel.university-slider1 .owl-nav button.owl-next {
  position: absolute;
  top: -47px;
  font-size: 0px;
  right: 0;
  width: 35px;
  height: 35px;
  background-size: 24px !important;
  background-image: url(assets/images/arrow-right.png) !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

.owl-carousel.university-report-slider .owl-nav button.owl-prev,
.owl-carousel.university-slider1 .owl-nav button.owl-prev {
  position: absolute;
  top: -47px;
  font-size: 0px;
  right: 50px;
  left: inherit;
  width: 35px;
  height: 35px;
  background-size: 24px !important;
  background-image: url(assets/images/arrow-left.png) !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

.pldge-first-title {
  width: 100%;
  text-align: center;
  margin-bottom: 50px;
}

.owl-carousel.related-news .owl-nav button.owl-prev {
  position: absolute;
  top: -58px;
  font-size: 0px;
  right: 50px;
  left: inherit;
  width: 35px;
  height: 35px;
  background-size: 24px !important;
  background-image: url(assets/images/arrow-left.png) !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

.owl-carousel.related-news .owl-nav button.owl-next {
  position: absolute;
  top: -58px;
  font-size: 0px;
  right: 0;
  width: 35px;
  height: 35px;
  background-size: 24px !important;
  background-image: url(assets/images/arrow-right.png) !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

.related-news-section.bussiness-related {
  padding-top: 150px;
}

.for-business-wrapper {
  width: 100%;
  padding: 100px 0px;
}

.for-business-wrapper ul {
  margin-left: -1.5%;
  margin-right: -1.5%;
  display: flex;
  flex-wrap: wrap;
}

.for-business-wrapper ul li {
  width: 47%;
  margin-left: 1.5%;
  margin-right: 1.5%;
  padding: 50px;
  padding-bottom: 100px;
  margin-bottom: 40px;
  min-height: 395px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
}
.for-business-wrapper ul li:first-child{
	width:100%;
	margin:0px;
}

.for-business-wrapper ul li .main-title {
  color: #fff;
  margin-bottom: 15px;
  line-height: 60px;
}

.for-business-wrapper ul li p {
  color: #fff;
}

.for-business-wrapper ul li .green-btn {
  background-color: #21457b;
  margin-top: 15px;
  text-transform: capitalize;
  min-width: 175px;
  text-align: center;
  position: absolute;
  bottom: 40px;
}

.for-business-wrapper ul li .green-btn:hover {
  background-color: #fff;
  color: #21457b;
}

.compatition-overview {
  width: 100%;
  overflow: auto;
  padding: 130px 0px 120px;
}

.compatition-overview:nth-child(even) {
  background-color: #21457b;
}

.compatition-overview-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.compatition-overview-img {
  width: 35%;
  position: relative;
}

.compatition-overview-img img {
  width: 100%;
}

.compatition-overview-img::after {
  content: "";
  width: 138px;
  height: 122px;
  position: absolute;
  background-image: url(assets/images/fonder-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  bottom: -40px;
  left: inherit;
  right: -65px;
  z-index: -1;
}

.compatition-overview-content {
  width: 65%;
  padding-left: 130px;
}

.compatition-overview-content p {
  margin-bottom: 20px;
}

.compatition-overview-content h2 {
  font-family: "futura_stdheavy";
  font-size: 58px;
  line-height: 70px;
  color: #094278;
  margin-bottom: 25px;
}

.compatition-overview:nth-child(even) .compatition-overview-inner {
  flex-direction: row-reverse;
}

.compatition-overview:nth-child(even) .compatition-overview-content {
  padding-left: 0px;
  padding-right: 130px;
}

.compatition-overview:nth-child(even) .compatition-overview-content h2,
.compatition-overview:nth-child(even) .compatition-overview-content p {
  color: #fff;
}

.compatition-overview:nth-child(even) .compatition-overview-img::after {
  background-image: url(assets/images/competition-bg.png);
  left: -65px;
  right: inherit;
}

.career-overview {
  width: 100%;
  overflow: auto;
  padding: 110px 0px;
}

.career-top-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.compatition-overview-img {
  width: 35%;
  position: relative;
}

.compatition-overview-img img {
  width: 100%;
}

.compatition-overview-img::after {
  content: "";
  width: 138px;
  height: 122px;
  position: absolute;
  background-image: url(assets/images/fonder-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  bottom: -40px;
  left: inherit;
  right: -65px;
  z-index: -1;
}

.career-top-content {
  width: 65%;
  padding-left: 130px;
}

.career-top-content p {
  margin-bottom: 20px;
}

.career-top-content h2 {
  font-family: "futura_stdheavy";
  font-size: 58px;
  line-height: 70px;
  color: #094278;
  margin-bottom: 25px;
}

.career-list-top-main {
  margin-top: 40px;
}

.career-list-top-main h3 {
  font-family: "futura_stdheavy";
  font-size: 23px;
  line-height: 25px;
  margin-bottom: 15px;
}

.career-list-top-main ul li {
  width: 100%;
  list-style: none;
  padding-left: 25px;
  margin-bottom: 5px;
  color: #094278;
  background-image: url(assets/images/tick-blue.png);
  background-repeat: no-repeat;
  background-position: left top 5px;
}

.career-list-main {
  width: 100%;
  padding-bottom: 140px;
}

/*------------------------------*/

.faq-section {
  padding-top: 120px;
}

.faq-accordion-container {
  margin: auto;
}

.faq-accordion-item>a.active {
  width: 10px;
  height: 2px;
  background-color: #3399cc;
}

.faq-accordion-content {
  display: none;
  padding-left: 0;
  padding: 40px 40px 50px;
  border-left: none;
  border-radius: 15px;
}

.faq-accordion-content p {
  font-size: 16px;
  color: #094278;
  font-weight: 400;
  margin: 0;
}

.faq-accordion-content h4 {
  font-size: 16px;
  line-height: 24px;
  color: #094278;
  font-weight: 500;
}

.faq-accordion-content p {
  margin-bottom: 20px;
}

.faq-accordion-content b {
  margin-top: 10px;
  display: block;
}

.faq-accordion-content ul {
  margin-top: 10px;
  margin-bottom: 30px;
}

.faq-accordion-content ul li {
  width: 100%;
  list-style: none;
  padding-left: 25px;
  margin-bottom: 5px;
  font-size: 16px;
  color: #094278;
  background-image: url(assets/images/tick-blue.png);
  background-repeat: no-repeat;
  background-position: left top 5px;
}

.faq-accordion-title {
  font-size: 23px;
  position: relative;
  width: 100%;
  cursor: pointer;
  font-family: "futura_stdheavy";
  color: #094278;
  padding: 25px 50px;
  padding-right: 65px;
  border-radius: 15px;
}

.faq-accordion-item {
  padding: 0px 0;
  position: relative;
  border: 1px solid #dfdfdf;
  border-radius: 15px;
}

.faq-accordion-item.active {
  margin-bottom: 20px;
}

.faq-accordion-item .plus_minus {
  --side: -6px;
  --sizex: 15px;
  --sizey: 3px;
}

.faq-accordion-title i {
  position: absolute;
  left: inherit;
  right: 40px;
  top: 30px;
}

.faq-accordion-item .plus_minus::after,
.faq-accordion-item .plus_minus::before {
  display: none;
}

.faq-accordion-item .plus_minus::before {
  height: var(--sizex);
  width: var(--sizey);
  top: var(--side);
}

.faq-accordion-item .plus_minus::after {
  width: var(--sizex);
  height: var(--sizey);
  left: var(--side);
}

.faq-accordion-title.active .plus_minus::before {
  opacity: 0;
  visibility: hidden;
}

.faq-accordion-title.active {
  background-color: #89a386;
  color: #fff;
}

.faq-accordion-item .faq-accordion-title.active .plus_minus::after,
.faq-accordion-item .faq-accordion-title.active .plus_minus::before {
  background-color: #fff;
}

.career-btn-main {
  display: flex;
  margin-top: 20px;
  column-gap: 15px;
  flex-wrap: wrap;
}

.career-btn-main .green-btn.darkblue {
  margin-bottom: 10px;
}

.green-btn.darkblue {
  background-color: #094278;
  border: 1px solid #094278;
  color: #fff;
}

.green-btn.darkblue:hover {
  background-color: #b5bf35;
  border: 1px solid #b5bf35;
}

.career-btn-main .green-btn.border {
  background-color: #fff;
  border: 1px solid #094278;
  color: #094278;
}

.career-btn-main .green-btn.border:hover {
  background-color: #b5bf35;
  border: 1px solid #b5bf35;
  color: #fff;
}

.upload-cv-btn {
  text-align: center;
  margin-top: 50px;
}

.contact-main-wrapper {
  width: 100%;
  padding-bottom: 90px;
}

.contact-main-inner {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.contact-address {
  width: 40%;
  padding: 50px 0;
}

.address-box {
  margin-top: 20px;
  padding-left: 35px;
  position: relative;
}

.contact-address a {
  color: #21457b;
  font-size: 16px;
  line-height: 20px;
}

.contact-address a:hover {
  color: var(--color-primary);
}

.contact-address h3 {
  font-family: "futura_stdheavy";
  margin-top: 45px;
}

.contact-icon {
  position: absolute;
  left: 0px;
  top: 0px;
}

.contact-form-main {
  width: 50%;
  padding: 70px;
  margin-top: -50px;
  margin-left: auto;
  background-color: #89a386;
  -webkit-rder-radius: 17px;
  -moz-rder-radius: 17px;
  border-radius: 17px;
  color: #fff;
}

.contact-form-main .main-title {
  color: #fff;
  margin-bottom: 45px;
}

.contact-form-main p {
  color: #fff;
}

.contact-form-inner {
  width: 100%;
  margin-top: 50px;
}

.contact-form {
  width: 100%;
}

.contact-form li {
  width: 100%;
  margin-bottom: 20px;
}

.contact-form li input::placeholder {
  color: #fff;
}

.contact-form li textarea::placeholder {
  color: #fff;
}

.contact-form li input {
  width: 100%;
  background-color: transparent;
  color: #fff;
  height: 45px;
  line-height: 45px;
  font-size: 13px;
  border: none;
  border-bottom: 1px solid #fff;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}

.contact-form .nice-select {
  width: 100%;
  background-color: transparent;
  color: #fff;
  height: 45px;
  line-height: 45px;
  font-size: 13px;
  border: none;
  border-bottom: 1px solid #fff;
  border-radius: 0;
  padding-left: 0;
}

.contact-form .nice-select .option {
  color: #094278;
  margin-bottom: 5px;
}

.contact-form .nice-select::after {
  background-image: url(assets/images/select-arrow-white.png) !important;
}

.contact-form li textarea {
  width: 100%;
  background-color: transparent;
  color: #fff;
  height: 110px;
  min-height: auto;
  line-height: 20px;
  font-size: 13px;
  border: none;
  border-bottom: 1px solid #fff;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}

.contact-form .form-submit.green-btn {
  background-color: #fff;
  border: none;
  outline: none;
  color: #094278;
  padding: 0px 60px;
  margin-top: 20px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.contact-form .form-submit.green-btn:hover {
  background-color: #094278;
  color: #fff;
}

.partner_popup {
  width: 100%;
  max-width: 900px;
  padding: 60px;
  background-color: #89a386;
  -webkit-rder-radius: 17px;
  -moz-rder-radius: 17px;
  border-radius: 17px;
  color: #fff;
}

.partner_popup .main-title {
  color: #fff;
  margin-bottom: 40px;
  line-height: 60px;
}

.partner_popup .carousel__button.is-close {
  display: none;
}

.partner-listing-wrap.partner-page ul li a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.partner-listing-wrap.partner-page ul li {
  padding: 0px;
}

.map-main {
  width: 100%;
  height: 440px;
}

.how-help-bottom-main-wrapper {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 120px;
}

.how-help-bottom-main-wrapper ul {
  margin-left: -2%;
  margin-right: -2%;
  display: flex;
  flex-wrap: wrap;
}

.how-help-bottom-main-wrapper ul li {
  width: 46%;
  margin-left: 2%;
  margin-right: 2%;
  border: 1px solid #e3e3e3;
}

.help-bottom-img img {
  width: 100%;
}

.help-bottom-content {
  width: 100%;
  padding: 50px 40px 40px;
}

.help-bottom-content h3 {
  font-size: 28px;
  font-family: "futura_stdheavy";
  margin-bottom: 15px;
}

.help-bottom-content .green-btn.darkblue {
  margin-top: 15px;
}

.submenu-main-container {
  background-color: #91ad8d;
  padding: 10px 40px 20px;
  display: none;
  position: absolute;
  top: 60px;
  right: 0;
  width: 1000px;
  -webkit-border-radius: 0 0 30px 30px;
  -moz-border-radius: 0 0 30px 30px;
  border-radius: 0 0 30px 30px;
}

.submenu-main-container-inner {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.submenu-content {
  width: 60%;
  padding-right: 80px;
}

.submenu-list {
  width: 40%;
}

.submenu-content .main-title {
  color: #fff;
  margin-bottom:5px;
}

.submenu-content .main-title a{ font-size: 22px; font-weight: normal; padding: 3px 0 !important;}

.submenu-main-container a{
      padding: 3px 10px !important;
      font-weight: 400 !important;
}

.submenu-content p {
  color: #fff;
}

.submenu-list ul li {
  padding: 3px 0px;
  border-bottom: 1px solid #99bc95;
}

.submenu-list ul li:last-child {
  border-bottom: none;
}

.submenu-list ul li a {
  font-size: 15px;
  line-height: 22px;
}

.submenu-list ul li+li {
  margin-left: 0px;
}

.menu-ul li.submenu {
  background-image: url(assets/images/menu-arrow.png);
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 20px;
  background-size: 10px;
}

.menu-ul li.submenu:hover>.submenu-main-container {
  display: block;
}

.how-programmes-main-wrapper .main-title {
  font-size: 58px;
  line-height: 70px;
}

.project-aims-section .main-title {
  text-transform: inherit;
}

.corporate-governance-content .event-slider-location,
.corporate-governance-content .event-slider-date {
  padding: 4px 10px 2px;
  line-height: 23px;
  background-image: none;
}

.university-reports-main .green-btn.blue-border {
  margin-top: 20px;
}

.green-btn.blue-border {
  background-color: #fff;
  border: 1px solid #094278;
  color: #094278;
}

.green-btn.blue-border:hover {
  background-color: #094278;
  border: 1px solid #094278;
  color: #fff;
}

.faq-accordion-item .plus_minus {
  width: 23px;
  height: 23px;
  background-color: #094278;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  background-image: url(assets/images/arrow-down.png);
  background-repeat: no-repeat;
  background-position: center;
}

.faq-accordion-item .faq-accordion-title.active .plus_minus {
  background-color: #fff;
  background-image: url(assets/images/arrow-up.png);
}

.about-proposition-section {
  width: 100%;
  padding: 110px 0;
}

.proposition-section-ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-left: -1%;
  margin-right: -1%;
}

.proposition-section-ul li {
  width: 14%;
  margin-left: 1%;
  margin-right: 1%;
  position: relative;
}

.proposition-section-ul li img {
  width: 100%;
}

.proposition-section-ul li:nth-child(even) {
  margin-top: 50px;
}

.value-text-main {
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 60px;
  width: 100%;
  max-width: 85px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.value-text-icon {
  margin-bottom: 10px;
}

.value-text-main h4 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  color: #094278;
  width: 100%;
  text-align: center;
}

.value-text-main p {
  font-size: 16px;
  line-height: 17px;
  color: #094278;
  text-align: center;
}

.impact_para {
  max-width: 680px;
}

.impact_para p {
  color: #094278;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin: 30px 0 50px 0;
}

.impact_list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
}

.impact_list li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 50%;
}

.impact_list li .impact_num {
  background-color: #21457b;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.impact_list li h5 {
  margin: 0;
  color: #fff;
  font-size: 48px;
  font-style: normal;
  font-weight: 650;
  line-height: 50px;
  letter-spacing: -0.5px;
  text-transform: capitalize;
  font-family: "futura_stdheavy" !important;
}

.impact_list li p {
  /* width: calc(100% - 120px); */
  max-width: 430px;
  padding-left: 30px;
  color: #094278;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
}

.prg_imact_wraper {
  padding: 100px 0;
}

.impact_para {
  max-width: inherit !important;
}

.prg_collabe .impact_para {
  max-width: inherit;
}

.leader_pic img {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.prg_key_pic {
  border-radius: 16px;
  border: 1px solid #dfdfdf;
  padding: 10px;
  display: inline-block;
  margin-top: 35px;
}

.prg_key_pic img {
  border-radius: 16px;
}

.prg_image_list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1.5%;
  row-gap: 25px;
}

.prg_image_list li {
  width: 17%;
  margin: 0 1.5%;
}

.prg_image_list.more_list {
  margin: 0 0.5%;
}

.prg_image_list.more_list li {
  width: 15%;
  margin: 0 0.5%;
}

.prg_image_list.more_list li .list_pic {
  padding: 50px 30px;
}

.prg_image_list li .list_pic {
  -webkit-border-radius: 20px 20px 20px 65px;
  -moz-border-radius: 20px 20px 20px 65px;
  border-radius: 20px 20px 20px 65px;
  border: 1px solid #094278;
  background: #21457b;
  padding: 40px 25px;
}

.prg_image_list li.w_auto {
  width: auto !important;
}

.prg_image_list .list_pic_auto {
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  border: 1px solid #dfdfdf;
  padding: 10px;
}

.prg_image_list li.w_auto img {
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
}

.list_pic img {
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.prg_image_list_sec {
  padding-top: 60px;
}

.ach_marg {
  padding-top: 130px;
}

.prg_ach_top_set {
  display: flex;
  justify-content: space-between;
}

.top_arch_para {
  width: 80%;
}

.top_arch_para p {
  margin-bottom: 20px;
}

.top_arch_para p:last-child {
  margin-bottom: 0;
}

.top_ach_img {
  width: 15%;
  border-radius: 20px 20px 20px 65px;
  border: 1px solid #094278;
  background: #02205d;
  padding: 50px 25px;
  display: flex;
  align-items: center;
}

.nice-select.open .list {
  row-gap: 0 !important;
  overflow: auto;
}

.about-proposition-section-p ul {
  padding-left: 20px;
  margin-top: 15px;
}

.about-proposition-section-p ul li {
  width: 100%;
  margin-bottom: 10px;
  color: #094278;
  list-style: circle;
}

.programme-objectictives-section {
  padding: 70px 0;
  background-color: #f4fbfe;
}

.programme-objectictives-first {
  text-align: center;
}

.programme-objectictives-first .main-title {
  margin-bottom: 20px;
}

.programme-objectictives-list {
  width: 100%;
  margin-top: 30px;
}

.programme-objectictives-list ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 15px;
}

.programme-objectictives-list ul li {
  width: 49%;
  background-color: #e7f2ff;
  border-radius: 95px;
  padding: 5px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.programme-icon {
  width: 92px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background-color: #fff;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
}

.programme-icon-content {
  width: calc(100% - 92px);
  padding: 0px 30px 0 15px;
}

.programme-objectictives-bottom {
  width: fit-content;
  margin: 0 auto;
  margin-top: 40px;
  background-color: #094278;
  padding: 20px 30px;
  -webkit-border-radius: 12px 32px 12px 32px;
  -moz-border-radius: 12px 32px 12px 32px;
  border-radius: 12px 32px 12px 32px;
}

.programme-objectictives-bottom p {
  color: #fff;
}

.programme-archivement-section {
  padding: 30px 0;
}

.programme-archivement-inner {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.programme-archivement-img {
  width: 38%;
}

.programme-archivement-img img {
  width: 100%;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
}

.programme-archivement-content {
  width: 62%;
  padding-left: 30px;
}

.programme-archivement-content .main-title {
  line-height: 58px;
  margin-bottom: 20px;
}

.programme-archivement-content p {
  margin-bottom: 20px;
}

.programme-archivement-content li {
  color: #094278;
  line-height: 24px;
}

.programme-archivement-content li a {
  margin-left: 7px;
}

.programme-archivement-content ul {
  padding-left: 22px;
  list-style: disc;
}

.programme-archivement-content li:not(:first-child) {
  margin-top: 10px;
}

.home-partners-section.detail-page .main-title.text-left {
  text-align: left;
  margin-bottom: 20px;
}

.home-partners-video {
  padding: 50px 0 60px;
}

.home-partners-video img {
  width: 100%;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
}

.practice-gallery-section {
  width: 100%;
  padding: 70px 0 140px;
}

.practice-gallery-section ul {
  width: 100%;
  max-width: 800px;
  display: flex;
  margin: 0 auto;
}

.practice-gallery-section ul li {
  width: 25%;
  min-height: 440px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.practice-gallery-section ul li:nth-child(1),
.practice-gallery-section ul li:nth-child(3) {
  top: 40px;
  position: relative;
}

.practice-gallery-section ul li:hover {
  width: 50%;
}

.programme-msg-section {
  width: 100%;
  padding: 70px 0 30px;
}

.programme-msg-section-inner {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  row-gap: 40px;
}

.programme-msg-box {
  width: 85%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: #21457b;
  border-radius: 28px 86px 28px 28px;
  padding: 40px;
}

.programme-msg-content {
  width: 65%;
}

.programme-msg-img {
  padding-left: 5%;
  width: 35%;
}

.programme-msg-content p {
  color: #fff;
}

.programme-msg-img-main {
  width: 100%;
  max-width: 250px;
  overflow: hidden;
  -webkit-border-radius: 20px 20px 20px 65px;
  -moz-border-radius: 20px 20px 20px 65px;
  border-radius: 20px 20px 20px 65px;
}

.programme-msg-img-main img {
  width: 100%;
}

.programme-msg-img-title {
  margin-top: 10px;
}

.programme-msg-img-title h4 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 5px;
}

.programme-msg-img-title p {
  font-size: 13px;
  color: #ffffff;
}

.programme-msg-box:nth-child(2n) {
  margin-left: auto;
  background-color: #e7f2ff;
}

.programme-msg-box:nth-child(2n) .programme-msg-content p,
.programme-msg-box:nth-child(2n) .programme-msg-img-title h4,
.programme-msg-box:nth-child(2n) .programme-msg-img-title p {
  color: #00386e;
}

.share-box {
  margin-top: -44px;
  justify-content: flex-end;
}

.white-btn+.share-box {
  margin-top: -44px;
}

.share-box,
.share-box ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.share-box a {
  color: #ffffff;
}

.share-box img {
  filter: brightness(8);
}

.share-box ul {
  margin-left: 10px;
  column-gap: 10px;
}

.share-box ul a {
  display: block;
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  color: #ffffff;
  background: #21457b;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
}

.share-box ul a:hover {
  background: var(--color-primary);
}


.owl-prev.disabled{ opacity: 0.5 !important;}


@media (max-width: 600px) {
  .share-box {
    margin-top: 25px;
    justify-content: flex-start;
  }

  .share-box,
  .white-btn+.share-box {
    margin-top: 25px;
  }
}


.hm-partner-listing-wrap li img{ max-width: 100%; max-height: 100%; object-fit: contain;}

/* --------------------------------main style------------------------------------- */

.single-programmes .founder-message ul {
  color: #094278;
  margin: 0 0 15px 0;
  padding-left: 22px;
  list-style: circle;
  display: inline-block;
}

.single-programmes .founder-message p {
  margin-bottom: 15px;
}

.single-programmes .team-first-section-inner ul {
  line-height: 24px;
  margin-bottom: 10px;
}

.single-programmes .team-first-section-inner ul li {
  display: block;
  line-height: 24px;
  color: #094278;
  position: relative;
}

.single-programmes .team-first-section-inner ul li::after {
  content: "";
  width: 8px;
  height: 8px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  background-color: #094278;
  position: absolute;
  left: -20px;
  top: 7px;
}

.single-programmes .programme-objectictives-bottom a {
  color: var(--color-primary);
}

.text-justify {
  text-align: justify;
}

p:empty,
p:empty::before {
  display: none !important;
}

p:has("&nbsp;"),
p:has(br:only-child) {
  display: none !important;
}

.main-media-content.news-content h3{
     display: inline-block;
}

/* --------------------------------responsive style------------------------------------- */

@media (min-width: 768px) {
  .header li:hover .mob-menu-icn {
    transform: scaleY(-1);
  }

  .sub-menu {
    position: absolute;
    left: 0;
    top: 100%;
    opacity: 0;
    visibility: hidden;
  }
}

/* --------------------------------------------------- */


@media (max-width: 1800px) {
.evoltion-slider-date{
    font-size: 65px;
}
}


@media (max-width: 1600px) {
  .header .container {
    max-width: 1300px;
  }

  .impact-box h3 {
    font-size: 75px;
    line-height: 70px;
  }

  .impact-box h4 {
    font-size: 24px;
    line-height: 30px;
  }

  .impact-box p {
    font-size: 18px;
    line-height: 25px;
  }

  .hme-about-section {
    padding: 80px 0px;
  }

  .home-about-content .main-title {
    line-height: 50px;
    margin-bottom: 28px;
  }

  .main-title {
    font-size: 45px;
  }

  .home-about-content .green-btn {
    margin-top: 20px;
  }

  .our-imapact-section {
    padding: 80px 0px;
  }

  .our-impact-inner {
    margin-top: 30px;
  }

  .partner-slider-main {
    margin-top: 30px;
  }

  .home-video-section {
    padding: 50px 0 100px;
  }

  .home-programe-section {
    padding: 80px 0px 50px;
  }

  .home-news-publication-section {
    padding: 100px 0px 90px;
  }

  .main-home-news {
    margin-top: 90px;
  }

  .publication-first-content {
    padding: 35px;
  }

  .publication-first-content label {
    left: 35px;
  }

  .footer {
    padding: 100px 0 38px 0;
  }

  .footer h4 {
    margin: 0 0 25px 0;
  }

  .ouicklinks a {
    font-size: 15px;
  }

  .main-media-content p {
    margin-top: 10px;
    font-size: 17px;
    line-height: 24px;
  }

  .sub-banner h1 {
    font-size: 60px;
    line-height: 65px;
  }

  .breadcrumbs a {
    font-size: 18px;
  }

  .about-main-section-inner {
    padding: 60px 0 80px;
  }

  .about-main-left-content h4 {
    font-size: 115px;
    line-height: 100px;
  }

  .about-main-left-content {
    width: 56%;
    padding-right: 40px;
  }

  .main {
    overflow: hidden;
  }

  .value-box {
    min-height: 470px;
    padding: 40px;
  }

  .value-box-content h3 {
    font-size: 38px;
    line-height: 45px;
    margin-bottom: 55px;
  }

  .value-box-icon {
    min-height: 90px;
  }

  .value-box-icon img {
    max-height: 80px;
  }

  .evolution-second-section {
    margin-top: 55px;
  }

  .about-evolution-section {
    padding: 60px 0px 100px;
  }

  .evoltion-slider-date {
    min-height: 120px;
    line-height: 46px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 20px;
    font-size: 70px;
    padding-left: 30px;
  }

  .evoltion-slider-date::before {
    content: "";
    width: 35px;
    height: 126px;
  }

  .evoltion-slider-content {
    padding: 20px 20px 0px 30px;
  }

  .team-first-section {
    padding: 90px 0 130px;
  }

  .founder-message {
    width: 65%;
    padding-left: 140px;
  }

  .founder-message h2 {
    font-size: 50px;
    line-height: 60px;
    margin-bottom: 30px;
  }

  .founder-message h4 {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 15px;
  }

  .founder-image::after {
    content: "";
    width: 120px;
    height: 110px;
    bottom: -40px;
    right: -65px;
  }

  .team-second-section {
    padding: 90px 0px;
  }

  .team-second-section .main-title {
    margin-bottom: 10px;
  }

  .team-list-main ul {
    row-gap: 15px;
  }

  .partner-main-nav ul li a {
    line-height: 45px;
    font-size: 18px;
  }

  .partner-full-section {
    padding-top: 40px;
  }

  .partner-title-main .main-title {
    margin-bottom: 15px;
  }

  .partner-main-nav {
    margin-bottom: 40px;
  }

  .partner-listing-wrap ul {
    row-gap: 20px;
  }

  .partner-main-listing {
    padding: 90px 0px;
  }

  .page-menu {
    min-height: 60px;
    -webkit-border-bottom-left-radius: 20px;
    -moz-border-bottom-left-radius: 20px;
    border-bottom-left-radius: 20px;
    -webkit-border-bottom-right-radius: 20px;
    -moz-border-bottom-right-radius: 20px;
    border-bottom-right-radius: 20px;
  }

  .page-menu .page-menu-inner a {
    line-height: 60px;
  }

  .corporate-governance-wrapper {
    padding: 60px 0px 110px;
  }

  .corporate-governance-img {
    border-radius: 15px 15px 0px 15px;
  }

  .corporate-governance-content {
    padding: 15px 0px 15px 65px;
  }

  .corporate-governance-wrapper ul {
    margin-top: 60px;
  }

  .key-objects-section h2 {
    font-size: 110px;
    line-height: 100px;
  }

  .anti-corruption-message {
    padding: 40px 55px;
    -webkit-border-radius: 17px 17px 50px 17px;
    -moz-border-radius: 17px 17px 50px 17px;
    border-radius: 10px 10px 50px 10px;
  }

  .anti-corruption-image-inner {
    -webkit-border-radius: 10px 50px 10px 10px;
    -moz-border-radius: 10px 50px 10px 10px;
    border-radius: 10px 50px 10px 10px;
  }

  .anti-corruption-message p {
    color: #fff;
    font-size: 20px;
    line-height: 28px;
  }

  .anti-corruption-message-title {
    margin-top: 10px;
  }

  .anti-corruption-message-title h4 {
    font-size: 28px;
    line-height: 28px;
  }

  .key-objects-section ul li {
    min-height: 120px;
    padding: 25px 50px 25px 70px;
  }

  .achivements-title h2 {
    font-size: 110px;
    line-height: 100px;
  }

  .leader-ship-inner-box-main {
    row-gap: 30px;
  }

  .achivements-title h4 {
    font-size: 45px;
    line-height: 40px;
  }

  .achivements-main-wrapper {
    padding: 100px 0px 35px;
  }

  .anti-corruption-main-wrapper .founder-message {
    padding-left: 90px;
  }

  .home-news-publication-section.governance-news {
    padding: 100px 0px;
  }

  .leader-ship-section {
    width: 100%;
    padding: 70px 0px 51px;
  }

  .programe-activities-section {
    padding: 50px 0px 0px;
  }

  .leader-ship-inner-box {
    -webkit-border-radius: 20px 50px 20px 20px;
    -moz-border-radius: 20px 50px 20px 20px;
    border-radius: 20px 50px 20px 20px;
    padding: 20px;
    min-height: auto;
  }

  .leader-ship-content p {
    font-size: 20px;
    line-height: 30px;
  }

  .leader-ship-image {
    -webkit-border-radius: 10px 40px 10px 10px;
    -moz-border-radius: 10px 40px 10px 10px;
    border-radius: 10px 40px 10px 10px;
  }

  .leadership-message-title h4 {
    font-size: 24px;
    line-height: 28px;
  }

  .programe-activities-section h2 {
    font-size: 52px;
    line-height: 50px;
    margin-bottom: 15px;
  }

  .programe-activities-section-inner {
    margin-top: 45px;
  }

  .programe-activities-box ul li h4 {
    font-size: 20px;
    line-height: 20px;
  }

  .corporate-governance-overview-inner p {
    margin-bottom: 30px;
  }

  .collabration-main-section.intergrated {
    padding-top: 30px;
  }

  .collabration-main-section {
    padding-bottom: 80px;
  }

  .collabration-main-section ul {
    margin-top: 30px;
  }

  .governance-overview-img {
    margin-left: 110px;
    margin-bottom: 80px;
  }

  .howtowork-first-section {
    padding-top: 100px;
  }

  .how-to-get-video {
    margin-bottom: 60px;
  }

  .anti-corruption-main-wrapper {
    padding: 80px 0px 80px;
  }

  .how-programmes-main-wrapper {
    padding: 60px 0 100px;
  }

  .programmes-inner-main {
    margin-top: 45px;
  }

  .programmes-box {
    padding: 25px;
    padding-bottom: 120px;
  }

  .white-btn.blue-btn {
    bottom: 40px;
    left: 25px;
  }

  .programmes-box h3 {
    margin-bottom: 25px;
  }

  .programmes-box ul {
    margin-top: 25px;
  }

  .programmes-box ul li a {
    line-height: 20px;
  }

  .family-firm-bottom-section ul li h3 {
    font-size: 25px;
    line-height: 30px;
  }

  .overview-full-width {
    padding: 50px 0px 10px;
  }

  .project-aims-section {
    padding-top: 40px;
  }

  .project-aims-list {
    margin-top: 30px;
  }

  .project-aims-list li {
    padding: 40px 30px 30px;
  }

  .project-aims-list li p {
    font-size: 20px;
    line-height: 32px;
  }

  .philanthropy-icon {
    max-height: 80px;
    margin-bottom: 35px;
  }

  .philanthropy-icon img {
    height: 80px;
  }

  .project-aims-section p {
    margin-bottom: 25px;
  }

  .project-aims-section .green-btn {
    margin-bottom: 30px;
  }

  .corporate-governance-overview {
    padding: 50px 0 65px;
  }

  .governance-bottom-contact {
    margin-bottom: 70px;
  }

  .family-firm-bottom-section .main-title {
    margin-bottom: 35px;
  }

  .family-firm-bottom-section {
    padding: 20px 0px 70px;
  }

  .student-progress-section {
    padding: 110px 0px 120px;
  }

  .progress-box {
    padding: 20px;
  }

  .main-events-slider {
    margin-bottom: 85px;
  }

  .recent-events-filter {
    padding-top: 45px;
  }

  .recent-events-filter-inner {
    padding-bottom: 45px;
  }

  .recent-events-section {
    padding: 65px 0px 115px;
  }

  .event-slider-date {
    font-size: 12px;
  }

  .event-slider-location {
    font-size: 11px;
  }

  .main-media-content h3 {
    font-size: 20px;
    line-height: 25px;
    min-height: 46px;
  }

  .main-media-content span.events {
    font-size: 12px;
  }

  .featured-event-first {
    padding: 35px 40px;
  }

  .featured-event-first .main-media-content h3 {
    font-size: 26px;
    line-height: 32px;
  }

  .event-slider-time {
    margin-top: 15px;
  }

  .recent-events-section-inner {
    margin-top: 25px;
  }

  .recent-events-section-inner ul {
    row-gap: 55px;
  }

  .sub-banner .main-title {
    line-height: 45px;
  }

  .sub-banner.detail-page p {
    font-size: 18px;
  }

  .sub-banner.detail-page .date {
    margin-bottom: 10px;
  }

  .sub-banner.detail-page .date {
    font-size: 14px;
  }

  .event-name {
    font-size: 12px;
    line-height: 25px;
    font-weight: bold;
    padding: 0px 10px;
  }

  .detail-page .white-btn {
    height: 42px;
    line-height: 44px;
    margin-top: 8px;
  }

  .events-detail-top-section {
    padding: 100px 0 30px;
  }

  .event-detail-content-text p {
    margin-bottom: 15px;
  }

  .event-detail-content-social {
    margin-top: 60px;
  }

  .events-detail-text-section {
    padding: 45px 0px 70px;
  }

  .event-social-inner ul li {
    width: 75px;
    height: 75px;
  }

  .corporate-governance-wrapper.gray-banner {
    padding: 65px 0px 80px;
  }

  .corporate-governance-wrapper.gray-banner ul {
    margin-top: 25px;
  }

  .related-news-section {
    padding: 70px 0 90px;
  }

  .related-news-slider {
    margin-top: 30px;
  }

  .owl-carousel.related-news .owl-nav button.owl-prev,
  .owl-carousel.related-news .owl-nav button.owl-next {
    top: -45px;
  }

  .event-list-content h4 {
    font-size: 22px;
    line-height: 25px;
  }

  .news-filter-inner {
    padding-bottom: 40px;
  }

  .news-detail-top-section {
    padding: 80px 0 65px;
  }

  .news-detail-top-section img {
    margin-top: 15px;
    margin-bottom: 50px;
  }

  .corporate-partner-full-section {
    padding: 80px 0;
  }

  .university-bottom-section {
    padding: 80px 0px 60px;
  }

  .our-imapact-top-section {
    padding: 90px 0px;
  }

  .our-impact-list-main h3 {
    font-size: 25px;
  }

  .our-impact-list-main {
    margin-top: 35px;
  }

  .our-impact-list-main ul {
    margin-top: 35px;
  }

  .our-impact-list-main ul li {
    margin-bottom: 20px;
  }

  .our-impact-list-main ul li {
    padding: 10px 20px;
  }

  .our-imapact-section {
    padding: 65px 0px;
  }

  .about-evolution-section.impact {
    padding: 80px 0px 100px;
  }

  .publication-list-section {
    padding: 30px 0px 100px;
  }

  .publication-filter-inner {
    padding-bottom: 40px;
  }

  .publication-list-btn {
    margin-top: 15px;
    column-gap: 10px;
  }

  .news-publication-top-section {
    padding: 90px 0 70px;
  }

  .news-publication-inner {
    padding: 25px;
  }

  .news-publication-top-left img {
    margin: 35px 0;
  }

  .for-business-wrapper {
    padding: 80px 0px;
  }

  .for-business-wrapper ul li {
    width: 47%;
    padding: 35px;
    margin-bottom: 40px;
    min-height: 360px;
    padding-bottom: 100px;
  }

  .for-business-wrapper ul li .main-title {
    line-height: 50px;
  }

  .compatition-overview {
    padding: 110px 0px 100px;
  }

  .compatition-overview-content {
    padding-left: 115px;
  }

  .compatition-overview:nth-child(2n + 1) .compatition-overview-content {
    padding-right: 0px;
    padding-left: 115px;
  }

  .compatition-overview-content h2 {
    font-size: 50px;
    line-height: 55px;
    margin-bottom: 20px;
  }

  .compatition-overview-content p {
    margin-bottom: 15px;
  }

  .related-news-section.bussiness-related {
    padding-top: 120px;
  }

  .career-overview {
    padding: 80px 0px;
  }

  .career-top-content {
    padding-left: 100px;
  }

  .career-top-content h2 {
    font-size: 50px;
    line-height: 55px;
    margin-bottom: 15px;
  }

  .career-list-top-main {
    margin-top: 25px;
  }

  .career-list-top-main h3 {
    font-size: 20px;
    line-height: 22px;
    margin-bottom: 10px;
  }

  .faq-accordion-title {
    font-size: 22px;
  }

  .career-list-main {
    padding-bottom: 110px;
  }

  .partner_popup {
    padding: 45px;
  }

  .partner_popup .main-title {
    margin-bottom: 20px;
    line-height: 55px;
  }

  .contact-form-main {
    padding: 55px;
  }

  .contact-form-main .main-title {
    margin-bottom: 25px;
  }

  .contact-form-inner {
    margin-top: 30px;
  }

  .how-help-bottom-main-wrapper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 100px;
  }

  .submenu-main-container {
    width: 800px;
  }



  .submenu-content .main-title {
    margin-bottom: 10px;
  }

  .home-partners-section.detail-page {
    padding-bottom: 90px;
  }

  .menu-ul li+li {
    margin-left: 20px;
  }

  .programmes-main-wrapper {
  padding: 90px 0;
}

.evoltion-slider-date{
	    font-size: 60px;
}

}

@media (max-width: 1400px) {
 
  .main-media-content h3{ 
      min-height: 45px;}
    
    
     
 


  .header .container {
    max-width: 90%;
  }

  .container {
    max-width: 84%;
  }

  .menu-ul li+li {
    margin-left: 18px;
  }

  .menu-ul a {
    font-size: 13px;
  }

  .right-txt {
    right: 2%;
  }

  .banner-top-text p {
    font-size: 16px;
    line-height: 20px;
  }

  .banner-top-content {
    bottom: 45px;
  }

  .home-about-content p {
    font-size: 17px;
    line-height: 25px;
  }

  .about-right-main {
    padding: 20px 25px;
  }

  .home-about-right ul li h3 {
    font-size: 20px;
  }

  p {
    font-size: 15px;
    line-height: 24px;
  }

  .our-imapact-section {
    padding: 70px 0px;
  }

  .main-title {
    font-size: 40px;
  }

  .impact-box p {
    font-size: 17px;
    line-height: 24px;
  }

  .our-impact-inner ul li {
    padding: 25px;
  }

  .impact-box h3 {
    font-size: 66px;
    line-height: 60px;
  }

  .home-programe-section {
    padding: 70px 0px 40px;
  }

  .programes-main-inner ul li a {
    padding: 20px 25px;
  }

  .programes-main-inner ul li p {
    font-size: 18px;
    line-height: 26px;
  }

  .programes-main-inner {
    margin-top: 25px;
  }

  .partner-slider-main {
    margin-top: 25px;
  }

  .home-partners-section {
    padding: 30px 0px 40px;
  }

  .home-video-section {
    padding: 50px 0 80px;
  }

  .home-news-publication-section {
    padding: 90px 0px 80px;
  }

  .main-home-news {
    margin-top: 80px;
  }

  .publication-first-content p {
    font-size: 19px;
    line-height: 26px;
    margin-top: 15px;
  }

  .publication-first-content {
    padding: 30px;
  }

  .corporate-governance-overview-inner .main-title {
    line-height: 65px;
    font-size: 55px;
  }

  .how-programmes-main-wrapper .main-title {
    line-height: 65px;
    font-size: 55px;
  }

  .programe-activities-box>ul>li:nth-child(1) {
    min-width: 250px;
    padding: 0 0 0 30px;
    justify-content: center;
  }

  .programe-activities-box>ul>li {
    padding: 0 25px;
  }

  .impact_list li p {
    width: calc(100% - 120px);
  }

  .impact_list li h5 {
    font-size: 40px;
  }

  .impact_para p {
    font-size: 15px;
    line-height: 24px;
  }
}

@media (max-width: 1350px) {
  .proposition-section-ul li {
    width: 18%;
  }

  .proposition-section-ul ul {
    row-gap: 30px;
  }

  .proposition-section-ul ul li:nth-child(even) {
    margin-top: 0;
  }

  .programme-msg-box {
    width: 90%;
    padding: 30px;
  }

  .home-partners-section.detail-page {
    padding-bottom: 60px;
  }

  .practice-gallery-section {
    width: 100%;
    padding: 50px 0 120px;
  }

  .programme-archivement-content p {
    margin-bottom: 15px;
  }
}

@media (max-width: 1250px) {
  .leader-ship-content {
    width: 75%;
  }

  .leader-ship-section {
    padding: 50px 0px 50px;
  }

  .proposition-section-ul {
    align-items: baseline;
  }

  .proposition-section-ul li {
    width: 20%;
  }

  .proposition-section-ul {
    row-gap: 30px;
  }

  .proposition-section-ul li:nth-child(even) {
    margin-top: 0;
  }

    .programmes-main-wrapper {
  padding: 80px 0;
}


}

@media (max-width: 1200px) {
  .menu-ul a {
    font-size: 14px;
  }

  .menu-ul li+li {
    margin-left: 20px;
  }

  .hme-about-section {
    padding: 70px 0px;
  }

  .home-about-content .main-title {
    line-height: 45px;
    margin-bottom: 20px;
  }

  p {
    font-size: 14px;
  }

  .impact-box h3 {
    font-size: 60px;
    line-height: 60px;
  }

  .our-impact-inner ul li {
    padding: 20px;
  }

  .impact-box p {
    font-size: 16px;
    line-height: 23px;
  }

  .impact-box h4 {
    font-size: 20px;
    line-height: 26px;
  }

  .green-btn {
    height: 45px;
    line-height: 45px;
    font-size: 13px;
  }

  .home-programe-section {
    padding: 65px 0px 35px;
  }

  .partner-slider .owl-nav button.owl-next,
  .partner-slider .owl-nav button.owl-prev {
    width: 40px;
    height: 40px;
  }

  .partner-slider .owl-nav button.owl-prev {
    left: -50px;
  }

  .partner-slider .owl-nav button.owl-next {
    right: -50px;
  }

  .home-video-main a::after {
    content: "";
    width: 60px;
    height: 60px;
    background-size: 100%;
  }

  .media-slider-style .owl-nav button.owl-next {
    right: -45px;
    top: -22px;
  }

  .publication-first-content {
    padding: 22px;
  }

  .publication-first-content p {
    font-size: 17px;
    line-height: 25px;
    margin-top: 14px;
  }

  .publication-first-content label {
    left: 22px;
  }

  .second-title {
    font-size: 30px;
    line-height: 30px;
  }

  .media-slider-style {
    margin-top: 15px;
  }

  .media-slider-style .owl-nav button.owl-prev {
    top: -22px;
  }

  .media-slider-style .owl-nav button.owl-next,
  .media-slider-style .owl-nav button.owl-prev {
    width: 30px;
    height: 30px;
  }

  .newsletter_form button {
    width: 140px;
    font-size: 13px;
  }

  .ouicklinks ul {
    row-gap: 15px;
  }

  .ouicklinks a {
    font-size: 14px;
  }

  .footer {
    padding: 90px 0 20px 0;
  }

  .newsletter_form input {
    padding: 0 24px;
    width: calc(100% - 140px);
  }

  .main-media-content p {
    margin-top: 10px;
    font-size: 16px;
    line-height: 22px;
  }

  .about-icon {
    width: 66px;
    height: 66px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
  }

  .team-first-section {
    padding: 80px 0 100px;
  }

  .founder-message {
    padding-left: 90px;
  }

  .founder-message h2 {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 20px;
  }

  .founder-message h4 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 10px;
  }

  .founder-image::after {
    content: "";
    width: 100px;
    height: 90px;
    bottom: -40px;
    right: -40px;
  }

  .team-second-section {
    padding: 70px 0px;
  }

  .team-list-main ul li {
    width: 23%;
  }

  .corporate-governance-img {
    border-radius: 10px 10px 0px 10px;
  }

  .corporate-governance-content h3 {
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 20px;
  }

  .corporate-governance-content a {
    max-width: 200px;
    margin-top: 30px;
  }

  .corporate-governance-wrapper ul {
    margin-top: 50px;
  }

  .anti-corruption-first-section {
    width: 100%;
    padding: 50px 0 30px;
  }

  .anti-corruption-message {
    padding: 35px 40px;
    margin-top: 40px;
  }

  .anti-corruption-message-title h4 {
    font-size: 22px;
    line-height: 20px;
  }

  .anti-corruption-message-title span {
    font-size: 15px;
    line-height: 22px;
  }

  .key-objects-section h2 {
    font-size: 85px;
    line-height: 80px;
  }

  .key-objects-section ul li span {
    content: "";
    width: 20px;
    height: 20px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background-color: #2a7cbb;
    position: absolute;
    left: -35px;
  }

  .key-objects-section ul li p span::after {
    content: "";
    width: 7px;
    height: 7px;
  }

  .anti-corruption-main-wrapper {
    padding: 70px 0px 70px;
  }

  .achivements-title h2 {
    font-size: 85px;
    line-height: 75px;
  }

  .achivements-title h4 {
    font-size: 33px;
    line-height: 35px;
  }

  .achivements-main-list ul {
    margin-left: -1%;
    margin-right: -1%;
  }

  .achivements-main-list ul li {
    width: 23%;
    margin-left: 1%;
    margin-right: 1%;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    padding: 25px 15px 20px;
    background-color: #fff;
  }

  .anti-corruption-main-wrapper .founder-message {
    padding-left: 70px;
  }

  .home-news-publication-section.governance-news {
    padding: 80px 0px;
  }

  .leader-ship-content p {
    font-size: 18px;
    line-height: 28px;
  }

  .leader-ship-inner-box-main {
    row-gap: 30px;
  }

  .programe-activities-section {
    padding: 25px 0px 0px;
  }

  .programe-activities-section h2 {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 15px;
  }

  .compatition-overview-inner {
    align-items: flex-start;
  }

  .corporate-governance-overview-inner p {
    margin-bottom: 25px;
  }

  .corporate-governance-overview {
    padding: 50px 0 80px;
  }

  .collabration-main-section ul {
    margin-top: 25px;
  }

  .corporate-governance-overview-inner .main-title {
    margin-bottom: 15px;
  }

  .governance-bottom-contact {
    margin-bottom: 55px;
  }

  .sub-banner {
    min-height: 300px;
  }

  .sub-banner h1 {
    font-size: 45px;
    line-height: 50px;
  }

  .howtowork-first-section {
    padding-top: 70px;
  }

  .how-to-get-video {
    margin-bottom: 45px;
  }

  .how-programmes-main-wrapper {
    padding: 45px 0 80px;
  }

  .programmes-box h3 {
    font-size: 22px;
    line-height: 28px;
  }

  .programmes-box h3 {
    margin-bottom: 20px;
  }

  .programmes-inner-main {
    margin-top: 30px;
  }

  .programmes-box ul li a {
    padding: 10px 40px 10px 20px;
  }

  .programmes-box ul li::after {
    right: 12px;
    top: 9px;
  }

  .programmes-inner-main {
    margin-left: -1%;
    margin-right: -1%;
  }

  .programmes-box {
    width: 31.3%;
    margin-left: 1%;
    margin-right: 1%;
  }

  .programmes-box {
    padding: 15px;
    padding-bottom: 90px;
  }

  .white-btn.blue-btn {
    bottom: 22px;
    left: 15px;
    height: 45px;
    line-height: 45px;
  }

  .overview-full-width {
    padding: 50px 0px 0px;
  }

  .project-aims-section {
    padding-top: 30px;
  }

  .project-aims-list {
    margin-top: 25px;
  }

  .project-aims-list li {
    padding: 30px 20px 15px;
  }

  .project-aims-section .green-btn {
    margin-bottom: 25px;
  }

  .main-media-content h3 {
    font-size: 15px;
    line-height: 22px;
    margin-top: 10px;
  }

  .event-slider-time {
    row-gap: 5px;
  }

  .event-slider-time {
    margin-top: 15px;
  }

  .recent-events-filter {
    padding-top: 35px;
  }

  .recent-events-filter-inner {
    padding-bottom: 35px;
  }

  .recent-events-section {
    padding: 55px 0px 80px;
  }

  .featured-event-first {
    padding: 20px 25px;
  }

  .featured-event-first .main-media-content h3 {
    font-size: 25px;
    line-height: 30px;
  }

  .recent-events-section-inner {
    margin-top: 20px;
  }

  .featured-event-first {
    margin-bottom: 40px;
  }

  .recent-events-section-inner ul {
    row-gap: 40px;
  }

  .events-detail-top-section {
    padding: 70px 0 20px;
  }

  .event-list-icon {
    width: 100px;
    height: 100px;
    padding: 20px;
  }

  .event-list-content h4 {
    font-size: 18px;
    line-height: 23px;
    margin-bottom: 10px;
  }

  .events-detail-text-section {
    padding: 35px 0px 55px;
  }

  .event-detail-content-social {
    margin-top: 30px;
  }

  .event-social-inner ul li {
    width: 70px;
    height: 70px;
  }

  .event-social-inner ul li a {
    font-size: 22px;
  }

  .event-social-inner ul {
    column-gap: 15px;
  }

  .event-social-inner label {
    font-size: 16px;
    line-height: 25px;
    width: 115px;
  }

  .event-detail-content-text {
    padding-left: 50px;
  }

  .related-news-section {
    padding: 60px 0 70px;
  }

  .news-filter-inner {
    padding-bottom: 25px;
  }

  .sub-banner.detail-page {
    padding-bottom: 25px;
  }

  .sub-banner .main-title {
    line-height: 40px;
  }

  .university-bottom-section {
    padding: 60px 0px 50px;
  }

  .university-collabration-slider {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }

  .university-report-slider {
    margin-top: 20px;
  }

  .university-slider1 {
    margin-top: 20px;
  }

  .owl-carousel.university-report-slider .owl-nav button.owl-prev,
  .owl-carousel.university-slider1 .owl-nav button.owl-prev,
  .owl-carousel.university-report-slider .owl-nav button.owl-next,
  .owl-carousel.university-slider1 .owl-nav button.owl-next {
    top: -30px;
  }

  .our-imapact-top-section {
    padding: 65px 0px;
  }

  .our-impact-list-main h3 {
    font-size: 22px;
    line-height: 30px;
  }

  .our-impact-list-main {
    margin-top: 25px;
  }

  .our-impact-list-main ul {
    margin-top: 25px;
  }

  .our-impact-list-main ul li {
    margin-bottom: 15px;
  }

  .our-imapact-section {
    padding: 60px 0px;
  }

  .our-impact-page-inner {
    margin-top: 25px;
  }

  .about-evolution-section.impact {
    padding: 65px 0px 70px;
  }

  .evolution-second-section.impact {
    margin-top: 35px;
  }

  .publication-filter-inner ul li {
    width: 48%;
  }

  .publication-list-section {
    padding: 30px 0px 70px;
  }

  .corporate-governance-wrapper .corporate-governance-content ul li {
    line-height: 35px;
    padding: 0px 20px;
    font-size: 12px;
  }

  .corporate-governance-wrapper .corporate-governance-content ul {
    margin-top: 15px;
  }

  .corporate-governance-content h3 {
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 10px;
  }

  .for-business-wrapper {
    padding: 55px 0px;
  }

  .compatition-overview {
    padding: 70px 0px 60px;
  }

  .compatition-overview-content h2 {
    font-size: 40px;
    line-height: 45px;
    margin-bottom: 15px;
  }

  .compatition-overview-img::after {
    content: "";
    width: 100px;
    height: 100px;
    bottom: -35px;
    right: -45px;
  }

  .compatition-overview-content {
    padding-left: 90px;
  }

  .compatition-overview-content p {
    margin-bottom: 10px;
  }

  .compatition-overview:nth-child(2n + 1) .compatition-overview-img::after {
    left: -45px;
  }

  .compatition-overview:nth-child(2n + 1) .compatition-overview-content {
    padding-left: 90px;
    padding-right: 0px;
  }

  .related-news-section.bussiness-related {
    padding-top: 110px;
  }

  .partner_popup .main-title {
    margin-bottom: 20px;
    line-height: 55px;
  }

  .partner_popup {
    padding: 40px;
    max-width: 90%;
  }

  .contact-form-main {
    padding: 50px;
  }

  .contact-form-main .main-title {
    margin-bottom: 20px;
  }

  .contact-form-inner {
    margin-top: 15px;
  }

  .contact-address h3 {
    font-family: "futura_stdheavy";
    margin-top: 30px;
    font-size: 25px;
  }

  .how-help-bottom-main-wrapper {
    padding-top: 40px;
    padding-bottom: 80px;
  }

  .help-bottom-content {
    padding: 40px 30px 40px;
  }

  .help-bottom-content h3 {
    margin-bottom: 10px;
  }

  .help-bottom-content .green-btn.darkblue {
    margin-top: 10px;
  }

  .submenu-main-container {
    padding: 30px;
    width: 660px;
  }

  .submenu-content {
    width: 60%;
    padding-right: 40px;
  }

  .submenu-list ul li a {
    font-size: 14px;
  }

  .submenu-list ul li {
    padding: 10px 0px;
  }

  .corporate-governance-overview-inner .main-title {
    line-height: 55px;
    font-size: 44px;
  }

  .how-programmes-main-wrapper .main-title {
    line-height: 55px;
    font-size: 44px;
  }

  .featured-event-first {
    margin-top: 20px;
  }

  .sub-banner.detail-page .date {
    font-size: 18px;
  }

  .menu-ul a {
    font-size: 12px;
  }

  .menu-ul li+li {
    margin-left: 10px;
  }

  .search-btn {
    margin-left: 10px;
  }

  .launguge-switch {
    margin-left: 15px;
  }

  .newsletter_form .submit {
    width: 120px;
  }

  .social_icons {
    width: 34%;
  }

      .programmes-main-wrapper {
  padding: 60px 0;
}

}

@media (max-width: 1040px) {

  .error-404,
  .search-page-inner,
  .search-noresult-inner {
    padding: 60px 30px;
  }

  .error-404 h1,
  .search-page h1,
  .search-noresult h1 {
    font-size: 24px;
  }

  .error-404 h4 {
    font-size: 16px;
  }

  .error-404 ul {
    margin: 0 0 0 24px;
  }

  .error-404 ul li {
    font-size: 14px;
    line-height: 20px;
  }

  .error-404 ul li+li {
    margin-top: 6px;
  }

  .error-404 h3 {
    margin: 15px 0 15px 0;
    font-size: 18px;
  }

  .error-404 .button {
    margin-top: 20px;
    height: 38px;
    line-height: 38px;
    padding: 0 15px;
    font-size: 12px;
  }

  .impact-box h3 {
    font-size: 48px;
    line-height: 45px;
  }

  .impact-box p {
    font-size: 15px;
    line-height: 23px;
  }

  .our-impact-inner ul {
    margin-left: -1%;
    margin-right: -1%;
  }

  .our-impact-inner ul li {
    width: 48%;
    min-height: 320px;
    margin-left: 1%;
    margin-right: 1%;
  }

  .programes-main-inner ul li {
    width: 48%;
  }

  .main-media-content p {
    margin-top: 5px;
    font-size: 13px;
    line-height: 18px;
  }

  .main-media-content span {
    font-size: 10px;
    line-height: 18px;
    font-weight: 400;
  }

  .second-title {
    font-size: 19px;
    line-height: 22px;
  }

  .media-slider-style {
    margin-top: 10px;
  }

  .media-slider-style .owl-nav button.owl-next,
  .media-slider-style .owl-nav button.owl-prev {
    width: 25px;
    height: 25px;
    background-size: 20px !important;
  }

  .media-slider-style .owl-nav button.owl-prev {
    top: -10px;
        right: 35px;
  }

  .media-slider-style .owl-nav button.owl-next {
          right: 0px;
    top: -10px;
  }

  .main-publication-slider-box {
    width: 64%;
    margin-left: 3.3%;
  }

  .main-media-image span {
    left: 10px;
 top: inherit;
		bottom: 10px;
    width: auto;
       display: inline-table;
  }

  .publication-first-content label {
    font-size: 9px;
    line-height: 16px;
    font-weight: 500;
    padding: 3px 9px 2px;
    display: inline-block;
    background-color: #f08700;
    color: #fff;
    left: 10px;
    top: 15px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    position: absolute;
    text-transform: uppercase;
  }

  .publication-first-content {
    padding: 10px;
  }

  .publication-first-content p {
    font-size: 15px;
    line-height: 21px;
    margin-top: 10px;
  }

  .home-about-right ul li h3 {
    font-size: 19px;
  }

  .menu-ul li+li {
    margin-left: 15px;
  }

  .right-txt {
    width: 10px;
    height: 180px;
    bottom: 40px;
    right: 3%;
  }

  @-webkit-keyframes expand {
    0% {
      bottom: 40px;
    }

    20% {
      bottom: 55px;
    }

    40% {
       bottom: 40px;
    }

    60% {
       bottom: 55px;
    }

    80% {
      bottom: 40px;
    }

    100% {
       bottom: 55px;
    }
  }

  .about-main-left-content {
    width: 100%;
    padding-right: 0;
  }

  .about-main-left-content p {
    max-width: inherit;
  }

  .about-main-right-content {
    width: 100%;
    padding-top: 15px;
  }

  .about-main-section-inner .main-title {
    margin-bottom: 15px;
  }

  .about-main-left-content h4 {
    font-size: 80px;
    line-height: 75px;
  }

  .about-main-section-inner {
    padding: 50px 0 50px;
  }

  .page-menu .page-menu-inner a {
    line-height: 45px;
    font-size: 13px;
  }

  .about-menu li a {
    padding: 0px 20px;
  }

  .page-menu {
    min-height: auto;
  }

  .value-box-content h3 {
    font-size: 35px;
    line-height: 40px;
    margin-bottom: 45px;
  }

  .value-box {
    min-height: 400px;
    padding: 30px;
  }

  .owl-carousel.value-slider .owl-nav button.owl-next {
    right: -45px;
  }

  .owl-carousel.value-slider .owl-nav button.owl-prev {
    left: -45px;
  }

  .evolution-second-section {
    margin-top: 45px;
  }

  .owl-carousel.evolution-slider .owl-nav button.owl-next,
  .owl-carousel.evolution-slider .owl-nav button.owl-prev {
    width: 40px;
    height: 40px;
  }

  .about-evolution-section {
    padding: 50px 0px 70px;
  }

  .team-second-section.white-bg {
    padding-bottom: 60px;
  }

  .partner-title-main .main-title {
    margin-bottom: 10px;
  }

  .partner-main-listing {
    padding: 80px 0px;
  }

  .partner-listing-wrap {
    margin-top: 25px;
  }

  .partner-bottom-contact {
    padding: 50px 0px;
  }

  .partner-bottom-contact-inner h3 {
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 10px;
  }

  .partner-main-nav ul li a {
    line-height: 40px;
    font-size: 16px;
  }

  .partner-listing-wrap ul li {
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
  }

  .partner-listing-wrap ul {
    row-gap: 15px;
  }

  .partner-main-listing {
    padding: 70px 0px;
  }

  .partner-bottom-contact-inner h3 {
    font-size: 25px;
    line-height: 25px;
    margin-bottom: 10px;
  }

  .partner-bottom-contact-inner p {
    font-size: 16px;
  }

  .partner-bottom-contact {
    padding: 40px 0px;
    -webkit-border-bottom-left-radius: 20px;
    -moz-border-bottom-left-radius: 20px;
    border-bottom-left-radius: 20px;
    -webkit-border-bottom-right-radius: 20px;
    -moz-border-bottom-right-radius: 20px;
    border-bottom-right-radius: 20px;
  }

  .partner-listing-wrap ul li {
    width: 31.3%;
  }

  .governance-overview-img {
    margin-left: 60px;
    margin-bottom: 30px;
    width: 100%;
    max-width: 268px;
  }

  .governance-overview-img::after {
    content: "";
    width: 75px;
    height: 75px;
    bottom: -30px;
    left: -32px;
    z-index: -1;
  }

  .corporate-governance-overview {
    padding: 50px 0 60px;
  }

  .governance-bottom-contact {
    margin-bottom: 50px;
  }

  .family-firm-bottom-section ul li h3 {
    font-size: 20px;
    line-height: 25px;
  }

  .recent-events-filter-inner ul li {
    width: 48%;
    margin-bottom: 15px;
  }

  .recent-events-filter-inner ul li:last-child {
    width: 48%;
  }

  .search-btn-new {
    width: 90px;
    border: none;
    height: 45px;
  }

  .new-filter2 {
    height: 45px;
    line-height: 45px;
    font-size: 16px;
  }

  .filter-search .new-filter2 {
    padding-right: 100px;
  }

  .team-second-section .main-title {
    margin-bottom: 20px;
  }

  .recent-events-filter-inner {
    padding-bottom: 15px;
  }

  .recent-events-filter {
    padding-top: 25px;
  }

  .recent-events-section {
    padding: 40px 0px 60px;
  }

  .recent-events-section-inner ul li {
    width: 48%;
    margin-left: 1%;
    margin-right: 1%;
  }

  .recent-events-section-inner ul {
    row-gap: 35px;
    margin-left: -1%;
    margin-right: -1%;
  }

  .recent-events-section-inner {
    margin-top: 15px;
  }

  .featured-event-first {
    margin-bottom: 35px;
  }

  .event-slider-date {
    background-position: left 10px top 3px;
  }

  .main-wrapper {
    -webkit-border-bottom-left-radius: 20px;
    -moz-border-bottom-left-radius: 20px;
    border-bottom-left-radius: 20px;
    -webkit-border-bottom-right-radius: 20px;
    -moz-border-bottom-right-radius: 20px;
    border-bottom-right-radius: 20px;
  }

  .nice-select {
    font-size: 16px;
    line-height: 45px;
    height: 45px;
  }

  .new-filter2 {
    font-size: 16px;
  }

  .select-filter label {
    width: 80px;
    /* line-height: 45px; */
    font-size: 16px;
  }

  .main-select {
    width: calc(100% - 80px);
  }

  .search-btn-new {
    width: 85px;
    border: none;
    height: 45px;
  }

  .main-media-content.news-content h3 {
    font-size: 16px;
  }

  .news-filter-inner ul li {
    width: 48%;
    margin-bottom: 15px;
  }

  .news-filter-inner ul li:last-child {
    width: 100%;
  }

  .news-detail-top-section {
    padding: 55px 0 30px;
  }

  .news-detail-top-section img {
    margin-top: 0px;
    margin-bottom: 30px;
  }

  .sub-banner.detail-page {
    padding-bottom: 15px;
  }

  .publication-filter-inner ul li {
    width: 48%;
  }

  .publication-filter-inner {
    padding-bottom: 40px;
  }

  .publication-list-section {
    width: 100%;
    padding: 30px 0px 65px;
  }

  .publication-list-btn {
    margin-top: 15px;
    column-gap: 10px;
  }

  .news-publication-top-section {
    padding: 65px 0 55px;
  }

  .news-publication-inner {
    padding: 25px 15px;
  }

  .news-publication-inner h3 {
    font-size: 25px;
    line-height: 28px;
  }

  .news-publication-top-left {
    width: 60%;
  }

  .news-publication-top-right {
    width: 40%;
    padding-left: 50px;
  }

  .career-overview {
    padding: 60px 0px;
  }

  .career-top-content {
    padding-left: 75px;
  }

  .career-top-content h2 {
    font-size: 35px;
    line-height: 40px;
    margin-bottom: 10px;
  }

  .faq-accordion-title {
    padding-left: 30px;
  }

  .faq-accordion-content {
    padding: 25px 30px 20px;
  }

  .career-top-content {
    padding-left: 0;
    width: 100%;
  }

  .help-bottom-content {
    padding: 25px 20px 25px;
  }

  .help-bottom-content h3 {
    font-size: 23px;
  }

  .team-first-section-inner {
    align-items: flex-start;
  }

  .team-list-main ul li {
    width: 31.3%;
  }

  /* .programe-activities-box>ul li:nth-child(1)::after {
    background-image: url(assets/images/after-new4.svg);
    background-repeat: no-repeat;
    right: -25px;
    top: 0px;
    background-position: right center;
    height: 90px;
  } */

  /* .programe-activities-box>ul>li {
    border-bottom: 1px solid #2a7cbb;
  }

  .programe-activities-box>ul {
    border-bottom: none;
    width: 100%;
  }
  .programe-activities-box>ul>li::after{
    display: none;
  }
  .programe-activities-box>ul>li {
    border-right:1px solid #2A7CBB ;
    width: 50%;
    min-width: auto;
    min-height: 100px;
  } */
  .programe-activities-box>ul>li:last-child {
    border-right: none;
  }

  .main-publication-slider {
    padding: 10px 0px;
  }

  .sub-banner.sub-banner-small h1 {
    text-align: center;
    width: 100%;
    display: inline-block;
  }

  .career-top-content {
    margin-top: 40px;
  }

  .programe-activities-box>ul>li:nth-child(1):after {
    right: -39px;
    top: 0;
    content: "";
    width: 40px;
    height: 100%;
    display: block;
    position: absolute;
    clip-path: polygon(50% 49%, 0 0, 0 100%);
    background-color: #2a7cbb;
    z-index: 99;
  }

  .programe-activities-box>ul>li:nth-child(1)::before {
    width: 125px;
    left: -2px;
  }

  .programe-activities-box>ul>li {
    width: 100%;
    max-width: 100%;
    min-height: 100px;
    border-top: 1px solid #2a7cbb;
  }

  /* .programe-activities-box>ul>li + li{
  border-left: 1px solid #2A7CBB;
} */
  .programe-activities-box>ul>li+li::before,
  .programe-activities-box>ul>li:nth-child(2):before {
    content: "";
    /* width: 50px; */
    width: 50px;
    height: 100%;
    background-image: url(assets/images/after-new1_3.svg);
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    z-index: -1;
    clip-path: none;
    background-color: transparent;
  }

  .programe-activities-box>ul {
    width: 100%;
  }

  .prg_image_list li .list_pic {
    padding: 30px 15px;
  }

  .leader-ship-content {
    width: 100%;
  }

  .leader-ship-content p+p {
    margin-top: 20px;
  }

  .leader-ship-content {
    padding: 55px 60px;
    order: 2;
  }

  .leader-ship-image {
    margin-bottom: 25px;
  }

  .achivements-main-list .three_col li {
    padding: 30px 40px 30px;
  }

  .prg_image_list li .list_pic {
    -webkit-border-radius: 10px 10px 10px 45px;
    -moz-border-radius: 10px 10px 10px 45px;
    border-radius: 10px 10px 10px 45px;
  }

  .programe-activities-box>ul>li>div {
    padding: 10px 0;
  }

  .prg_ach_top_set {
    flex-wrap: wrap;
  }

  .top_arch_para {
    width: 100%;
  }

  .top_ach_img {
    width: 20%;
    padding: 35px 20px;
    margin-top: 20px;
  }

  .programe-activities-box>ul>li:nth-child(1) {
    width: 100%;
    min-width: 100%;
  }

  .prg_imact_wraper {
    padding: 50px 0;
  }

  .impact_list li h5 {
    font-size: 35px;
  }

  .impact_list li p {
    width: calc(100% - 120px);
  }

  .proposition-section-ul {
    row-gap: 35px;
  }

  .proposition-section-ul li {
    width: 31.3%;
  }

  .proposition-section-ul li:nth-child(even) {
    margin-top: 0;
  }

  .programme-archivement-content .main-title {
    line-height: 50px;
    margin-bottom: 15px;
  }

  .programme-msg-section {
    width: 100%;
    padding: 50px 0 20px;
  }

  .programme-msg-box {
    width: 95%;
  }

  .programme-msg-section-inner {
    row-gap: 25px;
  }

  .programme-msg-box {
    border-radius: 20px 50px 20px 20px;
  }

  .home-partners-video {
    padding: 35px 0 40px;
  }

  .home-partners-section.detail-page {
    padding-bottom: 40px;
  }

  .practice-gallery-section {
    width: 100%;
    padding: 40px 0 90px;
  }

  .practice-gallery-section ul li {
    min-height: 350px;
  }

  	.mission_icon{
		 width: 100px;
	}
}
@media (max-width: 1024px){
	.home-about-right ul{
		row-gap:15px;
	}
	.home-about-right ul li{
		width:49%;
	}
}

@media (max-width: 1000px) {
  .menu-ul a {
    font-size: 18px;
    line-height: 24px;
  }

  .menu-ul li {
    text-align: center;
  }

  .menu-ul li+li {
    margin-left: 4%;
  }

  .site-logo {
    position: absolute;
    top: 15px;
    z-index: 99;
  }

  .header-options {
    margin-left: 0;
    position: absolute !important;
    right: 110px;
    display: flex;
    flex-direction: row-reverse;
  }

  .search-btn {
    margin-top: 4px;
  }

  .search-pannel {
    right: calc(100% + -58px);
  }

  .anti-corruption-second-section {
    padding-bottom: 50px;
  }

  .anti-corruption-main-wrapper {
    padding: 70px 0px 70px;
  }

  .achivements-title h2 {
    font-size: 85px;
    line-height: 75px;
  }

  .achivements-title h4 {
    font-size: 33px;
    line-height: 35px;
  }

  .achivements-title h2 {
    font-size: 70px;
    line-height: 70px;
  }

  .achivements-title h4 {
    font-size: 25px;
    line-height: 28px;
    letter-spacing: 10px;
  }

  .governance-bottom-contact-inner h3 {
    font-family: "futura_stdheavy";
    font-size: 29px;
    line-height: 35px;
  }

  .governance-bottom-contact {
    width: 100%;
    padding: 30px 0px;
    background-color: #89a386;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
  }

  .governance-bottom-contact-inner {
    padding-right: 190px;
  }

  .programmes-box {
    width: 100%;
  }

  .programmes-inner-main {
    row-gap: 25px;
  }

  .how-programmes-main-wrapper {
    padding: 25px 0 60px;
  }

  .student-progress-section ul li {
    width: 50%;
    margin-bottom: 65px;
  }

  .student-progress-section ul li:nth-child(2n) .progress-number {
    top: -40px;
    bottom: inherit;
  }

  .student-progress-section {
    padding: 90px 0px 50px;
  }

  .student-progress-section ul li:nth-child(2n) .progress-box {
    margin-bottom: 0px;
    margin-top: 15px;
    align-items: flex-end;
    padding-top: 25px;
    padding-bottom: 30px;
  }

  .main-media-content h3 {
    font-size: 14px;
    font-family: "futura_stdheavy";
    line-height: 20px;
    margin-top: 10px;
  }

  .event-slider-date {
    font-size: 12px;
    line-height: 20px;
  }

  .event-slider-location {
    font-size: 12px;
    line-height: 22px;
    background-position: left 10px top 3px;
  }

  .main-media-content span.events {
    font-size: 10px;
    line-height: 20px;
  }

  .event-slider-time {
    margin-top: 10px;
    width: 100%;
    column-gap: 10px;
    row-gap: 5px;
  }

  .main-events-slider {
    margin-bottom: 80px;
  }

  .related-news-section.bussiness-related {
    padding-top: 100px;
  }

  .related-news-section.bussiness-related {
    padding-top: 60px;
  }

  .menu-ul li.submenu:hover>.submenu-main-container {
    display: none;
  }

  .menu-ul li.submenu {
    padding-right: 0px;
    background-image: none;
  }

  .corporate-governance-overview-inner .main-title {
    line-height: 50px;
    font-size: 40px;
  }

  .how-programmes-main-wrapper .main-title {
    line-height: 50px;
    font-size: 40px;
  }

  .sub-banner.detail-page .date {
    font-size: 16px;
  }

  .compatition-overview:nth-child(2n + 1) .compatition-overview-content {
    padding-left: 40px;
    padding-right: 0px;
  }

      .evoltion-slider-date {
        min-height: 120px;
        line-height: 46px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 50px;
        padding-left: 0;
    }

    .evoltion-slider-content p{
         max-width: inherit;
    }

    .programme-objectictives-list ul li {
      -webkit-border-radius: 30px;
          border-radius: 30px;
    padding: 15px;
    }

    .programme-icon-content {
    padding: 0px 10px 0 10px;
}

  .sub-banner .main-title{
       font-size: 30px;
       line-height: 40px;
  }

  .for-business-wrapper ul {
     margin-top: 30px;
}

.sub-banner .main-title{
    margin-bottom: 20px;
}

.event-detail-content-text{
    padding: 0;
    padding-left: 50px;
}

.events-detail-text-section {
        padding: 35px 0px 0px;
    }

        .related-news-section {
        padding: 35px 0 40px;
    }

        .related-news-slider {
        margin-top: 20px;
    }

      .footer {
			        padding: 50px 0px 20px;
              margin-top: 0;
		}
}

@media (max-width: 767px) {

  .error-404,
  .search-page-inner,
  .search-noresult-inner {
    padding: 60px 15px;
  }

  .green-btn {
    height: 40px;
    line-height: 40px;
    font-size: 12px;
  }

  .main-events-slider {
    margin-bottom: 50px;
  }

  .white-btn {
    height: 40px;
    line-height: 40px;
    font-size: 12px;
  }

  .about-right-main {
    padding: 20px 20px;
  }

  .banner-top-text {
    padding: 10px 10px;
    width: calc(100% - 90px);
  }

  .banner-top-image {
    width: 100px;
    height: 100px;
  }

  .banner-top-text p {
    font-size: 14px;
    line-height: 18px;
  }

  .banner-top-text span {
    font-size: 10px;
    padding: 2px 10px;
  }

  .main-title {
    font-size: 35px;
    line-height: 40px;
  }

  .home-about-content .main-title {
    line-height: 36px;
    margin-bottom: 15px;
  }

  .hme-about-section {
    padding: 55px 0px;
  }

  .about-icon {
    width: 60px;
    height: 60px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
  }

  .our-imapact-section {
    padding: 55px 0px;
  }

  .our-impact-inner {
    margin-top: 15px;
  }

  .our-impact-inner ul li {
    min-height: 270px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
  }

  .impact-box h3 {
    font-size: 45px;
    line-height: 44px;
  }

  .impact-box h4 {
    font-size: 18px;
    line-height: 25px;
  }

  .home-programe-section {
    padding: 55px 0px 25px;
  }

  .programes-main-inner ul li {
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
  }

  .programes-main-inner {
    margin-top: 15px;
  }

  .programes-main-inner ul {
    row-gap: 12px;
  }

  .programes-main-inner ul li a {
    padding: 15px 20px;
  }

  .partner-slider-main {
    margin-top: 15px;
  }

  .partner-slider .owl-nav button.owl-next,
  .partner-slider .owl-nav button.owl-prev {
    width: 35px;
    height: 35px;
    background-size: 25px !important;
  }

  .partner-slider .owl-nav button.owl-next {
    right: -25px;
    top: 55%;
  }

  .partner-slider .owl-nav button.owl-prev {
    left: -25px;
    top: 55%;
  }

  .home-video-section {
    padding: 20px 0 60px;
  }

  .home-news-publication-section {
    padding: 55px 0px 55px;
  }

  .home-news-publication-section {
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
  }

  .main-publication-slider {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
  }

  .main-media-image span {
    padding: 0px 10px;
  }

  .main-media-content {
    padding-top: 10px;
  }

  .main-media-content span {
    font-size: 9px;
  }

  .publication-first-content span {
    font-size: 10px;
    font-weight: 400;
  }

  .programes-main-inner ul li p {
    font-size: 16px;
    line-height: 25px;
  }

  .hme-about-section-inner {
    flex-wrap: wrap;
  }

  .home-about-content {
    width: 100%;
    position: static;
  }

  .home-about-right {
    width: 100%;
    row-gap: 10px;
    margin-top: 35px;
  }

  .home-about-right ul li {
    width: 100%;
  }

  .home-about-right ul {
    width: 100%;
  }

  .site-logo {
    max-width: 80px;
  }

  .header.header-sticky .site-logo {
    max-width: 70px;
}

  .home-about-content-left {
    width: 100%;
  }

  .home-about-content .green-btn {
    position: static;
  }

  .home-about-right ul {
    flex-wrap: wrap;
    row-gap: 20px;
  }

  .about-right-main {
    min-height: auto;
  }

  .about-main-right-content p {
    margin-bottom: 10px;
  }

  .sub-banner h1 {
    font-size: 40px;
    line-height: 45px;
  }

  .breadcrumbs a {
    font-size: 16px;
  }

  .sub-banner {
    height: 400px;
    min-height: auto;
  }



  .value-box-content h3 {
    font-size: 33px;
    line-height: 35px;
    margin-bottom: 40px;
  }

  .owl-carousel.value-slider .owl-nav button.owl-next {
    right: -30px;
  }

  .owl-carousel.value-slider .owl-nav button.owl-prev {
    left: -30px;
  }

  .value-box-icon img {
    max-height: 65px;
  }

  .value-box {
    min-height: 370px;
    padding: 20px;
  }

  .evoltion-slider-date {
    min-height: 115px;
    line-height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 55px;
    padding-left: 20px;
  }

  .evoltion-slider-content {
    padding: 20px 15px 0px 20px;
  }

  .evoltion-slider-date::before {
    content: "";
    width: 35px;
    height: 121px;
  }

  .evolution-slider::before {
    top: 45px;
  }

  .evoltion-slider-date {
    font-size: 60px;
    line-height: 40px;
  }

  .founder-message h2 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 15px;
  }

  .founder-message {
    padding-left: 60px;
  }

  .founder-message h4 {
    font-size: 17px;
    line-height: 22px;
    margin-bottom: 10px;
  }

  .team-first-section {
    padding: 60px 0 80px;
  }

  .team-second-section {
    padding: 50px 0px;
  }

  .team-list-main ul li {
    width: 31.3%;
  }

  .team-list-hover {
    padding: 10px 10px 10px;
  }

  .team-list-hover-img {
    width: 70px;
    height: 70px;
    margin-bottom: 5px;
  }

  .team-list-hover h4 {
    font-size: 14px;
    line-height: 22px;
  }

  .partner-main-listing {
    padding: 60px 0px;
  }

  .partner-listing-wrap ul {
    row-gap: 12px;
  }

  .partner-bottom-contact-inner {
    width: 100%;
    padding-right: 0;
  }

  .partner-bottom-contact-inner .green-btn {
    position: static;
    margin-top: 20px;
  }

  .partner-bottom-contact-inner h3 {
    font-size: 21px;
    line-height: 28px;
  }

  .partner-bottom-contact-inner p {
    font-size: 15px;
  }

  .partner-main-listing {
    padding: 50px 0px;
  }

  .corporate-governance-content {
    padding: 10px 0px 10px 35px;
  }

  .corporate-governance-wrapper {
    padding: 50px 0px 80px;
  }

  .corporate-governance-content {
    padding: 15px 0px 15px 40px;
  }

  .corporate-governance-wrapper ul li {
    width: 95%;
  }

  .corporate-governance-wrapper ul li:nth-child(2n) {
    margin-left: 5%;
  }

  .corporate-governance-wrapper ul {
    margin-top: 35px;
  }

  .corporate-governance-content h3 {
    font-size: 20px;
    line-height: 27px;
    margin-bottom: 10px;
  }

  .corporate-governance-content a {
    max-width: 160px;
    margin-top: 20px;
  }

  .corporate-governance-wrapper {
    padding: 45px 0px 30px;
  }

  .corporate-governance-wrapper ul li:nth-child(2n) {
    margin-left: 0;
  }

  .corporate-governance-wrapper ul li {
    margin-bottom: 25px;
  }

  .main-wrapper {
    -webkit-border-bottom-left-radius: 20px;
    -moz-border-bottom-left-radius: 20px;
    border-bottom-left-radius: 20px;
    -webkit-border-bottom-right-radius: 20px;
    -moz-border-bottom-right-radius: 20px;
    border-bottom-right-radius: 20px;
  }

  .corporate-governance-wrapper .main-title {
    margin-bottom: 10px;
  }

  .corporate-governance-content {
    padding: 10px 0px 10px 30px;
  }

  .corporate-governance-img {
    width: 65%;
    margin: 0 auto;
    margin-bottom: 10px;
  }

  .corporate-governance-content {
    padding: 20px 0px 20px 0px;
    width: 100%;
    text-align: center;
  }

  .corporate-governance-wrapper ul li::after {
    width: 100%;
  }

  .corporate-governance-img {
    border-radius: 8px;
  }

  .corporate-governance-content a {
    display: inline-block;
  }

  .anti-corruption-second-section {
    padding-bottom: 35px;
  }

  .key-objects-section h2 {
    font-size: 70px;
    line-height: 65px;
  }

  .key-objects-section ul li {
    min-height: 100px;
    padding: 15px 30px 15px 55px;
  }

  .anti-corruption-main-wrapper {
    padding: 60px 0px 60px;
  }

  .achivements-main-list ul li {
    width: 48%;
    margin-bottom: 10px;
    padding: 20px 10px 20px;
  }

  .achivements-main-list-bottom {
    margin-top: 20px;
  }

  .achivements-main-wrapper {
    padding: 30px 0px 15px;
  }

  .anti-corruption-main-wrapper .founder-message {
    padding-left: 0;
  }

  .key-objects-section ul li {
    width: 95%;
  }

  .key-objects-section ul li:nth-child(2) {
    width: 90%;
  }

  .key-objects-section ul li:nth-child(3) {
    width: 85%;
  }

  .key-objects-section h2 {
    font-size: 60px;
    line-height: 60px;
  }

  .anti-corruption-main-wrapper {
    padding: 50px 0px 30px;
  }

  .achivements-title h2 {
    font-size: 50px;
    line-height: 55px;
  }

  .achivements-title h4 {
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 8px;
  }

  .anti-corruption-message p {
    color: #fff;
    font-size: 16px;
    line-height: 25px;
  }

  .anti-corruption-message {
    padding: 25px 25px;
    margin-top: 10px;
  }

  .anti-corruption-message {
    -webkit-border-radius: 10px 10px 25px 10px;
    -moz-border-radius: 10px 10px 25px 10px;
    border-radius: 10px 10px 25px 10px;
  }

  .anti-corruption-image-inner {
    -webkit-border-radius: 10px 20px 10px 10px;
    -moz-border-radius: 10px 20px 10px 10px;
    border-radius: 10px 20px 10px 10px;
  }

  .anti-corruption-play a {
    width: 55px;
    height: 55px;
    display: block;
    margin: 0 auto;
  }

  .anti-corruption-first-section {
    width: 100%;
    padding: 40px 0 20px;
  }

  .key-objects-section {
    padding-top: 10px;
  }

  .programe-activities-box ul li h4 {
    font-size: 16px;
    line-height: 18px;
  }

  /* .programe-activities-box>ul>li:nth-child(1)::after {
    right: -25px;
    width: 26px;
    background-size: 100%;
  }

  .programe-activities-box>ul>li {
    min-height: 85px;
    border-top: 1px solid #2A7CBB;
    border-bottom: 1px solid #2A7CBB;
    margin: 4px 0px;
  }

  .programe-activities-box>ul>li:nth-child(1) {
    min-width: 100%;
}
.programe-activities-box>ul{
      border-radius: 0;
      width: 100%;
}
  .programe-activities-box>ul>li::after {
    content: "";
    width: 100%;
    height: 89px;
    background-image: none;
    display: none;
  }

  .programe-activities-box>ul>li {
    padding:10px;
  } */
  .programe-activities-box>ul>li:nth-child(1) {
    min-height: auto;
    padding: 20px 0;
    width: 95%;
    min-width: 95%;
  }

  .programe-activities-box>ul>li>div {
    padding: 0;
    width: 100%;
  }

  .achivements-main-list .three_col li {
    width: 100%;
    padding: 30px;
  }

  .leader-ship-section {
    width: 100%;
    padding: 50px 0px 30px;
  }

  .leader-ship-inner-box {
    width: 100%;
  }

  .leader-ship-inner-box {
    -webkit-border-radius: 15px 20px 15px 15px;
    -moz-border-radius: 15px 20px 15px 15px;
    border-radius: 15px 20px 15px 15px;
    padding: 15px;
  }

  .leader-ship-content {
    width: 100%;
    padding: 30px;
  }

  .leader-ship-content p {
    font-size: 16px;
    line-height: 25px;
  }

  .leadership-message-title h4 {
    font-size: 20px;
    line-height: 25px;
  }

  .programe-activities-section h2 {
    font-size: 35px;
    line-height: 35px;
    margin-bottom: 10px;
  }

  .programe-activities-section-inner {
    margin-top: 30px;
  }

  .leader-ship-image {
    -webkit-border-radius: 10px 10px 10px 10px;
    -moz-border-radius: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;
  }

  .leader-ship-inner-box {
    width: 100%;
  }

  .leader-ship-image {
    margin-bottom: 15px;
  }

  .leader-ship-section {
    width: 100%;
    padding: 0px 0px 20px;
  }

  .programe-activities-section h2 {
    font-size: 28px;
    line-height: 35px;
    margin-bottom: 10px;
  }

  .programe-activities-box>ul>li {
    max-width: 100%;
    width: 95%;
    min-height: auto;
    border-top: 1px solid #2a7cbb;
    padding: 20px 30px;
  }

  .programe-activities-box>ul>li:last-child {
    border-bottom: 1px solid #2a7cbb;
  }

  .programe-activities-box>ul {
    border-radius: 0;
    border: none;
  }

  .programe-activities-box>ul>li:nth-child(1) {
    width: 95%;
    min-width: 95%;
    text-align: center;
  }

  .leader-ship-inner-box {
    text-align: center;
  }

  .governance-overview-img {
    margin: 0 auto;
    margin-bottom: 45px;
    float: none;
  }

  .corporate-governance-overview-inner {
    text-align: center;
  }

  .corporate-governance-overview-inner p {
    margin-bottom: 10px;
  }

  .corporate-governance-overview {
    padding: 50px 0 30px;
  }

  .collabration-main-section ul {
    margin-top: 20px;
  }

  .collabration-main-section {
    padding-bottom: 50px;
  }

  .collabration-main-section ul li {
    width: 48%;
    margin-bottom: 15px;
  }

  .governance-overview-img::after {
    content: "";
    width: 70px;
    height: 70px;
    position: absolute;
    background-image: url(assets/images/fonder-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    bottom: -25px;
    left: inherit;
    right: -33px;
    z-index: -1;
  }

  .governance-overview-img img {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
  }

  .corporate-governance-overview-inner .main-title {
    margin-bottom: 10px;
  }

  .governance-bottom-contact-inner {
    padding-right: 0;
    text-align: center;
  }

  .governance-bottom-contact-inner .green-btn {
    position: static;
    display: inline-block;
    margin-top: 20px;
  }

  .governance-bottom-contact-inner h3 {
    font-family: "futura_stdheavy";
    font-size: 24px;
    line-height: 30px;
  }

  .governance-bottom-contact {
    margin-bottom: 45px;
  }

  .governance-bottom-contact {
    padding: 20px 0px;
  }

  .howtowork-first-section {
    padding-top: 55px;
  }

  .play-btn {
    width: 55px;
  }

  .how-to-get-video {
    margin-bottom: 30px;
  }

  .programmes-inner-main {
    margin-top: 20px;
    row-gap: 20px;
  }

  .programmes-box h3 br {
    display: none;
  }

  .programmes-box ul {
    margin-top: 15px;
  }

  .family-firm-bottom-section {
    padding: 10px 0px 50px;
  }

  .family-firm-bottom-section ul li h3 {
    font-size: 16px;
    line-height: 22px;
  }

  .firm-img {
    padding: 10px 10px;
    min-height: 180px;
  }

  .governance-bottom-contact {
    margin-bottom: 40px;
  }

  .family-firm-bottom-section .main-title {
    margin-bottom: 20px;
  }

  .governance-overview-img.right {
    float: none;
    margin: 0 auto;
    margin-bottom: 50px;
  }

  .overview-full-width .main-title {
    margin-bottom: 15px;
  }

  .overview-full-width {
    padding: 45px 0px 0px;
    text-align: center;
  }

  .overview-full-width p {
    margin-bottom: 10px;
  }

  .project-aims-list li {
    padding: 20px 18px 15px;
    width: 100%;
    margin-bottom: 15px;
  }

  .project-aims-list li p {
    font-size: 18px;
    line-height: 28px;
  }

  .philanthropy-icon {
    max-height: 70px;
    margin-bottom: 20px;
    text-align: center;
  }

  .philanthropy-icon img {
    height: 70px;
  }

  .project-aims-section {
    text-align: center;
  }

  .project-aims-section {
    padding-top: 15px;
  }

  .project-aims-section p {
    margin-bottom: 10px;
  }

  .corporate-governance-overview-inner .main-title {
    line-height: 50px;
    font-size: 40px;
  }

  .governance-overview-img.right::after {
    width: 80px;
    height: 80px;
    bottom: -30px;
    right: -34px;
  }

  .margin-bottom-zero {
    margin-bottom: 0px !important;
  }

  .student-progress-section {
    padding: 70px 0px 40px;
  }

  .progress-number {
    width: 70px;
    height: 70px;
    font-size: 20px;
    border: 4px solid #89a386;
  }

  .student-progress-section {
    padding-top: 60px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
  }

  .event-slider-date {
    padding: 6px 10px;
    padding-left: 30px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    background-position: left 10px top 7px;
  }

  .event-slider-location{
    -webkit-border-radius: 10px;
       border-radius: 10px;
  }

  .event-slider-location {
    padding: 6px 10px;
    padding-left: 22px;
    background-position: left 8px top 9px;
  }

  .recent-events-filter-inner ul li {
    width: 100%;
    margin-bottom: 10px;
  }

  .recent-events-filter-inner ul li:last-child {
    width: 100%;
  }

  .featured-event-first {
    padding: 15px 20px;
  }

  .featured-event-first {
    min-height: 280px;
  }

  .featured-event-first .main-media-content h3 {
    font-size: 20px;
    line-height: 26px;
  }

  .events-detail-top-section {
    padding: 55px 0 20px;
  }

  .events-list-main ul li {
    width: 31%;
  }

  .event-list-content {
    margin-top: 10px;
  }

  .event-list-content h4 {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 5px;
  }

  .events-list-main ul {
    row-gap: 15px;
    justify-content: center;
  }

  .event-list-icon {
    width: 85px;
    height: 85px;
  }

  .events-detail-text-section {
    padding: 30px 0px 30px;
  }

  .event-detail-content-social {
    margin-top: 20px;
  }

  .event-social-inner ul {
    column-gap: 10px;
  }

  .event-social-inner ul li {
    width: 60px;
    height: 60px;
  }

  .event-social-inner label {
    font-size: 15px;
    line-height: 24px;
    width: 105px;
  }

  .corporate-governance-wrapper.gray-banner {
    padding: 50px 0px 40px;
  }

  .corporate-governance-wrapper .event-slider-location {
    padding: 6px 10px;
    padding-left: 23px;
    background-position: left 8px top 10px;
  }

  .corporate-governance-wrapper .event-slider-date {
    background-position: left 10px top 8px;
  }

  .corporate-governance-wrapper .event-slider-time {
    justify-content: center;
  }

  .corporate-governance-wrapper .corporate-governance-content {
    padding: 10px 0px 25px 0px;
  }

  .event-organizer {
    font-size: 12px;
    line-height: 23px;
  }

  .corporate-governance-wrapper.gray-banner h3 {
    margin-top: 15px;
  }

  .corporate-governance-wrapper .event-slider-location {
    font-size: 12px;
    line-height: 20px;
  }

  .related-news-section {
    padding: 40px 0 55px;
  }

  .event-detail-content-img {
    width: 100%;
    margin-bottom: 40px;
  }

  .event-detail-content-text {
    padding-left: 0;
    width: 100%;
  }

  .corporate-governance-wrapper.gray-banner {
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
  }

  .corporate-governance-wrapper.gray-banner .main-title {
    text-align: center;
  }

  .news-filter-inner ul li {
    width: 100%;
    margin-bottom: 15px;
  }

  .news-filter-inner {
    padding-bottom: 20px;
  }

  .main-media-content.news-content p {
    margin-top: 0;
    font-size: 13px;
    line-height: 20px;
  }

  .main-media-content.news-content h3 {
    margin-top: 10px;
    margin-bottom: 5px;
  }

  .main-media-content.news-content h3 {
    font-size: 15px;
  }

  .corporate-partner-full-section {
    padding: 55px 0;
  }

  .university-bottom-section {
    padding: 45px 0px 65px;
  }

  .owl-carousel.university-report-slider .owl-nav button.owl-prev,
  .owl-carousel.university-slider1 .owl-nav button.owl-prev,
  .owl-carousel.university-report-slider .owl-nav button.owl-next,
  .owl-carousel.university-slider1 .owl-nav button.owl-next {
    top: inherit;
    bottom: -45px;
  }

  .university-collabration-slider {
    padding-bottom: 60px;
  }

  .our-impact-page-inner ul li {
    width: 47%;
    min-height: 190px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    padding: 15px;
  }

  .our-impact-page-inner ul {
    row-gap: 13px;
  }

  .our-imapact-top-section {
    padding: 45px 0px;
  }

  .our-impact-list-main {
    margin-top: 20px;
  }

  .our-impact-list-main ul {
    margin-top: 20px;
  }

  .our-impact-list-main ul li {
    padding: 10px 10px;
  }

  .our-impact-list-main ul li {
    margin-bottom: 10px;
  }

  .our-impact-page-inner ul li {
    padding: 20px;
  }

  .about-evolution-section.impact {
    padding: 55px 0px 55px;
  }

  .evolution-second-section.impact {
    margin-top: 25px;
  }

  .publication-filter-inner ul li {
    width: 100%;
  }

  .publication-filter-inner {
    padding-bottom: 35px;
  }

  .publication-filter-inner ul {
    row-gap: 12px;
  }

  .publication-list-section {
    width: 100%;
    padding: 40px 0px 50px;
  }

  .publication-list-btn {
    margin-top: 8px;
    column-gap: 8px;
  }

  .publication-list-section .main-media-content p {
    font-size: 13px;
  }

  .news-publication-top-left {
    width: 100%;
  }

  .news-publication-top-right {
    width: 100%;
    padding-left: 0;
    margin-top: 25px;
  }

  .news-publication-top-section {
    padding: 55px 0 50px;
  }

  .news-publication-top-left img {
    margin: 25px 0;
  }

  .corporate-governance-wrapper .corporate-governance-content ul {
    justify-content: center;
  }

  .corporate-governance-wrapper ul li {
    margin-bottom: 0px;
  }

  .corporate-governance-wrapper .corporate-governance-content ul li {
    line-height: 22px;
    padding: 5px 20px;
  }

  .corporate-governance-img {
    margin-top: 20px;
  }

  .corporate-governance-wrapper ul {
    margin-top: 20px;
  }

  .for-business-wrapper {
    padding: 60px 0px;
  }

  .for-business-wrapper ul li .main-title {
    line-height: 45px;
  }

  .for-business-wrapper ul li .main-title {
    line-height: 45px;
  }

  .for-business-wrapper ul li {
    min-height: auto;
    margin-bottom: 25px;
    padding-bottom: 80px;
  }

  .for-business-wrapper ul li .green-btn {
    bottom: 30px;
  }

  .compatition-overview {
    padding: 50px 0px 50px;
  }

  .compatition-overview-content {
    padding-left: 0;
    width: 100%;
  }

  .compatition-overview-inner {
    justify-content: center;
    text-align: center;
  }

  .compatition-overview-img {
    width: 45%;
    margin-bottom: 30px;
  }

  .compatition-overview-img::after {
    content: "";
    width: 75px;
    height: 75px;
    bottom: -25px;
    right: -25px;
  }

  .compatition-overview:nth-child(2n + 1) .compatition-overview-content {
    padding-left: 0px;
    padding-right: 0;
  }

  .compatition-overview:nth-child(2n + 1) .compatition-overview-img::after {
    left: -25px;
  }

  .owl-carousel.related-news .owl-nav button.owl-prev,
  .owl-carousel.related-news .owl-nav button.owl-next {
    top: -35px;
  }

  .career-overview {
    padding: 50px 0px;
  }

  .faq-accordion-title {
    font-size: 22px;
    padding: 20px 25px;
    padding-right: 65px;
  }

  .upload-cv-btn {
    margin-top: 30px;
  }

  .career-list-main {
    padding-bottom: 75px;
  }

  .faq-accordion-title i {
    position: absolute;
    left: inherit;
    right: 20px;
    top: 22px;
  }

  .faq-accordion-title {
    font-size: 18px;
  }

  .career-list-main {
    padding-bottom: 55px;
  }

  .career-overview {
    padding: 45px 0px;
  }

  .career-list-top-main h3 {
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 10px;
  }

  .upload-cv-btn {
    margin-top: 25px;
  }

  .faq-accordion-content {
    padding: 25px 20px 20px;
  }

  .faq-accordion-content p {
    margin-bottom: 15px;
  }

  .faq-accordion-content ul {
    margin-top: 10px;
    margin-bottom: 20px;
  }

  .faq-accordion-content h4 {
    font-size: 16px;
    line-height: 20px;
  }

  .partner_popup .main-title {
    color: #fff;
    margin-bottom: 15px;
    line-height: 35px;
  }

  .partner_popup {
    padding: 20px;
    max-width: 96%;
  }

  .contact-form li {
    margin-bottom: 10px;
  }

  .contact-form .form-submit.green-btn {
    margin-top: 5px;
  }

  .contact-form-main {
    padding: 35px;
  }

  .contact-form-main .main-title {
    margin-bottom: 10px;
  }

  .contact-address h3 {
    font-family: "futura_stdheavy";
    margin-top: 26px;
    font-size: 20px;
  }

  .contact-address {
    width: 100%;
    padding: 45px 0;
  }

  .contact-form-main {
    padding: 20px;
    width: 100%;
    margin-top: 0px;
  }

  .contact-main-wrapper {
    padding-bottom: 55px;
  }

  .contact-address h3 {
    font-family: "futura_stdheavy";
    margin-top: 26px;
    font-size: 17px;
  }

  .address-box {
    margin-top: 15px;
  }

  .help-bottom-content {
    padding: 20px 20px 20px;
  }

  .how-help-bottom-main-wrapper ul li {
    width: 47%;
    margin-left: 1.5%;
    margin-right: 1.5%;
  }

  .how-help-bottom-main-wrapper {
    padding-top: 25px;
    padding-bottom: 40px;
  }

  .how-help-bottom-main-wrapper ul li {
    width: 100%;
    margin-bottom: 20px;
  }

  .home-partners-section.detail-page {
    padding-bottom: 70px;
  }

  .home-partners-section.detail-page {
    padding-bottom: 40px;
  }

  .featured-event-first {
    margin-top: 0px;
  }

  .team-second-section .main-title {
    margin-bottom: 15px;
  }

  .founder-image {
    width: 60%;
    margin: 0 auto;
    margin-bottom: 40px;
  }

  .founder-message {
    padding-left: 0;
    width: 100%;
    text-align: center;
  }

  .career-top-content {
    margin-top: 0;
  }

  .prg_image_list li {
    width: 22%;
  }

  .leader-ship-content h3 {
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 15px;
  }

  .prg_image_list {
    row-gap: 15px;
  }

  .achivements-main-wrapper .center_para p {
    margin-top: 20px;
  }

  .prg_image_list_sec {
    padding-top: 40px;
  }

  .prg_image_list.more_list li {
    width: 22%;
  }

  .prg_image_list.more_list li .list_pic {
    padding: 30px 15px;
  }

  .achivements-main-list .three_col ul {
    row-gap: 15px;
  }

  .impact_list li h5 {
    font-size: 30px;
  }

  .impact_list li .impact_num {
    width: 100px;
    height: 100px;
  }

  .impact_list li p {
    max-width: 100%;
    width: calc(100% - 100px);
    padding-left: 25px;
    font-size: 15px;
  }

  .impact_list li {
    width: 100%;
  }

  .prg_imact_wraper {
    padding: 0 0 30px 0;
  }

  .impact_para p {
    font-size: 15px;
    line-height: 20px;
    margin: 20px 0 40px 0;
  }

  .top_ach_img {
    width: 30%;
  }

  .programe-activities-box>ul>li>div ul li {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 5px;
  }

  .programe-activities-box>ul>li p span {
    position: absolute;
    left: 0;
  }

  .programe-activities-box>ul>li p {
    padding-left: 30px;
  }

  .programe-activities-box .multi_row {
    flex-wrap: wrap;
    margin-bottom: 0px;
  }

  .programe-activities-box .multi_row p {
    margin-bottom: 10px;
  }

  .programe-activities-box .multi_row p {
    width: 100%;
  }

  .programe-activities-box .multi_row p+p {
    margin-left: 0;
  }

  .programe-activities-box>ul>li::after,
  .programe-activities-box>ul>li+li::before,
  .programe-activities-box>ul>li:nth-child(2):before {
    display: none;
  }

  .programe-activities-box>ul>li>div ul li::before {
    top: 7px;
  }

  .leader-ship-image img {
    width: 100%;
    -webkit-border-radius: 15px 15px 15px 40px;
    -moz-border-radius: 15px 15px 15px 40px;
    border-radius: 15px 15px 15px 40px;
  }

  .programme-objectictives-list ul li {
    width: 100%;
  }

  .programme-objectictives-list ul {
    row-gap: 10px;
  }

  .programme-objectictives-bottom {
    width: fit-content;
    margin: 0 auto;
    margin-top: 20px;
    background-color: #094278;
    padding: 15px 20px;
    -webkit-border-radius: 12px 20px 12px 20px;
    -moz-border-radius: 12px 20px 12px 20px;
    border-radius: 12px 20px 12px 20px;
  }

  .programme-archivement-img {
    width: 100%;
  }

  .programme-archivement-inner {
    padding-left: 5% !important;
    padding-right: 5% !important;
  }

  .programme-archivement-content {
    width: 100%;
    padding-left: 0;
    padding-top: 25px;
  }

  .programme-archivement-content .main-title {
    line-height: 40px;
    margin-bottom: 15px;
  }

  .programme-archivement-content p {
    margin-bottom: 10px;
  }

  .programme-msg-section {
    width: 100%;
    padding: 10px 0 10px;
  }

  .programme-msg-box {
    border-radius: 15px 25px 15px 15px;
    width: 100%;
    flex-direction: column-reverse;
  }

  .programme-msg-content {
    width: 100%;
    margin-top: 15px;
  }

  .programme-msg-img {
    padding-left: 0;
    width: 100%;
    text-align: center;
  }

  .programme-msg-img-main {
    width: 100%;
    max-width: 200px;
    overflow: hidden;
    margin: 0 auto;
    -webkit-border-radius: 15px 15px 15px 30px;
    -moz-border-radius: 15px 15px 15px 30px;
    border-radius: 15px 15px 15px 30px;
  }

  .programme-msg-box {
    padding: 15px;
  }

  .home-partners-section.detail-page {
    padding-bottom: 20px;
  }

  .home-partners-section.detail-page .main-title.text-left {
    margin-bottom: 10px;
  }

  .home-partners-video {
    padding: 25px 0 25px;
  }

  .practice-gallery-section ul li {
    min-height: 300px;
  }

  .practice-gallery-section {
    width: 100%;
    padding: 30px 0 75px;
  }

  .programme-objectictives-list ul li {
    border-radius: 15px;
  }

  .programme-icon {
    width: 75px;
    height: 75px;
  }

  .programme-icon img {
    width: 100%;
  }

  .programme-objectictives-list ul li {
    align-items: flex-start;
  }

  .programme-icon-content {
    width: calc(100% - 75px);
    padding: 0px 20px 0 15px;
  }

  .programme-objectictives-bottom {
    padding: 10px 15px;
  }

  .programme-archivement-content .main-title {
    line-height: 32px;
    margin-bottom: 10px;
  }

  .programme-msg-img-title h4 {
    font-size: 17px;
    line-height: 25px;
  }

  .home-partners-section.detail-page {
    padding-bottom: 10px;
  }

  .partner-slider .item {
    min-height: 120px;
    padding: 10px;
  }

  .practice-gallery-section ul li {
    min-height: 230px;
  }

  .programme-msg-section-inner {
    row-gap: 15px;
  }

  .programme-objectictives-section {
    padding: 50px 0;
  }

  .programme-objectictives-first .main-title {
    margin-bottom: 15px;
  }

  .compatition-overview:nth-child(even) .compatition-overview-content {
    padding-left: 0px;
    padding-right: 0px;
  }

  .ouicklinks {
    max-width: inherit;
  }

        .programmes-main-wrapper {
  padding: 50px 0;
}

.event-detail-content-text{
     padding: 0;
}

.for-business-wrapper ul {
     margin-top: 30px;
}

.main-media-content span.events {
	  left: 10px;
	  top: 10px;
}

.contact-form li input,
.contact-form .nice-select,
.contact-form li textarea{
     font-size: 16px;
}

}

@media (max-width: 680px) {

  .search-page .image,
  .search-page .content {
    width: 100%;
  }

  .home-about-content p {
    font-size: 15px;
    line-height: 23px;
  }

  .main-title {
    font-size: 30px;
    line-height: 40px;
  }

  .home-about-content .green-btn {
    margin-top: 10px;
  }

  .about-right-main {
    min-height: auto;
  }

  .home-about-right ul {
    flex-wrap: wrap;
  }

  .family-firm-bottom-section {
    padding: 10px 0px 40px;
  }

  .home-about-right ul {
    row-gap: 10px;
    width: 100%;
    margin-left: 0px;
    margin-right: 0;
  }

  .home-about-right ul li {
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    margin-left: 0px;
    margin-right: 0;
  }

  .our-imapact-section {
    padding: 45px 0px;
  }

  .our-impact-inner ul li {
    min-height: 210px;
  }

  .impact-box h3 {
    font-size: 35px;
    line-height: 40px;
    margin-bottom: 5px;
  }

  .how-help-bottom-main-wrapper {
    padding-top: 10px;
    padding-bottom: 30px;
  }

  .our-impact-inner ul li {
    padding: 13px;
            -webkit-border-radius: 8px;
        -moz-border-radius: 8px;
        border-radius: 8px;
  }

  .impact-box p {
    font-size: 14px;
    line-height: 20px;
  }

  .our-impact-inner {
    margin-top: 10px;
  }

  .our-impact-inner ul {
    row-gap: 8px;
  }

  .home-programe-section {
    padding: 40px 0px 20px;
  }

  .programes-main-inner ul li a {
    padding: 10px 13px;
  }

  .programes-main-inner ul li p {
    font-size: 14px;
    line-height: 20px;
  }

  .programes-main-inner {
    margin-top: 10px;
  }

  .programes-main-inner ul {
    row-gap: 8px;
  }

  .partner-slider-main {
    margin-top: 10px;
  }

  .partner-slider .owl-nav button.owl-next {
    right: -15px;
    top: 60%;
  }

  .partner-slider .owl-nav button.owl-prev {
    left: -15px;
    top: 60%;
  }

  .partner-slider .owl-nav button.owl-next,
  .partner-slider .owl-nav button.owl-prev {
    width: 30px;
    height: 30px;
    background-size: 20px !important;
  }

  .help-bottom-content h3 {
    font-size: 20px;
  }

  .help-bottom-content {
    padding: 15px 15px 15px;
  }

  .help-bottom-content .green-btn.darkblue {
    margin-top: 5px;
  }

  .home-video-section {
    padding: 15px 0 45px;
  }

  .home-news-publication-section {
    padding: 45px 0px 45px;
  }

  .main-publication-slider {
    border: none;
  }

  .main-publication-first-image {
    width: 100%;
    margin-bottom: 35px;
  }

  .main-publication-slider-box {
    width: 100%;
    margin-left: 0;
  }

  .media-slider-style .owl-nav button.owl-prev {
    right: 36px;
  }

  .media-slider-style .owl-nav button.owl-next {
    right: 0px;
  }

  .main-home-news {
    margin-top: 45px;
  }

  .container {
    max-width: 90%;
  }

  .hme-about-section {
    padding: 50px 0px;
  }

  .home-video-main a::after {
    content: "";
    width: 45px;
    height: 45px;
    top: 40%;
    background-size: 100%;
  }

  .tp-bullets.hesperiden {
    transform: translate(-25px, -50px) !important;
  }

  .banner-top-content {
    bottom: 20px;
  }

  .rs-parallax-wrap {
    padding-left: 5% !important;
  }

  .green-btn {
    height: 40px;
    line-height: 40px;
    font-size: 12px;
    padding: 0px 22px;
  }

  .impact-box h4 {
    font-size: 16px;
    line-height: 22px;
  }

  .green-btn {
    height: 36px;
    line-height: 36px;
    margin-top: 5px;
  }

  .white-btn {
    height: 35px;
    line-height: 37px;
    font-size: 12px;
  }

  .header-options {
    margin-left: 0;
    position: absolute !important;
    right: 95px;
    display: flex;
    flex-direction: row-reverse;
  }

  .search-pannel {
    right: calc(100% + -62px);
  }

  .search-btn {
    margin-top: 4px;
  }

  .page-menu .page-menu-inner a {
    line-height: 40px;
    font-size: 12px;
  }

  .page-menu .page-menu-inner li.active a::after {
    border-width: 0px 6px 6px 6px;
    bottom: 3px;
  }

  .about-main-left-content h4 {
    font-size: 50px;
    line-height: 50px;
  }

  .value-box {
    min-height: 330px;
    padding: 30px;
  }

  .owl-carousel.value-slider .owl-nav button.owl-next {
    display: none;
  }

  .owl-carousel.value-slider .owl-nav button.owl-prev {
    display: none;
  }

  .about-main-right-content {
    padding-top: 10px;
  }

  .value-box-content h3 {
    font-size: 30px;
    line-height: 32px;
    margin-bottom: 30px;
  }

  .value-box-icon {
    min-height: 80px;
  }

  .evoltion-slider-content p {
    max-width: 100%;
  }

  .evoltion-slider-date {
    padding-left: 30px;
  }

  .evoltion-slider-content {
    padding: 20px 15px 0px 30px;
  }

  .evolution-second-section {
    margin-top: 35px;
  }

  .about-evolution-section {
    padding: 45px 0px 60px;
  }

  .founder-image {
    width: 70%;
    margin: 0 auto;
    margin-bottom: 30px;
  }

  .team-first-section {
    padding: 45px 0 50px;
  }

  .founder-message {
    padding-left: 0;
    width: 100%;
    text-align: center;
  }

  .founder-image::after {
    content: "";
    width: 75px;
    height: 70px;
    bottom: -30px;
    right: -32px;
  }

  .founder-message h2 {
    font-size: 25px;
    line-height: 36px;
    margin-bottom: 10px;
  }

  .founder-message h4 {
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 8px;
  }

  .team-second-section {
    padding: 45px 0px;
  }

  .team-list-main ul li {
    width: 48%;
  }

  .team-list-main {
    margin-top: 25px;
  }

  .team-list-main ul {
    row-gap: 10px;
  }

  .team-second-section.white-bg {
    padding-bottom: 40px;
  }

  .partner-listing-wrap ul li {
    width: 48%;
  }

  .partner-full-section {
    padding-top: 30px;
  }

  .partner-main-nav {
    margin-bottom: 30px;
  }

  .partner-listing-wrap ul {
    row-gap: 10px;
  }

  .partner-main-nav ul li:last-child {
    margin-right: 0px;
  }

  .corporate-governance-wrapper ul li {
    width: 100%;
  }

  .corporate-governance-wrapper ul li:last-child::after {
    display: none;
  }

  .home-news-publication-section.governance-news {
    padding: 60px 0px;
  }

  .key-objects-section ul li {
    width: 100%;
  }

  .key-objects-section ul li:nth-child(2),
  .key-objects-section ul li:nth-child(3) {
    width: 100%;
  }

  .anti-corruption-message {
    padding: 20px 20px;
    width: 100%;
    margin-top: 10px;
  }

  .anti-corruption-message p {
    color: #fff;
    font-size: 15px;
    line-height: 24px;
  }

  .anti-corruption-message-title h4 {
    font-size: 19px;
    line-height: 20px;
    margin-bottom: 5px;
  }

  .anti-corruption-message-title span {
    font-size: 13px;
    line-height: 20px;
  }

  .anti-corruption-image {
    width: 70%;
    margin: 0 auto;
  }

  .anti-corruption-second-section-inner {
    flex-direction: column-reverse;
    margin-bottom: 15px;
  }

  .key-objects-section h2 {
    font-size: 45px;
    line-height: 45px;
  }

  .key-objects-section ul {
    position: relative;
    margin-top: -15px;
  }

  .key-objects-section ul li {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
  }

  .key-objects-section ul li {
    min-height: auto;
    padding: 10px 15px 10px 45px;
  }

  .anti-corruption-play {
    margin-top: 10px;
  }

  .leadership-message-title h4 {
    font-size: 18px;
    line-height: 25px;
  }

  .leadership-message-title {
    margin-left: inherit;
    margin-top: 8px;
    width: 100%;
  }

  .leader-ship-content p {
    font-size: 15px;
    line-height: 24px;
  }

  .leader-ship-image {
    width: 48%;
    margin-bottom: 10px;
  }

  .how-to-get-video {
    margin-bottom: 25px;
  }

  .corporate-governance-overview {
    padding: 40px 0 25px;
  }

  .family-firm-bottom-section ul li {
    width: 60%;
  }

  .firm-img {
    min-height: 120px;
  }

  .project-aims-list li p {
    font-size: 17px;
    line-height: 26px;
  }

  .governance-bottom-contact-inner .green-btn {
    margin-top: 15px;
  }

  .events-list-main ul li {
    width: 48%;
  }

  .events-detail-top-section {
    padding: 45px 0 15px;
  }

  .event-list-content h4 {
    font-size: 15px;
    line-height: 18px;
    margin-bottom: 5px;
  }

  .event-list-icon {
    width: 75px;
    height: 75px;
  }

  .event-detail-content-img .green-btn {
    margin-top: 20px;
  }

  .event-detail-content-img {
    margin-bottom: 25px;
  }

  .event-detail-content-text p {
    margin-bottom: 10px;
  }

  .event-detail-content-social {
    justify-content: left;
  }

  .event-social-inner ul li {
    width: 50px;
    height: 50px;
  }

  .event-social-inner ul li a {
    font-size: 18px;
  }

  .events-detail-text-section {
    padding: 30px 0px 0px;
  }

  .corporate-governance-wrapper.gray-banner {
    padding: 40px 0px 20px;
  }

  .corporate-governance-wrapper.gray-banner ul {
    margin-top: 20px;
  }

  .related-news-section {
    padding: 30px 0 40px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
  }

  .related-news-slider {
    margin-top: 15px;
  }

  .owl-carousel.related-news .owl-nav button.owl-prev,
  .owl-carousel.related-news .owl-nav button.owl-next {
    top: -25px;
  }

  .news-detail-top-section {
    padding: 45px 0 20px;
  }

  .news-detail-top-section p {
    margin-bottom: 20px;
  }

  .news-publication-top-left img {
    margin: 10px 0 15px;
  }

  .news-publication-inner h3 {
    font-size: 22px;
    line-height: 24px;
  }

  .for-business-wrapper {
    padding: 50px 0px 50px;
  }

  .for-business-wrapper ul li {
    padding: 25px;
    padding-bottom: 65px;
  }

  .for-business-wrapper ul li .green-btn {
    bottom: 25px;
  }

  .for-business-wrapper ul li .main-title {
    line-height: 40px;
  }

  .for-business-wrapper ul li {
    width: 100%;
    padding: 20px;
    margin-bottom: 15px;
    padding-bottom: 65px;
  }

  .for-business-wrapper ul li .green-btn {
    margin-top: 10px;
    min-width: 175px;
    text-align: center;

  }

  .for-business-wrapper {
    padding: 45px 0px 40px;
  }

  .compatition-overview-content h2 {
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 15px;
  }

  .compatition-overview {
    padding: 45px 0px 40px;
  }

  .compatition-overview-img {
    width: 60%;
    margin: 0 auto;
    margin-bottom: 35px;
  }

  .compatition-overview-img::after {
    content: "";
    width: 65px;
    height: 65px;
    bottom: -20px;
    right: -20px;
  }

  .compatition-overview:nth-child(2n + 1) .compatition-overview-img::after {
    left: -20px;
  }

  .related-news-section.bussiness-related {
    padding-top: 45px;
  }

  .faq-accordion-content p {
    font-size: 15px;
  }

  .governance-overview-img {
    max-width: 300px;
    margin-top: 20px;
  }

  .sub-banner {
    background-position: center;
  }

  .sub-banner .main-title {
    line-height: 28px;
  }

  .sub-banner.detail-page .date {
    font-size: 14px;
  }

  .sub-banner.detail-page p {
    font-size: 14px;
  }

  .sub-banner.detail-page {
    min-height: 350px;
  }

  .sub-banner.detail-page .main-title {
    line-height: 26px;
    font-size: 20px;
  }

  .event-name {
    margin-bottom: 10px;
  }

  .detail-page .white-btn {
    height: 38px;
    line-height: 38px;
    font-size: 11px;
    margin-top: 5px;
  }

  .proposition-section-ul li {
    width: 48%;
  }

  .proposition-section-ul {
    row-gap: 30px;
  }

  .proposition-section-ul li:nth-child(even) {
    margin-top: 0;
  }

  .recent-events-section-inner ul li{
        width: 100%;
  }

  .event-slider-date{
    background-position: left 10px top 8px;
  }
}

@media (max-width: 480px) {
  .newsletter_form button {
    width: 120px;
    font-size: 12px;
  }

  .newsletter_form input {
    padding: 0 20px;
    width: calc(100% - 120px);
    height: 42px;
  }

  .header-options {
    right: 80px;
  }

  .sub-banner h1 {
    font-size: 35px;
    line-height: 35px;
  }

  .partner-main-nav ul li a {
    line-height: 35px;
    font-size: 15px;
  }

  .partner-main-nav ul li {
    margin-right: 30px;
  }

  .partner-main-nav ul li:last-child {
    margin-right: 0px;
  }

  .sub-banner h1 {
    font-size: 30px;
    line-height: 35px;
  }

  .page-menu {
    -webkit-border-bottom-left-radius: 20px;
    -moz-border-bottom-left-radius: 20px;
    border-bottom-left-radius: 20px;
    -webkit-border-bottom-right-radius: 20px;
    -moz-border-bottom-right-radius: 20px;
    border-bottom-right-radius: 20px;
  }

  .corporate-governance-content {
    padding: 10px 0px 20px 0px;
  }

  .corporate-governance-content a {
    margin-top: 10px;
  }

  .home-news-publication-section.governance-news {
    padding: 50px 0px;
  }

  .anti-corruption-message {
    padding: 15px 15px;
    width: 100%;
    margin-top: 20px;
  }

  .anti-corruption-message-title h4 {
    font-size: 17px;
    line-height: 18px;
    margin-bottom: 5px;
  }

  .achivements-title h2 {
    font-size: 35px;
    line-height: 40px;
  }

  .achivements-title h4 {
    font-size: 15px;
    line-height: 18px;
    letter-spacing: 7px;
  }

  .achivements-main-list ul li {
    width: 100%;
    margin-bottom: 10px;
    padding: 15px 10px 15px;
  }

  .achivements-main-list-bottom {
    margin-top: 10px;
  }

  .anti-corruption-second-section {
    padding-bottom: 25px;
  }

  .achivements-main-list {
    margin-top: 30px;
  }

  .achivements-main-wrapper {
    padding: 40px 0px 40px;
  }

  .collabration-main-section {
    padding-bottom: 30px;
  }

  .collabration-main-section ul li {
    min-height: 120px;
    padding: 15px;
    border: 1px solid #e3e3e3;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
  }

  .collabration-main-section ul {
    margin-top: 13px;
  }

  .collabration-main-section ul li {
    margin-bottom: 10px;
  }

  .howtowork-first-section {
    padding-top: 45px;
  }

  .governance-bottom-contact {
    margin-bottom: 30px;
  }

  .governance-overview-img.right::after {
    width: 65px;
    height: 65px;
    bottom: -22px;
    right: -22px;
  }

  .governance-overview-img.right {
    margin-bottom: 40px;
  }

  .governance-overview-img::after {
    width: 65px;
    height: 65px;
    bottom: -22px;
    right: -22px;
  }

  .student-progress-section ul li {
    width: 100%;
    margin-bottom: 65px;
  }

  .progress-box {
    width: calc(100% - 20px);
    margin-bottom: 10px;
    min-height: auto;
    padding-top: 50px;
  }

  .student-progress-section ul li:nth-child(2n) .progress-box {
    margin-top: 10px;
    padding-top: 50px;
  }

  .event-slider-date {
    font-size: 10px;
    line-height: 14px;
  }

  .event-slider-location {
    font-size: 10px;
  }

  .main-media-content h3 {
    font-size: 13px;
  }

  .featured-event-first {
    padding: 15px 15px;
  }

  .featured-event-first {
    margin-bottom: 30px;
  }

  .recent-events-section-inner {
    margin-top: 10px;
  }

  .recent-events-section-inner ul {
    row-gap: 25px;
  }

  .recent-events-section {
    padding: 40px 0px 50px;
  }

  .event-slider-date {
    padding: 9px 10px;
    padding-left: 30px;
  }

  .corporate-governance-wrapper .event-slider-location {
    font-size: 11px;
    line-height: 20px;
  }

  .related-news-section .main-title {
    padding-right: 0;
  }

  .owl-carousel.related-news .owl-nav button.owl-prev,
  .owl-carousel.related-news .owl-nav button.owl-next {
    top: inherit;
    bottom: -30px;
  }

  .related-news-section {
    padding-bottom: 70px;
  }

  .events-list-main ul {
    row-gap: 10px;
  }

  .corporate-partner-full-section {
    padding: 45px 0;
  }

  .main-title {
    font-size: 25px;
    line-height: 30px;
  }

  .our-impact-list-main ul li {
    width: 100%;
  }

  .our-impact-list-main h3 {
    font-size: 19px;
    line-height: 26px;
  }

  .our-impact-page-inner ul li {
    min-height: auto;
  }

  .evolution-second-section.impact {
    margin-top: 20px;
  }

  .evoltion-slider-date {
    font-size: 50px;
    line-height: 35px;
  }

  .corporate-governance-wrapper {
    padding: 30px 0px 25px;
  }

  .corporate-governance-content a {
    margin-top: 15px;
  }

  .corporate-governance-img {
    margin-top: 20px;
  }

  .for-business-wrapper ul li .main-title {
    line-height: 35px;
  }

  .for-business-wrapper ul li .main-title {
    margin-bottom: 10px;
  }

  .for-business-wrapper ul li p {
    line-height: 22px;
  }

  .page-menu {
    -webkit-border-bottom-left-radius: 15px;
    -moz-border-bottom-left-radius: 15px;
    border-bottom-left-radius: 15px;
    -webkit-border-bottom-right-radius: 15px;
    -moz-border-bottom-right-radius: 15px;
    border-bottom-right-radius: 15px;
  }

  .faq-accordion-title {
    font-size: 16px;
  }

  .faq-accordion-title {
    padding: 20px 20px;
    padding-right: 55px;
  }

  .upload-cv-btn {
    margin-top: 15px;
  }

  .career-overview {
    padding: 45px 0px 30px;
  }

  .faq-accordion-content {
    padding: 20px 15px 20px;
  }
}
.hm-partner-listing-wrap{
	display:flex;
	flex-wrap:wrap;
	row-gap:15px;
	margin:50px -0.6% 0px;
}
.hm-partner-listing-wrap li{
	display:flex;
	align-items:center;
	justify-content:center;
	border:1px solid #E3E3E3;
	border-radius:16px;
	height:106px;
	width:15.46%;
	margin:0px 0.6%;
	padding:10px;
	-webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.hm-partner-listing-wrap li:hover{
	box-shadow: 6px 6px 14px 2px rgba(0, 0, 0, 0.1);
}
.submenu-list-wrap{
	width:100%;
}
.submenu-list-wrap .submenu-list{
	width:100%;
	display:flex;
	align-items:center;
	gap:10px;
}
.submenu-list-wrap .submenu-list ul{
	margin-left:auto;
	width:40%;
}

.submenu-list-wrap .submenu-list + .submenu-list{
	margin-top:5px;
	padding-top:5px;
	border-top: 1px solid #fff;
}
/* .categorized_submenu{
	border-top: 1px solid #fff;
    padding-top: 25px;
} */

.submenu-main-container-inner{
  border-top: 1px solid #fff;
  padding-top: 15px;
}


.submenu-main-container-inner:first-child{
     border-top: none;
}





.categorized_submenu .submenu-content{
	width:100%;
	padding-right:0px;
}
.submenu-list-wrap .submenu-list span{
	color: #fff;
	font-size:18px;
	line-height:22px;
	text-transform: capitalize;
    font-family: "futura_stdheavy" !important;
	/*padding-top:20px;*/
}

.newsletter-msg.nf-response-msg.newsletter-success{
      color: #fff;
    font-size: 13px;
    padding-top: 5px;
}

.nf-error-msg.nf-error-field-errors{
   color: #da3d3d;
    font-size: 13px;
    padding-top: 5px;
}


@media (max-width: 1199px) {
	.hm-partner-listing-wrap li{
		width:18.552%;
	}
	.submenu-list-wrap .submenu-list span{
		font-size:20px;
		padding-left:0px;
	}


}

@media (max-width: 1040px) {
  .about-main-section-inner:nth-child(2n) .about-main-left-content {
    width: 100%;
	    padding-left: 0;

	}

	.about-main-section-inner:nth-child(2n) .about-main-right-content {
    width: 100%;
}

.about-main-section-inner:nth-child(2n) .mission_icon {
    left: 0px;
    top: -35px;
    z-index: -1;
}

.about-proposition-section {
    padding: 80px 0;
}


}

@media (max-width: 870px) {
	.hm-partner-listing-wrap{
		margin:30px -1% 0px;
	}
	.hm-partner-listing-wrap li{
		width:31.33%;
		margin:0px 1%;
	}

  .mission_icon {
    top: -45px;
    z-index: -1;
    max-width: 70px;
}

.about-proposition-section {
    padding: 45px 0;
}

.programme-msg-content p{
    text-align: center;
}

}
@media (max-width: 640px){
	.hm-partner-listing-wrap li{
		width:48%;
		margin:0px 1%;
	}

  .about-main-section-wrap {
    padding-bottom: 20px;
}

    .about-main-section-inner {
        padding: 30px 0 34px;
    }

    .value-text-main p {
    font-size: 14px;
    }

    .value-text-main{
		   top: 40px;
	}
}