@charset "utf-8";

/* CSS Document */

@font-face {
    font-family: 'Jost';
    src: url(../fonts/jost/Jost-Regular.ttf);
}

@font-face {
    font-family: 'Jost-SemiBold';
    src: url(../fonts/jost/Jost-SemiBold.ttf);
}

@font-face {
    font-family: 'Jost-Light';
    src: url(../fonts/jost/Jost-Light.ttf);
}

@font-face {
    font-family: 'Montserrat';
    src: url(../fonts/Montserrat/static/Montserrat-Regular.ttf);
}

ul {
    list-style-type: none;
    margin: 0px !important;
    padding: 0px;
}

ul li {
    list-style-type: none;
    margin: 0px;
    padding: 0;
    font-size: 16px;
}

p {
    font-size: 14px;
    padding-bottom: 0;
    margin-bottom: 0;
}

a {
    text-decoration: none;
}

html {
    height: 100%;
    width: 100%;
    font-family: 'Jost';
}

img {
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
    /* Disable long-press context menu on iOS */
}

img,
div {
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    -ms-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}

body {
    height: 100%;
    font-family: 'Jost';
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    -moz-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    margin: 0;
}

p strong {
    font-family: 'Jost-SemiBold';
}

#main {
    width: 100%;
}

/* Header styles */
#header {
    text-align: center;
    background: rgba(255, 255, 255, 0.60);
    backdrop-filter: blur(8px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
    -moz-transition: all 0.3s ease-in-out;
    height: 80px;
    left: 0 !important;
    right: 0 !important;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

#header.scrolled {
    background: rgba(255, 255, 255, 1);
    backdrop-filter: none;
    box-shadow: 0px 2px 10px 0px #F3D9E2;
}


#header>div {
    display: flex;
    vertical-align: middle;
    width: 100%;
}

.menu {
    width: 100%;
    display: block;
    margin-top: -10px;
}

.menu ul {
    text-align: center;
    -moz-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}

.menu ul li {
    display: inline-block;
}

.menu ul li a {
    color: #13549F;
    display: block;
    text-align: center;
    padding: 15px;
    font-family: 'Montserrat';
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.44px;
}

.menu>ul>li>a:hover {
    font-weight: bold !important;
    color: #13549F;
}

/* .menu ul li> ul{ position:absolute; background-color:rgba(19, 84, 159,0.6);  display: none; text-align: left !important;backdrop-filter: blur(16px);border-radius: 10px;} */
.menu ul li>ul {
    position: absolute;
    background-color: rgba(19, 84, 159, 0.6);
    display: none;
    text-align: left !important;
    backdrop-filter: blur(16px);
    border-radius: 10px;
    opacity: 0;
    /* Initially hidden */
    visibility: hidden;
    /* Initially hidden */
    transform: translateY(10px);
    /* Initially moved down */
    transition: opacity 0.8s ease, transform 0.8s ease;
    /* Smooth transition for opacity and position */
}

.menu>ul>li>ul>li {
    text-align: left !important;
    display: block;
}

.menu>ul>li>ul>li>ul {
    display: none !important;
}

.smlmenu {
    width: 180px;
}

.menu>ul>li>ul>li>a {
    font-size: 12px;
    display: block;
    color: #fff;
    font-family: 'Montserrat';
    font-weight: 400;
    text-align: left;
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.menu ul li ul li a:hover {
    font-weight: bold;
}

.menu ul li ul li:last-child a {
    border-bottom: none;
}

.mobNav {
    margin-top: -10px;
    z-index: 200;
    width: 100%;
    text-align: right;
    padding-right: 20px;
}

.respbar {
    color: #f40005;
    cursor: pointer;
}

.respbar img {
    width: 30px;
}

.repon_menu {
    position: fixed;
    z-index: 100;
    top: 0 !important;
    bottom: 0 !important;
    height: 100% !important;
    right: 0;
    background-color: #fff;
    padding: 10px;
    width: 250px;
    box-shadow: 0px 4px 6px rgba(000, 000, 000, 0.5);
    transition: all 0.5s ease;
    right: -100%;
    text-align: left !important;
    overflow: auto;
}

.repon_menu ul {
    margin: 0px !important;
    padding: 0px !important;
}

.repon_menu ul li a {
    color: #2D3468;
    padding: 8px 15px;
    display: block;
    font-size: 14px;
    text-transform: uppercase;
}

.repon_menu ul li ul {
    margin-left: 20px !important;
}

.logo {
    width: 200px;
    margin: auto;
    margin-top: 10px;
}

.headlogo img,
.logo img {
    width: 100%;
}

.headlogo {
    width: 0;
    opacity: 0;
    transform: scale(0);
    -moz-transition: all 0.1s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.showlogo {
    width: auto;
    opacity: 1;
    transform: scale(1);
    -moz-transition: all 0.1s ease-in-out;
    transition: all 0.2s ease-in-out;
}

/* Banner */
.banner {
    height: 480px;
    overflow: hidden;
    position: relative;
}

.banner div {
    height: 100%;
    position: relative;
}

.banner .carousel-item {
    background-size: cover;
    width: 100%;
    position: relative;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.banner .carousel-item video {
    width: 100%;
}



/* body styles*/
.welcom {
    text-align: center;
    position: relative;
    text-align: center;
    background-color: #e8eef6;
}

.welcom>div {
    padding: 40px 0px;
    background-color: #fff;
    border-radius: 0px 0px 120px 120px;
}

.welcom h1 {
    padding-bottom: 20px;
    font-size: 36px;
    font-weight: 400;
    color: #13549F;
}

.welcom p {
    font-size: 16px;
    color: #13549F;
    font-family: 'Jost-Light';
}

.mainlogo {
    position: absolute;
    top: -170px;
    text-align: center;
    z-index: 88;
    background: rgba(255, 255, 255, 0.55);
    left: 0;
    right: 0;
    margin: auto;
    width: 204px;
    padding: 32px 40px;
    border-radius: 400px 400px 0px 0px;
}

.mainlogo img {
    width: 125px;
}

.logotext {
    position: relative;
    z-index: 89;
    margin-top: -20px;
}

.ctabtn {
    display: inline-block;
}

.ctabtn a {
    border-radius: 10px;
    border: 2px solid #13549F;
    background: #13549F;
    padding: 10px 20px;
    display: block;
    color: #FFF;
    text-align: center;
    font-family: 'Jost';
    font-size: 12px;
    font-style: italic;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 2.8px;
    text-transform: uppercase;
}

.ctabtn a:hover {
    border: 2px solid #13549F;
    color: #13549F;
    background-color: transparent;
}

.patclm {
    position: relative;
    text-align: center;
    width: 50%;
    margin: auto;
}

.patclm::after {
    background-color: #FFCCF2;
    content: '';
    height: 2px;
    position: absolute;
    top: 12px;
    z-index: 1;
    left: 0;
}

.patclm::before {
    background-color: #FFCCF2;
    content: '';
    height: 2px;
    position: absolute;
    top: 12px;
    z-index: 1;
    right: 0;
}

.patclm h4 {
    position: relative;
    z-index: 2;
    display: inline-block;
    font-size: 16px;
    padding: 0px 20px;
    text-transform: uppercase;
    color: #13549F;
    letter-spacing: 2.56px;
}

.patclm h1 {
    color: #13549F;
    margin-bottom: 20px;
    font-size: 36px;
    white-space: nowrap;
}

/* Services styles*/
.servclm>div {
    background-color: #e8eef6;
    padding: 80px 0px;
    text-align: center;
    border-radius: 0px 0px 120px 120px;
}

.servclm .patclm h4 {
    background-color: #e8eef6;
}

.servclm .patclm::after {
    width: 100%;
}

.servclm {
    background-color: #fff;
}

.servclm h1 {
    color: #13549F;
    margin-bottom: 20px;
}

.servclm p {
    font-size: 16px;
    color: #13549F;
    font-family: 'Jost-Light';
}

.servcolcards {
    text-align: center;
    padding: 40px 100px;
    justify-content: center;
    align-items: center;
    align-self: stretch;
}

.servcard {
    border-radius: 20px;
    background-color: #FDF2FA;
    padding: 20px 12px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.servcard img {
    padding-bottom: 20px;
}

.servcard h4 {
    font-family: 'Jost';
    font-size: 14px;
    font-weight: 600;
    line-height: 20.23px;
    letter-spacing: 0.1em;
    text-align: center;
    text-decoration-skip-ink: none;
    color: #13549F;
}

.servcard:hover {
    background: rgba(19, 84, 159, 0.50);
    box-shadow: 0px 2px 16px 0px rgba(255, 88, 212, 0.30);
}

.servcard:hover h4 {
    color: #fff;
}

.servcard:hover img {
    filter: brightness(0) invert(1);
}


/* Therapeutics styles*/
.Therapclm {
    padding: 80px 0px 20px 0px;
    text-align: center;
    background-color: #E8EEF6;
    background: linear-gradient(180deg, #FFF 5%, rgba(255, 223, 247, 0.5) 100%);
}

.Therapclm .patclm::after {
    width: 90px;
}

.Therapclm .patclm::before {
    width: 90px;
}

.Therapclm h1 {
    color: #13549F;
    margin-bottom: 20px;
}

.Therapclm p {
    font-size: 16px;
    color: #13549F;
    font-family: 'Jost-Light';
}

/* 
.theraptabs .nav-pills .nav-link.active{ background-color: transparent; color: #1A448B; text-align: center; font-size: 16px;
    font-style: normal; font-weight: 500;
    line-height: normal;    letter-spacing: 2px;
    text-transform: uppercase; }
.theraptabs .nav-pills{ background-color:rgba(000, 000, 000, 0) !important; }
.theraptabs .nav-pills .nav-item{ position: relative; padding: 18px 16px; text-align: center; color: #648ec0 !important; font-weight: 500;  }
.theraptabs .nav-pills .nav-link{ color: #648ec0; }
.theraptabs .nav-pills .nav-item span{ position: relative; background-color: #e6edf5; z-index: 2;  text-transform: uppercase !important; padding-bottom: 10px; }
.theraptabs .nav-pills .nav-item::after{ content: ''; position: absolute; height: 35%; width: 1px; background-color: #648ec0 !important; top: 0;  }
.theraptabs .nav-pills .nav-item::before{ content: ''; position: absolute; height: 8px; width: 8px; border-radius: 50%; margin-left: -3.5px; margin-top:25px; background-color: #2D3468; }
.theraptabs .nav-pills .nav-link.active, .nav-pills .show>.nav-link{  color: #1A448B !important; padding: 48px 16px 18px 16px; }
.theraptabs .nav-pills .nav-item.active::after{ width: 2px !important; background-color: #2D3468 !important; } */



/* Additional iOS-specific styling */
/* Make sure your container is positioned */
.tab-container {
    position: relative;
    margin: 0px 0;
}
.theraptabs .overflow-auto {
    position: relative;
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.theraptabs .overflow-auto::-webkit-scrollbar {
    display: none;
}

/* Custom horizontal scrollbar */
.custom-scrollbar {
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 6px;
    background: rgba(0, 0, 0, 0.0);
    border-radius: 3px;
    display: none;
    z-index: 10;
}

.scrollbar-thumb {
    position: absolute;
    top: 0;
    height: 100%;
    background: rgba(19, 69, 159, 0.7);
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.2s;
    min-width: 20px;
}

.scrollbar-thumb:hover {
    background: rgba(19, 69, 159, 0.9);
}

.scrollbar-thumb.dragging {
    background: rgba(19, 69, 159, 1);
}



.theraptabs {
    background-color: #e8eef6;
}

.theraptabs>div {
    background-color: #fff;
    border-radius: 0px 0px 120px 120px;
    padding-bottom: 60px;
}

.theraptabs .nav-pills {
    width: 100%;
    text-align: center !important;
}

.theraptabs .nav-pills .nav-link.active {
    background-color: transparent;
    color: #1A448B;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
}

.theraptabs .nav-pills {
    background-color: rgba(0, 0, 0, 0) !important;
}

.theraptabs .nav-pills .nav-item {
    position: relative;
    min-height: 120px;
    padding: 18px 16px 0px 16px;
    text-align: center;
    color: #648ec0 !important;
    font-weight: 500;
}

.theraptabs .nav-pills .nav-link {
    color: #648ec0;
    letter-spacing: 2.24px;
}

.theraptabs .nav-pills .nav-item span {
    position: relative;
    background-color: #fff;
    z-index: 2;
    text-transform: uppercase !important;
    padding-bottom: 10px;
}

.theraptabs .nav-pills .nav-item::after {
    content: '';
    position: absolute;
    height: 35%;
    width: 1px;
    background-color: #648ec0 !important;
    top: 0;
    transition: background-color 0.3s ease, width 0.3s ease;
    /* Add transition for smooth changes */
}

.theraptabs .nav-pills .nav-item::before {
    content: '';
    position: absolute;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    margin-left: -3.5px;
    margin-top: 25px;
    background-color: #2D3468;
}

.theraptabs .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: #1A448B !important;
    padding: 48px 16px 0px 16px;
    transition: all 1s ease;
    /* Smooth transition */
}

.theraptabs .nav-pills .nav-item.active::after {
    width: 2px !important;
    background-color: #2D3468 !important;
    transition: all 1s ease;
    /* Smooth transition */
}

.theraptabcont {
    color: #13549F;
    font-family: 'Jost';
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.theraptabcont img {
    width: 100%;
}

.theraptabcont p {
    font-size: 16px;
    font-family: 'Jost-Light';
}

.cardcta p {
    text-align: right;
}

.cardcta p a {
    display: inline-block;
    border-radius: 10px;
    padding: 10px 16px;
    border: 1px solid #13549F;
    color: #13549F;
    font-size: 12px;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

.cardcta p a:hover {
    background-color: #13549F;
    color: #fff;
    display: inline-block;
    font-weight: 800;
}

.theraptxt {
    border-radius: 0px 20px 20px 0px;
    padding: 30px;
}

.tab-pane {
    transition: opacity 0.2s ease-in-out, visibility 0.2s step-end;
}

/* .tab-pane{ transition: 0.5s ease-in-out;  } */


/* Partnerships styles */
.partnerClm {
    background-color: #FCF7F9;
}

.partnerClm .patclm h4 {
    background-color: #E8EEF6;
}

.partnerClm .patclm::after {
    width: 100%;
}

.partnerClm>div {
    padding: 80px 0px;
    text-align: center;
    border-radius: 0px 0px 120px 120px;
    background-color: #E8EEF6;
}

.partnerClm p {
    color: #13549F;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-family: 'Jost-Light';
    line-height: normal;
}

.logocard {
    text-align: center;
    display: inline-block;
    display: flex;
    flex-direction: column;
}

.logocard img {
    max-width: 160px !important;
    margin: auto;
    margin-bottom: 20px;
}

.logocard p {
    font-family: 'Jost-Light';
}

/* Product Styles */

.Productclm {
    background-color: #fff;
}

.Productclm .patclm h4 {
    background-color: #FCF7F9;
}

.Productclm .patclm::after {
    width: 100%;
}

.Productclm>div {
    padding: 80px 0px;
    background-color: #FCF7F9;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    text-align: center;
    border-radius: 0px 0px 120px 120px;
}

.prodcard {
    border-radius: 20px;
    border: 2px solid #FFCCF2;
    background: rgba(19, 84, 159, 0.10);
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
    word-wrap: break-word;
    text-align: left !important;
    margin-bottom: 20px;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.prodcard>img {
    width: 100%;
    padding: 12px 12px 0px 12px;
    border-radius: 20px;
}

.procudtsdetails {
    margin-top: 60px;
}

.carddetails h4 {
    font-size: 14px;
    color: #13549F;
    font-style: normal;
    line-height: normal;
    letter-spacing: 1.28px;
    text-transform: uppercase;
    font-family: 'Jost-SemiBold';
}

.carddetails p {
    display: none;
}

.carddetails {
    padding: 12px;
}

.prodcta {
    position: absolute;
    bottom: 12px;
    right: 12px;
}

.cardpatch {
    position: absolute;
    top: 150%;
    opacity: 0;
    width: 100%;
    padding: 12px;
    -moz-transition: all 0.8s ease-in-out;
    -o-transition: all 0.8s ease-in-out;
    -ms-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
}

.cardpatch h4 {
    margin-bottom: 6px;
    font-size: 14px;
    color: #fff;
    font-style: normal;
    line-height: normal;
    letter-spacing: 2.24px;
    text-transform: uppercase;
    font-family: 'Jost-SemiBold';
}

.cardpatch p {
    color: #fff !important;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    /* Limit to 5 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 7.5em;
}

.prodcard:hover .carddetails h4,
.prodcard:hover .carddetails .flags {
    opacity: 0;
}

.prodcard:hover .cardpatch {
    top: 0;
    opacity: 1;
    height: 100%;
    background: rgba(19, 84, 159, 0.70);
    backdrop-filter: blur(2px);
    left: 0;
}

.mobtag {
    display: none;
}

.flags {
    padding-bottom: 6px;
}

.Productclm .nav-pills .nav-link {
    color: #13549F;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 3.2px;
    text-transform: uppercase;
}

.Productclm .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: #13549F;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    background-color: transparent;
    font-weight: 800;
    line-height: normal;
    letter-spacing: 2.8px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: 6%;
    /* 0.84px */
    text-underline-offset: 25%;
    /* 3.5px */
    text-underline-position: from-font;
    text-transform: uppercase;
}


/* News Styles */

.Newsclm {
    background-color: #fff;
    overflow: hidden;
}

.Newsclm .patclm h4 {
    background-color: #fff;
}

.Newsclm .patclm::after {
    width: 100%;
}

.newscol {
    margin-bottom: 20px;
}

.Newsclm>div {
    padding: 80px 0px;
    background-color: #fff;
    display: flex;
    flex-direction: row;
    text-align: center;
    border-radius: 0px 0px 120px 120px;
}

.Newsclm h1 {
    color: #13549F;
    margin-bottom: 20px;
    font-size: 36px;
    white-space: nowrap;
}

.Newsclm p {
    overflow: hidden;
    color: #13549F;
    font-size: 14px;
    font-style: normal;
    font-family: 'Jost-Light';
    line-height: normal;
}

.newsImg {
    position: relative;
    margin-bottom: 5px;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.8s ease-in-out;
}

.newsImg>img {
    width: 100%;
}

.newsImg>div img {
    margin-bottom: 5px;
    text-align: center;
    transition: transform 0.8s ease;
    display: none;
}

.newsImg>div {
    background: rgba(19, 84, 159, 0.70);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.newsImg>div p {
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    line-height: 28px;
    /* 175% */
    letter-spacing: 3.2px;
    text-transform: uppercase;
    display: none;
}

.newscard {
    border-radius: 20px;
    text-align: left !important;
    border: 2px solid #FFC8F1;
    display: flex;
    padding: 20px;
    flex-direction: column;
    transition: all 0.8s ease-in-out;
    cursor: pointer;
}

.newsImg:hover>div {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.newsImg:hover>div img {
    display: block;
}

.newsImg:hover>div p {
    display: block;
}

.newscard h5 {
    padding: 5px 0px;
    color: #13549F;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 2.56px;
    text-transform: uppercase;
}

.newscard h6 {
    padding: 5px 0px;
    color: #13549F;
    font-size: 10px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 2.56px;
    text-transform: uppercase;
}

.chipclm {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    position: absolute;
    left: 29px;
    top: 29px;
    z-index: 22;
}

.chipclm p {
    color: #13549F;
    border-radius: 10px;
    display: flex;
    padding: 4px 10px;
    align-items: flex-start;
    gap: 20px;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.40) 0%, rgba(255, 255, 255, 0.40) 100%), linear-gradient(0deg, rgba(255, 255, 255, 0.40) 0%, rgba(255, 255, 255, 0.40) 100%), rgba(255, 255, 255, 0.40);
    text-align: center;
    font-size: 10px !important;
    font-style: normal;
    font-family: 'Jost-SemiBold';
    line-height: normal;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

/* .whoweareslider {
    display: flex;
    padding: 20px;
    flex-direction: column;
    transition: all 0.8s ease-in-out;
    cursor: pointer;
} */

/* Footer Styles*/
.footer {
    padding-top: 80px;
}

.footer>div {
    background-image: url('../Images/footer.png');
    background-position: center;
    background-size: cover;
    padding-bottom: 80px;
    border-radius: 80px 80px 0px 0px;
}

.ttfs {
    padding: 60px 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #fff;
    border-radius: 30px;
    box-shadow: 2px 4px 20px 0px rgba(19, 84, 159, 0.30);
    backdrop-filter: blur(10px);
    margin-top: -100px;
}

.ttfs h1 {
    color: #13549F;
    font-size: 72px;
    font-family: 'Jost-SemiBold';
    text-shadow: 2px 4px 8px rgba(19, 84, 159, 0.50);
    font-style: normal;
    line-height: 72px;
    letter-spacing: 14.4px;
    margin-bottom: 40px;
    text-transform: uppercase;
    white-space: nowrap;
}

.ttfs p {
    padding-bottom: 22px;
    color: #13549F;
}

.ttfs h4 {
    color: #13549F;
    text-align: center;
    text-shadow: 2px 4px 8px rgba(19, 84, 159, 0.50);
    font-size: 42px;
    font-style: normal;
    font-weight: 500;
    line-height: 72px;
    /* 171.429% */
    letter-spacing: 8.4px;
    text-transform: capitalize;
}

.footdetail img {
    margin-bottom: 18px;
}

.footdetail>ul {
    margin-bottom: 18px;
}

.footdetail>ul>li {
    display: inline-block;
    padding: 0px 10px;
}

.footdetail p {
    color: #fff;
    padding-left: 10px;
    font-size: 12px;
}

.footmenu {
    padding-top: 15px;
}

.footmenu ul li {
    display: inline-block;
    padding: 0px 15px;
}

.footmenu ul li a {
    color: #fff;
    font-size: 12px;
}


/* P.Styles */
section {
    padding: 40px 0 40px 0;
}

.innerbanner {
    height: 480px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-position: center;
    background-size: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(13, 73, 143, 0.50) 0%, rgba(13, 73, 143, 0.50) 100%)
}

.text-block {
    position: absolute;
    bottom: 20%;
    text-align: center;
}

.text-block h2 {
    color: #fff;
    font-size: 42px;
    font-weight: bold;
    letter-spacing: 8px;
    text-transform: uppercase;
}

.text-block p {
    font-size: 12px;
    display: block;
    color: #fff;
    letter-spacing: 4px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.team {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(255, 223, 247, 0.2) 5.3%, #FFFFFF 100%);
}

.card {
    width: 100%;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    position: relative;
    transition: 0.9s;
    box-shadow: 0px 2px 10px 0px #F3D9E2;
    padding: 12px;
    height: 450px;
    border: transparent;
}

.card img {
    border-radius: 8px;
    margin-top: 0px;
    width: 100%;
}

.team-name {
    padding: 20px;
}

.card .name {
    font-size: 20px;
    font-weight: bold;
    color: #13549F;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.card .role {
    font-size: 14px;
    font-style: italic;
    color: #13549F;
    margin-top: 8px;
}

.card .details {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    padding: 20px;
    transition: top 0.9s ease-in-out;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
}

.card .details p {
    font-size: 15px;
    color: #13549F;
    font-family: 'Jost-Light';
    line-height: normal;
}

.card:hover .details {
    top: 0;
}

.team-space {
    margin-top: 40px;
}

/* Who we are  */
.vision {
    width: 48px;
    margin-bottom: 20px;
}

.visionclm>div {
    background-color: #fff;
    padding: 80px 0px;
    border-radius: 0px 0px 120px 120px;
}

.abtmis {
    margin-top: 60px;
}

.compaiclm>div {
    padding: 80px 0px;
    text-align: center;
}



.box {
    width: 100%;
    border-radius: 10px;
    height: 300px;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 2px 10px 0px #F3D9E2;
    transition: filter 0.8s ease-in-out, transform 0.8s ease-in-out;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: luminosity, normal;
    background-color: #13549F;
    margin-top: 40px;
}

.box:hover {
    background-blend-mode: normal;
}

.box .buttonpannel {
    position: absolute;
    bottom: -80px;
    left: 0;
    width: 100%;
    transition: 0.8s ease-in-out, transform 0.8s ease-in-out;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 10px 10px;
    gap: 5;
    opacity: 0;
    background: linear-gradient(0deg, #13549F 0%, rgba(55, 110, 174, 0.86099) 32.4%, rgba(255, 255, 255, 0) 100%);

}

.btmtxt {
    position: absolute;
    bottom: 0;
    background: linear-gradient(0deg, #13549F 0%, rgba(73, 123, 181, 0.7939) 48.4%, rgba(191, 209, 229, 0.342738) 87.9%, rgba(255, 255, 255, 0.1) 100%);
    padding: 15px 20px;
    width: 100%;
}

.btmtxt h5 {
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 5px;
    opacity: 1;
    font-weight: bold;
    text-align: center;
}

.box:hover .buttonpannel {
    bottom: 0;
    height: 100%;
    opacity: 1;
}

.box:hover .btmtxt {
    display: none;
}


.hover-text h5 {
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 5px;
    opacity: 1;
    font-weight: bold;
    text-align: center;
}

.hover-text p {
    font-size: 14px;
    color: #fff;
    font-family: 'Jost-Light';
}


.abtnava p {
    margin-bottom: 8px;
    font-size: 16px;
    margin-top: 20px;
}

.visionclm p {
    text-align: center;
    font-size: 16px;
    font-family: 'Jost-Light';
}

.visionclm .patclm h4 {
    background-color: #fff;
}

.visionclm .patclm::after {
    width: 100%;
}

.servcard1 {
    border-radius: 20px;
    background-color: #FDF2FA;
    padding: 30px 12px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    display: flex;
}

/* .servcard1 img{ padding-bottom: 20px; } */
.servcard1 h4 {
    font-family: 'Jost';
    font-size: 14px;
    font-weight: 600;
    line-height: 20.23px;
    letter-spacing: 0.1em;
    text-align: center;
    text-decoration-skip-ink: none;
    color: #13549F;
}

.navacolcards {
    text-align: center;
    padding: 40px 100px;
    justify-content: center;
    align-items: center;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.navacard {
    border-radius: 20px;
    background-color: #FDF2FA;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    gap: 10px;
    display: flex;
    padding: 10px;
    width: 150px;
    height: 150px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.navacard img {
    padding-bottom: 0px;
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.navacard h4 {
    font-family: 'Jost';
    font-size: 14px;
    font-weight: 600;
    line-height: 20.23px;
    letter-spacing: 0.1em;
    text-align: center;
    text-decoration-skip-ink: none;
    color: #13549F;
    text-wrap: nowrap
}

.partnerClm .bx-wrapper {
    position: relative;
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0));
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0));
}

.contact-details {
    margin-top: 40px;
}

.contact-details h4 {
    font-size: 18px;
    font-weight: 600;
    color: #13549F;
    text-align: center;
    font-family: 'Jost';
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 6px;
}

.contact-details p a {
    font-size: 16px;
    font-weight: 500;
    color: #13549F;
    text-align: center;
    font-family: 'Jost-Light';
    margin-bottom: 20px !important;
}

.contact-details p {
    font-size: 16px;
    font-weight: 500;
    color: #13549F;
    text-align: center;
    font-family: 'Jost-Light';
    margin-top: 20px !important;
}

.contact-txt {
    padding: 80px 0;
}

.contact-txt p {
    font-size: 20px;
    font-family: 'Jost-Light';
    color: #13549F;
    text-align: center;
    line-height: 30px;
}

.contact-txt p a {
    font-size: 20px;
    color: #13549F;
    text-align: center;
}

/* captcha */
/* .login_form #captcha{position: relative;}
.login_form #captcha .preview{color: #333;width: 100%;text-align: center;line-height: 40px;letter-spacing: 8px;border: 1px dashed #888;border-radius: 0.5em;margin-bottom:0px;position: relative;}
.form_input_captcha {position: relative;top: 0;left: 0;font-size: 1em;border: 1px solid rgba(200, 196, 192, 1) !important;border-radius: 0.5em;outline: none;padding:10px;background: #fff;} 
.form_label_captcha{position: absolute;left: 50%;top:9px;padding: 0 20px;color: #969696 !important;font-size:14px;transition: .4s;}
.form_input_captcha:focus + .form_label_captcha{top:0em;left: .8em;color: #969696;font-size: .80em;font-weight: 600;}
.form_input_captcha:not(:placeholder-shown).form_input_captcha:not(:focus) + .form_label_captcha{top:0;left: .8em;font-size: .80em;font-weight: 600;}
.form_input_captcha:focus{border: none;}
.login_form #captcha .preview span{display: inline-block;user-select: none;}
.login_form #captcha .captcha_form{display: flex;position: relative;}
.login_form #captcha .captcha_form input{width:100%;font-size: 1em;border-radius: 0.5em;outline: none; padding: 1em;}
.login_form #captcha .captcha_form .captcha_refersh{border: none;outline: none;background: #fff;color: #eee;cursor: pointer;border-radius: 0.5em;margin-left: 5px; }
.captcha_refersh{transition: .4s;border: none;background: none !important;position: absolute;top:8px;right:18px; }
.captcha_refersh i{color:#244C43 !important ;  font-size:16px;} */
/* General CAPTCHA styling for all forms */
.captcha-container {
    position: relative;
}

.captcha-container .preview {
    color: #13549F;
    width: 100%;
    text-align: center;
    line-height: 40px;
    letter-spacing: 8px;
    border: 1px dashed #13549F;
    border-radius: 0.5em;
    margin-bottom: 0px;
    position: relative;
}

.form_input_captcha {
    position: relative;
    top: 0;
    left: 0;
    font-size: 1em;
    border: 1px solid #13549F !important;
    border-radius: 0.5em;
    outline: none;
    padding: 10px;
    background: #fff;
    width: 100%;
}

.form_label_captcha {
    position: absolute;
    left: 50%;
    top: 9px;
    padding: 0 20px;
    color: #969696 !important;
    font-size: 14px;
    transition: .4s;
}

.form_input_captcha:focus+.form_label_captcha {
    top: 0em;
    left: .8em;
    color: #969696;
    font-size: .80em;
    font-weight: 600;
}

.form_input_captcha:not(:placeholder-shown).form_input_captcha:not(:focus)+.form_label_captcha {
    top: 0;
    left: .8em;
    font-size: .80em;
    font-weight: 600;
}

.form_input_captcha:focus {
    border: none;
}

/* Ensure all captchas are styled the same way */
.captcha-container .preview span {
    display: inline-block;
    user-select: none;
}

.captcha-container .captcha_form {
    display: flex;
    position: relative;
}

.captcha-container .captcha_form input {
    width: 100%;
    font-size: 1em;
    border-radius: 0.5em;
    outline: none;
    padding: 1em;
}

.captcha-container .captcha_form .captcha_refersh {
    border: none;
    outline: none;
    background: #fff;
    color: #eee;
    cursor: pointer;
    border-radius: 0.5em;
    margin-left: 5px;
}

.captcha_refersh {
    transition: .4s;
    border: none;
    background: none !important;
    position: absolute;
    top: 8px;
    right: 18px;
}

.captcha_refersh i {
    color: #13549F !important;
    font-size: 16px;
}

.btm-space {
    margin-bottom: 20px;
}

.form-control {
    color: #13549F !important;
    font-family: 'Jost-Light';
    font-size: 12px;
    padding: 10px 16px;
    background: #F2E6EE66;
    border: 0.5px solid #13549F
}

.form-label {
    color: #13549F;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 14px !important;
    font-weight: 600;
}

.btn-outline-success {
    border: 1px solid #13549F !important;
    color: #13549F;
    font-family: Jost;
    font-size: 14px;
    font-style: italic;
    font-weight: 300;
    line-height: 20.23px;
    letter-spacing: 0.2em;
    text-align: center;
    padding: 10px 16px;
    text-transform: uppercase;
}

.btn-outline-success:hover {
    background-color: #13549F;
    color: #fff;
}

input::placeholder {
    color: #13549F !important;
    letter-spacing: 3px;
}

textarea::placeholder {
    color: #13549F !important;
    letter-spacing: 3px;
}


.checkbox {
    appearance: none;
    position: absolute;
    width: 0;
    height: 0;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    color: #13549F;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-family: 'Jost-Light';
    background: #F8F0F5;
    border: 0.5px solid #13549F;
    border-radius: 0.375rem;
    padding: 10px 15px;
}

.checkmark {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #13549F;
    display: inline-block;
    margin-right: 10px;
    position: relative;
}

.checkbox:checked+.checkmark::before {
    content: "";
    width: 10px;
    height: 10px;
    background: #13549F;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.form-select {
    background: #F8F0F5;
    border: 0.5px solid #13549F;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3e%3cpath fill='none' stroke='%2313549F' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.0' d='m3 4 3 3 3-3'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 20px 16px;
    background-position: right 10px center;
    color: #13549F;
    letter-spacing: 3px;
    font-family: 'Jost-Light';
    font-size: 12px;
    padding: 10px 15px;
}

.input-group>.form-control {
    width: 26%;
}

.upload {
    width: 58px;
    position: absolute;
    right: 0;
    padding: 38px 10px 0 0;
    top: 0;
}

.uploadCV {
    height: 42.6px;
}

/* .uploadCV {width: 100%;padding-right: 100px; } */
/* .mb-3{margin-bottom: 10px !important;} */
input[type="file"]::file-selector-button {
    display: none;
    /* Hide the default file selector button */
}

.btn-outline-secondary1 {
    border: none !important;
    position: absolute;
    right: 14px;
    top: 6px;
    color: #13549F;
    font-weight: 600;
    padding: 5px !important;
    text-align: right !important;
    margin: 0;
    font-size: 14px;
    z-index: 1;
    background-color: transparent;
    /* Ensure it's transparent if necessary */
    pointer-events: none;
    /* Prevent clicking the button directly */
}

.car-form .input-group1 {
    display: flex;
    flex-direction: column;
}

.input-group1 input[type="file"]:focus+.btn-outline-secondary1 {
    outline: none;
    /* Make sure there's no focus outline on the button */
}

.input-group-text {
    background-color: #fff !important;
    border-radius: 8px !important;
    color: #13549F;
    position: relative;
}

.btn-outline-secondary1:hover {
    background-color: #fff !important;
    color: #13549F !important;
}

.btn-outline-secondary1:focus {
    box-shadow: 0 0 0 #fff !important;
}

.business,
.media,
.career {
    display: none;
}

.hcpnum {
    display: none;
}

#enq:checked {
    font-weight: bold;
}

.servclms>div {
    background: linear-gradient(180deg, #E8EEF6 5.3%, #FFF 100%);
}

.servclms .patclm h4 {
    background: rgb(234 239 247)
}

.patrow {
    padding: 20px 0px;
}

.patrow img {
    padding: 10px 0;
    width: 180px;
}

.featCard {
    text-align: center;
    display: inline-block;
    padding: 10px 0;
}

.featCard img {
    padding: 12px 0 10px 0;
    border-bottom: 2px solid #FFCCF2;
    width: 100px;
}

.featCard h5 {
    font-size: 16px;
    color: #13549F;
    margin: 10px 0
}


.file-input {
    position: relative;
    display: inline-block;
    width: 100%;
}

.file-upload-label {
    display: block;
    position: relative;
    cursor: pointer;
    background: #F2E6EE66;
    border: 0.5px solid #13549F;
    text-align: left
}

.file-upload-label input[type="file"] {
    display: none;
}

.placeholder {
    color: #13549F;
    letter-spacing: 3px;
    font-family: 'Jost-Light';
    font-size: 12px;
    background-color: transparent !important;
    opacity: 2
}

.uploaded-files {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.uploaded-files span {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    gap: 10px;
    color: #003366;
    font-weight: 500;
}

.delete-file {
    color: #003366 !important;
    cursor: pointer;
    border: none !important;
    background-color: none !important;
    font-size: 14px;
}

.delete-file i {
    font-size: 12px;
}

.careerrow {
    border-radius: 20px;
    border: 1px solid #FFCCF2;
    background: #F8F0F5;
    overflow: hidden;
    margin-top: 40px;
}

.opportunity {
    width: 100%;
}

.detailscareer {
    padding: 40px;
}

.detailscol {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    /* border-bottom: 1px solid #D981C6; */
    /* margin-bottom: 24px; */
}

.detailsrow {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    gap: 15px
}

.detailtext {
    text-align: left;
}

.detailtext h5 {
    color: #13549F;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2.88px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.detailsrow img {
    width: 32px;
}

hr {
    border: none;
    height: 2px;
    background-color: #FFCCF2;
}

.filterRow {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 10px;
}

.filters {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 15px;
    background: #F8F0F5;
    ;
    border-radius: 10px;
    border: 0.5px solid #13549F;
    cursor: pointer;
}

.toggle-container {
    position: relative;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
    transition: background 0.3s;
}

/* .toggle-container.active {background: #ff9eb5;} */
.flag {
    width: 20px;
    height: 20px;
    border-radius: 3px;
}

.toggle-button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: #13549F;
    transition: color 0.3s;
    opacity: 0.3;
}

.toggle-container.active .toggle-button {
    color: #13549F;
    opacity: 2;
}

.label {
    font-weight: bold;
    color: rgb(19, 84, 159);
    font-size: 14px;
}

.toggle-container.active+.label {
    opacity: 0.5;
}

.filter-container {
    position: relative;
    display: inline-block;
}

.filter-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 15px;
    background: #F8F0F5;
    ;
    border-radius: 10px;
    border: 0.5px solid #13549F;
    cursor: pointer;
    font-size: 14px;
    color: #13549F;
    height: 43.6px;
}

.filter-button img {
    width: 16px;
    margin-right: 0px;
}

.filter-menu {
    display: none;
    position: absolute;
    top: 45px;
    right: 0;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 15px;
    min-width: 500px;
    z-index: 10;
    border-radius: 10px;
    border: 0.5px solid #13549F;
    background: #F8F0F5;
}

.filter-menu.active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.filter-menu>.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: #13549F;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1.6px;
    background-color: transparent !important;
    border: none !important;
}

.filter-menu .nav-tabs {
    border-bottom: 1px solid #FFCCF2;
    margin-bottom: 10px;
}

.filter-menu .nav-link {
    color: #13549F !important;
    font-size: 12px;
    text-transform: uppercase;
}

.filter-menu .nav-tabs .nav-link {
    border: none !important;
}

.filter-menu {
    display: none;
}

.filter-menu.open {
    display: block;
}

.disabled {
    pointer-events: none;
    opacity: 0.5;
}

.prodName p a {
    color: #13549F;
    text-align: center;
    font-size: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.7;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.page-btn {
    border: 2px solid #13549F;
    background: none;
    padding: 6px 15px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    padding-bottom: 5px;
}

.page-btn:hover {
    background: #e0e7ff;
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    padding-bottom: 5px;
}

.page-number {
    font-size: 14px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    color: #13549F;
    transition: 0.3s;
    font-style: italic;
    text-align: center;
    margin: 0 5px;
}

.page-number:hover {
    background: #e0e7ff;
}

.page-number.active {
    border-radius: 10px;
    color: #fff;
    font-weight: bold;
    background-color: #13549F;
}

.page-btn img {
    width: 20px;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

/* Rotate arrows correctly */
#prevBtn img {
    transform: rotate(180deg);
}

.page-btn:hover img {
    transform: scale(1.2);
}

/* Disabled button styles */
.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.prodcl>.prodcard {
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.modal-content {
    border-radius: 12px;
    border: 1px solid #FFCCF2;
    background: #FCF7F9;
    box-shadow: 0px 0px 10px 10px rgba(255, 204, 242, 0.10) inset;
}

.modal-header {
    justify-content: space-between;
    border: 1px solid #FFCCF2;
    padding: 20px 40px;
}

.btn-secondary {
    border-radius: 10px;
    border: 1px solid #13549F;
    background: #13549F;
}

.btn-secondary:hover {
    border-radius: 10px;
    border: 1px solid #13549F;
    color: #13549F;
    background-color: #fff;
}

.modal {
    background: rgba(255, 242, 229, 0.20);
    backdrop-filter: blur(6px);
}

.modal-head h6 {
    color: #13549F;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2.56px;
    text-transform: uppercase;
}

.modal-head h3 {
    color: #13549F;
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 2.56px;
    text-transform: uppercase;
}

.modal-body p {
    color: #13549F;
    font-size: 14px;
    font-family: 'Jost';
    margin-bottom: 8px;
}

.modal-body h6 {
    color: #13549F;
    font-size: 14px;
    margin-bottom: 8px;
    font-family: 'Jost';
}

.modal-body {
    padding: 40px;
}

.left-space {
    margin-left: 15px;
}

.info-list li {
    list-style-type: disc;
    margin-left: 20px;
    color: #13549F;
    font-size: 14px;
    font-family: 'Jost';
    margin-bottom: 8px;
}

.newsfilter {
    margin-top: 40px;
}

.filterby {
    text-align: center;
    margin-bottom: 20px;
}

.filterby h5 {
    text-transform: uppercase;
    color: #003366;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2.24px;
    text-transform: uppercase;
}

.filter-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.year-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 5px;
    border: 0.5px solid #13549F;
    background: #F8F0F5;
    padding: 5px 10px;
    justify-content: center;
    height: 39px;
}

.year-selector button {
    border: none;
    background: transparent;
    font-size: 15px;
    cursor: pointer;
    color: #13549f;
}

#year-display {
    color: #13459f;
    letter-spacing: 3px;
    font-family: 'Jost-Light';
    font-size: 12px;
}

.year-selector button:disabled {
    color: #aaa;
    cursor: not-allowed;
}

.moblink a {
    font-style: italic;
    font-size: 14px;
    color: #13459f;
    font-weight: 600;
    display: none;
    margin-top: 10px;
}

.prod-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.disabled {
    pointer-events: none !important;
    opacity: 0.5 !important;
}


/* Privacy Policy */
.privacy {
    padding: 80px 0;
}

.privacyText h4 {
    padding: 2px 0;
    font-weight: 500;
    color: #13549F;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
    margin-top: 15px;
}

.privacyText p {
    margin-bottom: 5px;
    color: #13549F;
    font-size: 16px;
    font-family: 'Jost-Light';
}

.list {
    margin-left: 30px !important;
    list-style-type: disc !important;
}

.list li {
    font-size: 16px;
    font-family: 'Jost-Light';
    padding: 0px 0;
    list-style-type: disc !important;
    color: #13549F;
    line-height: normal;
}

.privacyText p a:hover {
    font-weight: 700;
}

.servrow:hover .boxes .aftfhover {
    opacity: 1;
}

.servrow:hover .boxes .befhover {
    opacity: 0;
}

.servrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

.aftfhover {
    opacity: 0;
    z-index: 2;
}

.cardtext {
    background-color: #FCF7F9;
    padding: 30px;
    border-radius: 20px;
    margin-left: 20px;
}

.cardtext .hover-text h5 {
    color: #003366;
    text-align: left;
}

.servrow:hover .cardtext h5 {
    color: #D981C6;
}

.cardtext {
    margin-top: 45px;
}

.cardtext .hover-text p {
    color: #003366;
    margin-bottom: 10px;
    text-align: left;
}

.boxes {
    width: 100%;
    border-radius: 20px;
    height: 300px;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 2px 8px 0px #F3D9E2;
    transition: filter 0.8s ease-in-out, transform 0.8s ease-in-out;
    background-color: #fff;
    margin-top: 40px;
}

.modal-body a {
    background-color: #13549F;
    color: #fff;
    border-radius: 8px;
    padding: 5px 15px;
    margin-top: 0px;
    font-size: 14px;
}

.modal-body a i {
    margin-left: 5px;
}

.modal-body a:hover {
    border: 1px solid #13549F;
    background-color: transparent;
    color: #13549F;
}

.boxes .buttonpannel {
    position: absolute;
    bottom: -80px;
    left: 0;
    width: 100%;
    transition: 0.8s ease-in-out, transform 0.8s ease-in-out;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 10px 10px;
    gap: 5;
    opacity: 0;
    z-index: 2;
    background: linear-gradient(0deg, #13549F 0%, rgba(55, 110, 174, 0.86099) 32.4%, rgba(255, 255, 255, 0) 100%);

}





.boxes img {
    position: absolute;
    inset: 0;
    width: 440px;
    height: 300px;
    /* object-fit: cover; */
    /* transition: opacity 0.8s ease-in-out; */
    z-index: 1;
}




.selected-category {
    color: #000;
    font-weight: bold;
    font-size: 14px;
}




/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: white;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: none;
}

.cookie-banner.show {
    display: block;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 8px 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-family: 'Jost';
    font-size: 12px;
    font-style: italic;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 2.8px;
    text-transform: uppercase;
}

.cookie-btn.accept-all {
    background: #27ae60;
    color: white;
}

.cookie-btn.accept-all:hover {
    background: #2ecc71;
}

.cookie-btn.essential-only {
    background: #0056b3;
    color: white;
}

.cookie-btn.essential-only:hover {
    background: #0056b3;
}

.cookie-btn.settings {
    background: #ffc107;
    color: #000;
    border: 2px solid #ffc107;
}

.cookie-btn.settings:hover {
    background: white;
    color: #2c3e50;
    border: 2px solid #fff;
}

/* Settings Modal Styles */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-modal.show {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* .modal-content {
    background: white;
    border-radius: 10px;
    padding: 30px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s ease-out;
} */

@keyframes slideIn {
    from {
        transform: scale(0.9) translateY(-20px);
        opacity: 0;
    }

    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #7f8c8d;
}

.modal-close:hover {
    color: #2c3e50;
}

.cookie-category {
    margin: 20px 0;
    padding: 15px;
    border: 1px solid #ecf0f1;
    border-radius: 8px;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.category-title {
    font-weight: bold;
    color: #2c3e50;
}

.toggle-switch {
    position: relative;
    width: 50px;
    height: 24px;
    background: #bdc3c7;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.3s;
}

.toggle-switch.active {
    background: #27ae60;
}

.toggle-switch.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.toggle-slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s;
}

.toggle-switch.active .toggle-slider {
    transform: translateX(26px);
}

.category-description {
    color: #7f8c8d;
    font-size: 14px;
    line-height: 1.4;
}

.modal-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Content styles */
.content {
    padding: 20px;
    margin: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.test-button {
    background: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin: 10px 5px;
    transition: background 0.3s;
}

.test-button:hover {
    background: #0056b3;
}

.status {
    margin-top: 20px;
    padding: 15px;
    background: #e9ecef;
    border-radius: 5px;
    font-family: monospace;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .modal-content {
        margin: 10px;
        padding: 0px;
    }

    .modal-buttons {
        flex-direction: column;
    }
}

/* Cookie Banner Styles END */

.carousel-item {
    transition: transform 6s linear !important;

}








.therapy-bxslider li {
    display: inline-block;
}

.therapy-bxslider .nav-link {
    padding: 8px 12px;
    background: #e8e8e8;
    border-radius: 20px;
    margin-right: 8px;
    font-size: 14px;
    white-space: nowrap;
}

.therapy-bxslider .nav-link.active {
    background: #007bff;
    color: #fff;
}

.whoweareslider,
.whoweareslider1 .therapyslider {
    display: none;
}

.overflow-auto {
    margin-bottom: 10px;
}

.overflow-auto::-webkit-scrollbar {
    height: 8px;
    margin-bottom: 10px;
}

.overflow-auto::-webkit-scrollbar-thumb {
    background-color: rgba(13, 73, 143, 0.50);
    border-radius: 3px;

}



.mobslider {
    display: none;
}






/*Extra small devices (portrait phones, less than 576px)*/
/*No media query since this is the default in Bootstrap*/
/*Small devices (landscape phones, 576px and up)*/

/* iPhone SE and similar (320px) */
@media only screen and (min-width: 320px) and (max-width: 374px) {
    .toggle-button {
        font-size: 20px;

    }

    .flag {
        width: 18px;
        height: 18px;
    }
}

/* iPhone 12/13 Mini and similar (375px) */
@media only screen and (min-width: 375px) and (max-width: 424px) {
    .toggle-button {
        font-size: 20px;

    }

    .flag {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 576px) {

    .logotext {
        margin-top: 0px;
    }

    .mobslider {
        touch-action: none !important;
        -ms-touch-action: none !important;
        pointer-events: auto !important;
    }

    .deskslider {
        display: none;
    }

    .mobslider {
        display: block;
    }

    .modal-header {
        padding: 10px;
    }

    .banner {
        height: 100%;
    }

    .whodesk {
        display: none;
    }

    .whoweareslider,
    .whoweareslider1 {
        display: block;
        /* margin-top: 0 !important; */
    }

    .repon_menu,
    .mobNav {
        display: block;
    }

    .menu {
        display: none;
    }

    /* .whoweareslider~.bx-wrapper .bx-viewport {
        height: 500px !important;
    } */


    .whoweareslider .box {
        height: 320px;
        overflow: hidden;
        border-radius: 10px !important;
    }

    .whoweareslider .box .btmtxt {
        position: absolute;
        bottom: 28px;
        width: 100%;
        /* background: rgba(0, 0, 0, 0.6); */
        color: #fff;
        padding: 10px;
        font-size: 14px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }

    .bx-wrapper .whoweareslider img {
        display: inline !important;
        /* width: 320px !important; */
    }

    .whoweareslider1 .box {
        height: 320px;
        overflow: hidden;
        border-radius: 10px !important;
    }

    .whoweareslider1 .box .btmtxt {
        position: absolute;
        bottom: 28px;
        width: 100%;
        /* background: rgba(0, 0, 0, 0.6); */
        color: #fff;
        padding: 10px;
        font-size: 14px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }

    .bx-wrapper .whoweareslider1 img {
        display: inline !important;
        /* width: 320px !important; */
    }

    .customtherapyslider~.bx-wrapper .bx-viewport {
        height: 790px !important;
    }

    .welcom>div,
    .servclm>div,
    .theraptabs>div,
    .partnerClm>div,
    .Productclm>div {
        border-radius: 0px 0px 50px 50px;
    }

    .footer>div {
        border-radius: 50px 50px 0px 0px;
        padding-top: 50px;
    }

    .patclm {
        width: 100%;
    }

    .Newsclm .ctabtn {
        margin-top: 40px;
    }


    .ttfs {
        margin-bottom: 50px;
    }

    .banner .carousel-item video {
        transform: scale(3);
    }

    .theraptabs .nav-pills {
        width: 1032px;
    }



    .therapyslider {
        display: block !important;
        margin-top: 0px !important;
    }

    .theraptxt {
        border-radius: 30px;
        margin-top: 10px;
    }

    .theraptxt h4 {
        margin-bottom: 10px;
        font-weight: 600;
    }

    .bx-controls-direction {
        /* display: none !important; */
    }

    .innerbanner {
        height: 300px;
    }

    .card {
        margin-bottom: 20px;
        height: auto;
    }

    .card .details {
        justify-content: space-evenly;
    }

    section {
        padding: 20px 0;
    }

    .team {
        padding: 40px 0;
    }

    .team-space {
        margin-top: 0px;
    }

    .box {
        height: 480px;
        margin-bottom: 20px;
    }

    .box img {
        height: 100%;
    }

    .box .buttonpannel {
        bottom: 0%;
        height: 100%;
        justify-content: center;
    }

    .boxes {
        height: 480px;
        margin-bottom: 20px;
    }

    .boxes img {
        height: 100%;
    }

    .boxes .buttonpannel {
        bottom: 0% !important;
        height: 100%;
        justify-content: center;
    }

    .hover-text p {
        opacity: 1;
        margin-bottom: 20px;
        font-size: 16px;
    }

    .procudtsdetails {
        margin-top: 20px;
    }

    .navacard {
        width: 100%;
    }

    .input-group>.form-control {
        width: 15%;
    }

    .text-end {
        text-align: center !important;
    }

    .detailscareer {
        flex-direction: column;
    }

    .ttfs h1 {
        font-size: 24px;
        line-height: normal;
        margin-bottom: 10px;
    }

    .ttfs h4 {
        font-size: 20px;
        line-height: normal;
    }

    .detailscol {
        flex-direction: column;
        gap: 20px;
    }

    .patclm h1,
    .Newsclm h1 {
        font-size: 25px;
        white-space: normal;
    }

    .servcolcards {
        padding: 10px 0;
    }

    .prodcard:hover .carddetails h4,
    .prodcard:hover .carddetails .flags {
        opacity: 1;
    }

    .prodcard:hover .cardpatch {
        display: none;
    }

    .mobtag {
        display: block !important;
        color: #13459f;
    }



    .moblink a {
        display: block;
    }

    .befhover {
        opacity: 0;
    }

    .aftfhover {
        opacity: 1;
    }

    .newsImg:hover>div {
        display: flex;
        opacity: 0;
        visibility: visible;
    }

    .newsImg:hover>div img {
        display: none;
    }

    .Newsclm>div {
        padding: 40px 0;
    }

    .footer {
        padding-top: 40px;
    }

    .box:hover .buttonpannel {
        display: none;
    }

    .box {
        background-blend-mode: normal;
    }

    .box:hover .btmtxt {
        display: block;
    }


    .box .mobtag {
        color: #fff;
        font-weight: 600;
        text-align: left;
    }

    .boxes:hover .buttonpannel {
        display: none;
    }

    .boxes {
        background-blend-mode: normal;
    }

    .boxes:hover .btmtxt {
        display: block;
    }


    .boxes .mobtag {
        color: #fff;
        font-weight: 600;
        text-align: left;
    }

    .card:hover .details {
        display: none;
    }

    .btmtxt h5 {
        text-align: left;
    }

    .text-block h2 {
        font-size: 20px;
    }

    .filterRow {
        flex-direction: column;
        width: 100%;
    }

    .filter-menu {
        min-width: 100%;
    }

    .filter-button {
        width: -webkit-fill-available;
    }

    .page-number {
        margin: 0;
    }

    .contact-details h4 {
        margin-top: 40px;
    }

    .card .role {
        margin-bottom: 20px;
    }

    .btmtxt {
        background: rgba(19, 69, 159, 0.7);
        z-index: 1;
    }

    .prod-container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
    }

    .Newsclm h1 {
        font-size: 20px;
    }

    .theraptabs .nav-pills .nav-item {
        min-height: 0;
    }

    .theraptabs .nav-pills .nav-item::before {
        margin-top: 6px;
    }

    .theraptabs .nav-pills .nav-link.active,
    .nav-pills .show>.nav-link {
        padding-top: 25px
    }

    .theraptabs .nav-pills .nav-link {
        padding-bottom: 19px;
        padding-top: 20px;
    }

    .modal-head h3 {
        font-size: 16px;
        margin-top: 10px;
    }

    .Category {
        margin: 10px 0 0 0;
    }

    .Productclm .nav-pills .nav-link.active,
    .nav-pills .show>.nav-link {
        background-color: #13549F;
        color: #fff;
        text-decoration: none;
        font-size: 12px;
        letter-spacing: 1px;
        padding: 10px 8px;
    }

    .nav {
        flex-direction: row !important;
        flex-wrap: nowrap;
        align-items: center;
    }

    .Productclm .nav-pills .nav-link {
        font-size: 12px;
        letter-spacing: 1px;
    }
}



/*Medium devices (tablets, 768px and up)*/
@media (max-width: 768px) {
    .mobslider {
        touch-action: none !important;
        -ms-touch-action: none !important;
        pointer-events: auto !important;
    }

    .deskslider {
        display: none;
    }

    .mobslider {
        display: block;
    }

    .banner {
        height: 100%;
    }


    .repon_menu,
    .mobNav {
        display: block;
    }

    .menu {
        display: none;
    }

    .welcom>div,
    .servclm>div,
    .theraptabs>div,
    .partnerClm>div,
    .Productclm>div {
        border-radius: 0px 0px 50px 50px;
    }

    .footer>div {
        border-radius: 50px 50px 0px 0px;
        padding-top: 50px;
    }

    .patclm {
        width: 100%;
    }

    .Newsclm .ctabtn {
        margin-top: 40px;
    }

    .ttfs {
        margin-bottom: 50px;
    }

    .banner .carousel-item video {
        transform: scale(3);
    }

    .theraptabs .nav-pills {
        width: 1032px;
    }

    .bx-controls-direction {
        /* display: none !important; */
    }

    .innerbanner {
        height: 300px;
    }

    .card {
        margin-bottom: 20px;
        height: auto;
    }

    .card .details {
        justify-content: space-evenly;
    }

    section {
        padding: 20px 0;
    }

    .team {
        padding: 40px 0;
    }

    .team-space {
        margin-top: 0px;
    }



    .procudtsdetails {
        margin-top: 20px;
    }

    .navacard {
        width: 100%;
    }

    .input-group>.form-control {
        width: 15%;
    }

    .text-end {
        text-align: center !important;
    }

    .detailscareer {
        flex-direction: column;
    }

    .ttfs h1 {
        font-size: 24px;
        line-height: normal;
        margin-bottom: 10px;
    }

    .ttfs h4 {
        font-size: 20px;
        line-height: normal;
    }

    .detailscol {
        flex-direction: column;
        gap: 20px;
    }

    .patclm h1,
    .Newsclm h1 {
        font-size: 25px;
        white-space: normal;
    }

    .servcolcards {
        padding: 10px 0;
    }

    .prodcard:hover .carddetails h4,
    .prodcard:hover .carddetails .flags {
        opacity: 1;
    }

    .prodcard:hover .cardpatch {
        display: none;
    }

    .mobtag {
        display: block !important;
        color: #13459f;
    }



    .moblink a {
        display: block;
    }

    .befhover {
        opacity: 0;
    }

    .aftfhover {
        opacity: 1;
    }

    .newsImg:hover>div {
        display: flex;
        opacity: 0;
        visibility: visible;
    }

    .newsImg:hover>div img {
        display: none;
    }

    .Newsclm>div {
        padding: 40px 0;
    }

    .footer {
        padding-top: 40px;
    }

    .box:hover .buttonpannel {
        display: none;
    }

    .box {
        background-blend-mode: normal;
    }

    .box:hover .btmtxt {
        display: block;
    }

    .box .mobtag {
        color: #fff;
        font-weight: 600;
        text-align: left;
    }

    .box {
        height: 300px;
        margin-bottom: 20px;
    }

    .box img {
        height: 100%;
    }

    .box .buttonpannel {
        bottom: 0%;
        height: 100%;
        justify-content: center;
    }

    .hover-text p {
        opacity: 1;
        margin-bottom: 20px;
        font-size: 16px;
    }

    .boxes:hover .buttonpannel {
        display: none;
    }

    .boxes {
        background-blend-mode: normal;
    }

    .boxes:hover .btmtxt {
        display: block;
    }

    .boxes .mobtag {
        color: #fff;
        font-weight: 600;
        text-align: left;
    }

    .boxes {
        height: 480px;
        margin-bottom: 20px;
    }

    .boxes img {
        height: 100%;
    }

    .boxes .buttonpannel {
        bottom: 0%;
        height: 100%;
        justify-content: center;
    }

    .card:hover .details {
        display: none;
    }

    .btmtxt h5 {
        text-align: left;
    }

    .text-block h2 {
        font-size: 20px;
    }

    .filterRow {
        flex-direction: column;
        width: 100%;
    }

    .filter-menu {
        min-width: 100%;
    }

    .filter-button {
        width: -webkit-fill-available;
    }

    .page-number {
        margin: 0;
    }

    .contact-details h4 {
        margin-top: 40px;
    }

    .card .role {
        margin-bottom: 20px;
    }

    .btmtxt {
        background: rgba(19, 69, 159, 0.7);
        z-index: 1;
    }

    .prod-container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
    }

    .Newsclm h1 {
        font-size: 20px;
    }

    .theraptabs .nav-pills .nav-item {
        min-height: 0;
    }

    .theraptabs .nav-pills .nav-item::before {
        margin-top: 6px;
    }

    .theraptabs .nav-pills .nav-link.active,
    .nav-pills .show>.nav-link {
        padding-top: 25px
    }

    .theraptabs .nav-pills .nav-link {
        padding-bottom: 19px;
    }
}

/*Large devices (desktops, 992px and up)*/
@media (max-width: 992px) {
    .mobslider {
        touch-action: none !important;
        -ms-touch-action: none !important;
        pointer-events: auto !important;
    }

    .deskslider {
        display: none;
    }

    .mobslider {
        display: block;
    }

    .banner {
        height: 100%;
    }

    .repon_menu,
    .mobNav {
        display: block;
    }

    .menu {
        display: none;
    }

    .welcom>div,
    .servclm>div,
    .theraptabs>div,
    .partnerClm>div,
    .Productclm>div {
        border-radius: 0px 0px 50px 50px;
    }

    .footer>div {
        border-radius: 50px 50px 0px 0px;
        padding-top: 50px;
    }

    .patclm {
        width: 100%;
    }

    .Newsclm .ctabtn {
        margin-top: 40px;
    }

    .ttfs {
        margin-bottom: 50px;
    }

    .banner .carousel-item video {
        transform: scale(3);
    }

    .theraptabs .nav-pills {
        width: 1032px;
    }

    .bx-controls-direction {
        /* display: none !important; */
    }

    .innerbanner {
        height: 300px;
    }

    .card {
        margin-bottom: 20px;
        height: auto;
    }

    .card .details {
        justify-content: space-evenly;
    }

    section {
        padding: 20px 0;
    }

    .team {
        padding: 40px 0;
    }

    .team-space {
        margin-top: 0px;
    }

    .box {
        height: 265px;
        margin-bottom: 20px;
    }

    .box img {
        height: 100%;
    }

    .box .buttonpannel {
        bottom: 0%;
        height: 100%;
        justify-content: center;
    }

    .hover-text p {
        opacity: 1;
        margin-bottom: 20px;
        font-size: 16px;
    }

    .procudtsdetails {
        margin-top: 20px;
    }

    .navacard {
        width: 100%;
    }

    .input-group>.form-control {
        width: 15%;
    }

    .text-end {
        text-align: center !important;
    }

    .detailscareer {
        flex-direction: column;
    }

    .ttfs h1 {
        font-size: 24px;
        line-height: normal;
        margin-bottom: 10px;
    }

    .ttfs h4 {
        font-size: 20px;
        line-height: normal;
    }

    .detailscol {
        flex-direction: column;
        gap: 20px;
    }

    .patclm h1,
    .Newsclm h1 {
        font-size: 25px;
        white-space: normal;
    }

    .servcolcards {
        padding: 10px 0;
    }

    .prodcard:hover .carddetails h4,
    .prodcard:hover .carddetails .flags {
        opacity: 1;
    }

    .prodcard:hover .cardpatch {
        display: none;
    }

    .mobtag {
        display: block !important;
        color: #13459f;
    }



    .moblink a {
        display: block;
    }

    .befhover {
        opacity: 0;
    }

    .aftfhover {
        opacity: 1;
    }

    .newsImg:hover>div {
        display: flex;
        opacity: 0;
        visibility: visible;
    }

    .newsImg:hover>div img {
        display: none;
    }

    .Newsclm>div {
        padding: 40px 0;
    }

    .footer {
        padding-top: 40px;
    }

    .box:hover .buttonpannel {
        display: none;
    }

    .box {
        background-blend-mode: normal;
    }

    .box:hover .btmtxt {
        display: block;
    }

    .box .mobtag {
        color: #fff;
        font-weight: 600;
        text-align: left;
    }

    .boxes:hover .buttonpannel {
        display: none;
    }

    .boxes {
        background-blend-mode: normal;
    }

    .boxes:hover .btmtxt {
        display: block;
    }

    .boxes .mobtag {
        color: #fff;
        font-weight: 600;
        text-align: left;
    }

    .boxes {
        height: 480px;
        margin-bottom: 20px;
    }

    .boxes img {
        height: 100%;
        width: 100%;
    }

    .cardtext {
        margin: 0 0 20px 0 !important;
    }

    .boxes .buttonpannel {
        bottom: 0%;
        height: 100%;
        justify-content: center;
    }

    .card:hover .details {
        display: none;
    }

    .btmtxt h5 {
        text-align: left;
    }

    .text-block h2 {
        font-size: 20px;
    }

    .filterRow {
        flex-direction: column;
        width: 100%;
    }

    .filter-menu {
        min-width: 100%;
    }

    .filter-button {
        width: -webkit-fill-available;
    }

    .page-number {
        margin: 0;
    }

    .contact-details h4 {
        margin-top: 40px;
    }

    .card .role {
        margin-bottom: 20px;
    }

    .btmtxt {
        background: rgba(19, 69, 159, 0.7);
        z-index: 1;
    }

    .prod-container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
    }

    .Newsclm h1 {
        font-size: 20px;
    }

    .theraptabs .nav-pills .nav-item {
        min-height: 0;
    }

    .theraptabs .nav-pills .nav-item::before {
        margin-top: 6px;
    }

    .theraptabs .nav-pills .nav-link.active,
    .nav-pills .show>.nav-link {
        padding-top: 30px
    }

    .theraptabs .nav-pills .nav-link {
        padding-bottom: 19px;
    }
}

/* iPad landscape mode */
@media only screen and (min-width: 1024px) and (max-width: 1366px) {
    .boxes img {
        width: 100%;
    }

    .repon_menu,
    .mobNav {
        display: none;
    }

    .menu {
        display: block;
    }

    .ttfs h1 {
        font-size: 34px;
        line-height: normal;
        margin-bottom: 10px;
    }

    .ttfs h4 {
        font-size: 30px;
        line-height: normal;
    }

    .servclms {
        margin-bottom: 40px;
    }

    .prod-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .box {
        height: 280px;
    }

    .input-group>.form-control {
        width: 15%;
    }
}


/*Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {

    .repon_menu,
    .mobNav {
        display: none;
    }

    .menu {
        display: block;
    }
}