/*============
Template Name: AL-RIYADH HTML5 Template
Author: 
Version: 1.0
============*/

/* Table of contents */
/*====================
01.Header ara css
02.hero area css
03.what we do area css
04.unmatehed excellence area css
05.legal paesergce area css
06.testmonial area css
07.get in touch area css
08.footer area css
09.about page css
10.services all page css
11.single services v1 page css
12.singel services v2 page css
13.cariyar v1 page css
14.cariyar v2 page css
15.contact us page css
====================*/

/* ==========
    Base CSS
============ */
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/GothamLight.ttf');
  font-weight: 300;
}
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/GothamBook.ttf');
  font-weight: 400;
}
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/GothamMedium.ttf');
  font-weight: 500;
}
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/GothamBold.ttf');
  font-weight: 700;
}

* {
  margin: 0;
  padding: 0;
  list-style: none;
}

html,
body {
  scroll-behavior: smooth;
  font-family: 'Gotham';
}
img {
  max-width: 100%;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.al-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

a.primary-btn {
  display: inline-block;
  width: max-content;
  padding: 13px;
  background: #333;
  border-radius: 45px;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  color: #fff;
  border: 1px solid transparent;
}

a.primary-btn:hover {
  border-color: #333;
  background-color: #fff;
  color: #333;
}

.wrapper {
  overflow: hidden;
}
/* slideindown animation */
@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

.sticky {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: auto;
  -webkit-animation: 300ms running fadeInDown;
  animation: 500ms running fadeInUp;
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
  z-index: 99;
  background: #fff;
}
/* search bar css */
.search-popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.9);
  -webkit-transition: all 1500ms cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: all 1500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 1500ms cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}

.search-popup .close-search {
  position: absolute;
  right: 25px;
  top: 25px;
  left: auto;
  width: auto;
  height: auto;
  margin: 0px;
  border: none;
  background-color: transparent;
  color: #fff;
  font-size: 24px;
  outline: none;
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.search-popup .close-search:hover {
  color: #ff2d64;
}

.search-popup form {
  position: absolute;
  max-width: 700px;
  top: 50%;
  left: 15px;
  right: 15px;
  margin: -35px auto 0;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.search-popup .form-group input[type='search'] {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 26px;
  color: #000;
  font-weight: 400;
  height: 70px;
  width: 100%;
  border: none;
  outline: none;
  padding: 10px 25px;
  padding-right: 65px;
  background-color: #fff;
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  text-transform: capitalize;
}

.search-popup .form-group button {
  position: absolute;
  right: 30px;
  top: 0;
  height: 70px;
  background-color: transparent;
  border: none;
  text-align: center;
  font-size: 26px;
  padding: 0;
  color: #ff2d64;
}

.search-popup .form-group button:hover {
  color: #000;
}

.search-active .search-popup form {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  transition-delay: 1200ms;
}

.search-active .search-popup {
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
}

/* black overlay */
.services-v1-hero::after,
.about-hero::after,
.services-all-hero::after,
.career-v2-hero::after,
.contact-hero::after,
.services-v2-hero::after {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  content: '';
  background: #000;
  opacity: 0.5;
  z-index: -1;
}
/* window loader */
.nexigen-loading {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  z-index: 999;
}

.nexigen-loading .lds-ripple {
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.lds-ripple {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ripple div {
  position: absolute;
  border: 4px solid #333;
  opacity: 1;
  border-radius: 50%;
  -webkit-animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.lds-ripple div:nth-child(2) {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}
@-webkit-keyframes lds-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 0;
  }
  4.9% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 0;
  }
  5% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}
@keyframes lds-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 0;
  }
  4.9% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 0;
  }
  5% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}

/* header area */

.logo img {
  height: auto;
  width: 5rem;
}

.manu-part li {
  display: inline-block;
  padding-right: 32px;
}

.right-manu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

.manu-part {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: flex-end;
}

.main-manu ul {
  width: max-content;
}

.main-manu li a {
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  color: #333;
  position: relative;
  z-index: 1;
}
.main-manu li a::after {
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 1px;
  width: 0;
  content: '';
  background: #333;
  -webkit-transition: 0.4s ease-in-out;
  -o-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.main-manu a:hover::after {
  opacity: 1;
  visibility: visible;
  width: 100%;
}

.main-manu li a:hover {
  color: #333;
}

ul.submanu {
  position: absolute;
  text-align: left;
  top: 100px;
  min-width: 200px;
  background-color: #fff;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  border-radius: 6px;
  -webkit-box-shadow: 0 0 10px #f1f1f1;
  box-shadow: 0 0 10px #f1f1f1;
  z-index: 99;
}

ul.submanu li {
  display: block;
  margin: 0;
  padding-right: 0;
  padding: 10px 15px;
  border-bottom: 1px solid #dcdcdc;
}

ul.submanu li:last-child {
  border-bottom: 0;
}

ul.submanu li a {
  display: inline-block;
  color: #333;
}

ul.submanu li a::after {
  display: none;
}

.main-manu ul li:hover ul.submanu {
  top: 85px;
  opacity: 1;
  visibility: visible;
}

.search-bar a {
  display: inline-block;
  height: 47px;
  width: 47px;
  background: #fff;
  text-align: center;
  line-height: 47px;
  border-radius: 50%;
  border: 1px solid #4f4f4f;
  -webkit-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.search-bar a:hover {
  background: #333;
  color: #fff;
}

.search-bar a svg {
  color: #3a3a3a;
}

.search-bar a:hover svg {
  color: #fff;
}

.search-bar {
  margin-left: 10px;
}
.mobila-manu-area {
  display: none;
}

/* hero area */

.hero-area {
  background-image: url(../images/home/hero-bg.png);
  background-size: cover;
  background-position: center;
  padding: 176px 0px 245px 0px;
}

.hero-content {
  background: radial-gradient(#6bb7c5, transparent);
  padding: 3rem;
  border-radius: 30px;
}
.hero-content p {
  font-size: 32px;
  font-weight: 300;
  line-height: 48px;
  color: #fff;
  margin-bottom: 24px;
}

.hero-content h2 {
  font-size: 62px;
  font-weight: 700;
  line-height: 70px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 63px;
}

.hero-btn a {
  border-color: #f2f2f2;
}

/* what we do area start */

section.what-we-do {
  padding-top: 120px;
  background: #fdfafa;
}

.section-tittle {
  text-align: center;
  margin-bottom: 110px;
}

.section-tittle h2 {
  font-size: 32px;
  font-weight: 400;
  line-height: 48px;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 20px;
}

.section-tittle p {
  font-size: 18px;
  font-weight: 300;
  line-height: 36px;
  color: #646464;
  text-transform: capitalize;
  margin-bottom: 0;
}

.what-we-do-left h4 {
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 48px;
  color: #000;
}

.what-we-do-left h6 {
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  text-transform: capitalize;
  color: #646464;
  margin: 22px 0;
}

.what-we-do-left p {
  font-size: 18px;
  font-weight: 300;
  line-height: 36px;
  text-transform: capitalize;
  color: #646464;
  margin-bottom: 30px;
}
/* unmatched excellence area */

section.unmatched {
  background: #fdfafa;
  padding-top: 120px;
}

.row.unmatched-all-item {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.single-unmatched-item {
  text-align: center;
  background: #fff;
  -webkit-box-shadow: 0px 10px 10px 0px rgba(243, 243, 243, 0.25);
  box-shadow: 0px 10px 10px 0px rgba(243, 243, 243, 0.25);
  padding: 47px 32px 95px 32px;
  height: 388px;
  margin-bottom: 30px;
  overflow: hidden;
}

.unmatched-icon svg {
  height: 66px;
  width: 66px;
}

.unmatched-icon {
  margin-bottom: 30px;
  max-width: 68px;
  margin: 1.5rem auto;
}

.single-unmatched-item h4,
.single-testmonial-item h4 {
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  text-transform: capitalize;
  color: #646464;
  margin-bottom: 36px;
}

.single-unmatched-item p {
  margin-bottom: 0;
  color: #646464;
  font-size: 18px;
  font-weight: 300;
  line-height: 32px;
  text-transform: capitalize;
}

.single-unmatched-item:hover .unmatched-icon img {
  scale: 1.15;
}

.unmatched-icon img {
  -webkit-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

/* legal presengce area start */

.legal-presence-area {
  background: #fdfafa;
  padding-top: 120px;
}

.ligal-prestnce-content h2 {
  font-size: 32px;
  font-weight: 400;
  line-height: 48px;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 18px;
}

.ligal-prestnce-content p {
  font-size: 20px;
  font-weight: 300;
  line-height: 36px;
  color: #646464;
  text-transform: capitalize;
  margin-bottom: 32px;
}

/* testmonial area css */

.single-testmonial-item {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
}

.testmonial-area {
  background: #fdfafa;
  padding-top: 120px;
}

.single-testmonial-item p {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  color: #2e4762;
  margin-bottom: 24px;
}

.testmonial-profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.testmonial-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

.left-img img {
  height: 56px;
  width: 56px;
  border-radius: 200px;
}

.left-content span {
  display: block;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  color: #344054;
}

.left-content h6 {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.testmonial-right p {
  margin-bottom: 0;
  color: #fdb022;
}

/* get in touch area css */

.get-in-touch {
  padding-top: 120px;
  background: #fdfafa;
  padding-bottom: 120px;
}

.get-in-touch-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: #262626;
  color: #fff;
  border-radius: 40px;
  padding: 55px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.get-in-touch-left h2 {
  margin-bottom: 15px;
  font-size: 32px;
  font-weight: 700;
  line-height: 48px;
  text-transform: uppercase;
}

.get-in-touch-left p {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 0;
}

a.contact {
  display: block;
  background: #f2f2f2;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  border: 1px solid #f2f2f2;
  color: #000;
  border-radius: 45px;
  -webkit-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

a.contact:hover {
  background: #000;
  color: #fff;
}

/* footer area  */

footer.footer-area {
  background: #262626;
  color: #fff;
  padding: 100px 0;
}

footer.footer-area li a:hover {
  color: #21fbff;
}

.footer-log img {
  width: 100px;
}

.logo-part p {
  width: 388px;
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
  margin: 50px 0;
}

.logo-part li {
  display: inline-block;
  padding-left: 40px;
}

.logo-part li a {
  font-size: 16px;
  font-weight: 300;
  line-height: 150%;
  color: #fff;
}

.logo-part li:first-child {
  padding-left: 0;
}

footer.footer-area h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4em;
  margin-bottom: 8px;
}

footer.footer-area h6 {
  font-size: 16px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 0;
}

.first-address p {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
}

.secound-adress p {
  margin-bottom: 0;
}

.privacy li {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  line-height: 28.16px;
  padding-right: 10px;
}

.privacy li a {
  color: #fff;
}

.secound-adress {
  margin-bottom: 50px;
}

.contact-part li {
  display: inline;
  padding-left: 18px;
}

.contact-part li a {
  color: #fff;
}

.social {
  margin-bottom: 30px;
}

p.copyright {
  font-size: 16px;
  font-weight: 400;
  line-height: 180%;
  margin-bottom: 20px;
}

p.develope {
  margin-bottom: 0;
}

.contact-part li:first-child {
  padding: 0;
}

.contact-part p {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
}

.contact-part p a {
  color: #fff;
}

.contact-part p span {
  font-weight: 700;
}

.privacy li:first-child {
  border-right: 1px solid;
}

/* about page  */
.about-hero {
  background-image: url(../images/about-us/about-bg.png);
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.about-content-area {
  padding-top: 120px;
  background: #fdfafa;
}

.about-content-area h2 {
  font-size: 32px;
  font-weight: 400;
  line-height: 48px;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 14px;
}

.page-tittle h2 {
  color: #fff;
  text-align: center;
  font-size: 62px;
  font-weight: 700;
  line-height: 70px;
  text-transform: uppercase;
  margin-bottom: 17px;
}

.page-tittle {
  padding: 237px 0;
  color: #fff;
  text-align: center;
}

.about-content-area p {
  font-size: 18px;
  font-weight: 300;
  line-height: 32px;
  text-transform: capitalize;
  margin-bottom: 0;
  color: #646464;
}

.over-view-text,
.mission-img,
.over-view-img,
.mission-img {
  padding-bottom: 115px;
}

.mission-secound-text {
  margin-top: 210px;
}
.mission-first-text {
  padding-top: 50px;
}

.location-area {
  padding-top: 120px;
  background: #fdfafa;
  padding-bottom: 110px;
}

.single-location-item {
  background: #f4f4f4;
  padding: 27px 37px;
  padding-bottom: 47px;
  color: #101828;
  -webkit-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  margin-bottom: 30px;
}

.single-location-item h4 {
  color: #101828;
  font-size: 22px;
  font-weight: 700;
  line-height: 48px;
  text-transform: uppercase;
  margin-bottom: 4px;
  -webkit-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.single-location-item h6 {
  margin-bottom: 6px;
  font-size: 24px;
  font-weight: 400;
  line-height: 44px;
}

.single-location-item p {
  font-size: 24px;
  font-weight: 300;
  line-height: 36px;
  margin-bottom: 0;
}

.single-location-item p span {
  font-weight: 400;
}

.single-location-item a {
  display: block;
  color: #101828;
  font-size: 24px;
  font-weight: 300;
  line-height: 44px;
  -webkit-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.single-location-item a.mail {
  font-weight: 400;
}

.single-location-item .address2 {
  margin-bottom: 11px;
}

.single-location-item a.tel {
  margin-bottom: 7px;
}

.single-location-item:hover {
  color: #fff;
  background: #161616;
}
.single-location-item:hover a,
.single-location-item:hover h4 {
  color: #fff;
}

/* services all page css */
.services-all-hero {
  background-image: url(../images/services-page/services-bg.png);
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}
.solutions-all-hero {
  background-image: url(../images/solution-page/solution.png);
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}

.virutal-assistant {
  background: #f5f5f5;
  padding-top: 80px;
}

.single-assistant-item {
  background: #fff;
  border-radius: 8px;
  padding-bottom: 30px;
  max-height: 472px;
  border: 1px solid #eaecf0;
}

.assistant-img img {
  width: 100%;
  height: 200px;
  border-radius: 8px;
}

.assistant-content {
  padding: 16px;
}

.assistant-icon {
  font-size: 24px;
  background: #f2f4f7;
  height: 56px;
  width: 56px;
  text-align: center;
  line-height: 56px;
  border-radius: 8px;
  margin-bottom: 8px;
}

.assistant-content h4 {
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.assistant-content p {
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
  text-transform: capitalize;
  color: #475467;
  margin-bottom: 0;
}

.assistant-servies-btn {
  text-align: center;
  padding-top: 43px;
  padding-bottom: 28px;
}
.technical-support,
.inbound-outbound,
.clerical-services,
.graphic-design-services {
  padding: 80px 0;
}
.technical-support {
  background: #fdfafa;
}
.inbound-outbound {
  background: #f5f5f5;
}

.clerical-services {
  background: #fdfafa;
}

.graphic-design-services {
  background: #f5f5f5;
}

.services-all-getin-touch {
  background: #fdfafa;
  padding-top: 21px;
  padding-bottom: 53px;
}

/* single services v1 page start */
.services-v1-main {
  padding-top: 80px;
  background: #fdfafa;
}
.services-v1-hero {
  background-image: url(../images/services-page/services-v1-bg.png);
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}
.page-btn {
  margin-top: 55px;
}
.page-btn a {
  border-color: #f2f2f2;
}
.services-v1-main h4 {
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  color: #101828;
  margin-bottom: 12px;
}

.services-v1-main p {
  font-size: 18px;
  font-weight: 300;
  line-height: 32px;
  text-transform: capitalize;
  color: #161616;
  margin-bottom: 40px;
}

.managment-list li {
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  text-transform: capitalize;
  list-style: initial;
}

.managment-list ul {
  margin-bottom: 40px;
  padding-left: 2rem;
}

.email-management p {
  margin-bottom: 30px;
}

.data-enty-img {
  padding-top: 108px;
}

.customer-support {
  padding-top: 95px;
}

.ndis-services {
  padding-top: 164px;
}

.data-entry-content {
  padding-top: 195px;
}

.customer-support-img {
  padding-top: 211px;
}

.ndis-servies-text {
  padding-top: 64px;
}

.services-v1-getin-touch {
  padding-top: 122px;
  padding-bottom: 80px;
  background: #fdfafa;
}
/* career v2 page star */
.career-v2-hero {
  background-image: url(../images/services-page/career-bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}

.apply-form {
  width: 744px;
  background: #fff;
  padding: 52px 127px;
  margin: 0 auto;
}

.career-main {
  background: #fdfafa;
  padding: 120px 0;
}

.apply-form h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 21px;
  color: #07122f;
  letter-spacing: 0.72px;
}

.apply-form label,
.apply-form .resume-text {
  display: block;
  color: #8d93a1;
  font-size: 12px;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 10px;
}

.apply-form input,
.apply-form textarea {
  border: 1px solid #e4ebf3;
  display: block;
  width: 100%;
  padding: 16px;
  outline: none;
  margin-bottom: 22px;
  border-radius: 6px;
}
.apply-form textarea {
  height: 88px;
}
.name-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.resume-area {
  text-align: center;
  border: 1px dashed #d0d5dd;
  padding: 24px;
  margin-bottom: 23px;
}

.resume-area img {
  margin-bottom: 10px;
}

.resume-area p {
  font-size: 14px;
  font-weight: 300;
  line-height: 128%;
}

.newslatter-btn,
.terms-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}

.newslatter-btn input,
.terms-btn input {
  height: 24px;
  width: 24px;
  border: 1px solid #e4ebf3;
  margin-bottom: 20px;
}

.terms-btn span a {
  font-weight: 700;
  color: #000;
}

.newslatter-btn span,
.terms-btn span {
  color: #07122f;
}

.apply-form button {
  display: block;
  width: 100%;
  background: #000;
  color: #fff;
  border: none;
  padding: 16px;
  font-size: 18px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.36px;
}

.apply-form input:focus,
.apply-form textarea:focus {
  border-color: #000;
}

/* career page start */

.career-content-area {
  padding: 120px 0;
  text-align: center;
  background: #fdfafa;
}
.career-content-area h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 48px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.career-content-area p {
  font-size: 18px;
  font-weight: 300;
  line-height: 36px;
  text-transform: capitalize;
  color: #646464;
}
.career-top-content {
  margin-bottom: 60px;
}
.career-apply-btn {
  padding-top: 50px;
}
.career-apply-btn a {
  padding: 15px 50px;
}

/* contact us page  */
.contact-form-part {
  padding: 120px 0;
  background: #fdfafa;
}

.contact-hero {
  background-image: url(../images/home/hero-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}

.get-in-touch-text h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 44px;
  color: #101828;
  letter-spacing: -0.72px;
  margin-bottom: 20px;
}

.get-in-touch-text p {
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  color: #667085;
  margin-bottom: 0;
}

.get-in-touch-text p a {
  color: #667085;
  font-weight: 400;
  text-decoration: underline;
}

.social-link p {
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 15px;
}

.social-link li {
  display: inline-block;
  padding-left: 27px;
}

.social-link li a {
  height: 48px;
  width: 48px;
  display: block;
  color: #646464;
  font-size: 24px;
  border: 1px solid;
  text-align: center;
  line-height: 48px;
  border-radius: 50%;
}

.social-link li:first-child {
  padding-left: 0;
}

.social-link li a:hover {
  background: #000;
  color: #fff;
}

.get-in-touch-text .get-first {
  margin-bottom: 23px;
}

.get-in-touch-text .get-secound {
  margin-bottom: 18px;
}

.get-in-touch-text .get-third {
  margin-bottom: 25px;
}

.call-and-email {
  margin-bottom: 20px;
}

.qustion-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 21px;
}

.schadul-call {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 21px;
  padding: 12px 14px;
  border: 1px solid #a1a1a1;
  border-radius: 10px;
}

.schdul-icon {
  height: 38px;
  width: 38px;
  background: #e6e6e6;
  text-align: center;
  line-height: 45px;
  border-radius: 50%;
}

.schdul-icon svg {
  height: 22px;
  width: 22px;
}

.schdul-text span {
  font-size: 14px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.28px;
  display: inline-block;
  margin-bottom: 4px;
}

.schdul-text p {
  font-size: 14px;
  font-weight: 400;
  color: #7b7b7b;
  line-height: 150%;
  letter-spacing: 0.28px;
  margin-bottom: 0;
}
.apply-form.contact-form input {
  background: transparent;
}

.apply-form.contact-form {
  padding: 0;
  padding-left: 50px;
  background: none;
}

.question-area {
  padding-left: 50px;
}

.question-area h6 {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: #344054;
  padding-top: 30px;
  padding-bottom: 8px;
}

.schadul-call.schadul-color-change {
  background: #434343;
  color: #fff;
}

.schadul-call.schadul-color-change p {
  color: #fff;
}

.schadul-call.schadul-color-change .schdul-icon svg {
  color: #515151;
}

.apply-form.contact-form.apply-form textarea {
  height: 170px;
  background: #fff;
}
/* services v2 page start */
.services-v2-hero {
  background-image: url(../images/services-page/services-v2-bg.png);
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}
.email-management {
  padding-top: 25%;
}

.email-management2-img {
  padding-top: 40%;
}

.email-management2-content {
  padding-top: 40%;
}

.servicesv2-item {
  background: #fdfafa;
  padding: 120px 0;
}

.servicesv2-bottom-content {
  background: #fdfafa;
  padding-bottom: 120px;
}
.servicesv2-bottom-content h4 {
  font-size: 32px;
  font-weight: 400;
  line-height: 48px;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 18px;
}

.servicesv2-bottom-content p {
  font-size: 20px;
  font-weight: 300;
  line-height: 36px;
  text-transform: capitalize;
  margin-bottom: 18px;
  color: #646464;
}

.services-content {
  text-align: justify;
}

.services-content li {
  font-size: 18px;
  font-weight: 300;
  line-height: 36px;
  color: #646464;
  text-transform: capitalize;
  margin-bottom: 0;
  font-weight: 500;
}

/* Accordion Container */
.services-accordion {
  width: 100%;
  margin-top: 30px;
}

/* Header Button */
.services-accordion .accordion-header {
  width: 100%;
  background: #f3f5f7;
  border: none;
  padding: 15px 20px;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 6px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s ease;
}

/* Header Hover */
.services-accordion .accordion-header:hover {
  background: #e9ebed;
}

/* Rotate Arrow */
.services-accordion .accordion-header.active .arrow {
  transform: rotate(180deg);
}

/* Arrow Transition */
.services-accordion .accordion-header .arrow {
  transition: transform 0.3s ease;
}

/* Accordion Content */
.services-accordion .accordion-content {
  max-height: 0;
  overflow: hidden;
  background: #e4e2e2;
  border-radius: 6px;
  padding: 0 20px;
  transition: max-height 0.4s ease;
}

/* Inner List */
.services-accordion .accordion-content ul {
  list-style: none;
  padding: 10px 0 20px 0;
}

.services-accordion .accordion-content ul li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.services-accordion .accordion-content ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #0b5ed7;
  font-weight: bold;
}

.normal-services-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 20px 0;
}

.normal-services-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

.normal-services-list .arrow-bullet {
  position: absolute;
  left: 0;
  top: 2px;
  font-weight: 600;
}

.services-accordion {
  border-top: 1px solid #e4e6ea;
  margin-top: 10px;
}

.services-accordion .accordion-item {
  border-bottom: 1px solid #e4e6ea;
}

.services-accordion .accordion-header {
  width: 100%;
  background: transparent;
  border: none;
  padding: 10px 0;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.services-accordion .accordion-header.active {
  color: #111;
}

.services-accordion .accordion-header .arrow {
  font-size: 13px;
  transition: transform 0.25s ease;
}

.services-accordion .accordion-header.active .arrow {
  transform: rotate(180deg);
}

.services-accordion .accordion-content {
  max-height: 0;
  overflow: hidden;
  padding-left: 22px;
  padding-right: 0;
  transition: max-height 0.3s ease;
}

.services-accordion .accordion-content ul {
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
}

.services-accordion .accordion-content ul li {
  position: relative;
  padding-left: 14px;
  margin-bottom: 6px;
  font-size: 15px;
  color: #555;
}

.services-accordion .accordion-content ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 12px;
}

.align-center {
  text-align: center;
}
.margin-bt-2 {
  margin-bottom: 2rem;
}

.align-left {
  text-align: left;
}

.what-we-do-right,
.what-we-bottom-left {
  width: 65%;
}
.what-we-do-left,
.what-we-bottom-right {
  width: 65%;
}
.home-img-container {
  display: flex;
  justify-content: center;
}
.home-text-container {
  display: flex;
  justify-content: center;
}
@media (max-width: 990px) {
  .what-we-do-right,
  .what-we-bottom-left,
  .what-we-do-left,
  .what-we-bottom-right {
    width: 100%;
  }
}

.solution-item {
  height: 600px !important;
}
