/* ------ Navabar ------ */
.nav-logo {
  width: 70px;
}
.navbar {
  position: fixed;
  background-color: var(--primary-color);
  font-weight: 600;
  display: inline-block;
  z-index: 1000;
  width: 100%;
}

.nav-link:focus,
.nav-link:hover {
  color: #fff !important;
  position: relative;
  display: inline-block;
}
.dropdown:hover .dropdown-menu{
    display: block;
}

.dropdown-menu{
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.dropdown:hover .dropdown-menu{
    opacity: 1;
    visibility: visible;
}


/*.hover-effect::after {*/
/*  content: "";*/
/*  bottom: 0px;*/
/*  left: 0;*/
/*  position: absolute;*/
/*  height: 2px;*/
/*  margin:auto;*/
/*  width: 0%;*/
/*  transition: width 0.3s ease;*/
/*  background-color: #fff;*/
/*}*/
/*.hover-effect:hover::after {*/
/*  width: 100%;*/
/*}*/

.dropdown-toggle::after {
  content: "\f107";
  font-family: "Font Awesome 7 Free";
  border: none;
  font-weight: 900;
  display: inline-block;
  vertical-align: 0rem !important;
}

.navbar-nav a {
  color: #fff;
}
.navbar:focus-visible{
    outline:none !important;
}
/* ------ Navabar End------ */

/* ----- Hero Section ------ */
/* .hero-section {
  padding-top: 96px;
} */
.hero-slider-item {
  display: block;
  position: relative;
  height: 100%;
}

.hero-slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-content {
  display: inline-block;
  position: absolute;
  transform: translateY(-50%);
  left: 10%;
  top: 50%;
  z-index: 2;
}

.hero-content ul li:nth-child(1),
.hero-content ul li:nth-child(3) {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, calc(3vw + 1rem), 3rem);
  line-height: 2rem;
  font-weight: 500;
  font-size: 35px;
}

.hero-content ul li:nth-child(2),
.hero-content ul li:nth-child(4) {
  font-size: clamp(1.8rem, calc(1.8vw + 0.5rem), 1.8rem);
  font-weight: 600;
  line-height: 2.5rem;
}
/* ----- Hero Section End ------ */

/* ------ About Section ------- */
.about-left-box {
  position: relative;
  /* min-height: 600px; */
}
.dec-1 {
  position: absolute;
  top: 50px;
  right: 50px;
  animation: rotate-1 20s ease infinite;
}
.dec-2 {
  position: absolute;
  top: 50%;
  animation: rotate-2 20s ease infinite;
  transform: translateY(-50%);
  right: 10%;
}

@keyframes rotate-1 {
  to {
    transform: rotate(360deg);
  }
}

@keyframes rotate-2 {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}
.theme {
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 20px 7px 20px 7px;
}
.theme .section-title {
  color: #fff;
}

/* ------ About Section End ------- */

/* ------ Info Section Start ------ */
.info-section {
  position: relative;
  overflow: hidden;
  max-height: 700px;
}

.wave-wrapper {
  overflow: hidden;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.wave-track {
  display: flex;
  width: max-content;
  animation: scroll 50s linear infinite;
}

.wave-track img {
  width: 100vw;
  flex-shrink: 0;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100vw);
  }
}
.info-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.info-box {
  width: 500px;
  overflow: hidden;
  height: 500px;
  position: relative;
}
.bg-circle {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  width: 400px;
  border-radius: 50%;
  border: 2px dotted #fff;
  height: 400px;
  z-index: 2;
  left: 50%;
}

.circle-div {
  position: absolute;
  width: 150px;
  height: 150px;
  padding: 0.5rem;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  overflow: hidden;
  z-index: 3;
  top: 75px;
  left: 50%;
  color: #fff;
  border: 2px dotted var(--primary-color);
  text-align: center;
  background-color: #18003a;
  transition: background-color 0.5s linear;
}
.active-circle {
  background-color: var(--primary-color);
}

.circle-div:nth-child(2) {
  top: 50%;
  left: 85%;
}

.circle-div:nth-child(3) {
  top: 85%;
  left: 50%;
}

.circle-div:nth-child(4) {
  top: 50%;
  left: 75px;
}

.info-slide-content {
  color: #fff;
  background: #18003a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: unset 1px 1px 10px 0px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transition: all 0.3s linear;
  padding: 2rem;
  border-radius: 7px 20px 7px 20px;
}

.info-slide-content ul li {
  position: relative;
  padding-left: 20px;
}

.info-slide-content ul li::before {
  content: "";
  position: absolute;
  width: 7px;
  transition: all 0.3s linear;
  height: 7px;
  left: 0px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--primary-color);
}
.info-slide-content .section-title {
  background: unset;
  color: var(--primary-color);
  transition: all 0.3s linear;
}

.gear-image {
  width: 200px;
  position: absolute;
  top: 0px;
  left: 0px;
  height: 200px;
  animation: rotate-gear 40s linear infinite;
}

.gear-image:nth-child(2) {
  width: 150px;
  height: 150px;
  top: 130px;
  left: 115px;
}

.gear-image:nth-child(3) {
  width: 120px;
  height: 120px;
  top: 165px;
  left: 20px;
}
@keyframes rotate-gear {
  to {
    transform: rotate(360deg);
  }
}

/* ------ Info Section End------ */

/* ------ Topic section Start ------- */
.topic-section {
  /* min-height: 100vh; */
  height: 100%;
}
.bg-image {
  opacity: 0.3;
}
/* ------ Topic section End ------- */

/* ------ footer Section start ------ */
.footer-section {
  position: relative;
  background-image: url("../images/shape-59.png");
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 330px;
}

#footer-desc-1 {
  position: absolute;
  bottom: 30px;
  left: 40px;
  opacity: 0.3;
  animation: rotate-circle 40s linear infinite;
}

#footer-desc-2 {
  position: absolute;
  top: 30px;
  right: 40px;
  opacity: 0.3;
  animation: rotate-circle 40s linear infinite;
}

@keyframes rotate-circle {
  to {
    transform: rotate(360deg);
  }
}

.footer-section a,
.text-light {
  color: #fff;
  opacity: 0.7;
}
.copyright {
  height: 70px;
  background-color: #18003a;
}

.social img {
  width: 40px;
  height: 40px;
}
/* .................................................... */

/************************************/
/*** 	  06. Our Services css 	  ***/
/************************************/

.our-services {
  padding: 80px 0;
  background: linear-gradient(
    288deg,
    rgb(67 0 81) 0%,
    rgb(175 62 175) 50%,
    rgb(58 0 69) 100%
  );
}

.service-box {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #ffffff0f;
  background-color: #1b1b1b33;
  background-image: url("../images/service-box-bg-img-1.png");
  background-repeat: no-repeat;
  background-size: auto;
  background-position: top left;
  border-radius: 20px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  overflow: hidden;
}

.service-box-content {
  margin: 40px;
}

.service-box-content h3 {
  font-size: 20px;
  line-height: 1.4em;
  margin-bottom: 15px;
  color: #fff;
}

.service-box-content h3 a {
  color: inherit;
}

.service-box-content p {
  margin-bottom: 20px;
  color: #dfdede;
}

.service-box-content ul {
  list-style: disc;
  margin: 0;
  padding-left: 20px;
}

.service-box-content ul li {
  line-height: 1.5em;
  text-transform: capitalize;
  margin-bottom: 15px;
  color: #dfdede;
}

.service-box-content ul li:last-child {
  margin-bottom: 0;
}

.service-box-content ul li::marker {
  color: var(--accent-color);
}

.service-box-image {
  border-radius: 10px;
  margin: 0 20px 20px;
  overflow: hidden;
}

.service-box-image figure {
  display: block;
}

.service-box-image img {
  width: 100%;
  aspect-ratio: 1 / 0.65;
  object-fit: cover;
}

.service-box-list .service-box {
  background-image: url("../images/service-box-bg-img-2.png");
  background-position: center center;
  background-size: cover;
}

.service-box-list .service-box-content {
  margin: 40px 60px 40px 40px;
}

.service-box .icon-box {
  position: absolute;
  bottom: -10px;
  right: -10px;
}

.service-box .icon-box img {
  width: 100%;
  max-width: 80px;
}

.service-cta-box {
  position: relative;
  background: url("../images/service-2.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  border: 1px solid var(--divider-color);
  border-radius: 20px;
  align-content: end;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 40px;
  overflow: hidden;
}

.service-cta-box::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-color);
  opacity: 20%;
  height: 100%;
  width: 100%;
}

.service-cta-box .icon-box,
.service-cta-content,
.service-cta-btn {
  position: relative;
  z-index: 1;
}

.service-cta-box .icon-box {
  margin-bottom: 30px;
}

.service-cta-box .icon-box img {
  width: 100%;
  max-width: 50px;
}

.service-cta-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #fff;
}

.service-cta-content p {
  color: #fff;
  margin-bottom: 0;
}

.service-cta-btn {
  margin-top: 20px;
}

.section-footer-text {
  margin-top: 30px;
  text-align: center;
}

.how-work-video-content .section-footer-text {
  margin: 30px 30px 0 30px;
}

.section-footer-text p {
  color: var(--primary-color);
  margin-bottom: 0;
}

.section-footer-text span {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  background: linear-gradient(
    90deg,
    var(--accent-color) 0%,
    var(--accent-secondary-color) 50%,
    var(--accent-color) 100%
  );
  background-size: 200% auto;
  padding: 4px 10px;
  border-radius: 100px;
  margin-right: 5px;
  transition: all 0.4s ease-in-out;
}

.section-row .section-title {
  margin-bottom: 0;
}

.section-title.section-title-center {
  width: 100%;
  text-align: center;
  margin: 0 auto;
  color: #fff;
}

.section-title {
  margin-bottom: 40px;
}

.section-title h3 {
  display: inline-block;
  position: relative;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2em;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-color);
  background: var(--divider-color);
  border: 1px solid var(--divider-color);
  border-radius: 100px;
  padding: 10px 50px;
  margin-bottom: 20px;
}

.section-title h3::before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
  background: url("../images/icon-sparkle.svg") no-repeat;
  background-position: left center;
  background-size: cover;
  width: 16px;
  height: 16px;
}

.section-title h3::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  background: url("../images/icon-sparkle.svg") no-repeat;
  background-position: right center;
  background-size: cover;
  width: 16px;
  height: 16px;
}

.section-title h1 {
  font-size: 56px;
  line-height: 1.1em;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0;
  cursor: none;
}

.section-title h2 {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 0;
  cursor: none;
}

.section-title h1 span,
.section-title h2 span {
  font-family: var(--accent-font);
  font-weight: 700;
  background: linear-gradient(
    90deg,
    var(--accent-color) 0%,
    var(--accent-secondary-color) 50%,
    var(--accent-color) 100%
  );
  background-size: 200% auto;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.4s ease-in-out;
}

.section-title h1:hover span,
.section-title h2:hover span {
  background-position: right center;
}

.section-title p {
  margin-top: 20px;
  margin-bottom: 0;
}

.section-title-content p {
  margin: 0;
}

.section-btn {
  text-align: right;
}

.section-content-btn .section-btn {
  text-align: left;
  margin-top: 30px;
}

.help-block.with-errors ul {
  margin: 0;
  text-align: left;
}

.help-block.with-errors ul li {
  color: var(--error-color);
  font-weight: 500;
  font-size: 14px;
}

.orbia-iconic-box.style-one {
  position: relative;
  background-color: #d7acf352;
  padding: 40px 40px 35px;
  border-radius: 20px;
  border: 1px solid transparent;
  min-height: 335px;
}

.orbia-iconic-box.style-one:hover .box-border {
  visibility: visible;
  opacity: 1;
}

.orbia-iconic-box.style-one:hover .icon-wrap .icon img {
  -webkit-filter: brightness(1) invert(0);
  filter: brightness(1) invert(0);
  opacity: 1;
}

.orbia-iconic-box.style-one .box-border {
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  background: linear-gradient(264deg, #f63 -31.73%, #6d2cf9 120.95%);
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.orbia-iconic-box.style-one .icon-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.orbia-iconic-box.style-one .icon-wrap .number {
  font-family: var(--heading-font);
  font-size: 54px;
  color: #797e8833;
}

.orbia-iconic-box.style-one .icon-wrap .icon img {
  -webkit-filter: brightness(10) invert(1);
  filter: brightness(10) invert(1);
  opacity: 0.1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.orbia-iconic-box.style-one .content {
  padding-top: 70px;
}

@media (max-width: 1650px) {
  .orbia-iconic-box.style-one .content {
    padding-top: 100px;
  }
}

.orbia-iconic-box.style-one .content h4.title {
  margin-bottom: 20px;
  font-size: 24px;
}

@media (max-width: 1650px) {
  .orbia-iconic-box.style-one .content h4.title {
    font-size: 22px;
  }
}

.orbia-work-sec .orbia-content-box {
  padding-right: 40px;
}

@media screen and (max-width: 1199.98px) {
  .orbia-work-sec .orbia-content-box {
    padding-right: 0;
  }
}

.orbia-work-sec .orbia-image {
  margin-right: -30px;
}

@media screen and (max-width: 1199.98px) {
  .orbia-work-sec .orbia-image {
    margin-right: 0;
  }
}

.orbia-work-sec .orbia-image img {
  border-radius: 30px;
}
.orbia-content-item.style-three {
  border-radius: 30px;
  background-color: transparent;
  border: 1px solid #d8dde1;
  padding: 23px 30px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin-bottom: 30px;
}

@media (max-width: 767.98px) {
  .orbia-content-item.style-three {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.orbia-content-item.style-three:hover {
  background-color: #f8f8f8;
  border-color: transparent;
}

.orbia-content-item.style-three .sn-number {
  margin-right: 15px;
  margin-top: -2px;
  font-size: 24px;
  color: var(--heading-color);
  font-weight: 500;
  font-family: var(--heading-font);
}

@media (max-width: 767.98px) {
  .orbia-content-item.style-three .sn-number {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

.orbia-content-item.style-three .content .title {
  font-size: 24px;
  margin-bottom: 5px;
}

@media (max-width: 767.98px) {
  .orbia-content-item.style-three .content .title {
    font-size: 18px;
  }
}

.team-thumb-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 15px;
  background-color: var(--gray-color);
  padding: 10px;
  border: 1px solid transparent;
}

.team-thumb-item .thumb {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100px;
  margin-right: 30px;
}

.team-thumb-item .thumb img {
  width: 100%;
  border-radius: 10px;
}

.team-thumb-item .content h5 {
  margin-bottom: 10px;
}

.orbia-team-item.style-two {
  border: 1px solid #b4b4b4;
  padding: 20px;
  border-radius: 30px;
}

.orbia-team-item.style-two:hover .member-image {
  background-color: var(--heading-color);
}

.orbia-team-item.style-two:hover .member-image .social-box {
  right: 20px;
}

.orbia-team-item.style-two .member-image {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 20px 20px 0;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.orbia-team-item.style-two .member-image .shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.orbia-team-item.style-two .member-image .social-box {
  position: absolute;
  top: 20px;
  right: -100%;
  padding: 10px;
  background-color: #b4b4b4;
  border-radius: 100px;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.orbia-team-item.style-two .member-image .social-box a {
  display: block;
  color: var(--white-color);
}

.orbia-team-item.style-two .member-info {
  padding: 25px 10px 5px;
}
.orbia-team-item.style-two .member-info .title{
  font-size: 18px;
}
.orbia-team-item.style-two .member-info .position{
  font-size: 15px;
}
.team-content-box {
  background-color: var(--gray-color);
  border: 1px solid #b4b4b4;
  border-radius: 30px;
  padding: 30px 30px 40px;
  position: relative;
  z-index: 1;
}

.team-content-box .shape {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.team-content-box .content h4 {
  margin-bottom: 20px;
}

.team-content-box .content p {
  font-size: 14px;
  line-height: 24px;
  padding-bottom: 104px;
}

@media (max-width: 1650px) {
  .team-content-box .content p {
    padding-bottom: 48px;
  }
}

@media screen and (min-width: 991.98px) and (max-width: 1199.98px) {
  .team-content-box .content p {
    padding-bottom: 155px;
  }
}

@media screen and (max-width: 991.98px) {
  .team-content-box .content p {
    padding-bottom: 104px;
  }
}

.orbia-team_one .shape {
  position: absolute;
  bottom: 55px;
  right: 55px;
  z-index: -1;
}

@media screen and (max-width: 991.98px) {
  .orbia-team_one .shape {
    bottom: 0;
  }
}

@media screen and (max-width: 991.98px) {
  .orbia-team_one .shape {
    display: none;
  }
}

.orbia-team_two {
  padding-top: 100px;
  padding-bottom: 100px;
}
.orbia-team_two .text-box h2 {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--primary-color);
  color: transparent;
  font-size: 84px;
  font-weight: 700;
}

.team-details-wrapper .member-image-wrap {
  background-color: var(--gray-color);
  border-radius: 20px;
  padding: 20px;
}

.team-details-wrapper .member-image-wrap .member-image img {
  width: 100%;
  border-radius: 20px;
}

.team-details-wrapper .member-image-wrap .member-info {
  padding: 20px 20px 0;
}

.team-details-wrapper .member-image-wrap .member-info .position {
  margin-bottom: 20px;
}

.team-details-wrapper .member-image-wrap .member-info .info-list {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  margin-bottom: 20px;
}

.team-details-wrapper .member-image-wrap .member-info .info-list h6 {
  margin-bottom: 5px;
}

.team-details-wrapper .member-image-wrap .member-info .social-box a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  font-size: 12px;
}

.team-details-wrapper
  .member-image-wrap
  .member-info
  .social-box
  a:not(:last-child) {
  margin-right: 5px;
}

.team-details-wrapper .member-image-wrap .member-info .social-box a:hover {
  background-color: var(--secondary-color);
  color: var(--white-color);
  border-color: transparent;
}

.team-details-wrapper .team-details-content .content-box h3 {
  margin-bottom: 20px;
}

@media (max-width: 767.98px) {
  .team-details-wrapper .team-details-content .content-box h3 {
    font-size: 24px;
  }
}

.team-details-wrapper .team-details-content .content-box p {
  margin-bottom: 25px;
}

.team-details-wrapper .team-details-content .contact-wrapper h3 {
  margin-bottom: 30px;
}

@media (max-width: 767.98px) {
  .team-details-wrapper .team-details-content .contact-wrapper h3 {
    font-size: 24px;
  }
}

.team-details-wrapper .team-details-content .contact-wrapper .form_control {
  width: 100%;
  padding: 14px 25px;
  border-radius: 50px;
  border: 1px solid var(--border-color);
  margin-bottom: 30px;
}

.team-details-wrapper
  .team-details-content
  .contact-wrapper
  .theme-btn.theme-btn {
  width: 100%;
}

/* ------ Team ------ */
.team-thumb-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 15px;
  background-color: var(--gray-color);
  padding: 10px;
  border: 1px solid transparent;
}

.team-thumb-item .thumb {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100px;
  margin-right: 30px;
}

.team-thumb-item .thumb img {
  width: 100%;
  border-radius: 10px;
}

.team-thumb-item .content h5 {
  margin-bottom: 10px;
}

.orbia-team-item.style-two {
  border: 1px solid #b4b4b4;
  padding: 20px;
  border-radius: 30px;
}

.orbia-team-item.style-two:hover .member-image {
  background-color: var(--heading-color);
}

.orbia-team-item.style-two:hover .member-image .social-box {
  right: 20px;
}

.orbia-team-item.style-two .member-image {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 20px 20px 0;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.orbia-team-item.style-two .member-image .shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.orbia-team-item.style-two .member-image .social-box {
  position: absolute;
  top: 20px;
  right: -100%;
  padding: 10px;
  background-color: #b4b4b4;
  border-radius: 100px;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.orbia-team-item.style-two .member-image .social-box a {
  display: block;
  color: var(--white-color);
}

.orbia-team-item.style-two .member-info {
  padding: 5px 10px 5px;
}

.orbia-team-item.style-two .member-info a {
  color: #6d2cf9;
}

.team-content-box {
  background-color: var(--gray-color);
  border: 1px solid #b4b4b4;
  border-radius: 30px;
  padding: 30px 30px 40px;
  position: relative;
  z-index: 1;
}

.team-content-box .shape {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.team-content-box .content h4 {
  margin-bottom: 20px;
}

.team-content-box .content p {
  font-size: 14px;
  line-height: 24px;
  padding-bottom: 104px;
}

@media (max-width: 1650px) {
  .team-content-box .content p {
    padding-bottom: 48px;
  }
}

@media screen and (min-width: 991.98px) and (max-width: 1199.98px) {
  .team-content-box .content p {
    padding-bottom: 155px;
  }
}

@media screen and (max-width: 991.98px) {
  .team-content-box .content p {
    padding-bottom: 104px;
  }
}

.orbia-team_one .shape {
  position: absolute;
  bottom: 55px;
  right: 55px;
  z-index: -1;
}

@media screen and (max-width: 991.98px) {
  .orbia-team_one .shape {
    bottom: 0;
  }
}

@media screen and (max-width: 991.98px) {
  .orbia-team_one .shape {
    display: none;
  }
}

.orbia-team_two {
  padding-top: 100px;
  padding-bottom: 100px;
}
.orbia-team_two .text-box h2 {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--primary-color);
  color: transparent;
  font-size: 84px;
  font-weight: 700;
}

.team-details-wrapper .member-image-wrap {
  background-color: var(--gray-color);
  border-radius: 20px;
  padding: 20px;
}

.team-details-wrapper .member-image-wrap .member-image img {
  width: 100%;
  border-radius: 20px;
}

.team-details-wrapper .member-image-wrap .member-info {
  padding: 20px 20px 0;
}

.team-details-wrapper .member-image-wrap .member-info .position {
  margin-bottom: 20px;
}

.team-details-wrapper .member-image-wrap .member-info .info-list {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  margin-bottom: 20px;
}

.team-details-wrapper .member-image-wrap .member-info .info-list h6 {
  margin-bottom: 5px;
}

.team-details-wrapper .member-image-wrap .member-info .social-box a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  font-size: 12px;
}

.team-details-wrapper
  .member-image-wrap
  .member-info
  .social-box
  a:not(:last-child) {
  margin-right: 5px;
}

.team-details-wrapper .member-image-wrap .member-info .social-box a:hover {
  background-color: var(--secondary-color);
  color: var(--white-color);
  border-color: transparent;
}

.team-details-wrapper .team-details-content .content-box h3 {
  margin-bottom: 20px;
}

@media (max-width: 767.98px) {
  .team-details-wrapper .team-details-content .content-box h3 {
    font-size: 24px;
  }
}

.team-details-wrapper .team-details-content .content-box p {
  margin-bottom: 25px;
}

.team-details-wrapper .team-details-content .contact-wrapper h3 {
  margin-bottom: 30px;
}

@media (max-width: 767.98px) {
  .team-details-wrapper .team-details-content .contact-wrapper h3 {
    font-size: 24px;
  }
}

.team-details-wrapper .team-details-content .contact-wrapper .form_control {
  width: 100%;
  padding: 14px 25px;
  border-radius: 50px;
  border: 1px solid var(--border-color);
  margin-bottom: 30px;
}

.team-details-wrapper
  .team-details-content
  .contact-wrapper
  .theme-btn.theme-btn {
  width: 100%;
}

/* ------ INTERNAL PAGE ABOUT US ------ */
.breadcrumb {
  min-height: 250px;
  background-image: url("../images/shape-58.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #18003a;
  color: #fff;
  border: 1px solid #000;
}

.section-internal-about-us {
  /*background: linear-gradient(*/
  /*  288deg,*/
  /*  rgb(67 0 81) 0%,*/
  /*  rgb(175 62 175) 50%,*/
  /*  rgb(58 0 69) 100%*/
  /*);*/
  position: relative;
  overflow: hidden !important;
  z-index: 1;
  min-height: 600px;
}

#internal-about-us-desc-1,
#internal-about-us-desc-2 {
  position: absolute;
  z-index: 3;
}

#internal-about-us-desc-1 {
  top: 0;
  left: 0;
  height: 100%;
}

.conference-image {
  width: 400px;
  height: 400px;
}

#internal-about-us-desc-2 {
  width: 400px;
  height: 400px;
  top: 50%;
  right: 20%;
  transform: translateY(-50%);
}

.aboult-list-group li {
  position: relative;
  padding-left: 20px;
}
.aboult-list-group li::before {
  content: "\f0ac";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  color: var(--primary-color);
}

/* ----- About the Host ----- */
.section-title-home {
  font-family: Arial, Helvetica, sans-serif;
  margin: 40px 0;
}

.highlight {
  color: var(--primary-color);
  font-weight: 900;
}

.section-title-home .small-title {
  font-size: 18px;
  font-weight: 600;
  color: #0033cc;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-title-home h2 {
  margin: 5px 0 10px;
  font-size: 28px;
  font-weight: 800;
  color: #0033cc;
  text-transform: uppercase;
}

.section-title-home .title-line {
  width: 280px;
  height: 3px;
  background-color: #0033cc;
}
@media (max-width: 768px) {
  .section-title-home h2 {
    font-size: 26px;
  }

  .section-title .title-line {
    width: 180px;
  }
}
.Exccommittee {
  background-image: url(../images/excbg.jpg);
  background-repeat: no-repeat;
  /*padding: 20px 10px; */
  padding-bottom: 40px;
  background-position: center top;
}
.highlighttext1 {
  padding: 6px 12px;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 186, 45, 1) 0%,
    rgba(0, 49, 147, 1) 70%
  );
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  position: relative;
  border-radius: 50px;
}
.highlighttext2 {
  padding: 10px 12px;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 186, 45, 1) 0%,
    rgba(0, 49, 147, 1) 70%
  );
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  position: relative;
  border-radius: 50px;
}
.shapeleftBorder1:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -1.25rem;
  min-width: 1.25rem;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 186, 45, 1) 0%,
    rgba(0, 49, 147, 1) 70%
  );
}
.shaperightBorder1:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -1.25rem;
  min-width: 1.25rem;
  height: 2px;
  background-image: linear-gradient(to right, #361238, #361238);
}
@media only screen and (max-width: 991px) {
  .Exccommittee {
    padding: 30px 10px;
  }
}
@media (min-width: 990px) {
  .text-lg-justify {
    text-align: justify;
  }
}
/*.section-title h2 {*/
/*  color: #0033cc;*/
/*}*/

.second-img-wrapper {
  margin-bottom: 1.5rem;
  justify-content: start;
}

.first-img-wrapper .invitation-img {
  width: 100%;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 76px 20px;
}

.first-img-wrapper .invitation-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  height: 550px;
}

.second-img-wrapper .invitation-img {
  width: 100%;
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: 325px;
  height: 325px;
  border-radius: 20px 76px;
}

.second-img-wrapper .invitation-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  height: 400px;
}

.why-this-conference {
  position: relative;
  min-height: 300px;
}
#why-this-conference-desc {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}

/* ------ Contact us ------ */
.contact-card-heading {
  color: #18003a;
  font-weight: 900;
}
.contact-info-div {
  min-height: 200px;
}

.contact-card {
  transition: 0.3s;
}

.contact-card:hover {
  transform: translateY(-6px);
}

.contact-card-heading {
  font-weight: 600;
  font-size: 18px;
}

.icon-image {
  width: 45px;
}

.contact-form-container {
  background-image: url("../images/shape-48.png");
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 600px;
}
.form-container label {
  color: var(--primary-color);
  font-weight: 600;
}

.btn-custom {
  border: none;
  background-color: var(--primary-color);
  color: #fff;
}




/*--------------------------------------------------------------
# Venue 2 Section
--------------------------------------------------------------*/
.venue-2 .venue-header .venue-title-badge {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.venue-2 .venue-header .venue-title-badge i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.venue-2 .venue-header h3 {
  color: var(--heading-color);
  font-size: 2.5rem;
  margin-bottom: 16px;
  font-weight: 700;
}

.venue-2 .venue-header .venue-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--default-color);
  font-size: 1.05rem;
}

.venue-2 .venue-header .venue-location i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.venue-2 .main-venue-card {
  background-color: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.venue-2 .main-venue-card .venue-image-wrapper {
  position: relative;
  overflow: hidden;
}

.venue-2 .main-venue-card .venue-image-wrapper img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.venue-2 .main-venue-card .venue-image-wrapper:hover img {
  transform: scale(1.05);
}

.venue-2 .main-venue-card .venue-image-wrapper .capacity-overlay {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--contrast-color);
  backdrop-filter: blur(10px);
  padding: 16px 24px;
  border-radius: 12px;
  text-align: center;
}

.venue-2 .main-venue-card .venue-image-wrapper .capacity-overlay .capacity-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}

.venue-2 .main-venue-card .venue-image-wrapper .capacity-overlay .capacity-label {
  font-size: 0.85rem;
  color: var(--default-color);
  margin-top: 4px;
  font-weight: 500;
}

.venue-2 .main-venue-card .venue-description {
  padding: 32px;
}

.venue-2 .main-venue-card .venue-description p {
  margin: 0;
  line-height: 1.8;
  font-size: 1.05rem;
}

.venue-2 .amenities-card {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.venue-2 .amenities-card h5 {
  color: var(--heading-color);
  font-size: 1.4rem;
  margin-bottom: 24px;
  font-weight: 600;
}

.venue-2 .amenities-card .amenities-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  flex-grow: 1;
}

.venue-2 .amenities-card .amenities-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.venue-2 .amenities-card .amenities-list li i {
  color: var(--accent-color);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.venue-2 .amenities-card .amenities-list li span {
  font-size: 0.95rem;
  line-height: 1.5;
}

.venue-2 .amenities-card .action-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.venue-2 .amenities-card .action-buttons .btn-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.venue-2 .amenities-card .action-buttons .btn-action.primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.venue-2 .amenities-card .action-buttons .btn-action.primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateX(4px);
}

.venue-2 .amenities-card .action-buttons .btn-action.secondary {
  background-color: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.venue-2 .amenities-card .action-buttons .btn-action.secondary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  transform: translateX(4px);
}

.venue-2 .interactive-map {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.venue-2 .interactive-map .map-header {
  text-align: center;
  margin-bottom: 32px;
}

.venue-2 .interactive-map .map-header h4 {
  color: var(--heading-color);
  font-size: 1.8rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.venue-2 .interactive-map .map-header p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.venue-2 .interactive-map .map-frame {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.venue-2 .interactive-map .map-frame iframe {
  width: 100%;
  height: 450px;
}

.venue-2 .transportation-section h4 {
  color: var(--heading-color);
  font-size: 1.8rem;
  margin-bottom: 32px;
  text-align: center;
  font-weight: 600;
}

.venue-2 .transportation-section .transport-card {
  background-color: var(--surface-color);
  border-radius: 16px;
  padding: 32px 24px;
  height: 100%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.venue-2 .transportation-section .transport-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.venue-2 .transportation-section .transport-card .transport-header {
  text-align: center;
  margin-bottom: 20px;
}

.venue-2 .transportation-section .transport-card .transport-header .transport-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.venue-2 .transportation-section .transport-card .transport-header .transport-icon.air {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%), color-mix(in srgb, var(--accent-color), transparent 75%));
}

.venue-2 .transportation-section .transport-card .transport-header .transport-icon.rail {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%), color-mix(in srgb, var(--accent-color), transparent 75%));
}

.venue-2 .transportation-section .transport-card .transport-header .transport-icon.car {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%), color-mix(in srgb, var(--accent-color), transparent 75%));
}

.venue-2 .transportation-section .transport-card .transport-header .transport-icon i {
  font-size: 2rem;
  color: var(--accent-color);
}

.venue-2 .transportation-section .transport-card .transport-header h6 {
  color: var(--heading-color);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}

.venue-2 .transportation-section .transport-card .transport-body p {
  margin: 0;
  line-height: 1.7;
  text-align: center;
}

.venue-2 .hotels-section .hotels-header {
  text-align: center;
  margin-bottom: 40px;
}

.venue-2 .hotels-section .hotels-header h4 {
  color: var(--heading-color);
  font-size: 1.8rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.venue-2 .hotels-section .hotels-header p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.05rem;
}

.venue-2 .hotels-section .hotel-item {
  background-color: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  height: 100%;
}

.venue-2 .hotels-section .hotel-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.venue-2 .hotels-section .hotel-item:hover .hotel-image img {
  transform: scale(1.1);
}

.venue-2 .hotels-section .hotel-item .hotel-image {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.venue-2 .hotels-section .hotel-item .hotel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.venue-2 .hotels-section .hotel-item .hotel-image .hotel-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.venue-2 .hotels-section .hotel-item .hotel-image .hotel-badge.discount {
  background-color: color-mix(in srgb, var(--accent-color), black 20%);
}

.venue-2 .hotels-section .hotel-item .hotel-details {
  padding: 24px;
}

.venue-2 .hotels-section .hotel-item .hotel-details h6 {
  color: var(--heading-color);
  font-size: 1.15rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.venue-2 .hotels-section .hotel-item .hotel-details .hotel-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.venue-2 .hotels-section .hotel-item .hotel-details .hotel-meta .distance {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--default-color);
}

.venue-2 .hotels-section .hotel-item .hotel-details .hotel-meta .distance i {
  color: var(--accent-color);
}

.venue-2 .hotels-section .hotel-item .hotel-details .hotel-meta .rating {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--default-color);
  font-weight: 500;
}

.venue-2 .hotels-section .hotel-item .hotel-details .hotel-meta .rating i {
  color: #ffc107;
  font-size: 0.85rem;
}

.venue-2 .hotels-section .hotel-item .hotel-details .hotel-pricing .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
}

.venue-2 .hotels-section .hotel-item .hotel-details .hotel-pricing .period {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.9rem;
}

@media (max-width: 992px) {
  .venue-2 .venue-header h3 {
    font-size: 2rem;
  }

  .venue-2 .main-venue-card .venue-image-wrapper img {
    height: 300px;
  }

  .venue-2 .interactive-map .map-frame iframe {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .venue-2 .venue-header h3 {
    font-size: 1.75rem;
  }

  .venue-2 .amenities-card {
    margin-top: 24px;
  }

  .venue-2 .interactive-map {
    padding: 24px;
  }

  .venue-2 .interactive-map .map-frame iframe {
    height: 280px;
  }

  .venue-2 .transportation-section h4,
  .venue-2 .hotels-section .hotels-header h4 {
    font-size: 1.5rem;
  }

  .venue-2 .transport-card,
  .venue-2 .hotel-item {
    margin-bottom: 24px;
  }
}



/*--------------------------------------------------------------
# Table
--------------------------------------------------------------*/
.clients{
  /*background-image: url(../../images/excbg-11.jpg);*/
  background-repeat: no-repeat;
  padding: 0px 10px;
  background-position: center top;
  padding-bottom: 100px;

}
.clients table{
  background: linear-gradient(140deg, rgb(113 1 135) 0%, rgb(113 1 135) 26%, rgb(113 1 135) 87%);
  color: #fff;
  font-weight: 700;
  font-size: 22px;
  border-radius: 30px;
  border-image:none !important;
  /*width:75% !important;*/

}

.clients table th {
  border: none;
  border-collapse: separate;
  border-spacing: 30px;
  border-radius: 13px;
  text-align: center;
}
.clients table th span {
  font-size: 14px;
  font-weight: 300;
}
.clients table, td {
  border: 2px solid;
  border-image: linear-gradient(45deg, #00f088, #104da6, #32137b, #050222) 1;
  border-collapse: separate;
  border-spacing: 20px;
}
.clients table td {
  padding: 10px;
    border-collapse: separate !important;
    border-spacing: 15px;
    border: double 2px transparent;
    border-radius: 15px;
    /*background-image: linear-gradient(#010131, #001281), radial-gradient(circle at top left, #00f088, #104da6, #32137b,#050222) !important;*/
    background-origin: border-box;
    background-clip: padding-box, border-box;
    color: #010131;
    background: #fff;
}
.clients h4{
  font-weight: 700;
  font-size: 17px;
}

.clients p{
  font-weight: 500;
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  .clients {
    padding: 10px 0px 80px 0px;
   }
  .clients .mb{
    padding-left: 220px;
  }
  .clients table th{
     font-size: 10px;
  }
  .clients table td{
    padding: 12px;
    font-size: 10px;
  }
}

.orbia-content-item .title, .orbia-content-item .sn-number{
    color:var(--primary-color) !important;
}

.navbar-toggler{
    color: rgb(255 255 255 / 65%) !important;
    background-color: #ffffffa8 !important;
    border: var(--bs-border-width) solid rgb(0 0 0 / 0%) !important;
}