
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

:root {a
    --primary: #933ded;
    --dark: #232323;
    --pure: #fff;
    --smoke: whitesmoke;
    --dark-gray: #999;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 100;
}

::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: transparent linear-gradient(270deg, #FFCE29 0%, #F37E2F 29%, #EF6331 100%) 0% 0% no-repeat padding-box;
    border-radius: 10px;
    height: 50px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: transparent linear-gradient(270deg, #FFCE29 0%, #F37E2F 29%, #EF6331 100%) 0% 0% no-repeat padding-box
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navigation {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1005;
    background: #FFF;
    height: 130px;
    box-shadow: 1px 2px 10px #686868;
}

.main-headr {
    padding-bottom: 100px;
}

.pd-0 {
    padding: 0px !important;
}

ul.nav-list {
    display: flex;
    list-style-type: none;
    justify-content: right;
}

ul.nav-list li a {
    margin: 0rem 2.2rem;
    color: #464646;
    font-size: 14px;
    font-weight: 400;
}

ul.nav-list .active a {
    color: #ef6331;
    font-weight: 500;
}

ul.nav-list .active::before {
    background: #ef6331 !important;
    width: 45px !important;
}

.brand {
    /* padding-top: 20px; */
    padding-top: 5px;
    width: 100%;
}

.brand::after {
    content: "";
    height: 130px;
    width: 245px;
    border: 20px solid #fff;
    background-color: #fff;
    transform: skewX(333deg);
    position: absolute;
    z-index: 99;
    top: 0;
    right: -15px;
    margin-left: 28px;
    box-shadow: 10px 0px 8px -9px #0000004f
}

.head-f a {
    font-size: 21px;
}

.brand img {
    width: 255px;
    z-index: 999;
    position: relative;
}

.brand svg path {
    fill: var(--pure);
}

.nav-wrapper ul.nav-list {
    list-style-type: none;
    display: flex;

}

.nav-wrapper ul.nav-list li {
    margin-left: 30px;
    padding: 20px 0;
    position: relative;
}

.nav-wrapper ul.nav-list li a {
    color: var(--pure);
    text-decoration: none;
    letter-spacing: 1px;
    transition: all .5s ease-in-out;
}

.nav-wrapper ul.nav-list li a:hover,
.nav-wrapper ul.nav-list li.active a {
    color: var(--primary);
}

.btn {
    background: var(--primary);
    color: var(--pure);
    outline: none;
    padding: 8px 20px;
    font-size: 14px;
    cursor: pointer;
    letter-spacing: 1px;
    border: 1px solid transparent;
    transition: all .5s ease-in-out;
}

.btn:hover {
    background: transparent;
    border-color: var(--pure);
}

main section.header {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 160px;
}

main section.header h1 {
    font-size: 36px;
    font-weight: 100;
    text-transform: capitalize;
    margin-bottom: 20px;
}

main section.header h4 {
    font-size: 18px;
    font-weight: 400;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

nav ul.dropdown-list {
    list-style-type: none;
    display: block;
    background: var(--smoke);
    padding: 6px 16px;
    position: absolute;
    width: max-content;
    z-index: 9999;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    pointer-events: none;
}

.nav-wrapper ul.dropdown-list li {
    margin-left: 0;
    padding: 5px 0;
}

.nav-wrapper ul.dropdown-list li a {
    color: var(--dark);
}

ul.nav-list li:hover .dropdown-list {
    opacity: 1;
    pointer-events: auto;
    animation: moveUp .5s ease-in-out forwards;
}

@keyframes moveUp {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(20px);
    }
}

.hamburger {
    display: none;
}

.mobile .hamburger {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    cursor: pointer;
    position: fixed;
    top: 0;
    margin-top: 0px;
    right: 0;
    width: 10%;
    overflow: hidden;
}

.l-btn-new {
    width: 190px !important;
    padding: 10px 20px !important;
    font-size: 14px !important;
    color: #fff !important;
}

.l-btn-new a {
    margin: 0px !important;
    color: #fff !important;
}

.l-btn-new::before {
    display: none;
}

.mobile ul.nav-list {
    background: -webkit-linear-gradient(45deg, #434343, #000000);
    background: linear-gradient(45deg, #434343, #00000040);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    flex-direction: column;

    opacity: 0;
    pointer-events: none;
    transition: all .3s ease-in-out;
}

.hamburger,
.brand {
    z-index: 9999;
    text-align: center;
}

.mobile ul.nav-list.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile .hamburger span {
    transform-origin: left;
    transition: all .3s ease-in-out;
}

.mobile ul.nav-list li a {
    font-size: 20px;
}

.mobile ul.dropdown-list {
    position: relative;
    background: transparent;
    text-align: center;
    height: 0;
    overflow-y: hidden;
    transition: opacity 1s ease-in-out;
    padding-top: 0;
}

.mobile .nav-wrapper ul li:hover .dropdown-list {
    height: max-content;
    padding-top: 6px;
}

.mobile ul.nav-list li {
    margin-left: 0;
    margin: 18px 0px;
}

.mob-logo {
    display: none;
}

.mobile .nav-wrapper ul.dropdown-list li a {
    color: var(--dark-gray);
}

.top-bar {
    width: 100%;
    text-align: right;
}

.top-bar ul {
    padding-right: 40px;
    width: 100%;
    background: transparent linear-gradient(270deg, #FFCE29 0%, #F37E2F 29%, #EF6331 100%) 0% 0% no-repeat padding-box;
}

.top-bar li {
    display: inline-block;
    position: relative;
    margin: 0px 5px;
}

.head-f {
    font-weight: bold;
}

.top-bar li img {
    border-radius: 50%;
    width: 35px;
    height: 35px;
    padding: 3px !important;
    margin-left: 0px !important;
    text-align: center;
    margin-right: 5px;
}

.top-bar li a {
    text-decoration: none;
    color: #fff;
}

.top-bar li span {
    position: absolute;
    top: 15px;
    color: #EF6331;
    right: 5px;
    background: #fff;
    width: 16px;
    padding: 0pc;
    height: 16px;
    font-size: 12px;
    border-radius: 50%;
    text-align: center;
}

.top-bar li .cart-i {
    background-color: transparent;
    width: 40px;
    height: 65px;
    border: unset;

}

.nav-list .nav-list2 a:hover {
    color: #EF6331;
    text-decoration: none;
}

.nav-list2 {
    display: flex;
}

.nav-list .nav-list2 li::before {
    position: absolute;
    content: "";
    width: 1%;
    height: 0.99px;
    margin-left: 41px;
    background: #000;
    transition: all 0.4s ease;
}

.nav-list li:hover::before {
    width: 45px;
    background: #EF6331;
}

.nav-list .login-btn::before {
    display: none;
}

.header-btn {
    font-size: 14px;
    color: #fff !important;
    border: none;
    outline: none;
    font-weight: 300;
    padding: 10px 20px;
    background: #ef633100;
    position: relative;

}

.header-btn:before {
    border-width: 0;
    top: 0;
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transform: rotateX(3deg);
    transform: rotateX(-150deg);
}

.header-btn:after {
    border-width: 0;
    bottom: -2px;
    -webkit-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: perspective(1.8rem) rotateX(-9deg);
    transform: perspective(1.8rem) rotateX(-175deg);
}

.header-btn:after,
.header-btn:before {
    content: "";
    position: absolute;
    border-color: inherit;
    border-style: inherit;
    height: 52%;
    width: 100%;
    left: 0;
    z-index: -1;
    background-color: #EF6331;
    border-radius: 0;
}

/* Slider */
.slick-slider {
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-track:before,
.slick-track:after {
    display: table;

    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;

    height: auto;

    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

.banner-btn {
    filter: drop-shadow(-1px 6px 3px rgba(50, 50, 0, 0.5));
    margin-top: 40px;
}

.banner__slider .slick-slide {
    margin: 0px !important;
}

.ban-btn {
    color: #000 !important;
    background: #ffff;
    width: 160px;
    font-size: 13px;
    height: 40px;
    clip-path: polygon(0% 0%, 90% 0, 100% 30%, 100% 100%, 0 100%);
    padding: 0px 8px;
    vertical-align: middle;
    justify-content: center;
    display: flex;
    align-items: center;
    margin-top: 40px;
}

.ban-btn a {
    color: #000;
    display: flex;
}

.ban-btn a {
    color: #000;
    display: flex;
    text-decoration: none;
}

.ban-btn img {
    width: 15px;
    margin-left: 8px;
    margin-top: 3px;
}

/* @media (min-width: 992px) {

    .slider,
    .slide {
        height: 66vh;
    }
} */

.slide {
    position: relative;
    padding: 20px 15px;
}

.slide .slide__img {
    width: 100%;
    height: auto;
    overflow: hidden;
}

/* @media (min-width: 992px) {
    .slide .slide__img {
        margin-top: 0;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        position: relative;
    }
} */

.slide .slide__img img {
    max-width: 100%;
    height: auto;
    opacity: 1 !important;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    transition: all 1s ease;
}

.slide .slide__content {
    position: absolute;
    top: 42.5%;
    left: 48%;
    margin-left: 35px;
    margin-top: 20px;
    transform: translate(-50%, -50%);
    height: 195px;
    width: 205px;
    background: #E2E2E2;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.slide .slide__content.slide__content__left {
    left: 15%;
    transform: translate(-15%, -50%);
}

.slide .slide__content.slide__content__right {
    right: 15%;
    left: auto;
    transform: translate(5%, -50%);
}

.slide .slide__content--headings {
    color: #fff;
}

.slide .slide__content--headings h2 {
    font-size: 4.5rem;
    margin: 10px 0;
}

.slide .slide__content--headings .animated {
    transition: all 0.5s ease;
}

.slide .slide__content--headings .top-title {
    font-family: "Playball", cursive;
    font-size: 2.5rem;
}

.slide .slide__content--headings .title {
    font-size: 3.5rem;
}

.slide .slide__content--headings .button-custom {
    text-decoration: none;
    color: #333;
    padding: 1.2rem 2.5rem;
    font-size: 1.5rem;
}

.slider [data-animation-in] {
    opacity: 0;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    transition: opacity 0.5s ease 0.3s;
}

.slick-dotted .slick-slider {
    margin-bottom: 30px;
}

.slick-dots {
    position: absolute;
    bottom: 25px;
    list-style: none;
    display: block;
    text-align: center;
    padding: 0;
    margin: 0;
    width: 100%;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button {
    border: 0;
    display: block;
    outline: none;
    line-height: 0px;
    font-size: 0px;
    color: transparent;
    padding: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
}

.simple-dots .slick-dots li {
    width: 20px;
    height: 20px;
}

.simple-dots .slick-dots li button {
    border-radius: 50%;
    background-color: white;
    opacity: 0.25;
    width: 20px;
    height: 20px;
}

.simple-dots .slick-dots li button:hover,
.simple-dots .slick-dots li button:focus {
    opacity: 1;
}

.simple-dots .slick-dots li.slick-active button {
    color: white;
    opacity: 0.75;
}

.stick-dots .slick-dots li {
    height: 3px;
    width: 50px;
}

.stick-dots .slick-dots li button {
    position: relative;
    background-color: white;
    opacity: 0.25;
    width: 50px;
    height: 3px;
    padding: 0;
}

.stick-dots .slick-dots li button:hover,
.stick-dots .slick-dots li button:focus {
    opacity: 1;
}

.stick-dots .slick-dots li.slick-active button {
    color: white;
    opacity: 0.75;
}

.stick-dots .slick-dots li.slick-active button:hover,
.stick-dots .slick-dots li.slick-active button:focus {
    opacity: 1;
}

/* /////////// IMAGE ZOOM /////////// */
@-webkit-keyframes zoomInImage {
    from {
        transform: scale3d(1, 1, 1);
    }

    to {
        transform: scale3d(1.1, 1.1, 1.1);
    }
}

@keyframes zoomInImage {
    from {
        transform: scale3d(1, 1, 1);
    }

    to {
        transform: scale3d(1.1, 1.1, 1.1);
    }
}

.zoomInImage {
    -webkit-animation-name: zoomInImage;
    animation-name: zoomInImage;
}

@-webkit-keyframes zoomOutImage {
    from {
        transform: scale3d(1.1, 1.1, 1.1);
    }

    to {
        transform: scale3d(1, 1, 1);
    }
}

@keyframes zoomOutImage {
    from {
        transform: scale3d(1.1, 1.1, 1.1);
    }

    to {
        transform: scale3d(1, 1, 1);
    }
}

.zoomOutImage {
    -webkit-animation-name: zoomOutImage;
    animation-name: zoomOutImage;
}

.slick-nav {
    --active: #fff;
    --border: rgba(255, 255, 255, 0.12);
    width: 44px;
    height: 44px;
    position: absolute;
    cursor: pointer;
    top: calc(50% - 44px);
}

.slick-nav.prev-arrow {
    left: 0%;
    transform: scaleX(-1);
    z-index: 999;

    top: 40%;

}

.slick-nav.next-arrow {
    left: auto;
    right: 0%;

    top: 40%;

}

.slick-nav i {
    display: block;
    position: absolute;
    margin: -10px 0 0 -10px;
    width: 20px;
    height: 20px;
    left: 50%;
    top: 50%;
}

.slick-nav i:before,
.slick-nav i:after {
    content: "";
    width: 10px;
    height: 2px;
    border-radius: 1px;
    position: absolute;
    left: 50%;
    top: 50%;
    background: #2E2E2E;
    margin: -1px 0 0 -5px;
    display: block;
    transform-origin: 9px 50%;
    z-index: 999;
}

.slick-nav i:before {
    transform: rotate(-40deg);
}

.slick-nav i:after {
    transform: rotate(40deg);
}

.slick-nav:before,
.slick-nav:after {
    content: "";
    display: block;
    position: absolute;
    left: 1px;
    right: 1px;
    top: 1px;
    background: #fff;
    box-shadow: 0px 3px 8px #00000047;
    bottom: 1px;
    border-radius: 50%;
}

.slick-nav svg {
    width: 44px;
    height: 44px;
    display: block;
    position: relative;
    z-index: 1;
    color: var(--active);
    stroke-width: 2px;
    stroke-dashoffset: 126;
    stroke-dasharray: 126 126 0;
    transform: rotate(0deg);
}

.slick-nav.animate svg {
    -webkit-animation: stroke 1s ease forwards 0.3s;
    animation: stroke 1s ease forwards 0.3s;
}

.slick-nav.animate i {
    -webkit-animation: arrow 1.6s ease forwards;
    animation: arrow 1.6s ease forwards;
}

.slick-nav.animate i:before {
    -webkit-animation: arrowUp 1.6s ease forwards;
    animation: arrowUp 1.6s ease forwards;
}

.slick-nav.animate i:after {
    -webkit-animation: arrowDown 1.6s ease forwards;
    animation: arrowDown 1.6s ease forwards;
}

/* @-webkit-keyframes stroke {
    52% {
        transform: rotate(-180deg);
        stroke-dashoffset: 0;
   }
    52.1% {
        transform: rotate(-360deg);
        stroke-dashoffset: 0;
   }
    100% {
        transform: rotate(-180deg);
        stroke-dashoffset: 126;
   }
}
@keyframes stroke {
    52% {
        transform: rotate(-180deg);
        stroke-dashoffset: 0;
   }
    52.1% {
        transform: rotate(-360deg);
        stroke-dashoffset: 0;
   }
    100% {
        transform: rotate(-180deg);
        stroke-dashoffset: 126;
   }
}
@-webkit-keyframes arrow {
    0%, 100% {
        transform: translateX(0);
        opacity: 1;
   }
    23% {
        transform: translateX(17px);
        opacity: 1;
   }
    24%, 80% {
        transform: translateX(-22px);
        opacity: 0;
   }
    81% {
        opacity: 1;
        transform: translateX(-22px);
   }
}
@keyframes arrow {
    0%, 100% {
        transform: translateX(0);
        opacity: 1;
   }
    23% {
        transform: translateX(17px);
        opacity: 1;
   }
    24%, 80% {
        transform: translateX(-22px);
        opacity: 0;
   }
    81% {
        opacity: 1;
        transform: translateX(-22px);
   }
}
@-webkit-keyframes arrowUp {
    0%, 100% {
        transform: rotate(-40deg) scaleX(1);
   }
    20%, 80% {
        transform: rotate(0deg) scaleX(0.1);
   }
}
@keyframes arrowUp {
    0%, 100% {
        transform: rotate(-40deg) scaleX(1);
   }
    20%, 80% {
        transform: rotate(0deg) scaleX(0.1);
   }
}
@-webkit-keyframes arrowDown {
    0%, 100% {
        transform: rotate(40deg) scaleX(1);
   }
    20%, 80% {
        transform: rotate(0deg) scaleX(0.1);
   }
}
@keyframes arrowDown {
    0%, 100% {
        transform: rotate(40deg) scaleX(1);
   }
    20%, 80% {
        transform: rotate(0deg) scaleX(0.1);
   }
}
 */
.hax .r-arrow {
    height: 21px !important;
    width: 21px !important;
    margin-top: 12px !important;
}

.haxy a {
    color: #000;
}

.haxy a:hover {
    text-decoration: none;
}

.haxy img {
    margin: auto;
    /* margin-top: 25px; */
    width: 30%;
}

.haxy h1 {
    font-size: 11px;
    text-align: center;
    margin-top: 15px;
    font-weight: 700;
}

.haxy2 {
    left: 58.5% !important;
    top: 25% !important;
}

.haxy3 {
    left: 58.4% !important;
    top: 60.5% !important;
}

.bann-content {
    position: absolute;
    top: 0;
    color: #fff;
    padding: 70px;
}

.bann-content p {
    font-size: 25px;
    margin-bottom: 5px;
}

.bann-content h1 {
    font-size: 40px;
    font-weight: 600;
}

.bann-content h3 {
    font-size: 24px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-weight: 300;
}

.certi {
    display: flex;
    margin-top: 25px;
}

.certi-con {
    margin-left: 20px;
}

.certi-con h2 {
    font-size: 17px;
    font-weight: 300;
    margin-bottom: 2px;
}

.certi-con p {
    font-size: 13px;
    font-weight: 300;
}

.certi img {
    width: 60px;
}

.explorebtnfitness {
    background-color: transparent;
    padding: 0;
    color: #333;
    text-transform: none;
    font-size: 20px;
    font-weight: 500;
    box-shadow: none;
    border-radius: 0;
    display: table;
    margin: 0 auto;
    border: none;
    outline: none;
}

.explorebtnfitness:hover {
    color: #000;
    border: none;
}

/* .pckges-slide {
    margin: auto !important;
    background: #fff !important;
} */
.packages__slider-1 {
    margin-top: 30px;
    background: #F5F5F5;
}

.relate-slide {
    padding: 25px 15px;
}

.text-center {
    text-align: center !important;
    font-size: 15px;
    color: #444242db;
    margin-left: 15px;
}

.explorebtnfitness span {
    display: block;
}

.explorebtnfitness svg {
    display: block;
    width: 16%;
    float: right;
    transition: all .3s ease-in-out;
    margin-top: 3px;
}

.health_pack {
    text-align: center;
}

.health_pack-02 {
    padding-top: 20px;
}

.health_pack p {
    padding-bottom: 15px;
    color: #2d2b2bd4;
    padding-top: 15px;
    width: 80%;
    margin: 0 auto;
    text-align: center;
    font-weight: 100;
}

.first-card {
    position: relative;
    margin: 20px auto;
    width: 100%;
    /* border: 2px solid; */
    /* box-shadow: 5px 3px 10px 0px rgb(106 97 97 / 37%); */
    padding: 15px;
    color: #fff;
    border-radius: 8px;
    background: #fff;
}

.card-test-icon {
    width: 25%;
    margin-bottom: 10px;
}

.card-test-icon img {
    width: 50px;
}

.first-card h1 {
    width: 100%;
    /* border-bottom: 1px solid #44424224; */
    padding: 10px 20px 5px 0px;
    color: #444242;
    font-size: 15px;
    margin-bottom: 15px;
}

.first-card_1 h1 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-height: 27px;
    -webkit-box-orient: vertical;
}

.first-card h3 {
    color: #444242;
    font-size: 12px;
    font-weight: 100;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.first-01 img {
    margin-right: 5px;
    display: inline !important;
}

.valus {
    display: flex;
}

.first-02 {
    display: flex;
    width: 50%;
    text-align: left;
    padding-top: 5px;
}

.first-02 p {
    margin: 0;
    color: #777777;
    font-size: 10px;
    /*margin-top: 2px;*/
    padding-right: 4px;
    text-decoration: line-through;
}

.first-02 span {
    color: #0A701E;
    font-size: 13px;
    margin-top: 1px
}

.first-03 {
    width: 50%;
    text-align: end;
}

.first-03 a {
    font-size: 13px;
    text-decoration: none;
    color: #1326D9;
}

.card-btn {
    display: flex;
    margin-top: 15px;
}

.packages__slider .slide,
.book_organs .slide {
    height: auto !important;
}

.packages__slider .slide {
    height: auto !important;
    margin: 0px;
    width: 100% !important;
}

.health-card {
    width: 90%;
    margin: 20px auto;
    box-shadow: 0px 0px 15px #0000004D;
}

.card-btn-01 {
    width: 50%;
    margin: auto;
}

.card-btn-02 {
    width: 50%;
}

.book_now_btn {
    color: #000 !important;
    background: #EF6331;
    width: 103px;
    font-size: 10px;
    height: 35px;
    clip-path: polygon(0% 0%, 90% 0, 100% 30%, 100% 100%, 0 100%);
    padding: 0px 8px;
    vertical-align: middle;
    justify-content: center;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.book_now_btn a {
    color: #fff;
    display: flex;
    text-decoration: none;
}

.book_now_btn img,
.add-to-cart img {
    width: 12px;
    margin-left: 8px;
    margin-top: 3px;
}

.card-btn-02 {
    width: 50%;

}

.add-to-cart {
    color: #ffffff !important;
    background: #444242;
    width: 103px;
    font-size: 10px;
    height: 35px;
    clip-path: polygon(0% 0%, 90% 0, 100% 30%, 100% 100%, 0 100%);
    padding: 0px 8px;
    vertical-align: middle;
    justify-content: center;
    display: flex;
    align-items: center;
    float: right;
    cursor: pointer;
}

.add-to-cart a {
    color: #fff;
    display: flex;
    text-decoration: none;
}

.top-cart {
    position: absolute;
    top: 0;
    right: 15px;
    width: 50px;
}

.top-cart img {
    width: 100%;
}

.top-cart p {
    position: relative;
    top: -40px;
    left: 11px;
    font-size: 14px;
    color: #fff;
}

.book_organs {
    padding-top: 20px;
    background-color: #F5F5F5;
}

.book_organs .slick-slide {
    margin-left: -20px;
}

.infobox_wrapper {
    border-radius: 5px;
    position: relative;
    z-index: 1;
    transition: inherit;
    padding: 25px 25px 55px;
    transition: all .3s ease-in-out;
    text-align: left;
    box-shadow: 0 0 20px #E1E1E1;
    background: #fff;
    margin: 0px 18px;
    height: 260px;
}

.infobox_icon_container {
    width: 50px;
    height: auto;
    margin-bottom: 25px;
}

.health-img img {
    height: 50px !important;
}

.scale {
    max-width: 100%;
    height: auto;
    width: auto\9;
}

.infobox_wrapper .infobox_content {
    font-size: 12px;
    font-weight: 100;
    color: #464646;
    padding-bottom: 30px;
    width: 100%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    max-height: 70px;
}

h3.infobox_title {
    font-size: 25px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    color: #212529;
}

.book_organs h1,
.book_organs p {
    text-align: center;
}

.sider-orgn {
    margin-left: 120px;

}

.slider2.sider-orgn.slick-slide {
    padding-left: 0px !important;
}

a.infobox_button.button-read-more {
    float: right;
}

.book_organs .slick-dots,
.slider1 .slick-dots,
.h-risk .slick-dots {
    position: unset !important;
    padding-bottom: 25px;

}

.book_organs .slick-dots li button,
.slider1 .slick-dots li button,
.h-risk .slick-dots li button,
.slider4 .slick-dots li button {
    position: unset !important;
    height: 10px;
    width: 10px;
    background: #EF6331;
    margin: auto;
    border-radius: 50%;
}

.book_organs .stick-dots .slick-dots li,
.packages__slider .stick-dots .slick-dots li,
.h-risk .stick-dots .slick-dots li {
    width: 10px;
}

.h-risk-box {
    display: flex;
    border-radius: 7px;
    padding: 10px;
    width: 250px;
    height: 100px;
    margin: auto;
    align-items: center;
}

.h-risk-box h1 {
    color: #464646;
    border-radius: 7px;
    font-size: 16px;
    font-weight: 100;
    margin-left: 25px;
}

.h-risk-box img {
    width: 70px;
    height: 70px;
}

.di-bg {
    background-color: #E5F0FC;
}

.fe-bg {
    background-color: #FEF1DB;
}

.covi-bg {
    background-color: #ffeae8;
}

.vit-bg {
    background-color: #E6F3E9;
}

.thyo-bg {
    background-color: #fffae8;
}

.h-risk-img img {
    width: 100%;
}

.h-risk-sec-box h1 {
    width: 100%;
    color: #2D2B2B;
    font-size: 30px;
    text-align: center;
    padding: 20px 0px 25px 0px;
}

.h-risk-sec-box p {

    font-size: 17px;
    font-weight: 300;
    line-height: 26px;
}

.amins-banner {
    width: 100%;
    /* height: 662px; */
    /* margin-top: 45px; */
    padding: 45px 55px 30px 55px;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../img/machine-img.webp);
}

.amins-banner_1 {
    width: 100%;
    height: 662px;
    margin-top: 45px;
    padding: 45px 55px 30px 55px;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../img/second-banner.svg);
}

.amins-content {
    width: 50%;
    color: #fff;
}

.amins-content h3 {
    font-size: 24px;
    margin: 0;
    font-weight: 300;
    padding: 10px 0 15px 0;
}

.amins-content h1 {
    line-height: 45px;
    font-size: 29px;
}

.amins-content p {
    font-size: 15px;
    font-weight: 100;
    margin-bottom: 35px;
    padding-top: 10px;
}

.superior {
    display: flex;
    margin-top: 40px;
}

.superior img {
    display: block;
    width: 35px;
    position: absolute;
}

.superior-content {
    position: relative;
    margin-left: 50px;
    /* margin-top: 15px; */
}

.superior-content h2 {
    font-size: 15px;
    margin: 0;
    padding-bottom: 4px;
}

.superior p {
    width: 70%;
    margin: 0;
    font-size: 12px;
    line-height: 20px;
    padding: 0;
}

.row-section {
    margin-top: 45px;
}

.sec-head {
    display: flex;
    width: 300px;
}

.sec-head img {
    width: 20px;
    position: absolute;
    top: 4px;
}

.sec-head p {
    margin: 0;
    font-size: 12px;
    padding: 0;
    line-height: 20px;
    margin-left: 30px;
}

.aprl__btns {
    display: flex;
    padding-bottom: 65px;
}

.APRL_section {
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../img/third-banner.webp);
}

.aprl-box-01 {
    padding: 80px 0 0 0;
}

.mission-btn {
    color: #000 !important;
    background: #EF6331;
    width: 130px;
    font-size: 10px;
    height: 40px;
    clip-path: polygon(0% 0%, 90% 0, 100% 30%, 100% 100%, 0 100%);
    padding: 0px 8px;
    vertical-align: middle;
    justify-content: center;
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.mission-btn a {
    color: #fff;
    display: flex;
    margin-top: 3px;
    text-decoration: none;
}

.mission-btn img {
    margin-left: 8px;
    width: 10px;
}

.our_team_btn {
    color: #000 !important;
    background: #ffffff00;
    width: 130px;
    font-size: 10px;
    height: 40px;
    clip-path: polygon(0% 0%, 90% 0, 100% 30%, 100% 100%, 0 100%);
    padding: 0px 8px;
    vertical-align: middle;
    justify-content: center;
    display: flex;
    align-items: center;
    border: 2px solid #000;
    position: relative;
}

.our_team_btn a {
    color: #000;
    display: flex;
    margin-top: 6px;
    text-decoration: none;
}

.aprl-box-01 h3 {
    font-size: 24px;
    color: #444242;
    line-height: 37px;
    font-weight: 400;
    padding-bottom: 15px;
}

.aprl-box-01 p {
    font-size: 15px;
    color: #444242;
    font-weight: 100;
    padding-bottom: 30px;
}

.cntr-care,
.quality-imprmnt {
    display: flex;
    position: relative;
    margin-bottom: 35px;
}

.cntr-care-content h4,
.quality-imprmnt h4 {
    font-size: 13px;
    color: #444242;
}

.cntr-care-content p,
.quality-imprmnt p {
    font-size: 12px;
    color: #444242;
    padding: 0;
    text-align: justify;
}

.cntr-care img {
    position: absolute;
    width: 50px;
}

.quality-imprmnt img {
    position: absolute;
    width: 40px;
}

.cntr-care-content,
.quality-imprmnt-content {
    margin-left: 60px;
}

.cntr-care-content {
    border-bottom: 2px solid #44424259;
}

.book_a_visit_form {
    width: 90%;
    margin: auto;
    padding: 25px;
    margin-top: 75px;
    top: 4748px;
    left: 1070px;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 0px 30px #00000029;
    border-radius: 10px;
    opacity: 1;
    margin-bottom: 35px;
}

.form-heading h5 {
    font-size: 17px;
    color: #444242;
}

.form-heading p {
    color: #929292;
    font-size: 14px;
    font-weight: 300;
    padding-bottom: 15px;
}

.form-row-01 {
    display: flex;
}

.form-items {
    width: 100%;
    margin-bottom: 15px;
}

.form-items input {
    width: 100%;
    padding: 10px 10px;
    font-size: 13px;
    font-weight: 100;
    color: #707070;
    outline: none;
    border: 2px solid #7070705c;
}

.file-input .upload-prc {
    width: 100% !important;
    padding: 10px 10px !important;
    font-size: 13px;
    font-weight: 300 !important;
    color: #707070;
    outline: none;
    border-radius: 0;
    border: 2px solid #7070705c;
}

.upld-cart .cart-prc {
    font-size: 14px;
    font-weight: 400;
    color: #707070 !important;
    outline: none;
    border: 2px solid #7070705c !important;
    width: 97% !important;
    border-radius: 5px !important;
}

.form-items label {
    font-size: 14px;
    color: #444242d6;
    margin-bottom: 0;
}

input.f-left {
    width: 95%;
}

.f-right {
    width: 97% !important;
}

/* #address,
#history {
    width: 100%;
    /* margin-top: 20px;
    height: 120px;
    resize: none;
    font-size: 13px;
    font-weight: 300;
    color: #707070;
    outline: none;
    padding: 10px;
    border: 2px solid #7070705c;
} */

.mission-btn {
    color: #000 !important;
    background: #EF6331;
    width: 130px;
    font-size: 10px;
    height: 40px;
    clip-path: polygon(0% 0%, 90% 0, 100% 30%, 100% 100%, 0 100%);
    padding: 0px 8px;
    vertical-align: middle;
    justify-content: center;
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.book_btn {
    height: 45px;
    width: 97%;
    clip-path: polygon(0% 0%, 97% 0, 100% 48%, 100% 100%, 0 100%);
    font-size: 15px;
    margin: auto;
}

.book_btn img {
    width: 15px;
}

/* .book_now_btn a {
    color: #fff;
    display: flex;
    margin-top: 3px;
    text-decoration: none;
} */
.blog-heading {
    text-align: center;
    padding-bottom: 10px;
    margin: 0;
    font-size: 30px;
    color: #2D2B2B;
    padding-top: 25px;

}

.b-first-cart {
    width: 100%;
    margin: auto;
    padding: 0;
    border: none;
    position: relative;
    border-radius: 10px 10px 0 0;
    border-bottom: 5px solid #9F9F9F;
    box-shadow: 0px 0px 20px #00000029;
}

.card-content {
    padding: 15px 20px;
}

.card-content span {
    font-size: 15px;
}

.card-content h4 {
    font-size: 17px;
    color: #444242;
    padding: 0px;
    border-bottom: 2px solid #9f9f9fda;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-height: 35px;
    -webkit-box-orient: vertical;
}

.card-content p {
    margin: 0;
    font-weight: 300;
    font-size: 15px;
    color: #707070;
    padding: 5px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-height: 25px;
    -webkit-box-orient: vertical;
}

.date-box {
    text-align: center;
    width: 40%;
    display: flex;
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 12px;
}

.left-sec {
    width: 22%;
    padding: 5px;
    padding-top: 7px;
    color: #fff;
    background: #EF6331;
}

.right-sec {
    width: 50%;
    padding: 5px;
    background: #fff;
    color: #444242;
    border: 1px solid #e2e2e2cf;
}

.blogs .slick-dots li {
    height: 3px;
    width: 10px;
}


.testi {
    background-image: url(../img/testibg.webp);
    padding: 60px 0px;
}

.testi-left {
    width: 65%;
    margin: auto;
    position: relative;
}

.tesi-con {
    position: absolute;
    top: 60px;
    left: 100px;
    color: #fff;
}

.tesi-con h2 {
    font-weight: 300;
    font-size: 22px;
}

.tesi-con h1 {
    font-weight: 600;
}

.tesi-con h3 {
    text-align: right;
    font-size: 32px;
}

.testi-right {
    position: relative;
}

.testi-right h1::before {
    content: '';
    background-color: #FF9451;
    position: absolute;
    padding: 5px 7px;
    margin-top: 3px;
    height: 15px;
    left: -20px;
    margin-left: 20px;
}

.testi-right h1 {
    font-size: 18px;
    margin-left: 20px;
}

.testi-right h2 {
    font-size: 30px;
    line-height: 40px;
    margin-top: 25px;
}

.testi hr {
    border-top: 2px solid #00000085;
    opacity: 0.5;
}

.testi-slide {
    background: #FCF4DA;
    padding: 30px 25px;
    font-size: 14px;
    color: #000000;
    font-weight: 400;
    line-height: 25px;

}

.testi-content {
    position: relative;
}

img.quot-l {
    position: absolute;
    width: 40px;
    top: -8px;
}

.testi-slide p {
    padding-left: 48px;

}

img.quot-r {
    right: -5px;
    bottom: -20px;
    top: auto;
}

.testi-person img {
    width: 100px;
    border-radius: 50%;
    height: 100px;
    position: relative;
    z-index: 999;
}

.testi-person::before {
    width: 100px;
    position: absolute;
    height: 100px;
    left: -4px;
    top: -2px;
    border-radius: 50%;
    content: '';
    background: #f77c41;
}

.slider4 .slick-dots li {
    width: 10px;
}

.slider4 .slick-dots {
    bottom: 50px;
}

.testi-person {
    display: flex;
    align-items: center;
    position: relative;
}

.testi-heading {
    padding-left: 10px;
}

.testi-heading h3 {
    font-size: 15px;
    color: #2D2B2B;
    margin: 0;
}

.testi-heading p {
    padding: 0;
    margin: 0;
    font-size: 10px;
    color: #777777;
}

.select-check {
    list-style-type: none;
    display: flex;
    align-items: center;
    margin: 0;
    margin-top: 12px;

}

.select-check li {
    width: 44%;
    display: flex;
    align-items: center;
}

.select-check li input {
    width: 20%;
    height: 15px;
}

.form-items .select-check li label {
    font-size: 12px;
    color: #444242d6;
    margin: 0;
}

.footer {
    content: '';
    position: relative;
    background-image: url(../img/footer-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    /* margin-top: 60px; */
    padding: 20px 0px;
    padding-bottom: 0px;
}

.footer-top {
    width: 80%;
    background: transparent linear-gradient(252deg, #F7952E 0%, #F37E2F 29%, #EF6331 100%) 0% 0% no-repeat padding-box;
    height: 80px;
    margin: auto;
    position: absolute;
    top: -40px;
    left: 10%;
    right: 10%;
}

.footer-top::before {
    content: '';
    position: absolute;
    background-image: url(../img//cornor.svg);
    left: -25px;
    width: 25px;
    height: 58px;
    top: -17px;
    background-repeat: no-repeat;
}

.footer-top::after {
    content: '';
    position: absolute;
    background-image: url(../img//corno-r.svg);
    right: -23px;
    width: 23px;
    height: 40px;
    top: 1px;
    background-repeat: no-repeat;
}

.footer-top ul {
    display: flex;
    height: 80px;
    /* vertical-align:  middle; */
    align-items: center;
}

.footer-top ul li {
    display: inline-block;
    position: relative;
    font-size: 18px;
    font-weight: 300;
    width: 100%;
    margin: auto;
}

.footer-top ul li a {
    color: #fff !important;
    font-size: 20px;
}

.footer-top ul li img {

    border-radius: 50%;
    width: 40px;
    height: 40px;
    padding: 6px !important;
    margin-left: 0px !important;
    text-align: center;
    margin-right: 5px;
}

.f-phone {
    text-align: right;
    font-size: 25px !important;
    font-weight: 600 !important;
}

.footer_col {
    margin-top: 50px;
}

.foot-lable {
    font-weight: 600;
    font-size: 16px !important;
    margin-bottom: 3px;
}

.footer ul li {
    list-style-type: none;
    font-size: 13px;
    line-height: 24px;
    margin-right: 7px
}

.footer ul li a {
    color: #000;
    text-decoration: none;
}

.f-social {
    display: flex;
    margin-left: 11px;
    justify-content: center;
}

.f-social li {
    margin: 0px 2px;
}

.footer-bottom {
    background-color: #000000;
    padding: 15px 0px;
    text-align: center;
    padding-left: 0px;
}



.footer-bottom p {
    margin-bottom: 0px;
    color: #fff;
    font-weight: 300;
    font-size: 13px !important;
}

.footer-bottom span a {
    color: #F8DE09;
}

.float-container {
    position: fixed;
    z-index: 999;
    top: 35%;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    width: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.float-container a {
    z-index: 1000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 220px;
    height: 45px;
    margin-right: -165px;
    margin-bottom: 10px;
    padding: 0px 10px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    color: #000;
    border-color: #46B8DA;
    /* border-radius: 5px 0 0 5px; */
    background: #FFF;
    -webkit-box-shadow: 0 2px 4px #7D7D7D;
    box-shadow: 0 2px 4px #7D7D7D;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    font-family: sans-serif;
    display: none;
    border: 1px dashed #0000007a;
    transition: all .5s ease-in-out;
}

.float-container a:hover {
    margin-right: -50px;
    background: transparent linear-gradient(270deg, #EF6331 0%, #F37E2F 29%, #FFCE29 100%) 0% 0% no-repeat padding-box;
    -webkit-box-shadow: 0 2px 4px #7D7D7D;
    box-shadow: 0 2px 4px #7D7D7D;
    font-size: 12px;
    text-align: center;
    font-weight: 600;
}

.float-container .icon:hover .icon:before {
    margin-right: 0px;
}

/* Icon settings - remove if not needed*/
.float-container .icon:before {
    background-size: contain;
    margin-right: 10px;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.icon.one:before {
    content: "";
    background-image: url(../img/float-home-c.svg);
    height: 35px !important;
    width: 40px !important;
    position: relative;
    z-index: 999;
    display: block;
    background-repeat: no-repeat;
}

.icon.two:before {
    content: "";
    background-image: url(../img/float-mirco-c.svg);
    height: 33px !important;
    width: 40px !important;
    position: relative;
    z-index: 999;
    display: block;
    background-repeat: no-repeat;
}

.icon.three:before {
    content: "";
    background-image: url(../img/float-note-c.svg);
    height: 35px !important;
    width: 40px !important;
    position: relative;
    z-index: 999;
    display: block;
    background-repeat: no-repeat;
}

.icon.fourth:before {
    content: "";
    background-image: url(../img/float-whtsapp-c.svg);
    height: 30px !important;
    width: 40px !important;
    position: relative;
    z-index: 999;
    display: block;
    background-repeat: no-repeat;
}

.flati-icon a {
    display: flex;
}

.our_team_btn ::after {
    content: '';
    position: absolute;
    height: 12px;
    width: 13px;
    transform: perspective(2.8rem) rotateX(3deg);
    background: transparent;
    z-index: 9999;
    top: -1px;
    right: -1px;
    border-bottom: 2px solid black;
    background-color: #000;
}

/* PACKAGE_DETAIL_PAGE_START */
.health-p img {
    display: block;
}

.packge-head {
    background: transparent linear-gradient(270deg, #FFCE29 0%, #F37E2F 29%, #EF6331 100%) 0% 0% no-repeat padding-box;
    height: 40px;
    color: #fff;
    display: flex;
    align-items: center;
    padding-left: 15px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    font-size: 18px;

}

.packge-head p {
    margin: 0px;
}

.packge-b {
    box-shadow: 0px 3px 10px #00000066;
    border-radius: 10px;
    height: max-content;
    width: 90%;
    margin: auto;
}

.packge-b-head {
    background: #EF6331 0% 0% no-repeat padding-box;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 10px 10px;
}

.packge-b-head p {
    margin: 0px;
}

.packag-con {
    display: flex;
    padding: 10px;
    align-items: center;
}

.packag-con p {
    display: inline-block;
    margin-bottom: 0px;
    color: #444242;
    font-size: 15px;
}

.packag-con p span {
    font-size: 12px;
    text-decoration: line-through;
    color: #777777;
}

.packag-hr {
    margin: 5px 20px;
    border-top: 2px solid #00000038;
}

.tot-sec {
    display: flex;
    margin-top: 15px;
    padding: 5px 10px;
    justify-content: space-between;
    padding-bottom: 40px;
}

.tot-sec p {
    margin-bottom: 0px;
    padding: 0px 10px;
}

.tot-sec p span {
    font-size: 13px;
}

.t-price {
    color: #EF6331;
}

.h-detail {
    margin-top: 35px;
    margin-left: auto;
    margin-right: auto;
}

.package-con-01 {
    background: #F6F6F6;
    padding: 10px 20px;
}

.package-con-01 h1 {
    font-size: 17px;
    color: #444242;
}

.package-con-01 p {
    color: #444242;
    font-size: 14px;
}

.h-detail-box02 {
    background: #F6F6F6;
    margin-top: 20px;
    padding: 10px 20px;
    border-radius: 3px;
}

.h-detail-box02 h1 {
    color: #EF6331;
    font-size: 17px;
    margin-bottom: 2px;
}

.h-detail-box02 p {
    color: #444242;
    font-size: 14px;
    margin-bottom: 0px;
}

.h-pkg-th {
    background: transparent linear-gradient(270deg, #FFCE29 0%, #F37E2F 29%, #EF6331 100%) 0% 0% no-repeat padding-box;
    color: #fff;
    text-align: center;
}

.h-pkg-table th,
.h-pkg-table td {
    border-right: 1px solid #707070;
    border-top: 0px;
}

.h-pkg-table th {
    border-bottom: 0px !important;
}

.h-pkg-table th:nth-last-child(1),
.table td:nth-last-child(1) {
    border: unset;
}

.table-striped1 tbody tr:nth-of-type(even) {
    background-color: #F9E8E1;
}

.h-pkg-table td {
    padding: 0.5rem;
    color: #2D2B2B;
    font-size: 14px;
}

.h-pkg-table thead th:nth-last-child(3) {
    border-top-left-radius: 10px;
}

.h-pkg-table thead th:nth-last-child(1) {
    border-top-right-radius: 10px;
}

.h-pkg-table {
    margin-top: 15px;
}

.faq-n {
    content: '';
    background-image: url('../img/faq-bann.png');
    background-size: cover;
    padding: 30px 10px;
}

.packge-head-sec {
    background: transparent linear-gradient(270deg, #FFCE29 0%, #F37E2F 29%, #EF6331 100%) 0% 0% no-repeat padding-box;
    padding: 10px;
    color: #fff;
    display: flex;
    align-items: center;
    padding-left: 15px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    font-size: 18px;

}

.packge-head-sec p {
    margin-bottom: 0px;
}

.faq-n a.nav-link {
    color: #444242;
    border: 1px solid #EF6331;
    background: #fff;
    margin-right: 10px;
    padding: 5px 25px;
    font-size: 14px;
}

.faq-n .nav-pills .nav-link.active {
    background-color: #EF6331;
}

.faq-n-head h1 {
    color: #EF6331;
    font-size: 18px;
    margin-bottom: 18px;
}

#main #faq .card {
    margin-bottom: 12px;
    border: 0;
}

#main #faq .card .card-header {
    border: 0;
    -webkit-box-shadow: 0 0 20px 0 rgba(213, 213, 213, 0.5);
    box-shadow: 0 0 20px 0 rgba(213, 213, 213, 0.5);
    border-radius: 2px;
    padding: 0;
}

#main #faq .card .card-header .btn-header-link {
    color: #fff;
    display: block;
    text-align: left;
    background: #ef6331;
    padding: 8px 10px;
    white-space: normal;
    border: 1px solid #ef6331;
    font-size: 13px;
    letter-spacing: 0px;
}

.faq-n ul li.nav-item {
    margin-bottom: 10px;
}

#main #faq .card .card-header .btn-header-link:after {
    content: "\f107";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    float: right;
}

#main #faq .card .card-header .btn-header-link.collapsed {
    background: #ffffff;
    color: #444242;
}

#main #faq .card .card-header .btn-header-link.collapsed:after {
    content: "\f106";
}

#main #faq .card .collapsing {
    background: #ef6331;
    line-height: 30px;
}

#main #faq .card .collapse {
    border: 0;
}

#main #faq .card .collapse.show {
    background: #ddd7d4;
    line-height: 30px;
    color: #060505;
    font-size: 13px;
    line-height: 20px;
}

.accordion .btn:focus {
    box-shadow: unset;
}

section.health-pkg {
    background-color: #F5F5F5;
    margin-top: 30px;
    padding-bottom: 20px;
}

.health-pkg-head {
    text-align: center;
    padding-top: 20px;
}

.pkg-bann-con {
    width: 43%;
    font-size: 16px !important;
}

.health-pkg-head h1 {
    font-size: 30px;
}

.upld-cart {
    width: 98% !important;
}

/* PACKAGE_DETAIL_PAGE_END */

/* /...... Health Package Start ......../ */
.health-card-1 {
    width: 100%;
    margin: 20px auto;
    /* box-shadow: 1px 0px 12px 3px rgb(106 97 97 / 50%); */
}

.value-hlth-p {
    padding-top: 20px;
}

.view_btn {
    width: 15%;
    height: 60px;
    margin: 20px auto;
    clip-path: polygon(0% 0%, 90% 0, 100% 40%, 100% 100%, 0 100%);
}

.health_01_row {
    padding-bottom: 30px;
    position: relative;
}

.book_now_btn a {
    color: #fff !important;
    display: flex;
    text-decoration: none;
    cursor: pointer;
}

.pkg-search {
    /* text-align: right; */
}

.pkg-search input {
    padding: 10px 15px;
    font-size: 14px;
    width: 82%;
    border-radius: 5px 0px 0px 5px;
    outline: none;
    border: 1px solid #ef6331;
}

.pkg-search input::placeholder {
    color: #808080;
    font-size: 12px;
}

.pkg-search span {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    background: #ef6331;
    padding: 11px 10px;
    margin-left: -5px;
    padding-bottom: 11px;
    position: absolute;
}


.home-services ul.nav,
.tbs ul.nav {
    /* margin: 0 auto; */
    text-align: center;
    width: 380px;
    height: 39px;
    background-color: #fff;
    border: 1px solid #d5d5d5;
    border-radius: 20px;
}

.home-services ul.nav li,
.packages ul.nav li {
    display: inline-flex;
    justify-content: center;
    width: 50%;
    /* line-height: 42px; */
    align-items: center;
    /* text-transform: uppercase; */
    /* border-radius: 20px; */
    /* font-weight: 700; */
    /* letter-spacing: .36px; */
    color: #222935;
}



.home-services ul.nav li a.active,
.packages ul.nav li a.active,
.pkj_slider ul.nav li.active,
.pkj_slider ul.nav li:hover {
    /* background: #38999f; */
    background: #ef6631;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#38999f", endColorstr="#38999f", GradientType=1);
    width: 100%;
    color: #fff;
    border-radius: 20px;
}

.sort_select {
    font-size: 14px !important;
    width: 180px;
    max-width: 180px;
    z-index: 31;
}

/* .form-control {
    border: 1px solid #ddd;
    box-shadow: none;
    color: #000;
    height: 40px;
} */
.rounded-pill {
    border-radius: 50rem !important;
}

.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    color: #444242cc;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.nav-tabs .nav-link {
    border: 0;
    font-size: 15px;
    color: #444242cc;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    transition: all 0.5s ease;
}















/* /...... Health Package End ......../ */

/* /..... Book Test By Organs Start ....../ */
.slider-orgns-1 {
    padding-bottom: 70px;
    margin-bottom: 0;
}

.book_orgn_row {
    margin-top: 20px;
}

.Oargn_box {
    margin: 0;
}

/*..... Mpdal ...... */
.modal-content {
    background-color: #EBF4FF;
    margin: auto;
    text-align: center;
    border: none;
}

.mdl-head-01 {
    display: inline;
    border: none;
    padding: 0;
}

.modal-header img {
    width: 60%;
    margin: auto;
}

.modal-header h1 {
    font-size: 18px;
    color: #1E1C1C;
    font-weight: 600;
    margin: 5px auto;
}

.modal-header p {
    font-size: 12px;
    color: #2D2B2B;
    padding-bottom: 5px;
    margin: 0;
}

.modal-items input {
    width: 85%;
    font-size: 12px;
    margin-top: 20px;
    padding: 8px 10px;
    border-radius: 5px;
    outline: none;
    border: 1px solid #9A9A9A;
}

.submit-btn {
    width: 100%;
    height: 40px;
}

.frt-content {
    font-size: 10px;
    padding-bottom: 20px;
}

.close_btn {
    text-align: right;
    width: 20px !important;
    background: none !important;
    /* margin-right: auto; */
    float: right;
    position: absolute;
    right: 10px;
    top: 10px;
}

.close {
    position: relative;
    width: 25px;
    fill: #EF6331;
    left: 12px;
    right: 0;
}

.modal-body {
    padding: 0;
}

.mt-50 {
    margin-top: 50px;
}

/* /..... Book Test By Organs End ....../ */

/* Contact Us Start */
.cont-banner-con h1::before {
    content: '';
    height: 2px;
    width: 45px;
    background: #fff;
    position: absolute;
    left: 39%;
    top: 50%;
}

.cont-banner-con {
    width: 40%;
    margin: auto;
    font-size: 14px;
}

.contact-us-banner {
    position: relative;
    text-align: center;
    color: #fff;
}

.contact-us-banner img {
    width: 100%;
}

.cont-banner-con h1::after {
    content: '';
    height: 2px;
    width: 45px;
    background: #fff;
    position: absolute;
    right: 39%;
    top: 50%;
}

.cont-banner-con {
    position: absolute;
    top: 35%;
    width: 100%;
}

.cont-banner-con h1 {
    position: relative;
}

.cont-banner-con p {
    width: 35%;
    margin: auto;
    font-size: 14px;
    padding-top: 15px;
}

.adr-con-box {
    width: 100%;
    /* height: 125px; */
    margin: auto;
    display: flex;
    /* padding: 10px; */
    /* background: transparent linear-gradient(270deg, #FFCE29 0%, #F37E2F 29%, #EF6331 100%) 0% 0% no-repeat padding-box; */
    vertical-align: middle;
    align-items: center;
    /* border-radius: 5px; */
}

.content-box {
    color: #fff;
    text-align: center;
}

.content-box h1 {
    font-size: 18px;
}

.content-box p {
    font-size: 12px !important;
    margin: 0;
}

.adr-con-box img {
    width: 50px !important;
    height: 50px;
    padding-right: 20px;
}

.cont-con-box,
.email-con-box {
    width: 100%;
    height: 125px;
    margin: auto;
    text-align: center;
    border-width: 4px;
    border-style: solid;
    background: linear-gradient(white, white) padding-box, linear-gradient(to right, #EF6530, #F37B2F, #FECA29) border-box;
    border-radius: 0.5em;
    border: 4px solid transparent;
    padding: 20px;
    color: black;
}

.cont-con-box h1,
.email-con-box h1 {
    font-size: 20px;
    color: #EF6331;
}

.cont-con-box img,
.email-con-box img {
    width: 25px !important;
    margin-right: 5px;
}

.cont-con-box p,
.email-con-box p {
    font-size: 20px;
}

.cont-con-box span {
    font-size: 20px;
}

.contact-form {
    width: 90%;
    padding: 30px;
    margin-top: 0px;
    border-radius: 10px;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 6px 16px #00000059;
}

.contact-form h1 {
    text-align: center;
    font-size: 25px;
    color: #2D2B2B;
    /* padding-top: 15px; */
}

.con-form-item input {
    width: 100%;
    padding: 5px;
    outline: none;
    padding-left: 35px;
    border-radius: 5px;
    border: 1px solid #7070709e;
}

.con-form-item input::placeholder {
    font-size: 12px;
    color: #C5C5C5;
}

.con-form-item {
    position: relative;
    margin-bottom: 15px;
}

.con-form-item label {
    font-size: 15px;
    color: #605F5F;
}

.con-form-item img {
    position: absolute;
    left: 8px;
    top: 42px;
    width: 18px;
}

#query {
    width: 100%;
    height: 140px;
    resize: none;
    outline: none;
    padding: 10px;

    border-radius: 5px;
    border: 1px solid #7070709e;
}

#query::placeholder {
    font-size: 12px;
    color: #C5C5C5;
}

.con-submit-btn {
    width: 100%;
    margin-top: 10px;
    border: none;
    color: white !important;
    cursor: pointer;
}

section.con-form {
    margin-top: 50px;
}

.con-map {
    margin-top: 20px;
}


/* Contact Us End */

.file-input__input {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.con-form-item span {
    color: red;
}

.file-input__label {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    font-size: 14px;
    padding: 10px 12px;
    background-color: #4245a8;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.25);
}

/* .file-input__label svg {
    height: 16px;
    margin-right: 4px;
} */

/* .upload-prc {
    width: 100%;
    font-weight: 500;
    font-size: 10px;
    color: #C5C5C5 !important;
    position: relative !important;
    background-color: #fff !important;
    box-shadow: none;
    padding: 10px 10px !important;
    border-radius: 5px;
    border: 1px solid #7070709e !important;
} */

.file-input svg {
    position: absolute;
    width: 18px;
    right: 25px;
    top: 13px;
    color: #ef6330;
    cursor: pointer;
}

.file-input label {
    font-size: 15px;
    color: #605F5F;
    margin: 0;
}

.btn_upload {
    width: 100%;
    font-weight: 500;
    font-size: 12px;
    color: #C5C5C5 !important;
    background-color: #fff !important;
    box-shadow: none;
    padding: 10px 10px !important;
    border-radius: 5px;
    border: 1px solid #7070709e !important;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
}

.btn_upload:hover,
.btn_upload:focus {
    background-color: #7ca9e6;
}

.btn_upload input {
    cursor: pointer;
    height: 100%;
    position: absolute;
    filter: alpha(opacity=1);
    -moz-opacity: 0;
    opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    cursor: pointer;
    z-index: 999;
}

.it {
    width: 100px !important;
    height: 50px;
    margin-top: 10px;
    margin-left: 10px;
}

.btn-rmv1,
.btn-rmv2,
.btn-rmv3,
.btn-rmv4,
.btn-rmv5 {
    display: none;
}

.it {
    display: block !important;
}

.rmv {
    width: 25px !important;
    cursor: pointer;
    height: 25px;
    color: #fff !important;
    position: absolute;
    top: 50px;
    right: 0px;
    left: 110px;
    padding: 0px !important;
    border-radius: 30px;
    border: 1px solid #fff !important;
    display: inline-block;
    background: rgba(255, 0, 0, 1);
    margin: -5px -10px;

}

img#ImgPreview {
    display: none;
}

.rmv:hover {
    background: rgba(255, 0, 0, 0.5);
}

.file-input p {
    font-size: 12px;
    color: #000;
    margin-bottom: 0px;
}

/*.......... About Us ..........*/

.about-us-banner img {
    width: 100%;
    margin-top: 30px;
}

.about-amins-hdr {
    text-align: center;
    margin-top: 45px;
}

.about-amins-hdr h1 {
    color: #000;
    font-size: 40px;
}

.about-amins-hdr p {
    font-size: 18px;
    color: #444242e0;
    margin-bottom: 35px;
}

.abt-amins-cont h3 {
    font-size: 25px;
    color: #000000;
}

.abt-amins-cont p {
    color: #2d2b2beb;
    font-size: 15px;
    text-align: justify;
}

.abt-amins-img img {
    margin-left: 50px;
    width: 80%;
}

.our-team-abt {
    padding: 35px 0;
}

.our-team-hdr {
    /* margin-top: 30px; */
    text-align: center;
}

.our-team-hdr h1 {
    font-size: 40px;
    color: #000;
}

.our-team-hdr p {
    font-size: 15px;
    color: #2D2B2B;
    margin-bottom: 45px;
}

.our-card-content {
    text-align: center;
    padding: 20px 20px 15px 20px;
    min-height: 270px;
}

.our-card-title-1 {
    font-size: 17px;
    color: #2D2B2B;
    margin-bottom: 6px;
}

.our-card-title-2 {
    font-size: 13px;
    color: #2D2B2B;
}

.our-card-text {
    font-size: 12px;
    color: #444242;
    margin: 0;
    text-align: left;
}

.btn-read-more img {
    display: block;
}

.btn-read-more {
    float: right;
}

.our-team-card {
    border: 0;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 2px rgb(106 97 97 / 37%);
    width: 90%;
    margin: auto;
}

.our-team-card img {
    width: 40%;
    margin: auto;
    border-radius: 50%;
    border-top-left-radius: calc(0.25rem - 1px);
    border-top-right-radius: calc(0.25rem - 1px);
}


/*........ Term and Condition ............*/
.term-condi-banner {
    margin-top: 30px;
}

.term-condi-banner img {
    width: 100%;
}

.term-condi-cont {
    padding: 40px 0 20px 0;
    text-align: justify;
}

.term-condi-cont h1,
.privacy-policy-cont h1 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 30px;
    color: #3A3737;
}

.term-condi-cont p,
.cont-privacy-polic p {
    font-size: 15px;
    color: #3a3737de;

}

/*........ Privacy Policy ........*/

.privacy-policy-banner {
    margin-top: 30px;
    position: relative;
}

.privacy-policy-banner img {
    width: 100%;

}

.privacy-policy-banner h3 {
    position: absolute;
    top: 40%;
    left: 15%;
    color: #fff;
    font-size: 35px;

}

/*....... Thank You .......*/

.thnk-page {
    margin-top: 35px;
}

.thnk-box {
    width: 50%;
    text-align: center;
    padding: 50px 20px 20px 20px;
    border-radius: 10px;
    margin: 85px auto;
    box-shadow: 0px 4px 20px #00000040;
}

.pls-img,
.thnk-img {
    margin-bottom: 15px;
}

.pls-img img {
    width: 10%;
}

.thnk-img img {
    width: 50%;
}

.thnk-btn {
    width: 150px !important;
    height: 50px;
    font-size: 14px;
    margin: 35px auto;
}

.thnk-cont p {
    font-size: 16px;
    color: #7b7b7bde;
    line-height: 26px;
}

/*........... Mission Vision Value ................*/
.mission-banner {
    margin-top: 30px;
}

.mission-banner img {
    width: 100%;
}

.our-vision {
    padding: 35px 0;
}

.our-vision h1,
.cont-mission h1 {
    font-size: 35px;
    color: #444242;
    padding-bottom: 10px;
}

.our-vision ul li,
.cont-mission ul li {
    font-size: 15px;
    color: #444242e6;
    line-height: 35px;
}

.our-vision ul,
.cont-mission ul {
    margin-left: 18px;
}

.vision-cont {
    padding-left: 25px;
}

.vision-img img {
    width: 42%;
}

.vision-img {
    text-align: center;
}

.our-mission {
    background-repeat: no-repeat;
    width: 100%;
    background-size: cover;
    background-image: url(../img/mission-bg.png);
}

.our-mission img {
    width: 42%;
}

.mission-img {
    text-align: center;
}

.cont-mission {
    margin-left: 90px;
    margin-top: 60px;
}

.our-objt h1 {
    text-align: center;
    font-size: 35px;
    color: #444242eb;
}

.box-object {
    width: 300px;
    height: 300px;
    margin: auto;
    border-radius: 40px;
    box-shadow: 0px 4px 24px #00000040;
    transform: rotateZ(45deg);
}

.box-object-con {
    position: absolute;
    left: -210px;
    right: 0px;
    top: 20px;
}

.objt-img {
    max-width: 200px;
    margin: auto;
}

.objt-img img {
    width: 25%;
}

.objt-cont {
    padding: 15px 50px;
}

.objt-img,
.objt-cont {
    text-align: center;
}

.objt-cont h1 {
    padding-top: 20px;
    font-size: 15px;
    color: #444242;
}

.objt-cont p {
    width: 70%;
    margin: auto;
    font-size: 12px !important;
    color: #3a3838;
    padding-top: 10px;
}

.our-objt {
    overflow: hidden;
    padding-top: 40px;
    padding-bottom: 90px;
}

.obj-con {
    transform: rotateZ(-45deg);
}

.box-obj-row {
    margin-top: 85px;
}

.health_pack-01 {
    text-align: center;
    margin-bottom: 40px;
}

.health_pack-01 h1 {
    color: #2D2B2B;
    padding-top: 35px;
}

/*....... Report Form ........*/

.report-img-box img {
    /* width: 100%; */
    width: 97.5%;
    border-radius: 15px;
    box-shadow: 0px 0px 14px #CCC8C8;
}

.report-box {
    margin-top: 60px;
}

.report-cont {
    width: 85%;
    margin: auto;
    padding: 25px 30px;
    border-radius: 15px;
    margin-bottom: 80px;
    box-shadow: 0px 0px 10px #00000059;
}

.test-rpt-form h1 {
    font-size: 25px;
    text-align: center;
    color: #605F5F;
    margin-bottom: 25px;
}

.report-form-item input {
    width: 100%;
    padding: 5px 10px;
    outline: none;
    border-radius: 5px;
    border: 1px solid #7070709e;
}

.report-form-item input::placeholder {
    font-size: 12px;
    color: #C5C5C5;
}

.report-form-item label {
    font-size: 15px;
    color: #605f5feb;
}

.report-form-item {
    margin-bottom: 15px;
}

.report-img-box {
    width: 100%;
    margin: auto;
}

.term-condi-cont ul {
    padding-left: 10px;
}

/* .report-img-box {
    margin-left: 15%;
} */

/*.......... Test Details  ..........*/

.test-details-banner img {
    width: 97%;
    margin-top: 28px;
}

/*.......... about-us our journey ..........*/
section.our_journey {
    margin-top: 100px;
    background-image: url('../img/journey-bg.png');
    background-size: cover;
    padding-bottom: 35px;
}

.journey {
    padding-bottom: 110px;
    padding-top: 35px;
}

.journey h1 {
    text-align: center;
    font-size: 23px;
    width: 50%;
    margin: auto;
}

.journey-img {
    position: relative;
    margin-top: -50px;
}

.journey img {
    width: 100%;
    margin-top: 130px;
}

.journey-first-con {
    text-align: center;
    width: 200px;
    position: absolute;
    left: 15%;
    margin-top: 80px;
}

.journey-first-con h1 {
    color: #EF6331;
    font-size: 25px;
    text-align: center;
}

.journey-first-con p {
    color: #444242;
    font-size: 14px;
}

.journey-sec-con {
    left: 42%;
    width: 250px;
    top: 25px;
}

.journey-third-con {
    right: 12%;
    left: unset;
    width: 250px;
}

.journey-fourth-con {
    right: -2%;
    top: 110px;
    width: 200px;
    left: unset;
}

.journey-first-con01 {
    margin-top: 25%;
    left: 0;
}

.journey-first-con02 {
    left: 29.5%;
    margin-top: 25%;
}

.journey-first-con03 {
    left: 58.5%;
    margin-top: 25%;
}

.journey-first-con04 {
    margin-top: 38%;
    left: 13%;
}

.journey-first-con05 {
    margin-top: 34%;
    left: 42%;
}

.journey-first-con06 {
    margin-top: 35%;
    left: 71%;
}

.journey-first-con07 {
    margin-top: 54%;
    left: 86%;
}

.journey-first-con08 {
    margin-top: 54%;
    left: 57%;
}

.journey-first-con09 {
    margin-top: 54.2%;
    left: 27%;
}

.journey-first-con10 {
    left: -3%;
    margin-top: 40%;
}

.journey-first-con11 {
    left: 8%;
    margin-top: 78%;
}

.journey-first-con12 {
    left: 23.5%;
    margin-top: 76%;
}

.test-details-banner img {
    width: 100%;
    margin-top: 28px;
    padding-bottom: 30px;
}

.test-head-sec {
    margin-bottom: 20px;
    
}
.test-head-sec h2 {
    font-size: 15px;
    margin: 0;
}
.test-head-sec h1 {
    font-size: 15px;
    margin: 0;
}
.test-tble th,
.test-tble td {
    font-size: 15px;
    color: #444242;
    padding: 5px 0;
    border: none !important;
}

.test-con-01 {
    border-radius: 10px 10px 0px 0px;
    margin-bottom: 20px;
}

.test-con-02 {
    border-radius: 10px 10px 0px 0px;
    font-size: 15px;
    color: #444242;
    margin-bottom: 20px;
}

.test-con-02 ul {
    margin-left: 20px;
    margin-bottom: 5px;
}

.test-con-02 ul li {
    font-size: 14px;
    color: #444242;
    padding-top: 5px;
}

.test-con-02 ul li::marker {
    color: #EF6331;
    font-size: 12px;
}

.our-card-text p {
    position: relative;
    padding-left: 16px;
    margin-bottom: 0px;
}

.our-card-text p {
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.about-more::before {
    content: '';
    background: url(../img/confirmation.svg);
    /* display: block; */
    width: 20px;
    height: 20px;
    position: absolute;
    background-repeat: no-repeat;
    background-size: 20px;
    left: -14px;
    top: -2px;
}

.moreless-button,
.moreless-button1,
.moreless-button2,
.moreless-button3 {
    box-shadow: none;
    background: none;
    border: none;
    color: #007bff;
    float: right;
    cursor: pointer;
}

.moretext,
.moretext1,
.moretext2,
.moretext3 {
    display: none;
}

.haxy-new {
    position: absolute;
    top: 50%;
    display: flex;
    left: 9%;
}

.slide__content.hax {
    position: unset;
    height: 215px;
    width: 235px;
    text-align: center;
    padding-top: 40px;
    margin-left: 15px;
}

.slide__content {
    position: unset;
    height: 215px;
    width: 235px;
    text-align: center;
    padding-top: 40px;
    margin-left: 15px;
}

.ban-cont-n {
    position: absolute;
    top: 45px;
    text-align: center;
    color: #fff;
    left: 5%;
}

.slide__content.hax img {
    margin: auto;
    width: 70px;
    height: 70px;
}

.slide__content.hax h1 {
    font-size: 13px;
    margin-top: 15px;
}

.slide__content.hax {
    padding-top: 45px;
}

.slide__content.hax a {
    color: #000;
    text-decoration: none;
}

.slide__content.hax a:hover {
    text-decoration: none;
}

.certi-new {
    position: absolute;
    margin-top: 0;
    bottom: 50px;
    left: 40px;
    color: #fff;
}

.certi-new h2 {
    font-size: 20px;
    font-weight: 400;
    padding-bottom: 5px;
}

.certi-new img {
    width: unset;
}

.certi-new p {
    font-weight: 400;
    ;
}

.cart-sec {
    margin-top: 60px;
}

.cart-form {
    margin-top: 0;
    box-shadow: 0px 3px 10px #00000066;
}

select#relation {
    width: 100%;
    padding: 10px 10px;
    font-size: 14px;
    font-weight: 100;
    color: #707070;
    outline: none;
    border: 2px solid #7070705c;
}



.cart-btn {
    width: 20%;
    font-size: 12px;
    margin: auto;
    clip-path: polygon(0% 0%, 90% 0, 100% 40%, 100% 100%, 0 100%);
}

.cart-box {
    border-radius: 5px;
}

.cart-form-heading h5 {
    color: #686565;
    font-size: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ef6331a6;
}

.cart-form-heading h6 {
    color: #686565;
    font-size: 14px;
    padding: 10px 0;
}

.add-more-cart-btn {
    margin-right: 25px;
    margin-top: 35px;
}

.cart-b {
    position: relative;
}

.bottom {
    position: absolute;
    bottom: 15px;
    width: 100%;
    /* margin: 0 25px; */
    /* padding: 0px 25px; */
    /* border-bottom: 2px solid #000000bf; */
}

.hm-clc {
    margin: 20px;
    border-bottom: 2px solid #000000bf;
    padding-bottom: 10px;
    padding-top: 20px;
}

.hm-clc h1 {
    font-size: 15px;
    color: #167A19;
}

i.fa-solid.fa-plus {
    margin-top: -3px;
    margin-right: 5px;
    font-size: 20px;
}

/*......... Testimonial ...........*/

.testi-sec {
    position: relative;
    padding: 40px 0 20px 0;
    /* background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../img/testi-sec-bg.webp); */
}

.testi-sec::before {
    top: 0;
    width: 50%;
    right: 30px;
    height: 300px;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    content: '';
    background-image: url(../img/testi-sec-bg.webp);
}

.testi-banner {
    margin-top: 30px;
}

.testi-banner img {
    width: 100%;
}

.testimo-h h2 {
    padding-bottom: 12px;
    border-bottom: 2px solid #b5b1b1dd;
}

/* CAREER */


.career-01 {
    margin-bottom: 70px !important;
    margin-top: 15px;
}

.career-banner {
    margin-top: 30px;
    position: relative;
}

.bnnr-heading {
    color: #fff;
    position: absolute;
    text-align: center;
    top: 30%;
    left: 40%;
}

.bnnr-heading h3 {
    font-size: 40px;
}

.bnnr-heading h4 {
    font-size: 25px;
    font-weight: 300;
    color: #fff;
}

.career-banner img {
    width: 100%;
}

.crr-image img {
    width: 100%;
}

.career-sec {
    text-align: center;
    padding: 25px 0;
}

.car-cont {
    width: 50%;
    margin: auto;
}

.car-cont h1 {
    font-size: 35px;
    color: #3D363A;
}

.car-cont p {
    font-size: 15px;
    color: #605F5F;
}

.career-btn {
    width: 17%;
    font-size: 14px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.car-sec-box {
    position: relative;
}

.car-sec-box img {
    width: 100%;
}

.car-sec-box-cont {
    top: 32%;
    left: 11%;
    color: #fff;
    position: absolute;
    width: 22%;
    text-align: center;
}

.car-sec-box-cont h1 {
    font-size: 25px;
    margin-bottom: 15px;
}

.car-sec-box-cont p {
    font-size: 17px;
    font-weight: 300;
}

.our-cltr-img img {
    width: 100%;
}

.our-cltr-cont h1 {
    color: #2D2B2B;
    font-size: 30px;
    margin-bottom: 10px;
}

.our-cltr-cont h2 {
    color: #605F5F;
    font-size: 17px !important;
    margin-bottom: 50px;
    line-height: 29px;
    text-align: justify;
}

.our-cltr-cont p {
    color: #605f5fdb;
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 30px;
    text-align: justify;
}

/*
.our-cltr-cont p {
    color: #605f5fdb;
    font-size: 17px !important;
    margin-bottom: 50px;
    line-height: 29px;
}
 .our-cltr-cont{
    margin-top: 30px;
} */

.our-cltr-sec {
    width: 55%;
    margin: auto;
    text-align: center;
    padding: 30px 0;
}

.our-cltr-sec h1 {
    color: #2D2B2B;
    font-size: 30px;
}

.our-cltr-sec p {
    color: #605F5F;
    font-size: 15px;
}

.crrnt-opning {
    width: 100%;
    margin-top: 50px;
    background-size: cover;
    background-repeat: no-repeat;
    content: '';
    background-image: url(../img/career-bg1.webp);
}

.crr-ovrvw-wrap {
    padding: 30px 0;
}

.crr-ovrvw-heading h1 {
    font-size: 28px;
    color: #2d2b2be6;
    padding-bottom: 20px;
}

.crr-qlty-assnc-heading h1 {
    font-size: 15px;
    color: #2d2b2bee;
    margin-bottom: 3px;
}

.crr-qlty-assnc-heading p {
    font-size: 13px;
    color: #747070;
    margin-bottom: 15px;
}

.crr-qlty-assnc-heading h3 {
    font-size: 14px;
    color: #2D2B2B;
}

.crr-qlty-assnc {
    position: relative;
    background: #F0F0F0;
    padding: 20px;
    border-radius: 40px;
    margin-bottom: 40px;
    background: linear-gradient(#F0F0F0, white) padding-box, linear-gradient(3deg, #FFCE29 0%, #F37E2F 29%, #EF6331 100%) border-box;
    border-radius: 40px;
    border: 6px solid transparent;
}

.car-btn {
    width: 100%;
    font-size: 15px;
    text-align: left;
    padding: 10px 15px;
    color: #747070;
    background-color: #fff;
    outline: none !important;
    border: 1px solid #8b8b8b96;
}

.acc-car-cont {
    font-size: 15px;
    color: #747070;
    padding: 10px 15px 10px 25px;
    background: #ffff;
}

.career-form {
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0px 0px 30px #00000029;
    background-color: #ffff;
}

/*
.career-ovrw-cont {
    padding: 45px 0;
} */

.file-input .upld-cv {
    width: 100% !important;
    outline: none;
    font-size: 13px;
    color: #707070 !important;
    border-radius: 5px;
    border: 1px solid #0e0d0da6 !important;
}

.career-form input {
    width: 95%;
}

.career-form #address,
#history {
    width: 97%;
}

.cv-yes {
    /* margin-top: 8px !important; */
    position: relative;
}

.crr-box {
    border-radius: 0;
    height: 45px;
    border: 2px solid #7070705c;
    color: grey !important;
    font-size: 13px !important;
    font-weight: 300 !important;
    width: inherit;
}



.file-input .up-cv {
    width: 20px;
    right: 10px;
}

.yes {
    position: relative;
}

.cv-box {
    width: 97% !important;
}

.cv-yes input {
    width: 97%;
}

.rmv-new {
    width: 25px;
    cursor: pointer;
    color: #fff;
    position: relative;
    top: -15px;
    right: 5px;
    border-radius: 30px;
    border: 1px solid #fff;
    display: inline-block;
    background: rgba(255, 0, 0, 1);
    margin: -5px -10px;
    padding: 0px;
    height: 25px;
}

/*..... FAQ Start ....*/


.faq-banner img {
    width: 100%;
}

.faq-banner {
    margin-top: 30px;
}

.faq-h {
    text-align: center;
    margin-top: 25px;
    margin-bottom: 25px;
}

.faq-h h1 {
    font-size: 25px;
    color: #3A3737;
}

.faq-h p {
    font-size: 15px;
    color: #605f5fde;
    width: 45%;
    margin: auto;
}

.faq_con a.nav-link {
    color: #444242;
    /* border: 1px solid #EF6331; */
    background: #EBEBEB;
    margin-bottom: 10px;
    padding: 8px 20px;
    font-size: 14px;
}

.faq_con .nav-pills .nav-link.active {
    background-color: #EF6331;
}

.faq_con .btn-header-link.collapsed {
    background: #EBEBEB !important;
    color: #444242;
}

.faq_con .card .card-header .btn-header-link {
    border: none !important;
}

.faq-btn {
    display: inline-block;
}


/*..... Awards Start ....*/

.award-banner img {
    width: 100%;
    position: relative;
}

.award-banner {
    position: relative;
    margin-top: 30px;
}

.award-banner p {
    position: absolute;
    width: 30%;
    text-align: center;
    font-size: 13px;
    color: #FFFFFF;
    bottom: 75px;
    right: 220px;
    font-weight: 300;
}

.award-sec-h {
    text-align: center;
    padding: 25px 0;
    margin: 0;
}

.award-sec-h h1 {
    font-size: 30px;
    color: #3D363A;
}

.award-sec-h p {
    width: 45%;
    margin: auto;
    font-size: 15px;
    color: #605F5F;
    padding-top: 10px;
}

.award-sec img {
    width: 100%;
}

.awrd-cont {
    position: relative;
    content: '';
    width: 100%;
    padding: 45px 90px;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../img/awards-bg-2.webp);
}

.awrd-cont p {
    font-size: 15px;
    color: #605F5F;
    font-weight: 300;
    line-height: 30px;
}

.awrds-cont-h {
    position: absolute;
    content: '';
    width: 50%;
    top: -201px;
    text-align: center;
    left: 375px;
    padding: 35px 60px;
    box-shadow: -20px -20px 10px -20px #000000b8;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../img/awards-bg-2.webp);
}

.awrds-cont-h h1 {
    color: #3D363A;
    font-size: 40px;
}


/*........ Accreditation Start .........*/


.accredi-banner {
    position: relative;
    margin-top: 30px;

}

.accredi-banner img {
    width: 100%;
}

.accredi-h {
    width: 32%;
    text-align: center;
    position: absolute;
    top: 90px;
    left: 240px;
    color: #fff;
}

.accredi-h p {
    font-size: 15px;
    font-weight: 300;
    padding-top: 15px;
}

.accredi-h h1 {
    font-size: 50px;
    padding-bottom: 5px;
    font-weight: 600;
    text-shadow: 0px 3px 6px #00000029;
}

.accredi-h h3 {
    font-size: 35px;
    padding-bottom: 5px;
    font-weight: 500;
    text-shadow: 0px 3px 6px #00000029;
}


/*........ Corporate Office ........*/


/* .cor-off-banner{
    position: relative;
    margin-top: 30px;
    margin-bottom: 135px;

}
.cor-off-banner img{
    width: 100%;
}
.cont-adr.cor-off-addr {
    width: 90%;
    position: absolute;
    border-width: 4px;
    border-style: solid;
    background: linear-gradient(white, white) padding-box, linear-gradient(to right, #EF6530, #F37B2F, #FECA29) border-box;
    border: 4px solid transparent;
    padding: 20px 0 35px 0;
    bottom: -100px;
    left: 80px;
}
.corpo-cont{
    padding: 35px 60px;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../img/corpo-off-bg.webp);
}
.corpo-cont h1 {
    font-size: 30px;
    color: #2d2b2bde;
    padding-bottom: 15px;
}
.corpo-cont h4 {
    font-size: 20px;
    color: #2d2b2bde;
    padding-bottom: 5px;
}
.corpo-cont p {
    font-size: 15px;
    color: #605F5F;
    font-weight: 300;
    line-height: 30px;
}
.corpo-form{
    width: 90%;
    margin: auto;
    padding: 25px;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 6px 16px #00000059;
    border-radius: 10px;
    opacity: 1;
    margin-bottom: 35px;
}
.corpo-form h1 {
    font-size: 25px;
    color: #2d2b2be0;
    text-align: center;
} */

/*......... NEWS AND EVENTS .........*/
.n-event {
    margin-top: 30px;
    position: relative;
}

.n-event-bann img {
    width: 100%;
}

.news-bann-cont {
    position: absolute;
    right: 5%;
    top: 25%;
    width: 39%;
    color: #fff;
    text-align: center;
}

.news-bann-cont h1 {
    color: #fff;
    font-size: 45px;
    text-align: center;
}

.bann-cont-press {
    text-align: center;
    font-size: 30px;
    color: #fff;
}

.news-head {
    text-align: center;
    color: #000;
    width: 50%;
    margin: 25px auto;
}

.news-head p {
    margin-top: 10px;
}

.news-list {
    background-image: url(../img/news-event-bg.webp);
    background-repeat: no-repeat;
    padding: 35px 10px;
}

.news-list-box {
    clip-path: polygon(0 0, 100% 0, 90% 96%, 10% 96%);
    width: 75%;
    margin: auto;
    margin-top: 55px;
}

.news-list-box img {
    width: 100%;
}

.news-box-bottom {
    padding-bottom: 15px;
}

.news-event-band {
    position: absolute;
    bottom: 27%;
    left: 33px;
}

.news-event-band img {
    width: 425px;
}

.news-event-band p {
    position: absolute;
    top: 35%;
    left: 18%;
    font-size: 20px;
    color: #fff;
}

.news-view-more {
    position: absolute;
    left: 27%;
    bottom: 15%;
    height: 30px;
}

.news-more-btn {
    position: absolute;
    bottom: 18%;
    left: 40%;
}

.press-r {
    background-image: url(../img/news&event-bg2.webp);
    background-repeat: no-repeat;
    padding: 35px 10px;
}

.news-card-top {
    background: transparent linear-gradient(270deg, #F37E2F 0%, #FFCE29 40%, #FFCE29 100%) 0% 0% no-repeat padding-box;
    position: relative;
}

.news-card-top-img img {
    position: absolute;
    top: 30px;
    left: 18px;
    width: 65px;
}

.news-card-top h1 {
    font-size: 17px;
    text-align: center;
    padding: 28px 50px;
    color: #fff;
    padding-left: 70px;
    line-height: 25px;
}

.news-card {
    width: 60%;
    margin: auto;
    background-color: #F1EFF0;
    box-shadow: 0px 0px 30px 10px #D1CCCF;
    border-bottom-left-radius: 10px;
    margin-bottom: 30px;
    border-bottom-right-radius: 10px;
}

.news-event-date {
    text-align: center;
}

.news-event-date p {
    padding-bottom: 0px !important;
}

.news-card p {
    color: #757575;
    text-align: center;
    padding: 10px 20px;
    font-weight: 400;
    padding-bottom: 20px;
}

.news-event-date p {
    color: #000;
}


/* FAQ */
.faq-banner img {
    width: 100%;
}

.faq-banner {
    margin-top: 30px;
}

.faq-h {
    text-align: center;
    margin-top: 25px;
    margin-bottom: 25px;
}

.faq-h h1 {
    font-size: 25px;
    color: #3A3737;
}

.faq-h p {
    font-size: 15px;
    color: #605f5fde;
    width: 45%;
    margin: auto;
}

.faq_con a.nav-link {
    color: #444242;
    /* border: 1px solid #EF6331; */
    background: #EBEBEB;
    margin-bottom: 10px;
    padding: 8px 20px;
    font-size: 14px;
}

.faq_con .nav-pills .nav-link.active {
    background-color: #EF6331;
}

.faq_con .btn-header-link.collapsed {
    background: #EBEBEB !important;
    color: #444242;
}

.faq_con .card .card-header .btn-header-link {
    border: none !important;
}

.faq-btn {
    display: inline-block;
}

/* News event details */
/*
.news-detail-img {
    width: 60%;
    margin: auto;
    position: relative;
}

.news-detail-img img {
    width: 100%;
}
*/
.news-detail-img {
    width: 65%;
    height: 600px;
    margin: auto;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../img/photoframe.webp);
}

.news-detail-img img {
    width: 91%;
    height: 408px;
    margin-left: 20px;
    margin-top: 172px;
}

.news-detail-img-person {
    width: 80%;
    position: absolute;
    top: 21%;
    left: 11%;
}

.news-detail-con {
    position: absolute;
    top: 2%;
    left: 18%;
}

.news-detail-con h1 {
    font-size: 20px !important;
}

.news-detail-con-des {
    top: 32%;
    position: absolute;
    left: 15%;
}

/* .event-detail-con {
    content: '';
    background-image: url(../img/news-shapes.webp);
    background-size: cover;
    height: 345px;
    position: relative;
} */

.event-detail-con {
    content: '';
    background-image: url(../img/news-shapes.webp);
    background-size: contain;
    background-repeat: no-repeat;
    height: 345px;
    position: relative;
    margin-top: 25px;
}

.news-content p {
    padding-top: 20px;
    padding-left: 15px;
}

.news-detail h1 {
    padding-top: 40px;
    font-size: 25px;
    font-weight: 400;
    text-align: center;
    padding-bottom: 15px;
}


/* OUR DEPARTMENTS */

.our-depart-banner {
    position: relative;
    margin-top: 30px;
}

.our-depart-banner img {
    width: 100%;
}

.bannr-head {
    position: absolute;
    text-align: center;
    color: #fff;
    width: 36%;
    top: 25%;
    left: 15%;
}

.bannr-head h1 {
    font-size: 50px;
    margin: 0;
}

.bannr-head p {
    font-size: 15px;
    font-weight: 300;
    padding-top: 28px;
}

.expe-row-sec {
    /* background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../img/rect-bg.png); */
    padding-top: 70px;
}

/* .dep-h {
    width: 72%;
    border: 5px solid #d2d2d2;
    padding: 9px;
    margin: auto;
    border-radius: 10px;
} */

.dep-cart {
    padding: 20px;
    box-shadow: 0 0 20px #e1e1e1;
    background: #fff;
    border-radius: 10px;
}

.dep-cart-cont {
    padding-top: 15px;
}

.arrow-dep {
    width: 40px;
    height: 40px;
    margin: auto;
    background: transparent linear-gradient(281deg, #FFCE29 0%, #F37E2F 29%, #EF6331 100%) 0% 0% no-repeat padding-box;
    padding: 7px;
    border-radius: 50%;
}

.dep-cart-cont h1 {
    font-size: 20px;
    color: #0C0C0C;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.area-expert {
    padding-bottom: 100px;
}

.dep-cart-cont p {
    color: #605F5F;
    font-size: 13px;
    margin-bottom: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    min-height: 70px;
}

.areas-head {
    width: 45%;
    text-align: center;
    padding: 30px 0 10px;
    margin: auto;
}

.areas-head h1 {
    font-size: 30px;
    color: #000;
    margin-bottom: 20px;
}

.areas-head p {
    color: #605F5F;
    font-size: 15px;
}

.area-expert {
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../img/departments-bg.png);
}

.our-dep {
    padding: 15px 0px 55px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../img/our-dep-bg1.png);
}

.our-dep-cont p {
    color: #676767;
    font-size: 15px;
    line-height: 25px;
}

.our-dep .slide {
    margin-top: 40px;
}

.our-dep-img img {
    width: 85%;
}



.our-dep-team {
    padding: 40px 0;
    margin-bottom: 30px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../img/our-dep-team-bg.png);
}

.our-dept-organs {
    padding-bottom: 40px;
}

.center-close-status {
    margin-right: -15px;
    margin-top: 5px;
}

.our-dep-cont ul {
    margin-left: 20px;
}

.stick-dots_new .slick-nav.prev-arrow {
    left: 90%;
    top: 0;
}

.stick-dots_new .slick-nav.next-arrow {
    left: 94%;
    top: 0;
}

.card-img-head {
    width: 100%;
    border-top-left-radius: calc(1rem - 1px);
    border-top-right-radius: calc(1rem - 1px);
}


/* FIND A CENTRE */
.find-cent-banner img {
    width: 100%;

}

.center-search {
    position: relative;
}

.center-head h1 {
    font-size: 28px;
    padding: 15px 0px;
}

.center-search span {
    background: #EF6331;
    padding: 8px 12px;
    /* margin-left: 1px; */
    padding-bottom: 11px;
    clip-path: polygon(0% 0%, 70% 0, 100% 50%, 70% 100%, 0% 100%);
    position: absolute;
    text-align: center;
    left: 0px;
}

.center-search span img {
    width: 17px;
    margin-right: 5px;
}

.center-search input {
    padding: 10px 15px;
    font-size: 14px;
    width: 84%;
    outline: none;
    border: 1px solid #EF6331;
    padding-left: 60px;
}

.center-search select {
    padding: 10px 15px;
    font-size: 14px;
    width: 84%;
    outline: none;
    border: 1px solid #EF6331;
    padding-left: 60px;
    height: auto !important;
}

.center-filter {
    background-image: url(../img/center-filter-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 30px 0px;
}

.center-content-head {
    justify-content: space-between;
}

.center-content {
    background-image: url(../img/center-content-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    border: 1px solid #F69629;
    padding: 10px 14px;
    margin-bottom: 24px;
}

.cntr-sbmit {
    width: 38%;
    height: 41px;
    margin-top: 0px;
    margin: unset;
    clip-path: polygon(0% 0%, 90% 0, 100% 35%, 100% 100%, 0 100%);
}

.center-name {
    display: flex;
    align-items: center;
}

.center-name img {
    width: 24px;
}

.center-name h1 {
    font-size: 22px;
    margin-bottom: 0px;
}

.center-share-dir {
    display: flex;
    align-items: center;
    margin-left: 10px;
    width: 65%;
}

.share-dir-icon .share-btn {
    width: 35%;
}

.center-addres {
    margin-top: 16px;
}

.center-addres p {
    font-size: 14px;
    margin-left: 26px;
    color: #8F8F8F;
}

.center-share-dir p {
    margin-bottom: 0px;
    color: #8F8F8F;
    margin-left: 5px;
    font-size: 15px;
}

.center-content-bottom {
    justify-content: space-between;
}

.phone-timing {
    display: flex;
    align-items: center;
}

.phone-timing p {
    margin: 8px;
}

.phone-timing-main {
    margin-right: 27px;
}

.center-contact-info {
    display: flex;
    align-items: center;
    padding-left: 8px;
}

.center-number p {
    font-size: 14px;
    margin-left: 22px;
    color: #8F8F8F;
}

.center-close-status p {
    padding: 6px 10px;
    font-size: 13px !important;
    color: #F06B30;
    font-weight: 500;
    text-align: right;
}

.center-close-status a .center-req {
    background: #F06B30;
    padding: 6px 10px;
    font-size: 13px !important;
    color: #FFFFFF;
    font-weight: 500;
}

/* Accreditation */

.accredi-banner {
    position: relative;
    margin-top: 30px;
}

.accredi-banner img {
    width: 100%;
}

.accredi-h {
    width: 32%;
    text-align: center;
    position: absolute;
    top: 90px;
    left: 240px;
    color: #fff;
}

.accredi-h p {
    font-size: 15px;
    font-weight: 300;
    padding-top: 15px;
}

.accredi-h h1 {
    font-size: 50px;
    padding-bottom: 5px;
    font-weight: 600;
    text-shadow: 0px 3px 6px #00000029;
}

.accredi-h h3 {
    font-size: 35px;
    padding-bottom: 5px;
    font-weight: 500;
    text-shadow: 0px 3px 6px #00000029;
}

.accre-cart {
    padding: 35px 0 60px 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../img/accre-bg-1.webp);
}

.accre-h {
    text-align: center;
    padding: 20px 0;
}

.accre-h h1 {
    color: #3D363A;
    font-size: 30px;
}

.accre-h p {
    color: #605f5fd9;
    width: 45%;
    margin: auto;
    font-size: 15px;
}

.accre-box {
    width: 75%;
    margin: auto;
}

.accre-cont-h {
    margin-bottom: 30px;
    text-align: center;
    color: #0C0C0C;
    font-size: 25px;
}

.accre-card {
    border-width: 4px;
    border-style: solid;
    background: linear-gradient(white, white) padding-box, linear-gradient(179deg, #EF6530, #F37B2F, #FECA29) border-box;
    border: 10px solid transparent;
    border-radius: 50px 50px !important;
}

.accre-card img {
    border-radius: 40px 40px 0px 0px;
}

.accre-cart-cont {
    padding: 20px 25px;
    margin-bottom: 20px;
}

.accredi-cont-c {
    position: relative;
}

.accredi-cont-c img {
    width: 60%;
}

.nabl-cont {
    top: 55px;
    right: 0;
    position: absolute;
    width: 50%;
    padding: 30px 50px;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../img/nabl-bg.webp);
}

.nabl-cont h1 {
    font-size: 35px;
    color: #3D363A;
    margin-bottom: 25px;
}

.nabl-cont p {
    font-size: 15px;
    color: #605F5F;
    line-height: 30px;
}

/*
Career */

/* CORPORATE OFFICE */

.cor-off-banner {
    position: relative;
    margin-top: 30px;
    margin-bottom: 135px;
}

.cor-off-banner img {
    width: 100%;
}

.cont-adr.cor-off-addr {
    width: 90%;
    position: absolute;
    border-width: 4px;
    border-style: solid;
    background: linear-gradient(white, white) padding-box, linear-gradient(to right, #EF6530, #F37B2F, #FECA29) border-box;
    border: 4px solid transparent;
    padding: 20px 0 35px 0;
    bottom: -100px;
    left: 80px;
}

.corpo-cont {
    padding: 35px 60px;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../img/corpo-off-bg.webp);
}

.corpo-cont h1 {
    font-size: 30px;
    color: #2d2b2bde;
    padding-bottom: 15px;
}

.corpo-cont h4 {
    font-size: 20px;
    color: #2d2b2bde;
    padding-bottom: 5px;
}

.corpo-cont p {
    font-size: 15px;
    color: #605F5F;
    font-weight: 300;
    line-height: 30px;
}

.corpo-form {
    width: 90%;
    margin: auto;
    padding: 25px;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 6px 16px #00000059;
    border-radius: 10px;
    opacity: 1;
    margin-bottom: 35px;
}

.corpo-form h1 {
    font-size: 25px;
    color: #2d2b2be0;
    text-align: center;
}

/* GENERAL ENQUIRY */


.gen-enq {
    margin-top: 80px;
    margin-bottom: 40px;
}

.gen-enq img {
    width: 100%;
}

.gen-form {
    width: 90%;
    padding: 30px 30px 15px;
    border-radius: 10px;
    /* background: #FFFFFF 0% 0% no-repeat padding-box; */
    box-shadow: 0px 6px 16px #00000059;
}

.gen-form-cont h1 {
    font-size: 25px;
    color: #EF6331;
}

.gen-form-cont p {
    color: #686565;
    font-size: 15px;
    margin: 0;
    padding-bottom: 20px;
}

.gen-form-items input {
    width: 100%;
    padding: 10px 10px;
    font-size: 13px;
    font-weight: 300;
    color: #707070;
    outline: none;
    border: 2px solid #7070705c;
}

.gen-form-items {
    margin-bottom: 20px;
}

.gen-sub-btn img {
    width: 15px;
}

.gen-sub-btn {
    width: 100%;
    height: 45px;
    margin: 10px auto;
    clip-path: polygon(0% 0%, 95% 0, 100% 40%, 100% 100%, 0 100%);
}






/* custum css */

.drop-relation-cus select {
    width: 85%;
    font-size: 12px;
    margin-top: 20px;
    padding: 8px 10px;
    border-radius: 5px;
    outline: none;
    border: 1px solid #9A9A9A;
}

.textarea-cus textarea {
    width: 85%;
    font-size: 12px;
    margin-top: 20px;
    padding: 8px 10px;
    border-radius: 5px;
    outline: none;
    border: 1px solid #9A9A9A;
    margin: auto;
}

.radio-cus {
    margin-left: 20px;
    margin-top: 20px;
    width: 89%;
    border: 1px solid #9A9A9A
}

.radio-cus label {
    font-size: 13px;
    color: #7e7e7e;
}

.form-items input {
    width: 100%;
    padding: 10px 10px;
    font-size: 14px;
    /* font-weight: 500; */
    color: #707070;
    outline: none;
    border: 2px solid #7070705c;
}

input.f-left {
    width: 95%;
}

.form-items_02 {

    margin-left: 5px;
}

/* .file-input .upload-prc{
    width: 97% !important;
    padding: 10px 10px !important;
    font-size: 13px !important;
    font-weight: 300;
    color: #707070;
    outline: none;
    border-radius: 0;
    border: 2px solid #7070705c !important;
} */

#address,
#history {
    width: 100%;
    /* margin-top: 20px; */
    height: 120px;
    resize: none;
    font-size: 13px;
    font-weight: 300;
    color: #707070;
    outline: none;
    padding: 10px;
    border: 2px solid #7070705c;
}

.tbs {
    position: absolute;
    right: 37%;
    bottom: -193px;
    z-index: 1;
}

.main-pack-test {
    position: relative;
}

.mdl-prc {
    width: 85% !important;
    margin: auto;
    text-align: left;
    margin-top: 0px !important;
}

.mdl-prc span {
    color: #6c757d !important;
    font-weight: 400 !important;
    margin-top: 0px !important;
}

.error-class {
    color: red;
    font-size: 11px;
    text-align: left;
}

.err {
    margin: 9px 0px;
}

.sub-btn {
    background: none;
    border: none;
    color: white;
    outline: none !important;
    cursor: pointer;
    width: 100%;
    font-size: 13px;
}

.con-form {
    margin-bottom: 86px !important;
}

.faq-sec {
    margin-bottom: 70px;
}

a:hover {
    text-decoration: none;
}

.joureny-for-mobile-veiw {
    display: none;
}

.slick-dots-1 li {
    margin: 0 -17px;
}

.home_banner_mob {
    display: none !important;
}

input {
    color: #000 !important;
}

.card.b-first-cart img {
    height: 167px !important;
}

.test-01 {
    margin-bottom: 20px;
    position: relative;
    display: flex;
    justify-content: space-between;
}

h4.productCost {
    font-size: 23px;
    color: #EF6531;
}

.dwnld-rprt {
    font-size: 15px;
    color: #EF6531;
    position: absolute;
    bottom: 25px;
    right: 20px;
}

.productcost a {
    text-decoration: none;
}

.info-btn-head {
    width: 100%;
    font-size: 18px;
    text-align: left;
    color: #E6612F;
    padding: 20px;
    background: #F6F6F6;
}

.info-head {
    padding: 0;
    border: 0;
}

.info-head a:hover {
    border: none;
    background: #F6F6F6;
    color: #E6612F;
}

.info-card {
    border: none;
    box-shadow: 0px 16px 28px 0px #24242414;
}

.parameters h4 {
    font-size: 15px;
    font-weight: 300;
    color: #000;
}

.parameters p {
    font-size: 11px;
    font-weight: 100;
    margin: 0;
}

.icon-info i {
    font-size: 20px;
    color: #EF6430;
}

.productcost {
    width: 20%;
    margin: 7px 0px 0px 0px;
    text-align: right;
}

.productvalue {
    width: 100%;
    text-align: justify;
}

.accrediation {
    margin: auto;
}

.accred_book_btn {
    margin: auto !important;
    font-size: 12px;
}

img.accre-img {
    width: 50%;
    margin: auto;
    margin-top: 25px;
}

.form-items_02 input::placeholder {
    font-size: 13px !important;
    font-weight: 300 !important;
}

.f-right-01 {
    width: 100% !important;
}

/* .yes .req-upload-prc .input-img{
    color:#000 !important;
} */
.presc {
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #707070 !important;
    border: 2px solid #7070705c !important;
}

.cont-presc {
    font-size: 13px;
    font-weight: 500 !important;
    border-radius: 5px !important;
    border: 1px solid #7070709e !important;
}

.yes .career-cv {
    border-radius: 0px !important;
    border: 2px solid #7070705c !important;
}

.form-items input::placeholder {
    font-weight: 200 !important;
}

.btn-rmv1 {
    z-index: 999;
}

.abt-01 {
    margin-top: 30px !important;
}

.dob-box {
    color: #707070 !important;
    font-size: 13px !important;
    font-weight: 300 !important;
}

.submit-btn {
    clip-path: polygon(0% 0%, 95% 0, 100% 30%, 100% 100%, 0 100%);
width: 100% !important;
    border: none;
    color: white !important;
    cursor: pointer;
    outline: none !important;
}


.book_btn {
    border: none;
    color: white !important;
    cursor: pointer;
    outline: none !important;
    /* width: auto; */
    clip-path: polygon(0% 0%, 95% 0, 100% 30%, 100% 100%, 0 100%);
}

a.book_now_btn {
    color: white !important;
}

.form-items_02 .car_text {
    font-size: 14px !important;
    color: #000000 !important;
    /* font-weight: 500 !important; */
}

.car_text::placeholder {
    color: #707070;
    font-weight: 300;
}

.home_text::placeholder {
    color: #707070;
    font-weight: 300;
}

.form-items .home_text {
    font-size: 14px !important;
    color: #000000 !important;
    font-weight: 100 !important;
}

.gen_enq,
.mod_text {
    color: #000 !important;
    font-size: 12px !important;
    font-weight: 100 !important;
}

.gen_enq::placeholder {
    color: #707070;
    font-weight: 300;
}

.mod_text::placeholder {
    color: #707070;
    font-weight: 300;
    font-size: 13px;
}

.cart-added {
    height: 182px;
    width: 282px;
    margin-top: 240px;
    text-align: center;
    padding-top: 50px
}

.fa-ex-mark {
    background: red;
    padding: 10px 22px;
    border-radius: 50px;
    color: white;
    font-weight: bold;
    font-size: 27px;
}

.btn-cls {
    right: 115px !important;
    top: 5px !important;
    z-index: 999 !important;
}

.haxy .r-arrow {
    width: 20px;
}

div#cartItem {
    margin: 50px 120px;
}

.book-n {
    padding-bottom: 20px !important;
}

.health-d {
    padding-bottom: 30px !important;
}

.registered-office {
    margin-top: 217px;
}

.health_pack h4,
.book_organs h4 {
    color: #000000b8;
}

p {
    font-size: 15px !important;
}

.address-r {
    width: 100%;
    display: flex;
    padding: 10px;
    height: 125px;
    background: transparent linear-gradient(270deg, #FFCE29 0%, #F37E2F 29%, #EF6331 100%) 0% 0% no-repeat padding-box;
    vertical-align: middle;
    align-items: center;
    border-radius: 5px;
}

.add-01 {
    width: 40%;
    margin-right: 30px;
}

.add-02 {
    width: 60%;
}

.adr-con-adr-01 {
    width: 100%;
    height: 125px;
    margin: auto;
    display: flex;
    padding: 25px;
    background: transparent linear-gradient(270deg, #FFCE29 0%, #F37E2F 29%, #EF6331 100%) 0% 0% no-repeat padding-box;
    vertical-align: middle;
    align-items: center;
    border-radius: 5px;
}

h4 {
    color: #444242;
}

.column {
    -ms-flex: 25%;
    /* IE10 */
    flex: 25%;
    max-width: 32%;
    padding: 0 4px;
}

.column img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
}

.row-gallery {
    display: -ms-flexbox;
    /* IE10 */
    display: flex;
    -ms-flex-wrap: wrap;
    /* IE10 */
    flex-wrap: wrap;
    padding: 0 4px;
}

input,
button,
select,
option,
optgroup,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    font-weight: 100;
    line-height: inherit;
}

.scale-01 {
    margin-top: 10px;
}

select#location {
    height: 44px;
    border: 2px solid #cbcbcb;
    color: #818181;
}

.footer-top ul li {
    margin-left: 60px;
}

.news-content {
    margin-left: 35px;
}
.bttn{
    width: unset !important;
}
.fsize{
    font-size: 12px !important;
}
.card-parameter{
    padding: 10px;
}
=======
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

:root {
    --primary: #933ded;
    --dark: #232323;
    --pure: #fff;
    --smoke: whitesmoke;
    --dark-gray: #999;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 100;
}

::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: transparent linear-gradient(270deg, #FFCE29 0%, #F37E2F 29%, #EF6331 100%) 0% 0% no-repeat padding-box;
    border-radius: 10px;
    height: 50px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: transparent linear-gradient(270deg, #FFCE29 0%, #F37E2F 29%, #EF6331 100%) 0% 0% no-repeat padding-box
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navigation {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1005;
    background: #FFF;
    height: 130px;
    box-shadow: 1px 2px 10px #686868;
}

.main-headr {
    padding-bottom: 100px;
}

.pd-0 {
    padding: 0px !important;
}

ul.nav-list {
    display: flex;
    list-style-type: none;
    justify-content: right;
}

ul.nav-list li a {
    margin: 0rem 2.2rem;
    color: #464646;
    font-size: 14px;
    font-weight: 400;
}

ul.nav-list .active a {
    color: #ef6331;
    font-weight: 500;
}

ul.nav-list .active::before {
    background: #ef6331 !important;
    width: 45px !important;
}

.brand {
    /* padding-top: 20px; */
    padding-top: 5px;
    width: 100%;
}

.brand::after {
    content: "";
    height: 130px;
    width: 245px;
    border: 20px solid #fff;
    background-color: #fff;
    transform: skewX(333deg);
    position: absolute;
    z-index: 99;
    top: 0;
    right: -15px;
    margin-left: 28px;
    box-shadow: 10px 0px 8px -9px #0000004f
}

.head-f a {
    font-size: 21px;
}

.brand img {
    width: 255px;
    z-index: 999;
    position: relative;
}

.brand svg path {
    fill: var(--pure);
}

.nav-wrapper ul.nav-list {
    list-style-type: none;
    display: flex;

}

.nav-wrapper ul.nav-list li {
    margin-left: 30px;
    padding: 20px 0;
    position: relative;
}

.nav-wrapper ul.nav-list li a {
    color: var(--pure);
    text-decoration: none;
    letter-spacing: 1px;
    transition: all .5s ease-in-out;
}

.nav-wrapper ul.nav-list li a:hover,
.nav-wrapper ul.nav-list li.active a {
    color: var(--primary);
}

.btn {
    background: var(--primary);
    color: var(--pure);
    outline: none;
    padding: 8px 20px;
    font-size: 14px;
    cursor: pointer;
    letter-spacing: 1px;
    border: 1px solid transparent;
    transition: all .5s ease-in-out;
}

.btn:hover {
    background: transparent;
    border-color: var(--pure);
}

main section.header {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 160px;
}

main section.header h1 {
    font-size: 36px;
    font-weight: 100;
    text-transform: capitalize;
    margin-bottom: 20px;
}

main section.header h4 {
    font-size: 18px;
    font-weight: 400;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

nav ul.dropdown-list {
    list-style-type: none;
    display: block;
    background: var(--smoke);
    padding: 6px 16px;
    position: absolute;
    width: max-content;
    z-index: 9999;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    pointer-events: none;
}

.nav-wrapper ul.dropdown-list li {
    margin-left: 0;
    padding: 5px 0;
}

.nav-wrapper ul.dropdown-list li a {
    color: var(--dark);
}

ul.nav-list li:hover .dropdown-list {
    opacity: 1;
    pointer-events: auto;
    animation: moveUp .5s ease-in-out forwards;
}

@keyframes moveUp {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(20px);
    }
}

.hamburger {
    display: none;
}

.mobile .hamburger {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    cursor: pointer;
    position: fixed;
    top: 0;
    margin-top: 0px;
    right: 0;
    width: 10%;
    overflow: hidden;
}

.l-btn-new {
    width: 190px !important;
    padding: 10px 20px !important;
    font-size: 14px !important;
    color: #fff !important;
}

.l-btn-new a {
    margin: 0px !important;
    color: #fff !important;
}

.l-btn-new::before {
    display: none;
}

.mobile ul.nav-list {
    background: -webkit-linear-gradient(45deg, #434343, #000000);
    background: linear-gradient(45deg, #434343, #00000040);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    flex-direction: column;

    opacity: 0;
    pointer-events: none;
    transition: all .3s ease-in-out;
}

.hamburger,
.brand {
    z-index: 9999;
    text-align: center;
}

.mobile ul.nav-list.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile .hamburger span {
    transform-origin: left;
    transition: all .3s ease-in-out;
}

.mobile ul.nav-list li a {
    font-size: 20px;
}

.mobile ul.dropdown-list {
    position: relative;
    background: transparent;
    text-align: center;
    height: 0;
    overflow-y: hidden;
    transition: opacity 1s ease-in-out;
    padding-top: 0;
}

.mobile .nav-wrapper ul li:hover .dropdown-list {
    height: max-content;
    padding-top: 6px;
}

.mobile ul.nav-list li {
    margin-left: 0;
    margin: 18px 0px;
}

.mob-logo {
    display: none;
}

.mobile .nav-wrapper ul.dropdown-list li a {
    color: var(--dark-gray);
}

.top-bar {
    width: 100%;
    text-align: right;
}

.top-bar ul {
    padding-right: 40px;
    width: 100%;
    background: transparent linear-gradient(270deg, #FFCE29 0%, #F37E2F 29%, #EF6331 100%) 0% 0% no-repeat padding-box;
}

.top-bar li {
    display: inline-block;
    position: relative;
    margin: 0px 5px;
}

.head-f {
    font-weight: bold;
}

.top-bar li img {
    border-radius: 50%;
    width: 35px;
    height: 35px;
    padding: 3px !important;
    margin-left: 0px !important;
    text-align: center;
    margin-right: 5px;
}

.top-bar li a {
    text-decoration: none;
    color: #fff;
}

.top-bar li span {
    position: absolute;
    top: 15px;
    color: #EF6331;
    right: 5px;
    background: #fff;
    width: 16px;
    padding: 0pc;
    height: 16px;
    font-size: 12px;
    border-radius: 50%;
    text-align: center;
}

.top-bar li .cart-i {
    background-color: transparent;
    width: 40px;
    height: 65px;
    border: unset;

}

.nav-list .nav-list2 a:hover {
    color: #EF6331;
    text-decoration: none;
}

.nav-list2 {
    display: flex;
}

.nav-list .nav-list2 li::before {
    position: absolute;
    content: "";
    width: 1%;
    height: 0.99px;
    margin-left: 41px;
    background: #000;
    transition: all 0.4s ease;
}

.nav-list li:hover::before {
    width: 45px;
    background: #EF6331;
}

.nav-list .login-btn::before {
    display: none;
}

.header-btn {
    font-size: 14px;
    color: #fff !important;
    border: none;
    outline: none;
    font-weight: 300;
    padding: 10px 20px;
    background: #ef633100;
    position: relative;

}

.header-btn:before {
    border-width: 0;
    top: 0;
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transform: rotateX(3deg);
    transform: rotateX(-150deg);
}

.header-btn:after {
    border-width: 0;
    bottom: -2px;
    -webkit-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: perspective(1.8rem) rotateX(-9deg);
    transform: perspective(1.8rem) rotateX(-175deg);
}

.header-btn:after,
.header-btn:before {
    content: "";
    position: absolute;
    border-color: inherit;
    border-style: inherit;
    height: 52%;
    width: 100%;
    left: 0;
    z-index: -1;
    background-color: #EF6331;
    border-radius: 0;
}

/* Slider */
.slick-slider {
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-track:before,
.slick-track:after {
    display: table;

    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;

    height: auto;

    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

.banner-btn {
    filter: drop-shadow(-1px 6px 3px rgba(50, 50, 0, 0.5));
    margin-top: 40px;
}

.banner__slider .slick-slide {
    margin: 0px !important;
}

.ban-btn {
    color: #000 !important;
    background: #ffff;
    width: 160px;
    font-size: 13px;
    height: 40px;
    clip-path: polygon(0% 0%, 90% 0, 100% 30%, 100% 100%, 0 100%);
    padding: 0px 8px;
    vertical-align: middle;
    justify-content: center;
    display: flex;
    align-items: center;
    margin-top: 40px;
}

.ban-btn a {
    color: #000;
    display: flex;
}

.ban-btn a {
    color: #000;
    display: flex;
    text-decoration: none;
}

.ban-btn img {
    width: 15px;
    margin-left: 8px;
    margin-top: 3px;
}

/* @media (min-width: 992px) {

    .slider,
    .slide {
        height: 66vh;
    }
} */

.slide {
    position: relative;
    padding: 20px 15px;
}

.slide .slide__img {
    width: 100%;
    height: auto;
    overflow: hidden;
}

/* @media (min-width: 992px) {
    .slide .slide__img {
        margin-top: 0;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        position: relative;
    }
} */

.slide .slide__img img {
    max-width: 100%;
    height: auto;
    opacity: 1 !important;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    transition: all 1s ease;
}

.slide .slide__content {
    position: absolute;
    top: 42.5%;
    left: 48%;
    margin-left: 35px;
    margin-top: 20px;
    transform: translate(-50%, -50%);
    height: 195px;
    width: 205px;
    background: #E2E2E2;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.slide .slide__content.slide__content__left {
    left: 15%;
    transform: translate(-15%, -50%);
}

.slide .slide__content.slide__content__right {
    right: 15%;
    left: auto;
    transform: translate(5%, -50%);
}

.slide .slide__content--headings {
    color: #fff;
}

.slide .slide__content--headings h2 {
    font-size: 4.5rem;
    margin: 10px 0;
}

.slide .slide__content--headings .animated {
    transition: all 0.5s ease;
}

.slide .slide__content--headings .top-title {
    font-family: "Playball", cursive;
    font-size: 2.5rem;
}

.slide .slide__content--headings .title {
    font-size: 3.5rem;
}

.slide .slide__content--headings .button-custom {
    text-decoration: none;
    color: #333;
    padding: 1.2rem 2.5rem;
    font-size: 1.5rem;
}

.slider [data-animation-in] {
    opacity: 0;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    transition: opacity 0.5s ease 0.3s;
}

.slick-dotted .slick-slider {
    margin-bottom: 30px;
}

.slick-dots {
    position: absolute;
    bottom: 25px;
    list-style: none;
    display: block;
    text-align: center;
    padding: 0;
    margin: 0;
    width: 100%;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button {
    border: 0;
    display: block;
    outline: none;
    line-height: 0px;
    font-size: 0px;
    color: transparent;
    padding: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
}

.simple-dots .slick-dots li {
    width: 20px;
    height: 20px;
}

.simple-dots .slick-dots li button {
    border-radius: 50%;
    background-color: white;
    opacity: 0.25;
    width: 20px;
    height: 20px;
}

.simple-dots .slick-dots li button:hover,
.simple-dots .slick-dots li button:focus {
    opacity: 1;
}

.simple-dots .slick-dots li.slick-active button {
    color: white;
    opacity: 0.75;
}

.stick-dots .slick-dots li {
    height: 3px;
    width: 50px;
}

.stick-dots .slick-dots li button {
    position: relative;
    background-color: white;
    opacity: 0.25;
    width: 50px;
    height: 3px;
    padding: 0;
}

.stick-dots .slick-dots li button:hover,
.stick-dots .slick-dots li button:focus {
    opacity: 1;
}

.stick-dots .slick-dots li.slick-active button {
    color: white;
    opacity: 0.75;
}

.stick-dots .slick-dots li.slick-active button:hover,
.stick-dots .slick-dots li.slick-active button:focus {
    opacity: 1;
}

/* /////////// IMAGE ZOOM /////////// */
@-webkit-keyframes zoomInImage {
    from {
        transform: scale3d(1, 1, 1);
    }

    to {
        transform: scale3d(1.1, 1.1, 1.1);
    }
}

@keyframes zoomInImage {
    from {
        transform: scale3d(1, 1, 1);
    }

    to {
        transform: scale3d(1.1, 1.1, 1.1);
    }
}

.zoomInImage {
    -webkit-animation-name: zoomInImage;
    animation-name: zoomInImage;
}

@-webkit-keyframes zoomOutImage {
    from {
        transform: scale3d(1.1, 1.1, 1.1);
    }

    to {
        transform: scale3d(1, 1, 1);
    }
}

@keyframes zoomOutImage {
    from {
        transform: scale3d(1.1, 1.1, 1.1);
    }

    to {
        transform: scale3d(1, 1, 1);
    }
}

.zoomOutImage {
    -webkit-animation-name: zoomOutImage;
    animation-name: zoomOutImage;
}

.slick-nav {
    --active: #fff;
    --border: rgba(255, 255, 255, 0.12);
    width: 44px;
    height: 44px;
    position: absolute;
    cursor: pointer;
    top: calc(50% - 44px);
}

.slick-nav.prev-arrow {
    left: 0%;
    transform: scaleX(-1);
    z-index: 999;

    top: 40%;

}

.slick-nav.next-arrow {
    left: auto;
    right: 0%;

    top: 40%;

}

.slick-nav i {
    display: block;
    position: absolute;
    margin: -10px 0 0 -10px;
    width: 20px;
    height: 20px;
    left: 50%;
    top: 50%;
}

.slick-nav i:before,
.slick-nav i:after {
    content: "";
    width: 10px;
    height: 2px;
    border-radius: 1px;
    position: absolute;
    left: 50%;
    top: 50%;
    background: #2E2E2E;
    margin: -1px 0 0 -5px;
    display: block;
    transform-origin: 9px 50%;
    z-index: 999;
}

.slick-nav i:before {
    transform: rotate(-40deg);
}

.slick-nav i:after {
    transform: rotate(40deg);
}

.slick-nav:before,
.slick-nav:after {
    content: "";
    display: block;
    position: absolute;
    left: 1px;
    right: 1px;
    top: 1px;
    background: #fff;
    box-shadow: 0px 3px 8px #00000047;
    bottom: 1px;
    border-radius: 50%;
}

.slick-nav svg {
    width: 44px;
    height: 44px;
    display: block;
    position: relative;
    z-index: 1;
    color: var(--active);
    stroke-width: 2px;
    stroke-dashoffset: 126;
    stroke-dasharray: 126 126 0;
    transform: rotate(0deg);
}

.slick-nav.animate svg {
    -webkit-animation: stroke 1s ease forwards 0.3s;
    animation: stroke 1s ease forwards 0.3s;
}

.slick-nav.animate i {
    -webkit-animation: arrow 1.6s ease forwards;
    animation: arrow 1.6s ease forwards;
}

.slick-nav.animate i:before {
    -webkit-animation: arrowUp 1.6s ease forwards;
    animation: arrowUp 1.6s ease forwards;
}

.slick-nav.animate i:after {
    -webkit-animation: arrowDown 1.6s ease forwards;
    animation: arrowDown 1.6s ease forwards;
}

/* @-webkit-keyframes stroke {
    52% {
        transform: rotate(-180deg);
        stroke-dashoffset: 0;
   }
    52.1% {
        transform: rotate(-360deg);
        stroke-dashoffset: 0;
   }
    100% {
        transform: rotate(-180deg);
        stroke-dashoffset: 126;
   }
}
@keyframes stroke {
    52% {
        transform: rotate(-180deg);
        stroke-dashoffset: 0;
   }
    52.1% {
        transform: rotate(-360deg);
        stroke-dashoffset: 0;
   }
    100% {
        transform: rotate(-180deg);
        stroke-dashoffset: 126;
   }
}
@-webkit-keyframes arrow {
    0%, 100% {
        transform: translateX(0);
        opacity: 1;
   }
    23% {
        transform: translateX(17px);
        opacity: 1;
   }
    24%, 80% {
        transform: translateX(-22px);
        opacity: 0;
   }
    81% {
        opacity: 1;
        transform: translateX(-22px);
   }
}
@keyframes arrow {
    0%, 100% {
        transform: translateX(0);
        opacity: 1;
   }
    23% {
        transform: translateX(17px);
        opacity: 1;
   }
    24%, 80% {
        transform: translateX(-22px);
        opacity: 0;
   }
    81% {
        opacity: 1;
        transform: translateX(-22px);
   }
}
@-webkit-keyframes arrowUp {
    0%, 100% {
        transform: rotate(-40deg) scaleX(1);
   }
    20%, 80% {
        transform: rotate(0deg) scaleX(0.1);
   }
}
@keyframes arrowUp {
    0%, 100% {
        transform: rotate(-40deg) scaleX(1);
   }
    20%, 80% {
        transform: rotate(0deg) scaleX(0.1);
   }
}
@-webkit-keyframes arrowDown {
    0%, 100% {
        transform: rotate(40deg) scaleX(1);
   }
    20%, 80% {
        transform: rotate(0deg) scaleX(0.1);
   }
}
@keyframes arrowDown {
    0%, 100% {
        transform: rotate(40deg) scaleX(1);
   }
    20%, 80% {
        transform: rotate(0deg) scaleX(0.1);
   }
}
 */
.hax .r-arrow {
    height: 21px !important;
    width: 21px !important;
    margin-top: 12px !important;
}

.haxy a {
    color: #000;
}

.haxy a:hover {
    text-decoration: none;
}

.haxy img {
    margin: auto;
    /* margin-top: 25px; */
    width: 30%;
}

.haxy h1 {
    font-size: 11px;
    text-align: center;
    margin-top: 15px;
    font-weight: 700;
}

.haxy2 {
    left: 58.5% !important;
    top: 25% !important;
}

.haxy3 {
    left: 58.4% !important;
    top: 60.5% !important;
}

.bann-content {
    position: absolute;
    top: 0;
    color: #fff;
    padding: 70px;
}

.bann-content p {
    font-size: 25px;
    margin-bottom: 5px;
}

.bann-content h1 {
    font-size: 40px;
    font-weight: 600;
}

.bann-content h3 {
    font-size: 24px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-weight: 300;
}

.certi {
    display: flex;
    margin-top: 25px;
}

.certi-con {
    margin-left: 20px;
}

.certi-con h2 {
    font-size: 17px;
    font-weight: 300;
    margin-bottom: 2px;
}

.certi-con p {
    font-size: 13px;
    font-weight: 300;
}

.certi img {
    width: 60px;
}

.explorebtnfitness {
    background-color: transparent;
    padding: 0;
    color: #333;
    text-transform: none;
    font-size: 20px;
    font-weight: 500;
    box-shadow: none;
    border-radius: 0;
    display: table;
    margin: 0 auto;
    border: none;
    outline: none;
}

.explorebtnfitness:hover {
    color: #000;
    border: none;
}

/* .pckges-slide {
    margin: auto !important;
    background: #fff !important;
} */
.packages__slider-1 {
    margin-top: 30px;
    background: #F5F5F5;
}

.relate-slide {
    padding: 25px 15px;
}

.text-center {
    text-align: center !important;
    font-size: 15px;
    color: #444242db;
    margin-left: 15px;
}

.explorebtnfitness span {
    display: block;
}

.explorebtnfitness svg {
    display: block;
    width: 16%;
    float: right;
    transition: all .3s ease-in-out;
    margin-top: 3px;
}

.health_pack {
    text-align: center;
}

.health_pack-02 {
    padding-top: 20px;
}

.health_pack p {
    padding-bottom: 15px;
    color: #2d2b2bd4;
    padding-top: 15px;
    width: 80%;
    margin: 0 auto;
    text-align: center;
    font-weight: 100;
}

.first-card {
    position: relative;
    margin: 20px auto;
    width: 100%;
    /* border: 2px solid; */
    /* box-shadow: 5px 3px 10px 0px rgb(106 97 97 / 37%); */
    padding: 15px;
    color: #fff;
    border-radius: 8px;
    background: #fff;
}

.card-test-icon {
    width: 25%;
    margin-bottom: 10px;
}

.card-test-icon img {
    width: 50px;
}

.first-card h1 {
    width: 100%;
    /* border-bottom: 1px solid #44424224; */
    padding: 10px 20px 5px 0px;
    color: #444242;
    font-size: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    line-height: 25px;
}

.first-card_1 h1 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-height: 27px;
    -webkit-box-orient: vertical;
}

.first-card h3 {
    color: #444242;
    font-size: 12px;
    font-weight: 100;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.first-01 img {
    margin-right: 5px;
    display: inline !important;
}

.valus {
    display: flex;
}

.first-02 {
    display: flex;
    width: 50%;
    text-align: left;
    padding-top: 5px;
}

.first-02 p {
    margin: 0;
    color: #777777;
    font-size: 10px;
    /*margin-top: 2px;*/
    padding-right: 4px;
    text-decoration: line-through;
}

.first-02 span {
    color: #0A701E;
    font-size: 13px;
    margin-top: 1px
}

.first-03 {
    width: 50%;
    text-align: end;
}

.first-03 a {
    font-size: 13px;
    text-decoration: none;
    color: #1326D9;
}

.card-btn {
    display: flex;
    margin-top: 15px;
}

.packages__slider .slide,
.book_organs .slide {
    height: auto !important;card-btn-01
}

.packages__slider .slide {
    height: auto !important;
    margin: 0px;
    width: 100% !important;
}

.health-card {
    width: 90%;
    margin: 20px auto;
    box-shadow: 0px 0px 15px #0000004D;
}

.card-btn-01 {
    width: 50%;
    margin: auto;
}

.card-btn-02 {
    width: 50%;
}

.book_now_btn {
    color: #000 !important;
    background: #EF6331;
    width: 103px;
    font-size: 10px;
    height: 35px;
    clip-path: polygon(0% 0%, 90% 0, 100% 30%, 100% 100%, 0 100%);
    padding: 0px 8px;
    vertical-align: middle;
    justify-content: center;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.book_now_btn a {
    color: #fff;
    display: flex;
    text-decoration: none;
}

.book_now_btn img,
.add-to-cart img {
    width: 12px;
    margin-left: 8px;
    margin-top: 3px;
}

.card-btn-02 {
    width: 50%;

}

/* .add-to-cart {
    color: #000 !important;
    background: #444242;
    width: 103px;
    font-size: 10px;
    height: 35px;
    clip-path: polygon(0% 0%, 90% 0, 100% 30%, 100% 100%, 0 100%);
    padding: 0px 8px;
    vertical-align: middle;
    justify-content: center;
    display: flex;
    align-items: center;
    float: right;
    cursor: pointer;
}

.add-to-cart a {
    color: #fff;
    display: flex;
    text-decoration: none;
} */
/* .add-to-cart.active {
    background:#004899
} */

.top-cart {
    position: absolute;
    top: 0;
    right: 15px;
    width: 50px;
}

.top-cart img {
    width: 100%;
}

.top-cart p {
    position: relative;
    top: -40px;
    left: 11px;
    font-size: 14px;
    color: #fff;
}

.book_organs {
    padding-top: 20px;
    background-color: #F5F5F5;
}

.book_organs .slick-slide {
    margin-left: -20px;
}

.infobox_wrapper {
    border-radius: 5px;
    position: relative;
    z-index: 1;
    transition: inherit;
    padding: 25px 25px 55px;
    transition: all .3s ease-in-out;
    text-align: left;
    box-shadow: 0 0 20px #E1E1E1;
    background: #fff;
    margin: 0px 18px;
    height: 260px;
}

.infobox_icon_container {
    width: 50px;
    height: auto;
    margin-bottom: 25px;
}

.health-img img {
    height: 50px !important;
}

.scale {
    max-width: 100%;
    height: auto;
    width: auto\9;
}

.infobox_wrapper .infobox_content {
    font-size: 12px;
    font-weight: 100;
    color: #464646;
    padding-bottom: 30px;
    width: 100%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    max-height: 70px;
}

h3.infobox_title {
    font-size: 25px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    color: #212529;
}

.book_organs h1,
.book_organs p {
    text-align: center;
}

.sider-orgn {
    margin-left: 120px;

}

.slider2.sider-orgn.slick-slide {
    padding-left: 0px !important;
}

a.infobox_button.button-read-more {
    float: right;
}

.book_organs .slick-dots,
.slider1 .slick-dots,
.h-risk .slick-dots {
    position: unset !important;
    padding-bottom: 25px;

}

.book_organs .slick-dots li button,
.slider1 .slick-dots li button,
.h-risk .slick-dots li button,
.slider4 .slick-dots li button {
    position: unset !important;
    height: 10px;
    width: 10px;
    background: #EF6331;
    margin: auto;
    border-radius: 50%;
}

.book_organs .stick-dots .slick-dots li,
.packages__slider .stick-dots .slick-dots li,
.h-risk .stick-dots .slick-dots li {
    width: 10px;
}

.h-risk-box {
    display: flex;
    border-radius: 7px;
    padding: 10px;
    width: 250px;
    height: 100px;
    margin: auto;
    align-items: center;
}

.h-risk-box h1 {
    color: #464646;
    border-radius: 7px;
    font-size: 16px;
    font-weight: 100;
    margin-left: 25px;
}

.h-risk-box img {
    width: 70px;
    height: 70px;
}

.di-bg {
    background-color: #E5F0FC;
}

.fe-bg {
    background-color: #FEF1DB;
}

.covi-bg {
    background-color: #ffeae8;
}

.vit-bg {
    background-color: #E6F3E9;
}

.thyo-bg {
    background-color: #fffae8;
}

.h-risk-img img {
    width: 100%;
}

.h-risk-sec-box h1 {
    width: 100%;
    color: #2D2B2B;
    font-size: 30px;
    text-align: center;
    padding: 20px 0px 25px 0px;
}

.h-risk-sec-box p {

    font-size: 17px;
    font-weight: 300;
    line-height: 26px;
}

.amins-banner {
    width: 100%;
    /* height: 662px; */
    /* margin-top: 45px; */
    padding: 45px 55px 30px 55px;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../img/machine-img.webp);
}

.amins-banner_1 {
    width: 100%;
    height: 662px;
    margin-top: 45px;
    padding: 45px 55px 30px 55px;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../img/second-banner.svg);
}

.amins-content {
    width: 50%;
    color: #fff;
}

.amins-content h3 {
    font-size: 24px;
    margin: 0;
    font-weight: 300;
    padding: 10px 0 15px 0;
}

.amins-content h1 {
    line-height: 45px;
    font-size: 29px;
}

.amins-content p {
    font-size: 15px;
    font-weight: 100;
    margin-bottom: 35px;
    padding-top: 10px;
}

.superior {
    display: flex;
    margin-top: 40px;
}

.superior img {
    display: block;
    width: 35px;
    position: absolute;
}

.superior-content {
    position: relative;
    margin-left: 50px;
    /* margin-top: 15px; */
}

.superior-content h2 {
    font-size: 15px;
    margin: 0;
    padding-bottom: 4px;
}

.superior p {
    width: 70%;
    margin: 0;
    font-size: 12px;
    line-height: 20px;
    padding: 0;
}

.row-section {
    margin-top: 45px;
}

.sec-head {
    display: flex;
    width: 300px;
}

.sec-head img {
    width: 20px;
    position: absolute;
    top: 4px;
}

.sec-head p {
    margin: 0;
    font-size: 12px;
    padding: 0;
    line-height: 20px;
    margin-left: 30px;
}

.aprl__btns {
    display: flex;
    padding-bottom: 65px;
}

.APRL_section {
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../img/third-banner.webp);
}

.aprl-box-01 {
    padding: 80px 0 0 0;
}

.mission-btn {
    color: #000 !important;
    background: #EF6331;
    width: 130px;
    font-size: 10px;
    height: 40px;
    clip-path: polygon(0% 0%, 90% 0, 100% 30%, 100% 100%, 0 100%);
    padding: 0px 8px;
    vertical-align: middle;
    justify-content: center;
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.mission-btn a {
    color: #fff;
    display: flex;
    margin-top: 3px;
    text-decoration: none;
}

.mission-btn img {
    margin-left: 8px;
    width: 10px;
}

.our_team_btn {
    color: #000 !important;
    background: #ffffff00;
    width: 130px;
    font-size: 10px;
    height: 40px;
    clip-path: polygon(0% 0%, 90% 0, 100% 30%, 100% 100%, 0 100%);
    padding: 0px 8px;
    vertical-align: middle;
    justify-content: center;
    display: flex;
    align-items: center;
    border: 2px solid #000;
    position: relative;
}

.our_team_btn a {
    color: #000;
    display: flex;
    margin-top: 6px;
    text-decoration: none;
}

.aprl-box-01 h3 {
    font-size: 24px;
    color: #444242;
    line-height: 37px;
    font-weight: 400;
    padding-bottom: 15px;
}

.aprl-box-01 p {
    font-size: 15px;
    color: #444242;
    font-weight: 100;
    padding-bottom: 30px;
}

.cntr-care,
.quality-imprmnt {
    display: flex;
    position: relative;
    margin-bottom: 35px;
}

.cntr-care-content h4,
.quality-imprmnt h4 {
    font-size: 13px;
    color: #444242;
}

.cntr-care-content p,
.quality-imprmnt p {
    font-size: 12px;
    color: #444242;
    padding: 0;
    text-align: justify;
}

.cntr-care img {
    position: absolute;
    width: 50px;
}

.quality-imprmnt img {
    position: absolute;
    width: 40px;
}

.cntr-care-content,
.quality-imprmnt-content {
    margin-left: 60px;
}

.cntr-care-content {
    border-bottom: 2px solid #44424259;
}

.book_a_visit_form {
    width: 90%;
    margin: auto;
    padding: 25px;
    margin-top: 75px;
    top: 4748px;
    left: 1070px;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 0px 30px #00000029;
    border-radius: 10px;
    opacity: 1;
    margin-bottom: 35px;
}

.form-heading h5 {
    font-size: 17px;
    color: #444242;
}

.form-heading p {
    color: #929292;
    font-size: 14px;
    font-weight: 300;
    padding-bottom: 15px;
}

.form-row-01 {
    display: flex;
}

.form-items {
    width: 100%;
    margin-bottom: 15px;
}

.form-items input {
    width: 100%;
    padding: 10px 10px;
    font-size: 13px;
    font-weight: 100;
    color: #707070;
    outline: none;
    border: 2px solid #7070705c;
}

.file-input .upload-prc {
    width: 100% !important;
    padding: 10px 10px !important;
    font-size: 13px;
    font-weight: 300 !important;
    color: #707070;
    outline: none;
    border-radius: 0;
    border: 2px solid #7070705c;
}

.upld-cart .cart-prc {
    font-size: 14px;
    font-weight: 400;
    color: #707070 !important;
    outline: none;
    border: 2px solid #7070705c !important;
    width: 97% !important;
    border-radius: 5px !important;
}

.form-items label {
    font-size: 14px;
    color: #444242d6;
    margin-bottom: 0;
}

input.f-left {
    width: 95%;
}

.f-right {
    width: 97% !important;
}

/* #address,
#history {
    width: 100%;
    /* margin-top: 20px;
    height: 120px;
    resize: none;
    font-size: 13px;
    font-weight: 300;
    color: #707070;
    outline: none;
    padding: 10px;
    border: 2px solid #7070705c;
} */

.mission-btn {
    color: #000 !important;
    background: #EF6331;
    width: 130px;
    font-size: 10px;
    height: 40px;
    clip-path: polygon(0% 0%, 90% 0, 100% 30%, 100% 100%, 0 100%);
    padding: 0px 8px;
    vertical-align: middle;
    justify-content: center;
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.book_btn {
    height: 45px;
    width: 97%;
    clip-path: polygon(0% 0%, 97% 0, 100% 48%, 100% 100%, 0 100%);
    font-size: 15px;
    margin: auto;
}

.book_btn img {
    width: 15px;
}

/* .book_now_btn a {
    color: #fff;
    display: flex;
    margin-top: 3px;
    text-decoration: none;
} */
.blog-heading {
    text-align: center;
    padding-bottom: 10px;
    margin: 0;
    font-size: 30px;
    color: #2D2B2B;
    padding-top: 25px;

}

.b-first-cart {
    width: 100%;
    margin: auto;
    padding: 0;
    border: none;
    position: relative;
    border-radius: 10px 10px 0 0;
    border-bottom: 5px solid #9F9F9F;
    box-shadow: 0px 0px 20px #00000029;
}

.card-content {
    padding: 15px 20px;
}

.card-content span {
    font-size: 15px;
}

.card-content h4 {
    font-size: 17px;
    color: #444242;
    padding: 0px;
    border-bottom: 2px solid #9f9f9fda;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-height: 35px;
    -webkit-box-orient: vertical;
}

.card-content p {
    margin: 0;
    font-weight: 300;
    font-size: 15px;
    color: #707070;
    padding: 5px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-height: 25px;
    -webkit-box-orient: vertical;
}

.date-box {
    text-align: center;
    width: 40%;
    display: flex;
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 12px;
}

.left-sec {
    width: 22%;
    padding: 5px;
    padding-top: 7px;
    color: #fff;
    background: #EF6331;
}

.right-sec {
    width: 50%;
    padding: 5px;
    background: #fff;
    color: #444242;
    border: 1px solid #e2e2e2cf;
}

.blogs .slick-dots li {
    height: 3px;
    width: 10px;
}


.testi {
    background-image: url(../img/testibg.webp);
    padding: 60px 0px;
}

.testi-left {
    width: 65%;
    margin: auto;
    position: relative;
}

.tesi-con {
    position: absolute;
    top: 60px;
    left: 100px;
    color: #fff;
}

.tesi-con h2 {
    font-weight: 300;
    font-size: 22px;
}

.tesi-con h1 {
    font-weight: 600;
}

.tesi-con h3 {
    text-align: right;
    font-size: 32px;
}

.testi-right {
    position: relative;
}

.testi-right h1::before {
    content: '';
    background-color: #FF9451;
    position: absolute;
    padding: 5px 7px;
    margin-top: 3px;
    height: 15px;
    left: -20px;
    margin-left: 20px;
}

.testi-right h1 {
    font-size: 18px;
    margin-left: 20px;
}

.testi-right h2 {
    font-size: 30px;
    line-height: 40px;
    margin-top: 25px;
}

.testi hr {
    border-top: 2px solid #00000085;
    opacity: 0.5;
}

.testi-slide {
    background: #FCF4DA;
    padding: 30px 25px;
    font-size: 14px;
    color: #000000;
    font-weight: 400;
    line-height: 25px;

}

.testi-content {
    position: relative;
}

img.quot-l {
    position: absolute;
    width: 40px;
    top: -8px;
}

.testi-slide p {
    padding-left: 48px;

}

img.quot-r {
    right: -5px;
    bottom: -20px;
    top: auto;
}

.testi-person img {
    width: 100px;
    border-radius: 50%;
    height: 100px;
    position: relative;
    z-index: 999;
}

.testi-person::before {
    width: 100px;
    position: absolute;
    height: 100px;
    left: -4px;
    top: -2px;
    border-radius: 50%;
    content: '';
    background: #f77c41;
}

.slider4 .slick-dots li {
    width: 10px;
}

.slider4 .slick-dots {
    bottom: 50px;
}

.testi-person {
    display: flex;
    align-items: center;
    position: relative;
}

.testi-heading {
    padding-left: 10px;
}

.testi-heading h3 {
    font-size: 15px;
    color: #2D2B2B;
    margin: 0;
}

.testi-heading p {
    padding: 0;
    margin: 0;
    font-size: 10px;
    color: #777777;
}

.select-check {
    list-style-type: none;
    display: flex;
    align-items: center;
    margin: 0;
    margin-top: 12px;

}

.select-check li {
    width: 44%;
    display: flex;
    align-items: center;
}

.select-check li input {
    width: 20%;
    height: 15px;
}

.form-items .select-check li label {
    font-size: 12px;
    color: #444242d6;
    margin: 0;
}

.footer {
    content: '';
    position: relative;
    background-image: url(../img/footer-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    /* margin-top: 60px; */
    padding: 20px 0px;
    padding-bottom: 0px;
}

.footer-top {
    width: 80%;
    background: transparent linear-gradient(252deg, #F7952E 0%, #F37E2F 29%, #EF6331 100%) 0% 0% no-repeat padding-box;
    height: 80px;
    margin: auto;
    position: absolute;
    top: -40px;
    left: 10%;
    right: 10%;
}

.footer-top::before {
    content: '';
    position: absolute;
    background-image: url(../img//cornor.svg);
    left: -25px;
    width: 25px;
    height: 58px;
    top: -17px;
    background-repeat: no-repeat;
}

.footer-top::after {
    content: '';
    position: absolute;
    background-image: url(../img//corno-r.svg);
    right: -23px;
    width: 23px;
    height: 40px;
    top: 1px;
    background-repeat: no-repeat;
}

.footer-top ul {
    display: flex;
    height: 80px;
    /* vertical-align:  middle; */
    align-items: center;
}

.footer-top ul li {
    display: inline-block;
    position: relative;
    font-size: 18px;
    font-weight: 300;
    width: 100%;
    margin: auto;
}

.footer-top ul li a {
    color: #fff !important;
    font-size: 20px;
}

.footer-top ul li img {

    border-radius: 50%;
    width: 40px;
    height: 40px;
    padding: 6px !important;
    margin-left: 0px !important;
    text-align: center;
    margin-right: 5px;
}

.f-phone {
    text-align: right;
    font-size: 25px !important;
    font-weight: 600 !important;
}

.footer_col {
    margin-top: 50px;
}

.foot-lable {
    font-weight: 600;
    font-size: 16px !important;
    margin-bottom: 3px;
}

.footer ul li {
    list-style-type: none;
    font-size: 13px;
    line-height: 24px;
    margin-right: 7px
}

.footer ul li a {
    color: #000;
    text-decoration: none;
}

.f-social {
    display: flex;
    margin-left: 11px;
    justify-content: center;
}

.f-social li {
    margin: 0px 2px;
}

.footer-bottom {
    background-color: #000000;
    padding: 15px 0px;
    text-align: center;
    padding-left: 0px;
}



.footer-bottom p {
    margin-bottom: 0px;
    color: #fff;
    font-weight: 300;
    font-size: 13px !important;
}

.footer-bottom span a {
    color: #F8DE09;
}

.float-container {
    position: fixed;
    z-index: 999;
    top: 35%;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    width: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.float-container a {
    z-index: 1000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 220px;
    height: 45px;
    margin-right: -165px;
    margin-bottom: 10px;
    padding: 0px 10px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    color: #000;
    border-color: #46B8DA;
    /* border-radius: 5px 0 0 5px; */
    background: #FFF;
    -webkit-box-shadow: 0 2px 4px #7D7D7D;
    box-shadow: 0 2px 4px #7D7D7D;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    font-family: sans-serif;
    display: none;
    border: 1px dashed #0000007a;
    transition: all .5s ease-in-out;
}

.float-container a:hover {
    margin-right: -50px;
    background: transparent linear-gradient(270deg, #EF6331 0%, #F37E2F 29%, #FFCE29 100%) 0% 0% no-repeat padding-box;
    -webkit-box-shadow: 0 2px 4px #7D7D7D;
    box-shadow: 0 2px 4px #7D7D7D;
    font-size: 12px;
    text-align: center;
    font-weight: 600;
}

.float-container .icon:hover .icon:before {
    margin-right: 0px;
}

/* Icon settings - remove if not needed*/
.float-container .icon:before {
    background-size: contain;
    margin-right: 10px;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.icon.one:before {
    content: "";
    background-image: url(../img/float-home-c.svg);
    height: 35px !important;
    width: 40px !important;
    position: relative;
    z-index: 999;
    display: block;
    background-repeat: no-repeat;
}

.icon.two:before {
    content: "";
    background-image: url(../img/float-mirco-c.svg);
    height: 33px !important;
    width: 40px !important;
    position: relative;
    z-index: 999;
    display: block;
    background-repeat: no-repeat;
}

.icon.three:before {
    content: "";
    background-image: url(../img/float-note-c.svg);
    height: 35px !important;
    width: 40px !important;
    position: relative;
    z-index: 999;
    display: block;
    background-repeat: no-repeat;
}

.icon.fourth:before {
    content: "";
    background-image: url(../img/float-whtsapp-c.svg);
    height: 30px !important;
    width: 40px !important;
    position: relative;
    z-index: 999;
    display: block;
    background-repeat: no-repeat;
}

.flati-icon a {
    display: flex;
}

.our_team_btn ::after {
    content: '';
    position: absolute;
    height: 12px;
    width: 13px;
    transform: perspective(2.8rem) rotateX(3deg);
    background: transparent;
    z-index: 9999;
    top: -1px;
    right: -1px;
    border-bottom: 2px solid black;
    background-color: #000;
}

/* PACKAGE_DETAIL_PAGE_START */
.health-p img {
    display: block;
}

.packge-head {
    background: transparent linear-gradient(270deg, #FFCE29 0%, #F37E2F 29%, #EF6331 100%) 0% 0% no-repeat padding-box;
    height: 40px;
    color: #fff;
    display: flex;
    align-items: center;
    padding-left: 15px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    font-size: 18px;

}

.packge-head p {
    margin: 0px;
}

.packge-b {
    box-shadow: 0px 3px 10px #00000066;
    border-radius: 10px;
    height: max-content;
    width: 90%;
    margin: auto;
}

.packge-b-head {
    background: #EF6331 0% 0% no-repeat padding-box;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 10px 10px;
}

.packge-b-head p {
    margin: 0px;
}

.packag-con {
    display: flex;
    padding: 10px;
    align-items: center;
}

.packag-con p {
    display: inline-block;
    margin-bottom: 0px;
    color: #444242;
    font-size: 15px;
}

.packag-con p span {
    font-size: 12px;
    text-decoration: line-through;
    color: #777777;
}

.packag-hr {
    margin: 5px 20px;
    border-top: 2px solid #00000038;
}

.tot-sec {
    display: flex;
    margin-top: 15px;
    padding: 5px 10px;
    justify-content: space-between;
    padding-bottom: 40px;
}

.tot-sec p {
    margin-bottom: 0px;
    padding: 0px 10px;
}

.tot-sec p span {
    font-size: 13px;
}

.t-price {
    color: #EF6331;
}

.h-detail {
    margin-top: 35px;
    margin-left: auto;
    margin-right: auto;
}

.package-con-01 {
    background: #F6F6F6;
    padding: 10px 20px;
}

.package-con-01 h1 {
    font-size: 17px;
    color: #444242;
}

.package-con-01 p {
    color: #444242;
    font-size: 14px;
}

.h-detail-box02 {
    background: #F6F6F6;
    margin-top: 20px;
    padding: 10px 20px;
    border-radius: 3px;
}

.h-detail-box02 h1 {
    color: #EF6331;
    font-size: 17px;
    margin-bottom: 2px;
}

.h-detail-box02 p {
    color: #444242;
    font-size: 14px;
    margin-bottom: 0px;
}

.h-pkg-th {
    background: transparent linear-gradient(270deg, #FFCE29 0%, #F37E2F 29%, #EF6331 100%) 0% 0% no-repeat padding-box;
    color: #fff;
    text-align: center;
}

.h-pkg-table th,
.h-pkg-table td {
    border-right: 1px solid #707070;
    border-top: 0px;
}

.h-pkg-table th {
    border-bottom: 0px !important;
}

.h-pkg-table th:nth-last-child(1),
.table td:nth-last-child(1) {
    border: unset;
}

.table-striped1 tbody tr:nth-of-type(even) {
    background-color: #F9E8E1;
}

.h-pkg-table td {
    padding: 0.5rem;
    color: #2D2B2B;
    font-size: 14px;
}

.h-pkg-table thead th:nth-last-child(3) {
    border-top-left-radius: 10px;
}

.h-pkg-table thead th:nth-last-child(1) {
    border-top-right-radius: 10px;
}

.h-pkg-table {
    margin-top: 15px;
}

.faq-n {
    content: '';
    background-image: url('../img/faq-bann.png');
    background-size: cover;
    padding: 30px 10px;
}

.packge-head-sec {
    background: transparent linear-gradient(270deg, #FFCE29 0%, #F37E2F 29%, #EF6331 100%) 0% 0% no-repeat padding-box;
    padding: 10px;
    color: #fff;
    display: flex;
    align-items: center;
    padding-left: 15px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    font-size: 18px;

}

.packge-head-sec p {
    margin-bottom: 0px;
}

.faq-n a.nav-link {
    color: #444242;
    border: 1px solid #EF6331;
    background: #fff;
    margin-right: 10px;
    padding: 5px 25px;
    font-size: 14px;
}

.faq-n .nav-pills .nav-link.active {
    background-color: #EF6331;
}

.faq-n-head h1 {
    color: #EF6331;
    font-size: 18px;
    margin-bottom: 18px;
}

#main #faq .card {
    margin-bottom: 12px;
    border: 0;
}

#main #faq .card .card-header {
    border: 0;
    -webkit-box-shadow: 0 0 20px 0 rgba(213, 213, 213, 0.5);
    box-shadow: 0 0 20px 0 rgba(213, 213, 213, 0.5);
    border-radius: 2px;
    padding: 0;
}

#main #faq .card .card-header .btn-header-link {
    color: #fff;
    display: block;
    text-align: left;
    background: #ef6331;
    padding: 8px 10px;
    white-space: normal;
    border: 1px solid #ef6331;
    font-size: 13px;
    letter-spacing: 0px;
}

.faq-n ul li.nav-item {
    margin-bottom: 10px;
}

#main #faq .card .card-header .btn-header-link:after {
    content: "\f107";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    float: right;
}

#main #faq .card .card-header .btn-header-link.collapsed {
    background: #ffffff;
    color: #444242;
}

#main #faq .card .card-header .btn-header-link.collapsed:after {
    content: "\f106";
}

#main #faq .card .collapsing {
    background: #ef6331;
    line-height: 30px;
}

#main #faq .card .collapse {
    border: 0;
}

#main #faq .card .collapse.show {
    background: #ddd7d4;
    line-height: 30px;
    color: #060505;
    font-size: 13px;
    line-height: 20px;
}

.accordion .btn:focus {
    box-shadow: unset;
}

section.health-pkg {
    background-color: #F5F5F5;
    margin-top: 30px;
    padding-bottom: 20px;
}

.health-pkg-head {
    text-align: center;
    padding-top: 20px;
}

.pkg-bann-con {
    width: 43%;
    font-size: 16px !important;
}

.health-pkg-head h1 {
    font-size: 30px;
}

.upld-cart {
    width: 98% !important;
}

/* PACKAGE_DETAIL_PAGE_END */

/* /...... Health Package Start ......../ */
.health-card-1 {
    width: 100%;
    margin: 20px auto;
    /* box-shadow: 1px 0px 12px 3px rgb(106 97 97 / 50%); */
}

.value-hlth-p {
    padding-top: 20px;
}

.view_btn {
    width: 15%;
    height: 60px;
    margin: 20px auto;
    clip-path: polygon(0% 0%, 90% 0, 100% 40%, 100% 100%, 0 100%);
}

.health_01_row {
    padding-bottom: 30px;
    position: relative;
}

.book_now_btn a {
    color: #fff !important;
    display: flex;
    text-decoration: none;
    cursor: pointer;
}

.pkg-search {
    /* text-align: right; */
}

.pkg-search input {
    padding: 10px 15px;
    font-size: 14px;
    width: 82%;
    border-radius: 5px 0px 0px 5px;
    outline: none;
    border: 1px solid #ef6331;
}

.pkg-search input::placeholder {
    color: #808080;
    font-size: 12px;
}

.pkg-search span {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    background: #ef6331;
    padding: 11px 10px;
    margin-left: -5px;
    padding-bottom: 11px;
    position: absolute;
}


.home-services ul.nav,
.tbs ul.nav {
    /* margin: 0 auto; */
    text-align: center;
    width: 380px;
    height: 39px;
    background-color: #fff;
    border: 1px solid #d5d5d5;
    border-radius: 20px;
}

.home-services ul.nav li,
.packages ul.nav li {
    display: inline-flex;
    justify-content: center;
    width: 50%;
    /* line-height: 42px; */
    align-items: center;
    /* text-transform: uppercase; */
    /* border-radius: 20px; */
    /* font-weight: 700; */
    /* letter-spacing: .36px; */
    color: #222935;
}



.home-services ul.nav li a.active,
.packages ul.nav li a.active,
.pkj_slider ul.nav li.active,
.pkj_slider ul.nav li:hover {
    /* background: #38999f; */
    background: #ef6631;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#38999f", endColorstr="#38999f", GradientType=1);
    width: 100%;
    color: #fff;
    border-radius: 20px;
}

.sort_select {
    font-size: 14px !important;
    width: 180px;
    max-width: 180px;
    z-index: 31;
}

/* .form-control {
    border: 1px solid #ddd;
    box-shadow: none;
    color: #000;
    height: 40px;
} */
.rounded-pill {
    border-radius: 50rem !important;
}

.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    color: #444242cc;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.nav-tabs .nav-link {
    border: 0;
    font-size: 15px;
    color: #444242cc;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    transition: all 0.5s ease;
}















/* /...... Health Package End ......../ */

/* /..... Book Test By Organs Start ....../ */
.slider-orgns-1 {
    padding-bottom: 70px;
    margin-bottom: 0;
}

.book_orgn_row {
    margin-top: 20px;
}

.Oargn_box {
    margin: 0;
}

/*..... Mpdal ...... */
.modal-content {
    background-color: #EBF4FF;
    margin: auto;
    text-align: center;
    border: none;
}

.mdl-head-01 {
    display: inline;
    border: none;
    padding: 0;
}

.modal-header img {
    width: 60%;
    margin: auto;
}

.modal-header h1 {
    font-size: 18px;
    color: #1E1C1C;
    font-weight: 600;
    margin: 5px auto;
}

.modal-header p {
    font-size: 12px;
    color: #2D2B2B;
    padding-bottom: 5px;
    margin: 0;
}

.modal-items input {
    width: 85%;
    font-size: 12px;
    margin-top: 20px;
    padding: 8px 10px;
    border-radius: 5px;
    outline: none;
    border: 1px solid #9A9A9A;
}

.submit-btn {
    width: 100%;
    height: 40px;
}

.frt-content {
    font-size: 10px;
    padding-bottom: 20px;
}

.close_btn {
    text-align: right;
    width: 20px !important;
    background: none !important;
    /* margin-right: auto; */
    float: right;
    position: absolute;
    right: 10px;
    top: 10px;
}

.close {
    position: relative;
    width: 25px;
    fill: #EF6331;
    left: 12px;
    right: 0;
}

.modal-body {
    padding: 0;
}

.mt-50 {
    margin-top: 50px;
}

/* /..... Book Test By Organs End ....../ */

/* Contact Us Start */
.cont-banner-con h1::before {
    content: '';
    height: 2px;
    width: 45px;
    background: #fff;
    position: absolute;
    left: 39%;
    top: 50%;
}

.cont-banner-con {
    width: 40%;
    margin: auto;
    font-size: 14px;
}

.contact-us-banner {
    position: relative;
    text-align: center;
    color: #fff;
}

.contact-us-banner img {
    width: 100%;
}

.cont-banner-con h1::after {
    content: '';
    height: 2px;
    width: 45px;
    background: #fff;
    position: absolute;
    right: 39%;
    top: 50%;
}

.cont-banner-con {
    position: absolute;
    top: 35%;
    width: 100%;
}

.cont-banner-con h1 {
    position: relative;
}

.cont-banner-con p {
    width: 35%;
    margin: auto;
    font-size: 14px;
    padding-top: 15px;
}

.adr-con-box {
    width: 100%;
    /* height: 125px; */
    margin: auto;
    display: flex;
    /* padding: 10px; */
    /* background: transparent linear-gradient(270deg, #FFCE29 0%, #F37E2F 29%, #EF6331 100%) 0% 0% no-repeat padding-box; */
    vertical-align: middle;
    align-items: center;
    /* border-radius: 5px; */
}

.content-box {
    color: #fff;
    text-align: center;
}

.content-box h1 {
    font-size: 18px;
}

.content-box p {
    font-size: 12px !important;
    margin: 0;
}

.adr-con-box img {
    width: 50px !important;
    height: 50px;
    padding-right: 20px;
}

.cont-con-box,
.email-con-box {
    width: 100%;
    height: 125px;
    margin: auto;
    text-align: center;
    border-width: 4px;
    border-style: solid;
    background: linear-gradient(white, white) padding-box, linear-gradient(to right, #EF6530, #F37B2F, #FECA29) border-box;
    border-radius: 0.5em;
    border: 4px solid transparent;
    padding: 20px;
    color: black;
}

.cont-con-box h1,
.email-con-box h1 {
    font-size: 20px;
    color: #EF6331;
}

.cont-con-box img,
.email-con-box img {
    width: 25px !important;
    margin-right: 5px;
}

.cont-con-box p,
.email-con-box p {
    font-size: 20px;
}

.cont-con-box span {
    font-size: 20px;
}

.contact-form {
    width: 90%;
    padding: 30px;
    margin-top: 0px;
    border-radius: 10px;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 6px 16px #00000059;
}

.contact-form h1 {
    text-align: center;
    font-size: 25px;
    color: #2D2B2B;
    /* padding-top: 15px; */
}

.con-form-item input {
    width: 100%;
    padding: 5px;
    outline: none;
    padding-left: 35px;
    border-radius: 5px;
    border: 1px solid #7070709e;
}

.con-form-item input::placeholder {
    font-size: 12px;
    color: #C5C5C5;
}

.con-form-item {
    position: relative;
    margin-bottom: 15px;
}

.con-form-item label {
    font-size: 15px;
    color: #605F5F;
}

.con-form-item img {
    position: absolute;
    left: 8px;
    top: 42px;
    width: 18px;
}

#query {
    width: 100%;
    height: 140px;
    resize: none;
    outline: none;
    padding: 10px;

    border-radius: 5px;
    border: 1px solid #7070709e;
}

#query::placeholder {
    font-size: 12px;
    color: #C5C5C5;
}

.con-submit-btn {
    width: 100%;
    margin-top: 10px;
    border: none;
    color: white !important;
    cursor: pointer;
}

section.con-form {
    margin-top: 50px;
}

.con-map {
    margin-top: 20px;
}


/* Contact Us End */

.file-input__input {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.con-form-item span {
    color: red;
}

.file-input__label {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    font-size: 14px;
    padding: 10px 12px;
    background-color: #4245a8;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.25);
}

/* .file-input__label svg {
    height: 16px;
    margin-right: 4px;
} */

/* .upload-prc {
    width: 100%;
    font-weight: 500;
    font-size: 10px;
    color: #C5C5C5 !important;
    position: relative !important;
    background-color: #fff !important;
    box-shadow: none;
    padding: 10px 10px !important;
    border-radius: 5px;
    border: 1px solid #7070709e !important;
} */

.file-input svg {
    position: absolute;
    width: 18px;
    right: 25px;
    top: 13px;
    color: #ef6330;
    cursor: pointer;
}

.file-input label {
    font-size: 15px;
    color: #605F5F;
    margin: 0;
}

.btn_upload {
    width: 100%;
    font-weight: 500;
    font-size: 12px;
    color: #C5C5C5 !important;
    background-color: #fff !important;
    box-shadow: none;
    padding: 10px 10px !important;
    border-radius: 5px;
    border: 1px solid #7070709e !important;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
}

.btn_upload:hover,
.btn_upload:focus {
    background-color: #7ca9e6;
}

.btn_upload input {
    cursor: pointer;
    height: 100%;
    position: absolute;
    filter: alpha(opacity=1);
    -moz-opacity: 0;
    opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    cursor: pointer;
    z-index: 999;
}

.it {
    width: 100px !important;
    height: 50px;
    margin-top: 10px;
    margin-left: 10px;
}

.btn-rmv1,
.btn-rmv2,
.btn-rmv3,
.btn-rmv4,
.btn-rmv5 {
    display: none;
}

.it {
    display: block !important;
}

.rmv {
    width: 25px !important;
    cursor: pointer;
    height: 25px;
    color: #fff !important;
    position: absolute;
    top: 50px;
    right: 0px;
    left: 110px;
    padding: 0px !important;
    border-radius: 30px;
    border: 1px solid #fff !important;
    display: inline-block;
    background: rgba(255, 0, 0, 1);
    margin: -5px -10px;

}

img#ImgPreview {
    display: none;
}

.rmv:hover {
    background: rgba(255, 0, 0, 0.5);
}

.file-input p {
    font-size: 12px;
    color: #000;
    margin-bottom: 0px;
}

/*.......... About Us ..........*/

.about-us-banner img {
    width: 100%;
    margin-top: 30px;
}

.about-amins-hdr {
    text-align: center;
    margin-top: 45px;
}

.about-amins-hdr h1 {
    color: #000;
    font-size: 40px;
}

.about-amins-hdr p {
    font-size: 18px;
    color: #444242e0;
    margin-bottom: 35px;
}

.abt-amins-cont h3 {
    font-size: 25px;
    color: #000000;
}

.abt-amins-cont p {
    color: #2d2b2beb;
    font-size: 15px;
    text-align: justify;
}

.abt-amins-img img {
    margin-left: 50px;
    width: 80%;
}

.our-team-abt {
    padding: 35px 0;
}

.our-team-hdr {
    /* margin-top: 30px; */
    text-align: center;
}

.our-team-hdr h1 {
    font-size: 40px;
    color: #000;
}

.our-team-hdr p {
    font-size: 15px;
    color: #2D2B2B;
    margin-bottom: 45px;
}

.our-card-content {
    text-align: center;
    padding: 20px 20px 15px 20px;
    min-height: 270px;
}

.our-card-title-1 {
    font-size: 17px;
    color: #2D2B2B;
    margin-bottom: 6px;
}

.our-card-title-2 {
    font-size: 13px;
    color: #2D2B2B;
}

.our-card-text {
    font-size: 12px;
    color: #444242;
    margin: 0;
    text-align: left;
}

.btn-read-more img {
    display: block;
}

.btn-read-more {
    float: right;
}

.our-team-card {
    border: 0;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 2px rgb(106 97 97 / 37%);
    width: 90%;
    margin: auto;
}

.our-team-card img {
    width: 40%;
    margin: auto;
    border-radius: 50%;
    border-top-left-radius: calc(0.25rem - 1px);
    border-top-right-radius: calc(0.25rem - 1px);
}


/*........ Term and Condition ............*/
.term-condi-banner {
    margin-top: 30px;
}

.term-condi-banner img {
    width: 100%;
}

.term-condi-cont {
    padding: 40px 0 20px 0;
    text-align: justify;
}

.term-condi-cont h1,
.privacy-policy-cont h1 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 30px;
    color: #3A3737;
}

.term-condi-cont p,
.cont-privacy-polic p {
    font-size: 15px;
    color: #3a3737de;

}

/*........ Privacy Policy ........*/

.privacy-policy-banner {
    margin-top: 30px;
    position: relative;
}

.privacy-policy-banner img {
    width: 100%;

}

.privacy-policy-banner h3 {
    position: absolute;
    top: 40%;
    left: 15%;
    color: #fff;
    font-size: 35px;

}

/*....... Thank You .......*/

.thnk-page {
    margin-top: 35px;
}

.thnk-box {
    width: 50%;
    text-align: center;
    padding: 50px 20px 20px 20px;
    border-radius: 10px;
    margin: 85px auto;
    box-shadow: 0px 4px 20px #00000040;
}

.pls-img,
.thnk-img {
    margin-bottom: 15px;
}

.pls-img img {
    width: 10%;
}

.thnk-img img {
    width: 50%;
}

.thnk-btn {
    width: 150px !important;
    height: 50px;
    font-size: 14px;
    margin: 35px auto;
}

.thnk-cont p {
    font-size: 16px;
    color: #7b7b7bde;
    line-height: 26px;
}

/*........... Mission Vision Value ................*/
.mission-banner {
    margin-top: 30px;
}

.mission-banner img {
    width: 100%;
}

.our-vision {
    padding: 35px 0;
}

.our-vision h1,
.cont-mission h1 {
    font-size: 35px;
    color: #444242;
    padding-bottom: 10px;
}

.our-vision ul li,
.cont-mission ul li {
    font-size: 15px;
    color: #444242e6;
    line-height: 35px;
}

.our-vision ul,
.cont-mission ul {
    margin-left: 18px;
}

.vision-cont {
    padding-left: 25px;
}

.vision-img img {
    width: 42%;
}

.vision-img {
    text-align: center;
}

.our-mission {
    background-repeat: no-repeat;
    width: 100%;
    background-size: cover;
    background-image: url(../img/mission-bg.png);
}

.our-mission img {
    width: 42%;
}

.mission-img {
    text-align: center;
}

.cont-mission {
    margin-left: 90px;
    margin-top: 60px;
}

.our-objt h1 {
    text-align: center;
    font-size: 35px;
    color: #444242eb;
}

.box-object {
    width: 300px;
    height: 300px;
    margin: auto;
    border-radius: 40px;
    box-shadow: 0px 4px 24px #00000040;
    transform: rotateZ(45deg);
}

.box-object-con {
    position: absolute;
    left: -210px;
    right: 0px;
    top: 20px;
}

.objt-img {
    max-width: 200px;
    margin: auto;
}

.objt-img img {
    width: 25%;
}

.objt-cont {
    padding: 15px 50px;
}

.objt-img,
.objt-cont {
    text-align: center;
}

.objt-cont h1 {
    padding-top: 20px;
    font-size: 15px;
    color: #444242;
}

.objt-cont p {
    width: 70%;
    margin: auto;
    font-size: 12px !important;
    color: #3a3838;
    padding-top: 10px;
}

.our-objt {
    overflow: hidden;
    padding-top: 40px;
    padding-bottom: 90px;
}

.obj-con {
    transform: rotateZ(-45deg);
}

.box-obj-row {
    margin-top: 85px;
}

.health_pack-01 {
    text-align: center;
    margin-bottom: 40px;
}

.health_pack-01 h1 {
    color: #2D2B2B;
    padding-top: 35px;
}

/*....... Report Form ........*/

.report-img-box img {
    /* width: 100%; */
    width: 97.5%;
    border-radius: 15px;
    box-shadow: 0px 0px 14px #CCC8C8;
}

.report-box {
    margin-top: 60px;
}

.report-cont {
    width: 85%;
    margin: auto;
    padding: 25px 30px;
    border-radius: 15px;
    margin-bottom: 80px;
    box-shadow: 0px 0px 10px #00000059;
}

.test-rpt-form h1 {
    font-size: 25px;
    text-align: center;
    color: #605F5F;
    margin-bottom: 25px;
}

.report-form-item input {
    width: 100%;
    padding: 5px 10px;
    outline: none;
    border-radius: 5px;
    border: 1px solid #7070709e;
}

.report-form-item input::placeholder {
    font-size: 12px;
    color: #C5C5C5;
}

.report-form-item label {
    font-size: 15px;
    color: #605f5feb;
}

.report-form-item {
    margin-bottom: 15px;
}

.report-img-box {
    /* width: 100%; */
    width: 84%;
    margin: auto;
}

.term-condi-cont ul {
    padding-left: 10px;
}

/* .report-img-box {
    margin-left: 15%;
} */

/*.......... Test Details  ..........*/

.test-details-banner img {
    width: 97%;
    margin-top: 28px;
}

/*.......... about-us our journey ..........*/
section.our_journey {
    margin-top: 100px;
    background-image: url('../img/journey-bg.png');
    background-size: cover;
    padding-bottom: 35px;
}

.journey {
    padding-bottom: 110px;
    padding-top: 35px;
}

.journey h1 {
    text-align: center;
    font-size: 23px;
    width: 50%;
    margin: auto;
}

.journey-img {
    position: relative;
    margin-top: -50px;
}

.journey img {
    width: 100%;
    margin-top: 130px;
}

.journey-first-con {
    text-align: center;
    width: 200px;
    position: absolute;
    left: 15%;
    margin-top: 80px;
}

.journey-first-con h1 {
    color: #EF6331;
    font-size: 25px;
    text-align: center;
}

.journey-first-con p {
    color: #444242;
    font-size: 14px;
}

.journey-sec-con {
    left: 42%;
    width: 250px;
    top: 25px;
}

.journey-third-con {
    right: 12%;
    left: unset;
    width: 250px;
}

.journey-fourth-con {
    right: -2%;
    top: 110px;
    width: 200px;
    left: unset;
}

.journey-first-con01 {
    margin-top: 25%;
    left: 0;
}

.journey-first-con02 {
    left: 29.5%;
    margin-top: 25%;
}

.journey-first-con03 {
    left: 58.5%;
    margin-top: 25%;
}

.journey-first-con04 {
    margin-top: 38%;
    left: 13%;
}

.journey-first-con05 {
    margin-top: 34%;
    left: 42%;
}

.journey-first-con06 {
    margin-top: 35%;
    left: 71%;
}

.journey-first-con07 {
    margin-top: 54%;
    left: 86%;
}

.journey-first-con08 {
    margin-top: 54%;
    left: 57%;
}

.journey-first-con09 {
    margin-top: 54.2%;
    left: 27%;
}

.journey-first-con10 {
    left: -3%;
    margin-top: 40%;
}

.journey-first-con11 {
    left: 8%;
    margin-top: 78%;
}

.journey-first-con12 {
    left: 23.5%;
    margin-top: 76%;
}

.test-details-banner img {
    width: 100%;
    margin-top: 28px;
    padding-bottom: 30px;
}

.test-head-sec {
    margin-bottom: 20px;
    
}
.test-head-sec h2 {
    font-size: 15px;
    margin: 0;
}
.test-head-sec h1 {
    font-size: 15px;
    margin: 0;
}
.test-tble th,
.test-tble td {
    font-size: 15px;
    color: #444242;
    padding: 5px 0;
    border: none !important;
}

.test-con-01 {
    border-radius: 10px 10px 0px 0px;
    margin-bottom: 20px;
}

.test-con-02 {
    border-radius: 10px 10px 0px 0px;
    font-size: 15px;
    color: #444242;
    margin-bottom: 20px;
}

.test-con-02 ul {
    margin-left: 20px;
    margin-bottom: 5px;
}

.test-con-02 ul li {
    font-size: 14px;
    color: #444242;
    padding-top: 5px;
}

.test-con-02 ul li::marker {
    color: #EF6331;
    font-size: 12px;
}

.our-card-text p {
    position: relative;
    padding-left: 16px;
    margin-bottom: 0px;
}

.our-card-text p {
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.about-more::before {
    content: '';
    background: url(../img/confirmation.svg);
    display: block;
    width: 18px;
    height: 18px;
    position: absolute;
    background-repeat: no-repeat;
    background-size: 20px;
    left: -2px;
    top: 0px;
}

.moreless-button,
.moreless-button1,
.moreless-button2,
.moreless-button3 {
    box-shadow: none;
    background: none;
    border: none;
    color: #007bff;
    float: right;
    cursor: pointer;
}

.moretext,
.moretext1,
.moretext2,
.moretext3 {
    display: none;
}

.haxy-new {
    position: absolute;
    top: 50%;
    display: flex;
    left: 9%;
}

.slide__content.hax {
    position: unset;
    height: 215px;
    width: 235px;
    text-align: center;
    padding-top: 40px;
    margin-left: 15px;
}

.slide__content {
    position: unset;
    height: 215px;
    width: 235px;
    text-align: center;
    padding-top: 40px;
    margin-left: 15px;
}

.ban-cont-n {
    position: absolute;
    top: 45px;
    text-align: center;
    color: #fff;
    left: 5%;
}

.slide__content.hax img {
    margin: auto;
    width: 70px;
    height: 70px;
}

.slide__content.hax h1 {
    font-size: 13px;
    margin-top: 15px;
}

.slide__content.hax {
    padding-top: 45px;
}

.slide__content.hax a {
    color: #000;
    text-decoration: none;
}

.slide__content.hax a:hover {
    text-decoration: none;
}

.certi-new {
    position: absolute;
    margin-top: 0;
    bottom: 50px;
    left: 40px;
    color: #fff;
}

.certi-new h2 {
    font-size: 20px;
    font-weight: 400;
    padding-bottom: 5px;
}

.certi-new img {
    width: unset;
}

.certi-new p {
    font-weight: 400;
    ;
}

.cart-sec {
    margin-top: 60px;
}

.cart-form {
    margin-top: 0;
    box-shadow: 0px 3px 10px #00000066;
}

select#relation {
    width: 100%;
    padding: 10px 10px;
    font-size: 14px;
    font-weight: 100;
    color: #707070;
    outline: none;
    border: 2px solid #7070705c;
}



.cart-btn {
    width: 20%;
    font-size: 12px;
    margin: auto;
    clip-path: polygon(0% 0%, 90% 0, 100% 40%, 100% 100%, 0 100%);
}

.cart-box {
    border-radius: 5px;
}

.cart-form-heading h5 {
    color: #686565;
    font-size: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ef6331a6;
}

.cart-form-heading h6 {
    color: #686565;
    font-size: 14px;
    padding: 10px 0;
}

.add-more-cart-btn {
    margin-right: 25px;
    margin-top: 35px;
}

.cart-b {
    position: relative;
}

.bottom {
    position: absolute;
    bottom: 15px;
    width: 100%;
    /* margin: 0 25px; */
    /* padding: 0px 25px; */
    /* border-bottom: 2px solid #000000bf; */
}

.hm-clc {
    margin: 20px;
    border-bottom: 2px solid #000000bf;
    padding-bottom: 10px;
    padding-top: 20px;
}

.hm-clc h1 {
    font-size: 15px;
    color: #167A19;
}

i.fa-solid.fa-plus {
    margin-top: -3px;
    margin-right: 5px;
    font-size: 20px;
}

/*......... Testimonial ...........*/

.testi-sec {
    position: relative;
    padding: 40px 0 20px 0;
    /* background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../img/testi-sec-bg.webp); */
}

.testi-sec::before {
    top: 0;
    width: 50%;
    right: 30px;
    height: 300px;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    content: '';
    background-image: url(../img/testi-sec-bg.webp);
}

.testi-banner {
    margin-top: 30px;
}

.testi-banner img {
    width: 100%;
}

.testimo-h h2 {
    padding-bottom: 12px;
    border-bottom: 2px solid #b5b1b1dd;
}

/* CAREER */


.career-01 {
    margin-bottom: 70px !important;
    margin-top: 15px;
}

.career-banner {
    margin-top: 30px;
    position: relative;
}

.bnnr-heading {
    color: #fff;
    position: absolute;
    text-align: center;
    top: 30%;
    left: 40%;
}

.bnnr-heading h3 {
    font-size: 40px;
}

.bnnr-heading h4 {
    font-size: 25px;
    font-weight: 300;
    color: #fff;
}

.career-banner img {
    width: 100%;
}

.crr-image img {
    width: 100%;
}

.career-sec {
    text-align: center;
    padding: 25px 0;
}

.car-cont {
    width: 50%;
    margin: auto;
}

.car-cont h1 {
    font-size: 35px;
    color: #3D363A;
}

.car-cont p {
    font-size: 15px;
    color: #605F5F;
}

.career-btn {
    width: 17%;
    font-size: 14px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.car-sec-box {
    position: relative;
}

.car-sec-box img {
    width: 100%;
}

.car-sec-box-cont {
    top: 32%;
    left: 11%;
    color: #fff;
    position: absolute;
    width: 22%;
    text-align: center;
}

.car-sec-box-cont h1 {
    font-size: 25px;
    margin-bottom: 15px;
}

.car-sec-box-cont p {
    font-size: 17px;
    font-weight: 300;
}

.our-cltr-img img {
    width: 100%;
}

.our-cltr-cont h1 {
    color: #2D2B2B;
    font-size: 30px;
    margin-bottom: 10px;
}

.our-cltr-cont h2 {
    color: #605F5F;
    font-size: 17px !important;
    margin-bottom: 50px;
    line-height: 29px;
    text-align: justify;
}

.our-cltr-cont p {
    color: #605f5fdb;
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 30px;
    text-align: justify;
}

/*
.our-cltr-cont p {
    color: #605f5fdb;
    font-size: 17px !important;
    margin-bottom: 50px;
    line-height: 29px;
}
 .our-cltr-cont{
    margin-top: 30px;
} */

.our-cltr-sec {
    width: 55%;
    margin: auto;
    text-align: center;
    padding: 30px 0;
}

.our-cltr-sec h1 {
    color: #2D2B2B;
    font-size: 30px;
}

.our-cltr-sec p {
    color: #605F5F;
    font-size: 15px;
}

.crrnt-opning {
    width: 100%;
    margin-top: 50px;
    background-size: cover;
    background-repeat: no-repeat;
    content: '';
    background-image: url(../img/career-bg1.webp);
}

.crr-ovrvw-wrap {
    padding: 30px 0;
}

.crr-ovrvw-heading h1 {
    font-size: 28px;
    color: #2d2b2be6;
    padding-bottom: 20px;
}

.crr-qlty-assnc-heading h1 {
    font-size: 15px;
    color: #2d2b2bee;
    margin-bottom: 3px;
}

.crr-qlty-assnc-heading p {
    font-size: 13px;
    color: #747070;
    margin-bottom: 15px;
}

.crr-qlty-assnc-heading h3 {
    font-size: 14px;
    color: #2D2B2B;
}

.crr-qlty-assnc {
    position: relative;
    background: #F0F0F0;
    padding: 20px;
    border-radius: 40px;
    margin-bottom: 40px;
    background: linear-gradient(#F0F0F0, white) padding-box, linear-gradient(3deg, #FFCE29 0%, #F37E2F 29%, #EF6331 100%) border-box;
    border-radius: 40px;
    border: 6px solid transparent;
}

.car-btn {
    width: 100%;
    font-size: 15px;
    text-align: left;
    padding: 10px 15px;
    color: #747070;
    background-color: #fff;
    outline: none !important;
    border: 1px solid #8b8b8b96;
}

.acc-car-cont {
    font-size: 15px;
    color: #747070;
    padding: 10px 15px 10px 25px;
    background: #ffff;
}

.career-form {
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0px 0px 30px #00000029;
    background-color: #ffff;
}

/*
.career-ovrw-cont {
    padding: 45px 0;
} */

.file-input .upld-cv {
    width: 100% !important;
    outline: none;
    font-size: 13px;
    color: #707070 !important;
    border-radius: 5px;
    border: 1px solid #0e0d0da6 !important;
}

.career-form input {
    width: 95%;
}

.career-form #address,
#history {
    width: 97%;
}

.cv-yes {
    /* margin-top: 8px !important; */
    position: relative;
}

.crr-box {
    border-radius: 0;
    height: 45px;
    border: 2px solid #7070705c;
    color: grey !important;
    font-size: 13px !important;
    font-weight: 300 !important;
    width: inherit;
}



.file-input .up-cv {
    width: 20px;
    right: 10px;
}

.yes {
    position: relative;
}

.cv-box {
    width: 97% !important;
}

.cv-yes input {
    width: 97%;
}

.rmv-new {
    width: 25px;
    cursor: pointer;
    color: #fff;
    position: relative;
    top: -15px;
    right: 5px;
    border-radius: 30px;
    border: 1px solid #fff;
    display: inline-block;
    background: rgba(255, 0, 0, 1);
    margin: -5px -10px;
    padding: 0px;
    height: 25px;
}

/*..... FAQ Start ....*/


.faq-banner img {
    width: 100%;
}

.faq-banner {
    margin-top: 30px;
}

.faq-h {
    text-align: center;
    margin-top: 25px;
    margin-bottom: 25px;
}

.faq-h h1 {
    font-size: 25px;
    color: #3A3737;
}

.faq-h p {
    font-size: 15px;
    color: #605f5fde;
    width: 45%;
    margin: auto;
}

.faq_con a.nav-link {
    color: #444242;
    /* border: 1px solid #EF6331; */
    background: #EBEBEB;
    margin-bottom: 10px;
    padding: 8px 20px;
    font-size: 14px;
}

.faq_con .nav-pills .nav-link.active {
    background-color: #EF6331;
}

.faq_con .btn-header-link.collapsed {
    background: #EBEBEB !important;
    color: #444242;
}

.faq_con .card .card-header .btn-header-link {
    border: none !important;
}

.faq-btn {
    display: inline-block;
}


/*..... Awards Start ....*/

.award-banner img {
    width: 100%;
    position: relative;
}

.award-banner {
    position: relative;
    margin-top: 30px;
}

.award-banner p {
    position: absolute;
    width: 30%;
    text-align: center;
    font-size: 13px;
    color: #FFFFFF;
    bottom: 75px;
    right: 220px;
    font-weight: 300;
}

.award-sec-h {
    text-align: center;
    padding: 25px 0;
    margin: 0;
}

.award-sec-h h1 {
    font-size: 30px;
    color: #3D363A;
}

.award-sec-h p {
    width: 45%;
    margin: auto;
    font-size: 15px;
    color: #605F5F;
    padding-top: 10px;
}

.award-sec img {
    width: 100%;
}

.awrd-cont {
    position: relative;
    content: '';
    width: 100%;
    padding: 45px 90px;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../img/awards-bg-2.webp);
}

.awrd-cont p {
    font-size: 15px;
    color: #605F5F;
    font-weight: 300;
    line-height: 30px;
}

.awrds-cont-h {
    position: absolute;
    content: '';
    width: 50%;
    top: -201px;
    text-align: center;
    left: 375px;
    padding: 35px 60px;
    box-shadow: -20px -20px 10px -20px #000000b8;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../img/awards-bg-2.webp);
}

.awrds-cont-h h1 {
    color: #3D363A;
    font-size: 40px;
}


/*........ Accreditation Start .........*/


.accredi-banner {
    position: relative;
    margin-top: 30px;

}

.accredi-banner img {
    width: 100%;
}

.accredi-h {
    width: 32%;
    text-align: center;
    position: absolute;
    top: 90px;
    left: 240px;
    color: #fff;
}

.accredi-h p {
    font-size: 15px;
    font-weight: 300;
    padding-top: 15px;
}

.accredi-h h1 {
    font-size: 50px;
    padding-bottom: 5px;
    font-weight: 600;
    text-shadow: 0px 3px 6px #00000029;
}

.accredi-h h3 {
    font-size: 35px;
    padding-bottom: 5px;
    font-weight: 500;
    text-shadow: 0px 3px 6px #00000029;
}


/*........ Corporate Office ........*/


/* .cor-off-banner{
    position: relative;
    margin-top: 30px;
    margin-bottom: 135px;

}
.cor-off-banner img{
    width: 100%;
}
.cont-adr.cor-off-addr {
    width: 90%;
    position: absolute;
    border-width: 4px;
    border-style: solid;
    background: linear-gradient(white, white) padding-box, linear-gradient(to right, #EF6530, #F37B2F, #FECA29) border-box;
    border: 4px solid transparent;
    padding: 20px 0 35px 0;
    bottom: -100px;
    left: 80px;
}
.corpo-cont{
    padding: 35px 60px;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../img/corpo-off-bg.webp);
}
.corpo-cont h1 {
    font-size: 30px;
    color: #2d2b2bde;
    padding-bottom: 15px;
}
.corpo-cont h4 {
    font-size: 20px;
    color: #2d2b2bde;
    padding-bottom: 5px;
}
.corpo-cont p {
    font-size: 15px;
    color: #605F5F;
    font-weight: 300;
    line-height: 30px;
}
.corpo-form{
    width: 90%;
    margin: auto;
    padding: 25px;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 6px 16px #00000059;
    border-radius: 10px;
    opacity: 1;
    margin-bottom: 35px;
}
.corpo-form h1 {
    font-size: 25px;
    color: #2d2b2be0;
    text-align: center;
} */

/*......... NEWS AND EVENTS .........*/
.n-event {
    margin-top: 30px;
    position: relative;
}

.n-event-bann img {
    width: 100%;
}

.news-bann-cont {
    position: absolute;
    right: 5%;
    top: 25%;
    width: 39%;
    color: #fff;
    text-align: center;
}

.news-bann-cont h1 {
    color: #fff;
    font-size: 45px;
    text-align: center;
}

.bann-cont-press {
    text-align: center;
    font-size: 30px;
    color: #fff;
}

.news-head {
    text-align: center;
    color: #000;
    width: 50%;
    margin: 25px auto;
}

.news-head p {
    margin-top: 10px;
}

.news-list {
    background-image: url(../img/news-event-bg.webp);
    background-repeat: no-repeat;
    padding: 35px 10px;
}

.news-list-box {
    clip-path: polygon(0 0, 100% 0, 90% 96%, 10% 96%);
    width: 75%;
    margin: auto;
    margin-top: 55px;
}

.news-list-box img {
    width: 100%;
}

.news-box-bottom {
    padding-bottom: 15px;
}

.news-event-band {
    position: absolute;
    bottom: 27%;
    left: 33px;
}

.news-event-band img {
    width: 425px;
}

.news-event-band p {
    position: absolute;
    top: 35%;
    left: 18%;
    font-size: 20px;
    color: #fff;
}

.news-view-more {
    position: absolute;
    left: 27%;
    bottom: 15%;
    height: 30px;
}

.news-more-btn {
    position: absolute;
    bottom: 18%;
    left: 40%;
}

.press-r {
    background-image: url(../img/news&event-bg2.webp);
    background-repeat: no-repeat;
    padding: 35px 10px;
}

.news-card-top {
    background: transparent linear-gradient(270deg, #F37E2F 0%, #FFCE29 40%, #FFCE29 100%) 0% 0% no-repeat padding-box;
    position: relative;
}

.news-card-top-img img {
    position: absolute;
    top: 30px;
    left: 18px;
    width: 65px;
}

.news-card-top h1 {
    font-size: 17px;
    text-align: center;
    padding: 28px 50px;
    color: #fff;
    padding-left: 70px;
    line-height: 25px;
}

.news-card {
    width: 60%;
    margin: auto;
    background-color: #F1EFF0;
    box-shadow: 0px 0px 30px 10px #D1CCCF;
    border-bottom-left-radius: 10px;
    margin-bottom: 30px;
    border-bottom-right-radius: 10px;
}

.news-event-date {
    text-align: center;
}

.news-event-date p {
    padding-bottom: 0px !important;
}

.news-card p {
    color: #757575;
    text-align: center;
    padding: 10px 20px;
    font-weight: 400;
    padding-bottom: 20px;
}

.news-event-date p {
    color: #000;
}


/* FAQ */
.faq-banner img {
    width: 100%;
}

.faq-banner {
    margin-top: 30px;
}

.faq-h {
    text-align: center;
    margin-top: 25px;
    margin-bottom: 25px;
}

.faq-h h1 {
    font-size: 25px;
    color: #3A3737;
}

.faq-h p {
    font-size: 15px;
    color: #605f5fde;
    width: 45%;
    margin: auto;
}

.faq_con a.nav-link {
    color: #444242;
    /* border: 1px solid #EF6331; */
    background: #EBEBEB;
    margin-bottom: 10px;
    padding: 8px 20px;
    font-size: 14px;
}

.faq_con .nav-pills .nav-link.active {
    background-color: #EF6331;
}

.faq_con .btn-header-link.collapsed {
    background: #EBEBEB !important;
    color: #444242;
}

.faq_con .card .card-header .btn-header-link {
    border: none !important;
}

.faq-btn {
    display: inline-block;
}

/* News event details */
/*
.news-detail-img {
    width: 60%;
    margin: auto;
    position: relative;
}

.news-detail-img img {
    width: 100%;
}
*/
.news-detail-img {
    width: 65%;
    height: 600px;
    margin: auto;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../img/photoframe.webp);
}

.news-detail-img img {
    width: 91%;
    height: 408px;
    margin-left: 20px;
    margin-top: 172px;
}

.news-detail-img-person {
    width: 80%;
    position: absolute;
    top: 21%;
    left: 11%;
}

.news-detail-con {
    position: absolute;
    top: 2%;
    left: 18%;
}

.news-detail-con h1 {
    font-size: 20px !important;
}

.news-detail-con-des {
    top: 32%;
    position: absolute;
    left: 15%;
}

/* .event-detail-con {
    content: '';
    background-image: url(../img/news-shapes.webp);
    background-size: cover;
    height: 345px;
    position: relative;
} */

.event-detail-con {
    content: '';
    background-image: url(../img/news-shapes.webp);
    background-size: contain;
    background-repeat: no-repeat;
    height: 345px;
    position: relative;
    margin-top: 25px;
}

.news-content p {
    padding-top: 20px;
    padding-left: 15px;
}

.news-detail h1 {
    padding-top: 40px;
    font-size: 25px;
    font-weight: 400;
    text-align: center;
    padding-bottom: 15px;
}


/* OUR DEPARTMENTS */

.our-depart-banner {
    position: relative;
    margin-top: 30px;
}

.our-depart-banner img {
    width: 100%;
}

.bannr-head {
    position: absolute;
    text-align: center;
    color: #fff;
    width: 36%;
    top: 25%;
    left: 15%;
}

.bannr-head h1 {
    font-size: 50px;
    margin: 0;
}

.bannr-head p {
    font-size: 15px;
    font-weight: 300;
    padding-top: 28px;
}

.expe-row-sec {
    /* background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../img/rect-bg.png); */
    padding-top: 70px;
}

/* .dep-h {
    width: 72%;
    border: 5px solid #d2d2d2;
    padding: 9px;
    margin: auto;
    border-radius: 10px;
} */

.dep-cart {
    padding: 20px;
    box-shadow: 0 0 20px #e1e1e1;
    background: #fff;
    border-radius: 10px;
}

.dep-cart-cont {
    padding-top: 15px;
}

.arrow-dep {
    width: 40px;
    height: 40px;
    margin: auto;
    background: transparent linear-gradient(281deg, #FFCE29 0%, #F37E2F 29%, #EF6331 100%) 0% 0% no-repeat padding-box;
    padding: 7px;
    border-radius: 50%;
}

.dep-cart-cont h1 {
    font-size: 20px;
    color: #0C0C0C;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.area-expert {
    padding-bottom: 100px;
}

.dep-cart-cont p {
    color: #605F5F;
    font-size: 13px;
    margin-bottom: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    min-height: 70px;
}

.areas-head {
    width: 45%;
    text-align: center;
    padding: 30px 0 10px;
    margin: auto;
}

.areas-head h1 {
    font-size: 30px;
    color: #000;
    margin-bottom: 20px;
}

.areas-head p {
    color: #605F5F;
    font-size: 15px;
}

.area-expert {
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../img/departments-bg.png);
}

.our-dep {
    padding: 15px 0px 55px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../img/our-dep-bg1.png);
}

.our-dep-cont p {
    color: #676767;
    font-size: 15px;
    line-height: 25px;
}

.our-dep .slide {
    margin-top: 40px;
}

.our-dep-img img {
    width: 85%;
}



.our-dep-team {
    padding: 40px 0;
    margin-bottom: 30px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../img/our-dep-team-bg.png);
}

.our-dept-organs {
    padding-bottom: 40px;
}

.center-close-status {
    margin-right: -15px;
    margin-top: 5px;
}

.our-dep-cont ul {
    margin-left: 20px;
}

.stick-dots_new .slick-nav.prev-arrow {
    left: 90%;
    top: 0;
}

.stick-dots_new .slick-nav.next-arrow {
    left: 94%;
    top: 0;
}

.card-img-head {
    width: 100%;
    border-top-left-radius: calc(1rem - 1px);
    border-top-right-radius: calc(1rem - 1px);
}


/* FIND A CENTRE */
.find-cent-banner img {
    width: 100%;

}

.center-search {
    position: relative;
}

.center-head h1 {
    font-size: 28px;
    padding: 15px 0px;
}

.center-search span {
    background: #EF6331;
    padding: 8px 12px;
    /* margin-left: 1px; */
    padding-bottom: 11px;
    clip-path: polygon(0% 0%, 70% 0, 100% 50%, 70% 100%, 0% 100%);
    position: absolute;
    text-align: center;
    left: 0px;
}

.center-search span img {
    width: 17px;
    margin-right: 5px;
}

.center-search input {
    padding: 10px 15px;
    font-size: 14px;
    width: 84%;
    outline: none;
    border: 1px solid #EF6331;
    padding-left: 60px;
}

.center-search select {
    padding: 10px 15px;
    font-size: 14px;
    width: 84%;
    outline: none;
    border: 1px solid #EF6331;
    padding-left: 60px;
    height: auto !important;
}

.center-filter {
    background-image: url(../img/center-filter-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 30px 0px;
}

.center-content-head {
    justify-content: space-between;
}

.center-content {
    background-image: url(../img/center-content-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    border: 1px solid #F69629;
    padding: 10px 14px;
    margin-bottom: 24px;
}

.cntr-sbmit {
    width: 38%;
    height: 41px;
    margin-top: 0px;
    margin: unset;
    clip-path: polygon(0% 0%, 90% 0, 100% 35%, 100% 100%, 0 100%);
}

.center-name {
    display: flex;
    align-items: center;
}

.center-name img {
    width: 24px;
}

.center-name h1 {
    font-size: 22px;
    margin-bottom: 0px;
}

.center-share-dir {
    display: flex;
    align-items: center;
    margin-left: 10px;
    width: 65%;
}

.share-dir-icon .share-btn {
    width: 35%;
}

.center-addres {
    margin-top: 16px;
}

.center-addres p {
    font-size: 14px;
    margin-left: 26px;
    color: #8F8F8F;
}

.center-share-dir p {
    margin-bottom: 0px;
    color: #8F8F8F;
    margin-left: 5px;
    font-size: 15px;
}

.center-content-bottom {
    justify-content: space-between;
}

.phone-timing {
    display: flex;
    align-items: center;
}

.phone-timing p {
    margin: 8px;
}

.phone-timing-main {
    margin-right: 27px;
}

.center-contact-info {
    display: flex;
    align-items: center;
    padding-left: 8px;
}

.center-number p {
    font-size: 14px;
    margin-left: 22px;
    color: #8F8F8F;
}

.center-close-status p {
    padding: 6px 10px;
    font-size: 13px !important;
    color: #F06B30;
    font-weight: 500;
    text-align: right;
}

.center-close-status a .center-req {
    background: #F06B30;
    padding: 6px 10px;
    font-size: 13px !important;
    color: #FFFFFF;
    font-weight: 500;
}

/* Accreditation */

.accredi-banner {
    position: relative;
    margin-top: 30px;
}

.accredi-banner img {
    width: 100%;
}

.accredi-h {
    width: 32%;
    text-align: center;
    position: absolute;
    top: 90px;
    left: 240px;
    color: #fff;
}

.accredi-h p {
    font-size: 15px;
    font-weight: 300;
    padding-top: 15px;
}

.accredi-h h1 {
    font-size: 50px;
    padding-bottom: 5px;
    font-weight: 600;
    text-shadow: 0px 3px 6px #00000029;
}

.accredi-h h3 {
    font-size: 35px;
    padding-bottom: 5px;
    font-weight: 500;
    text-shadow: 0px 3px 6px #00000029;
}

.accre-cart {
    padding: 35px 0 60px 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../img/accre-bg-1.webp);
}

.accre-h {
    text-align: center;
    padding: 20px 0;
}

.accre-h h1 {
    color: #3D363A;
    font-size: 30px;
}

.accre-h p {
    color: #605f5fd9;
    width: 45%;
    margin: auto;
    font-size: 15px;
}

.accre-box {
    width: 75%;
    margin: auto;
}

.accre-cont-h {
    margin-bottom: 30px;
    text-align: center;
    color: #0C0C0C;
    font-size: 25px;
}

.accre-card {
    border-width: 4px;
    border-style: solid;
    background: linear-gradient(white, white) padding-box, linear-gradient(179deg, #EF6530, #F37B2F, #FECA29) border-box;
    border: 10px solid transparent;
    border-radius: 50px 50px !important;
}

.accre-card img {
    border-radius: 40px 40px 0px 0px;
}

.accre-cart-cont {
    padding: 20px 25px;
    margin-bottom: 20px;
}

.accredi-cont-c {
    position: relative;
}

.accredi-cont-c img {
    width: 60%;
}

.nabl-cont {
    top: 55px;
    right: 0;
    position: absolute;
    width: 50%;
    padding: 30px 50px;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../img/nabl-bg.webp);
}

.nabl-cont h1 {
    font-size: 35px;
    color: #3D363A;
    margin-bottom: 25px;
}

.nabl-cont p {
    font-size: 15px;
    color: #605F5F;
    line-height: 30px;
}

/*
Career */

/* CORPORATE OFFICE */

.cor-off-banner {
    position: relative;
    margin-top: 30px;
    margin-bottom: 135px;
}

.cor-off-banner img {
    width: 100%;
}

.cont-adr.cor-off-addr {
    width: 90%;
    position: absolute;
    border-width: 4px;
    border-style: solid;
    background: linear-gradient(white, white) padding-box, linear-gradient(to right, #EF6530, #F37B2F, #FECA29) border-box;
    border: 4px solid transparent;
    padding: 20px 0 35px 0;
    bottom: -100px;
    left: 80px;
}

.corpo-cont {
    padding: 35px 60px;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../img/corpo-off-bg.webp);
}

.corpo-cont h1 {
    font-size: 30px;
    color: #2d2b2bde;
    padding-bottom: 15px;
}

.corpo-cont h4 {
    font-size: 20px;
    color: #2d2b2bde;
    padding-bottom: 5px;
}

.corpo-cont p {
    font-size: 15px;
    color: #605F5F;
    font-weight: 300;
    line-height: 30px;
}

.corpo-form {
    width: 90%;
    margin: auto;
    padding: 25px;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 6px 16px #00000059;
    border-radius: 10px;
    opacity: 1;
    margin-bottom: 35px;
}

.corpo-form h1 {
    font-size: 25px;
    color: #2d2b2be0;
    text-align: center;
}

/* GENERAL ENQUIRY */


.gen-enq {
    margin-top: 80px;
    margin-bottom: 40px;
}

.gen-enq img {
    width: 100%;
}

/* .gen-form {
    width: 90%;
    padding: 30px 30px 15px;
    border-radius: 10px;
    box-shadow: 0px 6px 16px #00000059;
} */

.gen-form {
    width: 90%;
    padding: 50px 30px 15px;
    border-radius: 10px;
    /* background: #FFFFFF 0% 0% no-repeat padding-box; */
    box-shadow: 0px 6px 16px #00000059;
}


.gen-form-cont h1 {
    font-size: 25px;
    color: #EF6331;
}

.gen-form-cont p {
    color: #686565;
    font-size: 15px;
    margin: 0;
    padding-bottom: 20px;
}

.gen-form-items input {
    width: 100%;
    padding: 10px 10px;
    font-size: 13px;
    font-weight: 300;
    color: #707070;
    outline: none;
    border: 2px solid #7070705c;
}

.gen-form-items {
    margin-bottom: 20px;
}

.gen-sub-btn img {
    width: 15px;
}

.gen-sub-btn {
    width: 100%;
    height: 45px;
    margin: 10px auto;
    clip-path: polygon(0% 0%, 95% 0, 100% 40%, 100% 100%, 0 100%);
}






/* custum css */

.drop-relation-cus select {
    width: 85%;
    font-size: 12px;
    margin-top: 20px;
    padding: 8px 10px;
    border-radius: 5px;
    outline: none;
    border: 1px solid #9A9A9A;
}

.textarea-cus textarea {
    width: 85%;
    font-size: 12px;
    margin-top: 20px;
    padding: 8px 10px;
    border-radius: 5px;
    outline: none;
    border: 1px solid #9A9A9A;
    margin: auto;
}

.radio-cus {
    margin-left: 20px;
    margin-top: 20px;
    width: 89%;
    border: 1px solid #9A9A9A
}

.radio-cus label {
    font-size: 13px;
    color: #7e7e7e;
}

.form-items input {
    width: 100%;
    padding: 10px 10px;
    font-size: 14px;
    /* font-weight: 500; */
    color: #707070;
    outline: none;
    border: 2px solid #7070705c;
}

input.f-left {
    width: 95%;
}

.form-items_02 {

    margin-left: 5px;
}

/* .file-input .upload-prc{
    width: 97% !important;
    padding: 10px 10px !important;
    font-size: 13px !important;
    font-weight: 300;
    color: #707070;
    outline: none;
    border-radius: 0;
    border: 2px solid #7070705c !important;
} */

#address,
#history {
    width: 100%;
    /* margin-top: 20px; */
    height: 120px;
    resize: none;
    font-size: 13px;
    font-weight: 300;
    color: #707070;
    outline: none;
    padding: 10px;
    border: 2px solid #7070705c;
}

.tbs {
    position: absolute;
    right: 37%;
    bottom: -193px;
    z-index: 1;
}

.main-pack-test {
    position: relative;
}

.mdl-prc {
    width: 85% !important;
    margin: auto;
    text-align: left;
    margin-top: 0px !important;
}

.mdl-prc span {
    color: #6c757d !important;
    font-weight: 400 !important;
    margin-top: 0px !important;
}

.error-class {
    color: red;
    font-size: 11px;
    text-align: left;
}

.err {
    margin: 9px 0px;
}

.sub-btn {
    background: none;
    border: none;
    color: white;
    outline: none !important;
    cursor: pointer;
    width: 100%;
    font-size: 13px;
}

.con-form {
    margin-bottom: 86px !important;
}

.faq-sec {
    margin-bottom: 70px;
}

a:hover {
    text-decoration: none;
}

.joureny-for-mobile-veiw {
    display: none;
}

.slick-dots-1 li {
    margin: 0 -17px;
}

.home_banner_mob {
    display: none !important;
}

input {
    color: #000 !important;
}

.card.b-first-cart img {
    height: 167px !important;
}

.test-01 {
    margin-bottom: 20px;
    position: relative;
    display: flex;
    justify-content: space-between;
}

h4.productCost {
    font-size: 23px;
    color: #EF6531;
}

.dwnld-rprt {
    font-size: 15px;
    color: #EF6531;
    position: absolute;
    bottom: 25px;
    right: 20px;
}

.productcost a {
    text-decoration: none;
}

.info-btn-head {
    width: 100%;
    font-size: 18px;
    text-align: left;
    color: #E6612F;
    padding: 20px;
    background: #F6F6F6;
}

.info-head {
    padding: 0;
    border: 0;
}

.info-head a:hover {
    border: none;
    background: #F6F6F6;
    color: #E6612F;
}

.info-card {
    border: none;
    box-shadow: 0px 16px 28px 0px #24242414;
}

.parameters h4 {
    font-size: 15px;
    font-weight: 300;
    color: #000;
}

.parameters p {
    font-size: 11px;
    font-weight: 100;
    margin: 0;
}

.icon-info i {
    font-size: 20px;
    color: #EF6430;
}

.productcost {
    width: 20%;
    margin: 7px 0px 0px 0px;
    text-align: right;
}

.productvalue {
    width: 100%;
    text-align: justify;
}

.accrediation {
    margin: auto;
}

.accred_book_btn {
    margin: auto !important;
    font-size: 12px;
}

img.accre-img {
    width: 50%;
    margin: auto;
    margin-top: 25px;
}

.form-items_02 input::placeholder {
    font-size: 13px !important;
    font-weight: 300 !important;
}

.f-right-01 {
    width: 100% !important;
}

/* .yes .req-upload-prc .input-img{
    color:#000 !important;
} */
.presc {
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #707070 !important;
    border: 2px solid #7070705c !important;
}

.cont-presc {
    font-size: 13px;
    font-weight: 500 !important;
    border-radius: 5px !important;
    border: 1px solid #7070709e !important;
}

.yes .career-cv {
    border-radius: 0px !important;
    border: 2px solid #7070705c !important;
}

.form-items input::placeholder {
    font-weight: 200 !important;
}

.btn-rmv1 {
    z-index: 999;
}

.abt-01 {
    margin-top: 30px !important;
}

.dob-box {
    color: #707070 !important;
    font-size: 13px !important;
    font-weight: 300 !important;
}

.submit-btn {
    clip-path: polygon(0% 0%, 95% 0, 100% 30%, 100% 100%, 0 100%);
width: 100% !important;
    border: none;
    color: white !important;
    cursor: pointer;
    outline: none !important;
}


.book_btn {
    border: none;
    color: white !important;
    cursor: pointer;
    outline: none !important;
    /* width: auto; */
    clip-path: polygon(0% 0%, 95% 0, 100% 30%, 100% 100%, 0 100%);
}

a.book_now_btn {
    color: white !important;
}

.form-items_02 .car_text {
    font-size: 14px !important;
    color: #000000 !important;
    /* font-weight: 500 !important; */
}

.car_text::placeholder {
    color: #707070;
    font-weight: 300;
}

.home_text::placeholder {
    color: #707070;
    font-weight: 300;
}

.form-items .home_text {
    font-size: 14px !important;
    color: #000000 !important;
    font-weight: 100 !important;
}

.gen_enq,
.mod_text {
    color: #000 !important;
    font-size: 12px !important;
    font-weight: 100 !important;
}

.gen_enq::placeholder {
    color: #707070;
    font-weight: 300;
}

.mod_text::placeholder {
    color: #707070;
    font-weight: 300;
    font-size: 13px;
}

.cart-added {
    height: 182px;
    width: 282px;
    margin-top: 240px;
    text-align: center;
    padding-top: 50px
}

.fa-ex-mark {
    background: red;
    padding: 10px 22px;
    border-radius: 50px;
    color: white;
    font-weight: bold;
    font-size: 27px;
}

.btn-cls {
    right: 115px !important;
    top: 5px !important;
    z-index: 999 !important;
}

.haxy .r-arrow {
    width: 20px;
}

div#cartItem {
    margin: 50px 120px;
}

.book-n {
    padding-bottom: 20px !important;
}

.health-d {
    padding-bottom: 30px !important;
}

.registered-office {
    margin-top: 217px;
}

.health_pack h4,
.book_organs h4 {
    color: #000000b8;
}

p {
    font-size: 15px !important;
}

.address-r {
    width: 100%;
    display: flex;
    padding: 10px;
    height: 125px;
    background: transparent linear-gradient(270deg, #FFCE29 0%, #F37E2F 29%, #EF6331 100%) 0% 0% no-repeat padding-box;
    vertical-align: middle;
    align-items: center;
    border-radius: 5px;
}

.add-01 {
    width: 40%;
    margin-right: 30px;
}

.add-02 {
    width: 60%;
}

.adr-con-adr-01 {
    width: 100%;
    height: 125px;
    margin: auto;
    display: flex;
    padding: 25px;
    background: transparent linear-gradient(270deg, #FFCE29 0%, #F37E2F 29%, #EF6331 100%) 0% 0% no-repeat padding-box;
    vertical-align: middle;
    align-items: center;
    border-radius: 5px;
}

h4 {
    color: #444242;
}

.column {
    -ms-flex: 25%;
    /* IE10 */
    flex: 25%;
    max-width: 32%;
    padding: 0 4px;
}

.column img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
}

.row-gallery {
    display: -ms-flexbox;
    /* IE10 */
    display: flex;
    -ms-flex-wrap: wrap;
    /* IE10 */
    flex-wrap: wrap;
    padding: 0 4px;
}

input,
button,
select,
option,
optgroup,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    font-weight: 100;
    line-height: inherit;
}

.scale-01 {
    margin-top: 10px;
}

select#location {
    height: 44px;
    border: 2px solid #cbcbcb;
    color: #818181;
}

.footer-top ul li {
    margin-left: 60px;
}

.news-content {
    margin-left: 35px;
}
.bttn{
    width: unset !important;
}
.fsize{
    /* font-size: 12px !important; */
    padding-left: 25px !important;
    font-size: 12px !important;
}
.card-parameter{
    padding: 10px;
}

.gen-form {
    width: 90%;
    padding: 50px 30px 15px;
    border-radius: 10px;
    /* background: #FFFFFF 0% 0% no-repeat padding-box; */
    box-shadow: 0px 6px 16px #00000059;
}
.packag-con .line-through{ 
    text-decoration: line-through;
    color: #777777;
}
