*{
	margin:0px;
    padding:0px;
    font-weight: 400;
  font-family: "Figtree", sans-serif;
}

p {
    margin: 0;
}
/* end-edit */
html.has-scroll-smooth {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;  
} 
body.no-scroll {
    overflow: hidden;
}
html {
  scroll-behavior: smooth;
}


body {
  transition: background 1s ease;
}
/* width */
::-webkit-scrollbar {
    width: 6px;
}
 
/* Track */
::-webkit-scrollbar-track {
    background: #fff; 
    width:10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: rgba(0, 159, 204, 1); 
    border-radius: 60px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 159, 204, 1); 
}


.ww-icon-link{
    padding: 12px;
    box-sizing: border-box;
    border-radius: 50%;
    cursor: pointer;
    overflow: hidden;
    box-shadow: rgb(0 0 0 / 40%) 2px 2px 6px;
    transition: all 0.5s ease 0s;
    position: fixed;
    z-index: 9;
    height: 60px;
    width: 60px;
    background: rgb(77, 194, 71) !important;
        text-decoration: none !important;
    right: 30px;
    bottom: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
}
.ww-icon-link path {
    z-index: 1;
    cursor: pointer;
    fill: #fff;
}


/* common style */

.privacy_page .title{
    color: #fff;
}


.custom_container {
    padding: 0 8%;
    max-width: 1650px;
    z-index: 1;
    margin: auto;
    position: relative;
}
.btn_onsure{
    background:rgba(0, 159, 204, 1);
    color: #fff;
    padding: 12px 20px !important ;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border: 1px solid rgba(0, 159, 204, 1);
    position: relative;
    /*text-transform: capitalize;*/
    z-index: 1;
    transition: 0.6s;
    min-width: 148px;
    border-radius: 50px;
    display: inline-block;
}
.btn_onsure:hover {
    color:rgba(0, 159, 204, 1);
    box-shadow: inset 0 -4em 0 0 #fff !important;
}  
.btn_onsure:hover svg path{
    stroke:rgba(0, 159, 204, 1);
    transition: 0.6s;
}  
.btn_onsure_white{
    background:#fff;
    color:rgba(0, 159, 204, 1) ;
    padding: 12px !important ;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border: 1px solid;
    position: relative;
    /*text-transform: capitalize;*/
    z-index: 1;
    transition: 0.6s;
    min-width: 148px;
    border-radius: 50px;
    display: inline-block;
}
.btn_onsure_white:hover {
    color:#fff;
    box-shadow: inset 0 -4em 0 0 rgba(0, 159, 204, 1) !important;
}  
.menu_animation {
  display: inline-block;
  overflow: hidden;
  position: relative;
  padding-bottom: 5px;
}
.menu_animation:before {
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #eb5b0e;
  transform: translateX(-110%);
  content: '';
  position: absolute;
  transition: transform .6s ease;
}
.menu_animation:hover:before {
  transform: translateX(0);
}


.logo {
    margin-right: 20px;
}
.logo img {
    height: 64px;
}
.navbar-animation{
  padding-bottom: 5px;
  overflow: hidden;
 position: relative;
  
}
.navbar-animation:before {
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #112959;
  transform: translateX(-110%);  content: '';
  position: absolute;
  transition: transform .5s ease;
}
.navbar-animation:hover:before {
  transform: translateX(0);
}

header{
    width: 100%;
    transition: 0.5s all;
    position: fixed;
    top: 0;
    left: 0;
    padding: 10px 0;
    z-index: 99;  
}
header.sticky {
    background:rgba(42, 47, 71, 1);
}
.navbar-brand.logo {
    margin: 0;
}

.menu a.btn_carus {
    color: #fff;
    padding: 12px;
}


header .navbar-brand span {
    color: #fff;
    font-weight: 600;
    font-size: 25px;
    margin-left: 10px;
}
.menu {
    display: inline-flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    column-gap: 40px;
    margin: 0;
    align-items: center;
}
.menu a {
    display: block;
    text-decoration: none;
    transition: 0.4s;
    text-transform: capitalize;
    text-align: center;
    font-weight: 600;
    color: #fff;
    padding: 22px 0;
    font-size: 16px;
}

.menu .sub-menu a {
    text-align: left;
    padding: 10px 15px;
    font-size: 14px;
    transition: 0.4s;
}
.menu .sub-menu a:hover {
    color: #fff;
    background: #006ab1;
}

.sub-menu {
    padding:  0;
    position: absolute;
    width: 250px;
    left: 0%;
    z-index: 2;
    /*min-height: 350px;*/
    justify-content: space-between;
    /*align-items: center;*/
    display: inline-flex;
    box-shadow: 0px 20px 20px #0000006b;
    top: 110px;
    background: #00a1c9;
    z-index: -1;
    opacity: 0;
    transition: 0.4s;
    visibility: hidden;
    pointer-events: none;
    max-height: 70vh;
    /*overflow: auto;*/
}
.dropdown_menu .sub-menu a:after {
    content: none;
}
.menu li:hover .sub-menu {
    /*display: inline-flex;*/
    top: 65px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.right_side {
    width: 100%;
    position: relative;
}
.sub-menu .menu {
    padding-right: 0;
    display: inline-block;
    width: 100%;
    padding-top: 0px;
    position: relative;
}
.sub-menu li{
    /*position: relative;*/
    border: none;
}

.dropdown_menu a:after {
    content: "";
    transform: rotate(45deg) translatey(-2px);
    -webkit-transform: rotate(45deg) translatey(-2px);
    border: solid #fff;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    margin-left: 5px;
}



.sub-menu2 {
    padding: 0;
    position: absolute;
    width: 250px;
    right: -250px;
    z-index: 2;
    justify-content: space-between;
    display: inline-flex;
    box-shadow: 0px 20px 20px #0000006b;
    top: 110px;
    background: #fff;
    z-index: -1;
    opacity: 0;
    transition: 0.4s;
    pointer-events: none;
    visibility: hidden;;
    max-height: 70vh;
    overflow: auto;
}


.menu .dropdown_menu2:hover .sub-menu2 {
    /*display: inline-flex;*/
    top: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.sub-menu2 .menu2 {
    padding-right: 0;
    display: inline-block;
    width: 100%;
    padding-top: 0px;
    position: relative;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
}
.menu a:hover {
    color: rgba(0, 159, 204, 1);
}
.menu li {
    position: relative;
    margin: 0 10px;
}
.search_btn {
    color: #fff;
    margin-left: 20px;
}
.side_bar{
    padding: 8px;
    margin-left: 40px;
    width: 45px;
    height: 40px;
    display: none;
    align-items: center;
    flex-wrap: wrap; 
    z-index: 10;
    position: relative;
    /* margin: 50px auto; */
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}
.side_bar span {
    display: block;
    height:2px;
    width: 100%;
    background: #fff;
    border-radius: 9px;
    opacity: 1;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}



.side_bar span:nth-child(1) {
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
  }
  
  .side_bar span:nth-child(2) {
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
  }
  
  .side_bar span:nth-child(3) {
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    width: 80%;
    -o-transform-origin: left center;
    transform-origin: left center;
  }
   
  
  .side_bar.open span:nth-child(1) {
    -webkit-transform: rotate(45deg) translate(-1px, -3px);
    -moz-transform: rotate(45deg) translate(-1px, -3px);
    -o-transform: rotate(45deg) translate(-1px, -3px);
    transform: rotate(45deg) translate(-1px, -3px);
    top:0%;
    left: 0;
  }
  .side_bar.open span:nth-child(2) {
    /*width: 0%;*/
    opacity: 0;
  }
  .side_bar.open span:before {
    content:unset;
}
  .side_bar.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    width:100%;
  }


.menu li {
    margin: 0;
}
.footer-bottom-bar {
    color: #fff;
    border-top: 1px solid;
    padding-top: 20px;
    margin-top: 40px;
}
.footer_logo .newsletter h4{
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    padding-bottom: 15px;
}
.footer-bottom-bar ul {
    display: inline-flex;
    list-style: none;
    gap: 6px;
}
.footer-bottom-bar ul a{
    color: #fff;
    text-decoration:none;
}
.footer_logo {
    padding-left: 60px;
}
.footer_logo p {
    color: #D8D8D8;
    font-size: 14px;
    font-weight: 400;
}
footer .custom-logo {
    height: 120px;
    object-fit: contain;
}
footer{
    position: relative;
    bottom: 0;
    background: rgba(42, 47, 71, 1);
    padding-top: 60px;
} 

footer .footer_item h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
}
footer .footer_item li a {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    margin-bottom: 12px;
    display: block;
    display: flex;
    gap: 10px;
    font-size: 15px;
}footer .footer_item li a svg{
    width: 24px;
}footer .footer_item li a span {
    width: calc(100% - 24px);
}
footer .footer_item li a:hover {
    color:rgba(0, 159, 204, 1);
}
footer .footer_item ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}
.footer_menu{
    padding-left:50px;
}
.footer_item {
    min-width: 18%;
}
.footer_menu .footer_item:nth-child(2) {
    min-width: 56%;
    padding-right: 25px;
}
footer .footer_item p {
    font-size: 15px;
}
.social-links a{
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .6s;
    text-decoration: none;   
    height: 32px;
    width: 32px;
}  
.social-links a svg{
    height: 32px;
    width: 32px;
}  
.social-links a:hover{
    transform: translateY(-10px);
}  
.social-links {
    width: 100%;
}
.footer_conten p{
    font-size: 15px;
    font-weight: 400;
    color: #272727;
    margin-bottom: 25px;
}
.footer_conten h4 {
    color: #272727;
    font-size: 16px;
    font-weight: 400;
    margin-top: 25px;
    margin-bottom: 20px;
}
ul.social_link {
    display: inline-flex;
    gap: 12px;
}
ul.social_link li a {
    background: #36393E;
    width: 42px;
    height: 42px;
    justify-content: center;
    font-size: 18px !important;
    border-radius: 50%;
}
ul.social_link li a:hover {
    background: #1490E9;
}
p.designed a {
    text-decoration: none;
    color: #2D2928;
}

.reach_out{
    background: #0068B4;
}
.reach_out .title h2 {
    color: #fff;
}
.reach_icon img{
    margin-bottom: -100px;
    margin-top: 20px;
    height: 170px;
}

.title h2{
    font-weight: 700;
    font-size: 36px;
    color: #fff;
    text-transform: capitalize;
    margin-bottom: 16px;
}
.title p{
    color: #fff;
    font-size: 18px;
    font-weight: 400;
}
.title span{
    color: rgba(55, 190, 176, 1);
    font-size: 20px;
    font-weight: 400;
}
.section{
    padding:60px 0;
    position: relative;
}

.learn_btn{
    color: #FFF;
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    text-decoration: none;
    text-transform: capitalize;
}
.learn_btn:hover {
    color:#fff;
}
.learn_btn:hover svg{
    margin-left:25px;
}
.learn_btn svg{
    margin-left: 15px;
    transition: 0.4s;
}

/* home page */


section.main_bnner {
    width: 100%;
    z-index: 1;
    overflow: hidden;
    position: relative;
}
section.main_bnner .swiper-slide:after {
    position: absolute;
    width: 100%;
    content: "";
    background: rgba(0, 0, 0, 0.3);
    height: 100%;
    z-index: 2;
    left: 0;
    top: 0;
}
section.main_bnner .swiper-slide {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}



section.main_bnner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}section.main_bnner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
section.main_bnner .banner_content h1{
    text-transform: capitalize;
    font-size: 50px;
    font-weight: 700;
}

section.main_bnner .banner_content p{
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}
section.main_bnner h1 {
    position: absolute;
    width: 35%;
    z-index: 6;
    top: 40%;
    font-size:48px;
    font-weight: 600;

    left: 0;
    z-index: 10;
    color: #fff;
    transform: translateY(-50%);
    transition: 1s;
}section.main_bnner .swiper-slide-active h1 {
    left: 8%;
}
section.main_bnner .banner_content {
    position: absolute;
    width: 30%;
    z-index: 6;
    bottom: 10%;
    right: 0;
    z-index: 10;
    color: #fff;
    transition: 1s;
}section.main_bnner .swiper-slide-active .banner_content {
    right: 8%;
}
.main_bnner .swiper-pagination {
    width: 38%;
    left: 8%;
    bottom: 50px;
    text-align: left;
}
.health{
    background: rgba(42, 47, 71, 1);
}
.health img{
    height:340px;
    object-fit: contain;
}
.health .title{
    padding-right: 80px;
}
.service{
    background: rgba(58, 65, 99, 1);
}
.service_list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-left: 40px;
}
.service_item {
    background: rgba(43, 48, 71, 1);
    border: 1px solid rgba(75, 183, 245, 1);
    color: #fff;
    padding: 15px;
    border-radius: 16px;
    width: calc(100% / 3 - 12px);
}
.service_item h4{
    font-weight: 700;
    font-size: 24px;
    text-transform: capitalize;
}.service_item p{
    font-weight: 400;
    font-size: 14px;
    margin-bottom:25px;
}


.service img {
    height: 300px;
    object-fit: contain;
    margin-top: 40px;
}
.news_home .title h2{
    color:rgba(49, 36, 53, 1);
}
.news_home .title p{
    color:rgba(49, 36, 53, 1);
}
.news_home .learn_btn{
    color:rgba(0, 159, 204, 1);
}
.news_card .news_img{
    height: 280px;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 16px;
}
.news_card .news_img img{
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: 0.4s;
    object-fit: cover;
}.news_card:hover .news_img img{
    scale: 1.1;
}
  a.news_card{
    margin-bottom: 25px;
    display: block;
    overflow: hidden;
    text-decoration: none;
    transition: 0.4s;
}  a.news_card:hover{
}
.news_card p{
    color: #003E7E;
    font-size: 14px;
}
.news_card h4{
    color: #272727;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 20px;
    text-transform: capitalize;

}
.news_card .news_content p img{
    margin-right: 10px;
    height: 20px;
}
.impact{
    background: rgba(58, 65, 99, 1);
}
.impact_list {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    padding-left: 40px;
}
.impact_item {
    border-bottom: 1px solid rgba(255, 255, 255, 1);
    color: #fff;
    width: calc(100% / 2 - 30px);
    padding-bottom: 10px;
    margin-bottom: 40px;
}
.impact_item h4{
    font-weight: 700;
    font-size: 18px;
}
.impact_item p{
    font-weight: 400;
    font-size: 18px;

}
.impact_item p span{
    color: rgba(0, 159, 204, 1);
    font-weight: 700;
    font-size: 48px;
    display: block;
    text-transform: capitalize;
}
.impact img {
    height: 300px;
    object-fit: contain;
    margin-top: 40px;
}

.who{
    background: rgba(58, 65, 99, 1);
}
.who .swiper-slide {
    background: #fff;
    margin-right: 30px;
    border-radius: 16px;
    height: auto;
    overflow: hidden;
}
.who .who_img {
    width: 100%;
    height: 240px;
    overflow: hidden;
}
.who .who_img img{
    width: 100%;
    height: 100%;
    transition: 0.6s;
    object-fit: cover;
}.swiper-slide:hover .who_img img {
    scale: 1.1;
}
.work_detail:hover .who_img img {
    scale: 1.1;
}
.who .swiper-slide h2{
    color: rgba(49, 36, 53, 1);
    font-weight: 700;
    font-size: 24px;
    text-transform: capitalize;
}
.who .swiper-slide p{
    font-weight: 400;
    font-size: 16px;
    color: rgba(82, 80, 82, 1);
}
.who_content{
    padding:20px;
}
.who_content ul {
    display: inline-flex;
    list-style: none;
    padding: 0; 
    margin: 20px 0 0;
    gap: 10px;
}.who_content ul li {
    padding: 5px 10px;
    border: 1px solid rgba(114, 135, 156, 1);
    color: rgba(0, 51, 102, 1);
    border-radius: 40px;
    font-size: 14px;
}

.who_nav {
    position: unset;
    opacity: 1;
    background: #fff;
    border-radius: 50%;
    width: 55px;
    height: 55px;
}.who_nav svg {
    height: 16px;
}
.who_nav:after{
    content: none;
}
.swiper-button-prev.who_nav {
    rotate: 180deg;
}
.work{
    background: rgba(42, 47, 71, 1);
}

.work_list {
    display: flex;
    gap: 20px;
    color: #fff;
}
.work_item {
    width: 33%;
    border-left: 1px solid rgba(0, 159, 204, 1);
    padding-left: 15px;
}
.work_item h2{
    font-size: 30px;
    font-weight: 700;margin-bottom: 25px;
    color: rgba(0, 159, 204, 1);
}
.work_item span{
    font-style: italic;
    color: #fff;
    margin-left: 10px;
    font-weight: 700;
    font-size: 24px;
}
.work_item ul{
    padding: 0;
    list-style: none;
}
.work_item ul li {
    border-radius: 40px;
    background: #fff;
    color: #000;
    padding: 14px 20px;
    font-weight: 600;
    font-size: 14px;
    width: max-content;
    margin-bottom: 15px;
}
.work_item ul li:nth-child(2) {
    transform: translateX(40px);
}
.work_item:nth-child(1) ul li:nth-child(3) {
    transform: translateX(140px);
    background: rgba(222, 244, 255, 1);
}
.work_item ul li:nth-child(4) {
    background: rgba(253, 255, 241, 1);
    transform: translateX(90px);
}
.work_item:nth-child(2) ul li:nth-child(1) {
    transform: translateX(-40px);
}
.work_item:nth-child(2) ul li:nth-child(2) {
    transform: translateX(-15px);
    background: rgba(222, 244, 255, 1);
}
.work_item:nth-child(2) ul li:nth-child(3) {
    transform: translateX(60px);
    background: rgba(255, 255, 255, 1);
}
.work_item:nth-child(2) ul li:nth-child(4) {
    transform: translateX(40px);
    background: rgba(255, 255, 255, 1);
}
.work_item:nth-child(3) ul li:nth-child(1) {
    background: rgba(253, 255, 241, 1);
    transform: translateX(-40px);
}
.work_item:nth-child(3) ul li:nth-child(2) {
    background: rgba(222, 244, 255, 1);
}
/*.work_item:nth-child(3) ul li:nth-child(2) {*/
/*    transform: translateX(15px);*/
/*}*/
.work_item:nth-child(3) ul li:nth-child(3) {
    transform: translateX(60px);
}




/*inner page*/

/*.inner_bnner.bg_dark {*/
/*    background: rgba(42, 47, 71, 1);*/
/*}*/
.long_height{
    padding:160px 0 80px;
}
.inner_bnner.revenue_page  {
    margin-bottom: -10px;
}
.bg_dark {
    background: rgba(42, 47, 71, 1);
}
.inner_bnner .banner_content {
    min-height: 440px;color: #fff;
    display: grid;    padding-top: 80px;
    place-content: center start;
}
.inner_bnner .banner_content span{
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
    color: rgba(55, 190, 176, 1);
}
.inner_bnner .banner_content h2{
    font-size: 48px;
    font-weight: 700;
}
.inner_bnner .banner_content p{
    font-size: 18px;
    font-weight: 500;
}
.team_content{
    padding: 25px;
}
.team {
    background: rgba(58, 65, 99, 1);
}
.team .col-md-4 {
    margin-bottom: 25px;
}
.team_detail {
    background: rgba(43, 48, 71, 1);
    overflow: hidden;
    border-radius: 20px;
    color: #fff;
    height: 100%;
    border: 1px solid rgba(75, 183, 245, 1);
}
.team_img {
    width: 100%;
    height: 260px;
    overflow: hidden;
}
.team_img img {
    width: 100%;
    transition: 0.6s;
    height: 100%;
    object-fit: cover;
}
.team_detail:hover .team_img img {
    scale: 1.1;
}
.team_detail h4{
    font-weight: 700;
    font-size: 20px;
    text-transform: capitalize;
}
.team_detail span{
    font-weight: 500;
    font-size: 16px;    margin-bottom: 20px;
    display: block;
    text-transform: capitalize;
}
.team_detail p{
    font-weight: 400;
    font-size: 16px;
    text-transform: capitalize;
}
.about_clip{    position: relative;
    border-radius: 16px;
    height: 360px;
    overflow: hidden;
}
.about_clip::before,
.about_clip::after {
  content: '';
  position: absolute;
  background-color: #374161;
}
.about_page .banner_content{
    
    min-height: 0;
}
.about_clip:before {
    width: 150px;
    height: 80px;
    top: 0;
    left: 0;
    border-radius: 0 0 15px;
}
.about_clip:after {
    width: 80px;
    height: 180px;
    bottom: 0;
    right: 0;
    border-radius: 15px 0 0;
}

/*.about_clip{*/
/*  -webkit-mask-image: url(../img/clip.png);*/
/*  mask-image: url(../img/clip.png);*/
/*}*/
.about_clip video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bg_light{
    background: rgba(58, 65, 99, 1);
}
.value .col-md-4{
    margin-bottom: 25px;
}
.value_item {
    border: 1px solid rgba(75, 183, 245, 1);
    text-align: center;
    border-radius: 16px;
    padding: 25px;
    height: 100%;
}
.value_item img {
    margin-bottom: 30px;
    height:65px;
}
.value_item h2 {
    font-weight: 700;
    font-size: 24px;
    text-transform: capitalize;
}
.value_item p {
    font-weight: 400;
    font-size: 16px;
}
.join .ele {
    position: absolute;
    left: 0;
    height: 280px;
    top: 50%;
    transform: translateY(-50%);
}
.join .ele2{
    left: unset;
    right:0;
}
.join {
    padding: 100px 0;
}

.trusted img {
    height: 340px;
    object-fit: contain;
    margin: auto;
}

.work_page .col-md-4  {
    margin-bottom: 25px;
}
.case_page  .col-md-4  {
    margin-bottom: 25px;
}

.work_detail {
    background: #fff;
    overflow: hidden;
    border-radius: 20px;
    color: rgba(49, 36, 53, 1) !important;
    display: block;
    height: 100%;
    text-decoration: none;
}
.work_img {
    width: 100%;
    height: 240px;
    overflow: hidden;
}
.work_img img {
    width: 100%;
    transition: 0.6s;
    height: 100%;
    object-fit: cover;
}
.work_detail:hover .work_img img {
    scale: 1.1;
}
.work_detail h4{
    font-weight: 700;
    font-size: 24px;
    text-transform: capitalize;
}
.work_detail span{
    font-weight: 500;
    font-size: 16px;    margin-bottom: 20px;
    display: block;
    text-transform: capitalize;
}
.work_detail p{
    font-weight: 400;
    font-size: 16px;
    /*text-transform: capitalize;*/
}
.work_content {
    padding: 20px;
}
.work_detail .learn_btn  {
    color: rgba(0, 159, 204, 1);
}
.case_page .work_img{
    height: 280px;
    
}
.contact .form-control {
    border: none;
    background: transparent;
    color: #fff;
    border-bottom: 1px solid #fff;
    border-radius: 16px;
    font-size: 16px;
    padding: 12px 20px;
    margin-bottom: 15px;
    border: 1px solid rgba(75, 183, 245, 1);
}
.contact .form-label {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #fff;
}
.contact_list {
    padding-right: 110px;
}
.contact_item {
    display: inline-flex;
    width: 100%;
    margin-bottom: 20px;
    gap: 20px;
}.contact_item h2{
    color: #fff;
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 18px;
}

.contact_item p {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}
.filter form {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}
.input_field {
    position:relative;
    width: 100%;
}
.input_field input {
    width: 100%;
    padding: 10px 50px;
    border-radius: 26px;
    background: transparent;
    border: 1px solid #fff;
    outline: none;
    color: #fff;
}
.input_field svg {
    position: absolute;
    left: 15px;
    top: 10px;
}
.let_sec .title h2{
    font-size: 42px;
    font-weight: 700;
}
.case_detail .banner_content ul {
    display: inline-flex;
    list-style: none;
    color: #fff;
    gap: 20px;
    padding: 0;
    margin: 25px 0 0;
    align-items: center;
}
.case_detail span {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
    color: rgba(55, 190, 176, 1);
}

.case_content {
    color: #fff;
}
.case_content img{
    width:100%;
    height: 450px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 40px;
}
.case_content p{
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 25px;
}
.case_content h2{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}
.case_detail  {
    padding-bottom: 80px;
}


.case_share {
    margin-top: 120px;
}
.case_share h4  {
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    text-transform: capitalize;
}

.case_share a{
    width: 35px;
    height: 35px;
    background: rgba(0, 159, 204, 1);
    display: grid;
    place-content: center;
    border-radius: 25px;
}
.case_share ul {
    display: inline-flex;
    list-style: none;
    color: #fff;
    gap: 10px;
    margin: 15px 0 0;
    padding: 0;
    align-items: center;
}
.work_content ul{
    list-style: none;
    padding: 0;
    display: inline-flex;
    gap: 20px;
    font-weight: 400;
    color: rgba(0, 159, 204, 1);
    font-size: 16px;
}
.work_content ul li{
    position: relative;
}
.work_content ul li:before {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    background: rgba(0, 159, 204, 1);
    border-radius: 50%;
    top: 34%;
    right: -12px;
}
.work_content ul li:nth-child(2):before {
    content: none;
}
.large_blog{
    align-items: center;
    display: flex;
}
.large_blog .work_img{
    height: 420px;
    width: 50%;
}
.large_blog .work_content {
    padding: 60px;
    width: 50%;
}
.large_blog.work_detail h4 {
    font-size: 36px;
}

.inner_bnner.blog_detail  .banner_content {
    padding: 160px 0 40px;
    min-height: auto;
}
.blog_detail {
    padding-bottom: 80px;
}
.inner_bnner.blog_detail .banner_content a {
    font-size: 18px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    margin-bottom: 25px;
}
.inner_bnner.blog_detail .banner_content svg {
    margin-right: 15px;
}

.blog_dd span{
    background: rgba(0, 159, 204, 1);
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 500;
    display: inline-block;
}

.blog_dd {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.blog_dd ul{
    list-style: none;
    padding: 0;
    display: inline-flex;
    gap: 20px;
    font-weight: 400;
    color: #fff;
    font-size: 16px;
    margin: 0;
}
.blog_dd ul li{
    position: relative;
}
.blog_dd ul li:before {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    background:#fff;
    border-radius: 50%;
    top: 34%;
    right: -12px;
}
.blog_dd ul li:nth-child(2):before {
    content: none;
}

.revenue_page .revenue_bg{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.why_item {
    display: flex;
    color: #fff;
    gap: 30px;
    margin-bottom: 30px;
}
.why_item img{
    width: 70px;
    height: 70px;
}
.why_item h5{
    font-weight: 700;
    font-size: 22px;
}
.current_filter {
    color: #fff;
    display: flex;
    padding: 20px 0;
    border: 1px solid rgba(58, 65, 99, 1);
    border-inline: none;
    justify-content: space-between;
    align-items: center;
}
.current_filter:hover {
    border: 1px solid rgba(75, 183, 245, 1);
    border-inline: none;
    transition: 0.6s;
}
.current_filter h4{
    font-size: 24px;
    font-weight: 700;
    width: 40%;
    margin: 0;
}
.current_filter p {
    width: 40%;
}

.head_ul{
    padding:0;
    list-style:none;
}
.apply_page {
    padding-top: 140px;
}
.apply_form {
    background: rgba(43, 48, 71, 1);
    padding: 25px;
    color: #fff;
    overflow: hidden;
    position: relative;
    padding-bottom: 60px;
    border: 1px solid rgba(75, 183, 245, 1);
    border-radius: 16px;
}
.apply_form label {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 8px;
}

.apply_form input {
    padding: 10px 20px;
    box-shadow: none !important;
    color: #fff !important;
    background: transparent !important;
    border: none;
    border-radius: 40px;
    margin-bottom:15px;
    border: 1px solid rgba(0, 159, 204, 1);
}
.apply_form input::placeholder {  
    color: #fff !important;
}.apply_form select {  
    padding: 15px 0;
    box-shadow: none !important;
    color: #fff !important;
    margin-bottom: 5px;
    background: transparent !important;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #fff;
}
.file_field input{
    display:none;
}
.file_field label {
    width: 100%;
    border: 1px dashed rgba(255, 255, 255, 1);
    padding:16px 12px;
    cursor: pointer;
    margin: 15px 0 0;
    border-radius: 40px;
}
.file_field label span{
    padding: 10px 20px;
    cursor: pointer;
    margin: 15px 0 0;
    background: rgba(0, 159, 204, 1);
    border-radius: 40px;
}
.job_desc ul.d-flex {
    padding: 0;
    list-style: none;
    gap: 60px;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 400;
    border-bottom: 1px solid #C8CCDD;
    padding-bottom: 20px;
    margin-bottom: 20px;
}.apply_form h5{
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}
.job_desc h5{
    font-size: 24px;
    font-weight: 700;
    margin: 30px 0 15px;
    color: #fff;
}
.job_desc p{
    font-size: 16px;
    color: #fff;
    font-weight: 400;
}
.job_desc li {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    gap: 8px;
    margin: 5px 0;
}
#career_form .learn_btn  {
    border-radius: 0;
    padding: 10px 5px;
}


.leader_modal .btn-close{
    position: absolute;
    right: 20px;
    top: 20px;
}
.leader_modal .card_leader {
    display: flex;
    gap: 40px;
}
.card_leader img{
    width: 40%;
    height: 300px;
    overflow: hidden;
    border-radius: 20px;
    object-fit: cover;
}
.card_leader .card_content {
    width: 60%;
}
.card_leader .card_content h4 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 10px;
}
.card_leader .card_content h6 {
    color: rgba(0, 159, 204, 1);
    font-size: 18px;
    display: block;
    text-transform: capitalize;
}
.card_leader .card_content p {
    color: #535353;
    font-size: 16px;
}
.leader_modal  .modal-body {
    padding: 40px;
}

.new_content strong{    
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 15px;
    display: inline-flex;
    text-transform: capitalize;
}


.new_content .col-md-3 p{
    border: 1px solid rgba(75, 183, 245, 1);
    border-radius: 10px;
    padding: 15px;
    height: 100%;
    font-size: 16px;
}










@media (max-width: 992px){    
     .custom_container {
        padding: 0 4%;
        max-width: 100%;
    }
    .side_menu{
        display:inline-block;
    }
    header  .navbar-brand img {
        height: 60px;
    }
    header.sticky  .navbar-brand img {
        width: 100px;
    }
    	header {
        padding: 8px 0;
        /*position: absolute;*/
    }
    .side_bar{
        display:inline-flex;
    }
    header  .menu{
        left: 0;
        top:0;
        position: fixed;
        width: 100%;
        height: 100vh;
        z-index:9;
        padding: 15px 8%;
        display:none;
        background-color: #293046;
        /*transition: 0.9s all ease-in-out !important;*/
        /* box-shadow: -10px 0px 20px #0000005e; */
    }
    .menu a {
        padding: 15px 0;
    }
    header  .menu ul {
        margin-top: 50px;
    }
    
    
    header  .menu.kk{
        display: flex;
        /* transform: translateY(0); */
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    header .menu a {
        color: #fff !important;
    }
    
    header  .menu ul {
        display: block;
    }
    header  .menu ul {
        display: block;
    }
    .menu li {
        width: 100%;
        margin: 0;
        display: inline-flex;
        justify-content: space-between;
        flex-wrap: wrap;
        align-items: center;
    }
    .logo img {
          height: 42px;
    }
    
    .side_bar.open span:nth-child(3) {
        transform: rotate(-45deg) translate(2px ,2px);
    }
    .side_bar.open span:nth-child(1) {
        transform: rotate(45deg) translate(2px ,-2px);
    }
    
    .section {
        padding: 40px 0;
    }
    .title h2 {
        font-size: 26px;
    }
    .title p {
        font-size: 14px;
    }
    
    
    footer {
        padding: 40px 0 10px;
        position: unset;
    }
    footer p {
        padding-right: 0;
        font-size: 15px;
        justify-content: center;
    }
    footer .logo img {
        height: 52px;
    }
    .footer_logo {
        width: 100%;
    padding: 0;

        margin-bottom: 15px;
    }
    footer .col-md-8.d-flex{
        flex-wrap: wrap;
    }
    .footer_item {
        width: 100% !important;
        padding: 0px 0 !important;
    }
    footer .col-md-12 .align-items-center.d-inline-flex {
        padding: 10px 0 0;
        flex-wrap: wrap;
        text-align: center;
        margin: 20px 0 0 !important;
    }
    footer p.copy {
        width: 100%;
    }
    footer p a {
         padding-right: 0 !important;
        font-size: 15px ;
    }
    footer .designed{
        padding-right: 0 !important;
        justify-content: start;
        width: 100%;
        order: -1;
    }
    footer h4 {
        margin-bottom: 10px;
        margin-top: 10px;
    }
    .footer_menu li a {
        font-size: 15px !important;
    }
    /*header.sticky {*/
    /*    position: sticky;*/
    /*    top: 0;*/
    /*}*/
    section.main_bnner h1 {
        width: 100%;
        text-align: center;
        left: -100%;
        font-size: 34px;

    }section.main_bnner .swiper-slide-active h1 {
        left: 0%;
    }
    section.main_bnner .banner_content {
        padding: 0 4%;
        width: 100%;
        bottom: unset;
        top: 45%;
        right: -100%;
        text-align: center;
    }
    section.main_bnner .swiper-slide-active .banner_content{
        right: 0%;margin:auto;
    }
    .health .title {
        padding-right: 0px;
    }
    .health img {
        height: auto;
        margin-top: 40px;
        width: 100%;
    }
    .service img {
        height: auto;
        object-fit: contain;
        margin-top: 0px;
    }
    .service_list {
        gap: 12px;
        padding-left: 0;
        margin-top: 40px;
    }
    .service_item {
        width: 100%;
    }
    .impact img {
        height: auto;
        margin: 0 0 40px 0;
    }
    .impact_list {
        gap: 40px;
        padding-left: 0;
    }
    .impact_item {
        width: calc(100% / 2 - 30px);
        padding-bottom: 10px;
        margin-bottom: 10px;
    }
    .work_list {
        gap: 20px;
        flex-wrap: wrap;
    }
    .work_item {
        width: 100%;
        padding-left: 15px;
    }
    .work_item ul li { 
        transform: unset !important;
        width: 100%;
        text-align: center;
    }
    .who  .title.d-flex {
        flex-direction: column;
    }
    .who .w-50 {
        width: 100% !important;
    }
    .who_content ul li {
        width: max-content;
    }
    .who_content ul {
        flex-wrap: wrap;
    }
    
    .news_home   .title.d-flex {
        align-items: start !important;
        gap: 15px;
        flex-direction: column;
    }
    .news_card .news_img {
        height: auto;
        max-height: 240px;
    }
    footer .custom-logo {
        height: 80px;
    }
    
    .footer_menu {
        padding-left: 0;
        flex-wrap: wrap;
        margin-top: 40px;
    }
    .footer-bottom-bar {
        padding-top: 20px;
        margin-top: 20px;
    }
    .footer-bottom-bar .d-flex.justify-content-between{
        flex-wrap: wrap;
        justify-content: center !important;
        text-align: center;
    }
    .long_height {
        padding: 80px 0 ;
    }
    .inner_bnner .banner_content h2 {
        font-size: 36px;
        margin: 20px 0;
    }
    .about_page .col-md-6 {
        display: flex;
        flex-direction: column;
    }
    .about_page.health img {
         order: 1;
    }
    .inner_bnner .banner_content {
        min-height: auto;
        padding: 80px 0;
    }
    
    .large_blog {
        flex-direction: column;
    }.large_blog .work_img {
        height: auto;
        width: 100%;
    }
    
    .large_blog .work_content {
        padding: 20px;
        width: 100%;
    }
    .large_blog.work_detail h4 {
        font-size: 24px;
    }
    .inner_bnner.blog_detail .banner_content {
        padding: 80px 0 20px;
        min-height: auto;
    }
    .case_content img {
        width: 100%;
        height: auto;
    }
    .value_item h2 {
        font-size: 24px !important;
    }
    .input_field {
        position: relative;
        width: 100% !important;
    }
    .current_filter {
        flex-wrap: wrap;
    border: 1px solid rgb(0 161 201);
    border-inline: none;
    padding: 15px 0;
        gap: 20px;
    }.current_filter h4 {
        width: 100%;
        margin: 0;
    }
    .current_filter p {
        width: 100%;
    }
    
    .contact_list {
        padding-right: 0;
    }
    .contact_list .contact_item  svg{
        width: 40px;
        height: 40px;
    }
    .contact_list .contact_item  div{
        width: calc(100% - 45px);
    }
    
    .apply_page .g-5, .gy-5 {
        --bs-gutter-x: 0;
    }
    .filter form {
        flex-wrap: wrap;
    }
    .filter form .btn_onsure{
        width: 100%;
    }
    .why_item {
        margin-top: 40px;
    }
    .why_item img {
        width: 70px;
        height: 70px;
    }
    .let_sec .title h2 {
        font-size: 26px;
        font-weight: 700;
    }
     .let_sec .text-end {
        text-align: left !important;
        margin-top:25px;
    }
    
    
    .menu li .sub-menu {
        order: 1;
        transition: unset;
        padding: 0;
        min-height: auto;
    box-shadow: 0px 12px 12px #0000006b;
        z-index: 1;
        max-height: max-content;
        overflow: auto;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }.sub-menu {
        position: unset;
        width: 100%;
        display: none;
    }    .menu-toggle-drop {
        color: #000;
        padding: 10px;
    }.dropdown_menu a:after {
    content: none;
    }.menu-toggle-drop i{
        font-size: 25px;
    }
        header .sub-menu .menu.kk {
        /*border: 1px solid;*/
        height: auto;
        overflow: hidden;
        margin: 0;
        padding: 0;
        max-height: max-content;
        box-shadow: none;
    }.menu li:hover .sub-menu {
        display: none;
    }
    
    .menu-toggle-drop svg{
        width: 12px;
        height: 12px;
    }
    .who  .custom_container {
        padding: 0 4% !important;
    }
    
    
    
    
    
    
    
    
    
    
    .team_img {
        height: auto;
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
}


@media only screen and (max-width: 760px) {
   .impact_item {
        width: 100%;
    }
}

@media only screen and (max-width: 1100px) and (min-width: 992px) {
    section.main_bnner h1 {
        width: 50%;
    }section.main_bnner .banner_content {
        width: 50%;
    }
    .service_item {
        width: calc(100% / 2 - 8px);
    }
}
