@font-face {
  font-family: 'Myriad Pro';
  src: url('fonts/MyriadPro-Bold.woff2') format('woff2'),
      url('fonts/ MyriadPro-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Myriad Pro';
  src: url('fonts/MyriadPro-Cond.woff2') format('woff2'),
      url('fonts/MyriadPro-Cond.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Myriad Pro';
  src: url('fonts/MyriadPro-BoldCond.woff2') format('woff2'),
      url('fonts/MyriadPro-BoldCond.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Myriad Pro';
  src: url('fonts/MyriadPro-BoldCondIt.woff2') format('woff2'),
      url('fonts/MyriadPro-BoldCondIt.woff') format('woff');
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Myriad Pro';
  src: url('fonts/MyriadPro-BoldIt.woff2') format('woff2'),
      url('fonts/MyriadPro-BoldIt.woff') format('woff');
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Myriad Pro';
  src: url('fonts/MyriadPro-Regular.woff2') format('woff2'),
      url('fonts/MyriadPro-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Myriad Pro';
  src: url('fonts/MyriadPro-Semibold.woff2') format('woff2'),
      url('fonts/MyriadPro-Semibold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Myriad Pro';
  src: url('fonts/MyriadPro-CondIt.woff2') format('woff2'),
      url('fonts/MyriadPro-CondIt.woff') format('woff');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Myriad Pro';
  src: url('fonts/MyriadPro-Light.woff2') format('woff2'),
      url('fonts/MyriadPro-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Myriad Pro';
  src: url('fonts/MyriadPro-SemiboldIt.woff2') format('woff2'),
      url('fonts/MyriadPro-SemiboldIt.woff') format('woff');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

body{
    background: #fff;
}

html {
  overflow-x: hidden;
  
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --white: #fff;
  --black: #000;
  --orange: #ffa200;
  --yellow: #fdd711;
  --blue: #1b6edd;
  --light-yellow: #f8f5e1;
  --dark-blue:#06295c;
}
p{
  font-size: 18px;
}
.common-bg {
  background-color: #f2f2f3;
}

.common-padd {
  padding: 80px 0px;
}

.banner {
  position: relative;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.banner::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.banner-content {
  padding-top: 100px;
}


.banner-content .banner-text {
  text-align: center;
  margin-top: 50px;
}

.banner-content .banner-text h1 {
  font-size: 90px;
  color: var(--white);
  font-weight: bold;
}

.banner-content .banner-text p {
  font-size: 40px;
  font-weight: bold;
  color: var(--white);
}

.masurse {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 180px;
}

.masurse .img-area {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.masurse .img-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.masurse .text-area h2 {
  color: var(--white);
  font-size: 34px;
  margin-bottom: 0px;
}

.masurse .text-area p {
  color: var(--white);
  font-size: 20px;
}

.about-sec .page-content {
  padding: 50px 0px;
}

.about-sec .page-content h2 {
  font-weight: bold;
}

.about-sec .page-content p {
  font-size: 20px;
}

.common-heading h2 {
  font-size: 50px;
  font-weight: bold;
}

.common-heading h2 span {
  color: var(--orange);
}

.common-heading p {
  font-size: 24px;
}

.full-with-img {
  width: 100%;
  height: auto;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  margin-top: 50px;
}
.full-with-img img{
  width: 100%;
  height: auto;
  overflow: hidden;
}
.challenges-box {
  margin: 30px 0px;
}

.challenges-box .title {
  font-size: 32px;
  color: var(--black);
  font-weight: 600;
  margin-bottom: 20px;
}

.challenges-box p {
  font-size: 20px;
  color: var(--black);
  font-weight: 500;
}

.challenges-box img {
  width: 100%;
  height: 360px;
  border-radius: 20px;
  margin-top: 30px;
  object-fit: cover;
}

.features-esc {
  position: relative;
  width: 100%;
  height: auto;
  background-color: var(--black);
  background-repeat: no-repeat;
  background-size: cover;
}

.features-esc::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.feature-wrepper {
  margin-top: 50px;
}

.common-heading.common-heading-white h2 {
  color: var(--white);
}

.feature-wrepper .feature-card {
  border: 2px solid var(--orange);
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 50px;
}

.feature-card.white-border {
  border: 2px solid var(--white);
  margin-top: 80px;
}

.feature-wrepper .feature-card .title {
  font-size: 30px;
  color: var(--orange);
  font-weight: 600;
  text-align: center;
}

.feature-wrepper .feature-card p {
  font-size: 24px;
  color: var(--white);
  font-weight: 400;
  text-align: center;
}

.Technology-Stack-slider-box {
  margin-top: 50px;
}

.Technology-Stack-slider-box .item {
  text-align: center;
  border-right: 1px solid #ccc;
}

.Technology-Stack-slider-box .item h4 {
  text-transform: uppercase;
}

.Technology-Stack-slider-box .item img {
  width: 100px;
  height: auto;
  margin: 0 auto;
}

.mobile-box {
  margin-top: 100px;
  width: 100%;
  height: auto;
}
.mobile-box img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.our-solution-sec {
  position: relative;
  z-index: 1;
}

.our-solution-sec::before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  width: 100%;
  height: 35%;
  background-color: var(--white);
  z-index: -1;
}

.conclution-box {
  width: 100%;
  height: auto;
  background-color: var(--black);
  padding: 50px;
  text-align: center;
  border-radius: 30px;
}

.conclution-box h2 {
  font-size: 50px;
  font-weight: bold;
  color: var(--yellow);
}

.conclution-box p {
  color: var(--white);
  font-size: 20px;
}

.conclution-box .qto i {
  font-size: 50px;
  color: var(--yellow);
}

.copy-right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0px;
}

.copy-right .item p {
  margin-bottom: 0px;
  font-size: 18px;
  font-weight: 500;
  color: var(--black);
}

/* =================rent hub page css======================= */
.brochure-header {
  position: absolute;
  padding: 20px;
}

.brochure-header .logo-header {
  position: relative;
  width: 150px;
  height: auto;
}

.brochure-header .logo-header img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.banner-img {
  width: 100%;
  height: 100vh;
}

.banner-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.renthub-banner .common-heading {
  margin-left: 10%;
  margin-top: -70px;
}

.renthub-banner .common-heading p {
  max-width: 800px;
}

.renthub-banner {
  position: relative;
}

.renthub-banner::before {
  position: absolute;
  content: '';
  left: 15%;
  top: 35%;
  width: 240px;
  height: 500px;
  background-image: url(../images-case-study/line.png);
  background-repeat: no-repeat;
  background-size: 100%;
}

.partner-wrepper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
  border-radius: 30px;
  max-width: 85%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  background-color: #fff;
}

.partner-wrepper .item {
  padding: 20px;
}

.partner-wrepper .item img {
  width: 230px;
}

.partner-wrepper .item:not(:last-child) {
  border-right: 1px solid #ccc;
}

.project-overview .project-box {
  border: 2px solid var(--black);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  margin-bottom: 30px;
}

.project-overview .project-box h4 {
  font-weight: 600;
  margin-bottom: 20px;
}

.project-overview .project-box p {
  font-size: 18px;
}

.project-box-wrepper .col-lg-6:last-child {
  margin-top: 100px;
}

.project-overview .common-heading {
  text-align: right;
}

.project-overview .common-heading img {
  width: 100%;
  height: auto;
}

.partner-logo {
  position: relative;
}

.partner-logo::after {
  position: absolute;
  content: '';
  right: 18%;
  top: 47%;
  width: 190px;
  height: 390px;
  background-image: url(../images-case-study/line2.png);
  background-repeat: no-repeat;
  background-size: 100%;
}

.business-chalenges {
  position: relative;
}

.business-chalenges::before {
  position: absolute;
  content: '';
  left: -120px;
  top: 0;
  width: 720px;
  height: 720px;
  background-image: url(../images-case-study/circul.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.business-chalenges .man-with-car {
  width: 100%;
  height: auto;
}

.business-chalenges .man-with-car img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business-chalenges .common-heading p {
  font-size: 20px;
}

.language-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
}

.language-logo .item {
  width: 100px;
  height: 100px;
  padding: 20px;
}

.language-logo .item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.solution-sec-wrepper {
  position: relative;
  margin-top: 200px;
}

.solution-sec-wrepper .img-box {
  width: 100%;
  height: 350px;
  background-color: var(--white);
  padding: 5px;
  box-shadow: 0 0 15px #ccc;
  overflow: hidden;
}

.solution-sec-wrepper .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sub-heading {
  padding: 0px 0px 0px 30px;
}

.sub-heading span {
  color: var(--yellow);
}

.sub-heading h2 {
  color: var(--black);
  font-size: 36px;
}

.sub-heading p {
  color: var(--black);
  font-size: 20px;
}

.sub-liner {
  position: relative;
}

 .se-solutions-wrepper .sub-liner::before {
  position: absolute;
  content: '';
  left: 0px;
  top: 10px;
  width: 3px;
  height: 120px;
  background-color: var(--black);
}

.se-solutions-wrepper .sub-liner::after {
  position: absolute;
  content: '';
  left: -2px;
  top: 30px;
  width: 7px;
  height: 80px;
  background-color: var(--yellow);
} 

.solution-sec-wrepper .row {
  margin-bottom: 40px;
}

.solution-sec-wrepper .row:last-child() {
  padding-top: 200px;
}

.solution-sec-wrepper .row:nth-child(even) {
  flex-direction: row-reverse;
  padding-top: 74px;
}

.solution-sec-wrepper::before {
  position: absolute;
  content: '';
  left: 7%;
  top: -31%;
  width: 77%;
  height: 1960px;
  background-image: url(../images-case-study/line3.png);
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: -1;
}

.client-saying .user {
  width: 100%;
  height: auto;
}

.client-saying .user img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* =====================Dollar Care page css start============================== */
.dollar-care-banner{
  width: 100%;
  height: auto;
}
.dollar-care-banner img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.dollar-care-sec-one {
  position: relative;
}

.dollar-care-sec-one::before {
  position: absolute;
  content: '';
  left: -10%;
  top: -20%;
  width: 200%;
  height: 80%;
  background-color: var(--white);
  transform: rotate(-10deg);
}

.dollar-care-main-heading {
  text-align: center;
}

.dollar-care-main-heading span {
  font-size: 46px;
  color: var(--black);
  font-weight: bold;
}

.dollar-care-main-heading h1 {
  font-size: 92px;
  color: var(--black);
}

.dollar-care-main-heading h1 span {
  color: var(--blue);
  font-weight: bold;
  font-size: 92px;
}

.dollar-care-main-heading p {
  font-size: 36px;
  color: var(--black);
}

.dollar-care-sub-heading h2 {
  font-size: 36px;
  color: var(--black);
}

.dollar-care-sub-heading h2 span {
  font-size: 36px;
  color: var(--blue);
  font-weight: bold;
}

.dollar-care-sub-heading p {
  color: var(--black);
  font-size: 24px;
}

.dollar-care-sec-two .list-right ul {
  list-style: none;
}

.dollar-care-sec-two .list-right ul li {
  position: relative;
  font-size: 20px;
  color: var(--black);
  margin-bottom: 10px;
  padding-left: 50px;
}

.dollar-care-sec-two .list-right ul li::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 40px;
  height: 35px;
  background-image: url(../images-case-study/check.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.doctor-img {
  width: 70%;
  height: auto;
  overflow: hidden;
  margin: 0 auto;
  padding-top: 100px;
}

.doctor-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.dollar-care-sec-two {
  position: relative;
}

.dollar-care-sec-two::before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  width: 100%;
  height: 25%;
  background-color: var(--blue);
}

.dollar-care-sec-three {
  width: 100%;
  height: auto;
  background-color: var(--blue);
}

.common-heading.common-heading-white p {
  color: var(--white);
}

.dollar-care-sec-three .languadge-box {
  width: 100%;
  height: auto;
  text-align: center;
}
.dollar-care-sec-three .languadge-box img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.dollar-care-sec-three h5 {
  width: 100%;
  background-color: var(--white);
  text-align: center;
  padding: 15px 10px;
  font-weight: bold;
  font-size: 28px;
  margin-top: 50px;
}

.list-white {
  margin-top: 50px;
}

.list-white ul li {
  color: var(--white);
  font-size: 24px;
}

.list-white.list-none ul {
  list-style-type: none;
}

.list-white.list-none ul li {
  position: relative;
  padding-right: 20px;
}

.list-white.list-none ul li::before {
  position: absolute;
  content: '';
  right: 0;
  top: 15px;
  width: 9px;
  height: 9px;
  background-color: var(--white);
  border-radius: 50%;
}

.list-white.list-none ul {
  position: relative;
}

.list-white.list-none ul::after {
  position: absolute;
  content: '';
  right: -20px;
  top: 0;
  width: 3px;
  height: 200px;
  background-color: var(--white);
}

.dollar-care-sec-three {
  position: relative;
}

.dollar-care-sec-three::before {
  position: absolute;
  content: '';
  left: -50%;
  bottom: -10%;
  width: 200%;
  height: 80%;
  background-color: var(--blue);
  transform: rotate(-5deg);
}

.dollar-care-sec-four-wrepper {
  margin-top: 50px;
}

.dollar-care-sec-four-wrepper .challenge-para p {
  position: relative;
  font-size: 24px;
  color: var(--black);
  margin-bottom: 50px;
}

.dollar-care-sec-four-wrepper .challenge-para p::after {
  position: absolute;
  content: '';
  left: 0;
  bottom: -15px;
  width: 200px;
  height: 3px;
  background-color: var(--blue);
}

.dollar-care-sec-five .reporting {
  width: 100%;
  height: auto;
  border: 5px solid #1053aa;
  border-radius: 90px;
  padding: 50px 80px;
  margin: 50px 0px;
  box-shadow: -80px 80px 0px 0px var(--blue);
}

.dollar-care-sec-five .reporting h2 {
  font-size: 50px;
  color: var(--blue);
  font-weight: bold;
  margin-bottom: 30px;
}

.dollar-care-sec-five .reporting p {
  font-size: 24px;
  color: var(--black);
}

.dollar-care-footer {
  width: 100%;
  background-color: var(--blue);
}

.dollar-care-footer .copy-right p {
  color: var(--white);
}

.solution-box {
  position: relative;
  width: 100%;
  height: 1000px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-top: 50px;
}

.solution-box .item .number-box {
  width: 100px;
  height: 100px;
  background-color: transparent;
  border-left: 8px solid #88baff;
  border-top: 8px solid #88baff;
  border-right: 8px solid #737373;
  border-bottom: 8px solid #737373;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: #737373;
}

.solution-box .item .content p {
  font-size: 20px;
  color: var(--black);
  max-width: 500px;
}

.solution-box .item {}

.solution-box .item:nth-child(1) {
  position: absolute;
  right: 15%;
}

.solution-box .item:nth-child(2) {
  position: absolute;
  bottom: 65%;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.solution-box .item:nth-child(3) {
  position: absolute;
  right: 0;
  top: 26%;
}

.solution-box .item:nth-child(4) {
  position: absolute;
  bottom: 35%;
  left: 20%;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.solution-box .item:nth-child(5) {
  position: absolute;
  bottom: 8%;
  left: 27%;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.road-way-solution-sec .laptop {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-top: -73px;
  position: relative;
}
.road-way-solution-sec .laptop img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ==========================Secure yug page css start================================ */
.secure-yug-banner {
  width: 100%;
  height: auto;
  background: rgb(248, 245, 225);
  background: linear-gradient(0deg, rgba(248, 245, 225, 1) 0%, rgba(248, 245, 225, 1) 0%, rgba(5, 166, 189, 0) 100%);
}

.brochure-header .logo-header.secureyug-logo {
  width: 340px;
}

.secure-yug-main-heading span {
  font-size: 40px;
  color: var(--black);
}

.secure-yug-banner .banner-wrepper {
  padding: 100px 0px 100px 0px;
}

.secure-yug-main-heading p {
  font-size: 30px;
}

.secure-yug-main-heading h1 {
  font-size: 80px;
  font-weight: bold;
}

.secure-yug-main-heading h1 span {
  color: var(--orange);
  font-size: 90px;
  font-weight: bold;
}

.secure-yug-main-heading h2 {
  font-size: 60px;
  font-weight: bold;
}

.right-wrepper {
  position: relative;
  height: 745px;
  width: calc(100% - -302px);
  border: 2px solid var(--black);
  border-top-left-radius: 450px;
  border-bottom-left-radius: 450px;
  padding: 20px;
}

.right-wrepper::before {
  position: absolute;
  content: '';
  top: 42px;
  left: 180px;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  background-color: var(--orange);
}

.right-wrepper::after {
  position: absolute;
  content: '';
  bottom: -10px;
  left: 470px;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  background-color: var(--black);
}

.secure-yug-banner-img {
  height: 700px;
  overflow: hidden;
  border-top-left-radius: 450px;
  border-bottom-left-radius: 450px;
  width: calc(100% - -20px);
  background-color: #ccc;
}

.secure-yug-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.counter-sec {
  width: 100%;
  height: auto;
  background-color: var(--light-yellow);
}

.count-digit {
  font-size: 60px;
  font-weight: 600;
  color: var(--black);
}

.counter-div {
  display: flex;
  align-items: center;
}

.persint {
  font-size: 60px;
  color: var(--black);
}

.count-title {
  font-size: 20px;
  color: var(--black);
}

.counter-right {
  width: 100%;
  height: auto;
  background-color: var(--white);
  border-radius: 30px;
  border: 5px solid #676763;
  padding: 30px 30px;
  box-shadow: 15px 15px 0px -8px #e0ddcb;
}

.secureyug-challenges {
  width: 100%;
  height: auto;
  background-color: #252525;
  background-repeat: no-repeat;
  background-size: cover;
}

.se-ch-wrepper {
  margin-top: 80px;
}

.secureyug-challenges .secure-ch-box {
  position: relative;
  width: 100%;
  height: auto;
  border: 3px solid var(--yellow);
  border-radius: 40px;
  padding: 30px;
}

.secureyug-challenges .secure-ch-box::before {
  position: absolute;
  content: '';
  left: 130px;
  top: -10px;
  width: 200px;
  height: 20px;
  background-color: #252525;
}

.secureyug-challenges .secure-ch-box::after {
  position: absolute;
  content: '';
  right: 100px;
  bottom: -10px;
  width: 200px;
  height: 20px;
  background-color: #252525;
}

.secureyug-challenges .secure-ch-box p {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 0px;
}

.secureyug-challenges .secure-img-box {
  width: 100%;
  height: 350px;
  overflow: hidden;
  border-radius: 40px;
}

.secureyug-challenges .secure-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.se-sub-heading h2 {
  font-size: 60px;
  color: var(--black);
  font-weight: bold;
}

.se-sub-heading h2 span {
  font-size: 60px;
  color: var(--yellow);
  font-weight: bold;
}

.se-technology-wrepper {
  margin-top: 80px;
}

.stack-logo {
  width: 100%;
  height: 100px;
  border: 2px solid #ccc;
  border-radius: 20px;
  overflow: hidden;
  background-color: var(--white);
  box-shadow: 0 0 10px #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  margin-bottom: 25px;
}

.stack-logo img {
  width: 65%;
}

.impact-list ul li {
  position: relative;
  font-size: 20px;
  color: var(--black);
  list-style: none;
  padding-left: 20px;
  margin-bottom: 10px;
}

.impact-list ul li::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 10px;
  height: 10px;
  background-color: var(--yellow);
  border-radius: 40px;
  margin-top: 11px;
}

.duration-sec {
  margin-top: 80px;
}

.duration-card {
  width: 100%;
  height: 100%;
  background-color: #efe9e9;
  padding: 30px;
}

.duration-card .img-box {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
}

.duration-card .img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.duration-card .content-box p {
  margin-bottom: 10px;
  color: var(--black);
  font-size: 20px;
}

.duration-card .content-box h4 {
  color: var(--black);
}

.truckimg {
  width: 100%;
  height: auto;
}

.truckimg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.se-solutions-wrepper .sub-heading.sub-liner {
  margin-bottom: 50px;
}

.project-manager {
  width: 100%;
  height: auto;
  background-color: var(--yellow);
}

.manager-div .img-box {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
}

.manager-div {
  text-align: center;
}

.manager-div .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.manager-div .content-box .name {
  font-size: 36px;
  font-weight: 600;
}

.manager-div .content-box .designation {
  font-size: 24px;
  color: var(--black);
}

.manager-div .content-box .description {
  font-size: 20px;
  color: var(--black);
  margin-top: 50px;
}

.manager-div .content-box .quote-icon i {
  font-size: 50px;
  margin-top: 50px;
}

.secure-footer {
  width: 100%;
  height: auto;
  background-color: var(--black);
}

.secure-footer .copy-right p {
  color: var(--white);
}

.se-solutions-wrepper {
  margin-top: 80px;
}

/* ======================my care pedia page css start=================================  */
.my-care-pedia-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.care-pedia-sec-one{
  position: relative;
  width: 100%;
  height: auto;
  background-color: var(--dark-blue);
}
.care-pedia-sec-one::before{
  position: absolute;
  content: '';
  left: 0;
  top: -50px;
  width: 100%;
  height: 100%;
  background-color: var(--dark-blue);
  z-index: -1;
}
.care-pedia-sec-one .experience span{
  color: var(--white);
  font-size: 24px;
}
.care-pedia-sec-one .experience h2{
  color: var(--white);
  font-size: 36px;
  margin-top: 20px;
}
.care-pedia-sec-one .about-experience p{
  font-size: 20px;
  color: var(--white);
}
.experience{
  position: relative;
  padding-left: 20px;
}
.experience::before {
  position: absolute;
  content: '';
  left: 0px;
  top: 10px;
  width: 1px;
  height: 120px;
  background-color: var(--white);
}
.experience::after {
  position: absolute;
  content: '';
  left: -3px;
  top: 30px;
  width: 7px;
  height: 80px;
  background-color: var(--white);
}
.pain-area .pain-area-card{
  width: 100%;
  height: 100%;
  border: 2px solid #06295c;
  border-radius: 30px;
  padding: 50px 20px;
  text-align: center;
}
.pain-area .pain-area-card h4{
  color: #06295c;
  font-size: 24px;
}
.pain-area .pain-area-card p{
  font-size: 20px;
  color:#06295c;
}
.pain-card-wrepper .col-lg-6{
  margin-bottom: 25px;
}
.pain-area .pain-left-img{
  position: relative;
  width: 116%;
  height: 100%;
}
.pain-area .pain-left-img img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-the-product .my-care-man{
  width: 100%;
  height: auto;
}
.about-the-product .my-care-man img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.about-the-product{
  background-repeat: no-repeat;
  background-size: 45%;
  background-position: center;
}
.my-care-laptop{
  width: 100%;
  height: auto;
}
.my-care-laptop img{
  width: 100%;
  height: 100%;
  object-fit: cover ;
}
.key-features{
  position: relative;
}
.key-features::before{
  position: absolute;
  content: '';
  left: 0;
  top: -96px;
  width: 50%;
  height: 105%;
  background-color: var(--dark-blue);
  z-index: -1;
  border-bottom-right-radius: 200px;
}
.paitien-box{
  width: 100%;
  height: auto;
  background-color: var(--dark-blue);
}
.paition-chat{
  position: relative;
  margin: 30px 0px;
  padding-left: 20px;
}
.paition-chat span{
  color: var(--white);
  font-size: 24px;
  font-weight: 600;
}
.paition-chat::before{
  position: absolute;
  content: '';
  left: 0;
  top: 14px;
  width: 10px;
  height: 10px;
  background-color: var(--white);
  border-radius: 40px;
}
.paition-chat p{
  color: var(--white);
  font-size: 20px;
  line-height: 30px;
}

.key-features::after{
  position: absolute;
  content: '';
  right: 0;
  top: 0;
  width: 60%;
  height: 100%;
  background-color: var(--white);
  box-shadow: 0 0 15px #ccc;
  z-index: -2;
  border-bottom-left-radius: 200px;
}
.paition-right-box{
  position: relative;
  padding: 50px 0px;
}
.paition-right-box .strock-cir{
  position: absolute;
  width: 200px;
  height: 200px;
  top: 90%;
}
.man-right{
  position: absolute;
  right: -82%;
  width: 150%;
  height: 875px;
}
.man-right img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.paition-right-cont{
  position: relative;
  padding-left: 20px;
}
.paition-right-cont::before{
  position: absolute;
  content: '';
  left: 0;
  top: 14px;
  width: 10px;
  height: 10px;
  background-color: var(--dark-blue);
  border-radius: 40px;
}
.paition-right-box span{
  color: var(--black);
  font-size: 24px;
  font-weight: 600;
}
.paition-right-box p{
  color: var(--black);
  font-size: 20px;
  max-width: 255px;
}
.common-text{
  margin: 50px 0px;
}
.common-text h4{
  font-size: 30px;
  color: var(--black);
}
.common-text p{
  font-size: 20px;
  color: var(--black);
}
.common-text .img-box{
  width: 100%;
  height: 350px;
  overflow: hidden;
  border-radius: 30px;
}
.common-text .img-box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ts-card{
  width: 100%;
  height: auto;
  border: 2px solid var(--black);
  padding: 30px 50px;
  border-radius: 30px;
  text-align: center;
}
.ts-card .persent{
  font-size: 70px;
  font-weight: bold;
}
.ts-card .liner{
  width: 2px;
  height: 100px;
  background-color: var(--black);
  margin: 0 auto;
}
.ts-card p{
  font-size: 24px;
  color: var(--black);
  margin-bottom: 0px;
}
.ts-card h4{
  font-size: 30px;
  color: var(--black);
  font-weight: 900;
}
.top-box{
  margin-top: 200px;
}
.top-box-one{
  margin-top: 50px;
}
.bottom-text{
  padding: 50px 20px;
}
.bottom-text h3{
  font-size: 36px;
  color: var(--black);
  font-weight: bold;
}
.bottom-text p{
  font-size: 24px;
  color: var(--black);
  line-height: 30px;
}
.my-care-solution{
  position: relative;
}
.wrepper-my-care .left-img-box{
  width: 100%;
  height: auto;
}
.wrepper-my-care .left-img-box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.my-care-solution::before{
  position: absolute;
  content: '';
  left: 50%;
  top: -8%;
  width: 1000px;
  height: 113%;
  background-image: url(../images-case-study/bbbb.png);
  background-repeat: no-repeat;
  background-size: 90%;
  transform: translate(-50%, 0%);
}
 .wrepper-my-care .sub-heading.sub-liner{
  margin: 100px 0px;
  max-width: 700px;
 }
 .my-care-sl .item{
  width: 100%;
  height: auto;
  background-color: var(--dark-blue);
  border-radius: 30px;
  padding: 50px;
 }
 .my-care-sl .content-box .name,
 .my-care-sl .content-box .designation,
 .my-care-sl .content-box .description,
 .my-care-sl .content-box .quote-icon i{
color: var(--white);
 }

 /* .wrepper-my-care .row .col-lg-12:first-child{
  margin-left: 200px;
  padding-top: 100px;
 }
 .wrepper-my-care .row .col-lg-12:nth-child(2){
  margin-left: 600px;
  padding-top: 160px;
 }
 .wrepper-my-care .row .col-lg-12:nth-child(3){
  margin-left: 200px;
  padding-top: 150px;
 }
 .wrepper-my-care .row .col-lg-12:nth-child(4){
  margin-left: 200px;
  padding-top: 150px;
 }
 .wrepper-my-care .row .col-lg-12:nth-child(5){
  margin-left: 500px;
  padding-top: 50px;
 }
 .wrepper-my-care .row .col-lg-12:nth-child(6){
  margin-left: 200px;
  padding-top: 50px;
 } */
 .my-care-sl{
  margin-top: 130px;
 }
 .wrepper-my-care{
  width: 1000px;
  margin: 0 auto;
 }
 .wrepper-my-care .sub-heading p{
  color: var(--black);
  font-size: 20px;
  line-height: 27px;
 }
 .wrepper-my-care .sub-heading.sub-liner.liner-text-1{
  padding-left: 60px;
 }
 .wrepper-my-care .sub-heading.sub-liner.liner-text-2{
  padding-top: 20px;
 }
 .wrepper-my-care .sub-heading.sub-liner.liner-text-3{
  padding-top: 50px;
  padding-left: 60px;
 }
 .wrepper-my-care .sub-heading.sub-liner.liner-text-4{
  padding-left: 60px;
 }
 .wrepper-my-care .sub-heading.sub-liner.liner-text-5{
  padding-right: 125px;
  margin-top: 70px;
 }
 .wrepper-my-care .sub-heading.sub-liner.liner-text-6{
  padding-left: 60px;
  margin-top: 12px;
 }