.register-form {
  color: #333;
  width: 100%;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.register-form .form-group {
  padding-bottom: 8px;
}

.register-form .validate {
  /*  display: none;*/
  color: red;
  margin: 0;
  font-size: 13px;
}

.register-form .help-block {
  margin: 0;
}

.register-form .help-block ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  color: red;
  font-size: 12px;
}

.register-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.register-form .error-message br+br {
  margin-top: 25px;
}

.register-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.register-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.register-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.register-form .form-group {
  margin-bottom: 5px;
}

.register-form label {
  padding-bottom: 8px;
  color: #000;
  font-size: 13px;
  margin: .6em 0 0;
  font-weight: 300;
  text-align: left !important;
}

.register-form label span {
  color: red;
}

.separator-line {
  border-top: 1px solid #cdcdcd;
}

.register-form input,
.register-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.register-form input:focus,
.register-form textarea:focus {
  border-color: #47b2e4;
}

.register-form input {
  /*height: 44px;*/
}

.register-form textarea {
  padding: 10px 12px;
  min-height: 80px;
}

.register-form button[type="submit"] {
  background: #1279B8;
  color: white;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  letter-spacing: 0.5px;
}

.register-form button[type="submit"]:hover {
  background: #35B45A;
}

.register-form button[type="submit"]:disabled {
  background-color: #f7ad18;
  border-color: #f7ad18;
  cursor: not-allowed;
  opacity: .5;
}

.register-form .form-control,
.select2-container--default .select2-selection--single {
  border: 1px solid #e4e6e8;
  border-radius: 0px;
  height: 35px !important;
  padding-left: 18px;
  font-size: 13px;
  background: transparent;
  width: 100% !important;
}

.iti {
  width: 100%;
}

.select2-results__option {
  text-align: left;
  color: #333;
}

.register-form .form-control[disabled] {
  background-color: #eee;
  cursor: not-allowed;
}

.register-form .form-control:focus {
  outline: 0;
  box-shadow: none;
}

.register-form .form-control::placeholder {
  font-weight: 300;
  color: #999999;
}

/* checkbox
=============================== */
.checkbox-mc {
  display: block;
  position: relative;
  padding-left: 40px;
  margin-bottom: 10px !important;
  cursor: pointer;
}

.checkbox-mc a,
.checkbox-mc a:hover {
  color: #f7ad18;
}

.checkbox-mc input[type=checkbox] {
  visibility: hidden;
}

.geekmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: transparent;
  border: 1px solid #333;
}

.checkbox-mc:hover input~.geekmark {
  border: 1px solid #0b8048;
}

.checkbox-mc input:active~.geekmark {
  background-color: #0b8048;
  border: 1px solid #0b8048;
}

.checkbox-mc input:checked~.geekmark {
  background-color: #0b8048;
  border: 1px solid #0b8048;
}

.geekmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-mc input:checked~.geekmark:after {
  display: block;
}

.checkbox-mc .geekmark:after {
  left: 8px;
  bottom: 5px;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/*Custom radio button*/
.radio-mc {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-weight: 300 !important;
  /*  text-align: left;*/
}

/* Hide the browser's default radio button */
.radio-mc input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: hsla(15, 28%, 89%, .05);
  border: 1px solid #000;
  border-radius: 50% !important;
}

/* On mouse-over, add a grey background color */
/*.radio-mc:hover {
  color: #f6b024;
}
.radio-mc:hover input ~ .checkmark {
  background-color: #f6b024;
}*/

/* When the radio button is checked, add a blue background */
.radio-mc input:checked~.checkmark {
  background-color: #fff;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.radio-mc input:checked~.checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.radio-mc .checkmark:after {
  top: 7px;
  left: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #014957;
}

.file-input .btn-default,
.file-input .btn-primary {
    border: 1px solid #000;
    color: #000;
    padding: 2px 5px;
    font-size: 14px;
    background: transparent;
}

.langage_btn .btn-primary {
  padding: 15px 0;
  min-width: 300px;
  background: transparent;
  border: 2px solid #fff;
  font-weight: 700;
  font-size: 25px;
}

.section_title {
  color: #dc5f02;
  font-size: 35px !important;
  text-transform: uppercase !important;
}

.text-white {
  color: #ffffff !important;
}

.text-yellow {
  color: #f7ad18 !important;
}

.btn-primary {
  background: #0b8048;
  text-transform: uppercase !important;
}

.btn-primary:hover {
  background: #f7ad18;
}

.bg-white {
  background: #fff !important;
}

.bg-blueDark {
  background: #2b2e4b !important;
}

.bg-green {
  background: #35B45A !important;
}
.text-green {
  color: #35B45A !important;
}

.bg-greenLight {
  background: #28a745 !important;
}

.text-greenLight {
  color: #28a745 !important;
}

.bg-yellow {
  background: #F6D74B !important;
}

.text-yellow {
  color: #F6D74B !important;
}

.bg-blue {
  background: #1279B8 !important;
}

.text-blue {
  color: #1279B8 !important;
}

.bg-black {
  background: #000000 !important;
}

.text-black {
  color: #000000 !important;
}

.bg-graduant {
  background: linear-gradient(to right, #1279B8, #35B45A);
}


@media(max-width: 991px) {
  .site-logo {
    display: block !important;
  }

  .header_center,
  .header_right {
    display: block;
    justify-content: left;
  }

  .ecommerce .title-wrapper .header-navigation {
    width: 100%
  }

  .ecommerce .title-wrapper .header-navigation>ul>li>a {
    color: #dc5f02 !important;
  }
}

@media(max-width: 900px) {}

@media(max-width: 800px) {}

@media (max-width:768px) {
  .section_title {
    font-size: 28px !important
  }
}


/* joy section css */
.neisa-applications-section {
  --neisa-primary: #0B0E14;
  --neisa-secondary: #1279B8;
  --neisa-accent: #63d96a;
  --neisa-text-dark: #212529;
}

.neisa-applications-section {
  background-color: #f8f9fa;
  padding: 40px 0;
  line-height: 1.5;
  color: var(--neisa-text-dark);
}

.neisa-app-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.neisa-bullet-list {
  /* correct bullet alignment */
  margin-bottom: 10 !important;
  margin-left: 1rem;
}

.neisa-bullet-list li {
  font-size: 1.05rem !important;
  line-height: 1.3;
}

/* GREEN BULLET */
/* BIGGER GREEN BULLET POINT */
.neisa-bullet-list li::marker {
  color: #1aa34a;
  /* green bullet */
  font-size: 1.5rem;
  /* this makes the bullet bigger */
}


.neisa-content-card {
  background: white;
  border-radius: 12px;
  padding: 40px;

  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.neisa-main-title {
  font-size: 58px;
  font-weight: 800;
  background: linear-gradient(135deg, #1279B8 0%, #1279B8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* ✅ reduced (this helps with the <br>) */
  line-height: 1.2;
  margin: 0;
}

.neisa-section-title {
  color: #0B0E14;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
}

.neisa-section-title:first-of-type {
  margin-top: 0;
}

.neisa-subsection-title {
  color: var(--neisa-primary);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
}

.neisa-text-paragraph {

  font-size: 1.05rem;
  color: var(--neisa-text-dark);
}

.neisa-bullet-list {

  padding-left: 0;

}

.neisa-bullet-item {
  padding: 1px 0 1px 30px;
  position: relative;
  font-size: 1.05rem;
}

.neisa-bullet-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 8px;
  height: 8px;
  background-color: var(--neisa-accent);
  border-radius: 50%;
}

.neisa-process-box {
  background: #f8f9fa;
  border-left: 4px solid var(--neisa-secondary);
  padding: 25px 30px;
  margin: 30px 0;
  border-radius: 8px;
}

.neisa-numbered-list {
  list-style: none;
  counter-reset: neisa-step-counter;
  padding-left: 0;
  margin-bottom: 0;
}

.neisa-numbered-item {
  counter-increment: neisa-step-counter;
  padding: 15px 0 15px 50px;
  position: relative;
  font-size: 1.05rem;
}

.neisa-numbered-item::before {
  content: counter(neisa-step-counter);
  position: absolute;
  left: 0;
  top: 12px;
  width: 32px;
  height: 32px;
  background-color: var(--neisa-secondary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.95rem;
}

.neisa-note-box {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 20px 25px;

  border-radius: 8px;
}

.neisa-note-title {
  color: #856404;
  margin-top: 0;
  font-size: 1.25rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.neisa-note-text {
  color: #856404;
  margin-bottom: 0;
  font-size: 1.05rem;
}

.neisa-cta-button {
  display: inline-block;
  background-color: var(--neisa-secondary);
  color: white;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.neisa-cta-button:hover {
  background-color: #0f5a8a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(18, 121, 184, 0.3);
}

.neisa-divider {
  height: 2px;
  background: linear-gradient(to right, var(--neisa-secondary), var(--neisa-accent));
  margin: 50px 0;
  border: none;
}

.font_bold {
  font-weight: 600!important;
}

/*-------------------------------
Schedule
-------------------------------*/
#TopicTab {
    background: #ffffff;
    border-radius: 8px;
    margin: 0 20px;
    box-shadow: none;
    position: relative!important;
    z-index: auto;
}

.nav-justified .nav-item {
    text-align: left !important;
}

.nav-pills .nav-link {
    border-radius: 0px;
    padding: 20px 30px;
    transition: all 0.45s ease;
    border: none;
}
.nav-pills .nav-link:focus {
  outline: none;
}
.nav-pills .nav-link:hover {
    color: #000;
}
.nav-pills .nav-link p {
    line-height: 1.1;
    margin-bottom: 0;
}
.nav-pills .nav-link p:hover {
    color: #000;
}

.nav-pills .nav-link.active {
    background: #1279B8;
    border-radius: 8px;
    position: relative;
}

.nav-pills .nav-link.active h2 {
    color: #ffffff;
}
.nav-pills .nav-link.active p {
    color: #ffffff;
}

.nav-pills .nav-link.active h5 {
    color: #ffffff;
}

.nav-pills .nav-link.active:before {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 17px 20px 0;
    border-color: #000 transparent transparent;
    content: "";
    position: absolute;
    bottom: -18px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    transition: 0.3s;
    left: 80px;
    margin: auto;
    /*z-index: -1;*/
    border-color: #1279B8 transparent transparent;
}

.time-table li.row {
    /*border-bottom: 1px solid #f9e300;*/
}
.time-table .time {
    /*flex-basis: 10%;*/
    /*border-radius: 4px;
  text-transform: uppercase;
  font-size: 12px;
  text-align: center;
  line-height: 30px;
  font-weight: 400;
  color: #fff;
  background: #000;
  margin-top: 9px;
  z-index: 2;*/
    color: #fff;
}

.time-table .content {
    /*flex-basis: 88%;*/
    /*border: 1px solid #CFD3DB;*/
    /*padding: 10px;*/
    /*padding-left: 25px;*/
    /*border-radius: 2px;*/
    padding-bottom: 15px;
}
.time-table .parallel {
    display: flex;
    flex-direction: column;
    position: relative;
}
.time-table .parallel .content {
    flex: 1;
}

.time-table .content h3,
.time-table p,
.time-table .content span.h6 {
    color: #fff;
}
.time-table .content .add_cal {
    float: right;
    font-size: 11px;
}
.time-table .content .addeventatc,
.time-table .content .addeventatc:hover {
    float: right;
    padding: 5px 10px;
    background-color: #FFA43B;
    border-color: #FFA43B;
    text-transform: none;
    border-radius: 0;
    letter-spacing: normal;
    font-size: 11px;
    color: #1279B8 !important;
    text-shadow: none !important;
    box-shadow: none !important;
    font-weight: 400;
}
.time-table .content .addeventatc .addeventatc_dropdown {
    position: fixed;
    top: 200px !important;
    left: unset !important;
}
.time-table .content .addeventatc .addeventatc_icon {
    display: none;
}

.addeventatc {
    position: unset !important;
}

.time-table .content .favorite {
    position: absolute;
    top: 10px;
    left: 2px;
    width: 30px;
    height: 30px;
    text-align: center;
    display: inline-block;
    line-height: 30px;
    border-radius: 2px;
    padding: 0;
    z-index: 2;
    background-color: #fff;
    border: 1px solid #000;
}
.time-table .content .favorite .fav-box {
    width: 28px;
    height: 28px;
    display: inline-block;
    margin: 0;
    cursor: pointer;
    text-align: center;
    line-height: 30px;
}
.time-table .content .favorite .fav-box i {
    color: #000;
    font-weight: 900;
    position: relative;
    bottom: 1px;
}
.time-table .content p {
    color: #fff;
    margin-bottom: 0;
}
.time-table .content p i {
    color: #f9e300;
}

.time-table .content-img {
    flex-basis: 20%;
}

.time-table .content-img img {
    border-radius: 100%;
}

@media screen {
    .time-table .content-img img {
        width: 100px;
    }
}
.time-table li {
    /*box-shadow: 0 15px 38px 0 rgba(0, 0, 0, 0.1);*/
}
.text-color-2 {
    color: #4125dd;
}
.profile-header {
    height: auto;
    padding: 5px 0;
}
.header-mc {
    margin-top: 85px;
}
.payment-btn, .payment-btn:hover {
    width: 100%;
    color: #000;
    background: #ffd400;
    padding: 5px 0;
}
.select2-container--default {
    width: 100%!important;
}

/*** Team ***/
.speaker-box {
    display: flex;
    flex-direction: column;
    position: relative;
}
.team-item {
    transition: 0.5s;
    flex: 1;
    background: #ffffff;
}
.team-details {
    color: #fff;
    padding: 10px;
}
.team-details h4 {
    font-size: 18px;
    color: #1279B8;
    margin-bottom: 5px;
}
.team-details p {
    font-size: 15px;
    line-height: 1.2;
}
.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}
.team-social button.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}
.team-item:hover {
    box-shadow: none;
}
.team-item:hover .team-social {
    background: rgba(9, 30, 62, 0.7);
}
.team-item:hover .team-social button.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: 0.3s 0s;
}
.team-item:hover .team-social button.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: 0.3s 0.05s;
}
.team-item:hover .team-social button.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: 0.3s 0.1s;
}
.team-item:hover .team-social button.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: 0.3s 0.15s;
}
.team-item .team-img img,
.blog-item .blog-img img {
    transition: 0.5s;
}
.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}

.latest-post {
    background: #1279B8;
    text-align: center;
}
.latest-post h4 {
    padding: 30px 0;
    color: #fff;
}
.latest-post h4:hover {
    color: #dc5f02;
}
.a-mc:hover {
    text-decoration: none;
}
.modal-content {
    background: #1279B8;
    border-radius: 7px !important;
    transition: 0.3s;
}
.modal-content p {
    color: #fff;
}
.modal-content p b {
    font-size: 20px;
    line-height: 1.2;
}
.modal-content button {
    background: rgb(0, 47, 43);
    padding: 5px 10px;
    border-radius: 4px !important;
    float: right;
    display: block;
}
.modal-body {
    padding: 20px;
}
.bio {
    display: inline;
}
.bio img {
    width: 150px !important;
    margin-right: 10px;
    margin-bottom: 10px;
    float: left;
}
.bio p {
    margin-bottom: 10px;
}

.profile_bg {    
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../img/summit-about.jpeg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.profileModal .modal-box {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  max-width: 600px;
  text-align: center;
}

.profileModal .btn-primary {
  display: inline-block;
  margin: 20px 0;
  padding: 12px 24px;
  background: #0d6efd;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
}

.profileModal .btn-close {
  background: none;
  border: none;
  color: #555;
  cursor: pointer;
}

@media (max-width: 768px) {
  .neisa-applications-section {
    padding: 50px 0;
  }

  .neisa-content-card {
    padding: 30px 20px;
  }

  .neisa-main-title {
    font-size: 2rem;
  }

  .neisa-section-title {
    font-size: 1.6rem;
    margin-top: 35px;
  }

  .neisa-subsection-title {
    font-size: 1.3rem;
  }

  .neisa-text-paragraph,
  .neisa-bullet-item,
  .neisa-numbered-item {
    font-size: 1rem;
  }

  .neisa-process-box {
    padding: 20px 20px;
  }

  .neisa-numbered-item {
    padding-left: 45px;
  }

  .neisa-numbered-item::before {
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
  }

  .neisa-cta-button {
    display: block;
    text-align: center;
    padding: 12px 30px;
    width: 100%;
  }
  #TopicTab {background: none;}
  .nav-pills {
    display: block;
  }
  .nav-pills .nav-link {
    width: 100%;
    margin-bottom: 10px;
  }
  .nav-pills .nav-link {padding: 10px 20px;}
  .nav-pills .nav-link.active {border-radius: 0}
  .nav-pills .nav-link.active:before {display: none;}
}

@media (max-width: 480px) {
  .neisa-applications-section {
    padding: 40px 0;
  }

  .neisa-app-container {
    padding: 0 15px;
  }

  .neisa-content-card {
    padding: 25px 15px;
  }

  .neisa-main-title {
    font-size: 1.75rem;
  }

  .neisa-section-title {
    font-size: 1.4rem;
  }

  .neisa-subsection-title {
    font-size: 1.2rem;
  }
}