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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --white: #fff;
  --gray: #1a202c;
  --lightgray: #4a5568;
  --off-white: #f7f7fa;
  --cerulean: #027fc0;
  --linear-one: #2596be;
  --linear-two: #0095e2;
  --off-gray: #f7f7fa;
  --purple: #7b61ff;
  --poppins: "Poppins", sans-serif;
}

.off-gray {
  background-color: var(--off-gray);
}

.px-8 {
  padding-inline: 5rem;
}

.py-6 {
  padding-block: 4rem;
}

.wdspc-1 {
  word-spacing: 5px;
}

.ltrspc-1 {
  letter-spacing: 2px;
}

.theme {
  background-color: var(--cerulean);
  color: var(--white);
}

.gradient-text {
  font-size: 48px;
  /* font-weight: bold; */
  background-image: linear-gradient(to right,
      var(--linear-two),
      var(--linear-one));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.gradient-line {
  background: rgb(103, 233, 241);
  background: linear-gradient(60deg,
      var(--linear-two) 8%,
      rgba(103, 233, 241, 1) 65%);
  height: 4px;
  width: 4rem;
  margin-inline: auto;
  margin-bottom: 1.5rem;
  font-family: var(--poppins);
}

.gradient-circle {
  width: 72px;
  height: 72px;
  border-radius: 100%;
  background: rgb(2, 127, 192);
  background: linear-gradient(42deg,
      rgba(2, 127, 192, 1) 11%,
      rgba(255, 255, 255, 1) 88%);
  position: relative;
  left: 40%;
}

.gradient-circle-d {
  width: 72px;
  height: 72px;
  border-radius: 100%;
  background: rgb(2, 127, 192);
  background: linear-gradient(42deg,
      rgba(2, 127, 192, 1) 11%,
      rgba(255, 255, 255, 1) 88%);
}

.theme-btn {
  background-color: var(--cerulean);
  color: var(--white);
  padding-inline: 1rem;
  padding-block: 0.5rem;
  border-radius: 6px;
  border: none;
}

.gc-1 {
  padding-left: 30rem;
}

.topbar {
  background-color: var(--white);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  /* box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px; */
  position: relative;
  font-family: var(--poppins);
}

.navbar-brand>img {
  height: 3rem;
}

.navbar-toggler {
  border: none !important;
}

.navbar-toggler:focus {
  outline: none !important;
  box-shadow: none !important;
}

.signin-btn-link {
  font-size: .9rem;
}

.signin-btn-link a:first-child button {
  /* all: unset; */
  border: 1px solid var(--gray);
  border-radius: 5px;
  color: var(--gray);
  padding-inline: 1rem;
  padding-block: 0.5rem;
  background-color: var(--white);
  margin-right: 5px;
}

.catchphrase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-inline: 4rem;
  padding-block: 4rem;
  gap: 1rem;
  font-family: var(--poppins);
}

.catchphrase p {
  padding-block: 2rem;
  line-height: 36px;
  font-size: 1.1rem;
}

.catchphrase>div:first-child button {
  font-size: 0.9rem;
}

.catchphrase>div:nth-child(2) img {
  max-width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.catchphrase2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-inline: 4rem;
  padding-block: 4rem;
  gap: 1rem;
  font-family: var(--poppins);
}

.catchphrase2 p {
  padding-block: 2rem;
  line-height: 36px;
  font-size: 1.1rem;
  color: var(--lightgray);
}

.catchphrase2 p .theme-txt {
  color: var(--cerulean);
}

.catchphrase2>div:nth-child(1) img {
  max-width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.ourservices {
  padding-top: 2rem;
  padding-bottom: 4rem;
  padding-inline: 5rem;

  font-family: var(--poppins);
}

.os-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding-block: 5rem;
}

.os-grid-item {
  border: 1px solid #e7daed;
  padding-inline: 2rem;
  padding-block: 2rem;
  display: flex;
  align-items: start;
  gap: 1rem;
}

.os-grid-item p {
  font-size: 0.9rem;
  color: var(--lightgray);
}

.os-grid-item img {
  width: 2.1rem;
  height: 2.1rem;
}

.os-span {
  padding: 0.5rem;
  border-radius: 8px;
}

.os-grid-item:nth-child(1)>.os-span {
  background: rgb(39, 39, 46);
  background: linear-gradient(72deg,
      rgba(39, 39, 46, 1) 8%,
      rgba(41, 39, 46, 1) 44%);
}

.os-grid-item:nth-child(2)>.os-span {
  background: rgb(255, 146, 174);
  background: linear-gradient(242deg,
      rgba(255, 146, 174, 1) 8%,
      rgba(255, 61, 154, 1) 65%);
}

.os-grid-item:nth-child(3)>.os-span {
  background: rgb(255, 239, 94);
  background: linear-gradient(242deg,
      rgba(255, 239, 94, 1) 8%,
      rgba(247, 147, 111, 1) 65%);
}

.os-grid-item:nth-child(4)>.os-span {
  background: rgb(103, 233, 241);
  background: linear-gradient(242deg,
      rgba(103, 233, 241, 1) 8%,
      rgba(36, 231, 149, 1) 65%);
}

.hww-heading {
  font-size: 2.1rem;
  font-family: var(--poppins);
}

.hww-card-container {
  display: flex;
  justify-content: space-between;
}

.hww-line {
  height: 3px;
  background-color: rgb(247, 102, 128);
}

.hww-card {
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
    rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
  border-radius: 9px;
  padding-block: 1rem;
  padding-inline: 1.4rem;
  font-family: var(--poppins);
  position: relative;
}

.hww-card-container:nth-child(1)>.hww-card::after {
  content: "";
  position: absolute;
  height: 2rem;
  width: 3px;
  background-color: rgb(247, 102, 128);
  bottom: -3rem;
  left: 50%;
  right: 50%;
}

.hww-card-container:nth-child(1) {
  padding-right: 4rem;
}

.hww-card-container:nth-child(3) {
  padding-left: 4rem;
}

.hww-card-container:nth-child(3)>.hww-card::after {
  content: "";
  position: absolute;
  height: 2rem;
  width: 3px;
  background-color: rgb(247, 102, 128);
  top: -3rem;
  left: 50%;
  right: 50%;
}

.hww-card>p {
  color: var(--lightgray);
  width: 30ch;
}

.hww-gradienttext {
  background-image: linear-gradient(to right, #57007b, #f76680);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 700;
  font-size: 1.125rem;
}

.hww-cardheading {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--gray);
}

.briefcase-img {
  width: 40px;
  height: 40px;
}

.ltop-card-container {
  background-color: #f9f9ff;
  font-family: var(--poppins);
  padding-block: 2rem;
}

.ltop-heading {
  font-family: var(--poppins);
}

.ltop-card {
  background-color: var(--white);
  padding-inline: 1.3rem;
  padding-block: 2.3rem !important;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
  border-radius: 8px;
  width: 333px;
}
.ltSwiper .swiper-slide-active {
  position: relative;
  top: 2rem;
}
.job-description {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
  -moz-line-clamp: 4;
  -o-line-clamp: 4;
  -ms-line-clamp: 4;
  line-height: 1.6em;
  margin-bottom: 1rem;
  height: 7rem;
}
.job-description p {
  font-family: var(--poppins);
}
.lt-applynow-btn {
  padding-block: 1rem;
  padding-inline: 3rem;
}

.ltop-card h6 {
  font-size: 1.2rem;
  white-space: nowrap;
  font-family: var(--poppins);
}

.ltop-card>p {
  color: var(--lightgray);
  font-size: 0.9rem !important;
  line-height: 22px;
  padding-block: 1rem;
  font-family: var(--poppins);
}

.ltop-card .ltop-cpd img {
  width: 25px;
  height: 25px;
  object-fit: cover;
}

.ltop-cpd>div span:nth-of-type(2) {
  color: var(--lightgray);
  font-family: var(--poppins);
}

.ltop-cpd span {
  font-size: 0.9rem;
  font-family: var(--poppins);
}

.ltop-cpd>div {
  padding-block: 0.3rem !important;
}

.ltSwiper .swiper-slide {
  width: fit-content !important;
}

.contactus {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding-inline: 6rem;
  background-color: var(--off-gray);
  font-family: var(--poppins);

}

.contactus>div:nth-child(1) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-inline: 3rem;
}

.contactus>div:nth-child(1) h5 {
  font-size: 2.1rem;
}

.contactus>div:nth-child(1) p {
  color: var(--lightgray);
  line-height: 1.8rem;
  word-spacing: 2px;
  font-size: 1.125rem;
  font-family: "Inter", sans-serif;
  font-weight: 400;
}

.contactus>div:nth-child(2) {
  border: 2px dashed var(--purple);
  border-radius: 5px;
  padding: 1.5rem;
}

.contactus>div:nth-child(2)>form label {
  padding: 0.5rem;
}

.contactus>div:nth-child(2)>form input,
textarea {
  padding: 0.5rem;
}

.featured {
  font-family: var(--poppins);
}

.featured-heading {
  font-size: 2.1rem;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1rem !important;
}

.tSwiper {
  position: relative;
}

.swiper-custom-next,
.swiper-custom-prev {
  border: 1px solid var(--cerulean);
  border-radius: 100%;
  height: 2.5rem;
  display: grid;
  place-content: center;
  color: var(--cerulean);
  width: 2.5rem;
  position: absolute;
  z-index: 100;
}

.swiper-custom-prev {
  top: 0;
  bottom: 0;
  margin: auto 0;
}

.swiper-custom-next {
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto 0;
}
.swiper-button-next,
.swiper-button-prev {
  border: 1px var(--cerulean) solid;
  border-radius: 100%;
  width: 40px !important;
  height: 40px !important;
}

.swiper-button-next {
  right: 10rem !important;
}

.swiper-button-prev {
  left: 10rem !important;
}

.main-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-inline: 2rem;
  padding-block: 4rem;
  gap: 1rem;
  font-family: var(--poppins);
}

.main-section>div:nth-child(1)>img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

/* .main-section>div:nth-child(2) {} */

.client-list {
  background-color: var(--off-gray);
  padding-block: 2.5rem;
}

.client-list img {
  height: 80px !important;
}

/* #Dyname {} */

.apply-form label {
  position: absolute;
  background-color: var(--white);
  font-size: 0.9rem;
  top: 5px;
  left: 24px;
  padding-inline: 6px;
  z-index: 50;
}

.apply-form input::placeholder {
  font-size: 0.8rem;
}

.testimonial {
  padding-block: 5rem;
  position: relative;
}

.testimonial-content {
  position: relative;
  width: 40rem;
  padding-block: 2rem;
  font-family: "Poppins", sans-serif;
}

.testimonial-content p {
  padding-inline: 3rem;
  text-align: justify;
  margin-inline: auto;
}

.testimonial-content div>span:first-child {
  font-size: 1.2rem;
  font-weight: 700;
  background-image: linear-gradient(to right,
      var(--linear-two),
      var(--linear-one));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.testimonial-content::after {
  content: "❜";
  font-size: 4rem;
  background-image: linear-gradient(to right, #ffffff, #027fc0);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  position: absolute;
  bottom: 0;
  right: 0;
}

.testimonial-content::before {
  content: "❛";
  font-size: 4rem;
  background-image: linear-gradient(to right, #ffffff, #027fc0);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  position: absolute;
  top: 0;
  left: 0;
}
.arrow-image-1 {
  position: absolute;
  left: 72%;
  top: -7rem;
}
.arrow-image-2 {
  position: absolute;
  bottom: -11rem;
  left: 14rem;
}
.tsslide {
  display: grid !important;
  place-content: center;
}

.hiringpartners {
  font-family: var(--poppins);
  padding-block: 3rem;
}

.hp-heading h6 {
  font-size: 2.1rem;
}

.tab-container {
  max-width: 1000px;
  margin-inline: auto;
}

.tab-container .nav-tabs {
  border: none !important;
}

.nav-tabs .nav-link {
  border: none !important;
  outline: none !important;
  color: var(--gray);
}

.nav-tabs .nav-link.active {
  border: none !important;
  color: var(--cerulean) !important;
  font-weight: 600;
  position: relative;
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus,
.nav-tabs {
  outline: none;
  border: none;
}

.nav-tabs .nav-link.active::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  width: 2rem;
  margin-inline: auto;
  height: 4px;
  border-radius: 2.5rem;
  background: rgb(103, 233, 241);
  background: linear-gradient(60deg,
      var(--linear-two) 8%,
      rgba(103, 233, 241, 1) 65%);
  transition: all 300ms ease-in;
}

.tab-content-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  padding-block: 4rem;
}

.tab-content-grid img {
  max-width: 160px;
  object-fit: contain;
  height: 120px;
}

.start-hiring {
  padding: 5rem 4rem;
  font-family: var(--poppins);
}

.start-hiring-content {
  display: flex;
  gap: 2rem;
  background-color: #E4ECF7;
  justify-content: space-between;
  align-items: center;
  padding: 4rem 2rem;
}

.start-hiring-content h6 {
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 55px;
  text-align: left;
  width: 25ch;
}

.start-hiring>div button {
  border: none;
  background: rgb(30, 174, 230);
  background: linear-gradient(214deg, rgba(30, 174, 230, 1) 65%, rgba(103, 233, 241, 1) 100%);
  color: var(--white);
  border-radius: 8px;
  padding: 1rem 3rem;
  font-weight: 500;
}

/* .rq-label {
  position: relative;
}

.rq-label::after {
  content: '*';
  position: absolute;
  right: 0;
  color: red;
  top: -4px
} */

/* .gv-line-container{
  position: relative;
  padding-bottom: 1.5rem;
  display: flex;
  gap: 1rem;
}

.gv-line1{
  width: 2rem;
  height: 8px;
  background: rgb(30,174,230);
  background: linear-gradient(214deg, rgba(30,174,230,1) 65%, rgba(103,233,241,1) 100%); 
  border-radius: 10px;
  transform: rotate(60deg);
}

.gv-line2{
  width: 2rem;
  height: 8px;
  background: rgb(30,174,230);
  background: linear-gradient(214deg, rgba(30,174,230,1) 65%, rgba(103,233,241,1) 100%); 
  border-radius: 10px;
  transform: rotate(90deg);

} */

footer {
  padding-top: 5rem;
  background-color: var(--white);
  font-family: var(--poppins);
}

footer img {
  height: 3.2rem;
}

footer ul>li {
  list-style: none;
}

footer ul a {
  text-decoration: none;
  color: var(--lightgray);
}

footer>div:nth-child(1)>div:nth-child(1)>p {
  color: var(--lightgray);
}

footer>div:nth-child(1)>div:nth-child(3)>p {
  color: var(--lightgray);
}

footer>div:nth-child(1)>div:nth-child(4) .social-icon {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 100%;
  padding: 0.5rem;
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-content: center;
}

footer>div:nth-child(2)>p {
  color: var(--lightgray);
}

.custom-message {
  color: blue !important;
  background-color: white !important;
  border: 1px solid blue !important;
  padding: 15px !important;
  border-radius: 5px;
  margin: 10px 0;
  font-size: 1.1em;
  width: 100%;
  max-width: 450px;
  text-align: center;
  white-space: nowrap;
  font-family: var(--poppins);
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
}

  .video-container {
    position: relative;
    width: 630px;
    height: 455px;
    margin: 0 auto;
}

.video-container img {
  width: 100%;
  max-width: 600px;
  border: 2px solid #ccc;
  border-radius: 8px;
}

.video-container img:hover {
  opacity: 0.8;
}

.video-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: url("{% static '/assets/video-icon.jpg' %}") no-repeat center center;
  background-size: contain;
  pointer-events: none;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  font-size: 12px;
  color: #000;
  opacity: 1;
  background: rgba(0, 0, 0, 0.2);
}

.swiper-pagination-bullet-active {
  color: #fff;
  background: #007aff;
}

.swiper-slide {
  transition: transform 0.3s ease;
}

.blog-img h1 {
  font-family: var(--poppins);
  text-align: center;
}

.blog-img p {
  font-family: var(--poppins);
  font-size: 1rem;
  padding: 2rem;
  line-height: 1.8rem;
}

.blog-img h2 {
  font-family: var(--poppins);
  font-size: 2rem;
  padding-left: 2rem;
}

.blog-heading {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.blog-heading h1 {
  font-size: 3rem;
  padding-top: 1.5rem;
}

.blog-heading p {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.blog-slider-img img {
  width: 100% !important;
  height: 15rem !important;
  object-fit: cover !important;
  border-radius: 10px;
}

.detail-blog {
  padding: 8rem;
}

.blog-detail-description p {
  font-family: var(--poppins) !important;
  line-height: 2rem !important;
}

.blog-image {
  width: 40rem;
  height: 40rem;
  object-fit: cover;
}

.logo-images {
  width: 15rem !important;
  height: 10rem !important;
  object-fit: contain !important;
}

.prof_qual{
  position: absolute;
  top: -0.6rem;
  left: 1rem;
  font-size: 0.9rem;
  font-weight: 400;
  background-color: white;
}
.qualification-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  padding: 5px;
  margin: 0;
  margin: 0;
  flex-grow: 1;
  padding: 0 !important;
  color: green;
  text-transform: uppercase;
  font-size: 1.1rem;
  white-space: nowrap;
}

.qualification-item p {
  margin: 0;
  flex-grow: 1;
  padding: 0 !important;
  color: green;
  text-transform: uppercase;
  font-size: 1.1rem;
}
.delete-icon {
  cursor: pointer;
  color: red;
  font-size: 2rem;
  margin-left: 0.5rem;
}
.qualifications-border {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
}
.plus-btn{
  position: absolute;
  right: 0;
  background-color: white;
}
.qualifications-container {
  display: flex;
  width: 100%;
  margin: 0;
  padding: 0;
}
.add-icon {
  cursor: pointer;
  margin-left: 0px;
}

.blog-description {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -moz-line-clamp: 2;
  -o-line-clamp: 2;
  -ms-line-clamp: 2;
  line-height: 1.6em;
  margin-bottom: 1rem;
  height: 4rem;
}
.hiringpartners .hp-heading {
  position: relative;
  padding: 1rem 0; /* Adjust padding as needed */
}

.prof_qualification-div {
  max-width: 400px;
  overflow-x: auto;
  overflow: visible;
}
.prof_qualification-div::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  background-color: #aaa; /* or add it to the track */
}
.prof_qualification-div::-webkit-scrollbar-thumb {
  background: var(--cerulean);
}
.disabled-qualification button{
  pointer-events: none;
  opacity: 0.6;
}
.selected-qualification p {
  background-color: var(--cerulean);
  color: white;
}
/* .swiper {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.swiper-slide {
  background-color: #ffffff;
  border-radius: 10px; 
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); 
}

.swiper-slide img {
  display: block;
  width: 100%;
} */
.termsdiv {
  max-width: 60%;
  margin: auto;
}
.terms li{
  font-size: 1.2rem;
}
@media (max-width: 800px) {
  .navbar-brand>img {
    height: 2rem;
  }

  .navbar-collapse>ul {
    padding-left: 0rem;
    text-align: center;
  }

  .gc-1 {
    display: none;
  }

  .gradient-text {
    font-size: 1.8rem;
  }

  .navbar-collapse>a {
    display: flex;
    justify-content: center;
  }

  .signin-btn-link {
    /* width: 235px; */
    display: flex;
    justify-content: center;
  }

  .catchphrase {
    grid-template-columns: 1fr;
    padding-inline: 2rem;
  }

  .catchphrase2 {
    grid-template-columns: 1fr;
    padding-inline: 2rem;
  }

  .catchphrase2 img {
    display: none;
  }

  .main-section {
    grid-template-columns: 1fr;
  }

  .hww-card-container {
    gap: 2rem;
  }

  .contactus {
    padding-inline: 2rem;
    grid-template-columns: 1fr;
  }

  .contactus>div:nth-child(1) {
    padding-inline: 0;
  }

  .gradient-circle {
    display: none;
  }

  .ourservices {
    padding-inline: 2rem;
  }

  .os-grid {
    grid-template-columns: 1fr;
    padding-block: 3rem;
  }

  .testimonial-content {
    width: 100%;
  }

  .testimonial-content p {
    padding-inline: 2rem;
  }

  .carousel-control-prev,
  .carousel-control-next {
    display: none !important;
  }

  .swiper-custom-next,
  .swiper-custom-prev {
    display: none;
  }

  .tab-content-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .start-hiring {
    padding: 4rem 1rem;
  }

  .start-hiring-content {
    flex-direction: column;
  }

  .start-hiring-content h6 {
    width: 100%;
    text-align: center;
    font-size: 1.8rem;
    line-height: 30px;
  }

  .blog-slider-img img {
    width: 15rem !important;
    height: 15rem !important;
    object-fit: cover !important;
    border-radius: 10px;
  }

  .detail-blog {
    padding: 0rem;
  }

  .blog-heading {
    display: block;
    padding: 0 !important;
  }

  .blog-heading h1 {
    font-size: 1rem;
    padding: 0;
  }

  .blog-heading p {
    font-size: 0.6rem;
    white-space: nowrap;
    padding: 0;
  }

  .blog-image {
    width: 19rem;
    height: 10rem;
    object-fit: cover;
  }
  .logo-images {
    width: 3rem !important;
    height: 8rem !important;
    object-fit: contain !important;
  }
  .arrow-image-1,
  .arrow-image-2 {
    display: none;
  }
  .cover-image {
    width: 20rem !important;
    height: 12rem !important;
  }
  .video-container {
    position: relative;
    width: 335px !important;
    height: 190px !important;
    margin: 0 auto;
}
}


.cover-image {
  width: 40rem;
  height: 30rem;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2; /* Make sure the image is on top */
  background-size: cover;
  background-position: center;
}

.youtube-video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: none; /* Initially hide the video */
}

@media (min-width: 700px) {
  .signin-btn-link {
    width: 235px;
    display: flex;
    justify-content: end;
  }

  footer>div:nth-child(1)>div:nth-child(1)>p,
  footer>div:nth-child(1)>div:nth-child(3)>p {
    width: 40ch;
  }

  .testimonial-content p {
    width: 60ch;
  }


}

@media (max-width: 1800px) {
  .blog-slider-img img {
    width: 100% !important;
    height: 15rem !important;
    object-fit: cover !important;
    border-radius: 10px;
  }

}