/* Description: Master CSS file */
/*****************************************
Table Of Contents:

- General Styles
- Navigation
- Header
- Statement
- Details 1
- Details Lightbox
- Details 2
- Features
- About
- Statistics
- Invitation
- Contact
- Footer
- Copyright
- Back To Top Button 
- Extra Pages
- Media Queries
******************************************/
/*****************************************
Colors:
- Backgrounds, headings text - navy blue #1b1e7b
- Backgrounds - light gray #f2f3fd
- Buttons, icons - blue #026cfe
- Body text - dark gray #6b747b
******************************************/
/**************************/
/*     General Styles     */
/**************************/
body,
html {
  width: 100%;
  height: 100%;
  /* background-color:#; */
}

body, p {
  color: #6b747b;
  font: 400 1rem/1.625rem "Open Sans", sans-serif;
}

h1 {
  color: #333333;
  font: 600 2.5rem/3.25rem "Poppins", sans-serif;
}

h2 {
  color: #245ead;
  font: 600 2.125rem/2.75rem "Poppins", sans-serif;
}

h3 {
  color: #245ead;
  font: 600 1.75rem/2.375rem "Poppins", sans-serif;
}

h4 {
  color: #1b1e7b;
  font: 600 1.5rem/2.125rem "Poppins", sans-serif;
}

h5 {
  color: #333333;
  font: 600 1.25rem/1.75rem "Poppins", sans-serif;
}

h6 {
  color: #333333;
  font: 600 1rem/1.5rem "Poppins", sans-serif;
}

.p-large {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.p-small {
  font-size: 0.875rem;
  line-height: 1.5rem;
}

.testimonial-text {
  font-style: italic;
}

.testimonial-author {
  font: 500 1rem/1.5rem "Poppins", sans-serif;
}

.li-space-lg li {
  margin-bottom: 0.5rem;
}

a {
  color: #6b747b;
  text-decoration: underline;
}

a:hover {
  color: #6b747b;
  text-decoration: underline;
}

.no-line {
  text-decoration: none;
}

.no-line:hover {
  text-decoration: none;
}

.blue {
  color: #245ead;
}

.bg-gray {
  background-color: #f2f3fd;
}

.frame-decoration {
  width: 100%;
  height: 44px;
}

.heading-decoration {
  display: block;
  width: 5.75rem;
  height: 0.75rem;
  margin-right: auto;
  margin-left: auto;
}

.btn-solid-reg {
  display: inline-block;
  padding: 1.375rem 2.25rem 1.375rem 2.25rem;
  border: 1px solid #026cfe;
  border-radius: 32px;
  background-color: #026cfe;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 0;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-solid-reg:hover {
  border: 1px solid #026cfe;
  background-color: transparent;
  color: #026cfe;
  text-decoration: none;
}

.btn-solid-lg {
  display: inline-block;
  padding: 1.5rem 2.5rem 1.5rem 2.5rem;
  border: 1px solid #026cfe;
  border-radius: 32px;
  background-color: #026cfe;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 0;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-solid-lg:hover {
  border: 1px solid #026cfe;
  background-color: transparent;
  color: #026cfe;
  text-decoration: none;
}

.btn-outline-reg {
  display: inline-block;
  padding: 1.375rem 2.25rem 1.375rem 2.25rem;
  border: 1px solid #ed832b;
  border-radius: 32px;
  background-color: transparent;
  color: #ed832b;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 0;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-outline-reg:hover {
  border: 1px solid #ed832b;
  background-color: #ed832b;
  color: #ffffff;
  text-decoration: none;
}

.btn-outline-lg {
  display: inline-block;
  padding: 1.5rem 2.5rem 1.5rem 2.5rem;
  border: 1px solid #ed832b;
  border-radius: 32px;
  background-color: transparent;
  color: #ed832b;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 0;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-outline-lg:hover {
  border: 1px solid #ed832b;
  background-color: #ed832b;
  color: #ffffff;
  text-decoration: none;
}

.btn-outline-sm {
  display: inline-block;
  padding: 1rem 1.5rem 1rem 1.5rem;
  border: 1px solid #ed832b;
  border-radius: 32px;
  background-color: transparent;
  color: #ed832b;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 0;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-outline-sm:hover {
  border: 1px solid #ed832b;
  background-color: #ed832b;
  color: #ffffff;
  text-decoration: none;
}

.form-group {
  position: relative;
  margin-bottom: 1.25rem;
}

.form-group.has-error.has-danger {
  margin-bottom: 0.625rem;
}

.form-group.has-error.has-danger .help-block.with-errors ul {
  margin-top: 0.375rem;
}

.label-control {
  position: absolute;
  top: 0.875rem;
  left: 1.375rem;
  color: #7d838a;
  opacity: 1;
  font-size: 0.875rem;
  line-height: 1.375rem;
  cursor: text;
  transition: all 0.2s ease;
}

.form-control-input:focus + .label-control,
.form-control-input.notEmpty + .label-control,
.form-control-textarea:focus + .label-control,
.form-control-textarea.notEmpty + .label-control {
  top: 0.125rem;
  color: #6b747b;
  opacity: 1;
  font-size: 0.75rem;
  font-weight: 700;
}

.form-control-input,
.form-control-select {
  display: block;
  /* needed for proper display of the label in Firefox, IE, Edge */
  width: 100%;
  padding-top: 1.125rem;
  padding-bottom: 0.125rem;
  padding-left: 1.3125rem;
  border: 1px solid #cbcbd1;
  border-radius: 4px;
  background-color: #ffffff;
  color: #6b747b;
  font-size: 0.875rem;
  line-height: 1.875rem;
  transition: all 0.2s;
  -webkit-appearance: none;
  /* removes inner shadow on form inputs on ios safari */
}

.form-control-select {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  height: 3.25rem;
  color: #7d838a;
}

select {
  /* you should keep these first rules in place to maintain cross-browser behavior */
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  background-image: url("../images/down-arrow.png");
  background-position: 96% 50%;
  background-repeat: no-repeat;
  outline: none;
}

.form-control-textarea {
  display: block;
  /* used to eliminate a bottom gap difference between Chrome and IE/FF */
  width: 100%;
  height: 14rem;
  /* used instead of html rows to normalize height between Chrome and IE/FF */
  padding-top: 1.5rem;
  padding-left: 1.3125rem;
  border: 1px solid #cbcbd1;
  border-radius: 4px;
  background-color: #ffffff;
  color: #6b747b;
  font-size: 0.875rem;
  line-height: 1.5rem;
  transition: all 0.2s;
}

.form-control-input:focus,
.form-control-select:focus,
.form-control-textarea:focus {
  border: 1px solid #a1a1a1;
  outline: none;
  /* Removes blue border on focus */
}

.form-control-input:hover,
.form-control-select:hover,
.form-control-textarea:hover {
  border: 1px solid #a1a1a1;
}

.checkbox {
  font-size: 0.75rem;
  line-height: 1.25rem;
}

input[type=checkbox] {
  vertical-align: -10%;
  margin-right: 0.5rem;
}

.form-control-submit-button {
  display: inline-block;
  width: 100%;
  height: 3.25rem;
  border: 1px solid #026cfe;
  border-radius: 32px;
  background-color: #026cfe;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 0;
  cursor: pointer;
  transition: all 0.2s;
}

.form-control-submit-button:hover {
  border: 1px solid #026cfe;
  background-color: transparent;
  color: #026cfe;
}

/* Fade-move Animation For Details Lightbox - Magnific Popup */
/* at start */
.my-mfp-slide-bottom .zoom-anim-dialog {
  opacity: 0;
  transition: all 0.2s ease-out;
  transform: translateY(-1.25rem) perspective(37.5rem) rotateX(10deg);
}

/* animate in */
.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
  opacity: 1;
  transform: translateY(0) perspective(37.5rem) rotateX(0);
}

/* animate out */
.my-mfp-slide-bottom.mfp-removing .zoom-anim-dialog {
  opacity: 0;
  transform: translateY(-0.625rem) perspective(37.5rem) rotateX(10deg);
}

/* dark overlay, start state */
.my-mfp-slide-bottom.mfp-bg {
  opacity: 0;
  transition: opacity 0.2s ease-out;
}

/* animate in */
.my-mfp-slide-bottom.mfp-ready.mfp-bg {
  opacity: 0.8;
}

/* animate out */
.my-mfp-slide-bottom.mfp-removing.mfp-bg {
  opacity: 0;
}

/* end of fade-move animation for details lightbox - magnific popup */
/**********************/
/*     Navigation     */
/**********************/
.navbar .navbar-brand {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.fixed-top {
  z-index: 0;
}

.navbar .logo-image img {
  width: 53%;
  height: auto;
}

.navbar .logo-text {
  color: #ffffff;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1rem;
  text-decoration: none;
}

.offcanvas-collapse {
  position: fixed;
  top: 3rem;
  /* adjusts the height between the top of the page and the offcanvas menu */
  bottom: 0;
  left: 100%;
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
  overflow-y: auto;
  visibility: hidden;
  background-color: #1b1e7b;
  transition: transform 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.offcanvas-collapse.open {
  visibility: visible;
  transform: translateX(-100%);
}

.navbar .navbar-nav {
  margin-bottom: 0.5rem;
}

.navbar .nav-item .nav-link {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  color: #c5c3f0;
  text-decoration: none;
  transition: all 0.2s ease;
}

.navbar .nav-item.dropdown.show .nav-link,
.navbar .nav-item .nav-link:hover,
.navbar .nav-item .nav-link.active {
  color: #ffffff;
}

.navbar .social-icons {
  display: block;
}

.navbar .fa-stack {
  width: 2em;
  margin-top: 0.25rem;
  margin-right: 0.25rem;
  font-size: 0.75rem;
}

.navbar .fa-stack-2x {
  color: #026cfe;
  transition: all 0.2s ease;
}

.navbar .fa-stack-1x {
  color: #ffffff;
  transition: all 0.2s ease;
}

.navbar .fa-stack:hover .fa-stack-2x {
  color: #ffffff;
}

.navbar .fa-stack:hover .fa-stack-1x {
  color: #026cfe;
}

.navbar .navbar-toggler {
  padding: 0;
  border: none;
  font-size: 1.25rem;
}

/*****************/
/*    Header     */
/*****************/
.header {
  position: relative;
  overflow: hidden;
  background: #E0F2FE;
  /* background-image: url(../images/nmg_backgrond_pattern.png); */
  background-image: url(../images/landing_bg.png);
  background-repeat: no-repeat;
  background-size: 50%;
}

.ngm-logo img {
  width: 50%;
}

.header .text-container {
  margin-bottom: 4rem;
  text-align: center;
}

.header .h1-large {
  margin-bottom: 1.375rem;
  color: #ffffff;
}

.header .p-large {
  margin-bottom: 2rem;
  color: #ffffff;
}

.header .ocean {
  height: 2%;
  width: 100%;
  position: absolute;
  bottom: 17%;
  left: 0;
  background: #ffffff;
}

.header .wave {
  background: url("../images/wave.svg") repeat-x;
  position: absolute;
  top: -190px;
  width: 6400px;
  height: 198px;
  -webkit-animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
          animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
  transform: translate3d(0, 0, 0);
}

.header .wave:nth-of-type(2) {
  top: -170px;
  -webkit-animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) -0.125s infinite, swell 7s ease -1.25s infinite;
          animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) -0.125s infinite, swell 7s ease -1.25s infinite;
  opacity: 1;
}

/* Wave Animation */
@-webkit-keyframes wave {
  0% {
    margin-left: 0;
  }
  100% {
    margin-left: -1600px;
  }
}
@keyframes wave {
  0% {
    margin-left: 0;
  }
  100% {
    margin-left: -1600px;
  }
}
@-webkit-keyframes swell {
  0%, 100% {
    transform: translate3d(0, -25px, 0);
  }
  50% {
    transform: translate3d(0, 5px, 0);
  }
}
@keyframes swell {
  0%, 100% {
    transform: translate3d(0, -25px, 0);
  }
  50% {
    transform: translate3d(0, 5px, 0);
  }
}
/* end of wave animation */
/*********************/
/*     Statement     */
/*********************/
.basic-1 {
  padding-top: 2rem;
  padding-bottom: 3.75rem;
}

.basic-1 .text-container {
  text-align: center;
}

.basic-1 h3 {
  margin-bottom: 1rem;
}

.basic-1 .p-large {
  margin-bottom: 2.25rem;
}

.basic-1 img {
  width: 100%;
  height: auto;
}

/*********************/
/*     Details 1     */
/*********************/
.basic-2 {
  padding-top: 3.75rem;
  padding-bottom: 4.5rem;
}

.basic-2 .image-container {
  margin-bottom: 3.75rem;
}

.basic-2 h2 {
  margin-bottom: 1.25rem;
}

.basic-2 .list-unstyled {
  margin-bottom: 1.625rem;
}

.basic-2 .list-unstyled .fas {
  font-size: 0.375rem;
  line-height: 1.625rem;
}

.basic-2 .list-unstyled .media-body {
  margin-left: 0.5rem;
}

/****************************/
/*     Details Lightbox     */
/****************************/
.lightbox-basic {
  position: relative;
  max-width: 1150px;
  margin: 2.5rem auto;
  padding: 3rem 1rem;
  background-color: #ffffff;
  text-align: left;
}

.lightbox-basic .image-container {
  margin-bottom: 3rem;
  text-align: center;
}

.lightbox-basic .image-container img {
  border-radius: 8px;
}

.lightbox-basic h3 {
  margin-bottom: 0.5rem;
}

.lightbox-basic hr {
  width: 44px;
  margin-top: 0.125rem;
  margin-bottom: 1rem;
  margin-left: 0;
  border-top: 0.125rem solid #026cfe;
}

.lightbox-basic h4 {
  margin-top: 1.75rem;
  margin-bottom: 0.625rem;
}

.lightbox-basic .list-unstyled {
  margin-bottom: 1.5rem;
}

.lightbox-basic .list-unstyled .fas {
  color: #026cfe;
  font-size: 0.875rem;
  line-height: 1.75rem;
}

.lightbox-basic .list-unstyled .media-body {
  margin-left: 0.625rem;
}

.lightbox-basic .list-unstyled {
  margin-bottom: 1.5rem;
}

/* Action Button */
.lightbox-basic .btn-solid-reg.mfp-close {
  position: relative;
  width: auto;
  height: auto;
  color: #ffffff;
  opacity: 1;
  font-family: "Open Sans";
}

.lightbox-basic .btn-solid-reg.mfp-close:hover {
  color: #026cfe;
}

/* end of action Button */
/* Back Button */
.lightbox-basic .btn-outline-reg.mfp-close.as-button {
  position: relative;
  display: inline-block;
  width: auto;
  height: auto;
  margin-left: 0.375rem;
  padding: 1.375rem 2.25rem 1.375rem 2.25rem;
  border: 1px solid #6b747b;
  background-color: transparent;
  color: #6b747b;
  opacity: 1;
  font-family: "Open Sans";
}

.lightbox-basic .btn-outline-reg.mfp-close.as-button:hover {
  background-color: #6b747b;
  color: #ffffff;
}

/* end of back button */
/* Close X Button */
.lightbox-basic button.mfp-close.x-button {
  position: absolute;
  top: -0.125rem;
  right: -0.125rem;
  width: 44px;
  height: 44px;
  color: #555555;
}

/* end of close x button */
/*********************/
/*     Details 2     */
/*********************/
.basic-3 {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.basic-3 h2 {
  margin-bottom: 1.25rem;
}

.basic-3 .text-container {
  margin-bottom: 4rem;
}

.basic-3 .list-unstyled {
  margin-bottom: 1.625rem;
}

.basic-3 .list-unstyled .fas {
  font-size: 0.375rem;
  line-height: 1.625rem;
}

.basic-3 .list-unstyled .media-body {
  margin-left: 0.5rem;
}

/********************/
/*     Features     */
/********************/
.basic-4 {
  padding-top: 4.5rem;
  padding-bottom: 2.5rem;
}

.basic-4 .fas {
  margin-bottom: 1.5rem;
  color: #026cfe;
  font-size: 3.25rem;
}

.basic-4 .text-box {
  margin-bottom: 3rem;
  padding: 2.5rem 1rem 1.125rem 1rem;
  border-radius: 10px;
}

/*****************/
/*     About     */
/*****************/
.basic-5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.basic-5 .text-container {
  margin-bottom: 3rem;
}

.basic-5 h2 {
  margin-bottom: 1.25rem;
}

.basic-5 .image-container {
  margin-bottom: 3rem;
}

/**********************/
/*     Statistics     */
/**********************/
.counter {
  padding-top: 2rem;
  padding-bottom: 3.5rem;
  text-align: center;
}

.counter #counter {
  margin-bottom: 0.75rem;
}

.counter #counter .cell {
  display: inline-block;
  width: 124px;
  margin-right: 1.5rem;
  margin-bottom: 3.5rem;
  margin-left: 1.5rem;
  vertical-align: top;
}

.counter #counter .counter-value {
  color: #1b1e7b;
  font-weight: 700;
  font-size: 3.25rem;
  line-height: 3.75rem;
  vertical-align: middle;
}

.counter #counter .counter-info {
  margin-bottom: 0;
  font-size: 0.875rem;
  vertical-align: middle;
}

/**********************/
/*     Invitation     */
/**********************/
.basic-6 {
  text-align: center;
}

.basic-6 .text-container {
  padding: 4rem 1.25rem 4.5rem 1.25rem;
  border-radius: 10px;
}

.basic-6 h4 {
  margin-bottom: 1.625rem;
}

/*******************/
/*     Contact     */
/*******************/
.form-1 {
  overflow-x: hidden;
  padding-top: 7.75rem;
  padding-bottom: 7.25rem;
}

.form-1 .h2-heading,
.form-1 .p-heading {
  text-align: center;
}

.form-1 .h2-heading {
  margin-bottom: 0.75rem;
}

.form-1 .p-heading {
  margin-bottom: 3.5rem;
}

.form-1 .form-container {
  position: relative;
}

.form-1 .decoration {
  position: absolute;
  width: 400px;
  bottom: -60px;
  right: -200px;
}

/******************/
/*     Footer     */
/******************/
.footer {
  padding-top: 5.25rem;
  padding-bottom: 1rem;
  text-align: center;
}

.footer a {
  text-decoration: none;
}

.footer .fa-stack {
  width: 2em;
  margin-bottom: 1.25rem;
  margin-right: 0.375rem;
  font-size: 1.5rem;
}

.footer .fa-stack .fa-stack-1x {
  color: #1b1e7b;
  transition: all 0.2s ease;
}

.footer .fa-stack .fa-stack-2x {
  color: #ffffff;
  transition: all 0.2s ease;
}

.footer .fa-stack:hover .fa-stack-1x {
  color: #ffffff;
}

.footer .fa-stack:hover .fa-stack-2x {
  color: #1b1e7b;
}

/*********************/
/*     Copyright     */
/*********************/
.copyright {
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-align: center;
}

.copyright .p-small {
  color: #92989c;
  text-align: center;
}

.copyright a {
  color: #92989c;
}

/******************************/
/*     Back To Top Button     */
/******************************/
a.back-to-top {
  position: fixed;
  z-index: 999;
  right: 12px;
  bottom: 12px;
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 30px;
  background: #1b1e7b url("../images/up-arrow.png") no-repeat center 47%;
  background-size: 18px 18px;
  text-indent: -9999px;
}

a:hover.back-to-top {
  background-color: #026cfe;
}

/* Min-width 992px */
@media (min-width: 992px) {
  /* General Styles */
  .h1-large {
    font-size: 2.625rem;
    line-height: 3.25rem;
  }

  .h2-heading {
    width: 35.25rem;
    margin-right: auto;
    margin-left: auto;
  }

  .p-heading {
    width: 42.5rem;
    margin-right: auto;
    margin-left: auto;
  }

  .frame-decoration {
    height: 96px;
  }

  /* end of general styles */
  /* Navigation */
  .navbar {
    background-color: transparent;
    box-shadow: none;
    transition: all 0.2s;
  }

  .offcanvas-collapse {
    position: static;
    top: auto;
    bottom: auto;
    left: auto;
    width: auto;
    padding-right: 0;
    padding-left: 0;
    background-color: transparent;
    overflow-y: visible;
    visibility: visible;
  }

  .offcanvas-collapse.open {
    transform: none;
  }

  .navbar .navbar-nav {
    margin-top: 0;
    margin-bottom: 0;
  }

  .navbar .nav-item .nav-link {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }

  .navbar .social-icons {
    margin-left: 0.5rem;
  }

  .navbar .fa-stack {
    margin-top: 0;
    margin-right: 0;
    margin-left: 0.25rem;
  }

  /* end of navigation */
  /* Header */
  .header {
    padding-bottom: 19rem;
  }

  .header .text-container {
    margin-bottom: 0;
    text-align: left;
  }

  /* end of header */
  /* Statement */
  .basic-1 .text-container {
    width: 760px;
    margin-right: auto;
    margin-left: auto;
  }

  /* end of statement */
  /* Details 1 */
  .basic-2 .image-container {
    margin-bottom: 0;
  }

  /* end of details 1 */
  /* Details Lightbox */
  .lightbox-basic {
    padding: 3rem 3rem;
  }

  .lightbox-basic .image-container {
    margin-bottom: 0;
    text-align: left;
  }

  /* end of details lightbox */
  /* Details 2 */
  .basic-3 .text-container {
    margin-bottom: 0;
  }

  /* end of details 2 */
  /* About */
  .basic-5 .text-container {
    margin-bottom: 0;
  }

  .basic-5 .image-container {
    margin-bottom: 0;
  }

  /* end of about */
  /* Statistics */
  .counter {
    padding-top: 5rem;
  }

  /* end of statistics */
  /* Invitation */
  .basic-6 .text-container {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .basic-6 h4 {
    width: 600px;
  }

  /* end of invitation */
}
/* end of min-width 992px */
.about-bg {
  background: #E0F2FE;
  overflow: hidden;
  background-image: url(../images/nmg_vertical_pattern.png);
  background-position: left 62%;
  background-repeat: no-repeat;
  background-size: 15%;
}

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

a.navbar-brand img {
  width: 20%;
}

ul.menu-bx {
  padding: 0;
  width: 50%;
  margin: auto;
}

ul.menu-bx li {
  list-style-type: none;
}

ul.menu-bx li a {
  color: #1a0858 !important;
  text-decoration: none;
  margin-bottom: 21px;
  font-weight: 600;
  border-radius: 30px;
  padding: 7px 40px;
}

.icon-bx {
  padding-left: 13px;
}

ul.menu-bx li a:hover {
  color: #fff !important;
}

ul.about-menu-bx {
  margin: auto;
  text-align: center;
  padding-left: 0;
}

ul.about-menu-bx li a {
  text-decoration: none;
  margin-right: 20px;
}

ul.about-menu-bx li {
  list-style-type: none;
  display: inline-block;
}

.browse-bx {
  width: 100%;
}

.card .carousel-caption {
  padding: 0;
  right: 0;
  left: 0;
  color: #3d3d3d;
}

.card .carousel-caption h3 {
  color: #3d3d3d;
}

.card .carousel-caption p {
  line-height: 30px;
}

.card .carousel-caption .col-sm-3 {
  display: flex;
  align-items: center;
}

.card .carousel-caption .col-sm-9 {
  text-align: left;
}

.navi a {
  text-decoration: none;
}

#carouselExampleControls {
  padding-top: 20px;
}

.carousel-caption {
  position: absolute;
  right: 8%;
  bottom: 20px;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #000;
  text-align: left;
  font-weight: 900;
  font-size: 27px;
}

.carousel-caption a {
  font-weight: 900;
  font-size: 27px;
  text-decoration: none;
  color: #000;
}

.navi {
  position: absolute;
  top: 51px;
  right: 80px;
  color: #227d48;
}

ul.menu__box a:hover {
  text-decoration: none;
  color: #fff;
}

#banner-sec {
  background-image: url(../images/vert_blue_pattern.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 8%;
  height: 100vh;
}

/*==== Hamberger menu ===*/
#menu__toggle {
  opacity: 0;
}

#menu__toggle:checked ~ .menu__btn > span {
  transform: rotate(45deg);
}

#menu__toggle:checked ~ .menu__btn > span::before {
  top: 0;
  transform: rotate(0);
}

#menu__toggle:checked ~ .menu__btn > span::after {
  top: 0;
  transform: rotate(90deg);
}

#menu__toggle:checked ~ .menu__box {
  visibility: visible;
  right: 0;
}

.menu__btn {
  display: flex;
  align-items: center;
  position: fixed;
  top: 32px;
  right: 30px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  z-index: 2;
}

.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: #259ed6;
  transition-duration: 0.25s;
}

.menu__btn > span::before {
  content: "";
  top: -8px;
}

.menu__btn > span::after {
  content: "";
  top: 8px;
}

.menu__box {
  display: block;
  position: fixed;
  visibility: hidden;
  top: 0;
  right: -100%;
  width: 30%;
  height: 100%;
  margin: 0;
  padding: 80px 10px 80px 40px;
  list-style: none;
  background-color: #f69943;
  box-shadow: 1px 0px 6px rgba(0, 0, 0, 0.2);
  transition-duration: 0.25s;
  z-index: 1;
  background-image: url(../images/nmg_backgrond_pattern.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
}

.menu__item {
  display: block;
  padding: 8px 24px;
  color: #333;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

.menu__item:hover {
  background-color: #245eac;
}

.menu__item a {
  text-decoration: none;
  color: #fff;
}

.menu__item:hover a {
  text-decoration: none;
  color: #fff;
}

/*==== End of humberger menu ===*/
.members {
  color: #8d97ad;
  font-weight: 300;
}

.members h1,
.members h2,
.members h3,
.members h4,
.members h5,
.members h6 {
  color: #3e4555;
}

.members .font-weight-medium {
  font-weight: 500;
}

.members .subtitle {
  color: #8d97ad;
  line-height: 24px;
}

.members .pro-pic {
  min-height: 587px;
}

.members .pro-pic .card-img-overlay ul {
  top: 50%;
}

.members .pro-pic .card-img-overlay ul li a {
  transition: 0.1s ease-in;
}

.members .pro-pic .card-img-overlay ul li a:hover {
  transform: translate3d(0px, -5px, 0px);
}

.members .pro-pic:hover .card-img-overlay {
  display: block;
}

ul.social-network {
  list-style: none;
  display: inline;
  margin-left: 0 !important;
  padding: 0;
}

ul.social-network li {
  display: inline;
  margin: 0 5px;
}

.social-network a.icoFacebook:hover {
  background-color: #3B5998;
}

.social-network a.icoTwitter:hover {
  background-color: #33ccff;
}

.social-network a.icoJoomla:hover {
  background-color: #BD3518;
}

.social-network a.icoVimeo:hover {
  background-color: #0590B8;
}

.social-network a.icoLinkedin:hover {
  background-color: #007bb7;
}

.social-network a.icoRss:hover i,
.social-network a.icoFacebook:hover i,
.social-network a.icoTwitter:hover i,
.social-network a.icoGoogle:hover i,
.social-network a.icoVimeo:hover i,
.social-network a.icoLinkedin:hover i {
  color: #fff;
}

a.socialIcon:hover,
.socialHoverClass {
  color: #44BCDD;
}

.social-circle li a {
  display: inline-block;
  position: relative;
  margin: 0 auto 0 auto;
  border-radius: 50%;
  text-align: center;
  width: 30px;
  height: 30px;
  font-size: 20px;
}

.social-circle li i {
  margin: 0;
  line-height: 30px;
  text-align: center;
}

.social-circle li a:hover i,
.triggeredHover {
  -moz-transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  -ms--transform: rotate(360deg);
  transform: rotate(360deg);
  transition: all 0.2s;
}

.social-circle i {
  color: #fff;
  transition: all 0.8s;
}

.modal-body {
  padding: 0;
}

.modal .close {
  position: absolute;
  background: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  z-index: 22;
  right: -20px;
  top: -20px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  box-shadow: 5px 5px 7px 7px rgba(0, 0, 0, 0.05);
  transition-duration: 300ms;
}

a.image-bx {
  background: transparent;
  padding: 0;
  border: none;
  border-radius: 0;
}

a.image-bx:hover {
  opacity: 0.8;
}

a.image-bx:hover h6 {
  color: #fff;
}

/*============ EXECUTIVE TEAM =========*/
section {
  padding: 60px 0;
}

section .section-title {
  text-align: center;
  color: #245ead;
  margin-bottom: 50px;
  text-transform: uppercase;
}

#team .card {
  border: none;
  background: #ffffff;
}

.image-flip:hover .backside,
.image-flip.hover .backside {
  transform: rotateY(0deg);
  border-radius: 0.25rem;
}

.image-flip:hover .frontside,
.image-flip.hover .frontside {
  transform: rotateY(180deg);
}

.mainflip {
  -webkit-transition: 1s;
  -webkit-transform-style: preserve-3d;
  -ms-transition: 1s;
  -moz-transition: 1s;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transition: 1s;
  transform-style: preserve-3d;
  position: relative;
}

.frontside {
  position: relative;
  -webkit-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  z-index: 2;
  margin-bottom: 30px;
}

.backside {
  position: absolute;
  top: 0;
  left: 0;
  background: #245ead;
  transform: rotateY(-180deg);
  box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
}

.frontside,
.backside {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: 1s;
  -webkit-transform-style: preserve-3d;
  -moz-transition: 1s;
  -moz-transform-style: preserve-3d;
  -o-transition: 1s;
  -o-transform-style: preserve-3d;
  -ms-transition: 1s;
  -ms-transform-style: preserve-3d;
  transition: 1s;
  transform-style: preserve-3d;
  width: 100%;
  background-color: #245ead;
}

.frontside .card,
.backside .card {
  min-height: 450px;
}

.backside .card a {
  font-size: 18px;
  color: #FFF !important;
}

.frontside .card .card-title {
  color: #245ead !important;
}

.backside .card {
  background-color: #245ead !important;
  border: none;
  color: #d2d2d2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.backside .card-body {
  flex: none !important;
}

.card {
  position: relative;
  display: flex;
  /* flex-direction: column; */
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
  align-items: center;
}

.backside .card .card-title {
  color: #fff !important;
}

.backside .card-body p {
  color: #fff !important;
}

.frontside .card .card-body img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  color: #fff;
}

h4.card-title {
  color: #fff;
}

.frontside .card .card-body .btn-primary:hover,
.frontside .card .card-body .btn-primary:focus {
  background-color: #245ead;
  border-color: #245ead;
  box-shadow: none;
  outline: none;
}

.frontside .card .card-body.btn-primary {
  color: #fff;
  background-color: #245ead;
  border-color: #245ead;
}

.corporate-bx h6, .corporate-bx strong {
  color: #245ead;
}
.corporate-bx ol {
  margin-left: 0;
  padding-left: 14px;
  margin-top: 11px;
}
.corporate-bx ol li {
  margin-top: 10px;
}
.corporate-bx .table tr th {
  background: #245ead;
  color: #fff;
  border: none;
}
.corporate-bx h2, .corporate-bx #sub-title {
  text-align: center;
}
.corporate-bx ul.foot-print-menu li {
  list-style-type: none;
  display: inline-block;
  margin-right: 27px;
}
.corporate-bx ul.foot-print-menu li a {
  text-decoration: none;
  padding: 7px 87px;
}
.corporate-bx .foot-ct {
  width: 100%;
  height: auto;
}

.future-bx {
  width: 100%;
  background: #e3e6f4;
  height: auto;
  margin: 10px;
}

.char-signature img {
  width: 19%;
}

ul.group-menu {
  position: fixed;
  padding-left: 14px;
  width: 15%;
}

ul.group-menu li {
  list-style-type: none;
}

ul.group-menu li a:hover {
  background: #245ead;
  color: #fff;
}

ul.group-menu li a {
  text-decoration: none;
  padding: 6px 5px;
  border-bottom: 1px solid #245ead;
  display: block;
}

.imb-stat-bx {
  position: fixed;
}

.footprint-bg {
  background: #c9ccce;
}

.digital-footprint-bg {
  background: #b0b5b7;
}

.perfomance-bg {
  background: #ccd1ea;
}

/* ==========================================================================
  OVRLAY HOME MENU 
========================================================================== */
.nav-toggle {
  cursor: pointer;
}

.nav-toggle:focus {
  outline: none;
}

.navicon {
  position: relative;
  height: 26px;
}

.navicon p {
  margin: 1px 50px 0 0;
  color: #FFF;
}

.navicon-fixed {
  position: fixed;
  top: 59px;
  right: 143px;
}

/* ==========================================================================
Nav Overlay
========================================================================== */
/* Overlay style */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(52, 82, 113, 0.95);
  z-index: 3;
}

/* Menu style */
.overlay nav {
  position: relative;
  top: 40%;
  height: 60%;
  text-align: center;
  font-size: 54px;
  transform: translateY(-50%);
}

.overlay ul {
  position: relative;
  display: inline-block;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.overlay ul li {
  display: block;
}

.overlay ul li:last-child {
  margin-right: 0px;
}

.overlay ul li i {
  display: block;
  font-size: 40px;
}

.overlay ul li a {
  display: block;
  color: #fff;
  transition: all 300ms ease-in-out;
  text-align: left;
}

.overlay ul li a:hover, .overlay ul li a:focus {
  opacity: 0.5;
  text-decoration: none;
}

/* Effects */
.overlay-boxify {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s, visibility 0s 0.5s;
}

.overlay-boxify.open {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.5s;
}

.overlay-boxify nav ul li {
  opacity: 0;
  transform: translate3d(0, -80px, 0);
  transition: transform 0.5s, opacity 0.5s;
}

.overlay-boxify.open nav ul:first-child li:first-child {
  transition-delay: 0.05s;
}

.overlay-boxify.open nav ul:first-child li:nth-child(2) {
  transition-delay: 0.1s;
}

.overlay-boxify.open nav ul:nth-child(2) li:first-child {
  transition-delay: 0.15s;
}

.overlay-boxify.open nav ul:nth-child(2) li:nth-child(2) {
  transition-delay: 0.2s;
}

.overlay-boxify.open nav ul li {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

span.close-btn {
  position: absolute;
  right: 34%;
  color: #fff;
  font-size: 39px;
  z-index: 4;
  cursor: pointer;
}

span.close-btn :hover {
  opacity: 0.7;
}

@media (max-width: 575.98px) {
  .overlay ul li a {
    font-size: 28px;
    padding: 21px;
    border-bottom: 1px solid;
    line-height: 1.4em;
  }

  .over-menu-bx ul {
    padding-bottom: 21%;
  }

  .overlay nav {
    top: 57%;
    height: 100%;
    overflow: scroll;
  }

  .header {
    background-image: none;
    overflow: scroll;
  }

  ul.menu-bx {
    width: 94%;
  }

  .ngm-logo img {
    width: 95%;
  }

  .header .ocean {
    display: none;
  }

  span.close-btn {
    right: 8%;
    cursor: pointer;
    top: 11px;
  }

  a.navbar-brand img {
    width: 62%;
    /* margin-bottom: 20px; */
  }

  body, html {
    font-size: 29px;
  }

  h2 {
    font-size: 49px;
  }

  .about-bg {
    padding-top: 63px;
  }

  .menu__box {
    width: 100%;
    overflow: scroll;
  }

  .menu__item {
    display: block;
    padding: 13px 1px;
    color: #333;
    font-size: 26px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid;
    line-height: 1.2;
  }

  .menu__btn {
    display: flex;
    align-items: center;
    position: fixed;
    top: 49px;
    right: 30px;
    width: 43px;
    height: 59px;
    cursor: pointer;
    z-index: 2;
  }

  ul.about-menu-bx li a {
    text-decoration: none;
    margin-right: 20px;
    margin: 15px;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .overlay ul li a {
    font-size: 28px;
    padding: 21px;
    border-bottom: 1px solid;
    line-height: 1.4em;
  }

  .overlay nav {
    top: 57%;
    height: 100%;
    overflow: scroll;
  }

  .over-menu-bx ul {
    padding-bottom: 21%;
  }

  .header {
    background-image: none;
    overflow: scroll;
  }

  ul.menu-bx {
    width: 100%;
  }

  .ngm-logo img {
    width: 95%;
  }

  ul.menu-bx li a {
    font-size: 22px;
  }

  .header .ocean {
    display: none;
  }

  a.navbar-brand img {
    width: 62%;
    /* margin-bottom: 20px; */
  }

  .about-bg {
    padding-top: 20px;
  }

  .menu__box {
    width: 100%;
    overflow: scroll;
  }

  .menu__item {
    display: block;
    padding: 13px 1px;
    color: #333;
    font-size: 26px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid;
    line-height: 1.2;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .overlay ul li a {
    font-size: 38px;
    padding: 27px;
    border-bottom: 1px solid;
    line-height: 1.2em;
  }

  .over-menu-bx ul {
    padding-bottom: 21%;
  }

  .overlay nav {
    top: 57%;
    height: 100%;
    overflow: scroll;
  }

  span.close-btn {
    right: 7%;
    cursor: pointer;
  }

  .header {
    background-image: none;
    overflow: scroll;
  }

  ul.menu-bx {
    width: 100%;
  }

  .ngm-logo img {
    width: 95%;
  }

  ul.menu-bx li a {
    font-size: 45px;
    margin-top: 27px;
    padding: 19px 57px;
    margin-right: 38px;
    margin-left: 20px;
  }

  .header .ocean {
    display: none;
  }

  a.navbar-brand img {
    width: 62%;
    /* margin-bottom: 20px; */
  }

  .about-bg {
    padding-top: 20px;
  }

  .menu__box {
    width: 100%;
    overflow: scroll;
  }

  a.navbar-brand img {
    width: 62%;
    /* margin-bottom: 20px; */
  }

  .about-bg {
    padding-top: 20px;
  }

  .menu__box {
    width: 100%;
    overflow: scroll;
  }

  .menu__item {
    display: block;
    padding: 13px 1px;
    color: #333;
    font-size: 26px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid;
    line-height: 1.2;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .overlay ul li a {
    font-size: 38px;
    padding: 27px;
    border-bottom: 1px solid;
    line-height: 1.2em;
  }

  .home-bg {
    display: none;
  }

  #logo-bx {
    width: 100% !important;
    margin: auto;
  }

  .over-menu-bx ul {
    padding-bottom: 21%;
  }

  .overlay nav {
    top: 57%;
    height: 100%;
    overflow: scroll;
  }

  span.close-btn {
    right: 7%;
    cursor: pointer;
  }

  .header {
    background-image: none;
    overflow: scroll;
  }

  ul.menu-bx {
    width: 100%;
  }

  .ngm-logo img {
    width: 95%;
  }

  ul.menu-bx li a {
    font-size: 27px;
    margin-top: 27px;
  }

  .header .ocean {
    display: none;
  }

  .menu__box {
    width: 100%;
    overflow: scroll;
  }
}/*# sourceMappingURL=styles.css.map */