* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

img {
  width: 100%;
  height: 100%;
}

/* header-navbar */
.header-navbar nav {
  /* position: fixed; */
  z-index: 99;
  width: 100%;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.header-navbar nav .wrapper {
  position: relative;
  /* max-width: 1300px; */
  padding: 0px 0px;
  height: 75px;
  line-height: 75px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-navbar .wrapper .logo {
  width: 220px;
}

.header-navbar .wrapper .logo a {
  color: #000;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
}

.header-navbar .wrapper .nav-links {
  display: inline-flex;
  margin: 0;
}

.header-navbar .nav-links li {
  list-style: none;
}

.header-navbar .nav-links li a {
  color: #000;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 9px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;

}

.header-navbar .nav-links li .effect-1 {
  position: relative;
  color: inherit;
  text-decoration: none;
  line-height: 24px;
  padding: unset;
  margin: 9px 15px;
}

/* .header-navbar .nav-links li a:hover {
  background: #3A3B3C;
  color: #fff;
} */
.header-navbar .nav-links li a:before,
.header-navbar .nav-links li a:after {
  content: "";
  position: absolute;
  transition: transform 0.5s ease;
}

/* .effect-1 {
  padding-top: 10px;
} */

.effect-1:before {
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: #c9302c;
  transform: scaleX(0);
}

.effect-1:hover:before {
  transform: scaleX(1);
}

.header-navbar .nav-links li .apply-btn {
  background: #c9302c;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-left: 20px;
}

.header-navbar .nav-links .login-btn a {
  background: #c9302c;
  font-size: 14px;
  font-weight: 600;
  margin-left: 10px;
  color: #fff;
  padding: 9px 25px;
}

.header-navbar .nav-links .mobile-item {
  display: none;
}

.header-navbar .nav-links .drop-menu {
  position: absolute;
  background: #242526;
  width: 180px;
  line-height: 45px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  padding-left: 20px;
}

.header-navbar .nav-links li:hover .drop-menu,
.header-navbar .nav-links li:hover .mega-box {
  transition: all 0.3s ease;
  top: 70px;
  opacity: 1;
  visibility: visible;
}

.header-navbar .drop-menu li a {
  width: 100%;
  display: block;
  padding: 0 0 0px;
  font-weight: 400;
  border-radius: 0px;
}

.header-navbar .mega-box {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0 30px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
}

.header-navbar .mega-box .content {
  background: #242526;
  padding: 25px 20px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.header-navbar .mega-box .content .row {
  width: calc(25% - 30px);
  line-height: 45px;
}

.header-navbar .content .row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-navbar .content .row header {
  color: #f2f2f2;
  font-size: 20px;
  font-weight: 500;
}

.header-navbar .content .row .mega-links {
  margin-left: -40px;
  border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.header-navbar .row .mega-links li {
  padding: 0 20px;
}

.header-navbar .row .mega-links li a {
  padding: 0px;
  padding: 0 20px;
  color: #d9d9d9;
  font-size: 17px;
  display: block;
}

.header-navbar .row .mega-links li a:hover {
  color: #f2f2f2;
}

.header-navbar .wrapper .btn {
  color: #000;
  font-size: 20px;
  cursor: pointer;
  display: none;
}

.header-navbar .wrapper .btn.close-btn {
  position: absolute;
  right: 30px;
  top: 10px;
}

.header-navbar.sticky {
  top: 0;
  padding: 0px;
  background: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  z-index: 2;
}

.header-navbar nav input {
  display: none;
}



/* end header-navbar */

/* home-showcase */
@font-face {
  font-family: "CabinetGrotesk-light";
  src: url("http://lucasroussy.com/fonts/cabinet-grotesk/CabinetGrotesk-Light.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "CabinetGrotesk-extrabold";
  src: url("assets/fonts/cabinet-grotesk/CabinetGrotesk-Extrabold.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

.bigTitle {
  font-family: "CabinetGrotesk-extrabold", sans-serif;
  line-height: 0.9;
  font-size: 13vw;
}

.arrow-button {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-family: "CabinetGrotesk-extrabold", sans-serif;
  color: #000;
  transition: padding 1s cubic-bezier(0.16, 1, 0.3, 1);
  width: fit-content;
  font-size: 12px;
}

.arrow-button svg {
  width: 33px;
  margin-left: 10px;
}

.arrow-button svg circle {
  transition: fill 0.75s ease;
  fill: transparent;
}

.home-showcase {
  padding: 0 0 30px;
  position: relative;
  /* margin: 2rem 0 20vw; */
}

.home-showcase .home-showcaseSlider {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide {
  position: relative;
  /* height: 100vh; */
  overflow: hidden;
}

.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image {
  padding: 5vw;
  /* width: calc(100% - (5vw*2)); */
  /* height: calc(100% - (5vw*2)); */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: flex-end;
  height: 585px;
}

.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .text-container {
  max-width: 100%;
  margin: 0 0 5rem;
}

.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .text-container .bigTitle {
  transform: translate(-140%, 0);
  transition: transform 1.05s cubic-bezier(0.58, 0, 0.28, 0.99) 0.3s;
  color: #fff;
  margin: 0 0 2.5rem;
  text-shadow: #21212121 0px 0px 5px;
  line-height: 75px;
  font-weight: 600;
  font-size: 68px;
}

.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .text-container .bigTitle span {
  color: #c9302c !important;
}

.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .text-container p {
  color: #fff;
  font-size: 20px;
  transform: translate(-160%, 0);
  transition: transform 0.6s cubic-bezier(0.58, 0, 0.28, 0.99) 1s;
}

.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide-active .swiper-image .text-container p {
  transform: translate(0, 0);
}

.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .text-container .asas {
  transform: translate(-140%, 0);
  transition: transform 1.15s cubic-bezier(0.58, 0, 0.28, 0.99) 0.4s;
  color: #fff;
  margin: 0 0 20px;
  text-shadow: #21212121 0px 0px 5px;
}

.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .text-container .container-arrow-button {
  transform: translate(-160%, 0);
  transition: transform 0.6s cubic-bezier(0.58, 0, 0.28, 0.99) 1s;
  width: fit-content;
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .text-container .container-arrow-button .arrow-button {
  color: #fff;
  background: #c9302c;
  padding: 10px 25px;
  text-transform: capitalize;
  font-weight: 600;
  border-radius: 8px;
}

.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .text-container .container-arrow-button .arrow-button1 {
  background: #1c1d1c;
  border: 1px solid #e5e5e5;
}

.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .text-container .container-arrow-button svg path {
  fill: #fff;
}

.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .text-container .container-arrow-button svg circle {
  stroke: #fff;
}

.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .text-container .container-arrow-button:hover svg circle {
  stroke: #8c97d0;
}

.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .filter {
  width: 100%;
  height: 100%;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.7;
  transition: opacity 0.8s ease-in 0.5s;
}

.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide-active .swiper-image .text-container .bigTitle,
.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide-active .swiper-image .text-container .container-arrow-button,
.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide-active .swiper-image .text-container .asas {
  transform: translate(0, 0);
}

/* .home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide-active .swiper-image .filter {
  opacity: 0;
} */
.home-showcase .home-showcaseSlider .swiper-pagination {
  position: relative;
  bottom: 0;
  left: 0;
  /* width: fit-content; */
  /* padding: 3.5% 0; */
}

.home-showcase .home-showcaseSlider .swiper-pagination-bullet {
  width: 4vw;
  border-radius: 50px;
  height: 2px;
  background-color: #8f9397;
  opacity: 1;
  transition: width 0.8s ease-in-out, 0.4s ease-in-out;
  margin: 0 4px !important;
}

.home-showcase .home-showcaseSlider .swiper-pagination-bullet-active {
  background-color: #f7970e;
  width: 8vw;
}

.home-showcase .home-showcaseSlider .showcaseSlider-nav {
  display: flex;
  flex-direction: row;
  padding: 0 0 3.5% 5%;
  padding-right: 0;
}

.home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-prev,
.home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-next {
  position: static;
  display: flex;
  align-items: flex-end;
  font-weight: 900;
  margin: 0 2vw;
  width: 20px;
  height: auto;
}

.home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-prev.swiper-button-disabled,
.home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-next.swiper-button-disabled {
  opacity: 1;
}

.home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-prev.swiper-button-disabled:after,
.home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-next.swiper-button-disabled:after {
  color: #8f9397;
}

.home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-prev::after,
.home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-next::after {
  font-size: 4vw;
  color: #f7970e;
}

.home-showcase .home-showcaseSlider #macaron {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  margin: 5%;
  width: 30%;
}

.home-showcase .home-showcaseSlider #macaron #text-circle {
  animation: rotate-360 12s linear 0s infinite reverse forwards;
  transform-origin: center;
}

/* .home-showcase .scrollSliderButton {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translate(-50%, 0%);
  color: #fff !important;
  text-decoration: none;
  font-size: 3.5vw;
  height: 21vw;
  font-family: "CabinetGrotesk-light", sans-serif;
}
.home-showcase .scrollSliderButton .line {
  height: 15vw;
  width: 1px;
  background: #8c97d0;
  margin-top: 5px;
  animation: scroll-anim-mobile 1.6s cubic-bezier(0.62, 0.01, 0.71, 0.47) 0s infinite normal forwards;
} */
.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .text-container h5 {
  font-size: 16px;
  color: #c9302c !important;
  border: 1px solid #c9302cc4;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 50px;
  background: #c9302c33;
  font-weight: 600;
}

/* end home-showcase */

/* counter-section */
.statistic-section {
  padding: 30px 0;
  /* background: #00c6ff;  
  background: -webkit-linear-gradient(to right, #0072ff, #00c6ff);
  background: linear-gradient(to right, #0072ff, #00c6ff);  */
}

.count-title {
  font-size: 32px;
  font-weight: normal;
  margin-top: 0px;
  margin-bottom: 5px;
  /* text-align: center; */
  font-weight: bold;
  color: #fff;
}

.stats-text {
  font-size: 16px;
  font-weight: normal;
  margin-top: 0px;
  margin-bottom: 0;
  /* text-align: center; */
  color: #fff;
  /* text-transform: uppercase; */
  font-weight: 500;
}

/* .stats-line-black {
	margin: 12px auto 0;
  width: 55px;
  height: 2px;
  background-color: #fff;
} */
/* .stats-icon {
	font-size: 35px;
	margin: 0 auto;
  float: none;
  display: table;
  color: #fff;
} */
.counter-section .counter {
  background: #0e0f0f;
  border-radius: 15px;
  padding: 25px 30px;
}

.counter-section .counter h2 {
  color: #fff;
}

/* end counter-section */

/* about-sec */
.about-sec {
  padding: 30px 0;
  overflow: hidden;
}

.about-sec-txt {
  display: flex;
  align-items: center;
  height: 100%;
  padding-right: 40px;
}

.about-sec-txt h6 {
  background: #ffe2e2;
  color: #c9302c;
  display: inline-block;
  padding: 6px 20px 3px;
  margin-bottom: 25px;
  border-radius: 30px;
}

.about-sec-txt h3 {
  font-weight: 800;
  font-size: 40px;
  margin-bottom: 15px;
}

.about-sec-txt p {
  font-size: 18px;
  line-height: 30px;
}

.about-sec-img {
  position: relative;
}

.about-sec-img .about-sec-img1 {
  width: 450px;
}

.about-sec-img .about-sec-img1 img {
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border: 6px solid #fff;
}

.about-sec-img .about-sec-img2 {
  width: 250px;
  position: absolute;
  top: 22%;
  right: 20px;
  border: 2px solid #f0f0f0;
  -webkit-animation: movers 1s infinite alternate;
  animation: movers 2s infinite alternate;
  border-radius: 10px;
}

.about-sec-img .about-sec-img2 img {
  border-radius: 10px;
}

@keyframes movers {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-30px);
  }
}

/* end about-sec */

/* mission-vision-sec */
.mission-vision-sec {
  background: #f0f0f0;
  padding: 70px 0;
  margin: 30px 0;
}

.mission-vision-sec .row {
  border: 2px solid #c9302c;
}

.mission-vision-sec-card {
  background: #fff;
  padding: 40px 30px;
  /* border-radius: 10px; */
  /* box-shadow: #313131d1 0px -5px 0px 2px; */
  height: 320px;
}

.mission-vision-sec-card h3 {
  font-weight: 600;
  font-size: 26px;
  margin-bottom: 20px;
  color: #000;
}

.mission-vision-sec-card h3 img {
  width: 38px;
  background: #fff;
  padding: 5px;
  border-radius: 10px;
}

.mission-vision-sec-card p {
  color: #000;
  margin-bottom: 0px;
  line-height: 28px;
}

.mission-vision-sec .col-lg-4 {
  padding: 0;
}

.mission-vision-sec-img {
  height: 320px;
}

.mission-vision-sec-img img {
  object-fit: cover;
}

/* end mission-vision-sec */

/* our-journey-sec */
.our-journey-sec {
  padding: 30px 0;
}

.our-journey-sec-txt {
  background: #0e0f0f;
  border-radius: 15px;
  padding: 40px 35px;
}

.our-journey-sec-txt h3 {
  font-weight: 600;
  font-size: 26px;
  margin-bottom: 20px;
  color: #fff;
}

.our-journey-sec-txt h3 img {
  width: 38px;
  background: #fff;
  padding: 5px;
  border-radius: 10px;
}

.our-journey-sec-txt p {
  color: #fff;
  margin-bottom: 0px;
  line-height: 28px;
}

/* end our-journey-sec */

/* what-sets-sec */
.what-sets-sec {
  padding: 30px 0;
  overflow: hidden;
}

.what-sets-sec-txt h3 {
  font-weight: 600;
  font-size: 32px;
  margin-bottom: 8px;
  color: #000;
}

.what-sets-sec-txt h6 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 15px;
  color: #c9302c;
}

.what-sets-sec-txt p {
  color: #000;
  margin-bottom: 0px;
  line-height: 28px;
  font-size: 18px;
}

/* end what-sets-sec */

/* our-services-sec */
.our-services-sec {
  padding: 60px 0;
  background: #fff0f0;
  margin: 30px 0;
}

.our-services-sec h3 {
  font-weight: 600;
  font-size: 36px;
  margin-bottom: 15px;
  color: #000;
  text-align: center;
}

.our-services-sec h6 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 15px;
  color: #c9302c;
  text-align: center;
}

.our-services-sec p {
  color: #000;
  margin-bottom: 0px;
  line-height: 28px;
  font-size: 20px;
  text-align: center;
  margin: 0 130px 15px;
}

.our-services-sec-card {
  background: #1a1a1a;
  border-radius: 15px;
  padding: 40px 15px 40px 30px;
  transition: all 0.3s ease-in-out;
  margin-top: 30px;
}

.our-services-sec-card:hover {
  transform: translateY(-5px);
  box-shadow: rgb(201 48 44 / 49%) 0px 7px 29px 0px;
}

.our-services-sec-card:hover h3 span {
  background: #c9302c;
}

.our-services-sec-card:hover h3 img {
  filter: brightness(0) invert(1);
}

.our-services-sec-card h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 35px;
  color: #6b2825;
  text-align: left;
  display: flex;
}

.our-services-sec-card h3 img {
  width: 30px;
}

.our-services-sec-card h3 span {
  width: 45px;
  background: #4a2220;
  padding: 8px;
  border-radius: 10px;
  margin-left: 15px;
  display: grid;
}

.our-services-sec-card h6 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 20px;
  color: #fff;
  text-align: left;
}

.our-services-sec-card p {
  color: #99a1af;
  margin-bottom: 0px;
  line-height: 28px;
  font-size: 16px;
  text-align: left;
  margin: 0;
}

/* end our-services-sec */

/* current-opportunities */
.current-opportunities {
  padding: 30px 0;
}

.current-opportunities-txt {
  margin-bottom: 35px;
}

.current-opportunities-txt h3 {
  font-weight: 600;
  font-size: 34px;
  margin-bottom: 12px;
  color: #000;
  text-align: center;
}

.current-opportunities-txt p {
  color: #000;
  margin-bottom: 0px;
  line-height: 28px;
  font-size: 20px;
  text-align: center;
  margin: 0 130px 5px;
}

.current-opportunities-card {
  background: #1a1a1a;
  border-radius: 15px;
  padding: 30px 25px 30px 25px;
  margin-bottom: 30px;
}

.current-opportunities-card h4 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 10px;
  color: #fff;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: capitalize;
}

.current-opportunities-card h4 span {
  color: #c9302c;
  font-size: 11px;
  border: 1px solid #c9302c;
  padding: 4px 10px;
  font-weight: 500;
  border-radius: 6px;
  background: #3a201f;
}

.current-opportunities-card h6 {
  color: #99a1af;
  font-weight: 400;
  font-size: 15px;
}

.current-opportunities-card ul {
  list-style-type: none;
  padding: 25px 0 10px;
  display: grid;
  grid-template-columns: auto auto;
  gap: 10px;
}

.current-opportunities-card ul li {
  color: #99a1af;
  font-size: 15px;
}

.current-opportunities-card ul li i {
  margin-right: 5px;
}

.current-opportunities-card p {
  color: #99a1af;
  font-size: 14px;
}

.current-opportunities-card .view-details-apply {
  background: #c9302c;
  color: #fff;
  padding: 8px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  width: 100%;
  display: block;
  text-align: center;
  margin: 30px 0 0;
}

.current-opportunities .see-more {
  text-align: center;
  margin: 15px 0 0;
}

.current-opportunities .see-more-btn {
  background: transparent;
  color: #c9302c;
  padding: 10px 40px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  border: 2px solid #c9302c;
}

/* end current-opportunities */

/* our-industries */
.our-industries-sec {
  padding: 30px 0;
}

.our-industries-sec-txt h6 {
  text-align: center;
  color: #ff0600;
  margin-bottom: 5px;
}

.our-industries-sec-txt h3 {
  text-align: center;
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 15px;
}

.our-industries-sec-txt h5 {
  text-align: center;
  font-weight: 600;
  margin-bottom: 15px;
}

.our-industries-sec-txt p {
  text-align: center;
  margin: 0 175px 10px;
  font-size: 18px;
  line-height: 28px;
}

.our-industries-sec-card {
  padding: 25px;
  border-radius: 15px;
  background: #fff;
  margin-top: 30px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 1px 8px;
  transition: all 0.3s ease-in-out;
}

.our-industries-sec-card h4 {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin: 0;
}

.our-industries-sec-card-img {
  width: 60px;
  height: 60px;
  background: #ffcbc9;
  padding: 13px;
  border-radius: 50px;
  margin: 0 auto 30px;
  display: grid;
}

.our-industries-sec-card:hover {
  transform: translateY(-5px);
}

.our-industries-sec-card:hover .our-industries-sec-card-img {
  background: #c9302c;
}

.our-industries-sec-card:hover .our-industries-sec-card-img img {
  filter: brightness(0) invert(1);
}

.our-industries-sec-card:hover h4 {
  color: #c9302c;
}

/* end our-industries */

/* local-expertise */
.local-expertise {
  padding: 30px 0;
}

.local-expertise-sec-txt {
  background: #c9302c;
  padding: 50px;
  border-radius: 15px;
}

.local-expertise-sec-txt h3 {
  text-align: center;
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 15px;
  color: #fff;
}

.local-expertise-sec-txt p {
  text-align: center;
  margin: 0 150px 0px;
  font-size: 18px;
  line-height: 28px;
  color: #fff;
}

/* end local-expertise */

/* our-recruitment */
.our-recruitment {
  padding: 60px 0;
  background: #0f0f0f;
  margin: 30px 0;
}

.our-recruitment-sec-txt h3 {
  text-align: center;
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 15px;
  color: #fff;
}

.our-recruitment-sec-txt p {
  text-align: center;
  margin: 0 150px 50px;
  font-size: 18px;
  line-height: 28px;
  color: #fff;
}

.our-recruitment-sec-card {
  background: #1a1a1a;
  border-radius: 15px;
  padding: 50px 25px 25px;
  position: relative;
  border: 1px solid #313131;
  height: 280px;
}

.our-recruitment-sec-card h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.our-recruitment-sec-card p {
  color: #99a1af;
  font-family: sans-serif;
  margin: 0;
  font-size: 15px;
  line-height: 24px;
}

.our-recruitment-sec-card-img {
  width: 50px;
  background: #2b1c1b;
  padding: 8px;
  border-radius: 10px;
  display: grid;
  margin-bottom: 25px;
}

.recruitment-span {
  background: #1e6eff;
  color: #fff;
  width: 48px;
  height: 48px;
  display: flex;
  font-size: 18px;
  font-weight: 700;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  position: absolute;
  top: -20px;
  font-family: system-ui;
}

.recruitment-span-two {
  background: #00a63e;
}

.recruitment-span-three {
  background: #9810fa;
}

.recruitment-span-four {
  background: #f54a00;
}

/* end our-recruitment */

/* track-status */
.track-status {
  padding: 30px 0;
}

.track-status-card {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 30px 25px;
  border-radius: 15px;
  background: #fff;
  transition: all 0.3s ease-in-out;
  position: relative;
}

.track-status-card-img {
  width: 60px;
  height: 60px;
  background: #dbecff;
  padding: 13px;
  border-radius: 50px;
  margin: 0 auto 20px;
  display: grid;
}

.track-status-card h4 {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.track-status-card p {
  text-align: center;
  margin-bottom: 0;
}

.track-status-card-img-two {
  background: #d4ffe9;
}

.track-status-card-img-three {
  background: #ebd4ff;
}

/* end track-status */

/* our-clients */
.our-clients {
  background-color: #000;
  padding: 50px 0 60px;
  margin: 30px 0;
}

.our-clients h3 {
  text-align: center;
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 15px;
  color: #fff;
}

.our-clients p {
  text-align: center;
  margin: 0 150px 50px;
  font-size: 18px;
  line-height: 28px;
  color: #99a1af;
}

.our-clients .swiper {
  width: 100%;
}

.our-clients .swiper-wrapper {
  transition-timing-function: linear !important;
}

.our-clients .swiper-slide {
  height: auto !important;
}

.our-clients .horizontal-ticker {
  /* margin: 0 -20px; */
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}

.our-clients .horizontal-ticker__slide {
  position: relative;
  width: 10vw;
  aspect-ratio: 300 / 205;
  border-radius: 10px;
  overflow: hidden;
  backdrop-filter: blur(50px);
}

.our-clients .horizontal-ticker__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.6s ease-out;
}

/* end our-clients */

/* testimonial */
.testimonial {
  width: 100%;
  /* height: 100vh; */
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-color: #3d5a80;
  color: #3d5a80; */
  padding: 30px 0;
}

.testimonial h3 {
  text-align: center;
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 30px;
  color: #000;
}

.testimonial-slide {
  padding: 0px 20px 20px;
}

.testimonial_box-top {
  background-color: #e0fbfc;
  padding: 30px;
  border-radius: 15px;
  /* display: flex; */
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /* text-align: center; */
  box-shadow: 5px 5px 20px rgba(152, 193, 217, 0.493);
}

.testimonial_box-icon {
  padding: 10px 0;
}

.testimonial_box-icon i {
  font-size: 25px;
  color: #14213d;
}

.testimonial_box-text {
  padding: 10px 0 30px;
}

.testimonial_box-text p {
  color: #293241;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 0;
}

.testimonial_box-img {
  padding: 20px 0 10px;
  display: flex;
  justify-content: center;
}

.testimonial_box-img img {
  width: 70px;
  height: 70px;
  border-radius: 50px;
  border: 2px solid #e5e5e5;
}

/* .testimonial_box-name {
  padding-top: 10px;
} */

.testimonial_box-name h4 {
  font-size: 16px;
  line-height: 25px;
  color: #293241;
  margin-bottom: 0;
  font-weight: 600;
}

.testimonial_box-job p {
  color: #293241;
  font-size: 14px;
  text-transform: uppercase;
  /* letter-spacing: 3px; */
  line-height: 20px;
  font-weight: 300;
  margin-bottom: 0;
}

.checked {
  color: orange;
}

/* end testimonial */

/* footer */
footer {
  padding: 60px 0 0px;
  background: #0a0a0a;
  margin: 20px 0 0;
}

footer .footer__inner {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}

footer .footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  row-gap: 30px;
}

footer .footer__top-left {
  display: flex;
  flex-direction: column;
  row-gap: 25px;
  padding-right: 20px;
}

footer .footer__top-left-logo img {
  width: 225px;
  background: #ffffff;
  padding: 8px 10px;
  border-radius: 10px;
}

footer .footer__top-left-text p {
  color: #99a1af;
  font-size: 15px;
  line-height: 20px;
  margin: 0 0 10px;
}

footer .footer__top-right {
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
  flex-direction: column;
  row-gap: 20px;
}

footer .footer__top-right h4 {
  font-size: 18px;
  line-height: 25px;
  color: #fff;
  margin-bottom: 0;
  font-weight: 600;
}

footer .footer__top-right-menu ul {
  display: flex;
  justify-content: center;
  /* align-items: center; */
  flex-direction: column;
  row-gap: 20px;
  padding: 0 0 0 20px;
}

footer .footer__top-right-menu ul li {
  list-style: none;
}

footer .footer__top-right-menu ul li a {
  color: #99a1af;
  font-size: 15px;
  line-height: 20px;
  text-decoration: none;
  display: flex;
  gap: 10px;
}

footer .footer__top-right-social ul {
  display: flex;
  /* justify-content: center; */
  align-items: center;
  /* flex-direction: column; */
  row-gap: 10px;
  gap: 25px;
  margin: 0;
  padding-left: 0;
}

footer .footer__top-right-social ul li {
  list-style: none;
}

footer .footer__top-right-social ul li a {
  color: #fff;
  font-size: 22px;
  line-height: 20px;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}

footer .footer__top-right-social ul li a:hover i {
  animation: toTopFromBottom 0.3s forwards;
}

@keyframes toTopFromBottom {
  49% {
    transform: translateY(-100%);
  }

  50% {
    opacity: 0;
    transform: translateY(100%);
  }

  51% {
    opacity: 1;
  }
}

footer .footer__bottom {
  text-align: center;
  border-top: 1px solid #99a1af;
  padding: 25px 0;
}

footer .footer__bottom p {
  color: #99a1af;
  font-size: 14px;
  line-height: 20px;
  margin: 0;
}

.footer__top-right-menu ul {
  display: grid;
  gap: 20px;
}

.footer__top-right-menu ul li {
  list-style: none;
}

.footer__top-right-menu ul li a {
  color: #99a1af;
  font-size: 16px;
  line-height: 20px;
  text-decoration: none;
}

.footer__top-right-menu ul li img {
  width: 22px;
}

/* end footer */

/* all-jobs */
.all-jobs {
  padding: 30px 0;
}

.all-jobs-content h3 {
  text-align: center;
  font-size: 32px;
  margin: 25px 0 35px;
  font-weight: 700;
}

.all-jobs-search {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 25px;
}

.all-jobs-search .input-group-text {
  background-color: #fff;
  border-right: 0;
}

.all-jobs-search .form-control,
.all-jobs-search .form-select {
  border-left: none;
  padding: 10px 12px;
}

.all-jobs-search .form-control {
  padding-left: 0;
}

/* .all-jobs-search .form-control:focus,
.all-jobs-search .form-select:focus {
  background-color: #0f0f0f;
  color: #99a1af;
  border: 1px solid #99a1af;
  border-left: none;
} */

.all-jobs-search .form-select {
  border-left: 1px solid #99a1af;
}

/* end all-jobs */

/*  all-job-list-details*/
.all-job-list-details {
  padding: 30px 0;
}

/* .view-job-details-topimg {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.view-job-details-topimg .view-job-details-topimg-img img {
  position: absolute;
  top: -125px;
  left: 50px;
  width: 200px;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
} */

/* .verifed-tooltip .tooltip-container {
  cursor: pointer;
  position: relative;
  display: inline-block;
  width: 75px;
} */

/* .rating-section {
  margin-top: 5px;
}

.rating-section ul li {
  float: left;
  margin-right: 0px;
}

.rating-section .rating {
  border: none;
  float: left;
}

.rating-section .rating>input {
  display: none;
} */

.view-job-details-toptxt {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  margin-top: 15px;
}

.view-job-details-toptxt .view-job-details-toptxt1 h3 {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  font-family: "Poppins", sans-serif;
}

.view-job-details-toptxt .view-job-details-toptxt1 h5 {
  font-size: 16px;
  font-weight: 500;
}

.view-job-details-toptxt .view-job-details-toptxt2 {
  display: flex;
  align-items: center;
}

.view-job-details-toptxt .view-job-details-toptxt2 .bg-secondary {
  background-color: #d9d9d9 !important;
  color: #000;
}

.view-job-details-toptxt .view-job-details-toptxt2 a {
  padding: 10px 35px;
  border-radius: 50px;
  font-size: 16px;
  color: #fff;
  background-color: #249af9;
  margin-left: 8px;
  text-decoration: none;
}

.view-job-details-toptxt .view-job-details-toptxt2 .finbyz-button {
  color: #fff;
  text-decoration: none;
  background-color: #c9302c;
  -webkit-transition: .3s all ease;
  transition: .3s ease all;
  font-size: 14px;
  text-transform: capitalize;
  display: inline-block;
  text-align: center;
  padding: 10px 30px;
  border: 1px solid #c9302c;
  border-radius: 50px;
  position: relative;
  z-index: 1;
}

.view-job-details-toptxt .view-job-details-toptxt2 .finbyz-button:before {
  -webkit-transition: .5s all ease;
  transition: .5s all ease;
  position: absolute;
  top: 0;
  left: 50%;
  right: 50%;
  bottom: 0;
  opacity: 0;
  content: '';
  background-color: #fff;
  z-index: -1;
  border-radius: 50px;
}

.view-job-details .card {
  border: 1px solid #adadad;
  border-radius: 10px;
  padding: 24px;
}

.view-job-details .view-job-details-txt {
  padding: 10px;
}

.view-job-details .view-job-details-txt ul {
  padding-top: 10px;
  padding-left: 0;

}

.view-job-details .view-job-details-txt ul h6 {
  font-size: 17px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  margin-bottom: 10px;
}

.view-job-details-txt ul p {
  font-size: 15px;
}

.view-job-details .view-job-details-txt ul li {
  list-style-type: disc;
  margin-left: 28px;
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 8px;
}

.view-job-details-txt-right {
  position: sticky;
  top: 90px;
  margin-top: 0px;
}

.view-job-details-txt-right .card h3 {
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  color: #000;
  margin-bottom: 0;
  font-size: 26px;
}

.view-job-details-txt-right .card p {
  margin-bottom: 3px;
  font-size: 15px;
  font-weight: 600;
}

.all-job-details-txt-right .card ul {
  margin: 20px 0 0;
  list-style: none;
  padding-left: 0;
}

.all-job-details-txt-right .card ul li {
  color: #000;
  padding: 0;
  background-color: #fff;
  font-weight: 500;
  font-size: 15px;
}

.all-job-details-txt-right .card ul li:not(:last-child) {
  margin-bottom: 15px;
}

.all-job-details-txt-right .card ul li img {
  width: 23px;
  margin-right: 6px;
}

.all-job-details-txt-right .card ul li span {
  font-weight: 600;
}

/* end all-job-list-details */

/* apply-form */
.apply-form-section {
  padding: 60px 0;
}

.apply-form {
  padding: 35px;
  border-radius: 15px;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 2px 8px;
}

.apply-form .form-control-file {
  width: 100%;
}

.apply-form .form-group {
  margin-bottom: 15px;
}

.apply-form h3 {
  font-size: 28px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  color: #000;
  margin-bottom: 25px;
  text-align: center;
}

.apply-form .btns {
  background-color: #c9302c;
  color: #fff;
  padding: 10px 40px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: block;
  margin: 0 auto;
}

.toggle-password {
  float: right;
  cursor: pointer;
  margin-right: 10px;
  margin-top: -25px;
}

/* end apply-form */

/* contact-sec */
.contact-sec {
  padding-top: 20px;
  padding-bottom: 0px;
  margin: 0 70px;
}

.contact-bg {
  background-image: url(../img/bg/contact.jpeg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: 100%;
  padding: 50px;
  border-radius: 15px;
}

.contact-left {
  position: relative;
  display: block;
  height: 100%;
  margin-left: 45px;
  margin-top: 15px;
}

.contact-txt h3 {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact-txt p {
  color: #fff;
  font-weight: 300;
}

.contact-txt1-1 {
  position: absolute;
  bottom: 0;
}

.contact-txt1 {
  margin-bottom: 25px;
}

.contact-txt1 h6 {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  border-bottom: 2px solid #c9302c;
  display: inline-block;
  margin-bottom: 8px;
  padding-bottom: 4px;
}

.contact-txt1 p {
  color: #fff;
  font-weight: 300;
}

.contact-txt1 a {
  color: #fff;
  font-weight: 300;
  display: block;
  text-decoration: none;
}

.contact-right {
  background: #fff;
  /* margin-top: 35px; */
  padding: 30px;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.contact-right h4 {
  font-size: 23px;
  margin-bottom: 8px;
}

.contact-right p {
  font-size: 15px;
}

/* .contact-right form {
  padding-top: 10px;
} */

.contact-right .form-group {
  margin-top: 15px;
}

.contact-right .form-group .form-label {
  margin-bottom: 6px;
  text-transform: capitalize;
}

.contact-right .btn {
  background: #c9302c;
  border-radius: 4px;
  padding: 6px 30px;
  color: #fff;
  margin: 25px auto 0;
  display: block;
  text-shadow: 0px 4px 3px rgba(0, 0, 0, 0.4), 0px 8px 13px rgba(0, 0, 0, 0.1), 0px 18px 23px rgba(0, 0, 0, 0.1);
}

/* end contact-sec */

/* common-banner */
.common-banner {
  padding: 30px 0;
}

.common-banner-bg {
  position: relative;
  margin: 0 60px;
}

.common-banner-bg .common-banner-img img {
  border-radius: 30px;
}

/* end common-banner */

/* gallery-main */
.gallery-main {
  padding: 10px 0 25px;
}

.gallery-main .contain {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  justify-content: center;
  align-items: center;
}

.gallery-main .card {
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.24);
  color: #333333;
  border-radius: 2px;
}

.gallery-main .card-image {
  background: #ffffff;
  display: block;
  padding-top: 70%;
  position: relative;
  width: 100%;
}

.gallery-main .card-image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* end gallery-main */

/* tracking-sec */
.tracking-sec {
  padding: 30px 0;
}

@-webkit-keyframes myanimation {
  from {
    left: 0%;
  }

  to {
    left: 50%;
  }
}

.tracking-sec h1 {
  text-align: center;
  font-weight: 700;
  font-size: 32px;
  padding: 0px 0 0px;
  color: #000;
}

.tracking-sec p {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: #000;
}

.tracking-sec .checkout-wrap {
  color: #444;
  font-family: 'PT Sans Caption', sans-serif;
  margin: 40px auto;
  max-width: 1200px;
  position: relative;
}

.tracking-sec ul.checkout-bar {
  margin: 0 20px;
}

.tracking-sec ul.checkout-bar li {
  color: #ccc;
  display: block;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 20px 14px 80px;
  position: relative;
}

.tracking-sec ul.checkout-bar li:before {
  -webkit-box-shadow: inset 2px 2px 2px 0px rgba(0, 0, 0, 0.2);
  box-shadow: inset 2px 2px 2px 0px rgba(0, 0, 0, 0.2);
  background: #ddd;
  border: 2px solid #FFF;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  left: 20px;
  line-height: 37px;
  height: 35px;
  position: absolute;
  text-align: center;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.2);
  top: 4px;
  width: 35px;
  z-index: 1;
}

.tracking-sec ul.checkout-bar li.active {
  color: #8bc53f;
  font-weight: bold;
}

.tracking-sec ul.checkout-bar li.active:before {
  background: #8bc53f;
  z-index: 1;
}

.tracking-sec ul.checkout-bar li.visited {
  background: #ECECEC;
  color: #28285c;
  z-index: 1;
}

.tracking-sec ul.checkout-bar li.visited:before {
  background: #28285c;
  z-index: 2;
}

.tracking-sec ul.checkout-bar li:nth-child(1):before {
  content: "1";
}

.tracking-sec ul.checkout-bar li:nth-child(2):before {
  content: "2";
}

.tracking-sec ul.checkout-bar li:nth-child(3):before {
  content: "3";
}

.tracking-sec ul.checkout-bar li:nth-child(4):before {
  content: "4";
}

.tracking-sec ul.checkout-bar li:nth-child(5):before {
  content: "5";
}

.tracking-sec ul.checkout-bar li:nth-child(6):before {
  content: "6";
}

.tracking-sec ul.checkout-bar a {
  color: #28285c;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

@media all and (min-width: 800px) {
  .tracking-sec ul.checkout-bar li.active:after {
    -webkit-animation: myanimation 3s 0;
    background-size: 35px 35px;
    background-color: #8bc53f;
    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);
    background-image: -moz-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);
    -webkit-box-shadow: inset 2px 2px 2px 0px rgba(0, 0, 0, 0.2);
    box-shadow: inset 2px 2px 2px 0px rgba(0, 0, 0, 0.2);
    content: "";
    height: 15px;
    width: 100%;
    left: 50%;
    position: absolute;
    top: -50px;
    z-index: 0;
  }

  .tracking-sec .checkout-wrap {
    margin: 60px auto;
    padding-bottom: 20px;
  }

  .tracking-sec ul.checkout-bar {
    -webkit-box-shadow: inset 2px 2px 2px 0px rgba(0, 0, 0, 0.2);
    box-shadow: inset 2px 2px 2px 0px rgba(0, 0, 0, 0.2);
    background-size: 35px 35px;
    background-color: #EcEcEc;
    background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.4) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.4) 75%, transparent 75%, transparent);
    background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.4) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.4) 75%, transparent 75%, transparent);
    border-radius: 15px;
    height: 15px;
    margin: 0 auto;
    padding: 0;
    position: absolute;
    width: 100%;
  }

  .tracking-sec ul.checkout-bar:before {
    background-size: 35px 35px;
    background-color: #28285c;
    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);
    background-image: -moz-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);
    -webkit-box-shadow: inset 2px 2px 2px 0px rgba(0, 0, 0, 0.2);
    box-shadow: inset 2px 2px 2px 0px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    content: " ";
    height: 15px;
    left: 0;
    position: absolute;
    width: 10%;
  }

  .tracking-sec ul.checkout-bar li {
    display: inline-block;
    margin: 50px 0 0;
    padding: 0;
    text-align: center;
    width: 19%;
  }

  .tracking-sec ul.checkout-bar li:before {
    height: 45px;
    left: 40%;
    line-height: 45px;
    position: absolute;
    top: -65px;
    width: 45px;
    z-index: 1;
  }

  .tracking-sec ul.checkout-bar li.visited {
    background: none;
  }

  .tracking-sec ul.checkout-bar li.visited:after {
    background-size: 35px 35px;
    background-color: #28285c;
    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);
    background-image: -moz-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);
    -webkit-box-shadow: inset 2px 2px 2px 0px rgba(0, 0, 0, 0.2);
    box-shadow: inset 2px 2px 2px 0px rgba(0, 0, 0, 0.2);
    content: "";
    height: 15px;
    left: 50%;
    position: absolute;
    top: -50px;
    width: 100%;
    z-index: 1;
  }
}

/* end tracking-sec */

/* milestone-section */
.milestone-section {
  background: linear-gradient(135deg, #0c2d57, #1f4e79);
  padding: 70px 20px;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  margin: 30px 0;
}

.milestone-section .row {
  row-gap: 25px;
  justify-content: center;
}

/* Title */
.milestone-title {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 3px;
  text-align: center;
}

/* Company Name */
.company-name {
  font-size: 18px;
  opacity: .9;
  margin-bottom: 40px;
  text-align: center;
}

/* Card */
.milestone-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 28px 22px;
  transition: .35s;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  height: 195px;
}

/* Hover Effect */
.milestone-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 25px rgba(0, 0, 0, .25);
}

/* Icon */
.milestone-card .icon {
  font-size: 36px;
  margin-bottom: 15px;
}

/* Text */
.milestone-card p {
  font-size: 15.5px;
  line-height: 1.7;
}

/* Bold Highlight */
.milestone-card strong {
  color: #ffd166;
  font-weight: 700;
}

/* end milestone-section */

/* user-profile-section */
.user-profile-section {
  padding: 60px 0px;
}

.user-profile-section .row {
  row-gap: 25px;
  justify-content: center;
}

.user-profile-section .user-profile {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 30px;
  transition: .35s;
  /* backdrop-filter: blur(6px); */
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 0px 5px rgba(0, 0, 0, .25);
}

/* .user-profile-section .user-profile:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0px 5px rgba(0, 0, 0, .25);
} */

/* .user-profile-section .user-profile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.user-profile-section .user-profile-header-left {
  display: flex;
  align-items: center;
} */

/* .user-profile-section .user-profile-header-left-image {
  margin-right: 20px;
}

.user-profile-section .user-profile-header-left-image img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
} */
.user-profile-section .user-profile-header-left-content {
  display: flex;
  justify-content: space-between;
}

.user-profile-section .user-profile-header-left-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 3px;
}

.user-profile-section .user-profile-header-left-content p {
  font-size: 16px;
  opacity: .9;
  margin-bottom: 5px;
  font-weight: 500;
}

.user-profile-section .user-profile-header-left ul {
  margin-top: 15px;
  margin-bottom: 0;
  list-style: none;
  padding-left: 10px;
  display: grid;
  gap: 10px;
}

.user-profile-section .user-profile-header-left ul li {
  font-size: 15px;
  opacity: .9;
  font-weight: 500;
}

/* .user-profile-section .user-profile-header-right {
  display: flex;
  align-items: center;
} */

.user-profile-section .user-profile-header-right a {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
}

.user-profile-header-left .card {
  border: 1px solid rgb(210 210 210);
  border-radius: 8px;
  margin-top: 20px;
}

.user-profile-header-left .dotes {
  padding: 15px;
}

.user-profile-header-left .dotes1 {
  display: flex;
  justify-content: space-between;
}

.user-profile-header-left .card .dotes h3 {
  color: #373a3e;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 17px;
}

.user-profile-header-left .pdf {
  height: 55px;
  width: 55px;
}

.user-profile-header-left .card .dotes h4 {
  color: #000;
}

.user-profile-header-left .dropdown a {
  padding: 5px;
  font-size: 16px;
}

.user-profile-header-left .dropdown a svg {
  width: 24px;
  margin-right: 0px;
  fill: #b3b7c1;
}

.user-profile-header-left .dropdown-menu .dropdown-item {
  font-size: 14px;
  padding: 0 5px;
}

/* end user-profile-section */

/* dropdown-sec */
.dropdown-sec .dropdown-sec-p {
  background: #c9302c;
  color: #fff !important;
  padding: 9px 15px 6px !important;
  border: 1px solid #c9302c;
}

.dropdown-sec .dropdown-sec-p i {
  font-size: 20px;
  /* margin-top: 25px; */
}

.dropdown-sec .dropdown-sec-p:hover {
  background-color: transparent !important;
  color: #000 !important;
  border: 1px solid #c9302c;
}

.dropdown-sec .dropdown-item.active {
  background: #c9302c;
  color: #fff;
}

.dropdown-sec .dropdown-item.active img {
  filter: brightness(0) invert(1);
}

.dropdown-sec .dropdown-item {
  line-height: normal;
  font-size: 14px !important;
  font-weight: 400 !important;
  padding: 7px 12px !important;
}

.dropdown-sec .dropdown-item-logout {
  display: flex;
}

.dropdown-sec .dropdown-item-logout form {
  width: 100%;
}

.dropdown-sec .dropdown-item:hover {
  background: #c9302c !important;
  color: #fff !important;
}

.dropdown-sec .dropdown-item:hover form button {
  color: #fff !important;
}

.dropdown-sec .dropdown-item:hover img {
  filter: brightness(0) invert(1);
}

.dropdown-sec .dropdown-item img {
  width: 18px;
  margin-right: 6px;
}

.dropdown-sec .dropdown-menu {
  padding: 8px;
}

/* end dropdown-sec */

/* my-jobs */
.my-jobs {
  padding: 60px 0px;
}

.my-jobs .my-jobs-list {}

.my-jobs .my-jobs-list h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: #3e3d89;
  text-decoration: underline;
}

.my-jobs .my-jobs-list h5 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #c9302c;
  font-weight: 700;
}

.my-jobs .my-jobs-list a {
  text-decoration: none;
}

.my-jobs .my-jobs-list .table {
  margin-bottom: 0;
}

/* end my-jobs */

/*  */
.privacy-policy-section h3 {
  text-align: center;
  font-size: 38px;
  font-weight: 800;
}

/*  */

/*  */
.morecontent span {
  display: none;
}

.morelink {
  display: block;
  text-decoration: unset;
}

/*  */