@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

/***** General CSS *****/
body {
  word-break: break-word;
  font: 15px/25px "Poppins", sans-serif;
  color: #000;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #000;
  white-space: initial;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #000;
}

a:hover {
  transition: all 0.2s ease-in-out;
}

img {
  object-fit: cover;
  max-width: 100%;
  width: 100%;
}

input:focus,
textarea:focus,
select:focus {
  transition: all 0.5s ease;
  outline: none;
}

select,
input,
textarea {
  appearance: auto;
}

/***** Font Files *****/
@font-face {
  font-family: "Fonts Awesome";
  src: url(../fonts/fontawesome-webfont.eot);
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Bodega";
  src: url(../fonts/Bodega.ttf);
  font-weight: 400;
  font-style: normal;
}

/***** Custom Classes *****/
select {
  background: #0000 url("../images/down.png") no-repeat !important;
  padding: 0 40px 0 30px;
  appearance: none !important;
  background-position: 97% center !important;
}

::-webkit-input-placeholder,
::-moz-placeholder,
:-ms-input-placeholder,
:-moz-placeholder {
  color: #575757;
}

.noPadding {
  padding: 0;
}

.noLeft {
  padding-left: 0;
}

.noRight {
  padding-right: 0;
}

.centerCol {
  float: none;
  margin: 0 auto;
}

.pt_8,
.pb_8,
.py_8,
.sec {
  padding: 80px 0;
}

.flexRow,
.flexCol {
  display: flex;
  align-items: center;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Bodega";
  text-transform: uppercase;
  margin: 0 0 10px;
}

h1 {
  font-size: 268px;
  line-height: 1;
  color: #fff;
  font-weight: 700;
  letter-spacing: 10px;
}

h2 {
  font-size: 45px;
  line-height: 1.2;
  color: #000;
  font-weight: 700;
}

h3 {
  font-size: 35px;
  line-height: 1.2;
  color: #000;
  font-weight: 600;
}

h4 {
  font-size: 24px;
  line-height: 1.2;
  color: #000;
  font-weight: 700;
  letter-spacing: 1px;
}

h5 {
  font-size: 20px;
  line-height: 1.2;
  color: #000;
  font-weight: 500;
}

h6 {
  font-size: 21px;
  color: #000;
  font-weight: 500;
}

p {
  font-size: 14px;
  font-weight: 500;
  line-height: 25px;
  color: #000;
  font-family: "Poppins", sans-serif;
  opacity: 70%;
}
p.sub-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e6e6e6;
  padding: 2px 18px;
  opacity: 100%;
  width: fit-content;
  border-radius: 30px;
}

span {
  font-size: 12px;
  font-weight: 500;
  line-height: 25px;
  color: #000;
  font-family: "Poppins", sans-serif;
  opacity: 70%;
}

/* Menu */
.nav ul {
  list-style: none;
  text-align: center;
}

.nav ul li a {
  transition: 0.3s ease-in-out;
  text-transform: uppercase;
  transition: all 0.5s;
  position: relative;
  color: #000;
  transition: 0.3s ease-in-out;
  font-family: poppins;
  font-weight: 500;
}

section.header .nav.stroke {
  display: block;
}

.nav.stroke ul li a:after,
.nav.fill ul li a:after {
  transition: 0.3s ease-in-out;
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 0;
  width: 0%;
  content: ".";
  color: transparent;
  background: #000000;
  height: 2px;
  transform: translateX(-50%);
}

.nav.stroke ul li a:hover:after {
  width: 100%;
}

.nav.stroke ul li a.active:after {
  width: 100%;
}

.nav.stroke ul li a.active::before {
  height: 100%;
}

.nav.stroke ul li a.active {
  color: #fff !important;
}

/* Buttons Css Start*/
.theme-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 15px 40px;
  font-size: 14px;
  position: relative;
  z-index: 1;
  transition: 0.3s ease-in-out;
  color: #ffff;
  font-size: 16px;
  border-radius: 10px;
  overflow: hidden;
  text-transform: uppercase;
}

.theme-btn::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  z-index: -1;
  content: "";
  transition: 0.3s ease-in-out;
  background: #c9d9a0;
}

.theme-btn::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  content: "";
  transition: 0.3s ease-in-out;
  background: #232323;
}

.theme-btn:hover::before {
  transition: 0.3s ease-in-out;
  height: 100%;
}

.theme-btn:hover {
  transition: 0.3s ease-in-out;
  color: #000;
}

/* Buttons Css End*/

/* Loader start */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: all 1s ease;
  flex-direction: column;
  gap: 5px;
}

#loader.hide {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

img.loader {
  width: 10vw;
}

/* Loader end */

/* Custom Scrollbar  */
#style-6::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}

#style-6::-webkit-scrollbar {
  width: 10px;
  background-color: #f5f5f5;
}

#style-6::-webkit-scrollbar-thumb {
  background-color: #232323;
  background-image: -webkit-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.2) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.2) 75%,
    transparent 75%,
    transparent
  );
}

.scrollbar {
  overflow-y: scroll;
}

/* Custom Scrollbar  */

/* Home Page start*/

/* Navigation CSS Start */

.main-logo {
  z-index: 23;
}

.menu {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  padding: 0;
  outline: none;
}

/* Hamburger SVG lines */
.line {
  fill: none;
  stroke: #fff;
  stroke-width: 3;
  stroke-dasharray: 60 207;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Fix for hamburger to cross toggle - target svg.opened */
.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 3;
}

.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 3;
}

.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 3;
}

/* Hamburger navigation container */
.hamburger-navigation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  overflow: hidden;
  background: #6e6d0f;
  z-index: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  transition: height 0.5s ease, background 1s cubic-bezier(0.86, 0, 0.09, 1);
}

/* Layer background inside hamburger */
.hamburger-navigation .layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #141414;
  z-index: 0;
  transition: height 0.8s ease 0.9s;
}

/* Container for nav menu */
.hamburger-navigation .container {
  position: relative;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
}

/* Nav menu list */
.hamburger-navigation .nav-menu {
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  padding: 0;
  margin-top: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease 0.5s;
  height: 100%;
  justify-content: space-around;
}

/* Nav menu items */
.hamburger-navigation .nav-menu li {
  display: flex;
  justify-content: space-evenly;
  text-align: center;
}

.hamburger-navigation .nav-menu li a {
  text-transform: uppercase;
  color: #fff;
  font-size: 45px;
  text-decoration: none;
  font-family: "Bodega";
}

/* Smaller nav item font size */
.home-drop .home-page a {
  font-size: 20px !important;
}

.home-drop .home-page {
  position: absolute;
  top: 40px;
  width: 100%;
  padding: 20px 0 0 0;
  opacity: 0;
  transform: translateX(-40px);
  transition: 0.3s ease-in-out;
  text-align: center;
}

/* When hamburger nav is active */
.hamburger-navigation-active .hamburger-navigation {
  height: 100vh;
  position: fixed;
}

.hamburger-navigation-active .hamburger-navigation .layer {
  height: 100vh;
}

.hamburger-navigation-active .hamburger-navigation .container {
  opacity: 1;
  visibility: visible;
}

.hamburger-navigation-active .hamburger-navigation .nav-menu {
  opacity: 1;
  visibility: visible;
}
.line {
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Navigation CSS End */

/* Header */
.hdr_logo a img {
  object-fit: scale-down;
  padding: 20px 0;
  display: block;
  width: fit-content;
}

ul#menu {
  justify-content: space-around;
  display: flex;
  align-items: center;
  height: 100%;
}

section.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  border-bottom: 1px solid #ffffff2e;
}

.hamburger-menu {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.header-box {
  position: relative;
  z-index: 1;
}

.hdr_logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hamburger-navigation .nav-menu li a:hover {
  color: #858432;
}
/* Header end*/

/* Banner */
/*.banner_sec {
  background-image: url(../images/banner2.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 120vh;
  display: flex;
  align-items: center;
}*/
.banner-image {
  animation: propellerSpin 0.1s infinite linear alternate;
  filter: blur(0.3px);
}

@keyframes propellerSpin {
  from {
    filter: blur(0.2px);
  }
  to {
    filter: blur(0.8px);
  }
}

.banner_text {
  display: flex;
  align-items: start;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.banner-slider .slick-list {
  height: 100%;
}

.banner-slider .slick-track {
  height: 100%;
}
img.client-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #fff;
}
ul.banner-client-list {
  display: flex;
  align-items: center;
  margin: 0 0 0 20px;
}
ul.banner-client-list li {
  margin: 0 0 0 -15px;
}
.banner-right-text {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: end;
}

.banner-right-text p {
  color: #fff;
  opacity: 1;
  margin: 0;
}
.banner-left-text p {
  color: #fff;
  margin: 0;
  font-size: 17px;
  opacity: 1;
}
.banner-text {
  padding: 50px 0;
}

.banner-heading {
  margin: 30px 0 -180px 0;
}

.banner-img {
  padding: 0;
}
.text-gradient {
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 1) 62%,
    rgb(255 255 255 / 0%) 94% 100%
  );
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.banner-image {
  width: 95%;
  left: 50%;
  position: relative;
  transform: translateX(-50%);
}
/* Banner end*/

/* section start */
img.about {
  height: 700px;
  border-radius: 20px;
}
/* section end */

/* section start */
.grid-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-box {
  margin: 30px 0 60px 0;
}

img.service-img {
  height: 310px;
  border-radius: 20px;
}

.service-box.reverse .row {
  flex-direction: row-reverse;
}
/* section end */

/* section start */

ul.blog-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 10px 0px;
}

.blog-card-text {
  padding: 40px 15px 20px 15px;
  border: 1px solid #00000033;
  border-radius: 0 0 20px 20px;
  margin: -20px 0 0 0;
  position: relative;
  z-index: -1;
  overflow: hidden;
}

img.blog-img {
  height: 310px;
  object-fit: cover;
  border-radius: 20px;
}

.blog-card {
  margin: 30px 0;
}

ul.banner_navs {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 5px;
}

ul.banner_navs button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%;
  background: #d0d0d0;
  transition: 0.3s ease-in-out;
}
ul.banner_navs button i {
  font-size: 25px;
  opacity: 30%;
  transition: 0.3s ease-in-out;
}
ul.banner_navs button:hover,
ul.banner_navs button:focus {
  background-color: #000;
}

ul.banner_navs button:hover i,
ul.banner_navs button:focus i {
  color: #fff;
  opacity: 100%;
}

.blog-card:hover .blog-card-text * {
  color: #fff;
  transition: 0.3s ease-in-out;
}
.blog-card:hover .blog-card-text::before {
  height: 100%;
  transition: 0.3s ease-in-out;
}
.blog-card-text::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  content: "";
  z-index: -1;
  background-color: #232323;
  transition: 0.3s ease-in-out;
}
/* section end */

/* section start */
img.team-img {
  height: 250px;
  object-fit: cover;
  border-radius: 20px;
}
.team-card {
  margin: 20px 0;
}
ul.team-list li a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #00000033;
  position: relative;
  z-index: 1;
  transition: 0.3s ease-in-out;
  overflow: hidden;
  background-color: transparent;
}
ul.team-list li a i {
  color: #00000033;
  transition: 0.3s ease-in-out;
}
.team-card:hover ul.team-list li i {
  color: #000;
  transition: 0.3s ease-in-out;
}

.team-card:hover ul.team-list li a::before {
  height: 100%;
  transition: 0.3s ease-in-out;
}
ul.team-list li a::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  content: "";
  z-index: -1;
  background-color: #fff;
  transition: 0.3s ease-in-out;
}
ul.team-list {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.team-card-text {
  padding: 50px 0 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: -1;
  margin: -20px 0 0 0;
  border-radius: 0 0 20px 20px;
  overflow: hidden;
  transition: 0.3s ease-in-out;
}

.team-card-text * {
  margin: 0;
  transition: 0.3s ease-in-out;
}
.team-card:hover .team-card-text * {
  color: #fff;
  transition: 0.3s ease-in-out;
}
.team-card:hover .team-card-text::before {
  height: 100%;
  transition: 0.3s ease-in-out;
}
.team-card-text::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  content: "";
  z-index: -1;
  background-color: #232323;
  transition: 0.3s ease-in-out;
}
/* section end */

/* section start */
ul.contact-list li a {
  margin: 0;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  opacity: 1;
  display: block;
}
.contact-text {
  padding: 0 50px;
  background: #ffff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 12px;
}
ul.contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
}
a.icon {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background: #232323;
  color: #fff !important;
}
section.team-sec {
  padding-bottom: 0;
}
/* section end */

/* footer start */
.copyright {
  padding: 20px 0;
  border-top: 1px solid #ffffff33;
  margin: 50px 0 0 0;
}

footer {
  background: #232323;
  padding: 60px 0 0 0;
}

.copyright-para p {
  margin: 0;
  color: #ffff;
  opacity: 100%;
}
img.ftr-logo {
  width: 60%;
}

.ftr-logo-box p {
  margin: 30px 0 0 0;
  color: #fff;
}

.footer-social ul.team-list {
  justify-content: start;
}

.footer-social ul.team-list li a {
  border: 1px solid #ffffff33;
  transition: 0.3s ease-in-out;
}
.footer-social ul.team-list li a:hover i {
  color: #fff;
  transition: 0.3s ease-in-out;
}
.footer-social ul.team-list li a:hover {
  transition: 0.3s ease-in-out;
  border: 1px solid #fff;
}

.footer-social ul.team-list li a i {
  color: #ffffff33;
  transition: 0.3s ease-in-out;
}

.footer-contact ul.team-list li a {
  border: 1px solid #fff;
  transition: 0.3s ease-in-out;
}

.footer-contact ul.team-list li a i {
  color: #fff;
  transition: 0.3s ease-in-out;
}
.footer-contact ul.team-list li a:hover i {
  color: #000;
  transition: 0.3s ease-in-out;
}

.footer-contact ul.team-list li a:hover::before {
  height: 100%;
}

.footer-contact h6 {
  margin: 0;
  font-family: "Poppins";
  color: #fff;
  text-transform: capitalize;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 10px;
}
/* footer end */

/* Home Page end*/

/* InnerPage Aboutus start */
section.inner-banner.banner_sec {
  height: 700px;
  background-image: url(../images/inner-banner.jpg);
  background-position: bottom;
}
.inner-banner-heading h1 {
  font-size: 150px;
  letter-spacing: 2px;
}

.about-description {
  margin: 50px 0 0 0;
}
/* InnerPage Aboutus end */

/* InnerPage Aboutus start */

img.blog-det-img {
  height: 500px;
  border-radius: 20px;
  object-position: top;
}

/* InnerPage Aboutus end */

/* InnerPage Aboutus start */

form.book-form .form-control {
  color: #000 !important;
}

form.book-form .form-control::placeholder {
  color: #000  !important;
}

.form-control:disabled,
.form-control:read-only {
  background: transparent;
}

form.book-form p {
  margin: 0;
  opacity: 1;
}
.book-heading {
  margin: 0 0 30px 0;
}

.book-box button.theme-btn::after {
  background: #232323;
}

.book-box button.theme-btn {
  color: #fff;
  width: fit-content;
  margin: 0 auto;
  padding: 15px 50px;
}

/* InnerPage Aboutus end */

/* InnerPage Aboutus start */
img.service-det-img {
  height: 600px;
  border-radius: 20px;
  object-position: top;
}

.service-detail-text {
  margin: 20px 0;
}
section.service-detail-sec {
  padding-bottom: 0;
}
/* InnerPage Aboutus end */

/* InnerPage Aboutus start */

.team-detail-text {
  margin: 40px 0;
}
/* InnerPage Aboutus end */

/* InnerPage Aboutus start */
img.team-det-img {
  height: 370px;
  border-radius: 20px;
}
.team-det-right ul.team-list {
  justify-content: start;
}
ul.team-det-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 11px;
}

ul.team-det-list li * {
  margin: 0;
  font-family: "Poppins";
  text-transform: capitalize;
}

.team-det-right h4 {
  margin: 0 0 20px 0;
}

ul.team-det-list li a {
  opacity: 70%;
}
/* InnerPage Aboutus end */

/* === CARD CONTAINER === */
.inner-service-card {
  position: relative;
  width: 100%;
  height: 600px;
  perspective: 1200px;
  cursor: pointer;
  margin: 10px 0;
}

.inner-service-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

/* === FRONT SIDE === */
.inner-service-card-front,
.inner-service-card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  backface-visibility: hidden;
  transform-origin: center;
}

.inner-service-card-front {
  z-index: 2;
}

.inner-service-card-img {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 10px;
}

.inner-service-card-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

img.inner-service-img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 10px;
}

.inner-service-card-txt {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  text-align: center;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.inner-service-card-txt h2 {
  color: #fff;
  margin: 0;
}

/* === BACK SIDE === */
.inner-service-card-back {
  background: #111;
  color: #fff;
  opacity: 0;
  transform: rotateY(-15deg) scale(0.95);
  z-index: 1;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.inner-service-card-back h2 {
  color: #fff;
  margin-bottom: 15px;
}

.inner-service-card-back p {
  color: #fff;
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.6;
  opacity: 1;
  margin: 20px;
}

.inner-service-card-back .theme-btn {
  display: inline-block;
}


.team-det-right ul.team-list li a::before{
background: #232323;
}

.team-det-right ul.team-list li a:hover::before {
    height: 100%;
}

.team-det-right ul.team-list li a:hover i{
  color: #fff;
} 


/* Page Transition Base */
.page-transition {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  overflow: hidden;
}

/* Black overlay slides in/out */
.transition-bg {
  position: absolute;
  inset: 0;
  background: #000;
  transform: translateX(-100%); /* start hidden */
}

/* Centered logo */
.transition-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  filter: brightness(200%);
}

.policylinks {
    margin-top: 60px;
}

.policylinks ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 0;
}

.policylinks ul li a {
    color: #fff;
}






.banner-left-text p b {
  color: #000;
  font-size: 15px;
}

.banner-left-text h6 {
  font-size: 20px;
  padding: 7px;
  background: #ffff;
  display: block;
  width: fit-content;
  border-radius: 5px;
}

.services-para p b {
  color: #000;
}

.services-para p {
  opacity: 1;
  color: #0000009c;
}

ul.list li {
  position: relative;
  z-index: 1;
  padding: 0 0 0 16px;
}

ul.list li::before {
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 10px;
  content: '';
  transform: translateY(-50%);
  background: #000;
}

.services-para h6 {
  font-size: 22px;
}
.team-card-text span b {
  display: block;
  font-size: 14px;
  color: #000;
  opacity: 1;
}

.team-card-text span {
  opacity: 1;
}.contact-text.wow.fadeInRight h6 {
  font-size: 17px;
  letter-spacing: 1px;
  text-transform: capitalize;
  font-weight: 500;
  font-style: italic;
}


.about-table {
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
}

.about-table thead {
  background-color: #000;
  color: #fff;
  text-transform: uppercase;
}

.about-table th,
.about-table td {
  padding: 16px 20px;
  vertical-align: middle;
  border: none;
}

.about-table tbody tr:nth-child(even) {
  background-color: #f8f9fa;
}
.about-table tbody tr:hover td{
  color: #fff;
}
.about-table tbody tr:hover {
  background-color: #000000;
}

.about-table th {
  font-weight: 600;
  font-size: 16px;
}ul.team-det-list li h6 {
  width: 30%;
}

.about-table td {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}