.bg-lal {
  background-color: #e00025;
}
.txt-lal {
  color: #e00025;
}
.bg-grray {
  background-color: #f2e8cf;
}
.txt-dark {
  color: #00171f;
}
.br-10 {
  border-radius: 10px;
}
/* .bg-logo{
    background-color: #004a58;
} */
.bg-dark {
  background-color: #1d1d1b;
}
.logo-pic {
  width: 110px;
  height: 55px;
}
.logo-pic-2 {
  width: 150px;
  height: 150px;
}
/* ****************************************buttons********************************************* */

/* cutsom butn */

.cstm-btn1 {
  cursor: pointer !important;
}

/* *********************************************Buttons end************************************ */
/* **************************************************cards1************************************* */

/* .dd_heading styles */
.dd_heading {
  text-align: center;
  font-family: 'Roboto Thin', sans-serif; /* Adjusted font family */
}

/* .page-content styles */
.page-content {
  display: grid;
  grid-gap: 1rem;
  padding: 1rem;
  max-width: 1024px;
  margin: 0 auto;
  font-family: 'var(--font-sans)', sans-serif; /* Adjusted font family */
}

@media (min-width: 600px) {
  .page-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 800px) {
  .page-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* .d_card styles */
.d_card {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 1rem;
  text-align: center;
  color: whitesmoke;
  background-color: whitesmoke;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1),
              0 2px 2px rgba(0, 0, 0, 0.1),
              0 4px 4px rgba(0, 0, 0, 0.1),
              0 8px 8px rgba(0, 0, 0, 0.1),
              0 16px 16px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  transition: transform 0.3s ease;
}

/* Larger height for mobile screens */
@media (max-width: 599px) {
  .d_card {
    height: 400px; /* Increased height for smaller screens */
  }
}

@media (min-width: 600px) {
  .d_card {
    height: 350px; /* Default height for medium screens */
  }
}

.d_card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* Adjust the height as needed */
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease-in-out;
}

.d_card:hover:before {
  transform: scale(1.1);
}

/* Background images for each card */
.d_card:nth-child(1):before {
  background-image: url(/src/images/card1.jpg);
}

.d_card:nth-child(2):before {
  background-image: url(/src/images/card2.jpg);
}

.d_card:nth-child(3):before {
  background-image: url(/src/images/card3.jpg);
}

.d_card:nth-child(4):before {
  background-image: url(/src/images/card4.jpg);
}

/* Hover effect adjustment */
@media (hover: hover) and (min-width: 600px) {
  .d_card:hover,
  .d_card:focus-within {
    align-items: center; /* Center align items on hover */
  }
}


/* *******************************************cards1************************************* */
/*========================================= owl crousel =======================================*/
#marquee {
  width: 100%;
  overflow: hidden;
}

#marquee .container {
  white-space: nowrap;
  overflow: hidden;
}

#marquee .pic-container {
  display: inline-block;
  animation: marquee 40s infinite linear;
  white-space: nowrap;
}

#marquee .pic-container:hover {
  animation-play-state: paused;
}

#marquee .pic {
  width: 7%;
  display: inline-block;
}

#marquee img {
  width: 100%;
  object-fit: cover;
  border: 1px solid rgba(238, 231, 231, 0.9);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

#marquee .pic {
  position: relative;
  /* Ensure relative positioning for containing absolute positioned elements */
  width: 8%;
  display: inline-block;
}

.bg-logo {
  position: absolute;
  bottom: 105px;
  /* Position at the bottom */
  left: 50%;
  /* Position at the center horizontally */
  transform: translateX(-50%);
  /* Adjust for center alignment */
  background-color: #004a58;
  /* Adjust the background color and opacity as needed */
  color: white;
  /* padding: 1px; */
  z-index: 999;
}

.content {
  position: relative;
  /* Ensure relative positioning for containing absolute positioned elements */
  padding-bottom: 2px;
  /* Adjust spacing as needed */
}

.visa-update {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.7);
  /* padding: 10px; */
  border-radius: 5px;
}

/* ===========================news page========================================== */

/* ADVERTISERS SERVICE CARD ENDED */
/* =======================================hero section ===================================== */
.hero {
  position: relative;
}

.hero .hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.5); /* Adjust the opacity (0.5) as needed */
  max-width: 80%; /* Adjust as needed */
}

@media (max-width: 768px) {
  .hero .hero-content {
    width: 90%; /* Adjust as needed */
    padding: 10px; /* Adjust as needed */
  }
}
@media (max-width: 768px) {
  .hero .hero-content p {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .hero {
    margin-top: 120px;
  }
}

/* ==========================================jobs page ===============================================================*/

.btn {
  appearance: none;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 100;

  border-radius: 9999rem;
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateX(18px);
}

.btn1 {
  /* padding: 10px 20px;  */
  font-weight: bold;
  background: black;
  border: none;
  cursor: pointer;
  color: white;
  font-size: 16px;
  border-radius: 9999rem;
  transition: all 0.3s ease;
}

.btn1:hover {
  transform: translateX(18px);
}

@media (max-width: 768px) {
  /* .btn1 {
    font-size: 14px;
    padding: 8px 16px;
  } */
}

@media (max-width: 576px) {
  /* .btn1 {
    font-size: 12px;
    padding: 6px 12px;
  } */
}

/* careers======================================= */
.job-form label {
  font-size: 22px;
  margin: 10px 10px 10px 5px;
  font-weight: 900;
}

.job-form .select-container {
  width: 100%;
  margin: 20px 0;
}

.job-form .select-container select {
  border: 1px solid black;
  width: 100%;
  height: 8vh;
  font-size: 18px;
  border-color: grey;
  background-color: white;
  padding: 0 10px;
  border-radius: 5px;
}

.jobs-count {
  margin-bottom: -50px;
}

.job-section {
  padding: 20px 0;
}

.job-section a {
  text-decoration: none;
  color: #2e9ee4;
  font-size: 20px;
}

.job-section h3 {
  font-size: 28px;
}

.job-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  border-top: 1px solid #dadada;
  border-bottom: 1px solid #dadada;
}
.job-row .col-left {
  padding: 20px 0 20px 20px;
}

.job-row .col-right {
  padding: 20px 20px 20px 0;
}

                 





/* new main career */

#ham {
  width: 45px;
  height: 38px;
  position: relative;
  margin: 0 10px;
  margin-top: 5px;
  /* margin-right: 20px; */
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  display: none;
}

#ham span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #ffffff;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transition: 0.25s ease-in-out;
}

#ham span:nth-child(1) {
  top: 5px;
}

#ham span:nth-child(2),
#ham span:nth-child(3) {
  top: 18px;
}

#ham span:nth-child(4) {
  top: 32px;
}

#ham:hover span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

#ham:hover span:nth-child(2) {
  transform: rotate(45deg);
}

#ham:hover span:nth-child(3) {
  transform: rotate(-45deg);
}

#ham:hover span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

/* //hamburger */

.banner-container {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("https://www.raweng.com/v3/assets/bltaacb6b0c9b693c2d/blt6d553f4d07f1eb42/5ece1e0354e7166d098d099e/Careers-page-Banner-image_(1).png?format=pjpg&width=1210");
  background-repeat: no-repeat;
  background-size: cover;
  height: auto;
  width: 80vw;
  margin: 0 auto;
}

.banner-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  height: 50vh;
}

.banner-heading {
  color: white;
  grid-column: 4/13;
  grid-row: 5/10;
  font-size: 48px;
}

.heading-text {
  text-align: center;
  font-size: 32px;
  color: #2d2d2d;
}

.heading-text::before {
  content: "";
  /*  position: absolute; */
  /* display: block;*/
  width: 80px;
  height: 2px;
  background: #f13311;
  bottom: 2px;
  margin: 0 auto;
  margin-top: 126px;
  margin-bottom: 12px;
}

.header-text p {
  text-align: center;
  padding: 20px;
}

.outer-banner-text {
  background-color: black;
  display: none;
}
.outer-banner-text h2 {
  color: white;
  margin: 0;
  padding: 10px;
  text-align: center;
}
.gallery-container {
  width: 90%;
  height: 75vh;
  margin: auto;
}
.gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  grid-template-rows: 2fr 1fr 2fr;
  grid-gap: 10px;
  height: 75vh;
}
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item-1 {
  grid-column: 1/2;
  grid-row: 1/4;
}

.gallery-item-2 {
  grid-column: 2/3;
  grid-row: 1/3;
}

.gallery-item-3 {
  grid-column: 2/3;
  grid-row: 3/4;
}

.gallery-item-4 {
  grid-column: 3/4;
  grid-row: 1/2;
}

.gallery-item-5 {
  grid-column: 3/4;
  grid-row: 2/4;
}

.bg-grey {
  background: #f6f8f8;
}
.text-right,
.col-right {
  text-align: right;
}

/* .container {
  max-width: 90%;
  margin: 20px auto;
  padding: 10px;
} */

.job-form label {
  font-size: 22px;
  margin: 10px 10px 10px 5px;
  font-weight: 900;
}

.job-form .select-container {
  width: 100%;
  margin: 20px 0;
}

.job-form .select-container select {
  border: 1px solid black;
  width: 100%;
  height: 8vh;
  font-size: 18px;
  border-color: grey;
  background-color: white;
  padding: 0 10px;
  border-radius: 5px;
}

.jobs-count {
  margin-bottom: -50px;
}

.job-section {
  padding: 20px 0;
}

.job-section a {
  text-decoration: none;
  color: #2e9ee4;
  font-size: 20px;
}

.job-section h3 {
  font-size: 28px;
}

.job-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  border-top: 1px solid #dadada;
  border-bottom: 1px solid #dadada;
}
.job-row .col-left {
  padding: 20px 0 20px 20px;
}

.job-row .col-right {
  padding: 20px 20px 20px 0;
}

.logo {
  height: 50px;
  width: 150px;
  margin-left: 20px;
}

/* jobs page. */
.phone-icon {
  position: fixed;
  top: 50%;
  right: 20px; /* Adjust this value to change the distance from the right side */
  transform: translateY(-50%);
  z-index: 1000; /* Ensure it's above other content */
  background-color: #1da353;
  width: 50px;
  padding: 5px;
  border-radius: 50%;
  font-size: 1.5rem;
  height: 50px;
  text-align: center;
}

.hover-effect {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  height: 200px;
}

.hover-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.hover-effect img {
  transition: transform 0.5s ease-in-out;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hover-effect:hover img {
  transform: scale(1.2);
}

.hover-content p {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  padding: 5px 25px;
  background-color: #0000006e;
  margin: 0;
}

.hover-content button {
  position: absolute;
  bottom: 10px;
  opacity: 0;
  transition: opacity 0.5s ease-in-out, transform 0.3s ease; /* Combined transitions */
}

.hover-effect:hover .hover-content button {
  opacity: 1;
}

.hover-btn {
  transition: transform 0.3s ease;
}

.hover-btn:hover {
  transform: translateX(18px);
}
/* new main career ends*/

/* contact forms page css */

/* contact forms page css ENDS*/
.container1 {
  position: relative;
  width: 100%;
  padding: 2rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form {
  width: 100%;
  max-width: 820px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.contact-form {
  background-color: #e00025;
  position: relative;
}

.circle {
  border-radius: 50%;
  background: linear-gradient(135deg, transparent 20%, #149279);
  position: absolute;
}

.circle.one {
  width: 130px;
  height: 130px;
  top: 130px;
  right: -40px;
}

.circle.two {
  width: 80px;
  height: 80px;
  top: 10px;
  right: 30px;
}

.contact-form:before {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  background-color: #e00025;
  transform: rotate(45deg);
  top: 50px;
  left: -13px;
}

form {
  padding: 2.3rem 2.2rem;
  z-index: 10;
  overflow: hidden;
  position: relative;
}

.title {
  color: #fff;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.7rem;
}

.input-container {
  position: relative;
  margin: 1rem 0;
}

.input {
  width: 100%;
  outline: none;
  border: 2px solid #fafafa;
  background: none;
  padding: 0.6rem 1.2rem;
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: 5px;
  transition: 0.3s;
}

textarea.input {
  padding: 0.8rem 1.2rem;
  min-height: 150px;
  border-radius: 5px;
  resize: none;
  overflow-y: auto;
}

.input-container label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  padding: 0 0.4rem;
  color: #fafafa;
  font-size: 0.9rem;
  font-weight: 400;
  pointer-events: none;
  z-index: 1000;
  transition: 0.5s;
}

.input-container.textarea label {
  top: 1rem;
  transform: translateY(0);
}

.btn1 {
  font-weight: bold;
  background-color: #fff;
  border: 2px solid #fafafa;
  font-size: 0.95rem;
  color: #e00025;
  line-height: 1;
  border-radius: 5px;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  margin: 0;
  width: 100%;
  padding: 0.6rem 1.3rem;
}

.btn1:hover {
  background-color: transparent;
  color: #fff;
}

.input-container span {
  position: absolute;
  top: 0;
  left: 25px;
  transform: translateY(-50%);
  font-size: 0.8rem;
  padding: 0 0.4rem;
  color: transparent;
  pointer-events: none;
  z-index: 500;
}

.input-container span:before,
.input-container span:after {
  content: "";
  position: absolute;
  width: 10%;
  opacity: 0;
  transition: 0.3s;
  height: 5px;
  background-color: #e00025;
  top: 50%;
  transform: translateY(-50%);
}

.input-container span:before {
  left: 50%;
}

.input-container span:after {
  right: 50%;
}

.input-container.focus label {
  top: 0;
  transform: translateY(-50%);
  left: 25px;
  font-size: 0.8rem;
}

.input-container.focus span:before,
.input-container.focus span:after {
  width: 50%;
  opacity: 1;
}

.contact-info {
  padding: 2.3rem 2.2rem;
  position: relative;
}

.contact-info .title {
  color: #e00025;
}

.text {
  color: #333;
  margin: 1.5rem 0 2rem 0;
}

.information {
  display: flex;
  color: #555;
  margin: 0.7rem 0;
  align-items: center;
  font-size: 0.95rem;
}

.information i {
  color: #e00025;
}

.icon {
  width: 28px;
  margin-right: 0.7rem;
}

.social-media {
  padding: 2rem 0 0 0;
}

.social-media p {
  color: #333;
}

.social-icons {
  display: flex;
  margin-top: 0.5rem;
}

.social-icons a {
  width: 35px;
  height: 35px;
  border-radius: 5px;
  background: linear-gradient(45deg, #e00025, #149279);
  color: #fff;
  text-align: center;
  line-height: 35px;
  margin-right: 0.5rem;
  transition: 0.3s;
}

.social-icons a:hover {
  transform: scale(1.05);
}

.contact-info:before {
  content: "";
  position: absolute;
  width: 110px;
  height: 100px;
  border: 22px solid #e00025;
  border-radius: 50%;
  bottom: -77px;
  right: 50px;
  opacity: 0.3;
}

.big-circle {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #e00025, #159b80);
  bottom: 50%;
  right: 50%;
  transform: translate(-40%, 38%);
}

.big-circle:after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background-color: #fafafa;
  border-radius: 50%;
  top: calc(50% - 180px);
  left: calc(50% - 180px);
}

.square {
  position: absolute;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(181%, 11%);
  opacity: 0.2;
}

@media (max-width: 850px) {
  .form {
    grid-template-columns: 1fr;
  }

  .contact-info:before {
    bottom: initial;
    top: -75px;
    right: 65px;
    transform: scale(0.95);
  }

  .contact-form:before {
    top: -13px;
    left: initial;
    right: 70px;
  }

  .square {
    transform: translate(140%, 43%);
    height: 350px;
  }

  .big-circle {
    bottom: 75%;
    transform: scale(0.9) translate(-40%, 30%);
    right: 50%;
  }

  .text {
    margin: 1rem 0 1.5rem 0;
  }

  .social-media {
    padding: 1.5rem 0 0 0;
  }
}

@media (max-width: 480px) {
  .contact-info:before {
    display: none;
  }

  .square,
  .big-circle {
    display: none;
  }

  form,
  .contact-info {
    padding: 1.7rem 1.6rem;
  }

  .text,
  .information,
  .social-media p {
    font-size: 0.8rem;
  }

  .title {
    font-size: 1.15rem;
  }

  .social-icons a {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }

  .icon {
    width: 23px;
  }

  .input {
    padding: 0.45rem 1.2rem;
  }

  .btn1 {
    padding: 0.45rem 1.2rem;
  }
}

/* news pGE */
.sec-icon {
  position: relative;
  display: inline-block;
  padding: 0;
  margin: 0 auto;
}

.sec-icon::before {
  content: "";
  position: absolute;
  height: 1px;
  left: -70px;
  margin-top: -5.5px;
  top: 60%;
  background: #f5f5f5;
  width: 50px;
}

.sec-icon::after {
  content: "";
  position: absolute;
  height: 1px;
  right: -70px;
  margin-top: -5.5px;
  top: 60%;
  background: #333;
  width: 50px;
}

.advertisers-service-sec {
  background-color: #f5f5f5;
}

.advertisers-service-sec span {
  color: rgb(255, 23, 131);
}

.advertisers-service-sec .col {
  padding: 0 1em 1em 1em;
  text-align: center;
}

.advertisers-service-sec .service-card {
  width: 100%;
  height: 100%;
  padding: 2em 1.5em;
  border-radius: 5px;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: 0.5s;
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: #fff;
}

.advertisers-service-sec .service-card::after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(#0dcaf0, #e00025);
  position: absolute;
  left: 0%;
  top: -98%;
  z-index: -2;
  transition: all 0.4s cubic-bezier(0.77, -0.04, 0, 0.99);
}

.advertisers-service-sec h3 {
  font-size: 20px;
  text-transform: capitalize;
  font-weight: 600;
  color: #1f194c;
  margin: 1em 0;
  z-index: 3;
}

.advertisers-service-sec p {
  color: #575a7b;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  z-index: 3;
}

.advertisers-service-sec .icon-wrapper {
  background-color: #2c7bfe;
  position: relative;
  margin: auto;
  font-size: 30px;
  height: 2.5em;
  width: 2.5em;
  color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: 0.5s;
  z-index: 3;
}

.advertisers-service-sec .service-card:hover:after {
  top: 0%;
}

.service-card .icon-wrapper {
  background-color: #ffffff;
  color: #e00025;
}

.advertisers-service-sec .service-card:hover .icon-wrapper {
  color: #0dcaf0;
}

.advertisers-service-sec .service-card:hover h3 {
  color: #ffffff;
}

.advertisers-service-sec .service-card:hover p {
  color: #f0f0f0;
}
