@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

@font-face {
  font-family: 'Helvetica';
  src: url('../font/Helvetica.ttf') format('truetype'),
       url('../font/Helvetica.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Helvetica';
  src: url('../font/Helvetica-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Helvetica';
  src: url('../font/Helvetica-Oblique.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: 'Helvetica';
  src: url('../font/Helvetica-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}



*{
    margin:0px;
    padding:0px;
    font-weight: 400;
    font-family: 'Open Sans', sans-serif;
	 /* font-family: 'Helvetica', Arial, sans-serif;  */
}

.custom_container{ 
    padding:0 8%;
    z-index: 1;
    position: relative;
}

h1, h2, h3, h4, h5, h6{
   /* font-family: 'DM Sans', sans-serif; */
	 font-family: "Lato", sans-serif;
} 

.page-id-4245 h1, .page-id-4245 h2, .page-id-4245 h3, .page-id-4245 h4, .page-id-4245 h5, .page-id-4245 h6{
	font-family: 'Helvetica', Arial, 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: #3E5AE8; 
    border-radius: 60px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #0d228b; 
}



/* common style */


.btn_global{
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    color: #fff;    
    background: linear-gradient(97deg, #5EB34D 5.53%, #29794A 118.98%);
    padding:12px 20px ;
    position: relative;
    /*text-transform: capitalize;*/
    z-index: 1;
    transition: 0.6s;
    min-width: 180px;
    background-size: 100% 100%;
    display: inline-block;border-radius: 60px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
}
.btn_global:hover {
    background-size: 400% 400%;
    color: #fff;    
}
.btn_global svg{
    stroke: #fff;
    margin-left: 10px;
    transition: 0.6s;
}
.btn_global:hover svg{
    stroke: #fff;
    margin-left: 15px;
}
.btn_global_black{
    background: #000;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    padding:12px 20px ;
    position: relative;
    /*text-transform: capitalize;*/
    z-index: 1;
    transition: 0.5s;
    min-width: 180px;
    display: inline-block;border-radius: 60px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
}
.btn_global_black:hover {
    box-shadow: inset 0 -4em 0 0 #fff !important;
    color: #5EB34D;
}
.btn_global_black svg{
    stroke: #5EB34D;
    margin-left: 10px;
}

.btn_global_white{
    background: #fff;
    color: #000;
}.btn_global_white:hover {
    background-size: 400% 400%;
    color: #000;
}.btn_global_white:hover svg {
    margin-left: 15px;
    stroke: #5EB34D;
}
.btn_global_white svg{
    stroke: #5EB34D;
    margin-left: 10px;
}


.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: 60px;
}
.logo img {
    height: 38px;
}
.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: relative;
    top: 0;
    left: 0;
    padding: 20px 0;
    z-index: 9;  
    background: #fff;
}




.main_menu {
    position: fixed;
    right: -80%;
    width: 30%;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: -1px 0px 24px 0px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(20px);
    height: 100vh;
    z-index: 2;
    top: 0px;
    transition: 1s;
    padding: 40px 60px;
    display: grid;
    place-content: space-between;
}
.main_menu.kk {
    right: 0;
}

.main_menu .social {
    display: inline-flex;
    list-style: none;
    padding: 0;
    column-gap: 40px;
}
.main_menu .social a:hover svg {
   transform: translateY(-10px);
}
.main_menu .social svg{
    width: 18px;
    transition: .6s;
    height: 18px;
}
.main_menu .social svg path{
    fill: #535353;
}
.main_menu .social a.youtube:hover path {
    fill: #CD201F;
}
.main_menu .social a.instagram:hover path {
    fill: #cd486b;
}
.main_menu .social a.facebook:hover path {
    fill:#4267B2;
}
.main_menu .social a.linkedin:hover path {
    fill:#0A66C2;
}
.youtube path:nth-child(2){
    fill: #EAF1F4 !important;
}
.main_menu.side_menu .menu {
    list-style: none;
    padding: 0;
    display: block;
    margin-top: 100px;
}
.main_menu.side_menu .menu a {
    color: #272727;
    font-size: 22px;
    font-weight: 400;
    text-decoration: none;
    text-transform: capitalize;
    margin: 20px 0;
    display: block;
    transition: 0.6s;
    text-align: left;
}
.main_menu.side_menu .menu a:hover {
    color: #5EB34D;
}
.main_menu.side_menu .menu a svg{
    transition: 0.6s;
    opacity:0;
}
.main_menu.side_menu .menu a:hover svg{
    margin-left: 10px;
    opacity:1;
}







.navbar-brand.logo {
    margin: 0;
}
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;
    margin-left: auto;
    align-items: center;
}
.menu a {
    display: block;
    text-decoration: none;
    transition: 0.4s;
    text-transform: capitalize;
    text-align: center;
    font-weight: 600;
    color: #272727;
}



header .menu-main-menu-header-container {
    margin-left: auto;
}
ul.sub-menu {
    position: absolute;
    z-index: 6;
    background: #fff;
    padding: 0;
    width: 280px;
    left: -40px;
    padding: 20px !important;
    list-style: none;
    /*width: 100%;*/
    border-radius: 3px;
    box-shadow: 0px 5px 15px -5px rgb(0 0 0 / 20%);
    visibility: hidden;
    opacity: 0;
    transform: translatey(40px);
    transition: 0.3s ease-in-out;
}
ul.sub-menu li:last-child a {
    padding-bottom:0;
}
li.menu-item.menu-item-has-children:hover .menu-item-has-children ul.sub-menu{
    visibility: hidden;
    opacity: 0;
    transform: translatey(0px);
    left: 300px;
    top: 0;
}
li.menu-item.menu-item-has-children ul.sub-menu .menu-item-has-children:hover ul.sub-menu{
    visibility: visible !important;
    opacity: 1 !important;
}
li.menu-item.menu-item-has-children:hover ul.sub-menu{
    visibility: visible;
    opacity: 1;
    transform: translatey(0px);
}
li.menu-item.menu-item-has-children > a::after{
    content: '\f054';
    font-family: 'Font Awesome 5 free';
    font-weight: 900;
    /*margin-left: 10px;*/
    display: inline-flex;
    color: #68b545;
    position: absolute;
    right: 0;
    font-size: 13px;
    top: 50%;
    transform: translateY(-50%);
}
.navbar .navbar-nav .nav-item .sub-menu .menu-item a.nav-link {
    font-size: 14px;
}
#menu-main-menu-header .menu-item-has-children a{
    padding-right: 20px;
}

.menu .sub-menu a {    font-size: 14px;
    padding: 0;
    text-align: left;
    margin-bottom: 8px;
}
.menu a:hover {
    color: #5EB34D;
}
.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: inline-flex;
    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: #272727;
    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: 100%;
    -o-transform-origin: left center;
    transform-origin: left center;
  }
   
  
  .side_bar.open span:nth-child(1) {
    -webkit-transform: rotate(45deg) translate(-2px, -3px);
    -moz-transform: rotate(45deg) translate(-2px, -3px);
    -o-transform: rotate(45deg) translate(-2px, -3px);
    transform: rotate(45deg) translate(-2px, -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;
}
  
.title_head{
  position: relative;
  text-align: center;
    overflow: hidden;
}
.title_head:before{
  content: '';
  position: absolute;
  left: 0;
  width: 0%;
  height: 1.5px;
  background: #ababab;
    transition: 3s;
  top: 50%;
  transform: translateY(-50%);
}
.title.animation .title_head:before{
  width: 100%; 
    transition-delay: 0.2s;

}

.footer_down a img{
    height: auto;
    width: 140px;
}
.footer_down img{
    height: 45px;
    margin: 5px;
    min-width: 10%;
    object-fit: contain;
    width: auto;
}
.footer_top h4{
    color: #111;
    text-align: center;
    font-size: 60px;
    font-weight: 400;
}
.footer_top {
    position: relative;
    height: 550px;
    z-index: 1;
    margin-top: -2px;
}
.footer_top img{
    width: 100%;
    object-fit: cover;
    height: 100%;
    position: absolute;
    object-position: top;
    top: 0;
    left: 0;
}
.footer_logo{
    padding-right:100px;
}
.footer_logo p {
    color: #272727;
    font-size: 16px;
    font-weight: 500;
    margin: 30px 0;
}
footer .custom-logo {
    height: 40px;
    object-fit: contain;
}
footer{
    /* position: sticky;*/
    bottom: 0;
    color: #272727;
    /*position: relative;*/
    padding-top: 80px;
    background: radial-gradient(253.77% 65.01% at 98.36% 88.77%, #F9EBD3 0%, #EAF2F4 100%);
} 

footer .footer_item h4 {
    margin-bottom: 15px;
    color: #111;
    font-size: 20px;
    font-weight: 500;
}
footer .footer_item li a {
    color: #272727;
    text-decoration: none;
    font-weight: 500;
    text-align: left;
    margin: 12px 0;
    display: block;
}
footer .footer_item li a:hover {
    color:#5baf4d;
}
footer .footer_item ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    display: block;
}
footer .footer_item:nth-child(3) li{
    margin: 12px 0;
    display: flex;
    align-items: center;
    color: #272727;
    column-gap: 2px;
    font-weight: 500;
}
footer .footer_item:nth-child(3) ul a{
    margin: 0;
}

footer .footer-bottom-bar .d-inline-flex{
    border-top: 1px solid #D6D6D6;
    padding: 20px 0;
    margin-top: 25px;
    color: #272727;
}
.footer-bottom-bar .copy a:hover {
    color: #F1681A;
}
.footer-bottom-bar .copy a{
    color: #272727;
    margin: 0 5px;
    padding: 0 5px;
    text-decoration: none;
}
.footer-bottom-bar .designed a:hover {
    color: #F1681A;
}
.footer_item {
    width: 30%;
    padding-bottom: 40px;
    padding: 0 20px;

}
.footer_item:nth-child(3) {
    width: 40%;
     padding: 0 40px; 
}
.social-links a{
    color: #161617;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .6s;
    text-decoration: none;
    font-size: 22px;
}  
.social-links a:hover{
    transform: translateY(-10px);
    color: #0A66C2;
}  
.social-links a.facebook:hover path{
    fill: #4267B2;
}  
/*.social-links a.twitter:hover path{*/
/*    fill: #CD201F;*/
/*} */
.social-links a.instagram:hover path{
    fill: #cd486b ;
} 
.social-links a.youtube:hover path{
    fill: #CD201F;
}  
footer .footer_list ul {
    list-style:none;
    padding: 0;
    margin: 0;
}
footer .footer_list ul li {
    margin-bottom: 15px;
}
footer .footer_list ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 100;
    font-size: 14px;
    display: flex;
    align-items: center;
}
footer .footer_list {
    max-width: 20%;
}
footer .first_sec .footer_list a img {
    height: 15px;
    margin-right: 10px;
}
footer .second_sec {
    border-top: 2px solid rgb(255 255 255 / 40%);
    padding: 20px 0;
    margin: 20px 0 0;
    border-bottom: 2px solid rgb(255 255 255 / 40%);
}
footer .second_sec img {
    width: 120px;
    object-fit: contain;
}
footer .third_sec {
    padding: 20px 0;
}
ul.social_link {
    display: inline-flex;
    gap: 12px;
}
footer .second_sec .footer_list ul li {
    margin-bottom: 0;
}
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;
}





.title h2{
    color: #111;
    font-size: 50px;
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 10px;
}
.title p{
    color: #272727;
    font-size: 16px;
    font-weight: 500;
}
.section{
    padding:60px 0;
    position: relative;
}

.learn{
    font-weight: 400;
    font-size: 16px;
    color: #161617;
    display: block;
    text-decoration: none;
    text-transform: capitalize;
}

.learn:hover {
    color:#F1681A;
}
.learn:hover i{
    margin-left:8px;
}
.learn i{
    color: #737374;
    font-size: 14px;
    border: 2px solid;
    border-radius: 50%;
    margin-left: 12px;
    width: 25px;
    height: 25px;
    display: inline-flex;
    transition: 0.4s;
    justify-content: center;
    line-height: 0;
    align-items: center;
}

/* home page */


section.main_bnner {
    width: 100%;
    height: 700px;
    z-index: 1;
    overflow: hidden;
    position: relative;
}
section.main_bnner .swiper-slide:before {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    content: '';
    background: linear-gradient(180deg, rgb(255 255 255) 10%, rgb(255 255 255 / 0%) 50%);
    left: 0;
    top: 0;
    z-index: 9;
}





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 h2{
    font-weight: 700;
    text-transform: capitalize;
    font-size: 50px;
}
section.main_bnner .banner_content p{
    width: 80%;
    color: #272727;
    margin: 25px 0;
    font-size: 18px;
    font-weight: 600;
}
section.main_bnner .banner_content {
    position: absolute;
    width: 50%;
    top: 12%;
    z-index: 3;
    z-index: 10;
    color: #000;
    left: -100%;
    /*transform: translateY(-50%);*/
    transition: 1s;
}section.main_bnner .swiper-slide-active .banner_content {
    left: 8%;
}
.company  ul{
    padding: 0;
    margin: 0;
    display: inline-flex;
    list-style: none;
    margin: 40px 0;
    width: 100%;
    justify-content: space-between;
}
.company  ul h4{
    font-size: 60px;
    font-weight: 700;
    text-transform: capitalize;
    background: linear-gradient(180deg, #5EB34D 0%, #3C7847 91.67%, rgba(255, 255, 255, 0.00) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.company  ul h4 span{
    font-weight: 700;
   /*  font-family: 'DM Sans', sans-serif; */
	 font-family: "Lato", sans-serif;
}

.page-id-4245 .company  ul h4 span{ 
	 font-family: "Lato", sans-serif;
}

.company  ul p{
    color: #272727;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
}
.company  ul li{
    width: 25%;
}




.pro_list {
    margin-top: 40px;
    display: inline-flex;
    width: 100%;
    flex-wrap: wrap;
    column-gap: 25px;
    justify-content: space-between;
}
.products .pro_item{
    background: #F5F8FA;
    border-radius: 16px;
    padding:20px;
    margin-bottom: 25px;
    width: 48%;
}
.pro_list .pro_item.big {
    width: 53%;
}
.pro_list .pro_item.small {
    width: 44%;
}.pro_img {
    width: 100%;
    background: #fff;
    border-radius: 16px;
    padding: 40px 20px;
    text-align: center;
    height: 250px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    /*position: relative;*/
    margin-bottom: 20px;
}
/*.pro_img:after {
    overflow: hidden;
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    border-top: 80px solid transparent;
    border-left: 80px solid #f5f8fa;
}*/
.pro_img img{
    width: 100%;
    object-fit: contain;
    height: 90%; 
    transition: 0.6s;
}

.pro_item:hover .pro_img img{
     transform: scale(1.1);
}
.pro_item:hover {
    border:1px solid rgba(0, 0, 0, 1);
}
/*.pro_item:hover .pro_content h4{
    color: #F1681A;
}*/
.pro_content h4{
    font-weight: 500;
    font-size: 24px;
    line-height: 30.5px;
    color: #161617;
}
.pro_content p{
    color: #737374;
    font-weight: 300;
    font-size: 16px;
}
.pro_content a{
    position: relative;
    float: right;
    top: -30px;
}





.seafaring{
    background: radial-gradient(253.77% 65.01% at 98.36% 88.77%, #F9EBD3 0%, #EAF2F4 100%);
    margin-bottom: 80px;
}

.seafaring  li.nav-item {
    width: 25%;
}
.seafaring li button {
    display: inline-flex;
    column-gap: 20px;
    text-align: left;
    padding: 0;
    align-items: center;
    flex-wrap: wrap;
}
.seafaring  li button h5{
    color: #111;
    font-size: 16px;
    font-weight: 500;
    width: calc(100% - 100px);
    margin: 0;
}
.sea_img {
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 50%;
}
.sea_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.seafaring  .nav-link {
    border-radius: 60px;
    width: 98%;
    padding: 6px;
}
.seafaring  .nav-link.active {
    background: linear-gradient(97deg, #5EB34D 5.53%, #29794A 118.98%);
}
.seafaring  .nav-link:hover h5{
    color: #fff;
}
.seafaring  .nav-link:hover{
    background: linear-gradient(97deg, #5EB34D 5.53%, #29794A 118.98%);
}
.seafaring  .nav-link.active h5{
    color: #fff;
}
.seafaring .sea_detail{
    width: 100%;
    height: 550px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: -200px;
}
.seafaring .sea_detail:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, black, transparent);
    left: 0;
    top: 0;
}
.seafaring .sea_detail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.seafaring .sea_content {
    position: absolute;
    top: 50%;
    width: 40%;
    left: -100%;
    transition: .6s;
    transform: translateY(-50%);
    color: #fff;
}
.seafaring .tab-content>.tab-pane {
    display: block;
    position: absolute;
    width: 100%;
    left: 0;
}
.seafaring .tab-content {
    height: 550px;
    position: relative;
}
.seafaring .tab-pane.active {
    z-index: 9;
}
.seafaring .tab-pane.active .sea_content {
    left: 6%;
}
.seafaring .sea_content h3{
    font-size: 30px;
    font-weight: 500;
    text-transform: capitalize;
}
.seafaring .sea_content p{
    font-size: 16px;
    font-weight: 500;
    margin: 25px 0px;
}
.partner_img {
    padding: 40px 0;
}
.partner_img img {
    width: 100%;
    height: 60px;
    object-fit: contain;
    object-position: center;
    filter: grayscale(1);
    transition: .6s;
}
#partner_slider .swiper-slide-active .partner_img img {
    filter: grayscale(0);
}
.advantage_content {
    border-radius: 15px;
    background: #fff;
    color: #111;
    padding: 40px;
    transition: .6s;
    min-height: 360px;
}
#advantage_slider .swiper-slide:hover .advantage_content {
    background: #5EB34D ;
    color: #fff;
}
#advantage_slider .swiper-slide:hover .advantage_content:after {
    content: none;
}
#advantage_slider .swiper-slide.swiper-slide-active .advantage_content {
    background: linear-gradient(342deg, #5EB34D 12.4%, #3C7847 126.17%);
    color: #fff;
}
#advantage_slider .swiper-slide.swiper-slide-active .advantage_content:after {
    content: none;
}
.advantage_content h4{
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 40px;
    text-transform: capitalize;
}
.advantage_content p{
    font-size: 16px;
    font-weight: 500;
}
.advantage_content img{
    position: absolute;
    right: -20px;
    bottom: -40px;
    opacity: 0;
}
.advantage_content:after {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    background: #C3C3C3;
    right: 0;
    top: 0;
}
#advantage_slider .swiper-slide.swiper-slide-active .advantage_content img{
    opacity: 1;
}
#advantage_slider .swiper-slide:hover .advantage_content img{
    opacity: 1;
}

.client{
    background: radial-gradient(253.77% 65.01% at 98.36% 88.77%, #F9EBD3 0%, #EAF2F4 100%);
}

#client_slider .swiper-slide{
    display:inline-flex;
    column-gap: 25px;
}
.client_content {
    border-radius: 20px;
    background: #013434;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 50px;
    width: 75%;
    flex-wrap: wrap;
    transition: 1s;
    transform: translateX(-100%);
    opacity:0;
}
.client_content .qout_des{
    color: #0C4848;
    font-family: Outfit;
    font-size: 164px;
    font-weight: 500;
    position: absolute;
    left: 20px;
    top: -10px;
    z-index: -1;
    width: max-content;
    line-height: 1;
}
.client_content .qout_des.sec_q{
    right: 20px;
    bottom: -40px;
    left: unset;
    top: unset;
}
#client_slider .swiper-slide.swiper-slide-active .client_content {
    transform: translateX(0%);opacity:1;
}
.client_content p{
    color: #FFF;
    font-size: 24px;
    font-weight: 500;
}
.client_content h6{
    color: #5EB34D;
    font-size: 20px;
    font-weight: 500;
    margin: 10px 0 0;
}
.client_content span{
    color: #B3BBBB;
    font-size: 14px;
    font-weight: 400; 
    width: 100%;
}
/*.client_img {
    width: 25%;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 50%;
    transition: 1s;opacity:0;
    transform: translateX(100%);
}*/
.client_img{
    width:300px;
    height:300px;
    border-radius:50%;
    overflow: hidden;
}
#client_slider .swiper-slide.swiper-slide-active .client_img {
    transform: translateX(0%);opacity:1;
}
.client_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
}

.nav_btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    column-gap: 20px;
    width: 100%;
    /*flex-direction: row-reverse;*/
    margin-top: 50px;
    padding-bottom: 10px;
}
.nav_btn div {
    position: unset;
    background: #000;
    border-radius: 30px;
    width: 65px;
    height: 40px;
    box-shadow: 0 0 8px #dbdbdb;
}
.nav_btn div svg {
    stroke: #5EB34D;
}
.nav_btn div.swiper-button-next svg {
    transform: rotate(180deg)
}
.nav_btn div:after {
    content: none;
}
.nav_btn .swiper-button-disabled{
    background: #fff;
    opacity:1;
}










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

.get_img {
    width: 100%;
    height: 200px;
    margin-bottom: 10px;
    border-radius: 20px;
    overflow: hidden;
}
.get_img img.img-fluid {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.GET a{
    text-decoration: none;
}
.GET .get_content span{
    color: #6B6B6B;
    font-size: 14px;
    font-weight: 400;
}
.GET .get_content h4{
    color: #272727;
    font-size: 20px;
    font-weight: 400;
    margin: 10px 0;
    min-height: 80px;
}
.btn_global_learn{
    color: #000;
    /*font-family: Open Sans;*/
	font-family: "Lato", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    text-decoration: none;
    line-height: normal;
}

.page-id-4245 .btn_global_learn{
    font-family: 'Helvetica', Arial, sans-serif;
}

.btn_global_learn svg {
    stroke: #5EB34D;
    margin-left: 10px;
}
.get_content {
    width: 80%;
}
/*innerpage*/

.jd ul {
    flex-direction: column;
    gap: 10px !important;
    margin-top: 10px;
    list-style: inside !important;
}

.inner_bnner {
    width: 100%;
    height: 750px;
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    overflow: hidden;
}
.inner_bnner img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.inner_bnner video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.inner_bnner:before {
    content: '';
    position: absolute;
    background: #000;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.2;
}
.inner_bnner {
    font-weight: 600;
    font-size: 65px;
    color: #2D2D2D;
}

.inner_bnner .banner_content {
    position: absolute;
    width: 60%;
    bottom: 30%;
    z-index: 0;
    /*z-index: 10;*/
    color: #fff;
    left: 50%;
    text-align: center;
    transition: 1s;
    transform: translateX(-50%);
}
.inner_bnner .banner_content h2{
    font-weight: 700;
    text-transform: capitalize;
    font-size: 60px;
}
.inner_bnner .banner_content p {
    font-size: 18px;
    font-weight: 600;
}

.about_company h2{
    font-size: 40px;
    font-weight: 700;
}
.about_company p{
    font-size: 16px;
    font-weight: 400;
    text-align: justify;
}
.about_company hr {
    background: #D6D6D6;
    margin: 80px 0 !important;
}

.heritage_img {
    width: 90%;
    height: 520px;
    overflow: hidden;
    border-radius: 20px;
}.heritage_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mission_vission .mission_title {
    padding-left: 50px;
    margin-bottom: 50px;
}
.mission_vission .mission_title h4{
    font-size: 30px;
    font-weight: 500;
}
.mission_vission .mission_title p{
    font-size: 16px;
    font-weight: 500;
}
.mission_vission .mis_img{
    font-size: 16px;
    font-weight: 500;
}

.mission_vission .mis_img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    aspect-ratio: 1/1;
    overflow: hidden;
}
.mission_vission .mis_img img {
     width: 100%; 
    height: 100%;
     object-fit: cover; 
}

.mission_vission .row{
   margin: 0px;
    border-radius: 15px;
    padding: 40px;
    background: radial-gradient(84.83% 412.86% at 86% 59.22%, rgba(249, 235, 211, 0) 9.69%, rgba(249, 235, 211, 0.794698) 35.84%, #F9EBD3 49.08%, #EAF2F4 100%) ;
}
/*.values .col-md-6.mx-auto {*/
/*    position: sticky;*/
/*    top: 0;*/
/*    background: #fff;*/
/*    z-index: 1;*/
/*}*/
/*.values .col-md-6:before {*/
/*    position: absolute;*/
/*    content: '';*/
/*    left: 50%;*/
/*    width: 200%;*/
/*    background: linear-gradient(0deg,#fff0 , rgb(255 255 255) 40%, white);*/
/*    bottom: -90px;*/
/*    height: 180px;*/
/*    transform: translateX(-50%);*/
/*}*/
.value_item  img{
    transition: .6s;
    /*transform: translateX(-100%);*/
    opacity: 1;
    height: 62px;
    object-fit: contain;
    width: 62px;
    filter: grayscale(1);
}
.value_item  img.active{
    filter: grayscale(0);
    scale: 1.4;
}
.value_list  {
    padding: 85px 0;
    margin-bottom: 60px;
}
.value_list img.value_img1 {
    width: 100%;
}
.value_item .value_content{
    transition: 1s;
    /*transform: translateX(50%);*/
    opacity: 1;
}

/*.value_item:nth-child(even) img{*/
/*    transform: translateX(100%);*/
/*}*/
/*.value_item:nth-child(even)  .value_content{*/
/*    transform: translateX(-50%);*/
/*}*/


/*.value_item.animate img{*/
/*    transform: translateX(0%);*/
/*    opacity: 1;*/
/*}*/
/*.value_item.animate .value_content{*/
/*    transform: translateX(0%);*/
/*    opacity: 1;*/
/*    transition-delay: 0.4s;*/
/*}*/



.value_svg {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
}
.value_svg path{
    stroke: #5EB34D;
    /*transition: 1s;*/
    stroke-dasharray: 2500;
    stroke-dashoffset: 2500;
}
.value_item {
    position: absolute;
    display: flex;
    align-items: center;
    width: 22%;
    flex-direction: column;
    gap: 50px;
}
.value_item.value_item1{
    top: 00px;
}
.value_item.value_item2 {
    left: 47%;
    top: 0;
    transform: translateX(-50%);
}
.value_item.value_item3{
    top: 0;
    left: 75%;
}
.value_item.value_item4{
    bottom: -62px;
    left: 75%;
}
.value_item.value_item5 {
    bottom: -62px;
    left: 47%;
    transform: translateX(-50%);
}
.value_item.value_item6{
    bottom: -62px;
    left: 0%;
}
.value_item h4{
    font-size: 26px;
    font-weight: 700;
}
.value_item p{
    font-size: 14px;
    font-weight: 500;

}






.esg_bg {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    height: 100%;
    object-fit: cover;
}
.ESG  {
    padding-top: 350px;
}

.ESG:before {
    width: 100%;
    height: 80%;
    overflow: hidden;
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.728372) 27.18%, rgba(255, 255, 255, 0.86281) 40.56%, #FFFFFF 100%);
}

.our_team {
    border-radius: 20px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    justify-content: space-between;
}
.our_team:before {
    background: linear-gradient(274.64deg, rgba(255, 255, 255, 0) 22.1%, #F9EBD3 48.64%, #EAF2F4 88.96%);
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    justify-content: space-between;
}
.our_team_content{
    padding: 40px;
    z-index: 1;
}
.our_team_content h4{
    font-size: 50px;
    font-weight: 500;
}

.our_team_content p{
    font-size: 17px;
    font-weight: 500;
    text-align: left;
}
.our_team img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}




.list-country h5 {
    font-size: 26px;
    font-weight: 500;
    color: #6C6C6C;
    margin-bottom: 18px;
    cursor: pointer;
}
.list-country h5.active {
    color: #000;
}
.list-country h5 svg{
    color: #5EB34D;
    margin-left:0px; 
    opacity:0;
    transition: 0.6s;
}

.list-country h5.active svg{
    margin-left:10px; 
    opacity: 1;
}
.country_data {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
    border-radius: 20px;
    display: none;
    margin-top:70px;
}
.country_data.active {
    display: block;
}
.details_count {
    position: absolute;
    bottom: 0;
    color: #fff;
    left: 0;
    font-size: 16px;
    font-weight: 500;
    padding:30px 60px;
    width: 100%;
    background: linear-gradient(0deg, rgb(0 0 0 / 77%), transparent);
}
.details_count a{
    color: #fff;
    text-decoration: none;
    margin: 15px 0;
    display: block;
}
.country_data img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.details_count a.color-green {
    color: #5EB34D;
    font-weight: 600;
}
.details_count a.color-green svg{
    transform: rotate(-45deg);
}
.ser_img{
    width:100%;
    height:350px;
     position: relative; 
    border-radius: 20px;
    overflow: hidden;
}
.ser_img img{
    width:100%;
    transition: 0.6s;
    height:100%;
    object-fit:cover;
}
.ser_img:hover img{
     scale: 1.2;
}
.ser_img h4{
    position: absolute;
    bottom: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    z-index: 1;
    padding: 30px;
}
.ser_img:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 80%;    
    z-index: 1;
    left: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgb(0 0 0 / 65%), transparent);
}
.services{
    background: radial-gradient(50.69% 250.48% at 98.36% 88.77%, #F9EBD3 0%, #EAF2F4 100%) ;
}

.adv_img{
    width:100%;
    height:400px;
    border-radius:20px;
}
.adv_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.advantages .accordion-item {
    border: none;
    border-bottom: 1px solid #D3D3D3;
    background: transparent;
}
.advantages .accordion-button::after{
    content:none;
}
.advantages .accordion-button{
     background-color: transparent; 
}
.advantages .accordion-item button{
    font-size: 20px;
    box-shadow: none;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.advantages .accordion-item button svg{
    color: #5EB34D;
    opacity: 0;
}
.advantages .accordion-item p{
    font-size: 16px;
    font-weight: 500;
}
.advantages .accordion-item button:not(.collapsed) {
    color: #5EB34D;
}
.advantages .accordion-item button:not(.collapsed) svg{
    opacity: 1;
}
.advantages .accordion {
    padding-right: 20px;
}

.service_bnner  .banner_content h2 {
    font-size: 60px;
    font-weight: 700;
    color: #111111;
}
.service_bnner  .banner_content p {
    font-size: 18px;
    color: #111111;
    width: 80%;
    font-weight: 600;
}
.service_bnner {
    width: 100%;
    min-height:240px;
    display: flex;
    align-items: start;
    padding-bottom: 40px;
    padding-top: 40px;
    position:relative;
}
.service_bnner .btn_global{
    position: absolute;
    top: 9px;
    right: 154px;
} 
.service_bnner  .banner_content {
     width: 60%;
     /*position:relative;*/
}
/*.service_bnner  .banner_content .btn_global {
    position: absolute;
    top: 98px;
    right: 0;
}*/
.service_bnner2  .banner_content {
    margin-top: -30px;
}
.service_bnner2 .service-editor p{
    font-size:16px;
    margin-bottom:10px;
    color:#212529;
}
.service_bnner2 .service-editor ul {
    list-style: none;
    text-align: left;
    margin-left: -30px;
}
.service_bnner2 .service-editor ul li {
    margin-bottom: 10px;
}
.service_bnner2 .service-editor ul li i{
    margin-right:10px;
    color:#5eb34d;
}
.service_bnner img {
    margin-bottom: -24%;
    height: 400px;
}
.service_bnner2 img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    position: relative;
    z-index: 1;
}
.service_bnner2 .custom_container:before{
    background: linear-gradient(0deg, #FFFFFF 4.85%, rgba(255, 255, 255, 0.88488) 24.26%, rgba(255, 255, 255, 0.730196) 43.7%, rgba(255, 255, 255, 0) 69.76%);
    content:'';
    position:absolute;
    left:0;
    width:100%;
    height:400px;
    top: -400px;
}
.service_bnner2 h2{
    font-size: 36px !important;
    font-weight: 400  !important;
}
.service_bnner2 p{
    font-size: 16px;
    font-weight: 500;

}


.high_bnner{
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 550px;
}
.high_bnner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
section.high_bnner .banner_content {
    position: absolute;
    width: 35%;
    top: 20%;
    z-index: 0;
    color: #000;
    left: 8%;
}
section.high_bnner .banner_content h2{
    font-size: 60px;
    font-weight: 700;
}
section.high_bnner .banner_content p{
    font-size: 18px;
    font-weight: 600;
}

section.high_bnner:before {
    width: 80%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    content: '';
    background: linear-gradient(90deg, #FFFFFF 7.02%, rgba(255, 255, 255, 0.88488) 42.7%, rgba(255, 255, 255, 0.730196) 58.11%, rgba(255, 255, 255, 0) 82.26%);
    left: 0;
    top: 0;
}
 .high_content h2{
    font-size: 26px;
    font-weight: 500;
}

 .high_content p{
    font-size: 16px;
    font-weight: 500;
}

.high_list .accordion-item {
    border: none;
    margin-bottom: 10px;
    border-radius: 10px !important;
    overflow: hidden;
}
.high_list .accordion-button::after{
    content:none;
}
.high_list .accordion-button{
     background-color: transparent; 
}
.high_list .accordion-item button{
    font-size: 20px;
    font-weight: 500;
    background: linear-gradient(107.46deg, #EAF1F4 -2.57%, #F3EDDF 87.55%);
    color: #272727;
    box-shadow: none;
    display: flex;
    justify-content: space-between;
    transition: .6s;
    align-items: center;
}
.high_list {
    margin-bottom: 60px;
}
.high_list .accordion-item button svg{
    color: #fff;
    opacity: 0;
}
.high_list .accordion-item p{
    font-size: 16px;
    font-weight: 500;
}
.high_list .accordion-item button:not(.collapsed) {
    background:#5EB34D;
    color: #fff;
}
.high_list .accordion-item button:hover {
    background:#5EB34D;
    color: #fff;
}

.high_list .accordion-collapse .accordion-body{
    background:#5EB34D;
    color: #fff;
}
.high_list .accordion-item button:not(.collapsed) svg{
    opacity: 1;
}
.high_img{
    width: 100%;
    height: 520px;
    overflow: hidden;
    border-radius: 20px;
    display:none;
}
.high_img.active{
    display:block;
}
.high_img img{
    width: 100%;
    height: 100%;
    overflow: hidden;
    object-fit: cover;
}

/*.high_point:before{*/
/*    content:'';*/
/*    position:absolute;*/
/*    left:0;*/
/*    width:100%;*/
/*    height:100%;*/
/*    background: radial-gradient(50.69% 250.48% at 98.36% 88.77%, #F9EBD3 0%, #EAF2F4 100%) ;*/

/*}*/
.high_item  {
    padding: 30px 0;
}
.high_point_img {
    width: 41%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
}
.high_point_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.high_point  .title {
    width: 55%;
    padding-right: 40px;
}
.high_point  .title:nth-child(even) {
    padding-left: 40px;
    padding-right: 0;
}




.expertise_bnner  {
    width: 100%;
    height: 550px;
    position: relative;
    overflow: hidden;
}
.expertise_bnner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expertise_bnner h2{
    font-size: 60px;
    font-weight: 700;
    bottom: 30px;
    z-index: 1;
    position: absolute;
    text-align: center;
    width: 100%;
}
.expertise_bnner:before {
    content: '';
    position: absolute;
    width: 100%;
    bottom: -2px;
    left: 0;
    background: linear-gradient(180deg, #FFFFFF 3.63%, rgba(255, 255, 255, 0.88488) 19.02%, rgba(255, 255, 255, 0.63) 34.45%, rgba(255, 255, 255, 0) 55.12%);
    height: 100%;
    transform: rotate(180deg);
}
.expertise h2{
    font-size: 34px;
    font-weight: 600;
}
.expertise p{
    font-size: 16px;
    font-weight: 500;
}


.expertise_list .nav-pills  {
    width: 80%;
    justify-content: center;
    margin: auto;
    column-gap: 40px;
    flex-wrap: wrap;
}
.expertise_list .nav-pills .exper_img {
    background: #ECECEC;
    aspect-ratio: 1/1;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    margin: 0 auto 10px;
}
.expertise_list .nav-pills h5{
    font-size: 16px;
    font-weight: 400;
    color: #272727;
}
.expertise_list .nav-pills li.nav-item {
    width: 14%;
}
.expertise_list .nav-link.active .exper_img{
    color: #fff;
    background: #5EB34D;
}
.expertise_list .nav-link.active .exper_img img {
    filter: brightness(100);
}
.expertise_list .nav-link.active h5{
    font-weight: 700;
}
.expertise_list .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color:unset;
    background-color: unset;
}

.exper_detail {
    width: 100%;
    position: relative;
    height: 600px;
    overflow: hidden;
}
.exper_detail img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}
.exper_content {
    position: absolute;
    right: 0%;
    top: 50%;
    background: #fff;
    border-radius: 20px 0 0 20px;
    padding: 30px 40px;
    text-align: left;
    transform: translateY(-50%);
    width: 38%;
    transition: 0.6s;
}
.exper_content h3{
    font-size: 40px;
    font-weight: 500;
}
.exper_content ul{
    font-size: 20px;
    font-weight: 500;
}
.exper_content ul li::marker {
    color: #5EB34D;
}

.story_bnner{
    background: radial-gradient(50.69% 250.48% at 98.36% 88.77%, #F9EBD3 0%, #EAF2F4 100%) ;
        width: 100%;
    height: 320px;
    position: relative;
    display: flex;
    align-items: end;
    padding-bottom: 80px;
    
}
.story_bnner h2{
    font-size: 60px;
    font-weight: 700;
}
.story_bnner p{
    font-size: 18px;
    font-weight: 600;

}
.stor_bg:before {
    content: '';
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, #FFFFFF 3.63%, rgba(255, 255, 255, 0.88488) 19.02%, rgba(255, 255, 255, 0.63) 34.45%, rgba(255, 255, 255, 0) 55.12%);
    height: 100%;
    transform: rotate(180deg);
}

.stor_bg {
    width:100%;
    height: 600px;
    position: relative;
    overflow: hidden;
}

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


.stor_list  .nav-pills {
    width: 30%;
    display: block;
    border-right: 1px solid #DFDFDF;
}
.stor_list  .nav-pills button h5{
    font-size: 20px;
    font-weight: 400;
    color: #111111;
}
.stor_list  .nav-pills button svg{
    color:#5EB34D;
    opacity:0;
    transition: 0.6s;
}
.stor_list  .nav-pills .nav-link.active svg{
    opacity:1;
    margin-left: 10px;
}
.stor_list  .nav-pills .nav-link.active  h5{
    font-weight: 700;
}
.stor_list .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: unset;
    background-color: unset;
}
.stor_list .nav-item {
    margin: 10px 0;
}
.stor_list div#pills-tabContent {
    width: 65%;
}
.stor_list .story_content h4{
    font-size: 40px;
    margin-bottom: 40px;
    font-weight: 500;
}
.stor_list .story_content p{
    font-size: 20px;
    margin: 12px 0px;
    font-weight: 500;
    color:#111111;
}
.stor_list .story_content p span{
    color:#5EB34D;
    font-weight: 500;
}
.stor_list .story_content h6{
    font-size: 16px;
    font-weight: 500;
    color: #535353;
    margin: 12px 0px;
}
.stor_list{
    margin-top: -160px;
}
.stor_list .card{
    border-radius: 15px;
    margin-top: 40px;
    border: none;
    /*background: #F9F0E0;*/
    overflow: hidden;
}
.stor_list .card .card-header{
    font-size: 20px;
    font-weight: 500;
    padding: 15px 0px;
    color:#272727;
    background: transparent;
    color: #5EB34D;
    font-weight: 500;
}
.stor_list .card .card-body li{
    font-size: 16px;
    color: #535353;
    margin-bottom: 10px;
    font-weight: 500; 
}
.stor_list .card .card-body li::marker {
    color: #5EB34D;
    font-size: 22px;
}
/*.stor_list .card_blue{*/
/*    background: #EAF2F4;*/
/*}*/
/*.card_blue.card .card-header{*/
/*    background: #B4DFEA; */
/*}*/
.card_blue.card .card-body p{
    font-size: 16px;
    font-weight: 500;
}
.card_blue.card .card-body p span {
    color: #535353;
    font-weight: 700;
}
.stor_list .card-body {
    padding: 15px 0px;
}



.test_bnner  .banner_content  {
    margin-bottom: 100px;
}
.test_bnner {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.test_bnner h2 {
    font-size: 60px;
    font-weight: 700;
}
.test_bnner p {
    font-size: 18px;
    font-weight: 600;
}
.test_content p {
    font-size: 18px;
    font-weight: 500;
    color: #272727;
    margin-bottom: 25px;
}
.test_content{
    margin: 20px 0 80px;
    padding: 40px 60px;
    position: relative;
    border-radius: 20px;
    background: radial-gradient(50.69% 250.48% at 98.36% 88.77%, #F9EBD3 0%, #EAF2F4 100%);
}
.test_content img{
    height: 160px;
    border-radius: 50%;
    margin: -100px 0 20px;
}
.test_content h6{
    font-size: 16px;
    color: #5EB34D;
    margin: 0;
    font-weight: 500;
}
.test_content span{
    font-size: 14px;
    font-weight: 400;
    color: #6B6B6B;
}
.test_content:before {
    content: '“';
    position: absolute;
    left: 20px;
    top: 0;
    font-family: Outfit;
    font-size: 164px;
    font-weight: 500;
    line-height: 1;
    color: #CDE4EE;
}
.test_content:after {
    content: '”';
    position: absolute;
    right: 20px;
    bottom: 0;
    font-family: Outfit;
    font-size: 164px;
    font-weight: 500;
    line-height: 0.4;
    color: #CDE4EE;
}

.add_details {
    padding-right: 60px;
}
.add_details h5{
    font-size: 26px;
    font-weight: 700;
}
.add_details p{
    font-size: 18px;
    font-weight: 600;
    color: #272727;
    margin: 25px 0;
}
.add_details p a{
    font-size: 18px;
    color: #272727;
    font-weight: 600;
}

.contact_detail form label{
    font-size: 16px;
    font-weight: 600;
     margin: 5px 0px;
}
.contact_detail form div{
    margin-bottom: 10px;
}
.contact_detail form .form-control{
    box-shadow: none;
    border: 1.5px solid #D0D0D0;
    padding: 10px;
    border-radius: 10px;
}
.detail_item {
    width: 23%;
    border-radius: 15px;
    background: linear-gradient(107deg, #EAF1F4 -2.57%, #F3EDDF 87.55%);
    padding: 30px 30px;
}
.detail_item img{
    width: 32px;
    height: 32px;
    object-fit: contain;
    margin-bottom: 12px;
}
.detail_item h4{
    color: #272727;
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 700;
}
.detail_item a{
    color: #272727;
    font-size: 18px;
    font-weight: 600;
}

.detail_item ul{
    list-style: none;
    padding: 0;
    justify-content: space-between;
    width: 100%;
    margin: 0;
}

.detail_item:hover{
    background: linear-gradient(342deg, #5EB34D 12.4%, #3C7847 126.17%);
}
.detail_item:hover h4{
    color: #fff;
}
.detail_item:hover a{
    color: #fff;
}
.detail_item:hover img{
    filter: brightness(100);
}
.detail_item:hover a path{
    fill: #fff;
}








.contact_details .accordion-item {
    border: none;
    border-bottom: 1px solid #D3D3D3;
    background: transparent;
}
.contact_details .accordion-button::after{
    content:none;
}
.contact_details .accordion-button{
     background-color: transparent; 
}
.contact_details .accordion-item button{
    box-shadow: none;
    display: flex;
    align-items: center;
    color: #272727;
    font-size: 26px;
    font-weight: 400;
    padding-left: 0;

}
.contact_details .accordion-item button svg{
    color: #5EB34D;
    opacity: 0;
    transition: 0.6s;
}
.contact_details .accordion-item p{
    font-size: 16px;
    font-weight: 500;
}
.contact_details .accordion-item button:not(.collapsed) {
        font-weight: 600;
}
.contact_details .accordion-item button:not(.collapsed) svg{
    opacity: 1;
    margin-left: 20px;
}
.contact_details .accordion {
    padding-right: 20px;
}
.contact_details .accordion-body {
    padding: 0;
    display: flex;
    column-gap: 60px;
    padding-bottom: 25px;
    justify-content:space-between;
}
.contact_details .accordion-body .add_deta p{
    font-weight: 600;
}
.contact_details .accordion-body p{
    color: #272727;
    font-size: 18px;
    margin: 15px 0;
    font-weight: 400;
}
.contact_details .accordion-body p a{
    color: #272727;
    font-weight: 400;
}
.contact_details .accordion-body .location_details{
    padding-right: 20%;
}
.contact_details .accordion-body .loac_img img{  
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.contact_details .accordion-body .loac_img  {
    width: 40%;
    overflow: hidden;
    border-radius: 20px;
    height: 250px;
}












.news_page .nav-pills {
    border-radius: 70px;
    background: #3E3E3E;
    display: inline-flex;
    overflow: hidden;
    padding: 10px ;
}
.news_page .nav-pills button{
    color: #FFF;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 25px;
    border-radius: 70px;
}
.news_page .nav-pills .nav-link.active{
    color: #fff;
    background: #5EB34D;
}


.news_relative {
    width: 31%;
    height: auto;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
}
.news_relative:before {
    width: 100%;
    height: 35%;
    content:none;
    position:absolute;
    left: 0;
    bottom: 0;
    background: linear-gradient(179deg, rgba(0, 0, 0, 0.00) 0.87%, rgba(0, 0, 0, 0.56) 50.23%);
}
.news_relative img {
    width: 100%;
    border-radius: 15px;
    height: 250px;
    object-fit: cover;
}
.news_data {
    position: unset;
    bottom: 0;
    color: #000;
    width: 100%;
    padding: 20px 10px;
} 
.news_data .news_title{
    color: #000;
    font-size: 18px;
    font-weight: 500;
}
.tag{
    width: 95px;
    height: 24px;
    border-radius: 70px;
    background: rgba(0, 0, 0, 0.38);
    color: #FFF;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    padding: 5px 15px;
    margin-right: 20px;
}
.date{
    color: #000;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 12px;
}

.for_small .news_relative{
    height: 236px;
    margin-bottom: 25px;
}
.for_small .news_data {
    padding: 20px;
    width: 100%;
}
.for_small .news_title {
    font-size: 20px;
}
.latest_news {
    border-bottom: 1px solid #C3C3C3;
    padding-bottom: 20px;
    margin-bottom: 20px;
    width: 31%;
}
.lates_img {
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
    height: 220px;
}
.lates_img img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}
.latest_news_data {
    width: 100%;
    padding-right: 0%;
}
.latest_news_data .date{
    color: #535353;
}
.latest_news_data .news_title{
    color: #272727;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}
.latest_news_data  p{
    color: #565656;
    font-size: 16px;
    font-weight: 500;
    margin: 12px 0;
}
.news_page  .latest_news_data .news_title {
    display: block;
}

.csr_data .nav-pills a {
    border-radius: 150px;
    background: #F1F1F1;
    color: #111;
    padding: 12px 50px;
    font-size: 18px;
    transition: 0.6s;
    font-weight: 500;
    text-transform: capitalize;
}
.csr_data .nav-pills a:hover {
    color: #fff;
    background: linear-gradient(96deg, #3C7847 5.77%, #5EB34D 95.59%);
}
.csr_bnner  {
    width: 100%;
    height: 550px;
    position: relative;
    overflow: hidden;
}
.csr_bnner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.csr_bnner .csr_content {
    top: 100px;
    z-index: 1;
    position: absolute;
    width: 50%;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
}
.csr_bnner h2{
    font-size: 60px;
    font-weight: 700;
    text-align: center;
    width: 100%;
}
.csr_bnner p{
    color: #272727;
    font-size: 18px;
    font-weight: 600;
}
.csr_bnner:before {
    content: '';
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, #FFFFFF 3.63%, rgba(255, 255, 255, 0.88488) 19.02%, rgba(255, 255, 255, 0.63) 34.45%, rgba(255, 255, 255, 0) 55.12%);
    height: 100%;
}


.csr_card {
    border-radius: 20px;
    background: radial-gradient(50.69% 250.48% at 98.36% 88.77%, #F9EBD3 0%, #EAF2F4 100%);
    padding: 35px;
    margin: 40px 0;
}
.csr_card h6{
    color: #111;
    font-size: 20px;
    font-weight: 500;
}
.csr_card li{
    color: #272727;
    font-size: 16px;
    font-weight: 500;
    margin: 10px 0;
}
#csr_slider img{
    object-fit:cover;
    height:200px;
    border-radius: 20px;
    width: 100%;
}
.csr_card ul{
    padding: 0px 15px;
}
.csr_card p{
    color: #535353;
    font-size: 16px;
    font-weight: 500;
}
.csr_data  .title h5 {
    color: #111;
    font-size: 30px;
    font-weight: 500;
    margin-top: 40px;
}
.csr_data  .title p {
    color: #535353;
}

.vendor_bnner {
    position: relative;
    height: 600px;
    width: 100%;
}
section.vendor_bnner:before {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    content: '';
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.17) 0.15%, rgba(0, 0, 0, 0.90) 66.51%);
    left: 0;
    bottom: 0;
    z-index: 0;
}
.vendor_bnner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
section.vendor_bnner .banner_content {
    position: absolute;
    width: 60%;
    top: 15%;
    z-index: 0;
    color: #fff;
    left: 50%;
    transform: translateX(-50%);
}
section.vendor_bnner .banner_content h2 {
    font-size: 60px;
    font-weight: 700;
}
section.vendor_bnner .banner_content p {
    font-size: 18px;
    font-weight: 600;
}

.contact_detail.vendor form select{
    box-shadow: none;
    border: 1.5px solid #D0D0D0;
    padding: 10px;
    width:100%;
    border-radius: 10px;
}



.contact_detail.vendor .vendor_card{
    border-radius: 15px;
    padding: 60px 80px;
    margin-top: -250px;
    background: linear-gradient(107deg, #EAF1F4 -2.57%, #F3EDDF 87.55%);
}
.vendor_card p.title{
    color: #272727;
    margin-bottom: 40px;
    font-size: 20px;
    font-weight: 600;
}

.connect_msg {
    margin-top: 60px;
    text-align: center;
}
.connect_msg h5{
    color: #272727;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}
.connect_msg a{
    border-radius: 50px;
    border: 1px solid #5EB34D;
    background: #ECF8EA;
    color: #272727;
    font-size: 30px;
    font-weight: 600;
    padding: 8px 50px;
}

.for_main_news.nav-pills .nav-link.active {
    color: #fff;
    background: #5EB34D;
}
.high_bnner .col-12.text-center {
    position: absolute;
    bottom: 0;
} 
.for_main_news.nav-pills {
    border-radius: 70px;
    background: #3E3E3E;
    display: inline-flex;
    overflow: hidden;
    padding: 10px;
}
.for_main_news.nav-pills button {
    color: #FFF;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 25px;
    border-radius: 70px;
}
.banner_content h2{
    font-weight: 700;
    text-transform: capitalize;
    font-size: 60px;
    
}
.banner_content p{
    font-size: 18px;
    line-height: 1.5;
    font-weight: 600;
}
.blog_page .banner_content p {
    width: 55%;
    padding-right: 10%;
}
.blog_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog_img {
    margin-bottom: 15px;
    width: 100%;
    height: auto;
    max-height: 400px;
    border-radius: 15px;
    overflow: hidden;
}
.latest_blog .col-md-4 {
    border-radius: 15px;
    background: #FFF;
    margin-bottom: 20px;
    transition: 0.6s;
    padding: 15px;
    position: relative;
    
}

.blog_content {
    padding: 0 10px;
    text-decoration: none;
    display: inline-block;
    color: #272727;
}
.blog_content h4 {
    word-break: break-all;
}
.latest_blog .col-md-4:hover {
    z-index: 1;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.15);
}
.latest_blog .blog_content h6 {
    color: #111;
    font-size: 20px;
    font-weight: 400;
}
.latest_blog .blog_content .date {
    color: #535353;
    display: inline-block;
}
.latest_blog .blog_content p {
    color: #535353;
    font-size: 16px;
    font-weight: 500;
    margin: 12px 0;
}
.blog_slider {
    border-radius: 15px;
    border: 1px solid #FFF;
    background: linear-gradient(107deg, #EAF1F4 -2.57%, #F3EDDF 87.55%);
    margin-top: 25px;
    padding: 25px;
}
#blog_slider .swiper-slide .blog_slider_content{
    opacity:0;
}
#blog_slider .swiper-slide.swiper-slide-active .blog_slider_content{
    opacity:1;
}
#blog_slider .swiper-slide .blog_slider_img{
    opacity:0;
}
#blog_slider .swiper-slide.swiper-slide-active .blog_slider_img{
    opacity:1;
}
.blog_slider_content{
    width: 50%;
}
.blog_slider_content h4{
    color: #272727;
    font-size: 28px;
    font-weight: 700;
}
.blog_slider_content p{
    color: #565656;
    font-size: 16px;
    font-weight: 400;
    margin: 25px 0;
}
.blog_slider_img {
    width: 45%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
}
.blog_slider_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.blog_slider .swiper-pagination {
    width: 50%;
    text-align: left;
    position: relative;
}
.blog_slider .swiper-pagination span {
    width: 12px;
    height: 12px;
    background: #fff;
    border: 1px solid;
}
.blog_slider .swiper-pagination span.swiper-pagination-bullet-active{
    background: #5EB34D;
    border: 1px solid #5EB34D;
}




.policy_page ul{
    display: inline-flex;
    list-style: none;
    flex-wrap: wrap;
    padding: 0;
    margin: 30px 0 60px;
}
.policy_page ul li{
    width:50%;
    margin-bottom: 20px;
    color: #272727;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
}
.policy_page ul li:nth-child(odd){padding-right: 10px;}
.policy_page ul li svg{
    min-width: 30px;
    min-height: 30px;
    background: #24AF57;
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    padding: 5px;
}
.policy_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.policy_img {
    width: 100%;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
}
.policy_item {
    margin-bottom: 60px;
}
.policy_content {
    background:radial-gradient(50.69% 250.48% at 98.36% 88.77%, #F9EBD3 0%, #EAF2F4 100%);
    border-radius: 0 20px 20px 0;
    margin-top: -50px;
    position: relative;
    padding: 25px;
    width: 90%;
    /*border:2px solid #5eb34d;*/
}
.policy_content .ver_scroll{    max-height: 350px;
    min-height:350px;
    overflow-y: auto;}
.policy_content h4{
    /*color:#fff;*/
    color: #111;
    font-size: 30px;
    font-weight: 500;
}
.policy_content p{
    color: #535353;
    font-size: 16px;
    font-weight: 400;
}
.cert_bnner {
    position: relative;
    overflow: hidden;
    width: 100%;
    background: #5EB34D;
    height: 550px;
}
.cert_bnner .banner_content {
    position: absolute;
    width: 35%;
    top: 20%;
    z-index: 10;
    color: #fff;
    left: 8%;
}
.cert_bnner img{
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: -50%;
    height: 700px;
    filter: brightness(100);
}
.cert_page h6 {
    color: #111;
    font-size: 20px;
    font-weight: 500;
    text-transform: capitalize;
    width: 60%;
    margin: 0 auto 60px;
}
.cert_item img{
    width: 100%;
    height: 150px;
    object-fit: contain;
    margin-bottom: 15px;
}
.cert_item{
    width: 25%;
    transition: 0.6s;
    border-right: 1px solid #BDBDBD;
    padding: 20px;
    min-height:100%;
}
.cert_item:last-child{
    border-right: none;
}
.cert_item h2 {
    color: #111;
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
}
.cert_item p {
    color: #111;
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: capitalize;
}
.cert_item a{
    transform: translateY(20px);
    display: inline-block;
    opacity: 0;
    transition: 0.6s;
}
.cert_item a:hover{
    cursor:pointer;
}
.cert_item:hover a{
    transform: translateY(0px);
    opacity: 1;
}
.cert_item:hover {
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
}


.work_img{
    width:100%;
    height:250px;
    border-radius:20px;
    position: relative;
    overflow:hidden;
}
.work_img img{
    width:100%;
    height:100%;
    object-fit: cover;
}
.join_sec p{
    color: #272727;
    font-size: 20px;
    font-weight: 500;
    text-transform: capitalize;
}
.work_img p{
    position: absolute;
    top: 0;
    left: 0;
    display: grid;
    place-content: center;
    background: red;
    color: #fff;
    border-radius: 20px;
    background: linear-gradient(306deg, #5EB34D -28.83%, #3C7847 113.09%);
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    width: 100%;
    height: 100%;
    padding: 40px;
    transition: .6s;
    opacity:0;
}
.join_sec .col-md-4:hover .work_img p{
    opacity:1;
}
.work_page.client {
    background: transparent;
}
.work_page .client_content {
    background: transparent;
}
.work_page .client_content p{
    color: #272727;
    font-size: 24px;
    font-weight: 500;
}
.work_page .client_content .qout_des {
    left: 0px;
    color: #E2EEE0;
    top: -20px;
}
.work_page .client_content .qout_des.sec_q {
    left: unset;
    top: unset;
}
.refer h6{
    color: #272727;
    font-size: 20px;
    font-weight: 500;
    text-transform: capitalize;
}
.refer_icon {
    width:22%;
    text-decoration:none;
}
.refer_content {
    width: 78%;
}
.refer img{
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 5px;
}
.refer p{
    color: #535353;
    font-size: 16px;
    font-weight: 500;
    margin-bottom:10px;
    text-align:left;
}
.refer .btn_global{
    min-width: auto !important;
}
.crew_img {
    width: 100%;
    border-radius: 20px;
    height: 400px;
    overflow: hidden;
    box-shadow: 0 0 10px #cdcdcd;
}
.crew_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.crew_img video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.join_card .row{
    border-radius:  15px ;
    background: radial-gradient(253.77% 65.01% at 98.36% 88.77%, #F9EBD3 0%, #EAF2F4 100%);
}
.join_card img{
    width: 100%;
    height: 100%;
    object-fit:cover;
    padding-right: 25px; 
}
.join_card .title {
    flex-direction: column;
    padding-left: 25px;
    height: 100%;
    padding-right: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    text-align: left;
}
.link_style {
    color: #111;
    font-size: 20px;
    font-weight: 500;
    text-decoration-line: underline;
    text-transform: capitalize;
}
.link_style svg {
    stroke: #5EB34D;
    margin-left: 10px;
}



.journey_banner {
    width: 100%;
    min-height: 420px;
    display: flex;
    padding: 40px 0;
}
.journey_banner .banner_content h2 span{
    color: #5EB34D;
    font-weight: 700;
}
.journey_banner .banner_content h5{
    color: #272727;
    font-size: 26px;
    font-weight: 400;
    margin: 20px 0;
}
.journey_banner .banner_content p{
    color: #535353;
    font-size: 16px;
    font-weight: 500;
}
/*.timeline_sec  .title {*/
/*    position: sticky;*/
/*    top: 120px;*/
/*}*/
.timeline_sec{
    background: linear-gradient(264deg, #F9EBD3 -14.93%, #EAF2F4 75.25%);
}
.timeline_sec:before{
    content:'';
    position: absolute;
    background: linear-gradient(180deg, white, transparent);
    width: 100%;
    height: 100px;
    top: 0;
    left: 0;
}
.timeline_sec:after{
    content:'';
    position: absolute;
    background: linear-gradient(0deg, white, transparent);
    width: 100%;
    height: 100px;
    bottom: 0;
    left: 0;
}

/*.timeline_sec svg{*/
/*    position: absolute;*/
/*    width: 100%;*/
/*    left: -12%;*/
/*    top: 300px;*/
/*}*/
.timeline_data{
    position: relative;
    margin-bottom: 150px;
}
.timeline_content ul{
    list-style:none;
    padding: 0;
}
.timeline_content li {
    margin-bottom: 6px;
    font-weight: 500;
}
.timeline_data  .swiper-slide .timeline_content{
    opacity: 1;
    transition: 0.6s;
}
.timeline_data   .swiper-slide.swiper-slide-active .timeline_content{
    opacity: 1;
}
.timeline_data  .swiper-slide .timeline_img{
    opacity: 1;
    transition: 0.6s;
}
.timeline_data   .swiper-slide.swiper-slide-active .timeline_img{
    opacity: 1;
}
.timeline_data  .swiper-slide .timeline_img2{
    opacity: 1;
    transition: 0.6s;
}
.timeline_data   .swiper-slide.swiper-slide-active .timeline_img2{
    opacity: 1;
}
.timeline_content{
    border-radius: 20px;
    border: 1px solid #272727;
    text-align: center;
    padding: 20px;
    width: 20%;
    display: grid;
    place-content: center;
    background: #eaf2f4 ;
    position: relative;
}
.timeline_img{
    height:320px;
    position: relative;
    overflow: hidden;
    width: 40%;
    border-radius:40px;
}
.timeline_img img{
    height:100%;
    object-fit:cover;
    width: 100%;
}
.timeline_content h4{
    color: #272727;
    font-size: 58px;
    font-weight: 700;
}
.timeline_content p{
    color: #272727;
    font-size: 18px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 15px;
}
#main_slider1 .swiper-slide:before {
    content: '';
    position: absolute;
    width: 100%;
    border: 1px dashed #5EB34D;
    left: 0; 
    top: 50%;
    transform: translateY(-50%);
}
#main_slider1 .swiper-slide{
    justify-content: center;
}
.timeline_img .img_content {
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    z-index: 1;
    background: #5eb34ded;
    height: 100%;
    display: flex;
    place-content: center;
    color: #fff;
    transition: 0.6s;
    opacity: 0;padding:10px;
    flex-direction: column;
    padding-left: 20px;
}
.timeline_img .img_content p{
    font-size: 18px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 5px;
}
.timeline_img:hover .img_content{
    opacity: 1;
}
.timeline_img .img_content li {
    margin-bottom: 4px;
    font-weight: 500;
    font-size: 14px;
}


.timeline_data:nth-child(2){
    justify-content: end;
}
.timeline_data:nth-child(2) .swiper-slide{
    justify-content: end;
}
.timeline_data:nth-child(4) {
    justify-content: end;
    margin-right: 15%;
    margin-bottom: 0;
}
.timeline_data:nth-child(4) .swiper-slide{
    justify-content: end;
}
.timeline_data:nth-child(4) .timeline_content{
    background: linear-gradient(90deg, #F0EFE7 0%, #F3EDDF 100%);
}
.timeline_data:nth-child(2) .timeline_img{
    height: 520px;
}
.timeline_data:nth-child(3) {
    margin-left: -15%;
    margin-bottom: 90px;
}
.timeline_data:nth-child(2) .timeline_content{
    background: linear-gradient(99deg, #F1EEE3 4.96%, #F5EDDC 94.41%);
    margin-bottom: 20px;
}

.timeline_data:nth-child(3) .timeline_content{
    background: linear-gradient(95deg, #EAF1F4 3.36%, #ECF0EF 96.09%);
}
.timeline_data:nth-child(3) .timeline_img{
    height:220px;
}

.timeline_data:nth-child(5) {
    margin-left: -15%;
    align-items: start;
    padding-top: 60px;
}
.timeline_data:nth-child(5) .swiper-slide{
    align-items: start;
}
.timeline_data:nth-child(5) .timeline_img{
    height: 380px;
}

.timeline_data:nth-child(5) .timeline_content{
    background: linear-gradient(90deg, #EAF1F4 0%, #EBF1F1 100%);
}
.timeline_data:nth-child(6) {
    justify-content: end;
    margin-right: 15%;
    margin-bottom: 100px;
}
.timeline_data:nth-child(6) .swiper-slide{
    justify-content: end;
}
.timeline_data:nth-child(6) .timeline_content{
    background: linear-gradient(99deg, #F0EFE7 4.96%, #F3EDDF 94.41%);
}

.timeline_data:nth-child(7) .timeline_img{
    height: 300px;
}

.timeline_data:nth-child(7) .timeline_content{
    background: linear-gradient(90deg, #EAF1F4 0%, #EBF1F1 100%);
}















.Delivery_page{
    background: radial-gradient(253.77% 65.01% at 98.36% 88.77%, #F9EBD3 0%, #EAF2F4 100%);
    margin-bottom: 60px;
}
.del_data {
    display: flex;
    gap: 20px;
    /*justify-content: space-between; */
    margin-bottom: 300px; 
    min-height:380px;
}
.del_data h4{
    color: #111;
    font-size: 50px;
    font-weight: 400;
}
.del_data ul{
    list-style: none;
    padding: 0;
}
.del_data ul li{
    color: #535353;
    font-weight: 500;
    margin-bottom: 6px;
    line-height: normal;
    text-transform: capitalize;
}
.del_content > div {
    display: inline-block;
    min-width: 49%;
    margin-top: 20px;
}
.del_data p{
    color: #272727;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: capitalize;
}
.del_content  {
    padding-left: 20px;
}
.del_img_main {
    width: 34%;
    position: relative;
}
.del_img  {
    width: 100%;
    height: 380px;
    overflow: hidden;
    border-radius: 40px;
    position: absolute;
    left: 0;
    top: 0;
}
.del_img_sticky{
    position: sticky;
    height: 500px;
    top: 12%;
    
}
.del_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
}
.del_time {
    min-width: 85px;
    height: 85px;
    border: 3px solid #3C7847;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #eaf2f4;
    z-index: 1;
}
.Delivery_page  .position-relative:before  {
    content:'';
    position: absolute;
    left: 40px;
    width: 3px;
    height: 100%;
    background:#fff;
    top: 10px;
}
.for_timeline {
    position: absolute;
    left: 40px;
    width: 3px;
    height: 0%;
    background:linear-gradient(0deg, #3C7847, #00A3E1, #3C7847);
    top: 10px;
}
.del_img#thrp-img-1 {
    clip-path: unset !important;
}



.opening_sec .first_list button{
    border-radius: 150px;
    background: #F1F1F1;
    color: #111;
    padding: 12px 50px;
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
}
.opening_content .jd{
    color: #535353;
    font-size: 16px;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}.opening_content .read_btn {
    display: block;
    color: #5eb34d;
    cursor: pointer;
    margin-top: 10px;
}
.opening_content .jd.show{
    -webkit-line-clamp: unset;
}
.nav-pills.first_list {
    gap: 25px;justify-content: center;
    margin-bottom: 25px !important;
}
.nav-pills.first_list .nav-link.active, .nav-pills .show>.nav-link {
    color: #fff;
    background: linear-gradient(96deg, #3C7847 5.77%, #5EB34D 95.59%);
}

.sec_list h6{
    color: #272727;
    font-size: 16px;
    padding: 10px 25px;
    font-weight: 600;
    margin-bottom: 15px;
}
.sec_list{
    border-radius: 15px;
    margin-top: 60px;
    padding: 25px 0;
    background: radial-gradient(806.84% 247.06% at 180.72% 118.34%, #F9EBD3 0%, #EAF2F4 100%);
}
.sec_list .nav-item {
    width: 100%;
}
.sec_list .nav-item button{
    color: #272727;
    padding:10px 25px;
    width: 100%;
    border-radius: 15px;
    text-align: left;
    margin-bottom: 12px;
}
.sec_list .nav-item h5{
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
}
.sec_list .nav-link.active, .nav-pills .show>.nav-link{
    background: #5EB34D;
}
.sec_content{
    margin-top: 60px;
    padding-left: 60px;
}


.sec_content .job_details h4{
    color: #272727;
    font-size: 22px;
    font-weight: 600;
}
.sec_content .job_details h6{
    color: #272727;
    font-size: 14px;
    font-weight: 500;
    margin: 16px 0;
}
.sec_content .job_details li{
        color: #272727;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    list-style: disc;
}

.sec_content .job_details ul{
    display: inline-flex;
    list-style: none;
    padding: 0;
    gap: 40px;
}
.sec_content .job_details ul.bgcolor li{    background: #5eb34d38;
    padding: 2px 14px;
    border-radius: 50px;}
.job_details {
    border-bottom: 1px solid #DADADA;
    padding-bottom: 40px;
    margin-bottom: 40px;
}
.valu_tab{
    /*background: #edf1f1;*/
    background: radial-gradient(50.69% 250.48% at 98.36% 88.77%, #F9EBD3 0%, #EAF2F4 100%);
   /* padding: 50px 0;*/
    border-radius: 15px
}
.valu_tab .col-md-4{
    /*background: #013434;*/
    /*background:radial-gradient(253.77% 65.01% at 98.36% 88.77%, #F9EBD3 0%, #EAF2F4 100%);*/
    padding: 40px;
    display: grid;
    place-content: center;
    border-right:1px solid #5eb34d6e;
}
.value_title{
    /*color:#fff;*/
    color:;#212529;
}
.value_main_title {
    padding: 40px;
    margin: 0;
}
.value_main_title ul {
    padding: 0;
    display: flex;
    margin-top: 40px;
    list-style: none;
    column-gap: 40px;
    align-items: center;
}
.value_main_title ul li{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}
.value_main_title ul li .icon_val {
    display: block;
    margin-bottom: 10px;
    width:100px;
    height:100px;
    border-radius:50%;
    padding:20px;
    border:1px solid #013434;
}
.value_main_title ul li .icon_val img{
   width: 100%;
    height: 100%;
    object-fit: contain;
    overflow: hidden;
}
.drilling{
    background: #edf1f1;
    
}
.drilling ul{
    display: flex;
    list-style: none;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 40px;
}
.drilling ul svg {
    color: #fff;
    background: #5eb34d;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.clients {
    background: radial-gradient(253.77% 65.01% at 98.36% 88.77%, #F9EBD3 0%, #EAF2F4 100%);
}
.clients ul{
    display: flex;
    list-style: none;
    padding: 0;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.clients ul li {
    display: flex;
    gap: 20px;
    width: 47%;
    justify-content: center;
    align-items: center;
}
/*.clients ul {
    display: inline-flex;
    list-style: none;
    padding: 0;
    gap: 40px;
    margin-top: 40px;
}
.clients ul li{
    display: flex;
    align-items: center;
    gap: 20px;
}*/
.clients ul li span{
    /* display: block; */
    background: #5eb34d;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 110px;
    height:110px;
}
.clients ul li p{
    width: 70%;
}
.procedure .procedure_info{
    width:100%;
    height:100%;
    margin-top:20px;
    padding:15px;
    display:flex;
    flex-direction:column;
    justify-content:start;
    align-items:center;
    box-shadow: 1px 4px 10px #d5d5d5e0;
}
.procedure .procedure_info .img-block{
    width:100px;
    height:100px;
    background:#5eb34d;
    margin-bottom:10px;
    border-radius:50%;
    padding:20px;
}
.procedure .procedure_info .img-block img{
    width:100%;
    height:100%;
    object-fit:contain;
    overflow:hidden;
}
.procedure .procedure_info .text-block {
    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}
.procedure .procedure_info .text-block .title{
    margin-bottom:10px;
}
.procedure .procedure_info .text-block .title h2{
    font-size:20px;
    line-height:30px;
    color:#013434;
}
.procedure .procedure_info .text-block p{
    text-align:center;
}
.workshop{
    background:#edf1f1;
}
.workshop .workshop-info{
    width:100%;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    padding:15px;
    background:#fff;
    border-radius:10px;
    box-shadow: 1px 4px 10px #d5d5d5e0;
}
.workshop .workshop-info .img-block{
    width:80px;
    height:80px;
    border-radius:50%;
    border:1px solid #5eb34d;
    margin-bottom:10px;
    padding:10px;
}
.workshop .workshop-info .img-block img{
    width:100%;
    height:100%;
    object-fit:contain;
    overflow:hidden;
}
.workshop .workshop-info .title{
    text-align:center;
}
.workshop .workshop-info .title h2{
    font-size:15px;
    line-height:25px;
    color:#013434;
    font-weight:bold;
}

.advantage .advantage-info{
    width:100%;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    padding:35px;
    border-radius:5px;
    box-shadow: 1px 4px 10px #d5d5d5e0;
}

.advantage .advantage-info .img-block{
    width:100px;
    height:100px;
    border-radius:50%;
    background:#5eb34d;
    margin-bottom:15px; 
    padding:20px;
}
.advantage .advantage-info .img-block img{
    width:100%;
    height:100%;
    object-fit:contain;
    overflow:hidden;
}
.advantage .advantage-info .text-block{
    text-align:center;
}
.mail-block{
    background:#7a7c7c;
}
.mail-block .mail-info{
    width:100%;
    background:#fff;
    padding:30px;
    text-align:center;
    border-radius:5px;
}
.mail-block .mail-info a{
    text-decoration:none;
    color:#5eb34d;
}
.mail-block .mail-info a:hover{
    color:#d8673d;
}
.management .text-block p{
    margin-bottom:15px;
}
.management .text-block ul{
    list-style:none;
    margin-left:-30px;
}
.management .text-block ul li{
    margin-bottom:8px;
}
.management .text-block ul li i{
    color:#013434;
}
.vendor{
    background:#edf1f1;
}
.vendor .text-block p{
    margin-bottom:15px;
}
.vendor .vendor-block{
    display:flex;
    flex-wrap:wrap;
    /*align-items:center;*/
    justify-content:space-around;
}
.vendor .vendor-block .vendor-info{
    width:48%;
    min-height:100%;
    background:#fff;
    padding:15px;
    display:flex;
    justify-content:start;
    align-items:center;
    flex-direction: column;
    margin-top:20px;
}
.vendor .vendor-block .vendor-info .img-block{
    width:100px;
    height:100px;
    border-radius:50%;
    background:#5eb34d;
    padding:20px;
}
.vendor .vendor-block .vendor-info .img-block img{
    width:100%;
    height:100%;
    object-fit:Contain;
    overflow:hidden;
}
.vendor .vendor-block .vendor-info .text-block{
    text-align:center;
}
.vendor .vendor-block .vendor-info .text-block .title{
    margin-bottom:10px;
}
.vendor .vendor-block .vendor-info .text-block .title h2{
    font-size:20px;
    font-weight:bold;
    line-height:30px;
}
.global-advantage .text-block{
    width:100%;
    height:100%;
    padding:25px;
    box-shadow: 1px 4px 10px #d5d5d5e0;
    border-radius:10px;
    text-align:center;
}
.operation{
    background:#edf1f1;
}
.operation .text-block p{
    margin-bottom:15px;
}

.operation .text-block ul {
    list-style: none;
    margin-left: -30px;
}
.operation .text-block ul li {
    margin-bottom: 8px;
}
.operation .text-block ul li i {
    color: #5eb34d;
    margin-right:10px;
}
.feature .feature-block {
    display: flex;
    column-gap: 30px;
    margin-bottom: 30px;
}

.feature .feature-block .img-block{
    width:100px;
    height:100px;
    border-radius:50%;
    border:1px solid #5eb34d;
    padding:20px;
}

.feature .feature-block .img-block img{
    width:100%;
    height:100%;
    object-fit:Contain;
    overflow:hidden;
}
.feature .feature-block .text-block{
    width:75%;
}
.benefits{
    background:#edf1f1;
}

.benefits .benefit-block{
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.benefits .benefit-block .img-block{
    width:100px;
    height:100px;
    border-radius:50%;
    background:#5eb34d;
    padding:20px;
}
.benefits .benefit-block .img-block img{
    width:100%;
    height:100%;
    object-fit:Contain;
    overflow:hidden;
}
.benefits .benefit-block .text-block{
    width:75%;
}
.solutions .feature-block{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:10px;
}
.solutions .feature-block .img-block{
    width:90px;
    height:90px;
    border-radius:50%;
    /*border:1px solid #013434;*/
}
.solutions .feature-block .img-block img{
    width:100%;
    height:100%;
    object-fit:Contain;
    overflow:hidden;
}
.solutions .feature-block .text-block{
    width:75%;
}

.highlights{
    background:#edf1f1;
}
.highlights .highlights-block{
    display:flex;
    justify-content:space-around;
    /*align-items:center;*/
    flex-wrap:wrap;
}
.highlights .highlights-block .highlights-info{
    margin: 20px;
    width: 22%;
    min-height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 18px;
}
.highlights .highlights-block .highlights-info .img-block{
    width:100px;
    height:100px;
    border-radius:50%;
    background:#013434;
    margin-bottom:10px;
}
.highlights .highlights-block .highlights-info .img-block img{
    width:100%;
    height:100%;
    object-fit:contain;
    overflow:hidden;
}
.highlights .highlights-block .highlights-info .title-block{
    text-align:center;
}
.highlights .highlights-block .highlights-info .title-block h3{
    font-size:20px;
    line-height:30px;
    font-weight:bold;
}
.supply{
    background:#edf1f1;
}
.ipd .img-block{
    width:100%;
    height:400px;
}
.ipd .img-block img{
    width:100%;
    height:100%;
    object-fit:contain;
    overflow:hidden;
}
.provide .provide-area{
   width:100%;
   height:500px;
}
.provide .provide-area img{
    width:100%;
    height:100%;
    object-fit:cover;
    overflow:hidden;
}
.maintenance .maintenance-area{
    margin-top:-60px;
    display:flex;
    justify-content:space-around;
}
.maintenance .maintenance-area .maintenance-info{
    width:30%;
    min-height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}
.maintenance .maintenance-area .maintenance-info .img-block{
    width:100px;
    height:100px;
    border-radius:50%;
    border:1px solid #013434;
    margin-bottom:10px;
    padding:20px;
}
.maintenance .maintenance-area .maintenance-info .img-block img{
    width:100%;
    height:100%;
    object-fit:contain;
    overflow:hidden;
}
.maintenance .maintenance-area .maintenance-info .text-block{
    text-align:center;
}
.maintenance .maintenance-area .maintenance-info .text-block h3{
    font-size:20px;
    line-height:30px;
    font-weight:bold;
}
/*#blog-body img{
    width:100%;
    height:650px;
    object-fit:contain;
    overflow:hidden;
}*/

.service_bnner2 .service-editor ul{
    list-style:none;
    text-align: left;
    margin-left: -30px
}
.service_bnner2 .service-editor ul li{
    margin-bottom:15px;
}

.service_bnner2 .service-editor .elementor-widget-container {
    margin-bottom: 20px;
}
.operation .text-block h4 {
    margin-bottom: 18px;
}
.procedure .elementor-widget-container {
    text-align: left;
    margin-bottom:20px;
}

.procedure .elementor-widget-container ul{
    list-style:none;
    margin-left:-30px;
}
.procedure .elementor-widget-container ul li{
    margin-bottom:10px;
}
.procedure .elementor-widget-container ul li i{
    color:#5eb34d;
}
.refer a{
    text-decoration:none;
}
.certification .img-block{
    width:100%;
    height:auto;
    margin-bottom:10px;
    margin-top:20px;
}
.certification .img-block img{
    width:100%;
    height:100%;
    object-fit:contain;
    overflow:hidden;
}
.certification .text-block h2 {
    color: #111;
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
    text-align:center;
}
.certification .text-block p {
    color: #111;
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: capitalize;
}
.certification:hover {
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
}
/*.certification .btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: 0.25em 0.25em;
    color: #000;
    background: transparent url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e) center/1em auto no-repeat;
    border: 0;
    border-radius: 0.25rem;
    opacity: .5;
    position: absolute;
    top: 0;
    right: 0;
}
*/
.list-country{
    display:flex;
    flex-direction:row;
    flex-wrap:wrap;
    
}

.list-country h5 {
    width:30%;
}
.title2 h5{
    font-weight:bold;
}

.privacy .text-block p{
    margin-bottom:15px;
}
.privacy .text-block h1,
.privacy .text-block h2,
.privacy .text-block h3,
.privacy .text-block h4,
.privacy .text-block h5,
.privacy .text-block h6{
    color: #111;
    font-size: 30px;
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 10px;
}
.privacy .text-block  ul{
    list-style:none;
    margin-left:-30px;
}
.privacy .text-block ul li{
    margin-bottom:8px;
}
.privacy .text-block ul li i {
    margin-right: 10px;
    color: #5eb34d;
}

/*privacy policy page css*/
.privacy-banner {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 550px;
}

section.privacy-banner:before {
    width: 80%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    content: '';
    background: linear-gradient(90deg, #FFFFFF 7.02%, rgba(255, 255, 255, 0.88488) 42.7%, rgba(255, 255, 255, 0.730196) 58.11%, rgba(255, 255, 255, 0) 82.26%);
    left: 0;
    top: 0;
}
.privacy-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
section.privacy-banner .banner-content {
    position: absolute;
    width: 35%;
    top: 35%;
    z-index: 0;
    color: #000;
    left: 8%;
    transform: translateY(-50%);
}
section.privacy-banner .banner-content h2 {
    font-size: 60px;
    font-weight: 700;
}
section.privacy .table thead {
    background: #efefef;
    border-top:1px solid #000;
    border-left:1px solid #000;
    border-right:1px solid #000;
}
section.privacy .table td{
    border:1px solid #000;
}

.service_bnner .banner_content .h1 {
    font-size: 60px;
    font-weight: 700;
    color: #111111;
}
section.client.work_page .swiper .swiper-wrapper .swiper-slide .client_img {
    opacity: 0
}
.blogs-img-wrap img {
    height: auto;
}

.blogs-img-wrap .img-caption {
    padding: 20px;
}

.card.blog-item .card-body a {
    display: block;
    margin-top: 10px;
}


.card.blog-item {
    margin-bottom: 40px;
}

/**************************** Responisve Start*****************/


@media(max-width:1280px){
    /*.service_bnner .banner_content .btn_global {
    position: absolute;
    top: 84px;
    right: -33px
}
.service_bnner img {
    margin-bottom: -24%;
    height: 400px;
    margin-left: 52px;
}    
    
    */
    
.service_bnner .btn_global {
    position: absolute;
    top: 9px;
    right: 80px;
}    
 .value_item.value_item4 {
    bottom: -85px;
    left: 75%;
}
.service_bnner img {
    margin-bottom: -24%;
    height: 400px;
    margin-left: -69px;
}






.value_item.value_item5 {
    bottom: -44px;
    left: 47%;
    transform: translateX(-50%);
}
.high_point .title {
    width: 53%;
    padding-right: 40px;
}
.blog_slider_img {
    width: 47%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
}
.detail_item a {
    color: #272727;
    font-size: 16px;
    font-weight: 600;
}
/*journey page css*/
.timeline_img {
    width: 45%;
}
.timeline_img img {
    height: 100%;
    object-fit: contain;
    width: 100%;
}
.timeline_content2 {
    width: 45%;
}
.timeline_content2 .timeline_content{
    width:100%;
}
.timeline_data:nth-child(3) .timeline_img {
    height: 220px;
    margin-left: -14%;
    margin-top: 5%;
}
.timeline_data:nth-child(5) {
    margin-left: -23%;
    align-items: start;
    padding-top: 60px;
}

}

@media(max-width:1024px){
    .value_item img {
    transition: .6s;
    /* transform: translateX(-100%); */
    opacity: 1;
    height: 50px;
    object-fit: contain;
    width: 50px;
    filter: grayscale(1);
}
.value_item h4 {
    font-size: 24px;
    font-weight: 700;
}
.value_item p {
    font-size: 11px;
    font-weight: 500;
}
.value_item.value_item4 {
    bottom: -46px;
    left: 75%;
}
.value_item.value_item5 {
    bottom: -31px;
    left: 47%;
    transform: translateX(-50%);
}
.value_item.value_item6 {
    bottom: -33px;
    left: 0%;
}
.footer_top h4 {
    color: #111;
    text-align: center;
    font-size: 50px;
    font-weight: 400;
}
.detail_item {
    width: 31%;
    border-radius: 15px;
    background: linear-gradient(107deg, #EAF1F4 -2.57%, #F3EDDF 87.55%);
    padding: 30px 30px;
}
.journey_banner img{
    width:100%;
    object-fit:contain;
    overflow:hidden;
}
/*.timeline_sec svg {*/
/*    position: absolute;*/
/*    width: 100%;*/
/*    left: -12%;*/
/*    top: 9px;*/
/*}*/
.timeline_data:nth-child(2) {
    justify-content: end;
    margin-top: -11%;
}
.timeline_img {
    width: 40%;
}
.timeline_content2 {
    width: 47%;
}
.timeline_content2 .timeline_content{
    width:100%;
}
.timeline_content2 .timeline_content{
    width:100%;
}
.timeline_content h4 {
    color: #272727;
    font-size: 40px;
    font-weight: 700;
}
.timeline_data:nth-child(3) {
    margin-left: -21%;
    margin-bottom: 0px;
    margin-top: -21%;
}
.timeline_data:nth-child(3) .timeline_img {
    height: 220px;
    margin-left: -9%;
    margin-top: 5%;
}
.timeline_data:nth-child(4) {
    justify-content: end;
    margin-right: 0%;
    margin-bottom: 0;
}
.timeline_data:nth-child(5) {
    margin-left: -23%;
    align-items: start;
    padding-top: 0px;
    margin-top: -4%;
}
.timeline_data:nth-child(6) {
    justify-content: end;
    margin-right: 15%;
    margin-bottom: 90px;
    margin-top: -10%;
}



}
@media(max-width:1080px){
section.main_bnner .banner_content h2 {
    font-weight: 700;
    text-transform: capitalize;
    font-size: 42px;
}
section.main_bnner {
    width: 100%;
    height: 571px;
    z-index: 1;
    overflow: hidden;
    position: relative;
}
.title h2{
font-size:36px;
}
.company ul h4 {
    font-size: 50px;
    font-weight: 700;
    text-transform: capitalize;
    background: linear-gradient(180deg, #5EB34D 0%, #3C7847 91.67%, rgba(255, 255, 255, 0.00) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.sea_img {
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 50%;
}
.seafaring li button h5 {
    color: #111;
    font-size: 12px;
    font-weight: 500;
    width: calc(100% - 100px);
    margin: 0;
}
.client_img {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    overflow: hidden;
}
.client_content p {
    color: #FFF;
    font-size: 20px;
    font-weight: 500;
}
.our_team {
    border-radius: 20px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    justify-content: space-between;
    flex-direction: column;
}
.service_bnner .banner_content h2 {
    font-size: 50px;
    font-weight: 700;
    color: #111111;
}

.service_bnner .banner_content .h1 {
    font-size: 50px;
    font-weight: 700;
    color: #111111;
}

.service_bnner .banner_content .h1 {
    font-size: 50px;
    font-weight: 700;
    color: #111111;
}
.service_bnner img {
    margin-bottom: -35%;
    height: 400px;
    margin-left: -90px;
}
.clients ul li span {
    /* display: block; */
    background: #5eb34d;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 110px;
    min-height: 110px;
}
.procedure .procedure_info .text-block .title h2 {
    font-size: 20px;
    line-height: 30px;
    color: #013434;
    text-align: center;
}
.footer_logo p {
    color: #272727;
    font-size: 14px;
    font-weight: 500;
    margin: 30px 0;
}

footer .footer_item li a {
    color: #272727;
    text-decoration: none;
    font-weight: 500;
    text-align: left;
    margin: 12px 0;
    display: block;
    font-size: 14px;
}
footer .footer_item h4 {
    margin-bottom: 15px;
    color: #111;
    font-size: 17px;
    font-weight: 500;
}
.expertise_bnner h2 {
    font-size: 50px;
    font-weight: 700;
    bottom: 30px;
    z-index: 1;
    position: absolute;
    text-align: center;
    width: 100%;
}
.del_data h4 {
    color: #111;
    font-size: 40px;
    font-weight: 400;
}
.expertise_list .nav-pills h5 {
    font-size: 11px;
    font-weight: 400;
    color: #272727;
}
.exper_content h3 {
    font-size: 30px;
    font-weight: 500;
}
.stor_list .nav-pills {
    width: 48%;
    display: block;
    border-right: 1px solid #DFDFDF;
}
.stor_list div#pills-tabContent {
    width: 46%;
}
.stor_list .story_content h4 {
    font-size: 34px;
    margin-bottom: 40px;
    font-weight: 500;
}
.btn_global_white {
    background: #fff;
    color: #000;
    margin-bottom: 10px;
}
.work_page .client_content p {
    color: #272727;
    font-size: 20px;
    font-weight: 500;
}
section.high_bnner .banner_content h2 {
    font-size: 47px;
    font-weight: 700;
}
.footer_top h4 {
    color: #111;
    text-align: center;
    font-size: 50px;
    font-weight: 400;
}
.position-relative {
    position: relative!important;
    width: 60%;
}
.del_img_main {
    width: 38%;
    position: relative;
}
.position-relative.footer {
    width: 100%;
}
section.vendor_bnner .banner_content h2 {
    font-size: 50px;
    font-weight: 700;
}
.values .position-relative {
    position: relative!important;
    width: 100%;
}


}










@media (max-width: 992px){
    .service_bnner img {
    margin-bottom: -36%;
    height: 400px;
    margin-left: -69px;
}
.service_bnner .btn_global {
    position: absolute;
    top: 0px;
    right: 160px;
}    
    
    
    
    
    .side_menu{
        display:inline-block;
    }
    header  .navbar-brand img {
        height: 60px;
    }
    header.sticky  .navbar-brand img {
        width: 100px;
    }
        header {
        padding: 8px 0;
    }
    .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: #fff;
        /*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:block;
        /*transform: translateY(0);*/
    }
    header .menu a {
        color: #000 !important;
    }
    
    header  .menu ul {
        display: block;
    }
    header  .menu ul {
        display: block;
    }
    .menu li {
        margin: 0;
    }
    .logo img {
        height: 32px;
        width: auto;
    }

    .logo{
        margin-right: 15px;
    }
    
    .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);
    }
    
    .main_menu {
    position: fixed;
    right: -80%;
    width: 65%;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: -1px 0px 24px 0px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(20px);
    height: 100vh;
    z-index: 2;
    top: 0px;
    transition: 1s;
    padding: 40px 60px;
    display: grid;
    place-content: space-between;
}
    
    
    
    
    
    
     
    .custom_container {
        padding: 0 4%;
    }
    .section {
        padding: 40px 0;
    }
    .title h2 {
        font-size: 24px;
    }
    .title p {
        font-size: 14px;
    }
    
    section.main_bnner .banner_content h2 {
        font-size: 24px;
    }
    section.main_bnner .banner_content p {
        font-size: 14px;
        width: 100%;
    }
    
    section.main_bnner .container-fluid{
        height: 100%!important;
    }
    section.main_bnner .row{
        height: 100%!important;
    position: relative;
    }
    section.main_bnner {
        height: auto;
    }
    section.main_bnner .banner_content {
        padding: 0 4%;
        position: relative;
        width: 90%;
        text-align: center;
    }
    section.main_bnner .swiper-slide-active .banner_content{
        left: 0%;margin:auto;
    }
    section.main_bnner img {
        margin-bottom: 40px;
        height: 300px;
    }
    
    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-bottom-bar .justify-content-between {
        flex-wrap: wrap;
    text-align: center;
    }
    footer h4 {
        margin-bottom: 10px;
        margin-top: 10px;
    }
    .footer_menu li a {
        font-size: 15px !important;
    }
    .footer-bottom-bar .align-items-center{
        margin: auto;
    }
    
    
    
    
    .company  {
        text-align: center;
    }
    .company .pe-5 {
        padding-right: 0rem!important;
    }
    .company ul h4 {
        font-size: 24px;
    }
    .company ul p {
        font-size: 14px;
    }
    .company ul {
        flex-wrap: wrap;
        margin-top: 0;
    }.company ul li {
        width: 50%;
        margin-bottom: 20px;
    }
    .seafaring li.nav-item {
        width: 50%;
        margin-bottom: 10px;
    }
    .seafaring .sea_detail {
        width: 100%;
        height: auto;
        margin-bottom: 0;
    }
    .seafaring .sea_content {
        position: unset;
        width: 100%; 
         transform: translateY(0%); 
        color: #000;
    margin-top: 10px;
    }
    .seafaring .sea_detail img {
        border-radius: 20px;
    }
    .seafaring .sea_detail:before {
        content: none;
    }
    .seafaring .sea_content p {
        font-size: 14px;
        margin: 10px 0px;
    }
    .seafaring {
        margin-bottom: 0px;
    }
    .seafaring .tab-content {
         height: auto; 
    }
    .seafaring .tab-content>.tab-pane {
        display: none;
        position: unset;
    }
    .seafaring .tab-content>.active {
        display: block;
    }
    
    .seafaring .sea_content h3 {
        font-size: 24px;
    }
    
    
    
    
    .swiper-slide.swiper-slide-active .advantage_content{
        background: linear-gradient(342deg, #5EB34D 12.4%, #3C7847 126.17%);
        color: #fff;
    }
    
    #advantage_slider .swiper-slide.swiper-slide-active .advantage_content img {
        opacity: 1;
    }
    
    
    .col-md-12.d-inline-flex {
        flex-wrap: wrap;
    }
    .title.w-50 {
        width: 100% !important;
    }
    
    
    
    /*.client_img {
        width: 50%;
        margin: 0 auto -25px;
        height:420px;
    }*/
   .client_img{ width: 400px;
    margin: 0 auto -25px;
    height: 400px;
    border-radius: 50%;
    overflow:hidden;
   }
    #client_slider .swiper-slide {
        flex-wrap: wrap;
        display: inline-flex;
        column-gap: 25px;
        flex-direction: column-reverse;
    }
    .client_content {
        padding: 40px 25px 25px;
        width: 100%;
    }
    
    .client_content .qout_des {
        font-size: 90px;
    }
    .client_content p {
        font-size: 14px;
    }
    .client_content h6 {
        font-size: 16px;
    }
    
    .GET .get_content h4 {
        font-size: 16px;
        min-height: auto;
    }
    .GET a {
        margin-bottom: 20px;
    }
    .get_content {
        width: 100%;
    }
    .footer_top h4 {
        font-size: 32px;
    }.footer_top {
        height: 380px;
    }
    .our_team {
    border-radius: 20px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    justify-content: space-between;
    flex-direction: column;
   }
   .service_bnner2 img {
    width: 100%;
    height: 40vh;
    object-fit: cover;
    position: relative;
    z-index: 1;
   }
   .offset-1 {
    margin-left:0 !important;
}
.clients ul{
    display: flex;
    list-style: none;
    padding: 0;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.clients ul li {
    display: flex;
    gap: 20px;
    width: 47%;
    justify-content: center;
    align-items: center;
}
.feature .feature-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 100%;
    gap:10px;
}
.highlights .highlights-block .highlights-info {
    margin: 20px;
    width: 28%;
    min-height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 18px;
}
#blog-body img{
    width:100%;
    height:650px;
    object-fit:cover;
    overflow:hidden;
}
section.high_bnner .banner_content {
    position: absolute;
    width: 77%;
    top: 14%;
    z-index: 0;
    color: #000;
    left: 8%;
}
.high_bnner {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 428px;
}
.contact_detail.vendor .vendor_card {
    border-radius: 15px;
    padding: 60px 80px;
    margin-top: -134px;
    background: linear-gradient(107deg, #EAF1F4 -2.57%, #F3EDDF 87.55%);
}
.detail_item {
    width: 47%;
    border-radius: 15px;
    background: linear-gradient(107deg, #EAF1F4 -2.57%, #F3EDDF 87.55%);
    padding: 30px 30px;
}
.contact_details .accordion-body .loac_img {
    width: 50%;
    overflow: hidden;
    border-radius: 20px;
    height: 250px;
}
.contact_details .accordion-body .location_details {
   padding-right: 0; 
}
.blog_slider_img{
    width:46%;
}
.drilling ul {
    display: flex;
    list-style: none;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 90px;
}
.cert_bnner .banner_content {
    position: absolute;
    width: 77%;
    top: 34%;
    z-index: 10;
    color: #fff;
    left: 8%;
}
.cert_item {
    width: 33%;
    margin-top: 20px;
    transition: 0.6s;
    border-right: 1px solid #BDBDBD;
    padding: 20px;
}
.high_point .title {
    width: 53%;
    padding-right: 40px;
}
.value_item img {
    transition: .6s;
    /* transform: translateX(-100%); */
    opacity: 1;
    height: 50px;
    object-fit: contain;
    width: 50px;
    filter: grayscale(1);
}
.value_item h4 {
    font-size: 24px;
    font-weight: 700;
}
.value_item p {
    font-size: 11px;
    font-weight: 500;
}
.value_item.value_item4 {
    bottom: -72px;
    left: 75%;
}
.value_item.value_item5 {
    bottom: -33px;
    left: 47%;
    transform: translateX(-50%);
}
.value_item.value_item6 {
    bottom: -45px;
    left: 0%;
}
.service_bnner .banner_content h2 {
    font-size: 50px;
    font-weight: 700;
    color: #111111;
}

.service_bnner .banner_content .h1 {
    font-size: 50px;
    font-weight: 700;
    color: #111111;
}
.stor_list div#pills-tabContent {
    width: 60%;
}
.exper_content {
    position: absolute;
    right: 0%;
    top: 50%;
    background: #fff;
    border-radius: 20px 0 0 20px;
    padding: 30px 40px;
    text-align: left;
    transform: translateY(-50%);
    width: 43%;
    transition: 0.6s;
}
.Delivery_page .position-relative {
    position: relative!important;
    width: 60%;
}
/*journey page css*/
.journey_banner img{
    width:100%;
    object-fit:contain;
}
.timeline_content h4{
    font-size:28px;
}
/*.timeline_sec svg {*/
/*    position: absolute;*/
/*    width: 100%;*/
/*    left: -12%;*/
/*    top: 0px;*/
/*}*/
.timeline_img {
    width: 40%;
}
.timeline_content {
    width: 85%;
}
.timeline_content2 {
    width: 50%;
}
.timeline_content2 .timeline_content{
    width:100%;
}
.timeline_data {
    position: relative;
    margin-bottom: 90px;
}
.timeline_data:nth-child(3) .timeline_img {
    height: 220px;
    margin-left: -8%;
    margin-top: 2%;
}
.timeline_data:nth-child(3) {
    margin-left: -15%;
    margin-bottom: 0px;
    margin-top: -14%;
}
.timeline_data:nth-child(4) {
    justify-content: end;
    margin-right: 0%;
    margin-bottom: -45%;
}
.timeline_data:nth-child(5) {
    margin-left: -23%;
    align-items: start;
    margin-top: 50%;
}
.timeline_data:nth-child(6) {
    justify-content: end;
    margin-right: 15%;
    margin-bottom: 8%;
    margin-top: 0%;
}
.timeline_data:nth-child(7){
    margin-right:5%;
}
section.privacy-banner .banner-content {
    position: absolute;
    width: 50%;
    top: 50%;
    z-index: 0;
    color: #000;
    left: 8%;
    transform: translateY(-50%);
}

.privacy .text-block h1,
.privacy .text-block h2,
.privacy .text-block h3,
.privacy .text-block h4,
.privacy .text-block h5, 
.privacy .text-block h6 {
    color: #111;
    font-size: 24px;
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 10px;
}
section.privacy-banner .banner-content h2 {
    font-size: 30px;
    font-weight: 700;
}

}


@media only screen and (max-width: 760px) {
    .service_bnner {
    width: 100%;
    min-height: 195px;
    display: flex;
    align-items: flex-start;
    padding-bottom: 40px;
    padding-top: 40px;
    position: relative;
}
.service_bnner .btn_global {
    position: absolute;
    right: 195px;
    top: 96px;
}    
    
    
.service_bnner .banner_content h2 {
    font-size: 30px;
    font-weight: 700;
    color: #111111;
}

.service_bnner .banner_content .h1 {
    font-size: 30px;
    font-weight: 700;
    color: #111111;
}
.service_bnner .banner_content p {
    font-size: 10px;
    color: #111111;
    width: 80%;
    font-weight: 600;
}
.service_bnner img {
    margin-bottom: -24%;
    height: 136px;
}  
.value_main_title ul {
    padding: 0;
    display: flex;
    margin-top: 40px;
    list-style: none;
    column-gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}
.drilling ul {
    display: flex;
    list-style: none;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 30px;
    flex-wrap: wrap;
}
.vendor .vendor-block {
    display: flex;
    flex-wrap: wrap;
    /* align-items: center; */
    justify-content: center;
    align-items: center;
}
.vendor .vendor-block .vendor-info {
    width: 100%;
    min-height: 100%;
    background: #fff;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 20px;
}
.highlights .highlights-block .highlights-info {
    margin: 20px;
    width: 100%;
    min-height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 18px;
}
.blog_page .banner_content p {
    width: 100%;
    padding-right: 0; 
}
.banner_content h2 {
    font-weight: 700;
    text-transform: capitalize;
    font-size: 32px;
}
#blog-body img{
    width:100%;
    height:350px;
    object-fit:cover;
    overflow:hidden;
}
section.high_bnner .banner_content h2 {
    font-size: 30px;
    font-weight: 700;
}
.sec_content .job_details ul {
    display: inline-flex;
    list-style: none;
    padding: 0;
    gap: 40px;
    flex-direction: column;
}
.contact_detail.vendor .vendor_card {
    border-radius: 15px;
    padding: 25px 20px;
    margin-top: 0px;
    background: linear-gradient(107deg, #EAF1F4 -2.57%, #F3EDDF 87.55%);
}
section.vendor_bnner .banner_content h2 {
    font-size: 30px;
    font-weight: 700;
}
section.vendor_bnner .banner_content {
    position: absolute;
    width: 95%;
    top: 16%;
    z-index: 10;
    color: #fff;
    left: 50%;
    transform: translateX(-50%);
}
.connect_msg a {
    border-radius: 50px;
    border: 1px solid #5EB34D;
    background: #ECF8EA;
    color: #272727;
    font-size: 18px;
    font-weight: 600;
    padding: 8px 9px;
}
.detail_item {
    width: 100%;
    border-radius: 15px;
    background: linear-gradient(107deg, #EAF1F4 -2.57%, #F3EDDF 87.55%);
    padding: 30px 30px;
}
.contact_details .accordion-body {
    padding: 0;
    display: flex;
    column-gap: 60px;
    padding-bottom: 25px;
    flex-wrap: wrap;
}
.contact_details .accordion-body .loac_img {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    height: 275px;
}
.refer-block{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}
.refer_content {
    width: 100%;
    text-align: center;
}
.refer_icon {
    width: 50%;
    text-align: center;
}
.story_bnner h2 {
    font-size: 30px;
    font-weight: 700;
}
.stor_bg {
    width: 100%;
    height: 230px;
    position: relative;
    overflow: hidden;
}
.policy_page ul li {
    width: 100%;
    margin-bottom: 20px;
    color: #272727;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
}
.mission_vission .mission_title {
    padding-left: 0px; 
    margin-bottom: 50px;
}
.inner_bnner .banner_content h2 {
    font-weight: 700;
    text-transform: capitalize;
    font-size: 30px;
}
.inner_bnner .banner_content {
    position: absolute;
    width: 80%;
    bottom: 10%;
    z-index: 0;
    /*z-index: 10;*/
    color: #fff;
    left: 50%;
    text-align: center;
    transition: 1s;
    transform: translateX(-50%);
}
.inner_bnner .banner_content p {
    font-size: 16px;
    font-weight: 600;
}
.mission_vission .row {
    margin: 0px;
    border-radius: 15px;
    padding: 20px;
    background: radial-gradient(84.83% 412.86% at 86% 59.22%, rgba(249, 235, 211, 0) 9.69%, rgba(249, 235, 211, 0.794698) 35.84%, #F9EBD3 49.08%, #EAF2F4 100%);
}
.our_team_content h4 {
    font-size: 24px;
    font-weight: 500;
}
.mission_vission .mission_title h4 {
    font-size: 24px;
    font-weight: 500;
}
.inner_bnner {
    width: 100%;
    height: 458px;
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    overflow: hidden;
}
.heritage_img {
    width: 90%;
    height: 394px;
    overflow: hidden;
    border-radius: 20px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
}
.csr_bnner h2 {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    width: 100%;
}
.csr_bnner .csr_content {
    top: 151px;
    z-index: 1;
    position: absolute;
    width: 80%;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
}
.blog_slider_content {
    width: 100%;
    /*height:100%;*/
}
.blog_slider_img{
    width: 100%; 
    height:auto;
}
.main_menu {
    position: fixed;
    right: -156%;
    width: 97%;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: -1px 0px 24px 0px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(20px);
    height: 100vh;
    z-index: 2;
    top: 0px;
    transition: 1s;
    padding: 40px 60px;
    display: grid;
    place-content: space-between;
}
 /*about page value section css*/
 .value_list {
    padding: 0;
    margin-bottom: 0;
    height: auto;
    display: flex;
    flex-direction: column;
}
 
 
 
.value_list img.value_img1 {
    width: 100%;
    display: none;
}
.value_svg {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
}
.value_item {
    position: static; 
    display: flex;
    align-items: center;
    width: 100%;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 3rem;
    left: 0px !important;
    bottom: 0px !important;
    transform: translateX(0%) !important; 
}
/* .value_item.value_item1 {
    top: 0px;
    width: 100%;
    height: auto;
    left:31%;
}
.value_item.value_item2 {
     left: 0;
    top: 20px;
    transform: translateX(0%); 
     left:31%;
}
.value_item.value_item3 {
    top: 35px;
    left: 0;
     left:31%;
}
.value_item.value_item4 {
    top: 65px;
    left: 0;
      left:31%;
}
.value_item.value_item5 {
    left: 0; 
    transform: translateX(0); 
    top: 100px;
     left:31%;
}
.value_item.value_item6 {
    top: 172px;
     left:31%;
} */
section.high_bnner .banner_content {
    position: absolute;
    width: 77%;
    top: 20%;
    color: #000;
    left: 8%;
    z-index: 0;
}
.clients ul li {
    display: flex;
    gap: 20px;
    width: 100%;
    justify-content: center;
    align-items: center;
}
.maintenance .maintenance-area {
    margin-top: -60px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.maintenance .maintenance-area .maintenance-info {
    width: 50%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.solutions .feature-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.work_page .client_content p {
    color: #272727;
    font-size: 16px;
    font-weight: 500;
    text-align:justify;
}
.join_card .title {
    flex-direction: column;
    padding-left: 25px;
    padding: 10px;
    height: 100%;
    padding-right: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    text-align: left;
}
.cert_bnner {
    position: relative;
    overflow: hidden;
    width: 100%;
    background: #5EB34D;
    height: 400px;
}
.cert_bnner .banner_content {
    position: absolute;
    width: 77%;
    top: 26%;
    z-index: 0;
    color: #fff;
    left: 8%;
}
.cert_bnner img {
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: -50%;
    height: 400px;
    filter: brightness(100);
}
.cert_page h6 {
    color: #111;
    font-size: 20px;
    font-weight: 500;
    text-transform: capitalize;
    width: 80%;
    margin: 0 auto 60px;
}
.cert_item {
    margin-top: 10px;
    width: 99%;
    transition: 0.6s;
    border-right: none;
    padding: 20px;
}
.service_bnner2 h2 {
    font-size: 24px !important;
    font-weight: 400 !important;
}
.service_bnner .banner_content {
    width: 80%;
}
.pe-5 {
     padding-right: 0 !important; 
}
.high_point .title {
    width: 100%;
    padding-right: 0px; 
}
.high_point_img {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
}
.high_point .title:nth-child(even) {
    padding-left: 0px;
    padding-right: 0;
}
.client_img {
    width: 250px;
    margin: 0 auto -25px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
}
section.main_bnner img{
    width:100%;
    object-fit: cover;
}

section.main_bnner .banner_content p{
    margin-top: 0px;
}

.title p {
    font-size: 14px;
    text-align: justify;
}
.mission_vission .mission_title p {
    text-align: justify;
}
.our_team_content p {
    text-align: justify;
}
.list-country h5 {
    font-size: 16px;
}
.latest_blog .blog_content p {
    text-align: justify;
}
div#blog-body p{
    text-align:justify;
}
.blog_slider_content p{
  text-align:justify;  
}
section.high_bnner:before {
    width: 103%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    content: '';
    background: linear-gradient(90deg, #FFFFFF 7.02%, rgba(255, 255, 255, 0.88488) 42.7%, rgba(255, 255, 255, 0.730196) 58.11%, rgba(255, 255, 255, 0) 82.26%);
    left: 0;
    top: 0;
}
.for_main_news.nav-pills {
    border-radius: 70px;
    background: #3E3E3E;
    display: flex;
    overflow: hidden;
    padding: 10px;
    flex-direction: column;
    padding-left: 44px;
}
.for_main_news.nav-pills .nav-link{
    color: #000;
    background: #efefef;
    margin-bottom:5px;
}
.refer p {
    text-align:justify;
}
.service_bnner2 .service-editor p{
    text-align:justify;
}
.vendor .text-block p{
    text-align:justify;
}
.procedure .elementor-widget-container{
  text-align:justify;  
}
.operation .text-block p{
    text-align:justify;
}
.workshop .description-info p{
   text-align:justify; 
}
.policy_content p{
   text-align:justify; 
}
.policy_content h4{
    font-size:24px;
}
.high_item:nth-child(even){
   flex-direction: column-reverse;
}
.journey_banner img{
    width:100%;
    height:auto;
    object-fit:contain;
}
.del_data h4{
    font-size:24px;
}
.expertise_list .nav-pills {
    width: 99%;
    justify-content: center;
    margin: auto;
    column-gap: 40px;
    flex-wrap: wrap;
}
.expertise_list .nav-pills h5 {
    font-size: 10px;
    font-weight: 400;
    color: #272727;
}
.expertise_list .nav-pills li.nav-item {
    width: 20%;
}
.expertise_list .nav-pills {
    width: 100%;
    justify-content: center;
    margin: auto;
    display: flex;
    column-gap: 40px;
    flex-wrap: wrap;
}
.exper_content {
    position: absolute;
    right: 0%;
    /*top: 621px;*/
    left: 10px;
    background: #fff;
    border-radius: 20px 0 0 20px;
    padding: 30px 40px;
    text-align: left;
    transform: translateY(-50%);
    width: 100%;
    transition: 0.6s;
}
.expertise_bnner h2 {
    font-size: 30px;
    font-weight: 700;
    bottom: 30px;
    z-index: 1;
    position: absolute;
    text-align: center;
    width: 100%;
}
.exper_content h3 {
    font-size: 24px;
    font-weight: 500;
}
.stor_list .nav-pills {
    width: 100%;
    display: block;
    border-right: none;
}
.stor_list div#pills-tabContent {
    width: 100%;
}
.stor_list .story_content h4 {
    font-size: 24px;
    margin-bottom: 40px;
    font-weight: 500;
}
.stor_list .story_content p {
    text-align: justify;
}
.approach{
    flex-direction:column-reverse;
}
.del_img_main {
    width: 100%;
    position: relative;
}
.Delivery_page .position-relative {
    position: relative!important;
    width: 100%;
}
/*journey page css*/
#main_slider1 .swiper-slide:before{
    display:none;
}
/*.timeline_content {*/
/*    border-radius: 20px;*/
/*    border: 1px solid #272727;*/
/*    text-align: center;*/
/*    padding: 20px;*/
/*    width: 99%;*/
/*    display: grid;*/
/*    place-content: center;*/
/*    position: relative;*/
/*}*/
.timeline_content2 {
    width: 99%;
}
.timeline_img {
    height: 300px;
    position: relative;
    overflow: hidden;
    width: 100%;
}
.timeline_img img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.timeline_img2 {
    width: 100%;
    height: 300px;
}
.timeline_img2 img{
    width:100%;
    height:100%;
    object-fit:contain;
    overflow:hidden;
}
.timeline_data:nth-child(2) {
    justify-content: end;
    margin-top: -20%;
}
.timeline_data:nth-child(2) .timeline_content {
    background: linear-gradient(99deg, #F1EEE3 4.96%, #F5EDDC 94.41%);
    margin-bottom: 20px;
    width: 90%;
    margin-left: 5%;
}
.timeline_data:nth-child(3) .timeline_content {
    background: linear-gradient(95deg, #EAF1F4 3.36%, #ECF0EF 96.09%);
    width: 90%;
    margin-left: 11%;
}
.timeline_data:nth-child(4) .timeline_content {
    background: linear-gradient(90deg, #F0EFE7 0%, #F3EDDF 100%);
    width: 99%;
    margin-left: 0%;
}
.timeline_data:nth-child(5) .timeline_content {
    background: linear-gradient(90deg, #EAF1F4 0%, #EBF1F1 100%);
    width: 99%;
    margin-left: 0%;
}
.timeline_data:nth-child(6) .timeline_content {
    background: linear-gradient(99deg, #F0EFE7 4.96%, #F3EDDF 94.41%);
    width: 99%;
    margin-left: 0%;
}
.timeline_data:nth-child(3) .timeline_img {
    height: 220px;
    margin-left: 12%;
    margin-bottom: 5%;
}
.timeline_data:nth-child(4) {
    justify-content: end;
    margin-right: 0%;
    margin-bottom: 0%;
}
.timeline_data:nth-child(5) {
    margin-left: 0%;
    align-items: start;
    padding-top: 0px;
    margin-top: 5px;
}
.timeline_data:nth-child(6) {
    justify-content: end;
    margin-right: 0%;
    margin-bottom: 43px;
}
.privacy-banner {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 428px;
}
.privacy .text-block p {
    margin-bottom: 15px;
    text-align: justify;
}
section.privacy-banner .banner-content {
    position: absolute;
    width: 70%;
    top: 21%;
    z-index: 0;
    color: #000;
    left: 8%;
    transform: translateY(-50%);
}
.seafaring li.nav-item {
    width: 100%;
    margin-bottom: 10px;
}

.section.feature {
    padding-top: 0px;
}

.benefits .benefit-block{
    column-gap: 10px;
}

.benefits .benefit-block .text-block {
    width: calc(100% - 110px);
}

.section.advantages {
    padding-top: 0px;
}

section.solutions {
    padding-top: 0px;
}

.btn_global.mt-5 {
    margin-top: 25px !important;
}

.GET .text-center.mt-5 {
    margin-top: 0px !important;
}

.GET a {
    margin-bottom: 30px;
}

.values.pt-5 {
    padding-top: 0px !important;
}

.value_item.value_item6 {
    margin-bottom: 0px;
}

.about_company hr {
    margin: 40px 0 !important;
}

.about_company .col-md-4 img {
    margin-top: 30px;
}

.mission_vission .mis_img {
    margin-bottom: 25px;
}

.value_item p {
    font-size: 14px;
}

.mission_vission .mission_title {
    margin-bottom: 40px;
}

.mission_vission .mission_title:last-child {
    margin-bottom: 20px;
}

.list-country h5 {
    width: 50%;
}

.list-country.mt-5 {
    margin-top: 25px !important;
}

.country_data {
    margin-top: 25px;
}

.details_count {
    padding: 12px 24px;
    padding-bottom: 30px;
}

.value_main_title {
    padding-top: 0px;
}

.value_main_title ul {
    margin-top: 30px;
    row-gap: 30px;
}

.service_bnner2 .custom_container:before {
    display: none;
}

.service_bnner2 img{
    margin-bottom: 30px;
}

.service_bnner2 .service-editor > h2 {
    font-size: inherit !important;
}

.maintenance .maintenance-area {
    column-gap: 20px;
    row-gap: 20px;
}

.maintenance .maintenance-area .maintenance-info{
    width: calc(50% - 10px)
}

.procedure .col-lg-4.col-md-6 {
    margin-bottom: 30px;
}

.procedure .procedure_info {
    margin-top: 30px;
}

.footer_down a img {
    width: 100px;
}

.footer_down img {
    height: 30px;
}

.footer_down a {
    display: inline-block;
}

.footer_down {
    margin-bottom: 20px;
}

footer .footer-bottom-bar .d-inline-flex {
    padding-bottom: 0px;
}

footer .footer-bottom-bar p, footer .footer-bottom-bar p a, .footer-bottom-bar a{
    font-size: 14px;
}

.footer-bottom-bar .copy a{
    margin-left: 0px;
    margin-right: 0px;
    padding: 0px;
}

.latest_blog .blog_content .date:empty {
    display: none !important;
}

.latest_blog .col-md-6.mt-3{
    margin-bottom: 30px;
}

#single-blog img{
    height: auto;
}

.join_sec .col-md-12.mb-5 {
    margin-bottom: 25px !important;
}

.work_img+p {
    margin-bottom: 25px;
}

.join_card img {
    padding-right: 0px;
}

.join_card .title {
    padding-right: 0px;
    padding: 16px;
}

.crew_img {
    margin-bottom: 30px;
}

.opening_content .sec_content {
    margin: 0px;
    padding: 20px;
}

.sec_list .nav-item button {
    padding: 10px;
    text-align: center;
    margin: 0px;
}

.opening_sec 
 .sec_list h6 {
    text-align: center;
    padding: 0px;
}

.opening_sec .nav-pills{
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 0px !important;
}

.opening_sec .first_list button{
    margin-bottom: 10px;
    padding: 10px 15px;
}

.opening_sec .first_list.nav-pills{
    padding: 0px;
}

.high_bnner .nav-pills{
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 10px !important;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.for_main_news.nav-pills {
    column-gap: 5px;
    row-gap: 5px;
}

.for_main_news.nav-pills .nav-link{
    padding: 8px 10px;
    min-width: 100px;
}

.csr_data .title h5 {
    font-size: 24px;
    margin-top: 24px;
}

}

@media only screen and (max-width: 1100px) and (min-width: 992px) {
    
}

.service_bnner2 .service-editor h4 {
    margin-bottom: 15px;
}
.refer p {
   margin-bottom:25px;
}
.service_bnner2 .service-editor p{
   margin-bottom:25px;
}
.vendor .text-block p{
   margin-bottom:25px;
}
.operation .text-block p{
   margin-bottom:25px;
}
.workshop .description-info p{
   margin-bottom:25px;
}
.policy_content p{
   margin-bottom:25px;
}
#single-blog h1, #single-blog h2, #single-blog h3, #single-blog h4, #single-blog h5,#single-blog h6 {
    margin: 18px 0px;
}
#single-blog p {
    margin: 12px 0;
}
#single-blog img {
    width: 100%;
    max-height: 600px;
    object-fit: contain;
    margin: 22px 0;
}


.privacy h1, .privacy h2, .privacy h3, .privacy h4, .privacy h5,.privacy h6 {
    margin: 18px 0px;
}
.privacy  p {
    margin: 12px 0;
}
.privacy ul {
    list-style: none;
    padding: 0;
}
.privacy ul li{
    margin: 6px 0;
}
.privacy ul li i {
    margin-right: 5px;
}

.latest_blog .blog_content h4 {
    word-break: break-word;
}

.latest_news .latest_news_data a{
    color: #000;
    text-decoration: none;
}

.service_bnner .banner_content p,.service_bnner .banner_content p * {
    font-family: inherit !important;
    font-size: inherit !important;
    font-weight: inherit !important;
}



/*new*/

.mobile-menu {
    display: none;
}

@media screen and (max-width: 992px){

    .main_menu ul.social {
    margin-top: 40px;
}
   /* span.menu-toggle-drop {
    display: none;
}*/

.menu-item-has-children span.menu-toggle-drop {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 40px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

ul.sub-menu .menu-item-has-children span.menu-toggle-drop {
    height: 38px;
}

.menu-item-has-children {
    position: relative;
}

ul.sub-menu {
    display: none;
}

/*//////*/

span.menu-toggle-drop i {
    transition: 0.3s ease;
}

span.menu-toggle-drop.open i {
    transform: rotate(180deg);
}
    .desktop-menu {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .main_menu {
        padding: 30px 40px;
         display: block;
    }

    ul.sub-menu {
    position: static;
    left: 0px;
    top: 0px;
    visibility: visible;
    display: none;
    opacity: 1;
    width: 100%;
    padding: 0px !important;
    padding-left: 12px !important;
    box-shadow: none;
    background: none;
    height: auto;
    transform: translate(0px, 0px);
}

.main_menu.side_menu .menu .sub-menu a {
    margin: 0px;
    font-size: 18px;
    padding: 8px 0px;
    padding-left: 8px;
    border-bottom: 1px solid #dddddd;
    font-weight: 500;
}

li.menu-item.menu-item-has-children > a::after {
    display: none;
}

.main_menu.side_menu .menu .sub-menu .sub-menu a {
    font-size: 16px;
    font-weight: 400;
    padding-left: 12px;
}

.main_menu.side_menu .menu a {
    margin: 0px;
    padding: 16px 0px;
    line-height: 1.2;
    border-bottom: 1px solid #ddd;
   /* font-family: 'DM Sans';*/
	font-family: "Lato", sans-serif;
	
    font-weight: 600;
}

.page-id-4245 .main_menu.side_menu .menu a{
	font-family: 'Helvetica', Arial, sans-serif; 

}


.main_menu.side_menu .menu {
    margin-top: 50px;
    max-height: calc(100vh - 220px);
    overflow: auto;
    padding-right: 30px;
}


.service_bnner .btn_global {
    position: static;
    left: 0px;
    top: 0px;
    margin-top: 10px;
}

.service_bnner .banner_content {
    width: 100%;
}

.service_bnner .d-flex {
    flex-wrap: wrap;
}

.service_bnner img {
    position: absolute;
    margin: 0px;
    right: 0px;
    bottom: -100px;
}

.service_bnner .banner_content p {
    width: 100%;
}
span.menu-toggle-drop i {
        color: #68b545;
 }




}



/**/


@media screen and (max-width: 767px){
    .main_menu {
        padding: 30px 28px;
        padding-right: 5px;
    }
	.news_relative{
		width:100% !important;
	}
	.latest_news{
		width:100%;
	}
}




.deskt_menu ul {
    display: inline-block;
    padding: 0;
    list-style: none;
    margin: 0;
    margin-top: 0;
}

.deskt_menu ul li {
    display: inline-block;
	    position: relative;
}

ul.desk_sub_menu {
    position: absolute;
    top: 100%;
    width: 100px;
    width: 300px;
    text-align: left;
    background: #ffff;
    border-top: 2px solid #57b33e;
    padding: 10px 20px;
    text-align: left;
	    left: 0;
    box-shadow: 3px 5px 4px #a7a7a7;
	display:none;
}
li.has_sub_menu:hover ul.desk_sub_menu {
    display: block;
}

li.has_sub_menu::after {
    content: "+";
    position: absolute;
    right: 7px;
    top: 29px;
    transform: translateY(-50%) rotate(0deg);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    color:#272727;
    font-size: 16px;
    font-weight: bold;
    line-height: 22px;
    text-align: center;
    transition: all 0.3s ease;
}

.deskt_menu ul li.has_sub_menu {
    margin-right: 10px;
}
 
li.has_sub_menu:hover::after {
    content: "−";
    transform: translateY(-50%) rotate(180deg);
}





.deskt_menu ul li ul.desk_sub_menu li a {
    text-align: left;
}


ul.desk_sub_menu li a {
    text-align: left;
    border-bottom: 1px solid #e9e9ea;
    color: var(--text-heading-color);
    padding: 12px 0 !important;
    transition: all 0.4s 
ease-out 0s;
    font-size: 15px;
    line-height: 25px;
    text-transform: capitalize;
    position: relative;
    text-align: left;
    display: block;
    width: 100%;
}

ul.desk_sub_menu li {
    width: 100%;
}

ul.desk_sub_menu li > a::after {
    position: absolute;
    content: "";
    background: #57b33e;
    width: 0;
    transition: all 0.4s  ease-out 0s;
    height: 1px;
    left: 0;
    bottom: -1px;
}  

ul.desk_sub_menu li:hover > a::after {
    width: 100%;
}



.newmenu_01 {
    width: 80%;
    text-align: right;
}


.deskt_menu ul li a {
    display: block;
    text-decoration: none;
    transition: 0.4s;
    text-transform: capitalize;
    text-align: center;
    font-weight: 600;
    color: #272727;
    margin-right: 30px;
	    padding: 15px 0 18px;
}

.toggle_btn span {
    display: block;
    background: #444444;
    width: 7px;
    height: 7px;
    float: left;
    margin-right: 2px;
    margin-bottom: 2px;
    border-radius: 100%;
    display: inline-block;
}
.toggle_btn {
    width: 30px;
    float: right;
	    margin-top: 17px;
}

.deskt_menu ul li:last-child a {
    margin-right: 0;
}

.sidemenuNew {
    position: fixed;
    top: 0;
    z-index: 99;
    right: 0; 
    width: 100%;
    min-height: 100vh;
    text-align: right;
	visibility: hidden;
	opacity: 0;
	width:0%;
	 transition: all 0.8s ease-out;
}

.sidemenuNew.kk {
    visibility: visible;
    opacity: 1;
    width: 100%;
}

.close_btnb button#close_menu {
    cursor: pointer;
    position: absolute;
    top: 40px;
    right: 40px;
    transform: rotate(0);
    z-index: 999;
    display: inline-flex
;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #57b33e;
    border-radius: 50%;
    color: #fff;
    border: none;
}

.sidemenlist .close_btnb {
    position: absolute;
    top: 0;
    z-index: 999;
    top: 0;
    right: 0;
}



.sidemenuNew:before {
    content: '';
    background: #ccc;
    transition: all 0.8s ease-out;  
    top: 0; 
     right: 0;  
    width: 0;   
    transition: all 0.8s ease-out;
    visibility: hidden;
    z-index: 99999;
    background: rgba(24, 24, 24, 0.6);
    width:0%;
    display: block;
    height: 100%;
    position: absolute;
    z-index: 9999999;
}

.sidemenuNew.kk:before {
        visibility: visible;
    width: 100%;
}

.sidemenuNew .sidemenlist .sidemenuNew_logo a.custom-logo-link {
    filter: brightness(0) invert(1);
}



.sidemenuNew .sidemenlist {
    width: 460px;
    height: 100%;
    right: 0;
    overflow: auto;
    transform: translateX(100%);
    top: 0;
    background: #131313;
    opacity: 0;
    visibility: hidden;
    z-index: 999999;
    transition: transform 0.5s ease 0.4s;
    padding: 80px 40px;
    scrollbar-width: none;
    left: 0;
    float: right;
    text-align: left;
    z-index: 9999999999;
    position: relative;
	height:100vh;  
    overflow: auto;
}

.sidemenuNew.kk .sidemenlist{
	    background: #121213;
		opacity: 1;
    visibility: visible;
    transform: translateX(0%);
}


.sidemenuNew .sidemenlist ul {
    list-style: none;
    padding: 0;
	    padding: 40px 0;
}

.sidemenuNew .sidemenlist ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    display: block;
    margin-bottom: 11px;
    font-weight: bold;
}

.sidemenuNew .sidemenlist ul li ul {
    padding: 0;
    padding-left: 40px;
	    display: none;
}

.sidemenuNew .sidemenlist ul li:hover > ul{
	 display: block;
}

.sidemenuNew .sidemenlist ul li {
    position:relative
}

.sidemenuNew .sidemenlist ul li.mo_has_child {
  position: relative;
  padding-right: 35px; /* space for the icon */
}

/* Circle container */
.sidemenuNew .sidemenlist ul li.mo_has_child::after {
    content: "+";
    position: absolute;
    right: 7px;
    top: 15px;
    transform: translateY(-50%) rotate(0deg);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    line-height: 22px;
    text-align: center;
    transition: all 0.3s ease;
}

/* On hover — change to minus and animate rotation */
.sidemenuNew .sidemenlist ul li.mo_has_child:hover::after {
  content: "−";   
  transform: translateY(-50%) rotate(180deg);
}

.sidemenuNew .sidemenlist ul li a:hover {
    color: #57b33e;
}


.icon__box-item {
    display: flex
;
    flex-direction: flex;
    align-items: center;
    text-align: center;
	    margin-bottom: 15px;
}

.icon__box-item-icon {
    margin-bottom: 20px;
    position: relative;
    display: inline-flex
;
    border-radius: 50%;
    transition: 0.4s;
    width: 70px;
    height: 70px;
    align-items: center;
    justify-content: center;
    background: #626364;
    background: #02010100;
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 0px 0px 0px 0px;
    margin: 0px 18px 0px 0px;
    padding: 0px 0px 0px 0px;
}

.icon__box-item-content {
    text-align: left;
}

.icon__box-item-content h4 {
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: #FFFFFFCC;
    margin: 0;
	    margin-bottom:3px;
} 

.icon__box-item-content p a {
    box-shadow: none;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    line-height: 32px;
    color: #FFFFFF;
    margin: 0px auto 0px auto;
}

.icon__box-item-icon i.fa-solid {
    color: #57B33E;
    font-size: 30px;
    transition: 0.4s;
    line-height: 0;
}

 

.side_bttom_menu h6 {
       font-size: 22px;
    font-weight: bold;
    color: #fff;
    margin: 20px 0 30px;
}

.side_bttom_menu {
    border-top: 1px solid #353535;
    padding-top: 0;
    position: static;
    position: absolute;
    bottom: 0;
    width: 100%;
}


        .jobsearch{ width: 40%;position: absolute;margin: 0 auto;bottom: 195px;right: 0;left: 0;    border: 2px solid #5EB34D;border-radius: 50px;}
        .jobsearch form input{ background: #ffffffdb;width: 100%;padding: 12px;border-radius: 50px;border: none;padding-left: 20px;font-weight: 500;font-size: 16px;padding-right: 60px;}
        .jobsearch form i{position: absolute;right: 0px;top: 0px;padding: 16px 20px;cursor: pointer;font-size: 18px;color: #5eb34d;}
