html,
body {
  overflow-x: clip !important;
}

html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Montserrat", sans-serif;
  color: #898989;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  padding-top: 120px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

.error-msg {
  position: absolute;
  bottom: -12px;
  background: transparent;
  display: flex;
  line-height: 11px;
  padding: 0 4px;
  background-color: #f00;
  color: #fff;
  font-size: 9px;
}

.overflow-visible {
  overflow: visible !important;
}

a {
  color: #333;
}

a:hover {
  color: #006cb6;
}

a,
button {
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

p:last-child {
  margin-bottom: 0;
}

img {
  max-width: 100%;
  height: auto;
  width: 100%;
  display: block;
}

p {
  margin-bottom: 20px;
}

p:last-child {
  margin-bottom: 0;
}

.fw-300 {
  font-weight: 300 !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-800 {
  font-weight: 800 !important;
}

.fw-900 {
  font-weight: 900 !important;
}

.columns.gap-7 {
  margin-left: -96px !important;
  margin-right: -96px !important;
}

.gap-7>.column {
  padding-left: 96px;
  padding-right: 96px;
}

.columns.gap-6 {
  margin-left: -84px !important;
  margin-right: -84px !important;
}

.gap-6>.column {
  padding-left: 84px;
  padding-right: 84px;
}

.columns.gap-5 {
  margin-left: -72px !important;
  margin-right: -72px !important;
}

.gap-5>.column {
  padding-left: 72px;
  padding-right: 72px;
}

.columns.gap-4 {
  margin-left: -60px !important;
  margin-right: -60px !important;
}

.gap-4>.column {
  padding-left: 60px;
  padding-right: 60px;
}

.columns.gap-3 {
  margin-left: -48px !important;
  margin-right: -48px !important;
}

.gap-3>.column {
  padding-left: 48px;
  padding-right: 48px;
}

.columns.gap-2 {
  margin-left: -36px !important;
  margin-right: -36px !important;
}

.gap-2>.column {
  padding-left: 36px;
  padding-right: 36px;
}

.columns.gap-1 {
  margin-left: -24px !important;
  margin-right: -24px !important;
}

.gap-1>.column {
  padding-left: 24px;
  padding-right: 24px;
}

.is-gap-0 {
  gap: 0 !important;
}

.is-gap-1 {
  gap: 4px !important;
}

.is-gap-2 {
  gap: 8px !important;
}

.is-gap-3 {
  gap: 12px !important;
}

.is-gap-4 {
  gap: 16px !important;
}

.is-gap-5 {
  gap: 24px !important;
}

.is-gap-6 {
  gap: 32px !important;
}

.is-gap-7 {
  gap: 40px !important;
}

.is-gap-8 {
  gap: 48px !important;
}

.is-gap-9 {
  gap: 56px !important;
}

.is-gap-10 {
  gap: 64px !important;
}

/*** Modal CSS ***/
.theme-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  outline: 0;
  opacity: 0;
  visibility: hidden;
}

.theme-modal.is-active {
  visibility: visible;
  opacity: 1;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 99999;
}

.theme-modal-card {
  position: relative;
  top: calc(50% + 30px);
  max-width: 750px;
  width: 100%;
  padding: 30px;
  border: 1px solid #0C398C;
  border-radius: 21px;
  max-height: inherit;
  transition: all 0.3s linear;
  background-color: #fff;
  margin: 0 auto;
  transform: translateY(-50%);
  /* -webkit-transform: translateY(-50%); */
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.modal-title {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}

html.is-active {
  overflow: hidden;
}

html:before {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #000;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
}

html.is-active:before {
  opacity: 0.9;
  visibility: visible;
}

.theme-modal.is-active .theme-modal-card {
  /* top: 50%; */
}

.theme-modal-background {
  background-color: #000;
  transition: all 0.3s linear;
  opacity: 0;
  visibility: hidden;
}

.theme-modal[style="visibility: visible;"] .theme-modal-card {
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  opacity: 1;
}

.theme-modal[style="visibility: visible;"] .theme-modal-background {
  opacity: 0.9;
  visibility: visible;
}

.theme-modal-card-body {
  border: 0;
  position: relative;
  overflow: visible;
}

.theme-modal-card-body {
  padding: 30px;
  background-color: transparent;
  border: 1px solid rgb(255 255 255 / 20%);
}

.close {
  color: #fff;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: none;
  opacity: 1;
  border-radius: 100%;
  background-color: #008AEB;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  cursor: pointer;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.close:hover {
  background-color: #0C398C;
  color: #fff;
  opacity: 1;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

/*** End Modal CSS ***/
.columns.row-register {
  margin-bottom: -12px !important;
}

.footer-form .form-control::-webkit-input-placeholder {
  color: #fff;
}

.form-control::-webkit-input-placeholder {
  font-family: "Montserrat", sans-serif;
}

.form-control:-ms-input-placeholder {
  font-family: "Montserrat", sans-serif;
}

.form-control::placeholder {
  font-family: "Montserrat", sans-serif;
}

.theme-scrollbar {
  overflow-x: hidden;
  overflow-y: auto;
}

.theme-scrollbar::-webkit-scrollbar-track {
  -webkit-box-shadow: none;
  background-color: transparent;
}

.theme-scrollbar::-webkit-scrollbar {
  width: 6px;
  background-color: transparent;
}

.theme-scrollbar::-webkit-scrollbar-thumb {
  background-color: #ddd;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

ul:last-child {
  margin-bottom: 0;
}

section,
.section {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
  overflow: hidden;
}

.full-width {
  width: 100%;
}

.section-title {
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.section-title:last-child {
  margin-bottom: 0;
}

.section-title h1 {
  font-size: 80px;
  line-height: 90px;
  font-weight: 700;
  text-transform: capitalize;
}

.section-title h2 {
  font-size: 50px;
  line-height: 60px;
  color: #0C398C;
  margin: 0;
  font-weight: 800;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
}

h1 {
  font-size: 50px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 28px;
}

h5 {
  font-size: 24px;
}

h6 {
  font-size: 20px;
}

.dark h1,
.dark h2,
.dark h3,
.dark h4,
.dark h5,
.dark h6,
.dark a,
.dark p,
.dark span,
.dark small {
  color: #fff;
}

.dark a:hover {
  color: #000;
}

video,
picture {
  display: block;
}

.container {
  position: relative;
  z-index: 1;
}

.btn {
  position: relative;
  font-family: "Montserrat", sans-serif;
  border: 1px solid;
  display: inline-block;
  padding: 8px 16px;
  font-size: 14px;
  text-align: center;
  line-height: 22px;
  font-weight: 600;
  cursor: pointer;
  z-index: 1;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.btn.btn-primary {
  background-color: #006cb6;
  border-color: #006cb6;
  color: #ffffff;
}

.btn.btn-primary:hover {
  background-color: #0060a0;
  border-color: #0060a0;
  color: #ffffff;
}

.btn.btn-primary-outline {
  background-color: transparent;
  border-color: #006cb6;
  color: #006cb6;
}

.btn.btn-primary-outline:hover {
  background-color: #0060a0;
  border-color: #0060a0;
  color: #ffffff;
}

.btn.btn-white {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #006cb6;
}

.btn.btn-white:hover {
  background-color: #eeeeee;
  border-color: #eeeeee;
  color: #006cb6;
}

.btn.btn-white-outline {
  background-color: transparent;
  border-color: #ffffff;
  color: #ffffff;
}

.btn.btn-white-outline:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #0060a0;
}

.col-form {
  position: relative;
}

.col-middle {
  display: table;
  width: 100%;
}

.col-middle-inner {
  display: table-cell;
  vertical-align: middle;
}

button:focus {
  outline: 0;
}

.thankyou-msg {
  font-size: 16px !important;
  color: #fff !important;
  background: 0 0 !important;
}

.thankyou-logo img {
  margin: 30px auto 0;
  height: 100px;
  width: auto;
}

.form-group,
.form-group-wrapper {
  position: relative;
}

.thankyou-block {
  height: 100vh;
}

.thankyou-block h1 {
  color: #fff;
  font-size: 30px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.list-point {
  padding: 0;
}

.list-point li {
  font-weight: 500;
  position: relative;
  list-style: none;
  padding-left: 20px;
}

.list-point li:last-child {
  margin-bottom: 0;
}

.list-point li:before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: #006cb6;
  border-radius: 100%;
  left: 0;
  top: 8px;
}

.arrow-bottom .splide__arrows {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.arrow-bottom .splide__arrow {
  position: static;
  transform: unset;
  -webkit-transform: unset;
  -moz-transform: unset;
  -ms-transform: unset;
  -o-transform: unset;
}

.splide__pagination {
  margin-top: 30px;
}

.splide.pagination .splide__pagination {
  counter-reset: pagination-num;
}

.splide.pagination .splide__pagination__page:before {
  counter-increment: pagination-num;
  content: counter(pagination-num);
}

.splide.pagination .splide__pagination__page.is-active {
  transform: unset;
  -webkit-transform: unset;
  -moz-transform: unset;
  -ms-transform: unset;
  -o-transform: unset;
}

.splide.pagination .splide__pagination__page {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: unset;
  font-size: 18px;
  -webkit-border-radius: unset;
  -moz-border-radius: unset;
  -ms-border-radius: unset;
  -o-border-radius: unset;
}

.splide__arrow svg {
  fill: transparent;
  height: 45px;
  transition: fill 0.2s linear;
  width: 45px;
  -webkit-transition: fill 0.2s linear;
  -moz-transition: fill 0.2s linear;
  -ms-transition: fill 0.2s linear;
  -o-transition: fill 0.2s linear;
}

.splide__arrow:hover:not(:disabled) svg {
  fill: transparent;
}

.splide {
  padding: 0;
}

.splide__slide img {
  width: 100%;
}

.splide__arrow.splide__arrow--prev:disabled,
.splide__arrow.splide__arrow--next:disabled {
  opacity: 0.5;
  pointer-events: none;
}

.splide__arrow {
  width: 60px;
  height: 60px;
  padding: 15px;
  color: #fff;
  background-color: #fff;
  border: 1px solid #fff;
  opacity: 1;
  box-shadow: 0px 4px 9.1px 0px #00000040;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.splide__arrow:hover {
  background-color: #fff;
  color: #fff;
  opacity: 1;
  box-shadow: unset;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.splide__arrow svg {
  font-size: 24px;
}

.splide__arrow--prev {
  left: 100px;
}

.splide__arrow--next {
  right: 100px;
}

.splide__pagination__page {
  width: 12px;
  height: 12px;
  background: #006cb6;
  opacity: 0.5;
}

.splide__pagination__page.is-active {
  transform: none;
  background: #006cb6;
  opacity: 1;
}

.splide__pagination {
  position: static;
  transform: none;
}

.form-control {
  display: block;
  width: 100%;
  border: none;
  padding: 15px;
  background-color: transparent;
  border-radius: 5px;
  resize: none;
  color: #000;
  font-size: 14px;
  border: 1px solid #00000010;
  -webkit-border-radius: 5px;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

input:-webkit-autofill {
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #fff !important;
  caret-color: #fff;
}

.form-control:focus {
  outline: 0;
}

.pl-80 {
  padding-left: 80px !important;
}

.modal-card-body {
  padding: 30px;
}

.col-form label span {
  /* color: #ff0000; */
}

.title-tagline {
  font-size: 20px;
  font-weight: 500;
  margin-top: 5px;
  display: block;
  color: #242424;
}

.sub-title {
  color: #242424;
  font-size: 20px;
  font-weight: 700;
  display: block;
  line-height: normal;
}

header {
  position: fixed;
  z-index: 9999;
  padding: 20px 100px;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  -moz-transition: transform 3s cubic-bezier(0.25, 0.1, 0.25, 1);
  -ms-transition: transform 3s cubic-bezier(0.25, 0.1, 0.25, 1);
  -o-transition: transform 3s cubic-bezier(0.25, 0.1, 0.25, 1);
  -webkit-transition: transform 3s cubic-bezier(0.25, 0.1, 0.25, 1);
  transition: transform 3s cubic-bezier(0.25, 0.1, 0.25, 1);
  box-shadow: 0 1px 3px rgb(0 0 0 / 10%);
}

#header.sticky {
  -moz-box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 12px rgb(0 0 0 / 10%);
  box-shadow: 0 0 12px rgb(0 0 0 / 10%);
}

.theme-menu ul {
  display: flex;
  justify-content: end;
}

.menu-link {
  font-size: 16px;
}

.menu-link.active {
  color: #28438c;
}

.theme-logo img {
  width: auto;
  max-height: 70px;
}

.col-header:first-child {
  max-width: 240px;
  padding: 0;
  flex: 0 0 240px;
}

.menu-item {
  padding: 16px 10px;
}

.theme-padding {
  padding-left: 100px;
  padding-right: 100px;
}

.js-scroll {
  opacity: 0;
}

.scrolled.fade-in {
  animation: 2s ease-in-out both fade-in;
}

.scrolled.fade-in-top {
  animation: 2s ease-in-out both fade-in-top;
}

.scrolled.fade-in-bottom {
  animation: 2s ease-in-out both fade-in-bottom;
}

.scrolled.fade-in-left {
  animation: 2s ease-in-out both fade-in-left;
}

.scrolled.fade-in-right {
  animation: 2s ease-in-out both fade-in-right;
}

@keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-100px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(50px);
    transform: translateX(100px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.zoom-out {
  opacity: 0;
  transition-duration: 3s;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.zoom-out.scrolled {
  opacity: 1;
  -webkit-transform: translateZ(0) scale(1);
  transform: translateZ(0) scale(1);
}

.zoom-out {
  transition-property: opacity, transform, -webkit-transform;
  transition-timing-function: ease-out;
}

.delay1 {
  -webkit-animation-delay: 0.1s !important;
  animation-delay: 0.1s !important;
}

.delay2 {
  -webkit-animation-delay: 0.2s !important;
  animation-delay: 0.2s !important;
}

.delay3 {
  -webkit-animation-delay: 0.3s !important;
  animation-delay: 0.3s !important;
}

.delay4 {
  -webkit-animation-delay: 0.4s !important;
  animation-delay: 0.4s !important;
}

/* Js Scroll End */
.sticky-btn-enquire {
  position: fixed !important;
  top: 210px;
  right: -44px;
  z-index: 999 !important;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
}

.sticky-btn-enquire:hover {
  color: #fff;
}

#scontactform h3 {
  font-size: 20px;
  line-height: 30px;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding: 0;
}

.sticky-bottom-form {
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 10px 0 0px 15px;
  width: 100%;
  z-index: 999;
  background: #006cb6;
  max-width: 1344px;
  margin: 0 auto;
  right: 0;
  border: 1px solid rgb(255 255 255 / 60%);
  border-bottom: 0;
}

.sticky-bottom-form .col-form {
  position: relative;
  width: 20%;
  float: left;
  padding: 0 15px;
  margin: 0 0 10px !important;
}

.col-form-title {
  display: none;
}

.sticky-bottom-form .col-form .form-control {
  padding: 10px 0;
  border-bottom: 1px solid #fff;
  color: #fff;
  line-height: 19px;
}

.copyright-detail p {
  display: inline-block;
}

.captcha-query,
.captcha-sticky-query {
  position: absolute;
  color: white;
  top: 50%;
  letter-spacing: 10px;
  font-size: 14px;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

#footer {
  padding: 100px 0 50px;
  background-color: #202020;
}

#home #footer {
  padding: 30px 0 80px;
}

.col-copyright:last-child {
  text-align: right;
}

.theme-block-img {
  position: relative;
  overflow: hidden;
}

.theme-block-img:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #28438c;
  z-index: 1;
  opacity: 0;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.theme-block .theme-block-icon {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  margin: 0 auto;
  left: 0;
  right: 0;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  z-index: 9;
}

.theme-block .theme-block-icon svg {
  width: 40px;
  height: 40px;
  color: #fff;
}

.theme-block:hover .theme-block-img:before {
  opacity: 0.5;
}

.theme-block:hover .theme-block-icon {
  opacity: 1;
}

.section-cms {
  min-height: calc(100vh - 161px);
}

.sticky-notice {
  background-color: #b50000;
  position: fixed;
  top: 94px;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 5px;
  color: #fff;
  font-weight: 600;
  text-align: center;
}

.sticky-notice span {
  font-size: 12px;
  line-height: 16px;
  display: block;
  animation: blinker 1.5s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.counter {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 6px;
}

.counter-block h3 {
  font-size: 32px;
  font-weight: 600;
}

.counter-block p {
  margin-top: 6px;
}

/* Accordion Css Start */

.collapse {
  overflow: hidden;
  transition: 0.5s cubic-bezier(0.5, 0, 0.3, 1);
  transition-property: opacity, height;
  will-change: opacity, contents;
}

.collapse:not(.is-active) {
  height: 0;
  opacity: 0;
}

.accordion {}

.accordion .card {
  overflow: hidden;
  margin: -1px -1px 1px;
  background: #f3f3f3;
  border: 1px solid #d9d9d9;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: contents;
  text-align: left;
}

.accordion .card:last-child {
  margin-bottom: -1px;
}

.accordion .card:not(:last-child):not(.is-active) {
  border-bottom-color: transparent;
}

.accordion .card.is-active {
  background: #fff;
}

.accordion .card.is-active+.card {
  border-top-color: transparent;
}

.accordion .accordion-header {
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  background-color: #008AEB;
  align-items: center;
  min-height: 56px;
  margin: 0;
  padding: 16px;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.theme-light-bg .accordion-header {
  border-bottom: 1px solid rgb(0 0 0 / 20%);
}

.accordion .accordion-header:hover .icon {
  opacity: 0.8;
}

.accordion .accordion-header.is-active .icon {
  transform: rotateX(180deg);
  opacity: 1;
}

.accordion .accordion-header .icon {
  width: 28px;
  height: 28px;
  fill: currentColor;
  opacity: 0.3;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-right: -0.25rem;
}

.accordion .accordion-content {
  padding: 20px 0 4px;
}

/* Accordion Css End */
.theme-light-bg {
  background-color: #e6f5ff;
}

.theme-bg {
  background-color: #006cb6;
}

.white-bg {
  background-color: #fff;
}

.gray-bg {
  background-color: #F9F9F9;
}

.theme-text {
  color: #006cb6 !important;
}

.white-text {
  color: #fff !important;
}

.call-btn {
  position: fixed;
  bottom: 74px;
  left: 20px;
  width: 40px;
  height: 40px;
  z-index: 888;
  display: block;
  text-align: center;
  border-color: #006cb6;
  background-color: #006cb6;
  animation: theme-pulse 2s infinite;
  border-radius: 100%;
  padding: 0;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
}

.call-btn svg {
  display: flex;
  width: 100%;
  height: 100%;
  padding: 7px;
}

@keyframes theme-pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgb(29 87 163);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

.theme-img-animation>picture>img {
  filter: blur(12px);
}

.theme-img-animation.eligibility>picture>img {
  filter: blur(0px);
  -webkit-filter: blur(0px);
}

.theme-block.theme-img-animation {
  overflow: hidden;
}

.plan-inquire-btn {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  max-width: fit-content;
  opacity: 1;
  visibility: visible;
  z-index: 9;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.sticky-btn-enquire.sticky-brochure {
  top: 380px;
  right: -70px;
}

.scroll-to-top {
  position: fixed;
  bottom: 74px;
  right: 30px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 89;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.5s ease;
  background-color: #006cb6;
  color: #fff;
  border-radius: 100%;
  border: 1px solid #ffffff30;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  -webkit-transform: translateY(100px);
  -moz-transform: translateY(100px);
  -ms-transform: translateY(100px);
  -o-transform: translateY(100px);
}

.scroll-to-top:hover {
  background: #0076bc;
}

.scroll-to-top.showBtn {
  opacity: 1;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}

.tab-list {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-list .tab a {
  position: relative;
  display: block;
  line-height: 1;
  text-align: center;
  background: transparent;
  cursor: pointer;
  user-select: none;
  font-size: 20px;
  font-weight: 700;
  color: #898989;
}

.tab-list .tab a:hover,
.tab-list .tab.is-active a {
  color: #0C398C;
}

.stock-image,
.actual-image,
.artistic-impression {
  position: relative;
}

.stock-image::after,
.actual-image::after,
.artistic-impression::after {
  content: "Artistic Impression";
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: auto;
  height: auto;
  max-width: fit-content;
  z-index: 9;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  text-shadow: 1px 1px #000000;
}

.stock-image::after {
  content: "Stock Image";
}

.actual-image::after {
  content: "Actual Image";
}

.tab-list-block {
  margin-bottom: 40px;
}

.social-media {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-icon {
  position: relative;
  color: #fff;
  display: block;
  max-width: 30px;
  transform: scale(1);
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}

.social-icon:hover {
  transform: scale(1.2);
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
}

.amenities-icon img {
  max-width: 60px;
  margin: 0 auto 12px;
}

.amenities-block {
  text-align: center;
  padding: 12px 0;
}

.amenities-col {
  width: 20%;
  flex: 0 0 auto;
}

.connectivity-detail {
  padding-left: 100px;
}

.highlight-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.highlight-item:not(:last-child) {
  margin-bottom: 12px;
}

.connectivity-detail .accordion-item.is-active svg path {
  stroke: #006cb6;
}

.connectivity-detail svg {
  width: 36px;
  height: 36px;
}

.list-point li:not(:last-child) {
  margin-bottom: 8px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-80 {
  margin-bottom: 80px;
}

.dark-blue {
  color: #0C398C;
}

.light-blue {
  color: #008AEB;
}

/* Header Section */

.header-contact-detail {
  position: fixed;
  z-index: 9999;
  padding: 7px 100px;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #000;
}

.contact-img img {
  width: auto;
  height: 20px;
}

.header-contact-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  line-height: normal;
}

.header-contact-detail-inner {
  display: flex;
  align-items: center;
}

.email-detail {
  border-right: 2px solid #ffffff20;
  padding-right: 20px;
  margin-right: 20px;
}

.header-contact,
.header-location-detail {
  display: flex;
  align-items: center;
  gap: 10px;
}

.col-menu ul {
  display: flex;
  justify-content: center;
  gap: 10px;
}

#header {
  margin-top: 34px;
}

.col-header:first-child {
  max-width: 300px;
  padding: 0;
  flex: 0 0 300px;
}

.col-header:last-child {
  text-align: right;
  padding: 0;
  max-width: 130px;
}

.theme-logo-wrapper {
  display: flex;
  align-items: center;
}

.ssx-logo {
  padding-right: 20px;
  margin-right: 20px;
  border-right: 1px solid #00000033;
}

.theme-btn {
  position: relative;
  padding: 10px 20px;
  border-top: 1px solid #0C398C;
  border-bottom: 1px solid #008AEB;
  display: block;
  width: fit-content;
}

/* Banner Section */

.banner-image {
  position: relative;
  clip-path: ellipse(calc(1920px - -600px) calc(960px - 10px) at center calc(100% - 950px));
  background-color: #fff;
}

.banner-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.banner-title {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  left: 0;
  color: #fff;
  text-align: center;
  z-index: 2;
  padding: 30px;
}

.down-arrow-btn {
  padding: 20px 20px;
  background-color: #fff;
  border-radius: 100%;
  bottom: -35px;
  left: 0;
  right: 0;
  margin: 0 auto;
  position: absolute;
  width: fit-content;
  box-shadow: 0px 4px 9.1px 0px #00000040;
  z-index: 5;
}

.down-arrow-btn svg {
  height: 30px;
  width: 30px;
  display: flex;
}

/* Program section */
.program-date span {
  display: block;
  color: #505050;
}

.program-detail h5 {
  color: #242424;
  font-size: 40px;
  text-transform: uppercase;
}

.ssx-wrapper {
  max-width: 1120px;
  margin: 0 auto;
}

.program-date h4 {
  font-size: 30px;
  font-weight: 700;
}

.section-ssx2025 {
  background-image: url(../images/home/program/ssx-bg-program.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* About SSX India */

.about-ssx-detail {
  max-width: 820px;
}

.section-about-ssx {
  background-image: url(../images/home/about-ssx/about-ssx.webp);
  background-size: auto;
  background-position: left;
  background-repeat: no-repeat;
}

/* gallery section */
.theme-radius img {
  border-radius: 5px;
}

.gallery-block-inner {
  position: relative;
}

.is-visible.is-active .gallery-block-inner::before {
  opacity: 0;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.gallery-block-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0.8;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.council-members::before,
.council-block::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 22%;
  background: linear-gradient(180deg, rgba(12, 57, 140, 0) 0%, #0C398C 100%);
  border-radius: 5px;
  z-index: 1;
}

.council-block {
  max-width: fit-content;
  margin: 0 auto;
  background-color: #fff;
  position: relative;
}

.out-site-slider {
  padding: 0 100px;
}

.out-site-slider .splide__arrow--prev {
  left: 0px;
}

.out-site-slider .splide__arrow--next {
  right: 0px;
}

.council-desc-block {
  position: absolute;
  bottom: 10px;
  left: 20px;
  color: #fff;
  z-index: 9;
  font-size: 16px;
}

.council-desc-block h4 {
  font-size: 20px;
  font-weight: 700;
}

/* Contact SSX Form */

.contact-ssx-wrapper {
  position: relative;
  clip-path: ellipse(calc(1920px + 600px) calc(960px - 10px) at center 950px);
}

.contact-ssx-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0000001A;
  z-index: 1;
}

.with-us-block {
  background-color: #0C398C;
  color: #fff;
  padding: 50px;
  border: 1px solid #B3B3B3;
  height: 100%;
}

.with-us-title small {
  display: block;
  font-size: 20px;
  font-weight: 700;
}

.with-us-title span {
  display: block;
  font-size: 50px;
  line-height: 60px;
  font-weight: 800;
  text-transform: uppercase;
}

.with-us-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.with-us-item span {
  font-size: 18px;
  font-weight: 700;
  display: block;
}

.with-us-item a {
  color: #fff;
}

.form-label {
  color: #242424;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 10px;
  display: block;
}

.submit-btn {
  color: #0C398C;
  background-color: transparent;
  padding: 10px 35px;
  border-left: unset;
  border-right: unset;
}

.cols-register {
  max-width: 1100px;
  padding: 50px;
  border: 1px solid #B3B3B3;
  border-radius: 5px;
}

.form-bg {
  background: linear-gradient(180deg, #F9F9F9 0%, #FFFFFF 100%);

}

.contact-ssx-form {
  max-width: 1720px;
  margin: 0 auto;
  padding: 100px;
  background-color: #F9F9F9;
  position: relative;
  top: -350px;
  margin-bottom: -350px;
}

/* Footer Section */

.footer::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #0C398C 0%, #008AEB 100%);
  top: 0;
  left: 0;
  opacity: 0.8;
}

.footer {
  position: relative;
  background-image: url(../images/footer/footer-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.position-relative {
  position: relative;
}

.footer-contact-detail {
  display: flex;
  justify-content: space-between;
}

.footer-link-form {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-link ul {
  display: flex;
  gap: 60px;
  font-size: 16px;
}

.footer-form {
  display: flex;
  align-items: end;
  gap: 20px;
}

.footer-wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding-bottom: 60px;
  margin-bottom: 30px;
  border-bottom: 1px solid #FFFFFF33;
}

.copyright-detail {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.white-btn span {
  color: #242424;
}

.white-btn {
  background-color: #fff;
  padding: 11px 35px;
  font-size: 14px;
  border: unset;
}

.footer-form label {
  color: #fff;
}

.footer-form .form-control {
  border: 1px solid #FFFFFF33;
  backdrop-filter: blur(10px);
  width: 300px;
  color: #fff;
}

.copyright-link a:not(:last-child) {
  padding-right: 10px;
  margin-right: 10px;
  border-right: 2px solid #FFFFFF33;
}

.process-guide-step {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.process-guide-step img {
  max-width: 60px;
}

.process-guide-step span {
  color: #242424;
  font-size: 32px;
  font-weight: 700;
}

.process-guide-content span {
  display: block;
}

.process-guide-content small {
  display: block;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #000;
  color: #505050;
  font-size: 16px;
}

.process-guide-block a {
  text-decoration: underline;
  font-size: 14px;
}

.process-guide-block {
  min-height: 500px;
  position: relative;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.process-guide-wrapper .column .process-guide-block:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #0C398C;
}

.process-guide-wrapper .column:nth-child(4) .process-guide-block:before,
.process-guide-wrapper .column:nth-child(3) .process-guide-block:before {
  background-color: #008AEB;
}

.process-guide-wrapper .column:nth-child(even) .process-guide-block {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}


/* ABOUT PAGE */
.about-ssx-list p {
  padding-left: 10px;
  color: #000000;
  border-left: 1px solid #0C398C;
}

.ssx-logo-small {
  max-width: fit-content;
}

.contact-ssx-form.contact-us {
  top: unset;
  margin-bottom: unset;
}

.past-event h6 {
  font-size: 18px;
  line-height: normal;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.past-event-image {
  margin-bottom: 15px;
}

.council-members,
.past-event-image {
  position: relative;
  overflow: hidden;
}

.council-members:hover img,
.past-event:hover .past-event-image img {
  transform: scale(1.1);
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.theme-btn span,
.council-members img,
.past-event-image img {
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}


.theme-btn:hover span {
  color: #fff;
  position: relative;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  z-index: 1;
}

.theme-btn::after,
.theme-btn::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  height: 0%;
  width: 100%;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.theme-btn:hover::before,
.theme-btn:hover::after {
  height: 100%;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.theme-btn::after {
  top: 0;
  background-color: #0C398C;
}

.theme-btn::before {
  bottom: 0;
  background-color: #008AEB;
}

.council-members {
  max-width: fit-content;
  margin: 0 auto;
  background-color: #F9F9F9;
  position: relative;
}

.upcoming-event-detail {
  max-width: 520px;
  margin: 0 auto;
}

.upcoming-event-content h6 {
  font-size: 20px;
  line-height: normal;
  margin-bottom: 5px;
}

.upcoming-event-content span {
  display: block;
  margin-bottom: 5px;
}

.upcoming-event-wrapper {
  border: 1px solid #00000033;
  border-radius: 5px;
  border-left: unset;
}

.counter-ineer {
  display: flex;
  align-items: center;
  margin: 0 auto 20px;
  max-width: fit-content;
  color: #000;
}

.counter-ineer img {
  max-width: fit-content;
}

.counter-block small {
  font-size: 20px;
  color: #242424;
}

.counter-ineer h3 {
  font-size: 40px;
  line-height: normal;
  padding-left: 20px;
  margin-left: 20px;
  border-left: 1px solid #00000033;
}

.normal-btn {
  padding: 15px 50px;
  border-radius: 5px;
  color: #fff;
}

.blue-btn {
  background-color: #0C398C;
  border: 1px solid #0C398C;
}

.lightblue-btn {
  background-color: #008AEB;
  border: 1px solid #008AEB;
}

.register-btns {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* FEES STRUCTURE */

.fees-structure-header {
  display: flex;
  justify-content: space-between;
}

.fees-structure table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}


.fees-structure thead tr:first-child th {
  background: #043180;
  color: #fff;
  padding: 14px;
  font-weight: 600;
  max-width: 40px;
  border: 1px solid #043180;
  font-size: 13px;
}

.fees-structure thead tr th:nth-child(2) {
  background-color: #008AEB;
}

.fees-structure tbody tr th,
.fees-structure tbody tr td {
  padding: 14px 10px;
  border: 1px solid #0C398C;
}

.fees-structure tbody tr th {
  background: #ffffff;
  text-align: center;
}

.fees-structure tbody .fees-structure-block td {
  text-align: center;
  padding: 10px 20px;
  font-weight: 600;
  color: #043180;
  background: #f8f9fc;
}

.note {
  font-size: 14px;
  color: #555;
  padding: 12px 0;
  border-top: 1px solid #d3d3d3;
  background: #fff;
}

.normal-btn:hover {
  background-color: #fff;
}

.mg-auto {
  margin: 0 auto;
}

.order-2 {
  order: 2;
}

.gallery-slider3,
.gallery-slider1 {
  margin-bottom: 20px;
}

.title-tab {
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.tab-list .tab:first-child a {
  margin-right: 10px;
  padding-right: 10px;
  border-right: 1px solid #898989;
}


/* DR Model */

.model-dr h2 {
  color: #0C398C;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.model-dr h3 {
  color: #000000;
  font-size: 16px;
  margin: 10px 0;
  font-weight: 500;
}

strong {
  color: #0C398C;
}

.references {
  display: flex;
  flex-wrap: wrap;
}

.ref:first-child {
  padding-right: 10px;
  margin-right: 10px;
  border-right: 1px solid #008AEB;
}

.ref {
  padding: 10px;
}

.ref strong {
  display: block;
  margin-bottom: 4px;
}

.model-dr p {
  max-width: 800px;
}


.close-model {
  position: absolute;
  top: 10px;
  right: 10px;
}

.member-detile .theme-modal-card {
  max-height: 600px;
}

.council-member-page-slider {
  display: none;
}

.footer-link a:hover {
  border-bottom: 2px solid #fff;
  color: #fff;
}

.footer-link a {
  border-bottom: 2px solid transparent;
  margin-bottom: 5px;
  display: block;
}

.menu-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-block {
  position: relative;
}

.menu-block:hover .menu-dropdown {
  top: 40px;
  opacity: 1;
  visibility: visible;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.menu-dropdown {
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  padding: 10px;
  margin: 0 auto;
  background-color: #0c398c;
  border: 1px solid #0c398c;
  border-radius: 5px;
  width: 220px;
  opacity: 0;
  visibility: hidden;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.menu-dropdown a:not(:last-child) {
  border-bottom: 1px solid #FFFFFF33;
}

.menu-dropdown a {
  display: block;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
}

.menu-dropdown::before {
  position: absolute;
  content: "";
  left: 40px;
  top: -10px;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background-color: #0C398C;
  width: 20px;
  height: 10px;
}

.col-menu li {
  padding: 10px 20px;
}

.menu-dropdown a:hover {
  background-color: #fff;
  color: #0c398c;
}

.menu-block:hover svg path {
  stroke: #006cb6;
}

.mobile-menu {
  display: none;
}

.fees-structure-title h4 {
  color: #0c398c;
  font-size: 24px;
  font-weight: 700;
}

.dr-details {
  background-color: #f7f7f7;
  padding: 10px 20px;
  margin-bottom: 20px;
  border-radius: 10px;
}

.glimpses-dropdown select {
  width: 330px;
  padding: 10px 25px 10px 15px;
  font-size: 16px;
  color: #505050;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url(../images/icons/drop-dwon.svg);
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.glimpses-dropdown select:focus {
  outline: none;
  border-color: #2a7ae4;
}

.glimpses-dropdown {
  display: inline-block;
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.header-contact-detail a:hover {
  color: #fff;
}

.header-contact-detail a {
  color: #d2d2d2;
}

.registration-title {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
}

.input-group> :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: -1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.422rem 0.75rem;
  color: #8D9EA8;
  text-align: center;
  white-space: nowrap;
  background-color: #f6f6f6;
  background-clip: padding-box;
  border-radius: 0;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.file-upload>input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.input-group-merge .form-control:not(:last-child) {
  padding-right: 0;
  border-right: 0;
}

.input-group>.form-control,
.input-group>.form-select,
.input-group>.form-floating {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  top: 30%;
  height: 22px;
  width: 22px;
  right: 0;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background: #008AEB;
  color: #ffffff;
}

.select2-container--default .select2-results__option[aria-selected="true"] {
  background-color: #0C398C;
  color: #ffffff;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  font-weight: 500;
  color: #8D9EA8;
  line-height: 48px;
  padding-left: 16px;
  font-size: 14px;
}

.career-block .select2-container--default .select2-selection--single {
  border: 1px solid #00000010;
  border-radius: 5px;
  height: 48px;
}

.remove-btn,
.add-btn {
  background: transparent;
  border-left: unset;
  border-radius: 5px;
  border: 1px solid #00000010;
}

#authorContainer .form-control {
  border-right: unset;
}

.abstracts-block-note strong {
  display: block;
  margin-bottom: 3px;
}

.abstracts-block-note li:not(:last-child) {
  margin-bottom: 10px;
}

.abstracts-list {
  gap: 10px 30px;
  flex-wrap: wrap;
}

.career-block {
  padding: 40px;
  border: 1px solid #00000020;
  border-radius: 5px;
}

/* Css 10-01-2026 */

.reward-img img {
  width: auto;
  height: 100px;
}

.reward-block {
  display: flex;
  align-items: center;
  gap: 24px;
}

.column.cols-reward:not(:last-child) {
  border-right: 1px solid #00000033;
}

.reward-wrapper {
  padding: 50px 120px;
}

.conference-tab .tab:first-child a {
  margin-right: 0px;
  padding-right: 0px;
  border-right: unset;
}

.conference-tab .tab a:hover,
.tab-list .tab.is-active a {
  background-color: #0C398C;
  color: #fff;
}

.conference-tab .tab a {
  padding: 15px 30px !important;
  border: 1px solid #00000033 !important;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  color: #000000;
  font-weight: 500;
}

.conference-tab {
  gap: 20px;
}

.conference-img img {
  max-width: 800px;
}

.conference-wrapper {
  border: 1px solid #0C398C;
  border-radius: 20px;
  height: 100%;
}

.conference-block {
  text-align: center;
}

.conference-block h6 {
  padding: 10px 30px;
  font-weight: 600;
  font-size: 18px;
  line-height: normal;
  text-transform: uppercase;
}

.top-right-radius {
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
}

.dark-blue-bg {
  background-color: #0C398C;
}

.light-blue-bg {
  background-color: #008AEB;
}

.light-blue-bg-200 {
  background-color: #008aeb0d;
}

.conference-inner-detail {
  padding: 15px 30px;
  text-align: center;
}

.conference-inner-detail p {
  color: #000;
  font-size: 18px;
  line-height: 28px;
}

.conference-qr-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.qr-img img {
  width: auto;
  height: 160px;
  margin: 0 auto;
}

.qr-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.share-link {
  display: flex;
  align-items: start;
  gap: 5px;
  color: #898989;
  text-align: left;
  font-weight: 500;
  text-decoration: underline;
}

.conference-title h3 {
  text-transform: uppercase;
  font-size: 30px;
  line-height: normal;
  color: #0C398C;
  font-weight: 800;
  margin-bottom: 20px;
}

.topic-block {
  border: 1px solid #0C398C;
  padding: 20px;
  border-radius: 20px;
  height: 100%;
}

.conference-desc .list-point {
  padding-left: 10px;
}

.conference-desc .list-point li:before {
  background-color: #898989;
}

.section-title h4 {
  font-size: 34px;
  line-height: normal;
  font-weight: 700;
  text-transform: uppercase;
}

.abstract-wrapper {
  border: 1px solid #0C398C;
  border-radius: 20px;
  padding: 50px;
}

.organisers-logo img {
  width: 100%;
  height: 100%;
  max-width: 200px;
  max-height: 200px;
}

.organisers-logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.organisers-logo:not(:last-child) {
  border-right: 1px solid #d8d8d8;
  padding-right: 30px;
  margin-right: 30px;
}

.table-outer-border {
  border: 2px solid #0087E0;
  border-radius: 12px;
  overflow: hidden;
  min-width: 900px;
}

.budget-custom-table {
  margin-bottom: 0 !important;
  border-collapse: collapse;
  width: 100%;
  background: #fff;
}

.budget-custom-table thead th {
  color: #FFFFFF !important;
  text-align: center;
  vertical-align: middle !important;
  padding: 20px 10px !important;
  font-size: 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.budget-custom-table tbody td {
  border: 1px solid #E6EAF0 !important;
  vertical-align: middle !important;
  padding: 20px 10px !important;
  color: #555;
  font-size: 14px;
}

/* Wrapper */
.schedule-tabs {
  width: 100%;
}

/* LEFT TAB NAV */
.schedule-tabs__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* RIGHT CONTENT */
.schedule-tabs__content {
  width: 100%;
}

/* CONTENT PANELS */
.schedule-tabs__panel {
  display: none;

}

.schedule-tabs__btn {
  cursor: pointer;
}

.schedule-tabs__panel.is-active {
  display: block;
}

.date-block span {
  display: block;
  text-align: center;
}

.date-block {
  width: fit-content;
  border: 1px solid #898989;
  margin: 0 auto;
}

.date-block .date {
  font-size: 24px;
  line-height: normal;
  font-weight: 700;
  color: #898989;
}

.date-block .month {
  font-size: 12px;
  line-height: normal;
  font-weight: 500;
  text-transform: uppercase;
  color: #898989;
}

.date-block .year {
  background-color: #F9F9F9;
  color: #898989;
  padding: 5px 20px;
}

.date-with-month {
  padding: 20px;
}

/* active tab */

.schedule-tabs__btn.is-active .date-block {
  border: 1px solid #0C398C;
}

.schedule-tabs__btn.is-active .date-block .date-with-month .date {
  color: #0C398C;
}

.schedule-tabs__btn.is-active .date-block .date-with-month .month {
  color: #0C398C;
}

.schedule-tabs__btn.is-active .date-block .year {
  background-color: #0C398C;
  color: #fff;
}

/*  active tab */

.schedule-tabs__panel h5 {
  color: #000;
  font-weight: 700;
}

.my_table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
}

.my_table th {
  background: #f6f6f6;
  color: #333;
  font-weight: 600;
  text-align: left;
  padding: 14px 16px;
  font-size: 15px;
}

/* Time column ko specific width do */
.my_table th:first-child,
.my_table td:first-child {
  width: 120px;
  white-space: nowrap;
}

.my_table td {
  padding: 16px;
  font-size: 14px;
  color: #898989;
  font-weight: 600;
}

.my_table tr {
  border-bottom: 1px solid #e6e6e6;
}

.my_table tr:last-child {
  border-bottom: none;
}

.text-black {
  color: #000 !important;
  font-size: 16px !important;
  font-weight: 500 !important;

}

/* Css 10-01-2026 end */