/************************************/

/*** 	 01. Global Variables	  ***/

/************************************/

:root {
  --primary-color: #1a2432;
  --text-color: #808080;
  --accent-color: #05afde;
  --dark-color: #18305d;
  --white-color: #ffffff;
  --default-font: "DM Sans", sans-serif;
}

/************************************/

/*** 	   02. General Css		  ***/

/************************************/

body {
  font-family: var(--default-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7em;
  background-color: var(--white-color);
  color: var(--text-color);
}

p {
  line-height: 1.7em;
  margin-bottom: 1.6em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 700;
  line-height: 1.2em;
  color: var(--primary-color);
}

figure {
  margin: 0;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  outline: 0;
}

a:focus {
  text-decoration: none;
  outline: 0;
}

html,
body {
  width: 100%;
  overflow-x: clip;
}

.container {
  max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  padding-right: 15px;
  padding-left: 15px;
}

.image-anime {
  position: relative;
}

.reveal {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  visibility: hidden;
  overflow: hidden;
}

.reveal img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform-origin: left;
  transform-origin: left;
}

.row {
  margin-right: -15px;
  margin-left: -15px;
}

.row > * {
  padding-right: 15px;
  padding-left: 15px;
}

.row.no-gutters {
  margin-right: 0px;
  margin-left: 0px;
}

.row.no-gutters > * {
  padding-right: 0px;
  padding-left: 0px;
}

.btn-default {
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1em;
  text-transform: capitalize;
  background: var(--accent-color);
  color: var(--white-color);
  border-radius: 100px;
  padding: 18px 70px 18px 30px;
  border: none;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
  z-index: 1;
}

.btn-default:hover {
  background-color: transparent;
}

.btn-default::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: auto;
  right: 0;
  width: 0;
  height: 100%;
  background: var(--primary-color);
  border-radius: 100px;
  transition: all 0.4s ease-in-out;
  z-index: -1;
}

.btn-default:hover::before {
  width: 100%;
  left: 0;
  right: auto;
}

.btn-default::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 30px;
  height: 30px;
  background-image: url("../images/arrow-white.svg");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
  transform: translate(-30px, -50%);
  transition: all 0.4s ease-in-out;
}

.btn-default.btn-highlighted {
  padding: 18px 30px;
}

.btn-default.btn-highlighted::after {
  display: none;
}

.cb-cursor:before {
  background: var(--accent-color);
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background-color: var(--dark-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-container,
.loading {
  height: 100px;
  position: relative;
  width: 100px;
  border-radius: 100%;
}

.loading-container {
  margin: 40px auto;
}

.loading {
  border: 1px solid transparent;
  border-color: transparent var(--white-color) transparent var(--white-color);
  animation: rotate-loading 1.5s linear 0s infinite normal;
  transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
  transition: all 0.5s ease-in-out;
}

#loading-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 66px;
  transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.section-row {
  margin-bottom: 80px;
}

.section-row .section-title {
  margin-bottom: 0;
}

.section-btn {
  text-align: end;
}

.section-title-content p {
  margin: 0;
}

.section-title {
  margin-bottom: 40px;
}

.section-title h3 {
  display: inline-block;
  position: relative;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3em;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary-color);
  padding-left: 24px;
  margin-bottom: 15px;
}
.section-title h3::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  background-color: #05afde;
  width: 12px;
  height: 12px;
  border-radius: 100%;
}

.section-title h1 {
  font-size: 70px;
  font-weight: 700;
  margin-bottom: 0;
}

.section-title h2 {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 0;
}

.section-title h1 span,
.section-title h2 span {
  color: var(--accent-color);
}

.section-title p {
  margin-top: 20px;
  margin-bottom: 0;
  /*text-transform: capitalize;*/
}

.section-title.dark-section h1,
.section-title.dark-section h2,
.section-title.dark-section h3 {
  color: var(--white-color);
}

.section-title.dark-section h3::before {
  filter: brightness(0) invert(1);
}

.section-title.dark-section p {
  color: var(--white-color);
  opacity: 80%;
}

.help-block.with-errors ul {
  margin: 0;
  text-align: left;
}

.help-block.with-errors ul li {
  color: var(--error-color);
  font-weight: 500;
  font-size: 14px;
}

/************************************/

/**** 	   03. Header Css		 ****/

/************************************/

header.main-header {
  position: relative;
  background: #fff;
  z-index: 100;
}

header.main-header .header-sticky {
  position: relative;
  top: 0;
  z-index: 100;
}

header.main-header .header-sticky.hide {
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
  border-radius: 0;
}

header.main-header .header-sticky.active {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  border-radius: 0;
  transform: translateY(0);
  background: var(--dark-color);
  border-bottom: 1px solid var(--dark-divider-color);
}

.navbar {
  padding: 20px 0 22px;
  align-items: center;
}

.navbar-brand {
  padding: 0;
  margin: 0;
}

.main-menu .nav-menu-wrapper {
  flex: 1;
  text-align: center;
  margin: 0 20px;
}

.main-menu .nav-menu-wrapper > ul {
  align-items: center;
  display: inline-flex;
}

.main-menu ul li {
  margin: 0;
  position: relative;
}

.main-menu ul li a {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3em;
  padding: 15px 20px !important;
  color: #000;
  opacity: 0.8;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}

.main-menu ul ul {
  visibility: hidden;
  opacity: 0;
  transform: scaleY(0.8);
  transform-origin: top;
  padding: 0;
  margin: 0;
  list-style: none;
  width: 230px;
  border-radius: 20px;
  position: absolute;
  left: 0;
  top: 100%;
  background-color: var(--accent-color);
  transition: all 0.3s ease-in-out;
  text-align: left;
}

.main-menu ul li.highlighted-menu {
  display: none;
}

.responsive-menu,
.navbar-toggle {
  display: none;
}

.responsive-menu {
  position: relative;
  top: 0;
}

.slicknav_btn {
  background: var(--accent-color);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin: 0;
  border-radius: 8px;
}

.slicknav_icon .slicknav_icon-bar {
  display: block;
  width: 100%;
  height: 3px;
  width: 22px;
  background-color: var(--white-color);
  border-radius: 6px;
  margin: 4px auto !important;
  transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
  margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
  margin-bottom: 0 !important;
}

.navbar-toggle
  a.slicknav_btn.slicknav_open
  .slicknav_icon
  span.slicknav_icon-bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle
  a.slicknav_btn.slicknav_open
  .slicknav_icon
  span.slicknav_icon-bar:nth-child(2) {
  opacity: 0;
}

.navbar-toggle
  a.slicknav_btn.slicknav_open
  .slicknav_icon
  span.slicknav_icon-bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu {
  position: absolute;
  width: 100%;
  padding: 0;
  background: var(--accent-color);
}

.slicknav_menu ul {
  margin: 5px 0;
}

.slicknav_menu ul ul {
  margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  padding: 8px 20px;
  color: var(--white-color);
  line-height: normal;
  margin: 0;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
}

.slicknav_menu ul ul li a {
  padding: 8px 20px 8px 30px;
}

/************************************/

/***        04. Hero Css	      ***/

/************************************/

.hero {
  position: relative;
  background-color: var(--dark-color);
  background-image: url("../images/hero-bg.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 50px 0 0;
}

.hero-image {
  position: relative;
  padding-left: 80px;
}

.hero-img figure {
  display: block;
}

.hero-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1.352;
}

.company-experience {
  position: absolute;
  bottom: 25%;
  left: 0;
  background-color: var(--accent-color);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  align-items: center;
  width: 280px;
  animation: experienceobject 3s infinite linear alternate;
  overflow: hidden;
}

@keyframes experienceobject {
  50% {
    left: 40px;
  }
}

.company-experience::before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  z-index: 0;
  transition: all 0.4s ease-in-out;
}

.company-experience:hover::before {
  top: 0;
}

.company-experience h3 {
  position: relative;
  width: 35%;
  color: var(--white-color);
  font-size: 46px;
  margin-right: 15px;
  z-index: 1;
}

.company-experience p {
  position: relative;
  width: 65%;
  color: var(--white-color);
  text-align: left;
  margin: 0;
  z-index: 1;
}

/************************************/

/***        05. About Us Css	  ***/

/************************************/
.about-us-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.about-us {
  padding: 100px 0;
}

.about-us-images {
  position: relative;
  padding: 0 250px 210px 0;
}

.about-img-1 {
  position: relative;
}

.about-img-1:before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%, 70px);
  width: 130px;
  height: 40px;
  background: url("../images/about-img-bg.png") no-repeat;
  background-position: bottom center;
  background-size: cover;
}

.about-img-1 figure,
.about-img-2 figure {
  display: block;
  border-radius: 20px;
}

.about-img-1 img,
.about-img-2 img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.about-img-1 img {
  aspect-ratio: 1 / 1.18;
}

.about-img-2 {
  width: 300px;
  position: absolute;
  bottom: 0;
  right: 0;
}
.contact-circle {
  position: absolute;
  top: 30px;
  right: 50px;
  animation: infiniterotate 30s infinite linear;
}

@keyframes infiniterotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.contact-circle img {
  max-width: 150px;
}
.about-us-content .section-title {
  margin-bottom: 0;
}

.about-us-content {
  margin-left: 30px;
}

/************************************/

/***      07. Talent AI Solutions ? Css   ***/

/************************************/
.talent-solution {
  background-color: #f7f8fa;
  padding: 60px 0 70px;
}
.services__one-item {
  padding: 40px;
  border-radius: 15px;
  background: #fff;
  display: flex;
  gap: 25px;
  margin-top: 40px;
  border: 1px solid #fff;
  transition: 0.5s all;
}
.services__one-item:hover {
  border: 1px solid #05afde;
}
.services__one-item-icon {
  position: relative;
  display: inline-flex;
  border-radius: 50%;
  transition: 0.4s;
  width: 80px;
  height: 80px;
  min-width: 80px;
  align-items: center;
  justify-content: center;
  background: rgba(5, 175, 222, 0.05);
}
.services__one-item-content h4 {
  font-size: 24px;
  line-height: 34px;
}
.services__one-item-content p {
  margin: 12px 0px 0px 0px;
}

.more_btn {
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  color: var(--text-heading-color);
  transition: 0.4s;
  display: inline-block;
}

/************************************/

/***      07. Why Choose Us Css   ***/

/************************************/

.why-choose-us {
  padding: 70px 0;
}

.why-choose-content {
  margin-right: 30px;
}

.why-choose-box-content h3 {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.why-choose-box-content p {
  margin: 0;
}
.why-choose-image {
  position: relative;
  padding: 0 0 165px 235px;
}

.why-choose-img-2 {
  max-width: 375px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.why-choose-img-1 figure,
.why-choose-img-2 figure {
  display: block;
  border-radius: 20px;
}

.why-choose-img-1 img,
.why-choose-img-2 img {
  width: 100%;
  aspect-ratio: 1 / 1.09;
  object-fit: cover;
  border-radius: 20px;
}

.why-choose-contact-circle {
  position: absolute;
  right: 50px;
  bottom: 0;
  animation: infiniterotate 30s infinite linear;
}

.why-choose-contact-circle img {
  max-width: 130px;
}

.approach {
  background: rgba(255, 255, 255, 0.002);
  border-left: 4px solid #05afde;
  box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.08);
  border-radius: 15px;
  padding: 12px 17px;
}
.commonwap ul li {
  color: #1a2432;
  list-style: none;
  margin-top: 10px;
  position: relative;
  padding: 0 0 0 22px;
}
.commonwap ul li i {
  position: absolute;
  left: 0;
  top: 5px;
  color: #173b8c;
}
.commonwap ul {
  padding-left: 0;
  margin: 22px 0;
}
.commonwap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

/************************************/

/***     09. Fact Counter Css     ***/

/************************************/

.fact-counter {
  padding: 60px 0;
}

.fact-counter-image {
  position: relative;
  padding: 0 35px 0 0;
}

.fact-counter-img figure {
  display: block;
  border-radius: 20px;
}

.fact-counter-box-content h2 {
  font-size: 46px;
  color: var(--dark-color);
  margin-bottom: 10px;
}

.fact-counter-box-content p {
  text-transform: capitalize;
  margin-bottom: 0;
}

/************************************/

/***     09.Our Procces Css     ***/

/************************************/

.Process h2,
.Process h3 {
  color: #fff;
}
.our-process {
  position: relative;
  padding: 100px 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.main-contact {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 12px;
}
.contact-us {
  padding: 90px 0;
}
.form-control {
  width: 100%;
  padding: 16px 22px;
  color: #000000;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 4px;
  margin-bottom: 18px;
}

label.form-label {
  color: #1a2432;
  font-weight: 600;
}

label.form-label span {
  color: red;
}

.contact-form {
  padding: 30px 80px 40px 40px;
}

form.form-wrap h3 {
  margin-bottom: 30px;
}

footer.xs-footer-sec {
  background: url(../images/footer-bg.svg), var(--dark-color);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  padding: 80px 0 20px 0;
}
.footer__one-widget p {
  color: #e6e7e1;
  margin: 20px 0 0 0;
}
.footer__one-widget h5 {
  color: #fff;
  margin-bottom: 22px;
  font-weight: 600;
}
.footer-widget-menu ul {
  padding: 0;
  margin: 0;
}
.footer-widget-menu ul li {
  padding: 0;
  list-style: none;
  margin-bottom: 10px;
}
.footer-widget-menu ul li a {
  color: #e6e7e1;
}

.footer__one-widget.ml-40.xl-ml-0 {
  margin-left: 40px;
}
.footer__one-widget.contact .contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 14px;
}
.footer__one-widget.contact .contact-item-icon i {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #05afde;
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.footer__one-widget.contact .contact-item-info span {
  display: block;
  color: #e6e7e1;
}
.footer__one-widget.contact .contact-item-info h6 {
    max-width: 240px;
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
}
.footer__one-widget.contact .contact-item-info h6 a {
  color: #fff;
}
.footer__one-widget h5 {
  color: #fff;
  margin-bottom: 22px;
  font-weight: 600;
}
.footer__one-widget.social ul {
  padding: 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}
.footer__one-widget.social ul li {
  list-style: none;
}
.footer__one-widget.social ul li a i {
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #05afde;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
}
.copyright__area {
    padding-top: 22px;
    margin-top: 40px;
    border-top: 1px solid rgb(255 255 255 / 10%);
}
.copyright__area .footer-widget-menu ul {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: end;
}
.copyright__area .footer-widget-menu ul li {
  margin: 0;
}
.copyright__area p {
  color: #e6e7e1;
  margin: 0;
}

/*.Process h2, .Process h3 {
    color: #fff;
}
.feature-box-classic {
    background-image: url(https://wordpress.zozothemes.com/finxpert/wp-content/uploads/sites/24/2024/06/one-line2.png);
    padding: 0px 0px 0px 405px;
    background-position: 293px 83px;
    background-repeat: no-repeat;
    background-size: 109px auto;
    border-style: solid;
    position: relative;
    border-width: 0px 0px 0px 0px;
    height: 150px;
        box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
}
.media {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
}
.feature-box-wrapper>.media>*:first-child {
    margin-right: 25px;
    line-height: 1;
}
.fbox-number {
    color: #FFFFFF;
    opacity: calc(1 / 10);
    font-size: 40px;
    font-weight: 700;
    line-height: 1em;
    position: absolute;
    top: 19%;
    left: 33%;
}
.feature-box-classic2{
    padding: 0px 0px 0px 250px;
}*/
/************************************/

/***        16. Footer Css        ***/

/************************************/

footer.main-footer {
  background: url("../images/footer-bg.svg"), var(--dark-color);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  padding: 100px 0 0 0;
}

.footer-newsletter-box {
  margin-right: 120px;
}

.footer-newsletter-title {
  margin-bottom: 40px;
}

.footer-newsletter-title h3 {
  font-size: 34px;
  color: var(--white-color);
}

.thankyou-message {
  text-align: center;
}

.close-button {
  padding: 10px 10px 0;
  text-align: end;
}

.thankyou-message img {
  width: 40%;
  margin-bottom: 25px;
}

.thankyou-message h2 {
  font-size: 28px;
}
.thankyou-message p {
  margin-bottom: 0;
}
.talent-inner-page {
    position: relative;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 120px 0;
    text-align: center;
}
.talent-inner-page:after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(16 50 91 / 70%);
}
.inner-banner-tittle {
    position: relative;
    z-index: 9;
    color: #fff;
}
.inner-banner-tittle h1 {
    color: #fff;
}
.Privacy-policy {
    padding: 40px 0;
}
.privacy-content-wap p {
    margin-bottom: 12px;
}
.privacy-content-wap {
    margin-bottom: 20px;
}
.privacy-content-wap h5 {
    margin-bottom: 14px;
}
.privacy-content-wap ul {
    padding-left: 0;
}
.privacy-content-wap ul li {
    list-style: none;
    position: relative;
    padding-left: 20px;
    padding-top: 6px;
}
.privacy-content-wap ul li:after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    top: 13px;
    width: 12px;
    height: 12px;
    background-color: #05afde;
    border-radius: 100%;
}



#return-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #05afde;
    background: #05afde;
    width: 50px;
    height: 50px;
    display: block;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#return-to-top i {
    color: #fff;
    margin: 0;
    position: relative;
    left: 16px;
    top: 13px;
    font-size: 19px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#return-to-top:hover i {
    color: #fff;
    top: 5px;
}

/************************************/

/***      32. Responsive Css      ***/

/************************************/

@media only screen and (max-width: 1024px) {
  .main-menu ul li {
    margin: 0;
  }
  .our-appointment-box {
    padding: 50px;
  }
}

@media only screen and (max-width: 991px) {
  .navbar {
    padding: 20px 0;
  }
  .main-menu ul li.highlighted-menu {
    display: block;
  }
  .slicknav_nav li,
  .slicknav_nav ul {
    display: block;
  }
  .responsive-menu,
  .navbar-toggle {
    display: block;
  }
  .header-btn {
    display: none;
  }
  .btn-default {
    font-size: 16px;
    padding: 15px 60px 15px 20px;
  }
  .btn-default::after {
    height: 24px;
    width: 24px;
    transform: translate(-20px, -50%);
  }
  .btn-default.btn-highlighted {
    padding: 15px 20px;
  }
  .section-row {
    margin-bottom: 40px;
  }
  .section-title {
    margin-bottom: 30px;
  }
  .section-title h3 {
    margin-bottom: 10px;
    padding-left: 30px;
  }
  .section-title h3::before {
    width: 20px;
    height: 20px;
  }
  .section-title h1 {
    font-size: 55px;
  }
  .section-title h2 {
    font-size: 38px;
  }
    .section-title p {
        margin-top: 15px;
        font-size: 14px;
    }

  .section-title-content {
    margin-top: 15px;
  }
  .section-btn {
    text-align: left;
    margin-top: 30px;
  }
  .hero {
    padding: 50px 0 0;
  }
  .hero.hero-bg-image {
    padding: 205px 0;
  }
      .about-us-images {
        max-width: 620px;
        margin: 0 auto;
        margin-bottom: 30px;
    }
        .about-us-content {
        margin-left: 0px;
    }
        .section-title {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
  .section-row {
    margin-bottom: 30px;
  }
  .section-title h3 {
    font-size: 14px;
    padding-left: 25px;
  }
  .section-title h3:before {
    height: 15px;
    width: 15px;
  }
  .section-title h1 {
    font-size: 36px;
  }
  .section-title h2 {
    font-size: 26px;
  }

.about-us {
    padding: 50px 0;
}
    .about-us-images {
        padding: 0 130px 100px 0;
    }
    .about-img-1:before {
        transform: translate(-50%, 40px);
        width: 80px;
        height: 25px;
    }
        .about-img-2 {
        width: 180px;
    }
        .contact-circle {
        top: 10px;
        right: 20px;
    }
        .contact-circle img {
        max-width: 90px;
    }

  /* .section-title .split-line {
    text-align: center !important;
  } */

  .services__one-item {
    flex-direction: column;
  }

  .services__one-item {
    margin-top: 0;
    margin-bottom: 40px;
  }

     .fact-counter {
        padding-top: 0;
        padding-bottom: 30px;
    }

  .our-process {
    padding: 30px 0;
  }
  .hero-image {
    padding-left: 50px;
}
.talent-solution {
    padding: 50px 0 20px;
}
.why-choose-us {
    padding: 50px 0;
}
.why-choose-image {
    max-width: 100%;
    padding: 0 0 100px 154px;
}
.why-choose-img-2 {
    max-width: 220px;
}
.why-choose-contact-circle {
    right: 10px;
}
.why-choose-contact-circle img {
    max-width: 90px;
}
.fact-counter-image {
    padding: 0;
}
.why-choose-content {
    margin-right: 0;
}
.contact-us {
    padding: 50px 0;
}
.contact-form {
    padding: 20px;
}
.main-contact {
    background-position: inherit;
}
footer.xs-footer-sec {
    padding: 40px 0 20px 0;
}
.footer__one-widget.ml-40.xl-ml-0 {
    margin-left: 0;
    margin-top: 18px;
}
.footer__one-widget.contact .contact-item-icon i {
    width: 40px;
    height: 40px;
    font-size: 18px;
}
.footer__one-widget.contact .contact-item {
    gap: 16px;
}
.footer__one-widget p {
    color: #e6e7e1;
    margin: 0;
}
.social h5 {
    margin-bottom: 5px;
    margin-top: 10px;
}
.copyright__area p {
    font-size: 14px;
}
.copyright__area {
    margin-top: 30px;
}
.talent-inner-page {
    padding: 50px 0;
}
.Privacy-policy {
    padding: 30px 0 0;
}
.privacy-content-wap h5 {
    font-size: 18px;
}
.form-control {
    padding: 12px 22px;
}

#return-to-top i {
    left: 13px;
    top: 8px;
    font-size: 18px;
}
#return-to-top {
    bottom: 14px;
    right: 5px;
    width: 40px;
    height: 40px;
}



}



