/*============
Template Name: Muselab 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('../font/GothamLight.ttf');
    font-weight: 300;
}
@font-face {
    font-family: 'Gotham';
    src: url('../font/GothamBook.ttf');
    font-weight: 400;
}
@font-face {
    font-family: 'Gotham';
    src: url('../font/GothamMedium.ttf');
    font-weight: 500;
}
@font-face {
    font-family: 'Gotham';
    src: url('../font/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: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .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.90);
    -webkit-transition: all 1500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: all 1500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: all 1500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
         -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
            transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -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: .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: 127px;
    width: 127px;
}

.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: .4s ease-in-out;
    -o-transition: .4s ease-in-out;
    transition: .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: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .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(../image/hero-bg.png);
    background-size: cover;
    background-position: center;
    padding: 176px 0px 245px 0px;
}

.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;
}

.single-unmatched-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: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .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: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .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: 190px;
}

.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(../image/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: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .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: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .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: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .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(../image/services-bg.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(../image/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(../image/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(../image/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(../image/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;
}