/*Global css*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");

body {
    background-color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
}

a,
button {
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

a {
    text-decoration: none;
    color: #a4a5c0;
}

a:hover {
    text-decoration: none;
    outline: 0;
    color: #ffd201;
}

a,
img {
    border: none;
    outline: none;
}

img {
    max-width: 100%;
    height: auto;
    display: inline-block;
    vertical-align: middle;
}

label {
    font-weight: 400;
    color: #b8b8b9;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Bebas Neue", sans-serif;
    color: #0a1610;
    margin: 0 0 10px;
}

h1 {
    font-size: 98px;
}

h2 {
    font-size: 42px;
}

h3 {
    font-size: 38px;
}

h4 {
    font-size: 30px;
}

h5 {
    font-size: 24px;
}

h6 {
    font-size: 18px;
}

ul,
ol {
    padding: 0;
    margin: 0;
    list-style: none;
}

p {
    display: block;
    margin: 0 0 16px;
    color: #6c6c6c;
    font-weight: 300;
}

p:last-child {
    margin: 0;
}

.btn-custom {
    font-family: "Poppins", sans-serif;
    padding: 0px 20px;
    background-color: #62d1c1;
    border: solid 1px transparent;
    border-radius: 5px;
    height: 50px;
    line-height: 50px;
    color: #fff;
    outline: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
}

.btn-custom:hover {
    color: #fff;
    background-color: #012169;
    border-color: #012169;
}

.btn-custom-blue {
    background-color: #012169;
}

.btn-custom-blue:hover {
    background-color: #62d1c1;
    border-color: #62d1c1;
    color: #091b66;
}

.btn-custom-blue i {
    margin-left: 10px;
}

.outline-btn {
    background-color: transparent;
    border-color: #315a43;
    color: #315a43;
}

.outline-btn:hover {
    background-color: #fff;
    color: #000;
}

.dark-btn {
    background-color: #315a43;
    color: #fff;
}

.small-btn {
    height: 32px;
    line-height: 30px;
    font-size: 14px;
}

button:focus {
    outline: none;
}

.form-group {
    margin-bottom: 30px;
}

.form-control {
    height: 48px;
    line-height: 48px;
    font-size: 16px;
    color: #777976;
    background: #ffffff;
    border-radius: 0;
    border: solid 1px #c6c6c6;
    outline: none;
    padding: 0px 16px;
}

.form-control:focus {
    color: #b8b8b9;
    background-color: #ffffff;
    outline: 0;
    box-shadow: none;
    outline: none;
    border-color: #315a43;
    border-width: 2px;
}

.form-control::-webkit-input-placeholder {
    color: #777976;
}

.form-control:-ms-input-placeholder {
    color: #777976;
}

.form-control::placeholder {
    color: #777976;
}

select.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 0 16px;
    height: 48px !important;
    line-height: 45px;
    background: #ffffff url(../images/dropdown-arrow.svg) no-repeat center right 16px;
}

/***CONTAINER***/
.container {
    width: 100%;
    max-width: 1470px;
    position: relative;
}

/***CONTAINER END***/

/***PADDING***/
.padding-top-10 {
    padding-top: 10px;
}

.padding-top-20 {
    padding-top: 20px;
}

.padding-top-30 {
    padding-top: 30px;
}

.padding-top-60 {
    padding-top: 60px;
}

.padding-top-100 {
    padding-top: 100px;
}

.padding-top-130 {
    padding-top: 130px;
}

.padding-bottom-10 {
    padding-bottom: 10px;
}

.padding-bottom-20 {
    padding-bottom: 20px;
}

.padding-bottom-30 {
    padding-bottom: 30px;
}

.padding-bottom-60 {
    padding-bottom: 60px;
}

.padding-bottom-100 {
    padding-bottom: 100px;
}

.padding-bottom-130 {
    padding-bottom: 130px;
}

.padding-top-bottom-40 {
    padding-top: 40px;
    padding-bottom: 40px;
}

.padding-top-bottom-60 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.padding-top-bottom-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.padding-top-bottom-130 {
    padding-top: 130px;
    padding-bottom: 130px;
}

/***PADDING END***/

/*****heading******/
.headingBlock h6 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}

.headingBlockSpan {
    display: inline-block;
    font-size: 16px;
    padding-bottom: 10px;
    position: relative;
    text-transform: uppercase;
}

.headingBlockSpan:after {
    position: absolute;
    right: -110px;
    top: 10px;
    width: 100px;
    height: 3px;
    background-color: #6bb92b;
    content: "";
}

/*****heading end******/

/**checkBox**/
.customcheckBox {
    padding-left: 30px;
    position: relative;
    margin: 0;
    color: #7b7b7b;
}

.customcheckBox a {
    color: #fff;
    text-decoration: underline;
}

.customcheckBox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmarkhd {
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border-radius: 0;
    border: 1px solid #7b7b7b;
}

.customcheckBox input:checked~.checkmarkhd {
    background-color: #62d1c1;
    border-color: #62d1c1;
}

.checkmarkhd:after {
    content: "";
    position: absolute;
    display: none;
}

.customcheckBox input:checked~.checkmarkhd::after {
    display: block;
}

.customcheckBox .checkmarkhd::after {
    left: 6px;
    top: 2px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/**checkBox END**/

/**header**/
.header {
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 20px 0;
}

.logo img {
    display: block;
    transition: width 0.3s ease-in-out;
    width: 80%;
}

.navigation ul {
    display: flex;
    align-items: center;
}

.navigation ul li {
    margin-right: 55px;
    text-transform: uppercase;
}

.navigation ul li a {
    color: #0a1610;
    position: relative;
}

.navigation ul li a:after {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: #62d1c1;
    height: 2px;
    content: "";
    transition: all 0.3s ease;
}

.navigation ul li a:hover:after {
    width: 100%;
}

.navigation ul li a:hover {
    color: #62d1c1;
}

/**header End**/

/***bannerBlock***/
.bannerBlock {
    background: url(../images/banner-bg.jpg) no-repeat center bottom;
    background-size: cover;
    padding-top: 150px;
}

.bannerCaption {
    padding-top: 115px;
}

.bannerCaptionHeading {
    font-size: 98px;
    font-family: "Bebas Neue", sans-serif;
    line-height: 1;
}

.bannerCaptionHeading i {
    display: block;
}

.heartIconHeading {
    margin-bottom: 15px;
}

.heartIconHeading i {
    margin-top: -10px;
    margin-left: 10px;
}

.bannerCaptionHeadingBg {
    background-color: rgba(115, 190, 57, 0.1);
    border-radius: 10px;
    padding: 8px 20px 0;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
}

.bannerCaptionHeadingBg i {
    display: block;
    margin-right: 10px;
}

.clientUsd {
    margin-left: 15px;
    margin-right: 20px;
    margin-top: -6px;
}

.clientUsd li {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    overflow: hidden;
    border: solid 1px #0f0f10;
    margin-left: -15px;
}

.clientUsd li img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.careLine {
    display: block;
    font-size: 18px;
    color: #0a1610;
    font-weight: 300;
    padding-top: 20px;
    padding-bottom: 40px;
}

.bannnerCallInfo .btn-custom {
    margin-right: 20px;
}

.callCard {
    display: flex;
    align-items: center;
}

.callCard i {
    width: 60px;
    height: 60px;
    background-color: #62d1c1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
}

.callCard span {
    display: block;
    font-size: 24px;
    font-weight: 600;
    color: #0a1610;
}

.callCard span a {
    color: #0a1610;
}

.callCard span small {
    display: block;
    font-size: 16px;
    font-weight: 300;
    color: #0a1610;
}

.bannerBlockImg {
    margin-right: -210px;
    margin-left: -110px;
}

.bannerBlockImg img {
    display: block;
}

/***bannerBlock End***/

/***mdServiceBlock***/
.mdServiceBlock {
    margin-top: -80px;
}

.mdServiceBlock .container {
    max-width: 1200px;
}

.mdServiceCard {
    padding: 40px;
    background: #fff url(../images/img4.png) no-repeat left bottom;
    cursor: pointer;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.mdServiceCard:hover {
    background: #012169 url(../images/img5.png) no-repeat left bottom;
}

.mdServiceCard:before {
    transition: all 0.3s ease;
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    height: 61%;
    content: "";
    border-top: solid 1px #012169;
    border-left: solid 1px #012169;
    border-right: solid 1px #012169;
    opacity: 0;
}

.mdServiceCard:hover:before {
    opacity: 1;
}

.mdServiceCard h4 {
    margin-bottom: 0;
    transition: all 0.3s ease;
}

.mdServiceCard:hover h4 {
    color: #fff;
}

.mdServiceCard i {
    display: block;
}

.mdServiceCard i img {
    display: block;
    transition: all 0.3s ease;
}

.mdServiceCard:hover i img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

/***mdServiceBlock End***/

/****wellnessBlock****/
.wellnessBlock {
    padding-top: 90px;
    padding-bottom: 110px;
    position: relative;
}

.wellnessBlock:before {
    background: url(../images/img6.png) no-repeat top left;
    position: absolute;
    width: 372px;
    height: 422px;
    content: "";
    left: 0;
    top: -80px;
    z-index: -1;
}

.wellnessBlockContent {
    max-width: 690px;
}

.wellnessBlockContent p {
    font-weight: 300;
    line-height: 30px;
    margin-bottom: 25px;
    color: #2a2a2a;
}

.wellnessBlockContent ul {
    padding-top: 30px;
}

.wellnessBlockContent ul li {
    font-size: 16px;
    position: relative;
    padding-left: 52px;
    color: #0a1610;
    font-weight: 300;
    margin-bottom: 30px;
}

.wellnessBlockContent ul li:last-child {
    margin-bottom: 0;
}

.wellnessBlockContent ul li:after {
    position: absolute;
    width: 42px;
    height: 42px;
    left: 0;
    top: -10px;
    background: url(../images/check-icon.png) no-repeat;
    content: "";
}

/****wellnessBlock End****/

/***situationBlock***/
.situationBlock {
    background: url(../images/situation-bg.jpg) no-repeat center center;
    padding-top: 130px;
    padding-bottom: 130px;
    margin-bottom: 200px;
    background-size: cover;
}

.situationBlock .headingBlockSpan {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    padding-bottom: 20px;
}

.situationBlock .headingBlockSpan:before {
    background-color: #fff;
    width: 40px;
    left: -50px;
    height: 1px;
    top: 14px;
    content: "";
    position: absolute;
}

.situationBlock .headingBlockSpan:after {
    background-color: #fff;
    width: 40px;
    right: -50px;
    height: 1px;
    top: 14px;
}

.situationBlock .headingBlock h2 {
    color: #fff;
}

.situationBlockInner {
    max-width: 1170px;
    margin: 50px auto -270px;
}

.situationCardInput {
    height: 100%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.situationCard {
    background-color: #62d1c1;
    width: 50%;
    flex: 0 0 50%;
    padding: 30px;
    padding-top: 40px;
    padding-bottom: 20px;
}

.situationCardBlue {
    background-color: #012169;
}

.situationIcon {
    margin-bottom: 25px;
    display: block;
}

.situationCard span {
    display: block;
    color: #fff;
    font-family: "Bebas Neue", sans-serif;
    font-size: 26px;
    border-bottom: solid 1px rgba(255, 255, 255, 0.2);
    line-height: 1.2;
    padding-bottom: 8px;
    margin-bottom: 10px;
}

.readLink {
    display: flex;
    align-items: center;
    color: #fff;
    font-family: "Bebas Neue", sans-serif;
    font-size: 20px;
}

.readLink i {
    margin-left: 10px;
}

.engageCard {
    background: #000;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    height: 100%;
}

.engageCard img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.engageCardInfo {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 50%;
    padding-right: 20px;
}

.engageCardInfo span {
    display: block;
    color: #fff;
    font-family: "Bebas Neue", sans-serif;
    font-size: 26px;
}

.engageCardInfo p {
    display: block;
    color: #fff;
    font-size: 16px;
}

/***situationBlock End***/

/***clentLogosBlock***/

/*.clentLogoSlider {--slider-inner-width:2500px;--slider-speed:80s;transform: translate3d(0, 0, 0);animation: scroll linear infinite var(--slider-speed);width: calc(2 * var(--slider-inner-width));transition: animation-play-state ease 0.3s;display: flex;align-items: center;list-style: none;margin: 0 0 30px;}
.clentLogoSlider li{flex-grow: 1;display: flex; align-items: center;justify-content: center;opacity:0.5;}
@keyframes scroll {
0% {transform: translateX(-5%);	}
100% {transform: translateX(calc((0px - var(--slider-inner-width)) - 5%))}
}*/

.clentLogosBlock {
    overflow: hidden;
    padding-bottom: 30px;
}

.clentLogoSlider {
    animation: clentLogosSlider 30s linear infinite;
    display: flex;
    align-items: center;
    margin: 0 0 30px;
}

.clentLogoSlider li {
    max-width: 12.5%;
    flex: 0 0 12.5%;
    text-align: center;
}

.clentLogoImg {
    height: 97px;
    margin: 0 auto;
    opacity: 0.5;
}

.clentLogoImg img {
    height: 100%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.clentLogoSliderOne {
    animation: clentLogosSliderOne 30s linear infinite;
    display: flex;
    align-items: center;
    margin: 0 0 30px;
}

.clentLogoSliderOne li {
    max-width: 12.5%;
    flex: 0 0 12.5%;
    text-align: center;
}

@keyframes clentLogosSlider {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes clentLogosSliderOne {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/***clentLogosBlock End***/

/***ourServiceBlock***/
.ourServiceBlock {
    padding-bottom: 50px;
}

.ourServiceBlockInner {
    border-top: solid 1px #ebebeb;
    padding-top: 100px;
}

.ourServiceCard {
    border: solid 1px #ebebeb;
    border-radius: 10px;
    padding: 30px 35px;
    display: block;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    position: relative;
}

.ourServiceCardTop {
    display: block;
    min-height: 270px;
}

.ourServiceIcon {
    display: block;
    margin-bottom: 20px;
}

.ourServiceIcon img {
    display: block;
}

.ourServiceCardHeading {
    display: block;
    color: #012169;
    font-family: "Bebas Neue", sans-serif;
    font-size: 26px;
    line-height: 1.2;
    padding-bottom: 12px;
}

.ourServiceCard p {
    font-weight: 300;
    color: #6c6c6c;
}

.numberTag {
    display: block;
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 105px;
    line-height: 1;
    color: #0a1610;
    opacity: 0.05;
    font-family: "Bebas Neue", sans-serif;
}

/***ourServiceBlock End***/

/***ourTestimonials***/
.ourTestimonials {
    background-color: #f6f9f9;
    padding-top: 70px;
}

.ourTestimonialsInfo .headingBlock {
    padding-left: 20px;
}

.testimonialsSliderCard {
    background: #fff url(../images/cotIcon.png) no-repeat top 30px right 30px;
    border-radius: 30px;
    overflow: hidden;
    padding: 30px;
}

.testimonialsSlider .owl-item.active .testimonialsSliderCard {
    box-shadow: 0 0 30px rgba(123, 161, 246, 0.15);
}

.userTestImg {
    width: 107px;
    height: 107px;
    display: block;
    overflow: hidden;
    border-radius: 50%;
    margin-bottom: 10px;
}

.userTestImg img {
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.testimonialsSliderCard h5 {
    margin-bottom: 0;
}

.testimonialsSliderCard p {
    color: #2a2a2a;
}

.userTital {
    display: block;
    color: #999999;
    font-weight: 300;
    font-size: 16px;
    padding-bottom: 10px;
}

.ourTestimonialsInfo {
    margin-left: -90px;
    margin-right: -20px;
}

.testimonialsSlider {
    overflow: hidden;
    padding: 30px 20px;
}

.testimonialsSlider .owl-stage-outer {
    overflow: initial;
}

.ourTestimonialsInfo .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 60px;
}

.ourTestimonialsInfo .owl-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #dde3ea !important;
    display: block;
    margin: 0 5px;
}

.ourTestimonialsInfo .owl-dot.active {
    background-color: #012169 !important;
}

/***ourTestimonials End***/

/***footer***/
.footer {
    background-color: #091b66;
    padding-top: 110px;
    /* background-image: url(../images/ftImg.png);
    background-repeat: no-repeat;
    background-position: right bottom; */
}

.ftLogo img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.ftLinks {
    border-left: solid 1px #243477;
    margin-left: 20px;
    padding-left: 80px;
    padding-bottom: 40px;
}

.footer h5 {
    color: #fff;
    margin-bottom: 20px;
}

.ftLinks ul li {
    padding-bottom: 10px;
}

.ftLinks ul li a {
    color: #fff;
}

.ftImg {
    position: absolute;
    right: -60px;
    bottom: 0;
}

.ftImg img {
    display: block;
}

.ftBottomLinks {
    border-top: solid 1px #243477;
    margin-top: 60px;
    padding-top: 40px;
    padding-bottom: 40px;
    /* margin-right: -200px; */
}

.ftBottomLinks ul {
    padding-bottom: 6px;
    flex-wrap: wrap;
}

.ftBottomLinks ul li {
    padding-right: 3px;
    font-weight: 300;
}

.ftBottomLinks ul li a {
    color: #fff;
}

.ftBottomLinks p {
    color: #fff;
}

/***footer end***/

.container2 {
    display: inline-block;
    cursor: pointer;
}

.bar1,
.bar2,
.bar3 {
    width: 25px;
    height: 3px;
    background-color: #012169;
    margin: 5px 0;
    transition: 0.4s;
    border-radius: 10px;
}

.change .bar1 {
    -webkit-transform: rotate(-45deg) translate(-2px, 2px);
    transform: rotate(-45deg) translate(-2px, 2px);
}

.change .bar2 {
    opacity: 0;
}

.change .bar3 {
    -webkit-transform: rotate(45deg) translate(-8px, -8px);
    transform: rotate(45deg) translate(-8px, -8px);
}

.menuImage {
    display: none;
}

/*****About******/
.innerBannerBlock {
    padding: 0;
    background: inherit;
    position: relative;
}

.innerBannerBlock:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    /* background-color: #e6e7f0; */
    opacity: 0;
}

.innerBannerBlock img {
    width: 100%;
    display: block;
}

.innerBannerCaption {
    position: absolute;
    top: 60%;
    right: 0;
    left: 0;
    text-align: center;
    transform: translateY(-50%);
}

.innerBannerCaption h1 {
    margin-bottom: 0;
    line-height: 76px;
}

.breadcrumbBlock {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -22px;
    position: relative;
}

.breadcrumbBlock ul {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 0 30px rgba(123, 161, 246, 0.2);
    padding: 14px 40px;
}

.breadcrumbBlock ul li {
    text-transform: uppercase;
    font-size: 14px;
    margin-right: 32px;
}

.breadcrumbBlock ul li:last-child {
    margin-right: 0;
}

.breadcrumbBlock ul li a {
    position: relative;
    color: #62d1c1;
}

.breadcrumbBlock ul li a:after {
    position: absolute;
    right: -28px;
    top: 9px;
    background-color: #62d1c1;
    width: 25px;
    height: 2px;
    content: "";
}

.careSituation {
    max-width: 860px;
    margin: 0 auto 120px;
    padding: 70px 15px 25px;
    border-bottom: solid 6px #f2f2f2;
}

.careSituation h6 {
    font-weight: 400;
    font-size: 16px;
    color: #0a1610;
    margin-bottom: 20px;
}

.complaintsBlock {
    background: url(../images/complaints-bg.jpg) no-repeat center center;
    background-size: cover;
    margin-top: 220px;
    padding-bottom: 70px;
}

.complaintsBlock .container {
    max-width: 1200px;
}

.complaintsTopBlock {
    background-color: #012169;
    margin-top: 0;
    position: relative;
    top: -110px;
}

.complaintsCard {
    max-width: 33.333%;
    flex: 0 0 33.333%;
    border-right: solid 1px #1b3878;
    padding: 30px;
}

.complaintsCard:last-child {
    border-color: transparent;
}

.complaintsCardHead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-bottom: 20px;
}

.complaintsCardHead:after {
    width: 125px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
}

.complaintsCardHead h4 {
    color: #fff;
    margin-bottom: 15px;
}

.complaintsCardHead h4 span {
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 400;
    padding-bottom: 6px;
}

.complaintsCard p {
    color: #fff;
    line-height: 30px;
}

.socialManagement .headingBlock {
    padding-bottom: 10px;
}

.socialManagement .headingBlock h6 {
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.socialManagement .headingBlock h2 {
    color: #fff;
}

.pTagInfo {
    padding-right: 20px;
    position: relative;
}

.pTagInfoRight {
    padding-left: 20px;
    padding-right: 0;
}

.lineCard {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
    right: -15px;
}

.lineCard:before,
.lineCard:after {
    width: 21px;
    height: 21px;
    content: "";
    background: url(../images/icon12.png) no-repeat;
    position: absolute;
    right: -10px;
}

.lineCard:before {
    top: -5px;
}

.lineCard:after {
    bottom: -5px;
}

.pTagInfo p {
    color: #fff;
    line-height: 30px;
}

.whatWeDoBlock .headingBlock {
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    display: table;
    margin: 0 auto -50px;
    padding: 18px 80px;
    position: relative;
}

.whatWeDoBlock .headingBlock h6 {
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.whatWeDoBlock .headingBlock h2 {
    margin-bottom: 0;
    line-height: 30px;
}

.whatWeService {
    border-radius: 6px;
    overflow: hidden;
}

.whatWeServiceCard {
    background-color: #012169;
    width: 50%;
    flex: 0 0 50%;
    padding: 90px 40px 40px 40px;
}

.whatWeServiceCard i {
    width: 145px;
    flex: 0 0 145px;
    height: 145px;
    margin-right: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: dashed 2px rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.whatWeServiceCardInfo h3 {
    color: #fff;
}

.whatWeServiceCardInfo ul li {
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    position: relative;
    width: 50%;
    padding: 8px 0 8px 50px;
}

.whatWeServiceCardInfo ul li:after {
    width: 27px;
    height: 27px;
    content: "";
    background: url(../images/check-icon1.png) no-repeat;
    position: absolute;
    left: 0;
    top: 8px;
}

.serviceCardGreen {
    background-color: #62d1c1;
}

.countryBlock {
    border-bottom: solid 1px #f2f2f2;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.countryCard {
    width: 50%;
    flex: 0 0 50%;
}

.countryCard i {
    display: block;
    width: 63px;
    flex: 0 0 63px;
    margin-right: 10px;
}

.countryCard i img {
    display: block;
}

.countryCard span {
    display: block;
    font-size: 18px;
}

.wellnessBlockAbout:before {
    left: 330px;
    top: 80px;
}

/*****About End******/

/****servicePageBlock*****/
.servicePageBlock {
    padding: 80px 0;
}

.serviceCard {
    background-color: #fff;
    box-shadow: 0 0 20px rgba(123, 161, 246, 0.2);
    border-radius: 5px;
    overflow: hidden;
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.serviceCardImg {
    height: 270px;
}

.serviceCardImg img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.serviceCardInfo {
    padding: 20px;
}

.serviceCardInfoHeading {
    background-color: #012169;
    border-radius: 5px;
    padding: 10px 12px;
    max-width: 250px;
    margin: -55px 0 25px;
    position: relative;
}

.serviceCardInfoHeading i {
    width: 50px;
    flex: 0 0 50px;
    margin-right: 15px;
}

.serviceCardInfoHeading h5 {
    color: #fff;
    margin-bottom: 0;
    line-height: 24px;
}

/****servicePageBlock End*****/

.gender-ara {
    flex-wrap: wrap;
}

/******Inner Header Block ******/
.innerbannerBlock {
    background-color: #e5e6ef;
    position: relative;
}

/* .pageName {
    background-color: #091b66;
    border-radius: 65px;
    font-size: 65px;
    font-family: "Bebas Neue", sans-serif;
    text-align: center;
    color: #fff;
    max-width: 540px;
    left: 0px;
    right: 0px;
    margin: 0px auto;
    position: absolute;
    bottom: -50px;
    z-index: 1;
} */
.pageName h1 {
    text-align: center;
    left: 0px;
    right: 0px;
    margin: 0px auto;
    position: absolute;
    bottom: -25px;
    z-index: 1;
    width: fit-content;
    display: flex;
    align-items: center;
    background: #091b66;
    border-radius: 50px;
    box-shadow: 0 0 30px rgba(123, 161, 246, 0.2);
    padding: 2px 40px;
    color: #fff;
    font-size: 38px;
    font-family: "Bebas Neue", sans-serif;
}

.dotBg {
    background-image: url(../images/dotbgt.png);
    background-repeat: no-repeat;
    background-position: top left;
    min-height: 400px;
}

.HomeSearchBox {
    background-color: #fff;
    border-radius: 0px 0px 12px 12px;
    border: 1px solid #ebebeb;
    border-top: 0px;
    box-shadow: 0px 7px 21px 1px rgba(9, 27, 102, 0.1);
    padding-top: 35px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 17px;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    align-items: center;
}

/******Inner Header Block End ******/

.searchInput {
    border: 1px solid #ebebeb;
    width: 100%;
    border-radius: 6px;
    min-height: 50px;
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 0px 10px;
}

.searchInput .form-control {
    width: 100%;
    border: 0px;
}

.searchInputIcon {
    flex: 0 0 30px;
    width: 30px;
    margin-right: 10px;
}

.searchInputfld {
    width: 100%;
}

.searchInputfld .form-control {
    padding: 0px;
}

.searchBtnAra {
    width: 180px;
    flex: 0 0 180px;
    margin-left: 15px;
}

.available {
    font-size: 30px;
    color: #091b66;
}

.available span {
    color: #62d1c1;
}

.providerBox {
    background-color: #fff;
    border: 1px solid #ebebeb;
    box-shadow: 0px 0px 17px 1px rgba(9, 27, 102, 0.07);
    border-radius: 6px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.providerBox:hover {
    border: 1px solid #62d1c1;
    /* cursor: pointer; */
}

.providerInfo {
    width: 100%;
    display: flex;
    align-items: center;
}

.providerBtn {
    width: 150px;
    flex: 0 0 150px;
    margin-left: 15px;
}

.providerBtnNew {
    width: 150px;
    flex: 0 0 150px;
    margin-left: 15px;
}

.providerLogo {
    width: 143px;
    flex: 0 0 143px;
    margin-right: 15px;
}

.providerLogo span {
    background-color: #f7f7f7;
    display: block;
    text-align: center;
    width: 135px;
    height: 135px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}

.providerLogo span img {
    width: 94px;
    height: auto;
    object-fit: contain;
}

.providerName {
    color: #091b66;
    font-size: 20px;
}

.providerPrice {
    color: #091b66;
    font-size: 20px;
}

.providerDtl {
    width: 100%;
}

.pagging nav {
    border: 1px solid #ebebeb;
    border-radius: 65px;
    padding: 15px;
    margin: 0px auto 30px auto;
    width: fit-content;
}

.pagging nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagging nav ul li {
    font-size: 16px;
    margin: 0px 7px;
}

.pagging nav ul li {
    border-radius: 100%;
    width: 40px;
    height: 40px;
    display: block;
    text-align: center;
    padding: 8px 0px;
}

.paggingData {
    min-height: 10px;
}

.pagging nav ul li a.active {
    background-color: #1d2b94 !important;
    color: #fff !important;
}

.pagging nav ul li.arrow {
    border-radius: inherit !important;
    width: 40px !important;
    height: 40px !important;
    display: block !important;
    text-align: center !important;
    padding: 8px 0px !important;
}

.pagging nav ul li.arrow:hover {
    background-color: transparent !important;
    color: #1d2b94 !important;
}

.PFModel label {
    font-weight: 400;
    color: #000;
}

.PFModel .form-control {
    height: 48px;
    line-height: 48px;
    font-size: 16px;
    color: #777976;
    background: #ffffff;
    border-radius: 6px;
    border: solid 1px #ebebeb;
    outline: none;
    padding: 0px 8px;
}

.PFModel .form-group {
    margin-bottom: 10px;
}

.PFModel .modal-footer {
    justify-content: center;
    border: 0px solid #000;
}

.PFModel h5 {
    color: #1d2b94;
    font-size: 30px;
}

.otpArea {
    display: flex;
}

.otpArea .form-control {
    margin: 0px 5px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
}

#OtpModal a {
    color: #1d2b94;
    text-decoration: underline;
}

/*
Css by Devloper start
*/
.btn:not(.btn-outline):not(.btn-dashed):not(.btn-bordered):not(.border-hover):not(.border-active):not(.btn-flush):not(.btn-icon):not(.btn-hover-outline) {
    padding: 0px 20px;
}

button.swal2-confirm.btn.fw-bold.btn-light-primary {
    padding: calc(0.775rem + 1px) calc(1.5rem + 1px) !important;
}

.btn-light-primary.btn-check:checked+.btn.btn-light-primary,
.btn-check:active+.btn.btn-light-primary,
.btn.btn-light-primary:focus:not(.btn-active),
.btn.btn-light-primary:hover:not(.btn-active),
.btn.btn-light-primary:active:not(.btn-active),
.btn.btn-light-primary.active,
.btn.btn-light-primary.show,
.show>.btn.btn-light-primary {
    background-color: #62d1c1 !important;
}

/*
Css by Devloper end
*/

.small-container {
    max-width: 1024px;
    margin: 0px auto;
}

.HomeSearchBox td {
    text-align: center;
}

.HomeSearchBox td:last-child {
    max-width: 125px;
    text-align: start;
}

.HomeSearchBox .btn-view-details,
.HomeSearchBox .btn-view-website {
    width: 100px;
}

.cqc-registration-label-value-css {
    padding-left: 0px !important;
}

/* Header Scroll*/

.fixed {
    background-color: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    box-shadow: 0px 2px 29px 1px rgba(0, 0, 0, 0.17);
    padding: 6px 0 9px 0;

}

.fixed .logo {
    width: 200px;
}

.fixed .logo img {
    width: 100%;
}