/*===================== REUSABLE  CSS AREA START =====================*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: all 0.2s ease-in-out;
}

body {
  font-family: 'Inter', sans-serif;
}

section {
  margin-bottom: 120px;
}

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

button,
input {
  border: none;
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  color: #00005B;
}

h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;

}

h5 {
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;

}

p {
  margin: 0;
  padding: 0;
  color: #202020;
}

a {
  text-decoration: none;
}

.titles {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.btns {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}

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

main {
  overflow: hidden !important;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  max-width: 1140px;
  margin: 0 auto;
}

/*===================== REUSABLE CSS AREA END =====================*/

/*===================== OFFCANVAS CSS AREA START =====================*/
.menu-close {
  font-size: 18px;
  color: #fff;
  position: absolute;
  top: 20px;
  right: 18px;
  cursor: pointer;
  transition: 0.4s;
  border: 1px solid #fff;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-close:hover {
  color: #000;
  background: #fff;
}

.offcanvas-area {
  position: fixed;
  left: -100%;
  height: 100%;
  width: 318px;
  z-index: 9999;
  padding-top: 35px;
  background: #00005B;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  visibility: hidden;
  top: 0;
  overflow-y: scroll;
}

.offcanvas-area.active {
  left: 0;
  visibility: visible;
}

.offcanvas-area .main-menu ul li a {
  font-size: 18px;
  color: #fff;
  display: block;
  transition: 0.3s;
  padding: 16px 22px;
  border-bottom: 1px solid #fff;
  text-decoration: none;
}

.offcanvas-area .main-menu ul li a:hover {
  color: #000 !important;
  background: #fff;
}

.offcanvas-area .main-menu ul li:first-child a {
  border-top: 1px solid #fff;
}

.offcanvas-area .main-menu ul li a:hover,
.offcanvas-area .main-menu ul li a[aria-expanded="true"] {
  color: #d5d5d5;
}

.offcanvas-menu .main-menu ul {
  display: block;
  padding-left: 0;
  margin-bottom: 35px;
  list-style: none;
}

.offcanvas-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  z-index: 99;
}

.offcanvas-overlay.active {
  opacity: 0.4;
  visibility: visible;
}

.offcanvas-area {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.offcanvas-area::-webkit-scrollbar {
  display: none;
}

.offcanvas-menu {
  margin-top: 100px;
}

/*===================== OFFCANVAS CSS AREA END =====================*/

/*===================== HEADER CSS AREA START =====================*/
header#header__area {
  border-bottom: 1px solid #064A461A;
  background: transparent;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 99;
}

.header__logo__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 101px;
  position: relative;
}

.header__nav>ul {
  gap: 30px;
}

.header__nav>ul>li {
  cursor: pointer;
  transition: 0s ease-in;
  padding: 41px 0px;
}

.header__nav>ul>li>a {
  font-weight: 500;
  color: #222222;
}

.header__nav>ul>li>a:hover {
  color: #1476D5;
}

.header__btn>a {
  font-size: 14px;
  font-weight: 700;
  color: #1476D5;
  display: flex;
  padding: 11px 20px;
  align-items: center;
  gap: 4px;
  border-radius: 30px;
  border: 2px solid #1476D5;
}

.header__btn>a:hover {
  background: #1476D5;
  color: #fff;
}

.header__btn {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header__bar a {
  font-size: 24px;
  color: #00005B;
}




.megamenu__area {
  position: absolute;
  left: 0px;
  top: 100%;
  background: #fff;
  display: flex;
  border-top: 1px solid #1476D5;
  opacity: 0;
  visibility: hidden;
  transition: .2s ease-in;
  transform: scale(0);
}

.header__nav>ul>li:hover .megamenu__area {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}


.megamenu__content {
  padding: 30px;
  display: flex;
  gap: 60px;
}

.megamenu__content ul {
  width: 151px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.megamenu__area img {
  width: 260px;
}

.megamenu__content>ul>li>a {
  color: #1476D5;
  font-weight: 500;
}

.megamenu__content__btn a {
  margin-top: 20px;
  width: 117px;
  height: 40px;
  background: #1476D5;
  border-radius: 40px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.megamenu__content>ul>li>a:hover {
  color: #00005B;
}

.megamenu__content__btn a:hover {
  background: #00005B;
}

/*===================== HEADER CSS AREA END =====================*/

/*===================== HERO CSS AREA START =====================*/
.hero__content,
.solution__hero__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hero__content {
  padding: 260px 0px 160px;
}

.hero__content h1,
.solution__hero__content h1 {
  font-size: 60px;
  font-weight: 700;
  line-height: 65px;
  color: #00005B;
}

.hero__content p,
.solution__hero__content p {
  color: #202020;
  font-size: 18px;
  line-height: 28px;
}

.hero__btns a:first-child {
  display: flex;
  height: 48px;
  align-items: center;
  gap: 4px;
  border-radius: 40px;
  background: #1476D5;
  color: #fff;
}

.hero__btns a:first-child:hover {
  background: #00005B;
}

.hero__btns {
  display: flex;
  gap: 20px;
  width: 100%;
  flex-wrap: wrap;
}

.hero__btns a {
  flex-shrink: 0;
  font-weight: 700;
  max-width: 174px;
  width: 100%;
}

.hero__btns a:last-child {
  gap: 10px;
  color: #00005B;
  font-feature-settings: 'clig'off, 'liga'off;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  /* 125% */
}

.hero__btns a:last-child img {
  width: 36px;
}

section#hero__area {
  background: #73B1E81A;
  position: relative !important;
  overflow: hidden;
}

img.home_bg_shadow {
  position: absolute;
  top: 0;
  right: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/*===================== HERO CSS AREA END =====================*/

/*===================== HOME-SERVICE CSS AREA START =====================*/
.people__content {
  max-width: 360px;
  height: 100%;
  padding: 118px 0px;
}

section#home__service__area {
  position: relative;
  margin-bottom: 120px;
}

.section__img {
  position: absolute;
  /*top: 224px;*/
  top: 273px;	
  left: 0px;
  width: 50%;
  height: 555px;
}

.people__content p {
  font-size: 18px;
  color: #202020;
  margin-bottom: 30px;
  line-height: 28px;
}

.section__img img {
  height: 100%;
}

/*===================== HOME-SERVICE CSS AREA END =====================*/

/*===================== HOME-PARTNER CSS AREA START =====================*/
section#home__partner__area {
  position: relative;
  margin-bottom: 120px;
}

.partner__img {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 50%;
  height: 742px;
}

.partner__img img {
  height: 100%;
}

.btn_read img {
  width: 36px;
  margin-right: 10px;
}

.btn_read {
  font-weight: 700;
  color: #00005B;
}

.partner__content span,
.titles span {
  color: #1476D5;
  font-weight: 700;
  text-transform: uppercase;
}

.partner__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.partner__content p {
  font-size: 18px;
  line-height: 28px;
  color: #202020;
}

/*===================== HOME-PARTNER CSS AREA END =====================*/

/*===================== HOME-VERTICAL CSS AREA START =====================*/
.vertical__card__img {
  width: 64px;
  flex-shrink: 0;
}

.vertical__card {
  padding: 40px;
  position: relative;
  background: #fff;
  display: flex;
  gap: 46px;
}

img.card_corner {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 50px;
}

section#home__vertical__area {
  background: #B5D6F333;
  padding: 120px 0px;
}

.vertical__card__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vertical__card__content p {
  color: #202020;
}

/*===================== HOME-VERTICAL CSS AREA END =====================*/

/*===================== HOME-EXPERIENCE CSS AREA START =====================*/
section#home__experience__area {
  margin-bottom: 0px;
}

.experience__content,
.employ__content {
  max-width: 458px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}

.experience__content p {
  font-size: 18px;
  line-height: 28px;
}

.experience__card__right {
  padding: 120px 0px 120px 113px;
  background: #141A44;
  position: relative;
}

img.card_corner2 {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 200px;
}

.solution__card img {
  width: 48px;
}

.solution__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border: 1px solid #FFFFFF1A;
  padding: 20px;
  text-align: center;
}

.solution__card p {
  color: #fff;
  font-weight: 500;
}

.experience__solution {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.experience__card__right h3 {
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
  color: #fff;
  margin-bottom: 30px;
}

.experience__card__right:after {
  content: '';
  position: absolute;
  top: 0px;
  right: -500px;
  width: 500px;
  height: 100%;
  background: #141A44;
}

/*===================== HOME-EXPERIENCE CSS AREA END =====================*/

/*===================== HOME-EMPLOYMENT CSS AREA START =====================*/
section#home__employ__area {
  position: relative;
}

.employ__content {
  padding: 214px 0px;
}

.employ__content p {
  max-width: 410px;
}

a.btns.employ__btn {
  width: 140px;
  height: 48px;
  border: 2px solid #00005B;
  border-radius: 30px;
  color: #00005B;
  font-weight: 700;
}

a.btns.employ__btn:hover {
  color: #fff;
  background: #00005B;
}

.employ__img {
  position: absolute;
  left: 0px;
  top: 18px;
  width: 50%;
  height: 800px;
}

.employ__img img {
  height: 100%;
}

/*===================== HOME-EMPLOYMENT CSS AREA END =====================*/

/*===================== HOME-MARKET CSS AREA START =====================*/
.marketplace__wrap {
  position: relative;
  background: #B5D6F380;
  padding: 80px;
}

.marketplace__btn a:last-child img {
  width: 18px;
  margin-right: 7px;
}

img.marketplace {
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: -1;
}

.marketplace__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 654px;
}

.marketplace__btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.marketplace__btn a:first-child,
.marketplace__btn a:last-child {
  font-weight: 700;
  border-radius: 40px;
  height: 48px;
  padding: 0 30px;
}

.marketplace__btn a:first-child {
  background: #1476D5;
  color: #fff;
}

.marketplace__btn a:first-child:hover {
  background: #00005B;
}

.marketplace__btn a:last-child {
  border: 2px solid #00005B;
  color: #00005B;
}

/*===================== HOME-MARKET CSS AREA END =====================*/

/*===================== FOOTER CSS AREA START =====================*/
footer#footer__area {
  background: #141A44;
  padding-top: 80px;
  overflow: hidden;
}

.footer__logo a img {
  width: 125px;
}

.footer__logo {
  max-width: 360px;
}

.footer__logo p {
  color: #fff;
  margin-top: 30px;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}

.footer__content {
  display: flex;
  justify-content: space-between;
}

.footer__list h6 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 30px;
}

.footer__list>ul>li>a {
  color: #fff;
}

.footer__list>ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.copyright {
  margin-top: 80px;
  border-top: 1px solid #FFFFFF1A;
  padding: 30px 0px;
}

.copyright__content {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.copyright__content span {
  color: #898CA1;
}

.privacy__policy a {
  color: #fff;
}

.privacy__policy {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

/*===================== FOOTER CSS AREA END =====================*/

/*===================== SOLUTION-HERO CSS AREA START =====================*/
.solution__hero__content {
  padding: 180px 0px 80px;
}

.partner__img.partner__img2 {
  height: 555px !important;
}

.solution__hero__content .hero__btns a {
  color: #fff;
}

.partner__content.partner__content2 {
  padding: 90px 0px;
}

/*===================== SOLUTION-HERO CSS AREA END =====================*/

/*===================== TALENT-SOLUTION CSS AREA START =====================*/
.talent__card>img {
  width: 64px;
}

.talent__card {
  display: flex;
  flex-direction: column;
  gap: 30px;
  background: #fff;
  padding: 40px;
  position: relative;
}

.rectangle_solution {
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 50px;
}

.talent__card__content>ul>li>img {
  width: 8px;
}

.talent__card__content>ul>li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #202020;
}

.talent__card__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

section#talent__solution__area {
  background: #73B1E81A;
  padding: 120px 0px;
}

/*===================== TALENT-SOLUTION CSS AREA END =====================*/

/*===================== CUSTOMER-SOLUTION CSS AREA START =====================*/
.customer__single__slide span {
  display: inline-block;
  margin: 10px 0px 20px;
  color: #00005B;
  font-weight: 500;
}

.customer__content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 475px;
  position: relative;
}

.customer__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: transparent;
}

.customer__slide .owl-nav {
  display: flex;
  align-items: center;
  gap: 75px;
  position: absolute;
  left: 0px;
  bottom: -140px;
}

div#counter {
  position: absolute;
  bottom: 3px;
  left: 66px;
  font-weight: 500;
  color: #00005B;
}

.customer__single__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px;
  background: #73B1E81A;
  gap: 20px;
}

.customer__single__card h2 {
  color: #1476D5;
}

/*===================== CUSTOMER-SOLUTION CSS AREA END =====================*/

/*===================== RESOURCE CSS AREA START =====================*/
.titles.trending__titles {
  max-width: 768px;
}

.trending__card__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.trending__card__content span {
  text-transform: uppercase;
  font-weight: 700;
  color: #1476D5;
}

.trending__wrap>a {
  border: 2px solid #00005B;
  width: 190px;
  height: 44px;
  border-radius: 40px;
  margin: 80px auto 0px;
  font-weight: 700;
  color: #00005B;
}

.trending__wrap>a:hover,
.titles a:hover {
  background: #00005B;
  color: #fff;
}

/*===================== RESOURCE CSS AREA END =====================*/

/*===================== RESOURCE-BLOG CSS AREA START =====================*/
.resource__blog__wrap {
  background: #73B1E81A;
  padding: 80px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.resource__blog__wrap a {
  background: #1476D5;
  border-radius: 40px;
  width: 171px;
  height: 48px;
  color: #fff;
  font-weight: 700;
}

.resource__blog__wrap a:hover {
  background: #00005B;
}

/*===================== RESOURCE-BLOG CSS AREA END =====================*/

/*===================== RESOURCE-ALL CSS AREA START =====================*/
.titles a {
  border: 2px solid #00005B;
  border-radius: 40px;
  width: 211px;
  height: 44px;
  color: #00005B;
  font-weight: 700;
}

section#resource__all__area {
  margin-bottom: 0px;
}

/*===================== RESOURCE-ALL CSS AREA END =====================*/

/*===================== RESOURCE-EXPLORE CSS AREA START =====================*/
.resource__explore__card img {
  width: 48px;
}

.resource__explore__wrap {
  background: #73B1E81A;
  padding: 40px;
}

.resource__explore__card {
  text-align: center;
}

.resource__explore__card p {
  font-size: 18px;
  font-weight: 500;
  margin-top: 10px;
  color: #00005B;
}

/*===================== RESOURCE-EXPLORE CSS AREA END =====================*/

/*===================== BLOG CSS AREA START =====================*/
.blog__cards {
  display: flex;
  flex-direction: column;
  gap: 80px;
  max-width: 653px;
}

.single__blog__categorie {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.blog__search {
  border: 1px solid #8C9399;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 14px;
}

.blog__search input {
  /*width: 100%;*/
  color: #57575780;
}

.blog__search img {
  width: 20px;
}

.all__blog__categories {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.blog__email {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog__email input {
  border: 1px solid #8C9399;
  padding: 12px 16px;
  color: #57575780;
}

.blog__email label {
  font-weight: 500;
  color: #202020;
}

.single__blog__categorie button {
  width: 140px;
  height: 48px;
  border-radius: 40px;
  background: #1476D5;
  font-weight: 700;
  color: #fff;
}

.single__blog__categorie button:hover {
  background: #00005B;
}

.blog__social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.single__blog__categorie>ul>li {
  border-bottom: 1px solid #E6F3F0;
  padding: 10px 0px;
}

.single__blog__categorie>ul>li>a {
  font-weight: 700;
  color: #00005B;
}

.all__pages a img {
  width: 24px;
}

.all__pages {
  display: flex;
  align-items: center;
  gap: 10px;
}

.all__pages a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #064A46;
  font-weight: 700;
}

.all__pages a.active {
  border: 2px solid #1476D5;
}

/*===================== BLOG CSS AREA END =====================*/

/*===================== POST CSS AREA START =====================*/
.page__title h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.page__title span {
  color: #00005B;
  font-weight: 500;
}

.page__content ol {
  list-style-type: disc;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 21px;
}

.page__content ol li {
  color: #202020;
}


.page__content ul {
  list-style-type: disc;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 21px;
}

.page__content ul li {
  color: #202020;
}



.page__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page__profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.page__profile>a {
  width: 48px;
}

.profile__name {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.profile__name a {
  font-weight: 700;
  color: #00005B;
}

.profile__name span {
  color: #00005B;
  font-size: 14px;
  line-height: 18px;
}

.post__cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 653px;
}

.page__back__btn {
  display: flex;
  margin-bottom: 54px;
}

section#post__area {
  padding-top: 130px;
}

.title__post {
  align-items: start;
  text-align: start;
  margin-left: 0;
}

/*===================== POST CSS AREA END =====================*/

/*===================== CONTINGENT-STAFFING CSS AREA START =====================*/
.solution__hero__content2 {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.second__section__card {
  padding: 40px;
  background: #73B1E81A;
  height: 100%;
}

.second__section__card__img {
  margin-bottom: 30px;
  overflow: hidden;
}

.second__section__card__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.second__section__card__content h2 {
  font-size: 32px;
  line-height: 36px;
}

.second__section__card__img:hover img {
  transform: scale(1.1);
}



.employ__img.employ__img2 {
  height: 555px;
}

.employ__content.employ__content2 {
  padding: 46px 0px 0px;
  min-height: 555px;
}

.brand__emply {
  padding-top: 0px !important;
  margin-top: -20px;
}

.employ__content2 h2 {
  font-size: 32px;
  line-height: 36px;
}




section#staf__service__area {
  background: #73B1E81A;
  padding: 120px 0px;
}

.staf__serivce__card {
  display: flex;
  align-items: start;
  gap: 18px;
}

.staf__serivce__card img {
  width: 36px;
}

.staf__service__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.staf__serivce__card.staf__serivce__card2 {
  margin-top: 80px;
}





.staf__form__wrap {
  background: #73B1E81A;
  padding: 80px;
}

.staf__form__wrap h2 {
  text-align: center;
}

.staf__form__wrap form {
  margin-top: 40px;
}

.input__label {
  display: flex;
  gap: 30px;
}

.input__field {
  width: 100%;
}

.input__field input {
  width: 100%;
  height: 48px;
  border: 1px solid #8C9399;
  background: transparent;
  padding: 0px 16px;
  color: #57575780;
}

.input__field label {
  color: #202020;
  margin-bottom: 10px;
  font-weight: 500;
}

.input__label:first-child {
  margin-bottom: 30px;
}

.staf__form__wrap form button {
  font-weight: 700;
  color: #fff;
  border-radius: 40px;
  background: #1476D5;
  width: 116px;
  height: 48px;
  margin-top: 40px;
  margin-left: auto;
  display: block;
}

.staf__form__wrap form button:hover {
  background: #00005B;
}



.single__card__explore img {
  width: 48px;
}

.single__card__explore {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  background: linear-gradient(0deg, rgba(115, 177, 232, 0.1), rgba(115, 177, 232, 0.1)),
    linear-gradient(0deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1));
  padding: 40px 30px;
}

.single__card__explore p {
  color: #141A44;
  font-size: 18px;
  font-weight: 500;
}

.service__explore__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(184px, 1fr));
  gap: 2px;
}

.title__direct {
  max-width: 762px;
}

/*===================== CONTINGENT-STAFFING CSS AREA END =====================*/


















/*===================== CONTACT CSS AREA START =====================*/

.contact__form__blk {
  max-width: 352px;
  margin: 0 auto;
}

.contact__form__wrap label {
  color: #000;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: block;
  margin-bottom: 8px;
}

.contact__input input {
  color: #000;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 5px;
  border: 1px solid rgba(66, 80, 102, 0.40);
  background: #FFF;
  box-shadow: 0px 2px 4px 0px rgba(66, 80, 102, 0.10);
  padding: 12px;
  width: 100%;
}

.flex__contact {
  display: flex;
  gap: 13px;
}

.contact__input textarea {
  color: #000;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 100%;
  padding: 12px;
  border-radius: 5px;
  border: 1px solid rgba(66, 80, 102, 0.40);
  background: #FFF;
  box-shadow: 0px 2px 4px 0px rgba(66, 80, 102, 0.10);
  height: 104px;
  resize: none;
}

.security__validation__area input {
  color: #000;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 6px 8px;
  border-radius: 5px;
  border: 1px solid rgba(66, 80, 102, 0.40);
  background: #FFF;
  box-shadow: 0px 2px 4px 0px rgba(66, 80, 102, 0.10);
  width: 100%;
}

.security__validation__area label {
  color: #000;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 3px;
}

.security__validation__area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.submit__btn button {
  color: #FFF;
  text-align: center;
  font-feature-settings: 'clig'off, 'liga'off;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  border-radius: 40px;
  background: #1476D5;
  padding: 14px 30px;
  display: block;
  width: 100%;
  transition: .3s all;
  border: 1px solid #1476D5;
}

.submit__btn button:hover {
  background: #fff;
  color: #1476D5;
}

.submit__btn a {
  color: #202020;
  text-align: center;
  font-feature-settings: 'clig'off, 'liga'off;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  text-decoration-line: underline;
  margin-top: 20px;
  display: inline-block;
}

.submit__btn {
  text-align: center;
  margin-top: 10px;
}

.contact__bottom__content p {
  color: #202020;
  font-feature-settings: 'clig'off, 'liga'off;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 35px;
}

.contact__bottom__info p {
  color: #202020;
  font-feature-settings: 'clig'off, 'liga'off;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 20px;
}

/*-------- Custom CheckBox Style Start --------*/
/* The container */
.codeplay-ck .container-ck {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.codeplay-ck .container-ck input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.codeplay-ck .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: 1px solid #B3B9C2;
}



/* When the checkbox is checked, add a blue background */
.codeplay-ck .container-ck input:checked~.checkmark {
  background-color: #1476D5;
  border-color: #1476D5;
}

/* Create the checkmark/indicator (hidden when not checked) */
.codeplay-ck .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.codeplay-ck .container-ck input:checked~.checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.codeplay-ck .container-ck .checkmark::after {
  left: 7px;
  top: 2px;
  width: 6px;
  height: 11px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.codeplay-ck .container-ck p {
  margin: 0;
  padding: 0;
  position: relative;
  top: -4px;
  color: #000;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/*-------- Custom CheckBox Style Start --------*/

.security__text p {
  color: #000;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 9px;
}

.security__text {
  padding-top: 15px;
  border-top: 1px solid #CCCCCC;
}

.contact__select .nice-select {
  border-radius: 5px;
  border: 1px solid rgba(66, 80, 102, 0.40);
  background: #FFF;
  box-shadow: 0px 2px 4px 0px rgba(66, 80, 102, 0.10);
  height: 45px;
  float: unset;
  display: flex;
  align-items: center;
  color: #000;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.employe__thumb {
  margin-right: -248px;
}

.employe__list__text ul li {
  display: block;
  color: #202020;
  font-feature-settings: 'clig'off, 'liga'off;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  padding-left: 20px;
  margin-bottom: 10px;
  position: relative;
}

.employe__list__text ul li:before {
  position: absolute;
  left: 0;
  top: 10px;
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background: #202020;
  content: '';
}

.brand__single__content__box {
  padding: 20px 30px;
  background: var(--neutral-colors-white, #FFF);
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.16);
}

.brand__single__content__box h5 {
  color: var(--highmark-colors-together-blue, #003963);
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: -0.72px;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 10px;
}

.brand__single__content__box p {
  color: var(--highmark-colors-together-blue, #003963);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

.brand__text__inner__btn {
  text-align: right;
  margin-top: 20px;
}

.brand__text__inner__btn a {
  color: var(--Lochmara, var(--Highmark-Blue, #0078C1));
  text-align: right;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
  text-transform: capitalize;
  transition: .3s all;
}

.brand__text__inner__btn a:hover {
  color: #000;
}

.brand__single__content__box h5:before {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 51px;
  border-radius: 2px;
  background: var(--Highmark-Blue, #0078C1);
  content: '';
}

.mb_60 {
  margin-bottom: 60px;
}

/*===================== CONTACT CSS AREA END =====================*/