@-ms-viewport {
  width: device-width;
}

@-o-viewport {
  width: device-width;
}

@viewport {
  width: device-width;
}

@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@200;500;700&display=swap');

/* Reset CSS
 * --------------------------------------- */
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

a.underline {
  text-decoration: underline;
}

table {
  border-spacing: 0;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-weight: normal;
  font-style: normal;
}

strong {
  font-weight: bold;
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  font-size: 100%;
  margin: 0;
  padding: 0;
}

q:before,
q:after {
  content: '';
}

abbr,
acronym {
  border: 0;
}

textarea:focus,
input:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

img {
  max-width: 100%;
}

*:focus {
  outline: none;
}

/* Custom CSS
 * --------------------------------------- */
body {
  font-family: 'Archivo', sans-serif;
  color: #333;
  color: rgba(0, 0, 0, 0.5);
  font-size: 14px;
}

p {
  margin-bottom: 20px;
}

.wrap {
  margin-left: auto;
  margin-right: auto;
  width: 960px;
  position: relative;
}

h1,
h2,
h3,
h4 {
  font-weight: bold;
}

h1 {
  font-size: 6em;
}

h3 {
  font-size: 30px;
}

.spacer10 {
  height: 10px;
}

.spacer20 {
  height: 20px;
}

.spacer30 {
  height: 30px;
}

.spacer50 {
  height: 50px;
}

.spacer100 {
  height: 100px;
}

.spacer120 {
  height: 120px;
}

.text-cyan {
  color: #05F5EF !important;
}

.container-fluid {
  max-width: 1600px;
}

.pp-tableCell {
  padding-top: 75px;
}

#pp-nav.right {
  right: 30px;
}

#menu {
  background-color: #fff;
}

#menu li {
  display: inline-block;
  padding: 0;
  color: #000;
}

#menu li.active {
  color: #fff;
}

#menu li.logo.active,
#menu li.logo {
  margin: 0 10px;
}

#menu li.logo.active a,
#menu li.logo a {
  padding: 0;
}

#menu li a {
  text-decoration: none;
  color: #000;
}

#menu li.active a:hover {
  color: #F69225;
}

#menu li:hover {
  background: rgba(255, 255, 255, 0.8);
}

#menu li a,
#menu li.active a {
  padding: 26px 18px;
  display: block;
  background: none;
}

#menu li.active a {
  color: #F69225;
}

#menu li.share-btn {
  font-size: 16px;
  float: right;
}

#menu li.share-btn select {
  color: #007BFF;
  padding: 26px 5px 26px 20px;
  margin-right: 15px;
  border: 0;
}

#menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 75px;
  z-index: 70;
  width: 100%;
  padding: 0;
  margin: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

/* Overlay style */
.overlay {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #333;
}

/* Overlay closing cross */
.overlay .overlay-close {
  position: absolute;
  right: 20px;
  top: 20px;
  overflow: hidden;
  border: none;
  font-size: 30px;
  color: #fff;
  outline: none;
  z-index: 100;
}

/* Menu style */
.overlay nav {
  text-align: center;
  position: relative;
  top: 50%;
  height: 60%;
  font-size: 54px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.overlay ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  height: 100%;
  position: relative;
}

.overlay ul li {
  display: block;
}

.overlay ul li h4 {
  color: #fff;
  text-decoration: underline;
  font-size: 24px;
  padding-bottom: 15px;
}

.overlay ul li a {
  font-weight: 300;
  display: block;
  color: #fff;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  font-size: 18px;
  padding: 10px 15px;
}

.overlay ul li a:hover,
.overlay ul li a:focus {
  color: #e3fcb1;
}

/* Effects */
.overlay-hugeinc {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s, visibility 0s 0.5s;
  transition: opacity 0.5s, visibility 0s 0.5s;
}

.overlay-hugeinc.open {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.overlay-hugeinc nav {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.overlay-hugeinc nav ul {
  opacity: 0.4;
  -webkit-transform: translateY(-25%) rotateX(35deg);
  transform: translateY(-25%) rotateX(35deg);
  -webkit-transition: -webkit-transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s;
}

.overlay-hugeinc.open nav ul {
  opacity: 1;
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
}

.overlay-hugeinc.close nav ul {
  -webkit-transform: translateY(25%) rotateX(-35deg);
  transform: translateY(25%) rotateX(-35deg);
}

@media screen and (max-height:30.5em) {
  .overlay nav {
    height: 70%;
    font-size: 34px;
  }

  .overlay ul li {
    min-height: 34px;
  }
}

.back-top {
  position: fixed;
  z-index: 10;
  bottom: 30px;
  right: 20px;
}

.back-top a {
  display: block;
  background-color: #fff;
  width: 50px;
  height: 50px;
  font-size: 22px;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.twitter-share-button {
  position: fixed !important;
  z-index: 99;
  right: 149px;
  top: 9px;
}

.btn-default {
  font-weight: 500;
  background-color: #f8f9fa;
  min-width: 150px;
  color: #333333;
  border-radius: 30px;
  border: 1px solid #ddd;
  padding: 5px 35px;
  -webkit-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

.btn-default svg {
  color: #007bff;
  vertical-align: middle;
  font-size: 30px;
  margin-right: 5px;
  -webkit-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

.btn-default:hover,
.btn-default:focus {
  background-color: #007bff;
  color: #fff;
}

.btn-default:hover svg,
.btn-default:focus svg {
  color: #fff;
}

.btn-default.outlined {
  color: #007BFF;
  border: 1px solid #007BFF;
  background-color: transparent;
}

.btn-default.outlined.white {
  color: #fff;
  border: 1px solid #fff;
  background-color: transparent;
}

.btn-default.outlined.yellow {
  color: #D89415;
  border: 1px solid #D89415;
  background-color: transparent;
}

.btn-default.outlined.green {
  color: #009393;
  border: 1px solid #009393;
  background-color: transparent;
}

.btn-default.outlined:hover {
  color: #fff !important;
  border: 1px solid #005979;
  background-color: #005979;
}

.btn-default.outlined.yellow:hover {
  color: #fff !important;
  border: 1px solid #D89415;
  background-color: #D89415 !important;
}

.btn-default.outlined.green:hover {
  color: #fff !important;
  border: 1px solid #009393;
  background-color: #009393;
}

.btn-default.outlined.white:hover {
  color: #333 !important;
  border: 1px solid #eee;
  background-color: #eee;
}

.btn-primary {
  display: inline-block;
  margin: 25px auto;
  background: #00C2FF;
  background: transparent linear-gradient(253deg, #00C2FF 0%, #007BFF 100%) 0% 0%;
  color: #fff;
  border-radius: 50px;
  border: 0;
  min-width: 160px;
  text-transform: capitalize;
  font-size: 15px;
  font-weight: bold;
  padding: 10px 30px;
  -webkit-transition: all .35s ease-in-out;
  -o-transition: all .35s ease-in-out;
  transition: all .35s ease-in-out;
}

.btn-primary:hover {
  background: transparent linear-gradient(253deg, #007BFF 0%, #007BFF 100%) 0% 0%;
}

.btn-default.lg {
  width: 100%;
}

.btn-default.sm {
  min-width: 120px;
}

.section {
  text-align: center;
  background-color: #F6F9FB;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section.pp-scrollable {
  padding-top: 100px;
  padding-bottom: 30px;
}

h2.section-title {
  text-align: left;
  margin-bottom: 30px;
  color: #2A3553;
  font-size: 30px;
}

.intro {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.next-section {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translate(-50%, -50%);
}

.arrow {
  margin-top: 20px;
}

.arrow span {
  display: block;
  width: 15px;
  height: 15px;
  border-bottom: 2px solid #05F5EF;
  border-right: 2px solid #05F5EF;
  transform: rotate(45deg);
  margin: -5px 10px;
  animation: animate 2s infinite;
}

.arrow span:nth-child(2) {
  animation-delay: -0.2s;
}

.arrow span:nth-child(3) {
  animation-delay: -0.4s;
}

.arrow.dark span {
  border-bottom: 2px solid #2A3553;
  border-right: 2px solid #2A3553;
}

@keyframes animate {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-8px, -8px);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: rotate(45deg) translate(10px, 10px);
  }
}

.intro {
  padding: 50px 50px;
}

.gridMember-box {
  display: block;
  text-align: left;
  margin: 10px auto;
}

.gridMember-box:hover .member-desc {
  box-shadow: 0px 0 5px #0000001a
}

.memberThumb,
.memberDetailThumb {
  position: relative;
}

.memberThumb:after,
.memberDetailThumb:after {
  content: '';
  display: block;
  position: absolute;
  z-index: 0;
  height: 55%;
  background: linear-gradient(to bottom, #ffb25e 0%, #ffebc5 100%);
  width: 100%;
  left: 0;
  bottom: 0;
  height: 55%;
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
  transition: all 0.3s ease-in;
}

.memberThumb img {
  width: 100%;
  position: relative;
  z-index: 9;
}

.memberDetailThumb img {
  max-width: 100%;
  position: relative;
  z-index: 9;
}

.member-desc {
  background: #fff;
  padding: 20px 25px;
  box-shadow: 0px 3px 10px #0000001A;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  transition: all 0.3s ease-in;
}

.member-desc h4 {
  font-size: 21px;
  color: #162A75;
}

.member-desc .btn .fa-arrow-right {
  font-size: 16px;
}

.gridMember-box:hover .memberThumb:after {
  background: linear-gradient(to bottom, #162a75 0%, #000d3c 100%);
}

.lgGrid .member-desc {
  padding: 35px;
}

.pos {
  color: #F69225;
  font-style: italic;
  line-height: 1.35;
  display: block;
}

.memberList .smGrid .member-desc {
  min-height: 125px;
}

.memberDetailThumb {
  width: 400px;
}

.memberDetail {
  position: relative;
}

.memberDetailBody {
  padding-left: 300px;
}

.memberDetail-wrapper {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0px 0px 20px #10222f08;
}

.memberDetail-content {
  padding: 80px 125px 50px 200px;
}

.memberDetail-content .pos {
  font-size: 18px;
  margin-bottom: 25px;
}

.memberDetailThumb {
  position: absolute;
  left: 0;
  top: 0;
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
  overflow: hidden;
}

.memberDetailThumb:after {
  height: 75%;
}

.carousel__slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel__button.is-prev,
.carousel__button.is-next {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.carousel__dots {
  top: auto;
  bottom: -100px;
}

.carousel__dots .carousel__dot {
  width: 30px;
}

.carousel__dots .carousel__dot:after {
  background-color: #fff;
  width: 25px;
  height: 4px;
  border-radius: 3px;
  border: 0;
  opacity: 1;
  box-shadow: 0 0 5px rgb(0 0 0 / 35%);
}

.carousel__dots .carousel__dot.is-selected:after {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f69225+0,f64a5d+99 */
  height: 6px;
  background: rgb(246, 146, 37);
  /* Old browsers */
  background: -moz-linear-gradient(left, rgba(246, 146, 37, 1) 0%, rgba(246, 74, 93, 1) 99%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, rgba(246, 146, 37, 1) 0%, rgba(246, 74, 93, 1) 99%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, rgba(246, 146, 37, 1) 0%, rgba(246, 74, 93, 1) 99%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f69225', endColorstr='#f64a5d', GradientType=1);
  /* IE6-9 */
}

.carousel .zoom {
  font-size: 24px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
}

.has-dots {
  margin-bottom: 0;
}

.material-card {
  display: block;
  background-color: #fff;
  background-size: cover;
  height: 100%;
  box-shadow: 0px 0px 20px #10222F08;
  border-radius: 15px;
  padding: 50px 30px;
}

.material-card h4 {
  font-size: 18px;
  margin-bottom: 0;
}

.material-card ul li {
  position: relative;
  padding-left: 10px;
}

.material-card ul li:before {
  content: "\f111";
  font-family: "Font Awesome 5 Pro";
  font-size: 4px;
  color: #007BFF;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 8px;
}

.textArea h3 {
  font-size: 20px;
}

.title-lg {
  font-size: 80px;
}

.title-sm {
  font-size: 30px;
}

.fw-carousel-slide .carousel__slide {
  width: var(--carousel-slide-width, 100%);
}

.fancybox__thumbs {
  display: none;
}

.fancybox__nav .carousel__button.is-next,
.fancybox__nav .carousel__button.is-prev {
  background-color: transparent;
}

.fancybox__content {
  border-radius: 20px;
}

.fancybox__content>.carousel__button.is-close {
  top: 10px;
  right: 10px;
  color: #007BFF;
}

.fancybox__content h2 {
  color: #162A75;
  font-size: 24px;
  margin-bottom: 15px;
}

.fancybox__content .card {
  border-radius: 15px;
  border-color: #ccc;
  background-color: #F6F9FB;
  overflow: hidden;
}

.fancybox__content .card-title {
  color: #fff;
  text-transform: uppercase;
  margin: 0;
  padding: 10px 15px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  background: rgb(42, 53, 83);
  background: linear-gradient(45deg, rgba(42, 53, 83, 1) 0%, rgba(5, 245, 239, 1) 100%);
}

.fancybox__content .card-body {
  background-color: #fff;
}

.fancybox-button {
  padding: 20px 0 0;
}

.fancybox-button a {
  display: block;
  padding: 0 10px;
}

.fancybox-button a i,
.fancybox-button a svg {
  margin: 0 5px;
}

.card-container-governance {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.card-governance {
  width: 309px;
  padding: 20px;
  background-image: url(../images/image-base-blue.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s;
}

.card-governance:hover {
  background-color: #e0e0e0;
}

.card-governance h2 {
  margin: 0;
}

/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);


}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 40px;
  border-radius: 8px;
  width: 80%;
  max-width: 1000px;
  position: relative;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.modal.show .modal-content {
  opacity: 1;
  transform: scale(1);
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #aaa;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #000;
}

/* Overwriting fullPage.js tooltip color
* --------------------------------------- */
#pp-nav.custom .pp-tooltip {
  color: #AAA;
}

#markup {
  display: block;
  width: 450px;
  margin: 20px auto;
  text-align: left;
}

@media (max-width: 1500px) {
  .intro {
    padding: 15px 50px;
  }

  .carousel__dots {
    top: auto;
    bottom: -50px;
  }

  #menu li a,
  #menu li.active a {
    padding: 26px 10px;
  }
}

@media (max-width: 1200px) {
  h1 {
    font-size: 4em;
  }

  #section1 h2 {
    font-size: 50px;
  }

  .logo img {
    max-width: 80px;
  }

  #menu li a,
  #menu li.active a {
    padding: 26px 6px;
    font-size: 14px;
  }

  #menu li.share-btn a {
    font-size: 22px;
    padding: 21px 20px;
  }

  .material-card {
    padding: 30px;
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  .textArea h3 {
    font-size: 16px;
  }

  #overlayBtn {
    font-size: 30px;
  }

  #menu {
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  #menu li #overlayBtn {
    font-size: 20px;
    color: #007BFF;
    padding: 15px 25px;
    border-right: 1px solid #ddd;
  }

  #menu li.share-btn a {
    padding: 14px 25px;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 14px;
  }

  h1 {
    font-size: 3em;
  }

  h2.section-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  h3 {
    font-size: 26px;
  }

  .container-fluid,
  .container,
  .container-md,
  .container-sm {
    max-width: 850px;
    position: relative;
  }

  .section {
    padding: 80px 15px 15px;
  }

  .intro {
    padding: 30px;
  }

  .carousel__button.is-next {
    right: -25px;
  }

  .carousel__button.is-prev {
    left: -25px;
  }

  .carousel__dots {
    bottom: -60px;
  }

  .carousel__button {
    width: var(--carousel-button-width, 35px);
    height: var(--carousel-button-height, 35px);
  }

  .back-top a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 16px;
  }

  .back-top {
    right: 10px;
    bottom: 10px;
  }

  .arrow span {
    width: 10px;
    height: 10px;
  }

  #pp-nav {
    display: none;
  }

  .pb-5 {
    padding-bottom: 8rem !important;
  }
}

@media (min-width: 992px) {
  .material-card.v-layout {
    display: flex;
    align-items: center;
    text-align: left;
  }

  .material-card.v-layout figure {
    margin-right: 10px;
  }
}