@font-face {
  font-family: "GothamLight";
  src: url("../fonts/GothamLight.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

.navbar-brand img {
  height: 40px;
}
.tagline {
  /* font-size: 12px; */
  font-weight: 500;
  margin-top: 0px;
  padding-bottom: 5px;
  font-size: 11px;
  font-weight: 600;
}
.nav-icons img {
  height: 40px;
  margin-left: 10px;
}
.menu-text {
  margin-left: 5px;
  font-weight: 500;
}

body {
  font-size: 16px;
  font-family: "GothamLight";
}

.container {
  width: calc(100% - 13rem);
  max-width: 100%;
  margin: auto;
}
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;
}

.navbar-nav li {
  margin: 0px 10px;
  padding: 10px 0px;
}
.navbar-nav li a {
  padding: 0px !important;
  font-size: 16px;
  color: #262626;
  text-decoration: none;
  white-space: inherit;
}
nav.navbar {
  margin: 0px;
  padding: 13px 0px;
}
nav.navbar .menu {
  display: flex;
  width: 100%;
  flex-wrap: nowrap;
  justify-content: flex-start;
}

.navbar-nav li .dropdown-menu {
  position: absolute;
  left: 0;
  top: 95%;
  border-radius: 5px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.14);
  background-color: #fff;
  padding: 10px 10px;
  z-index: 999;
  width: 260px;
}
.navbar-nav li .dropdown-menu li {
  position: relative;
  list-style: none;
  margin: 0 10px;
  display: flex;
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(167, 169, 171, 0.5);
}
.navbar-nav li .dropdown-menu li:last-child {
  border-bottom: 1px solid transparent;
}
.navbar-nav li .dropdown-menu li a {
  padding: 15px 0px;
  background-color: transparent;
}
.nav-icons a {
  color: #000;
  text-decoration: none;
}
.nav-icons a:nth-of-type(1) img {
  height: 55px;
}
.nav-icons a:nth-of-type(2) img {
  height: 50px;
}
.nav-icons .feedback-icon img {
  height: 22px !important;
  margin: 0px;
}

/* sitebar menu section start */
.sitemenu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}
.sitemenu.open_sitemenu {
  display: block;
}

.site-inner-content {
  max-width: 42rem;
  height: 100vh;
  background-color: #fff;
  overflow-x: hidden;
  overflow-y: scroll;
  scrollbar-width: thin;
  padding: 40px;
}
.site-inner-content .site-menu {
  padding-left: 1rem;
}
.site-inner-content .site-menu li {
  padding: 10px 0px;
  list-style: none;
}
.site-inner-content .site-menu li a {
  font-size: 16px;
  line-height: 1.6;
  text-decoration: none;
  font-weight: 600;
  color: #000;
  width: fit-content;
  position: relative;
}
.site-inner-content .site-menu li a::after {
  background: #000;
  bottom: 0px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transition: 0.4s ease-in-out;
  width: 0;
}
.site-inner-content .site-menu:hover li {
  opacity: 0.65;
}
.site-inner-content .site-menu li:hover {
  opacity: 1;
}
.site-inner-content .site-menu li:hover a:after {
  width: 100%;
}

.site-inner-content .closebtn {
  margin-bottom: 5px;
  width: fit-content;
  cursor: pointer;
}
.site-inner-content .sitelogo {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.site-inner-content .sitelogo a {
  width: fit-content;
}
.site-inner-content .sitelogo img {
  width: 150px;
}
.site-inner-content .sitelogo span {
  margin-top: 5px;
  margin-bottom: 10px;
}
.site-inner-content .siteaccrediation {
  padding-top: 15px;
}
.mobile-view .tagline {
  display: none;
}
/* sitebar menu section End */

/* Footer Section Start */
.footer {
  background-color: #012d61; /* Dark Blue */
  color: #d1d5db;
  font-size: 16px;
  line-height: 1.6;
  padding: 60px 0px 45px 0px;
}
.footer_section {
  width: 100%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  font-size: 16px;
  line-height: 1.6;
}
.footer_section .about-noble-section {
  width: 25%;
  display: flex;
  flex-direction: column;
}
.footer_section .about {
  width: 30%;
  padding-left: 5%;
}
.footer_section .quick-links {
  width: 20%;
}
.footer_section .contact {
  width: 25%;
}
.footer_section .footer-logo img {
  filter: invert(1) brightness(5);
  width: 180px;
}

.footer h6 {
  font-size: 20px;
  font-weight: 600;
  width: fit-content;
  margin-bottom: 10px;
  position: relative;
}
.footer h6::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 1px;
  width: 100%;
  left: 0;
  background: #fff;
}

.footer a {
  color: #fff;
  text-decoration: none;
  margin-bottom: 10px;
}

.footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Buttons */
.footer-btn {
  align-items: center;
  border: 2px solid #ffffff26;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.6;
  padding: 1rem 1.2rem;
  transition: 0.3s ease-in-out;
  width: 100%;
  text-decoration: none;
}

.footer-btn i {
  font-size: 23px;
  margin-right: 15px !important;
}
.footer-btn:hover {
  border-color: #fff;
}
.footer_section ul li {
  margin-bottom: 10px;
  line-height: 24px;
}
.footer_section ul li a {
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none !important;
  line-height: 1.6;
  position: relative;
  width: fit-content;
}
.footer_section ul li a::after {
  transition: 0.4s ease-in-out;
  content: "";
  position: absolute;
  bottom: 0;
  height: 1px;
  width: 0;
  left: 0;
  background: #fff;
}
.footer_section ul li a:hover::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 1px;
  width: 100%;
  left: 0;
  background: #fff;
}
.footer_section .head-top {
  padding-top: 30px;
}
.footer_section .about-noble-content {
  font-size: 16px;
  line-height: 1.6;
}
.footer_section .contact p a {
  color: #fff;
  text-decoration: none !important;
}

/* Divider */
.footer-divider {
  border-color: rgba(255, 255, 255, 1);
  margin: 20px 0;
}

/* Payment Icons */
.payment-icons img {
  width: 50px;
  margin-right: 8px;
  margin-top: 5px;
  /* background: #fff; */
  padding: 2px;
  border-radius: 4px;
  object-fit: contain;
}
.footer_section hr {
  color: #fff;
}
.pay-btn {
  background: #64c698;
  border: #ffdead;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  height: 35px;
  margin-left: 0;
  display: flex;
  width: 150px;
  text-decoration: none !important;
  align-items: center;
  justify-content: center;
}
.pay-btn:hover {
  background-color: #64c698;
}

/* Social Icons */
.social-icons a {
  color: #fff;
  margin-right: 12px;
  font-size: 28px;
  text-decoration: none !important;
  transition: color 0.3s;
}
.social-media-wrapper .title {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px !important;
}

.bottom-footer {
  background: #e1f0fe;
}
.bottom-footer .page-container {
  padding: 30px 0;
}
.bottom-footer .page-container ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  width: 100%;
  margin: 0px;
}
.bottom-footer .page-container ul li {
  display: flex;
  justify-content: center;
  margin-right: 30px;
  width: auto;
}
.bottom-footer .page-container ul li a {
  color: #000;
  text-decoration: none !important;
  cursor: pointer;
  text-align: center;
}
.bottom-footer .copy-right-section {
  border-top: 1px solid #d4d4d4;
  padding: 0;
}
.bottom-footer .copy-right-section p {
  color: #000;
  padding: 12px;
  font-size: 14px;
  text-align: center;
  margin-bottom: 0px;
}
/* Footer Section End */

/* Card Section Start */
.wrapper-section {
  height: calc(100vh - 83px);
  width: 100%;
  background-image: url("../images/banner_bg.png");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

.wrapper-section .container,
.wrapper-section .container .row {
  height: 100%;
}

.card-wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  align-items: center;
}

.card-wrapper .left_section {
  width: 50%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;

  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 40px;
  backdrop-filter: blur(12px);
}

.card-wrapper .right_section {
  width: 50%;
  height: 100%;
}

.card-wrapper .right_section .image {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-wrapper .right_section img {
  width: 100%;
  object-fit: contain;
  padding-left: 100px;
}

.card-wrapper form {
  margin: 15px auto;
  width: 100%;
}

.card-wrapper .left_section h2 {
  font-weight: 600;
  color: #006cbe;
  font-size: 22px;
  margin-bottom: 20px;
  text-align: start;
}

.card-wrapper .left_section .text-muted {
  color: #212529bf !important;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 600;
}

#mob_bx {
  display: flex;
  width: 100%;
  text-align: start;
}

#input_bx {
  max-width: 60%;
  width: 100%;
  font-size: 15px;
  padding: 10px 10px;
  height: 44px;
  border-radius: 5px;
  outline-color: #60b88b;
}

#input_bx:focus {
  border-color: #60b88b;
}

#sub_btn {
  /* background-color: #60B88B; */
  border: 1px solid #60b88b;
  color: #000;
  font-weight: bold;
  font-size: 14px;
  margin-left: 10px;
  padding: 10px 20px;
  outline: none;
  background: linear-gradient(45deg, #00c897, #00b4d8);
  transition: all 0.3s ease;
}

.btn-submit {
  border-radius: 30px;
  padding: 12px 30px;
  font-weight: 600;
  border: none;
  color: white;
}

#sub_btn:hover {
  transform: scale(1.05);
  background: linear-gradient(45deg, #00b4d8, #00c897);
}

.info-box {
  border: 2px solid #00c897;
  border-radius: 15px;
  padding: 20px;
  margin-top: 30px;
  background-color: #ffffffd9;
  font-size: 15px;
  line-height: 1.7;
}

.info-box p {
  margin-bottom: 0px;
  font-size: 20px;
}
/* Card Section End */

/* Benefits Section Start */
.benefits-bg-section {
  background-image: url(../images/benefits11.jpg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: auto;
}

.benefits-section {
  color: #3b2c20;
  padding: 0rem 0rem 6rem 10rem;
  width: 100%;
  overflow: hidden;
}
.benefits-section .floating-img {
  max-width: 500px;
  object-fit: contain;
  float: right;
}
.benefits-section .gold-logo {
  padding-top: 45px;
  display: flex;
  align-items: center;
}
.benefits-section .gold-logo img {
  height: 80px;
  object-fit: contain;
}
.benefits-section .gold-logo span {
  padding-left: 20px;
  font-size: 58px;
  font-family: sans-serif;
  font-weight: 900;
  line-height: 1;
  color: #4f3826;
}

.title-box {
  display: inline-block;
  background: linear-gradient(to right, #d4af37, #6d4c0e);
  color: #fff;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 6px;
  margin-bottom: 20px;
}

.benefits-section h1 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 30px;
  padding-top: 5px;
  font-family: sans-serif;
  color: #2b2a28;
}

.benefit-item {
  margin-bottom: 35px;
  display: flex;
  padding-right: 40px;
}
.benefit-item .number {
  font-size: 120px;
  line-height: 0.8;
  padding-right: 10px;
  font-weight: 900;
  font-family: sans-serif;
}

.benefit-item h3 {
  font-size: 26px;
  font-weight: 700;
  padding-top: 5px;
  font-family: sans-serif;
  color: #2b2a28;
}

.benefit-item h3 span {
  font-size: 2.5rem;
  font-weight: bold;
  margin-right: 12px;
  color: #3b2c20;
}

.benefit-item .content {
  width: 100%;
}
.benefit-item ul {
  margin: 0px;
}
.benefit-item ul.column-list {
  column-count: 2;
}
.benefit-item ul {
  margin: 0px;
}

.benefit-item ul li {
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 18px;
}
.benefit-item .plain-text {
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 18px;
}

.note {
  font-size: 18px;
  font-weight: 600;
  font-style: italic;
  font-family: sans-serif;
  margin-top: 11px;
  color: #2a2b27;
}
#agree {
  display: flex;
  justify-content: center;
  position: relative;
  bottom: 60px;
}

#agree a {
  position: absolute;
  padding: 10px 30px;
  font-size: 15px;
}
#agree a:hover {
  background-color: #186fbc !important;
  border-color: transparent !important;
}
/* Benefits Section End */

/* Signup Section Start */

.signup_page {
  height: calc(100vh - 83px);
  width: 100%;
  background-image: url("../images/signup-bg.jpg");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}
.signup_page {
  height: auto;
}
.signup_page .card-wrapper .left_section {
  box-shadow: none;
  background: transparent;
}
.signup_page .modal-content {
  box-shadow: 1px 1px 7px #c1c1c1;
  border-radius: 7px;
  background: #fff;
  width: 100%;
  max-width: 75%;
}
.signup_page .modal-content h4 {
  margin: 0px;
  padding: 10px;
  text-align: center;
  font-size: 20px;
  color: #fff;
  background: #186fbc;
  border: 1px solid transparent;
}
.signup_page .modal-content input {
  height: 45px;
  font-size: 15px;
  background: #f7f7f7;
}
.signup_page .modal-content input[type="radio"] {
  height: fit-content;
  font-size: 15px;
}
.signup_page .modal-content .form-row {
  margin-bottom: 15px;
}
.signup_page .modal-content .clearfix button {
  background-color: #0458a0;
  border: 1px solid #0458a0;
  font-weight: bold;
  font-size: 15px;
  padding: 10px 30px;
}

.signup_page .card-wrapper .right_section img {
  padding-left: 0px;
  max-width: 60%;
}
/* Signup Section End */

/* Media Query Section Start */

@media (max-width: 1400px) {
  .benefits-section .gold-logo img {
    height: 60px;
  }
  .benefits-section {
    padding-left: 6rem;
  }
  .benefits-section .gold-logo span {
    padding-left: 20px;
    font-size: 40px;
  }
}
@media (max-width: 1280px) {
  .benefits-section {
    padding-left: 5rem;
  }
  .signup_page .modal-content {
    max-width: 100%;
  }
  .signup_page .card-wrapper .right_section img {
    padding-left: 0px;
    max-width: 80%;
  }
}
@media (max-width: 1150px) {
  .benefits-section h1 {
    font-size: 24px;
  }
  .benefit-item .number {
    font-size: 70px;
  }
  .benefits-section .gold-logo img {
    height: 40px;
  }
  .benefits-section .gold-logo span {
    padding-left: 20px;
    font-size: 30px;
  }
  .benefit-item h3 {
    font-size: 20px;
    font-weight: 700;
    padding-top: 0px;
  }
  .benefit-item ul {
    column-count: 1 !important;
  }
  .benefit-item ul li {
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 16px;
  }
  .note {
    margin-top: 0px;
    font-size: 16px;
  }
  .benefit-item {
    margin-bottom: 20px;
  }
  .benefits-section .floating-img {
    max-width: 400px;
  }
}

@media (max-width: 1024px) {
  .container {
    max-width: calc(100% - 4rem);
  }
  .navbar > .container .navbar-brand {
    margin: 0px;
    order: 2;
    align-items: center !important;
    flex-direction: row !important;
  }
  .nav-icons {
    order: 1;
    flex-direction: row-reverse;
  }
  .nav-icons.accreditations_icon {
    order: 3;
    flex-direction: row;
  }
  nav.navbar .menu {
    justify-content: space-between;
  }
  .tagline {
    display: none;
  }

  .mobile-view .tagline {
    display: block;
  }
  .mobile-menu-content {
    flex-direction: column-reverse;
    align-items: start !important;
  }

  .navbar-toggler {
    display: none;
  }
  .navbar-collapse {
    display: none !important;
  }
  .navbar-collapse.collapse {
    display: none !important;
  }
  .site-inner-content .sitelogo {
    margin-bottom: 0px;
  }
  .site-inner-content .siteaccrediation .nav-icons {
    flex-direction: row;
  }
  .footer_section .about-noble-section {
    width: 100%;
    padding: 0px;
  }
  .footer_section .about,
  .footer_section .quick-links,
  .footer_section .contact {
    width: 33.33%;
    padding: 0px;
  }

  /* card */
  .wrapper-section {
    height: auto;
  }
  .card-wrapper {
    flex-wrap: wrap;
  }
  .card-wrapper .left_section {
    margin-top: 45px;
  }
  .card-wrapper .left_section,
  .card-wrapper .right_section {
    width: 100%;
  }
  .card-wrapper .right_section {
    padding: 0px;
  }
  .benefits-section {
    padding-left: 4rem;
  }
  .benefits-section .floating-img {
    max-width: 320px;
  }

  /* singup */
  .signup_page .card-wrapper {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  .signup_page .card-wrapper .left_section {
    margin-top: 0;
  }
}

@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0; /* fixes gap */
  }
}

@media (max-width: 992px) {
  .container {
    max-width: calc(100% - 2rem);
  }
  .site-inner-content {
    max-width: 35rem;
    padding: 20px;
  }
  .card-wrapper .left_section {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .container {
    width: calc(100% - 1rem);
    max-width: calc(100% - 1rem);
  }
  .mobile-view .tagline {
    display: none;
  }
  .mobile-menu-content {
    flex-direction: row;
    align-items: center !important;
  }
  .menu-text {
    display: none;
  }
  .nav-icons a:nth-of-type(1) img {
    height: 42px;
  }
  .nav-icons a:nth-of-type(2) img {
    height: 40px;
  }
  .nav-icons img {
    height: 40px;
    margin-left: 5px;
  }
  .navbar-brand img {
    height: 35px;
  }
  nav.navbar {
    padding: 8px 0px;
  }
  .site-inner-content {
    max-width: 30rem;
  }
  .footer_section .about,
  .footer_section .quick-links,
  .footer_section .contact {
    width: 50%;
    padding: 0px;
  }
  .bottom-footer .page-container ul li {
    padding: 0px 10px;
    border-right: 1px solid black;
    margin-bottom: 10px;
    margin-right: 0px;
  }
  .bottom-footer .page-container {
    padding: 20px 0 10px;
  }
  .benefits-section {
    padding-left: 2rem;
  }
  .benefits-section .floating-img {
    display: none;
  }
  #agree {
    margin-top: 0%;
  }
  #form1 {
    margin-top: 0;
    height: auto !important;
  }
  .signup_page .card-wrapper .right_section {
    padding-bottom: 20px;
  }
  .signup_page .card-wrapper .right_section img {
    padding-left: 0px;
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .container {
    width: calc(100% - 1rem);
  }
  .navbar-brand img {
    height: 30px;
  }
  .nav-icons a:nth-of-type(1) img {
    height: 32px;
  }
  .nav-icons a:nth-of-type(2) img {
    height: 30px;
  }
  .nav-icons img {
    height: 28px;
  }
  .mobile-menu-content .nav-icons a {
    margin-right: 8px !important;
  }
  .nav-icons img {
    margin-left: 3px;
  }
  nav.navbar {
    padding: 5px 0px;
  }
  .site-inner-content {
    max-width: 100%;
    width: 100%;
  }
  .footer_section .about,
  .footer_section .quick-links,
  .footer_section .contact {
    width: 100%;
    padding: 0px;
  }
  .footer {
    padding: 30px 0px 30px 0px;
  }
  .bottom-footer .page-container ul {
    padding: 0px;
  }
  .bottom-footer .page-container ul li a {
    font-size: 14px;
  }

  /* card */
  .card-wrapper .left_section {
    margin-top: 30px;
    padding: 20px;
  }
  .card-wrapper .left_section h2 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .card-wrapper .left_section .text-muted {
    font-size: 16px;
  }
  .card-wrapper form {
    margin: 10px auto 5px;
  }
  #mob_bx {
    display: flex;
    width: 100%;
    text-align: start;
    flex-direction: column;
    align-items: center;
  }
  .card-wrapper form {
    margin: 10px auto 5px;
    width: 100%;
  }
  #input_bx {
    max-width: 100%;
  }
  .info-box {
    padding: 15px;
  }
  .info-box p {
    font-size: 17px;
  }

  .benefits-section .gold-logo {
    padding-top: 30px;
  }
  .benefits-section .gold-logo img {
    height: 35px;
  }
  .benefits-section .gold-logo span {
    padding-left: 10px;
    font-size: 24px;
  }
  .benefits-section h1 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .benefit-item {
    margin-bottom: 15px;
  }
  .benefit-item .number {
    font-size: 45px;
  }
}
/* Media Query Section End */
