@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,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&family=Praise&family=Satisfy&display=swap");

* {
  margin: 0;
  padding: 0%;
  font-family: Montserrat;
}
.main {
  margin: 0 30px;
}
.main-margin-top {
  margin-top: 200px;
}
.topbar {
  background-color: #26355e;
  padding: 8px 0;
}
.topbar p {
  color: white;
  text-align: center;
  font-size: 12px;
  margin: 0;
}

.hover-btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: white !important;
  color: white !important;
  font-weight: 500;
  transition: 1s;
}
.hover-btn::before {
  content: "";
  height: 90px;
  width: 90px;
  display: block;
  position: absolute;
  left: -22px;
  bottom: -30px;
  background-color: #26355e;
  border-radius: 50%;
  z-index: -1;
  transition: 1s;
}
.hover-btn::after {
  content: "";
  height: 90px;
  width: 90px;
  display: block;
  position: absolute;
  right: -22px;
  bottom: -30px;
  background-color: #26355e;
  border-radius: 50%;
  z-index: -1;
  transition: 1s;
}
.hover-btn span {
  height: 90px;
  width: 90px;
  display: block;
  position: absolute;
  right: 30px;
  top: -30px;
  background-color: #26355e;
  border-radius: 50%;
  z-index: -1;
  transition: 1s;
}
.hover-btn:hover {
  color: #26355e !important;
}
.hover-btn:hover::before {
  left: -150px;
  bottom: -135px;
}
.hover-btn:hover::after {
  right: -150px;
  bottom: -135px;
}
.hover-btn:hover span {
  top: -135px;
}
.header {
  display: flex;
  justify-content: space-between;
  position: absolute;
  align-items: center;
  width: 90%;
  margin: 30px 5%;
  padding: 10px 10px;
  border-radius: 50px;
  background-color: white;
  top: 80px;
  z-index: 99;
  box-shadow: 0 0 10px -5px #26355e;
}
.menu-btn {
  display: none;
  position: relative;
  z-index: 99;
}

.logo {
  /* width: 25%; */
  padding-left: 30px;
}
.navbar {
  /* width: 45%; */
  display: flex;
  gap: 80px;
  flex: 1;
  padding-left: 120px ;
}
.navbar ul {
  display: flex;
  gap: 20px;
  /* width: 100%; */
  justify-content: left;
  margin: 0;
  padding: 0;
  margin: 0;
}
.navbar ul li {
  list-style: none;
}
.navbar ul li a {
  text-decoration: none;
  color: #26355e;
  font-size: 13px;
  font-weight: 700;
}
.header .logo img {
  height: 50px;
  position: relative;
  z-index: 99;
}
.header-action-btn {
  /* width: 25%; */
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  align-items: center;
  padding-right: 30px;
}
.call-action-btn {
  background-color: transparent;
  outline: none;
  border: none;
  color: #26355e;
  font-weight: 600;
  font-size: 12px;
}
.hire-action-btn {
  padding: 5px 20px;
  background-color: #26355e;
  color: white;
  border: none;
  outline: none;
  border-radius: 20px;
}
.hero-section {
  height: 600px;
  width: 100%;
  /* background-image: url("http://localhost/remas/assets/images/team-image2.jpg"); */
  border-radius: 20px;
  overflow: hidden;
  margin-top: 40px;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: end;
  background-color: rgb(128 128 128 / 43%);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px); /* For older Safari support */
}
.hero-section-content {
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  margin-bottom: 100px;
  gap: 20px;
}
.hero-section-content p {
  color: #26355e;
  color: white;
  font-size: 21px;
}
.hero-section-content h1 {
  font-size: 59px;
  color: #26355e;
  width: 80%;
  text-align: center;
  line-height: 1.1;
}
.hero-section-content h1 span {
  color: #7a97e3;
}
.hero-section-content button {
  background-color: #26355e;
  color: white;
  padding: 15px 25px;
  border-radius: 25px;
  outline: none;
  border: none;
}
.second-hero-section {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}
.second-hero {
  height: 400px;
  width: 50%;
  background-color: #26355e;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.second-hero-img {
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.second-hero-img img {
  width: 100%;
}
.second-hero-upper {
  position: absolute;
  height: 100%;
  width: 100%;
  background: linear-gradient(
    0deg,
    #26355e 14.5%,
    rgba(255, 255, 255, 0.113) 100%
  );
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
}
.second-hero-upper h2 {
  padding: 0 40px 20px 40px;
  font-size: 43px;
}
.second-hero-upper p {
  padding: 0 40px 40px 40px;
  line-height: 1.3;
}

.company-profile-section {
  display: flex;
  background-color: #26355e;
  margin: 0px -30px 0 -30px;
}
.company-profile-section-first {
  margin-top: 50px;
}
.company-profile-content {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 20px;
  color: white;
  padding: 80px;
}
.company-profile-content span {
  font-size: 17px;
  font-weight: 600;
}
.company-profile-content h3 {
  font-size: 49px;
}
.company-profile-content p {
  font-size: 15px;
}
.company-profile-content button {
  padding: 12px 25px;
  border: 1px solid white;
  color: white;
  background-color: #2e4279e8;
  border-radius: 20px;
}
.company-profile-images {
  width: 50%;
  padding: 50px;
}
.company-profile-image-main {
  width: 85%;
  margin: 0 auto;
}
.company-profile-image-main img {
  width: 100%;
}
.company-profile-image-small {
  display: flex;
  gap: 20px;
  overflow: hidden;
  width: 85%;
  margin: 0 auto;
  border-radius: 20px;
  margin-top: 30px;
}
.company-profile-image-small img {
  width: 50%;
  border-radius: 20px;
}

.temp-to-hire-section {
  /* height: 500px; */
  /* width: 100%; */
  background-color: #fffad7;
  display: flex;
  margin: 0 -30px;
}
.temp-to-hire-content {
  color: #26355e;
  width: 50%;
  padding: 50px;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.temp-to-hire-section h3 {
  font-size: 49px;
  color: #26355e;
}
.temp-to-hire-content p {
  font-size: 15px;
  font-weight: 500;
}
.temp-to-hire-form {
  width: 50%;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}
.temp-to-hire-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background-color: white;
  padding: 50px;
  border-radius: 20px;
}
.temp-to-hire-form input {
  padding: 12px 15px;
  border: none;
  border: 1px solid rgb(52, 72, 128);
  color: #26355e;
  outline: none;
  border-radius: 5px;
  font-weight: 500;
}
.temp-to-hire-form input::placeholder {
  color: #26355e;
}
.temp-to-hire-form button {
  align-self: self-start;
  padding: 15px 30px;
  background-color: #26355e;
  color: white;
  border-radius: 25px;
  border: none;
  outline: none;
}
.partner-section {
  display: flex;
  background-color: #26355e;
  justify-content: center;
  padding: 30px 40px;
  margin-top: 30px;
  border-radius: 20px;
  gap: 20px;
}
.partner-section .owl-nav {
  display: none;
}
.partner-section img {
  width: 140px;
  background-color: white;
  padding: 15px;
  border-radius: 20px;
}

/************************ STAFFING PAGE **************************/

.staffing-main-banner {
  /* height: 400px; */
  overflow: hidden;
  /* display: flex;
flex-direction: column;
align-items: center;
justify-content: start; */
  margin-top: 200px;
  border-radius: 10px;
}
.staffing-main-banner img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  height: 400px;
  object-fit: cover;
}
.staffing-main-banner .owl-nav {
  display: none;
}
.staffing-main-banner .owl-dots span {
  background-color: #3761d6be !important;
  height: 15px !important;
  width: 15px !important;
}
.staffing-main-banner .owl-dots {
  margin: 20px 0 50px 0 !important;
}
.staffing-main-banner .owl-dots .active span {
  width: 100px !important;
  background-color: #26355e !important;
}
.staffing-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-bottom: 1px solid #26355e9d;
  padding: 30px 0;
  flex-wrap: wrap;
}
.staffing-buttons button {
  padding: 10px 15px;
  background-color: #26355e;
  color: white;
  border: none;
  outline: none;
  border-radius: 5px;
  font-size: 12px;
}

.staffing-notes {
  padding: 50px 80px 30px 80px;
  color: #26355e;
  border-bottom: 1px solid #26355e9d;
  padding-bottom: 40px;
}
.staffing-notes .span {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 30px;
}
.staffing-notes h1 {
  font-weight: 700;
}
.staffing-notes h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 30px 0 5px 0;
}
.staffing-notes p {
  font-weight: 500;
}
.services-portion {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 50px 80px 0 80px;
}
.service-image {
  width: 32%;
  max-height: 270px;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.service-image img {
  width: 100%;
}
.service-name {
  position: absolute;
  bottom: 20px;
  z-index: 2;
  background-color: red;
  width: 90%;
  height: 90px;
  border-radius: 20px;
  font-size: 22px;
  font-weight: 700;
  padding: 20px;
  display: flex;
  align-items: center;
  color: white;
  background: linear-gradient(
    31deg,
    #375096 16.5%,
    rgba(255, 255, 255, 0.233) 88%
  );
}

/************* BLOG PAGE ****************/
.blog-banner {
  height: 400px;
  overflow: hidden;
  margin-top: 200px;
  border-radius: 20px;
}
.blog-banner img {
  width: 100%;
  object-fit: cover;
}
.blog-page-heading {
  margin: 0;
  text-align: center;
  color: #26355e;
  font-weight: 700;
  margin: 80px 0 00px 0;
  text-transform: uppercase;
  font-size: 40px;
}
.blog-portion {
  margin-top: 0px;
  padding: 0px 100px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.blog-card {
  width: 32%;
  padding: 10px;
  border-radius: 28px;
  transition: 0.5s;
  margin: 25px 0;
}
.blog-card:hover {
  box-shadow: 0 0 27px -9px #26355e;
}
.blog-image {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  height: 180px;
  border-radius: 20px;
}
.blog-image img {
  width: 100%;
}
.blog-pbulisher {
  display: flex;
}
.publisher-image {
  height: 30px;
  width: 30px;
  overflow: hidden;
  border-radius: 50%;
}
.blog-pbulisher img {
  width: 100%;

  object-fit: cover;
}
.blog-pbulisher {
  margin: 10px 0;
}
.blog-pbulisher-detail {
  margin: 0px 0 0px 10px;
  display: flex;
  flex-direction: column;
  font-size: 9px;
  color: #26355e;
  justify-content: center;
}
.blog-pbulisher-detail span {
  font-weight: 600;
  font-size: 10px;
}
.blog-content {
  padding: 10px;
}
.blog-content h3 {
  font-size: 14px;
  font-weight: 600;
  color: #26355e;
  margin: 15px 0;
}
.blog-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #26355e;
  font-weight: 600;
}
.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.blog-pagination {
  margin-top: 60px;
}
.blog-pagination div {
  height: 50px;
  width: 50px;
  background-color: #7a97e3;
  color: white;
  border-radius: 50%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.blog-pagination .active {
  background-color: #26355e;
}
/************* POST VIEW PAGE ****************/
.blog-view-main-image {
  border-radius: 20px;
  overflow: hidden;
}
.blog-view-main-image img {
  width: 100%;
}
.post-view-content {
  padding: 0 150px;
}
.post-view-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 40px 0;
}
.total-views,
.publish-date {
  font-size: 13px;
  margin-left: 30px;
  font-weight: 600;
}
.total-views i,
.publish-date i {
  font-size: 17px;
  color: #26355e;
}
.post-view-top .blog-pbulisher-detail {
  font-size: 13px;
}
.post-view-top .blog-pbulisher-detail span {
  font-size: 17px;
  font-weight: 800;
}
.post-view-top .publisher-image {
  height: 50px;
  width: 50px;
}
.post-view-top .blog-pbulisher {
  align-items: end;
}
.post-share-social span {
  padding: 5px;
  border-radius: 50%;
}
.post-share-social span i {
  font-size: 30px;
  vertical-align: middle;
  text-align: center;
}
.post-share-social .bi-facebook {
  color: #0f8feb;
}
.post-share-social .bi-linkedin {
  color: #007ab5;
}
.post-view-content .main-title {
  color: #26355e;
  font-weight: 700;
}
.post-view-content p {
  font-size: 14px;
  font-weight: 500;
}
/************* FOOTER ****************/
footer {
  background-color: #26355e;
  margin-top: 100px;
  margin: 100px 30px 0 30px;
  border-radius: 100px 100px 0 0;
  padding: 50px 70px;
}
.footer-section {
  display: flex;
  justify-content: space-between;
  padding: 50px 0;
  border-bottom: 2px solid white;
}
.footer-about {
  width: 30%;
  color: white;
}
.footer-about h4 {
  margin: 20px 0 10px 0;
}
.footer-about img {
  width: 80px;
}
.footer-about P {
  font-size: 13px;
}
.footer-navbar {
  display: flex;
  gap: 50px;
}
.footer-nav-head {
  font-size: 32px;
  font-weight: 600;
  color: white;
  margin-bottom: 20px !important;
}
.footer-navbar ul li {
  list-style: none;
  margin: 10px 0;
}
.footer-navbar ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-style: italic;
}
.footer-bottom {
  display: flex;
  color: white;
  font-size: 12px;
  justify-content: space-between;
  padding-top: 30px;
}
.footer-bottom p {
  display: flex;
  gap: 20px;
}
.footer-bottom p b {
  font-weight: 600;
}

.social-links {
  font-size: 30px;
  display: flex;
  gap: 10px;
}
.social-links span {
  padding: 6px 9px;
  background-color: white;
  border-radius: 50%;
}
.social-links .bi-facebook {
  color: #056ee2;
}
.social-links .bi-instagram {
  /* Define the linear gradient background */
  background-image: linear-gradient(
    to right,
    #e1306c,
    #f56040
  ); /* Example colors */

  /* Clip the background to the text shape */
  -webkit-background-clip: text; /* For compatibility */
  background-clip: text;

  /* Make the text transparent */
  -webkit-text-fill-color: transparent; /* For compatibility */
  text-fill-color: transparent;

  /* Ensure the icon renders correctly */
  display: initial; /* May be necessary depending on context */
}
.social-links .bi-linkedin {
  color: #0077b5;
}

/***** Get Consultant ******/

.get-consultant-btn {
  background-color: #26355e;
  color: white;
  text-align: center;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  text-transform: capitalize;
  transform: rotate(-90deg);
  outline: none;
  border: none;
  padding: 10px;
  position: fixed;
  bottom: 250px;
  right: -64px;
  border-radius: 10px 10px 0 0;
  cursor: pointer;
  z-index: 2;
}
.get-call-btn {
  background-color: #26355e;
  color: white;
  padding: 5px 12px;
  border-radius: 10px 0 0 10px;
  position: fixed;
  bottom: 147px;
  right: -109px;
  transition: 0.5s;
  z-index: 2;
}
.get-call-btn:hover {
  right: 0px;
}
.get-call-btn a {
  color: white;
  text-align: center;
  font-size: 12px;
  font-style: italic;
  font-weight: 700;
  text-transform: capitalize;
  padding: 5px 5px 5px 7px;
  /* border-left: 1px solid white; */
  text-decoration: none;
}

.home-chat-box {
  border: 1px solid gray;
  background-color: white;
  width: 300px;
  display: inline-block;
  position: fixed;
  bottom: 30px;
  right: 0;
  padding: 20px;
  border-radius: 20px;
  /* transform: translateX(100%); */
  display: none;
  z-index: 99;
}

.home-chat-box-close {
  color: #26355e;
  text-align: right;
  font-size: 20px;
  cursor: pointer;
}
.home-chat-box h3 {
  color: #26355e;
  text-align: center;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 145%; /* 29px */
  letter-spacing: -0.4px;
  text-transform: capitalize;
}

.home-chat-box input,
.home-chat-box textarea {
  width: 100%;
  border-radius: 8px;
  border: none;
  outline: none;
  border: 1px solid #000;
  border: 1px solid color(display-p3 0.0078 0.1569 0.2784);
  background: color(display-p3 1 1 1);
  padding: 10px;
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 600;
}
.home-chat-box input::placeholder,
.home-chat-box textarea::placeholder {
  color: #26355e;
}
.home-chat-box .flag {
  border: 1px solid #000;
  border: 1px solid color(display-p3 0.0078 0.1569 0.2784);
  width: 100%;
  border-radius: 8px;
  margin-bottom: 5px;
  padding: 5px;
}
.home-chat-box span img {
  width: 30px;
  height: 30px;
  overflow: hidden;
  border-radius: 50%;
}

.home-chat-box button {
  outline: none;
  border: none;
  padding: 5px 10px;
  background-color: #26355e;
  color: white;
  border-radius: 5px;
  width: 100%;
  text-transform: uppercase;
}
.home-chat-box button:active {
  background-color: #ffc900;
}

/***** ChatBoats ******/
.chatbots {
  height: 450px;
  width: 300px;
  background-color: white;
  border-radius: 20px 20px 20px 20px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  border: none;
  outline: none;
  box-shadow: 2px 4px 10px 1px rgba(128, 128, 128, 0.507);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 99;
  display: none;
}
.chatbots-close-btn {
  cursor: pointer;
}
.chatbots-box {
  height: 300px;
  /* background-color: #0063b3; */
  overflow-y: scroll;
  padding: 20px;
  margin-right: 5px;
  display: flex;
  flex-direction: column;
}
.support-msg-box {
  width: 80%;
  margin: 10px 0;
  display: flex;
  flex-direction: column;
}
.support-msg {
  padding: 5px;
  border-radius: 0 10px 10px 10px;
  background-color: rgba(128, 128, 128, 0.342);
  font-size: 12px;
  color: #26355e;
  font-weight: 500;
  margin: 0;
  margin-bottom: 5px;
  line-height: 1.2;
}
.customer-msg-box {
  text-align: right;
  width: 80%;
  margin: 10px 0;
  align-self: flex-end;
  display: flex;
  flex-direction: column;
}
.customer-msg {
  padding: 5px 8px;
  border-radius: 10px 0 10px 10px;
  text-align: left;
  font-size: 12px;
  background-color: #26355e;
  font-weight: 500;
  color: white;
  margin: 0;
  margin-bottom: 5px;
}
.customer-msg-name {
  font-size: 11px;
  font-weight: 600;
}
.chatbots .chatbots-head {
  background-color: #26355e;
  color: white;
  padding: 15px 10px;
  text-align: center;
  font-size: 17px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}
.chatbots .chatbots-head .bi-person-circle {
  font-size: 30px;
}
.chatbots .chatbots-head .bi-x {
  float: right;
  justify-self: right;
  font-size: 30px;
}
.chatbots-input-field {
  display: flex;
  justify-content: space-between;
  padding: 5px;
  background-color: rgba(128, 128, 128, 0.158);
  border-radius: 50px;
  margin: 10px;
}
.chatbots-input-field input {
  padding: 0px 15px 0px 20px;
  border: none;
  outline: none;
  font-size: 13px;
  flex: 1;
  background-color: transparent;
  width: 90%;
  /* border-top: 1px solid #00294954; */
}
.chatbots-input-field button {
  padding: 6px 10px;
  border: none;
  outline: none;
  color: white;
  background: #26355e;
  border-radius: 360px;
}
.chatbots-input-field button:active {
  background-color: #ffc900;
}
.chatbots-btn {
  padding: 4px 11px;
  background-color: #26355e;
  border-radius: 50%;
  position: fixed;
  right: 20px;
  bottom: 20px;
  border: none;
  outline: none;
  cursor: pointer;
  z-index: 98;
  border: 1px solid white;
}

.chatbots-btn .bi {
  font-size: 30px;
  color: white;
}
