body {
  overflow-x: hidden;
  background-color: #f5f5f5;
}

img {
  border-radius: 0;
}

.rounded {
  border-radius: 10px !important;
}

.pt-90 {
  padding-top: 50px;
}

.btn-info {
  background-color: hsl(var(--base-light));
  border-color: hsl(var(--base-light));
  border-radius: 10px !important;
}
.btn-info:hover {
  background-color: hsl(var(--base-light));
  border-color: hsl(var(--base-light));
}

/* Preload */
#loading #object-image {
  animation: bounce 1s infinite;
	-webkit-animation: bounce 1s infinite;
	-moz-animation: bounce 1s infinite;
	-o-animation: bounce 1s infinite;
}

  @-webkit-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {-webkit-transform: translateY(0);}	
    40% {-webkit-transform: translateY(-30px);}
    60% {-webkit-transform: translateY(-15px);}
  }
   
  @-moz-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {-moz-transform: translateY(0);}
    40% {-moz-transform: translateY(-30px);}
    60% {-moz-transform: translateY(-15px);}
  }
   
  @-o-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {-o-transform: translateY(0);}
    40% {-o-transform: translateY(-30px);}
    60% {-o-transform: translateY(-15px);}
  }
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-30px);}
    60% {transform: translateY(-15px);}
  }

/* Color and BG */
.bg-base {
  background-color: hsl(var(--base)) !important;
}
.text-base {
  color: hsl(var(--base)) !important;
}

.bg-base-light {
  background-color: hsl(var(--base-light)) !important;
}
.text-base-light {
  color: hsl(var(--base-light)) !important;
}

.btn, 
.btn:hover {
  border-radius: 0%;
}

.btn-career {
  font-weight: 700;
}

/* Sticky Nav */
#main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-main-area {
  /* background-color: rgba(51 51 51, 1); */
  background-color: rgba(9, 9, 9, 0.5) !important;
  
}

/* Fixed Header */
.header.fixed-header {
  background-color: hsl(var(--white));
  position: fixed;
  transition: 0.4s linear;
  top: 0px;
  animation: slide-down 0.8s;
  width: 100%;
  box-shadow: rgba(9, 9, 9, 0.05) 0px 1px 0px;
  border-bottom: 1px solid hsl(var(--white)/0.08);
}

.header.fixed-header .header-wrapper .menu-wrapper ul.main-menu a {
  color: hsl(var(--base)) !important;
}

@media screen and (max-width: 991px) {
  .header {
      background-color: transparent;
  }
}

/* Mobile Nav */
.sidebar-menu-wrapper {
  width: 100%;
  left: -100%;
  background-color: hsl(var(--base-light));
}

.sidebar-menu-wrapper .sidebar-menu-list .sidebar-menu-list__link {
  padding-left: 50px;
  font-size: 20px;
}

.sidebar-menu-wrapper .sidebar-menu-list .sidebar-menu-list__item:hover .sidebar-menu-list__link {
  color: hsl(var(--base));
}

.close-hide-show {
  cursor: pointer;
}

/* Contact Info */
.top-info__wrapper_mobile {
  display: none;
}

.menu-right-wrapper .menu-right__mobile_view {
  visibility: hidden;
}

@media screen and (max-width: 767px) {
  .top-info__wrapper_mobile {
    display: block;
  }

  .menu-right-wrapper .menu-right__mobile_view {
    visibility: visible;
  }

  .menu-right-wrapper .menu-right__mobile_view .menu-right__mobile_view__link {
    font-size: 10px;
    color: hsl(var(--white));
  }

  .menu-right-wrapper .menu-right__mobile_view .btn-career {
    font-size: 10px;
    float: right;
    padding: 5px 5px; 
  }

  .top-info__wrapper_mobile .contact-list__link {
    font-size: 12px;
    text-align: right;
    margin-left: 5px;
  }

  .top-info__wrapper_mobile .btn-career {
    font-size: 10px;
    float: right;
    padding: 5px 5px;
  }
}

/* odometer */
.odometer-wrapper .letter {
  font-size: 34px;
  margin-left: 5px;
}

@media screen and (max-width: 991px) {
  .odometer-wrapper .letter {
    font-size: 20px;
  }

  .odometer-wrapper p {
    font-size: 11px;
  }

  .menu-right-wrapper .menu-right__mobile_view {
    visibility: visible;
  }

  .menu-right-wrapper .menu-right__mobile_view .btn-career {
    font-size: 10px;
    float: right;
    padding: 5px 5px; 
  }
}

/*============= Banner area start  =============*/
.banner-section {
  position: relative;
  z-index: 1;
  padding: 260px 0 205px;
  background: hsl(var(--base)/0.02);
  overflow: hidden;
  height: 100vh;
}

@media screen and (max-width: 1199px) {
  .banner-section {
      padding:260px 0 205px;
  }
}

@media screen and (max-width: 991px) {
  .banner-section {
      padding:150px 0 100px;
      height: 50vh;
  }
}

@media screen and (max-width: 767px) {
  .banner-section {
      padding: 145px 0 104px;
  }
}

@media screen and (max-width: 424px) {
  .banner-section {
      padding: 125px 0 75px;
  }
}

.banner-section .popup-vide-wrap {
  position: absolute;
  right: 17%;
  top: 83%;
  z-index: -1;
}

@media screen and (max-width: 1599px) {
  .banner-section .popup-vide-wrap {
      right: 9%;
  }
}

@media screen and (max-width: 1499px) {
  .banner-section .popup-vide-wrap {
      right: 6%;
  }
}

@media screen and (max-width: 1199px) {
  .banner-section .popup-vide-wrap {
      right: -3%;
      top: 77%;
  }
}

@media screen and (max-width: 991px) {
  .banner-section .popup-vide-wrap {
      right: -8%;
      top: 89%;
  }
}

@media screen and (max-width: 575px) {
  .banner-section .popup-vide-wrap {
      right: 17%;
      top: 88%;
  }
}

@media screen and (max-width: 767px) {
  .banner-section .popup-vide-wrap {
      right: 15%;
      top: 93%;
  }
}

.banner-section .popup-vide-wrap .waves {
  position: absolute;
  width: 650px;
  height: 650px;
  border-radius: 40%;
}

@media screen and (max-width: 1199px) {
  .banner-section .popup-vide-wrap .waves {
      width: 490px;
      height: 490px;
      right: 30px;
  }
}

@media screen and (max-width: 991px) {
  .banner-section .popup-vide-wrap .waves {
      width: 390px;
      height: 390px;
      right: 59px;
      bottom: 24px;
  }
}

@media screen and (max-width: 767px) {
  .banner-section .popup-vide-wrap .waves {
      width: 520px;
      height: 520px;
      right: -14px;
      bottom: -15px;
  }
}

@media screen and (max-width: 575px) {
  .banner-section .popup-vide-wrap .waves {
      width: 350px;
      height: 350px;
      right: 24px;
      bottom: 38px;
  }
}

@media screen and (max-width: 374px) {
  .banner-section .popup-vide-wrap .waves {
      width: 250px;
      height: 250px;
      right: 9px;
      bottom: 38px;
  }
}

.banner-section .banner-effect-2 {
  content: "";
  position: absolute;
  bottom: 33%;
  right: 15%;
  width: 651px;
  height: 273px;
  background-color: hsl(var(--base)/0.9);
  opacity: 0.8;
  filter: blur(93px);
  border-radius: 1% 50% 50% 0%;
  z-index: -1;
}

@media screen and (max-width: 1499px) {
  .banner-section .banner-effect-2 {
      right: 15%;
      width: 491px;
  }
}

@media screen and (max-width: 1199px) {
  .banner-section .banner-effect-2 {
      bottom: 32%;
      right: 5%;
      width: 450px;
  }
}

@media screen and (max-width: 991px) {
  .banner-section .banner-effect-2 {
      bottom: 24%;
      right: 2%;
      width: 350px;
  }
}

@media screen and (max-width: 767px) {
  .banner-section .banner-effect-2 {
      bottom: 19%;
      right: 27%;
      width: 350px;
  }
}

@media screen and (max-width: 575px) {
  .banner-section .banner-effect-2 {
      bottom: 21%;
      right: 20%;
      width: 62px;
  }
}

.banner-section .banner-right-shape {
  position: absolute;
  right: 0;
  height: 100%;
  width: 50%;
  background: hsl(var(--base));
  top: 0;
  border-radius: 472px 0 0px 418px;
}

.banner-section .container {
  position: absolute;
  bottom: 10%;
  left: 5%;
}

.banner-left__content span {
  font-size: 20px;
  font-weight: 600;
  background: hsl(var(--base));
  padding: 5px 17px;
  color: hsl(var(--white));
  border-radius: 20px 0px 20px;
  display: inline-block;
  margin-bottom: 20px;
}

.banner-left__content h2 {
  font-size: 60px;
  text-transform: capitalize;
  margin-bottom: 20px;
  font-weight: 800;
  color: hsl(var(--white));
  line-height: 1.2;
}

.banner-left__content h2 span {
  color: hsl(var(--base));
  background-image: linear-gradient(to right, hsl(var(--base)) 0%, hsl(var(--base-light)) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media screen and (max-width: 1199px) {
  .banner-left__content h2 {
      font-size: 40px;
  }
}

@media screen and (max-width: 991px) {
  .banner-left__content h2 {
      font-size: 24px;
      margin-bottom: 11px;
  }
}

@media screen and (max-width: 767px) {
  .banner-left__content h2 {
      font-size: 28px;
  }
}

@media screen and (max-width: 374px) {
  .banner-left__content h2 {
      font-size: 24px;
  }
}

.banner-left__content p {
  margin-bottom: 35px;  
  color: hsl(var(--white));
}

@media screen and (max-width: 991px) {
  .banner-left__content p {
      font-size: 12px;
      margin-bottom: 15px;
      padding-right: 80px;
      line-height: 20px;
  }
}

@media screen and (max-width: 991px) {
  .banner-left__content .btn {
      padding: 12px 15px;
  }
}

@media screen and (max-width: 374px) {
  .banner-left__content .btn {
      padding: 8px 10px;
  }
}

.banner-right-wrap {
  text-align: right;
  position: relative;
  margin-left: 30px;
}

.banner-right-wrap .banner-shape-1 {
  position: absolute;
  width: 71px;
  right: 8%;
  top: 20%;
}

.banner-right-wrap .banner-shape-2 {
  position: absolute;
  left: -50px;
  width: 70px;
  top: 80px;
}

@media screen and (max-width: 991px) {
  .banner-right-wrap .banner-shape-2 {
      left: 121px;
      width: 70px;
      top: -99px;
  }
}

@media screen and (max-width: 767px) {
  .banner-right-wrap .banner-shape-2 {
      left: 57%;
      top: -73px;
      width: 50px;
  }
}

/* Top Nav Logo */
.nav-logo-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 -20px;
}

@media screen and (max-width: 991px) {
  .nav-logo-list {
      justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .nav-logo-list {
      display: none;
  }
}

.nav-logo-list__item {
  padding: 2px 20px 0px;
  position: relative;
  color: hsl(var(--white));
}

.nav-logo-list__item:last-child::before {
  display: none;
}

.nav-logo-list__item::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 15px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: hsl(var(--dark)/0.4);
}

.nav-logo-list__item-icon {
  font-size: 16px;
  text-align: center;
  color: hsl(var(--base));
  display: inline-block;
  margin-right: 10px;
}

.nav-logo-list__link {
  color: hsl(var(--black));
  font-weight: 400;
  font-family: var(--body-font);
}

.nav-logo-list__link:hover .nav-logo-list__link-icon {
  color: hsl(var(--base));
}

.top-button {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

/*===== Logo Header =====*/
.logo-wrapper {
  position: fixed;
}
.top-header-wrapper {
  margin-bottom: 15px;
}

.top-header-wrapper .logo-wrapper img {
  width: 200px;
  border-radius: 0;
  filter: brightness(1);
  padding-left: 15px;
}

.logo-wrapper .normal-logo {
  display: none;
}

@media screen and (max-width: 991px) {
  .logo-wrapper {
    position: relative;
  }
  .top-header-wrapper {
    margin-bottom: 0;
  }

  .top-header-wrapper .logo-wrapper img {
      width: 100px;
  }

  .header-wrapper .logo-wrapper img {
    width: 90px;
  }

  .header-wrapper {
    justify-content: space-between !important;
  }

  .header-wrapper .logo-wrapper .normal-logo {
    display: block;
  }

}

.header-wrapper {
  display: flex;
  justify-content: end;
  align-items: center;
  padding: 10px 0;
}

@media screen and (max-width: 991px) {
  .header-wrapper {
      padding: 0px 0;
  }
}

.header-top {
  border-bottom: none;
}

.header-main-area {
  color: hsl(var(--white));
}

.header-wrapper .menu-right-wrapper ul li .sidebar-menu-show-hide {
  background: none;
  padding: 9px 12px;
  color: hsl(var(--white));
  border-radius: 12px 0 12px;
  cursor: pointer;
}

.contact-list__link {
  color: hsl(var(--white));
  font-weight: 400;
  font-family: var(--body-font);
}

.contact-list__link:hover .contact-list__link-icon {
  color: hsl(var(--base));
}

.contact-list__item-icon {
  font-size: 16px;
  text-align: center;
  color: hsl(var(--white));
  display: inline-block;
  margin-right: 10px;
}

/* Nav */
.menu-wrapper ul.main-menu a.nav-link.active {
  color: hsl(var(--base-light));
}
.header-wrapper .menu-wrapper ul.main-menu a {
  padding: 0px 15px;
  font-weight: normal;
  color: hsl(var(--white));
}

.header-wrapper .menu-wrapper ul.main-menu a:hover {
  color: hsl(var(--base-light));
}

/* End Nav */

/* top contact mobile */
.mobile-contact__wrapper {
  display: none;
}
@media screen and (max-width: 991px) {
  .mobile-contact__wrapper {
    display: block;
  }

  .mobile-contact__wrapper .mobile-contact-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 -20px;
  }

  .mobile-contact__wrapper .mobile-contact-list .mobile-contact-list__item {
    padding: 2px 10px 0px;
    position: relative;
    color: hsl(var(--white));
  }

  .mobile-contact__wrapper .mobile-contact-list .mobile-contact-list__item {
    font-size: 9px;
  }

  .mobile-contact__wrapper .mobile-contact-list .mobile-contact-list__item .btn-career {
    font-size: 8px;
    padding: 2px 3px;  
  }

  .mobile-contact__wrapper .mobile-contact-list .mobile-contact-list__item .mobile-contact-list__item-icon {
    margin-right: 2px;
  }
}

/* Breadcumb */
.breadcumb {
  position: relative;
  z-index: 1;
  padding: 400px 0 70px;
  z-index: 1;
  background-color: hsl(var(--base)/0.05);
}

.breadcumb .breadcumb-text {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 991px) {
  .breadcumb {
      padding: 120px 0 90px;
  }

  .breadcumb .breadcumb-text {
    top: 80%;
    left: 50%;
    transform: translate(-50%, -80%);
  }
}


.breadcumb__wrapper {
  text-align: center;
}

.breadcumb__title {
  color: hsl(var(--dark));
  font-weight: 700;
}

.breadcumb__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.breadcumb__item {
  color: hsl(var(--dark));
  padding: 0 5px;
  font-weight: 400;
  font-size: 16px;
}

@media screen and (max-width: 575px) {
  .breadcumb__item {
      font-size: 15px;
  }
}

.breadcumb__item-text {
  color: hsl(var(--dark));
}

.breadcumb__link {
  color: hsl(var(--dark));
  font-weight: 500;
}

.breadcumb__link:hover {
  color: hsl(var(--white));
}

/* End Breadcumb */

/* .blockquote-custom-icon */
.blockquote-custom-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -20px;
  right: 19px;
}
.blockquote-custom-icon img {
  border-radius: 0;
}

/* Service Section */
.service2 {
  box-shadow: 0px 15px 30px rgba(61, 90, 125, 0.08);
  padding: 30px 30px 35px;
  border: 2px solid hsl(var(--base)/0.07);
  transition: all 0.4s ease-in-out;
  text-align: center;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.service2:hover {
  box-shadow: 0px 20px 30px rgba(1, 6, 20, 0.1);
  /* border: 2px solid hsl(var(--base)/0.4); */
  /* transform: translateY(-3px); */
  background-color: hsl(var(--base-light));
}

.service2 .card-title
{
  font-weight: bold;
}

.service2 .card-title,
.service2 .card-text {
  color: hsl(var(--base));
}

.service2:hover .card-title,
.service2:hover .card-text {
  color: white;
}

.service2:hover .service__icon i {
  transform: scaleX(-1);
}

.service2:hover .service__icon::before {
  background: hsl(var(--base)/0.3);
}

.service2:hover::after {
  left: -25px;
}

.service2::after {
  content: "";
  position: absolute;
  top: -13px;
  left: -225px;
  width: 149px;
  height: 116px;
  /* background: hsl(var(--base)/0.04);
  transform: rotate(168deg);
  border-radius: 10px;
  transition: all 0.4s ease-in-out; */
}

.service2 .service__icon {
  margin-bottom: 20px;
  position: relative;
  transition: all 0.6s ease-in-out;
  text-align: left;
}

.service2 .service__icon i {
  font-size: 50px;
  color: hsl(var(--base));
  margin-top: 2px;
  height: 70px;
  width: 70px;
  text-align: center;
  background: none;
  line-height: 70px;
  /* border-radius: 50%; */
  transition: transform 0.5s ease;
}

.service2 .service__icon img {
  margin-top: 2px;
  width: 70px;
  text-align: center;
  background: none;
  line-height: 70px;
  /* border-radius: 50%; */
  transition: transform 0.5s ease;
}

/* .service2.service__active {
  background-color: hsl(var(--base-light));
}

.service2.service__active .card-title,
.service2.service__active .card-text {
  color: white;
} */

@media screen and (max-width: 991px) {
  /* .service2 {
    padding: 10px 10px 12px;
    overflow: hidden;
  } */

  .service2 .service__icon img {
    width: 50px;
  }

  .service2 .card-title {
    font-size: 14px;
  }
  .service2 .card-text {
    font-size: 12px;
    line-height: normal;
  }
}


/* SerivceBox */
.service-area .service__icon-box {
  text-align: center;
  width: 120px;
  height: 120px;
  background-color: hsl(var(--base-light));
  padding: 20px;
  border-radius: 10px;
  float: right;
}
.service-area .service__icon-box i {
  font-size: 70px;
  color: white;
}

@media screen and (max-width: 991px) {
  .service-area .service__icon-box {
    float: none;
    width: 80px;
    height: 80px;
  }

  .service-area .service-item__title {
    font-size: 15px;
  }

  .service-area .service-item__description {
    font-size: 12px;
  }

  .service-area p {
    font-size: 12px;
  }

  .service-area .service__icon-box i {
    font-size: 35px;
    color: white;
  }
}

/* Testimonial */
.testimonial-quote {
  padding: 70px;
}

.testimonial-quote .testimonial-quote__text {
  text-align: center;
  font-weight: bold;
}

.testimonial-quote__icon-left {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: -20px;
}

.testimonial-quote__icon-right {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  bottom: -40px;
}

.testimonial-quote__icon-left img,
.testimonial-quote__icon-right img {
  border-radius: 0;
}

@media screen and (max-width: 575px) {
  .testimonial-quote__icon-left {
    left: -35px;
  }
  .testimonial-quote__icon-right {
    right: -35px;
  }
}

/* Porfolio */
.portfolio-wrapper .card,
.portfolio-wrapper .card img,
.portfolio-wrapper .card .card-body {
  border-radius: 10px !important;
}

.portfolio-wrapper .card img {
  width: 70% !important;
  margin: 0 auto;
  padding-top: 10px;
  padding-bottom: 10px;
}

.portfolio-wrapper .card:hover {
  /* box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5); */
}

/* Portfolio Page */
/* .portfolio-wrapper .portfolio-item:hover .card-body {
  background-color: hsl(var(--base-light));
  color: hsl(var(--base));
} */
@media screen and (max-width: 991px) {
  .portfolio-wrapper .portfolio-item .card-text {
    font-size: 12px;
    line-height: 1.5;
  }

  .portfolio-wrapper .card img {
    width: 100% !important;
    margin: 0 auto;
  }
}

/* About Page */
@media screen and (max-width: 991px) {
  .about .about-description {
    font-size: 12px;
  }
}

/* Mobile Slider */
.service-slider,
.portfolio-slider {
    overflow: hidden !important;
}

.service-slider .slick-list,
.portfolio-slider .slick-list {
  overflow: unset !important;
}

.service-slider .slick-prev,
.service-slider .slick-next,
.portfolio-slider .slick-prev,
.portfolio-slider .slick-next {
  background-color: transparent;
}

@media screen and (max-width: 767px) {
  .service-slider .slick-next,
  .portfolio-slider .slick-next {
    right: 10px;
  }

  .service-slider .slick-next,
  .service-slider .slick-prev,
  .portfolio-slider .slick-next,
  .portfolio-slider .slick-prev {
    top: 50%;
  }

  .portfolio-slider .card-text {
    font-size: 12px;
    line-height: 1.5;
  }

  .testimonial-quote {
    padding: 45px;
  }

  .testimonial-quote .testimonial-quote__text {
    font-size: 16px;
  }
}

/* Brand */ 
.brand-wrapper .brand-item {
  background-color: #eeee;
  /* height: 50px; */
}

.brand-wrapper .brand-item__list {
  /* height: 200px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden; */

  display: grid;
	grid-template-columns: repeat(auto-fit, 180px);
	gap: 1.5rem;
	justify-content: center;
	flex: 0 0 100%;
}

/* .brand-wrapper .brand-item__list img {
  width: 100%;
  margin: auto;
  display: block;
} */

.brand-wrapper .brand-item__list .aspect-box {
	aspect-ratio: 2 / 2;
	padding: 1rem;
	border-radius: 10px;
	box-shadow: 0.1rem 0.1rem 0.5rem rgb(0 0 0 / 0.05), 0.15rem 0.15rem 0.75rem rgb(0 0 0 / 0.1);
}

.brand-wrapper .brand-item__list img {
  display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* @media screen and (max-width: 991px) {
  .brand-wrapper .brand-item__list {
    height: 80px;
  }
} */

/* Team Member Page */
.teammember-wrapper .teammember-item .card {
  background-color: transparent;
  border: none;
}
.teammember-wrapper .teammember-item .card-subtitle {
  font-size: 11px;
}

.teammember-wrapper .teammember-item .card-text {
  font-size: 12px;
  line-height: normal;
}
.teammember-wrapper .teammember-item .card-2 {
    background-clip: border-box;
    border: 1px solid hsl(var(--base));
}

.teammember-wrapper .teammember-item:hover .card-2 {
    background-color: hsl(var(--base-light));
}

.teammember-wrapper .teammember-item:hover .card-2 .card-subtitle,
.teammember-wrapper .teammember-item:hover .card-2 .card-text {
  color: hsl(var(--white));
}


/* Footer */
.footer-area::after {
  opacity: 1;
}
.footer-item__logo a img {
  max-width: 200px;
  max-height: 90px;
}

.bottom-footer {
  background-color: hsl(var(--white));
  border-top: 1px solid hsl(var(--base)/0.01);
}

.bottom-footer .bottom-footer-text p {
  color: hsl(var(--black));
}

.footer-item .social-list__item .social-list__link {
  border: none;
}

.footer-item .social-list__item .social-list__link i {
  font-size: 2em;
}

.footer-item .social-list__item .social-list__link i:hover {
  color: hsl(var(--base-light));
}

.footer-item .footer-menu .footer-menu__item .footer-menu__link::before {
  content: "";
}

.footer-area .footer-item .footer-menu__item:hover .footer-menu__link {
  color: hsl(var(--base-light));
}

@media screen and (max-width: 991px) {
  .bottom-footer .bottom-footer-text p {
    font-size: 12px;
  }
  .footer-item {
    margin-top: -30px;
  }

  .footer-area .footer-menu .footer-menu__item {
    padding: 0;
  }

  .footer-area .footer-menu .footer-menu__item .footer-menu__link {
    font-size: 10px;
    padding: 0 0 0 10px;
  }

  .footer-area .footer-item__desc {
    font-size: 10px;
  }

  .footer-item .social-list {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
  }

  .footer-item .social-list__item {
    margin-right: 0;
  }

  .footer-item .social-list__item .social-list__link {
    width: 25px;
    height: 25px;
    font-size: 14px;
    justify-content: left;
  }
  .footer-item .social-list__item .social-list__link i {
    font-size: 1em;
  }
}

/* Contact us */
.contact-social-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.contact-social-list li {
  font-size: 50px;
  float: left;
  margin-left: 15px;
  color: hsl(--base-light);
}

.contact-social-list li i {
  color: hsl(var(--base-light));
}

.contact-detail-ul li {
  margin-bottom: 15px;
}

.contact-detail-ul li .contact-detail-ul__icon {
  width: 60px;
  height: 60px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid hsl(var(--base)/0.4);
  transition: 0.3s;
  cursor: pointer;
  color: hsl(var(--base)) !important;
}

.contact-detail-ul li .contact-detail-ul__icon i {
  font-size: 30px;
}

#mapDiv {
  overflow: hidden !important;
}

@media screen and (max-width: 991px) {
  .contact-detail-ul li .contact-detail-ul__icon {
    width: 40px;
    height: 40px;
  }
  .contact-detail-ul li .contact-detail-ul__icon i {
    font-size: 20px;
  }
}

/* Contact Us */
.contactus-form2 .form--control {
  background-color: hsl(var(--white));
  padding: 30px 25px;
}
.contactus-form2 textarea.form--control {
  height: 150px;
}

/* Careers */
.career-wrapper .career-item:hover {
  background-color: hsl(var(--base-light)) !important;
}

.career-wrapper .career-item:hover h4,
.career-wrapper .career-item:hover p,
.career-wrapper .career-item:hover h4 a {
  color: hsl(var(--white)) !important;
}

.career-wrapper .career-item:hover .career-item__urgent span {
  background-color: hsl(var(--base)) !important;
}

.career-wrapper .career-filters a {
  color: hsl(var(--white)) !important;
  cursor: pointer;
  font-weight: bold;
}

.career-wrapper .career-filters a img {
  width: 12px;
}

.career-wrapper .career-filters a.bg-info:hover {
  color: hsl(var(--base)) !important;
}

ul.career-social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

ul.career-social-list li {
  float: left;
  margin-right: 10px;
}


ul.career-social-list .career-social-list__link {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--border-radius-sm);
  position: relative;
  overflow: hidden;
  border: 1px solid hsl(var(--white)/0.4);
  transition: 0.3s;
  cursor: pointer;
  color: hsl(var(--base-light));
}
ul.career-social-list .career-social-list__link i {
  font-size: 2em;
}

@media screen and (max-width: 991px) {
  .career-wrapper .career-filters a {
    font-size: 12px;
  }
}

/* End Careers */

/* Office and Event Space */
.row.display-flex {
  display: flex;
  flex-wrap: wrap;
}
.row.display-flex > [class*='col-'] {
  display: flex;
  flex-direction: column;
}

.office-event-area .office-event__space_items {
  border-radius: 10px;
  height: 100%;
}

.office-event-area .office-event__space_items:hover {
  background-color: hsl(var(--base-light)) !important;
}

.office-event-area .office-event__space_items:hover >* {
  color: hsl(var(--white));;
}

.office-event-area .office-event__space_items .office-event__space_items-icon {
  margin-bottom: 20px;
  position: relative;
  transition: all 0.6s ease-in-out;
  text-align: left;
}

.office-event-area .office-event__space_items .office-event__space_items-icon img {
  margin-top: 2px;
  width: 70px;
  text-align: center;
  background: none;
  line-height: 70px;
  transition: transform 0.5s ease;
}

.office-event-area #carouselExampleIndicators .carousel-control-prev-icon,
.office-event-area #carouselExampleIndicators .carousel-control-next-icon {
  border: 2px solid white;
}

/* .office-event-area #carouselExampleIndicators .carousel-item img {  
  object-fit: cover;
  object-position: center;
  overflow: hidden;
  height:80vh;
} */

.office-event-area .office-event__container {
  border-radius: 10px;
}
.office-event-area .office-event__rate-items .office-event__rate-icon {
  margin-bottom: 20px;
  position: relative;
  transition: all 0.6s ease-in-out;
  text-align: left;
}

.office-event-area .office-event__rate-items .office-event__rate-icon img {
  margin-top: 2px;
  width: 70px;
  text-align: center;
  background: none;
  line-height: 70px;
  transition: transform 0.5s ease;
}

.table-eventspace {
  border-collapse: collapse;
  text-align: left;
  width: 100%;
}

.table-eventspace tr {
  border-bottom: 1px solid black
}

.table-eventspace td span {
  background: #eee;
  color: dimgrey;
  display: none;
  font-size: 10px;
  font-weight: bold;
  padding: 5px;
  position: absolute;
  text-transform: uppercase;
  top: 0;
  left: 0;
}

.table-eventspace td, .table-eventspace th { 
  padding: 10px 20px;
  color: hsl(var(--base)) !important;
}

/* Simple CSS for flexbox table on mobile */
@media(max-width: 800px) {
  .table-eventspace thead {
      left: -9999px;
      position: absolute;
      visibility: hidden;
  }
  .table-eventspace tr {
      border-bottom: 0;
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      margin-bottom: 20px;
  }
  .table-eventspace td {
      border: 1px solid;
      margin: 0 -1px -1px 0;
      padding-top: 30px;
      position: relative;
      width: 50%;
  }
  table.table-eventspace td span {
      display: block;
  }
}

.office-rental__wrapper {
  border-radius: 10px;
  background-color: hsl(var(--base)) !important;
  padding: 20px;
}

.office-rental__wrapper .office-rental__icon {
  margin-bottom: 20px;
  position: relative;
  transition: all 0.6s ease-in-out;
  text-align: left;
}

.office-rental__wrapper .office-rental__icon img {
  margin-top: 2px;
  width: 50px;
  text-align: center;
  background: none;
  line-height: 70px;
  transition: transform 0.5s ease;
}



/* Blog */
.blog-area .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns */
  gap: 20px;
}

.blog-area .blog-post {
  background-color: #eee;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.blog-area .blog-post:hover {
  transform: translateY(-5px);
}

/* Image container to ensure consistent size */
.blog-area .image-container {
  width: 100%;
  height: 200px; /* Fixed height for all images */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.blog-area .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure image fits and is cropped if needed */
}

.blog-area .card-body {
  padding: 15px;
}

.blog-area .card-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.blog-area .post-date {
  font-size: 0.9rem;
  color: gray;
  font-style: italic;
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
  .blog-area .blog-grid {
      grid-template-columns: 1fr 1fr; /* 2 columns for tablets */
  }
}

@media (max-width: 576px) {
  .blog-area .blog-grid {
      grid-template-columns: 1fr; /* 1 column for mobile */
  }
}