/* header */
.header {
    display: block;
    width: 100%;
    position: fixed;
    z-index: 99;
    top: 0;
    padding: 10px 0px;
}
.menu_dark header {
    background: #FFFFFF;
}
.header .item-left{
	flex:0 0 17%;
}
.header .logo a{
	font-size: 30px;
	color:#000000;
	font-weight: 700;
	text-decoration: none;
}
.header .item-center {
    flex: 0 0 77%;
}
.header .item-right{
	flex:0 0 5%;
	display: flex;
	justify-content: flex-end;
}
.header .item-right a{ 
     text-decoration: none;
     font-size: 16px;
     color:#555555;
     display: inline-block;
     margin-left: 10px;
     transition: color 0.3s ease;
}
.v-center {
    align-items: center;
}
.logo img {
    width: 170px;
}
.menu-main {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: right;
}
.header .menu > ul > li {
    display: inline-block;
    line-height: 50px;
    margin-left: 40px;
}
.header .menu > ul > li > a {
    font-size: 17px;
    font-weight: 400;
    color: #fff;
    position: relative;
    text-transform: capitalize;
    transition: color 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}
.header .menu > ul > li > a img {
    opacity: .7;
}
.sectionfixed .menu > ul > li > a img {
    filter: brightness(0);
}
.header .menu > ul > li .sub-menu{
	position: absolute;
	z-index: 500;
	background-color:#ffffff;
	box-shadow: -2px 2px 70px -25px rgba(0,0,0,0.3); 
	transition: all 0.5s ease;
	margin-top:25px;
	opacity:0;
	visibility: hidden;
}
@media(min-width: 992px){
.header .menu > ul > li.menu-item-has-children:hover .sub-menu{
	margin-top: 0;
	visibility: visible;
	opacity: 1;
}
}
.header .menu > ul > li .sub-menu > ul > li{
	line-height: 1;
}
.menu_dark .menu > ul > li > a {
    color: #000;
}
.menu_dark .menu > ul > li > a:hover {
    color: #000000a8!important;
}
.menu_dark  .menu > ul > li > a img {
    opacity: .7;
    filter: brightness(0);
}
.header .menu > ul > li .sub-menu > ul{
    padding: 0;
    margin: 0;
    list-style: none;
}
.header .menu > ul > li .sub-menu > ul > li > a {
    display: inline-block;
    padding: 12px 20px;
    font-size: 17px;
    color: #555555;
    transition: color 0.3s ease;
    text-decoration: none;
    text-transform: capitalize;
    width: 100%;
    border-bottom: 1px solid #0000000a;
}
.header .menu > ul > li .sub-menu > ul > li > a:hover{
    background: #dd8012;
}
.header .menu > ul > li .single-column-menu {
    min-width: 180px;
    max-width: 490px;
    margin-left: -30px;
}
.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li{
   line-height: 1;
   display: block; 
}
.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a {
	padding:10px 0;
	display: inline-block;
	font-size: 15px;
	color:#555555;
	transition: color 0.3s ease;
}
.header .menu > ul > li .sub-menu.mega-menu{ 
    left: 50%;
    transform: translateX(-50%);	
}

.header .menu > ul > li .sub-menu.mega-menu-column-4{
  max-width: 1100px;
  width: 100%; 	
  display: flex;
  flex-wrap: wrap;
  padding:20px 15px;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item{
  flex:0 0 25%;
  padding:0 15px;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item .title{
	font-size: 16px;
	color:#F7941E;
	font-weight: 500;
	line-height: 1;
	padding:10px 0;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item.text-center .title{
	text-align: center;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item img{
	max-width: 100%;
	width: 100%;
	vertical-align: middle;
	margin-top: 10px;
	height: 300px;
	object-fit: cover;
}
.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a:hover,
.header .menu > ul > li .sub-menu > ul > li > a:hover{
	color:#ffffff;
}

.mobile-menu-head,
.mobile-menu-trigger{
	display: none;
}

/*responsive*/
@media(max-width: 1026px){

	.header .item-center{
		order:3;
		flex:0 0 100%;
	}
	.v-center{
		justify-content: space-between;
	}
	.header .mobile-menu-trigger{
		display: flex;
		height: 30px;
		width: 30px;
		margin-left: 15px;
		cursor: pointer;
		align-items: center;
		justify-content: center;
	}
	.menu_dark .header .mobile-menu-trigger span{
		background: #000;
	}
	.menu_dark .header .mobile-menu-trigger span:before,
	.menu_dark .header .mobile-menu-trigger span:after{
		background: #000;
	}
	.header .mobile-menu-trigger span{
		display: block;
		height: 2px;
		background-color: #fff;
		width: 24px;
		position: relative;
	}
	.header .mobile-menu-trigger span:before,
	.header .mobile-menu-trigger span:after{
		content: '';
		position: absolute;
		left:0;
		width: 100%;
		height: 100%;
		background-color: #fff;
	}
	.sectionfixed .mobile-menu-trigger span:before,
	.sectionfixed .mobile-menu-trigger span:after{
		background-color: #000;
	}
	.sectionfixed .mobile-menu-trigger span{
		background: #000;
	}
	.header .mobile-menu-trigger span:before{
		top:-6px;
	}
	.header .mobile-menu-trigger span:after{
		top:6px;
	}
	.header .item-right{
		align-items: center;
	}

	.header .menu{
		position: fixed;
		width: 320px;
		background-color:#ffffff;
		left:0;
		top:0;
		height: 100%;
		overflow: hidden;
		transform: translate(-100%);
		transition: all 0.5s ease;
		z-index: 1099;
	}
	.header .menu.active{
	   transform: translate(0%);	
	}
	.header .menu > ul > li{
		line-height: 1;
		margin:0;
		display: block;
	}
	.header .menu > ul > li > a{
		line-height: 50px;
		height: 50px;
		padding:0 50px 0 15px;
		display: flex;
		border-bottom: 1px solid rgba(0,0,0,0.1);
	}
	.header .menu > ul > li > a iconify-icon{
		position: absolute;
		height: 50px;
		top:0;
		right: 0;
		text-align: center;
		transform: rotate(-90deg);
		font-size: 22px;
	}
	.header .menu .mobile-menu-head{
		display: flex;
		height: 50px;
		border-bottom: 1px solid rgba(0,0,0,0.1);
		justify-content: space-between;
		align-items: center;
		position: relative;
		z-index: 501;
		position: sticky;
		background-color: #ffffff;
		top:0;
	}
	.header .menu .mobile-menu-head .go-back{
		height: 50px;
		width: 50px;
		border-right: 1px solid rgba(0,0,0,0.1);
		cursor: pointer;
		line-height: 50px;
		text-align: center;
		color:#000000;
		font-size: 24px;
		display: none;
	}
	.header .menu .mobile-menu-head.active .go-back{
		display: block;
	}
	.header .menu .mobile-menu-head .current-menu-title{
		font-size: 15px;
		font-weight: 500;
		color:#000000;
	}
	.header .menu .mobile-menu-head .mobile-menu-close{
	    height: 50px;
		width: 50px;
		border-left: 1px solid rgba(0,0,0,0.1);
		cursor: pointer;
		line-height: 50px;
		text-align: center;
		color:#000000;	
		font-size: 25px;
	}
    .header .menu .menu-main {
        height: 100%;
        overflow-x: hidden;
        overflow-y: auto;
        display: block;
    }
    .header .menu > ul > li > a {
    color: #000000a8;
}
.header .menu > ul > li > a img {
    filter: brightness(0);
}
	.header .menu > ul > li .sub-menu.mega-menu,
	.header .menu > ul > li .sub-menu{
		visibility: visible;
		opacity: 1;
		position: absolute;
		box-shadow: none;
		margin:0;
		top:0;
		left:0;
		width: 100%;
		height: 100%;
		padding-top: 50px;
		max-width: none;
		min-width: auto;
		display: none;
		transform: translateX(0%);
		overflow-y: auto;
	}
.header .menu > ul > li .sub-menu.active{
	display: block;
}
@keyframes slideLeft{
	0%{
		opacity:0;
		transform: translateX(100%);
	}
	100%{
	    opacity:1;
		transform: translateX(0%);	
	}
}
@keyframes slideRight{
	0%{
		opacity:1;
		transform: translateX(0%);
	}
	100%{
	    opacity:0;
		transform: translateX(100%);	
	}
}
	.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item img{
		margin-top:0;
	}
	.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item.text-center .title{
		margin-bottom: 20px;
	}
	.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item.text-center:last-child .title{
		margin-bottom:0px;
	}
	.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item{
		flex: 0 0 100%;
        padding: 0px;
	}
	.header .menu > ul > li .sub-menu > ul > li > a,
	.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a{
		display: block;
	}
	.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul {
		margin-bottom: 15px;
	}
	.menu-overlay{
		position: fixed;
		background-color: rgba(0,0,0,0.5);
		left:0;
		top:0;
		width: 100%;
		height: 100%;
		z-index: 1098;
		visibility: hidden;
		opacity:0;
		transition: all 0.5s ease;
	}
	.menu-overlay.active{
	  visibility: visible;
	  opacity:1;	
	}
    .header .menu > ul > li .sub-menu > ul > li > a {
    padding: 18px 20px;
    border-bottom: 1px solid rgb(0 0 0 / 10%);
}
.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a:hover, .header .menu > ul > li .sub-menu > ul > li > a:hover, .header .item-right a:hover, .header .menu > ul > li:hover > a {
    color: #ffffff;
    background: #F7941E;
}
}



/* banner */

#banner {
    height: 100vh;
    overflow: hidden;
    position: relative;
    transition: all .5s linear;
}
.sectionfixed {
    background: #fff;
    box-shadow: rgb(99 99 99 / 6%) 0px 2px 8px 0px;
    transition: all .5s linear;
}
.sectionfixed .menu > ul > li > a {
    color: #000000!important;
}
#banner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner_caption {
    position: absolute;
    top: 0;
    left: 0;
/*     background: #0000003d; */
	background:#00000052;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: end;
    padding-bottom: 100px;
}
.banner_caption p {
    color: #e9e9e9;
    font-size: 38px;
    font-weight: 400;
}
.header_title {
    color: #FFFFFF;
    font-size: 65px;
    width: 570px;
    line-height: 60px;
    font-weight: 400;
}
.discover_more_btn {
    background: #F7941E;
    text-decoration: none;
    border-radius: 6px;
    color: #000000;
    display: flex;
    align-items: center;
    width: fit-content;
    padding: 10px 20px;
    gap: 10px;
    font-size: 17px;
    margin-top: 25px;
     transition: all .5s linear;
     will-change: transform;
}
.discover_more_btn:hover {
    background: #de7b03;
    transform: scale(1.03);
    transition: all .5s linear;
    will-change: transform;
}
.discover_more_btn iconify-icon{
    font-size: 20px;
}
.hm_about_left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hm_about_right a {
    margin-top: 30px;
}
.hm_about_right {
    padding-left: 35px;
}
#counter {
    display: inline-block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
}
#counter li::after {
    position: absolute;
    content: '';
    right: 0;
    width: 1px;
    height: 30px;
    background: #00000026;
    top: 50%;
    transform: translate(-50%, -50%);
}
#counter li:last-child::after{
    display: none;
}
#counter li {
    width: 25%;
    float: left;
    text-align: center;
    position: relative;
}
#counter span.plus:after {
  content: "M+";
  display: inline-block;
}
.count {
    color: #000000;
    font-size: 38px;
}
.hm_about_left{
    position: relative;
}
.location_dot {
    width: 14px;
    height: 14px;
    background: #FF9922;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-animation 2s infinite;
    font-size: 10px;
}
.map_locations {
    position: absolute;
    top: 55%;
    left: 65%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 40px;
}
.location_dot {
    position: absolute;
    transition: all .5s linear;
}
.location_dot:hover{
    transform: scale(1.2);
    transition: all .5s linear;
}
.location_dot1 {
    left: -6px;
    top: 10px;
}
.location_dot2 {
    top: 0;
    left: 10px;
}
.location_dot3 {
    top: 13px;
    left: 30px;
}
.location_dot4 {
    bottom: 0;
    right: 0;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px #ff98225e;
  }
  100% {
    box-shadow: 0 0 0 10px #ff982200;
  }
}
#counter li p {
    margin: 0;
    font-size: 20px;
}
.client_logo_wrap {
    height: 120px;
    border-radius: 6px;
    border: 1px solid #00000012;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .5s linear;
}
.clients_left {
    overflow: hidden;
}
.client_logo_wrap:hover {
    border-color: #ec881321;
    transition: all .5s linear;
}
.client_logo_wrap img {
    max-width: 140px;
    max-height: 140px;
    object-fit: contain;
}
.clients_right {
    padding-left: 80px;
    padding-right: 0;
    position: relative;
}
.clients_right::after {
    position: absolute;
    left: 70px;
    top: 0;
    height: 100%;
    width: 100px;
    background: linear-gradient(90deg, #ffffff, transparent);
    position: absolute;
    content: '';
    z-index: 9;
}
.news_events_thumb {
    height: 215px;
    border-radius: 6px;
    overflow: hidden;
    min-width: 350px;
    position: relative;
}
.news_events_thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s linear;
}
/* .category {
    background: #FFFFFF;
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 5px 15px;
    border-radius: 6px;
    font-size: 16px;
    transition: all .5s linear;
    color: #000000;
} */
 .category{
    background: #f7941e;
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 3px 13px;
    border-radius: 6px;
    font-size: 16px;
    transition: all .5s linear;
    color: #ffffff;
}
.news_events_right ul li a:hover .category{
    background: #F7941E;
    transition: all .5s linear;
    color: #fff;
}
.news_events_right ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.news_events_right ul li{
    display: flex;
    gap: 40px;
}
.news_events_right {
    padding-left: 70px;
}
.date {
    color: #F7941E;
    font-size: 16px;
}
.news_events_details {
    display: grid;
    align-content: space-between;
}
.news_events_details p{
    margin: 0;
}
.news_events_right ul li {
    border-bottom: 1px solid #00000014;
    padding: 30px 0px;
}
.news_events_right ul li a{
    display: flex;
    gap: 40px;
    text-decoration: none;
}
.news_events_right ul li a:hover img {
    transform: scale(1.05);
    transition: all .5s linear;
}
.news_events_right ul li:first-child{
    padding-top: 0;
}
.news_events_right ul li:last-child{
    padding-bottom: 0;
    border-bottom: 0;
}
footer {
    background: #000000;
    padding: 70px 0px;
    position: relative;
    overflow: hidden;
}
footer .container {
    position: relative;
    z-index: 9;
}
.ftr_bg {
    width: 100%;
    position: absolute;
    bottom: -5px;
    opacity: 0.06;
    z-index: 1;
    filter: grayscale(0.5) invert(1);
}
.ftr_title {
    color: #FFFFFF;
    font-size: 18px;
    margin-bottom: 20px;
}
.ftr_menu a {
    text-decoration: none;
    color: #ffffffa3;
    font-size: 15px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    transition: all .5s linear;
}
.ftr_menu a:hover {
    color: #f7941e;
    text-decoration: underline;
    transition: all .5s linear;
}
.get_in_touch h2 {
    margin: 0;
}
.get_in_touch p {
    color: #FFFFFFB2;
    font-size: 22px;
    font-family: "satoshi-light";
}
.cta_form {
    margin-top: 50px;
}
.cta_input_wrap label sub {
    color: #D90D10;
    position: relative;
    top: -1px;
    margin-left: 3px;
}
.cta_input {
    border-radius: 6px;
    border: 1px solid #181818;
    background: #FFFFFF0F;
    padding: 10px 15px;
    width: 100%;
    outline: none;
    box-shadow: none;
    color: #fff;
    font-size: 16px;
}
.cta_input:focus {
    border-color: #f7941e38;
}
.cta_input_wrap label {
    color: #D4D4D4B2;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
}
.wpcf7-not-valid-tip {
    font-size: 16px!important;
}
.cta_form .wpcf7-response-output {
    color: #fff;
}
.cta_input_wrap {
    margin-bottom: 10px;
}
.submit_btn {
    background: #F7941E;
    border: 0;
    border-radius: 6px;
    color: #000000;
    display: flex;
    align-items: center;
    width: fit-content;
    padding: 10px 20px;
    gap: 10px;
    font-size: 17px;
    margin-top: 25px;
}
.cta_form textarea {
    height: 100px;
    resize: none;
}
.ftr_left {
    padding-right: 60px;
}
.ftr_menu_wrap {
    padding-left: 115px;
    margin-top: 65px;
}
.ftr_menu {
    margin-bottom: 50px;
}
.copy_right {
    background: #000000;
    border-top: 1px solid #ffffff14;
    text-align: center;
    padding: 15px;
}
.copy_right p {
    margin: 0;
    font-size: 12px;
    color: #ffffff8c;
}
#industries_we_serve .head_centre p {
    width: 1000px;
    margin: auto;
}
.industry_wrap {
    height: 400px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    transition: all .5s linear;
	    cursor: pointer;
}
.industry_title {
    position: absolute;
    bottom: 8px;
    left: 50%;
    background: #F6F6F6;
    border-radius: 6px;
    padding: 10px 20px;
    width: 95%;
    transform: translate(-50%, 0%);
    transition: all .5s linear;
}
.industry_title p {
    font-size: 17px;
    margin-bottom: 0;
    margin-top: 10px;
    height: 0px;
    display: none;
    line-height: 22px;
    transition: all .5s linear;
}
.industry_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s linear;
}
.industry_wrap:hover .industry_title{
    background: #F7941E;
    transition: all .5s linear;
}
.industry_wrap:hover .industry_title p {
    height: 100%;
    display: block;
    transition: all .5s linear;
}
.industry_wrap:hover img {
    transform: scale(1.05);
    transition: all .5s linear;
    opacity: .7;
}
.industry_wrap .industry_title p{
    transition: all .5s linear;
}
.counter {
    margin-top: 50px;
}
.products_title {
    color: #000000;
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 18px;
}
.hm_products_list_wrap span{
    background: #d7d7d773;
    border-radius: 6px;
    min-width: 160px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .5s linear;
}
.hm_products_list_wrap:hover span {
    background: #d7d7d73d;
    transition: all .5s linear;
}
.hm_products_list_wrap span img {
    max-width: 100px;
    max-height: 80px;
    object-fit: contain;
}
.hm_products_list_wrap {
    background: #FFFFFF;
    border-radius: 6px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 22px;
    transition: all .5s linear;
}
.hm_products_list_wrap:hover {
    background: #ffffff;
    box-shadow: rgb(0 0 0 / 8%) 0px 7px 29px 0px;
    transition: all .5s linear;
}
.hm_products_left .nav-pills .nav-link {
    border-radius: 0;
    color: #00000080;
    font-size: 22px;
    font-weight: 400;
    border-bottom: 1px solid #0000000f;
    padding: 12px 0px;
    text-align: left;
    position: relative;
}
.hm_products_left .nav-pills .nav-link:hover {
    color: #F7941E;
}
.hm_products_left .nav-pills .nav-link.active {
    background-color: transparent;
    color: #F7941E !important;
    overflow: hidden;
}
.hm_products_left .nav-pills .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #F7941E;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

/* Active tab fill animation */
.hm_products_left .nav-pills .nav-link.active::after {
    animation: fillLine 1s linear forwards;
    transform: scaleX(1);
}
@keyframes fillLine {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}
.hm_products_left .nav {
    margin: 50px 0 0 !important;
    width: 250px;
}
.hm_products_right {
    padding-left: 80px;
}
.hm_products {
    border-radius: 95px 95px 0px 0px;
    position: relative;
}
.news_events {
    border-radius: 95px 95px 0px 0px;
}
/* contact page */
.contact_image{
    height: 430px;
    border-radius: 6px;
}
.contact_image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
        border-radius: 10px;
}
.social_media{
    display: flex;
    align-items: center;
    gap: 10px;
}
.social_media a{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #69696985;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    text-decoration: none;
    font-size: 20px;
    transition: all .5s linear;
}
.social_media a:hover{
    background: #F7941E;
    color: #fff;
    transition: all .5s linear;
    border-color: #F7941E;
}
.contact_details a {
    color: #000000;
    text-decoration: none;
    font-size: 20px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
.contact_details a span{
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #F7941E1A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F7941E;
}
.contact_left p {
    width: 430px;
}
.contact_details {
    margin: 40px 0px 50px;
}
.follow_us h3 {
    color: #000000;
    font-size: 20px;
    margin-bottom: 20px;
}
#branch_locations .head_centre p {
    width: 650px;
    margin: auto;
}
.branch_locations {
    margin-bottom: 50px;
}
.flag {
    max-width: 50px;
    max-height: 50px;
    object-fit: contain;
}
.branch_locations .title_medium {
    margin: 20px 0px;
}
.news_list_wrap {
    text-decoration: none;
    margin-bottom: 50px;
    display: inline-block;
    width: 100%;
    transition: all .5s linear;
}
.news_list_wrap:hover img {
    transform: scale(1.05);
    transition: all .5s linear;
    opacity: .8;
}
.news_list_content .title_medium {
    margin-bottom: 20px;
}
.latest_news_img {
    height: 450px;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    transition: all .5s linear;
}
.latest_news_right {
    margin-left: 50px;
}
.latest_news {
    text-decoration: none;
    margin-bottom: 80px;
    display: inline-block;
    width: 100%;
}
.latest_news_right .date {
    margin-bottom: 20px;
    display: inline-block;
}
.latest_news_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s linear;
}
.news_list_img{
    position: relative;
    height: 300px;
    border-radius: 6px;
    overflow: hidden;
}
.news_list_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s linear;
}
.news_list_content {
    margin-top: 30px;
}
.legacy {
    width: 94%;
    margin: auto;
}
.legacy_right img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.mask-wrap {
    background: #000;
    position: relative;
    /* margin-bottom: 20px; */
    -webkit-mask-image: url(../images/value.png);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-image: url(../images/value.png);
    mask-repeat: no-repeat;
    mask-size: contain;
    height: 320px;
}
.mask-wrap video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mask-wrap {
  filter: drop-shadow(0 0 20px rgba(255,118,0,0.6));
}
.legacy_right h3 {
    margin-top: 5px;
}
.load_more_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}
.load_more {
    border: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000000;
    background: transparent;
    font-size: 20px;
}
.spinner {
    animation: spin 9s linear infinite
}

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}
.legacy_right {
    padding-left: 60px;
}
.mobile_btn {
    display: none;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}
#industry_slider .owl-nav button {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000b0 !important;
    background: #ffffff;
    font-size: 22px;
    transition: all .5s linear;
}
#industry_slider .owl-nav button:hover{
    background: #f7941e;
    color: #fff;
    transition: all .5s linear;
}
#industry_slider .owl-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    position: absolute;
    width: 103%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.countryname {
    /*display: none;*/
    background-color: #FF9922;
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 13px;
    line-height: 15px;
    width: max-content;
        color: #000;
}
.location_dot4 .in {
    /*display: inline-block;*/
    position: absolute;
    top: -10px;
    left: 20px;
}
.location_dot3 .ae {
    display: inline-block;
    position: absolute;
        top: 20px;
    left: -10px;
}
.location_dot2 .qa {
    display: inline-block;
    position: absolute;
    top: -30px;
}
.location_dot1 .sa {
    display: inline-block;
    position: absolute;
        top: -4px;
    left: -90px;
}
/* timeline */
.timeline_slider_wrap {
    background: #F7941E1A;
    border-radius: 6px;
        height: 450px;
    display: grid;
    align-content: space-between;
    padding: 20px 30px;
    position: relative;
}
.timeline_top p {
    font-size: 15px;
    line-height: 18px;
    opacity: 0;
    margin: 0;
}
#timeline_slider .timeline_slider_wrap.active p{
    opacity: 1;
}
.year {
    font-size: 36px;
    color: #000000;
     font-family: "satoshi-medium";
}
.timeline_top h4 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 15px;
}
.timeline_logo {
    max-width: 140px;
    max-height: 140px;
    position: relative;
    z-index: 9;
    background: #ffffff00;
    border-radius: 6px;
    padding: 5px;
	filter: brightness(0);
}
.timeline_img {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 240px;
    border-radius: 6px;
    object-fit: cover;
    object-position: center;
}
#timeline {
    position: relative;
    overflow: hidden;
}
.timeline_right .owl-stage-outer {
    overflow: visible;
}
#timeline_slider .owl-stage {
    display: flex;
    align-items: center;
}

#timeline_slider .timeline_slider_wrap {
    transition: all 0.4s ease;
    transform: scale(0.9);
}

#timeline_slider .timeline_slider_wrap.active {
    transform: scale(1);
    opacity: 1;

}
#timeline_slider .timeline_slider_wrap.active .timeline_img {
    bottom: 0;
}
#timeline_slider .timeline_slider_wrap.active {
    background: #F7941E;
}
#timeline_slider .timeline_slider_wrap.active .timeline_logo {
    background: #fff;
    opacity: 0;
}
.hm_products_left {
    position: sticky;
    top: 130px;
}
.ftr_menu .num_font {
    font-size: 14px;
}
.legacys {
    border-radius: 95px 95px 0px 0px;
}
.timeline_wrap {
    position: relative;
    overflow: hidden;
}
.news_list_content .date {
    margin-bottom: 20px;
    display: block;
}
#career_header .head_centre p {
    width: 830px;
    margin: 0 auto 20px;
}
.career_img {
    height: 430px;
    border-radius: 6px;
    overflow: hidden;
}
.career_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 10%;
}
.opening_jobs {
    border-radius: 0px 190px 0px 0px;
}
.job_points span {
    background: #E1E1E1;
    border-radius: 6px;
    padding: 5px 10px;
    color: #000000;
    font-size: 17px;
}
.job_points {
    display: flex;
    gap: 8px;
    margin: 15px 0px 20px;
}
.job_wrap {
    border-bottom: 1px solid #00000021;
    padding-bottom: 50px;
    margin-bottom: 50px;
}
.opening_jobs {
    padding-bottom: 30px;
}
.job_list .row {
    --bs-gutter-x: 100px;
}
.jobs {
    width: 96%;
    margin: auto;
}
.jobs_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}
.job_search {
    display: flex;
    gap: 12px;
    align-items: center;
}
.job_input {
    border: 1px solid #E1E1E1;
    border-radius: 6px;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 400px;
    background: #E1E1E130;
}
.job_input input {
    border: 0;
    outline: none;
    box-shadow: none;
    font-size: 18px;
    background: transparent;
    width: 100%;
}
.job_input input::placeholder{
    color: #0000005C;
}
.job_search select {
    border: 1px solid #E1E1E1;
    border-radius: 6px;
    padding: 7px 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #000000;
    font-size: 18px;
    background: #E1E1E130;
}
.jobs_head .common_title {
    margin: 0;
}
	.modal.right .modal-dialog {
		position: fixed;
		margin: auto;
		max-width: 775px;
		height: 100%;
		-webkit-transform: translate3d(0%, 0, 0);
		    -ms-transform: translate3d(0%, 0, 0);
		     -o-transform: translate3d(0%, 0, 0);
		        transform: translate3d(0%, 0, 0);
	}
.job_apply h3 {
    font-size: 24px;
    margin: 0;
    color: #000000;
    transition: all .5s linear;
    font-weight: 400;
}
.modal.right .modal-content {
    height: 100%;
    overflow-y: auto;
    border-radius: 0;
    border: 0;
}     
/*Right*/
	.modal.right.fade .modal-dialog {
		right:0;
		-webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
		   -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
		     -o-transition: opacity 0.3s linear, right 0.3s ease-out;
		        transition: opacity 0.3s linear, right 0.3s ease-out;
	}
	.modal.right.fade.in .modal-dialog {
		right: 0;
	}
    .modal.right .btn-close {
    width: 49px;
    height: 49px;
    border-radius: 50%;
    background: #ECECEC;
    opacity: 1;
    font-size: 20px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    position: absolute;
    right: 20px;
    top: 20px;
    transition: all .5s linear;
}
.modal.right .btn-close:hover {
    background: #f7941e;
    color: #000000;
    transition: all .5s linear;
}
.modal.right .btn-close:focus {
    box-shadow: none;
    opacity: 1;
}
.modal.right .modal-body {
    padding: 100px 50px;
}
.job_apply_bottom ul {
    padding: 0;
    margin: 25px 0px;
    list-style: none;
}
.job_apply_bottom ul li{
    color: #000000B2;
    font-size: 20px;
    font-weight: 400;
    position: relative;
    padding-left: 20px;
}
.job_apply_bottom ul li::after {
    position: absolute;
    content: '';
    left: 0;
    top: 10px;
    background-image: url(../images/star.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 12px;
    height: 12px;
}
.job_apply_top {
    border-bottom: 1px solid #0000001c;
    margin-bottom: 30px;
    padding-bottom: 20px;
}
.career_input_wrap label {
    color: #000000B2;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
}
.career_input {
    border-radius: 6px;
    border: oldlace;
    background: #F2F2F2;
    padding: 14px;
    width: 100%;
    outline: none;
    box-shadow: none;
    color: #000000;
    font-size: 16px;
}
.career_input_wrap label sub {
    color: #D90D10;
}
.job_aplication_form {
    margin-top: 50px;
}
.career_input_wrap textarea {
    height: 140px;
    resize: none;
}
.emptyimg img {
    width: 90px;
    height: 90px;
}
.career_input_wrap {
    margin-bottom: 15px;
}
.check_box label {
    display: flex;
    align-items: start;
    gap: 10px;
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    color: #000000B2;
}
.check_box label input {
    margin-top: 5px;
}
.check_box label input[type=checkbox] {
  accent-color: #020202;
}
.file_attachment {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000000B2
}
.file_attachment iconify-icon{
    color: #00000080;
    font-size: 20px;
}
.latest_news_right .common_btn {
    margin-top: 30px;
}
.blog_img {
    /*height: 390px;*/
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    margin: 50px 0px;
}
.blog_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.back_to_list {
    color: #000000B2;
    font-size: 18px;
    font-weight: 400;
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}
#blog_details .common_title {
    margin: 20px 0px;
}
.flex_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}
.related_news .news_list_wrap {
    margin: 0;
}
.related_news {
    border-radius: 0px 190px 0px 0px;
}
.who_we_are_description {
    margin-bottom: 50px;
}
.who_we_are_img {
    border-radius: 6px;
    overflow: hidden;
    height: 100%;
    margin-right: 30px;
}
.who_we_are_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mission_vision{
    margin-top: 50px;
}
.mission_vision .nav-link {
    color: #000000;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #DADADA;
    border-radius: 6px !important;
    padding: 10px;
}
.mission_vision .nav-link img {
    width: 25px;
}
.mission_vision .nav-link:hover{
    color: #000;
}
.mission_vision .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #000;
    background-color: #F7941E;
}
.mission_vision .nav-pills {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px !important;
}
.our_philosophy {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 9;
}
.our_philosophy_description {
    width: 600px;
}
#our_philosophy {
    overflow: hidden;
}
.philosophy_img {
    height: 600px;
    width: 100%;
    position: relative;
}
.philosophy_img::after {
    position: absolute;
    content: '';
    left: 50%;
    top: -90px;
    width: 140%;
    height: 200px;
    background: #f7f7f7;
    filter: blur(31px);
    transform: translate(-50%, 0%);
}
.philosophy_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.value_head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.value_head h3{
    margin: 0;
    font-size: 24px;
    color: #000000;
}
.value_head span {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background: #F7941E1A;
    display: flex;
    align-items: center;
    justify-content: center;
}
.value_head span img {
    max-width: 22px;
    max-height: 22px;
    object-fit: contain;
}
.value_wrap {
    margin-bottom: 60px;
}
.leader_img {
    height: 100%;
    border-radius: 6px;
    overflow: hidden;
}
.leader_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
}
.leadership_message_left p {
    font-size: 20px;
    line-height: 28px;
}
.leader_name {
    margin-top: 40px;
}
.leader_name h5 {
    color: #000000;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 0;
}
.leader_name span {
    color: #000000B2;
    font-family: "satoshi-light";
    font-size: 16px;
}
.small_title {
    color: #F7941E;
    font-size: 20px;
    font-weight: 400;
}
.leadership_message_left {
    width: 750px;
}
.our_team {
    margin-top: 100px;
}
.team_wrap {
    height: 380px;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
}
.team_wrap:hover img {
    transform: scale(1.05);
    transition: all .5s linear;
}
.team_wrap img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s linear;
    object-position: top;
}
.name_wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 80px 20px 20px 20px;
    background: linear-gradient(0deg, black, transparent);
    width: 100%;
}
.name_wrap h5 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 0;
}
.name_wrap span {
    color: #FFFFFFB2;
    font-family: "satoshi-light";
    font-size: 16px;
}
#career_header .head_centre {
    margin-bottom: 30px;
}
#values .row {
    --bs-gutter-x: 80px;
}
.our_philosophy_wrap {
    background: #fff;
    border-radius: 0px 80px 0px;
}
.leadership_message {
    border-radius: 80px 80px 0px 0px;
    background: #F7941E1A;
}
.sliderTab {
    position: relative;
    overflow: hidden;
    margin: 40px 0px 60px;
    padding: 0;
}
@media (max-width: 479px) {
  .sliderTab {
    width: 100%;
  }
}
.sliderTab .swiper-slide {
  padding: 0 11px;
  width: auto;
}
.sliderTab .swiper-slide a {
    transition: 0.25s;
    text-decoration: none;
}
.sliderTab .swiper-slide a .slide__nav:after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--color1);
  transform: translateX(-50%);
  transition: 0.25s;
}
.sliderTab .swiper-slide.on .slide__nav {
    color: #000000;
    background: #F7941E;
    border-color: #F7941E;
}
.sliderTab .swiper-slide.on .slide__nav:after {
  width: 100%;
}
.sliderTab .slide__nav {
    padding: 12px 30px;
    box-sizing: border-box;
    position: relative;
    display: flex;
    font-size: 18px;
    line-height: 1;
    color: #000000;
    transition: 0.25s;
    border: 1px solid #0000002E;
    border-radius: 6px;
    align-items: center;
    justify-content: center;
    font-weight: 400;
}
.sliderTab .slide__nav:hover {
    background: #F7941E;
    border-color: #F7941E;
}
.sliderTab .sliderTab__next,
.sliderTab .sliderTab__prev {
  position: absolute;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  width: 60px;
  height: 100%;
  transition: 0.25s;
}
.sliderTab .sliderTab__next.swiper-button-disabled,
.sliderTab .sliderTab__prev.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}
.sliderTab .sliderTab__next span,
.sliderTab .sliderTab__prev span {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 20px;
}
.sliderTab .sliderTab__next svg,
.sliderTab .sliderTab__prev svg {
  width: 20px;
  height: 20px;
}
.sliderTab .sliderTab__next {
  justify-content: flex-end;
  right: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, white 100%);
}
.sliderTab .sliderTab__next span {
  justify-content: flex-end;
}
.sliderTab .sliderTab__prev {
  justify-content: flex-start;
  left: 0;
  background: linear-gradient(90deg, white 0%, rgba(255, 255, 255, 0) 100%);
}
.sliderTab .sliderTab__prev span {
  justify-content: flex-start;
}

.sliderContent {
  width: 100%;
  overflow: hidden;
}
.sliderContent .swiper-slide .title {
  margin-bottom: 15px;
  font-size: 30px;
  text-align: center;
}
.sliderContent .swiper-slide .content {
  margin: 0 auto;
  max-width: 500px;
  font-size: 14px;
  line-height: 2;
  text-align: center;
}
.product_list_wrap {
    height: 280px;
    border-radius: 6px;
    background: #FFFFFF;
    display: inline-block;
    width: 100%;
    padding: 50px 30px;
    text-decoration: none;
    text-align: center;
    transition: all .5s linear;
}
.product_list_wrap:hover {
    background: #f7941e1a;
}
.product_list_wrap:hover{
    box-shadow: 10px 14px 24px 0px #00000008;
    transition: all .5s linear;
}
.product_list_wrap img {
    max-width: 200px;
    max-height: 200px;
    object-fit: cover;
        margin: 0 auto 20px;
}
.commitment_right {
    height: 380px;
    border-radius: 6px;
    overflow: hidden;
}
.commitment_right img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.commitment_left {
    margin-right: 70px;
}
.bg_light_yellow{
    background: #FFFBF6;
}
.service_support_right ul {
    padding: 0;
    list-style: none;
}
.service_support_right ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0000009c;
    font-size: 18px;
    line-height: 25px;
    font-family: "satoshi-regular";
    margin-bottom: 5px;
}
.service_support_right ul li span {
    width: 30px;
    height: 30px;
    background: #F7941E1A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service_support_left {
    position: relative;
    height: 520px;
    display: flex;
    align-items: end;
    overflow: hidden;
}
.service_support_left img {
    width: 100%;
    position: relative;
    overflow: hidden;
    z-index: 9;
	height: 100%;
	object-fit: cover;
}
/* .service_support_left img {
    width: 100%;
    position: relative;
    z-index: 9;
    height: 430px;
    object-fit: cover;
    object-position: left;
} */
.pulse {
    position: absolute;
    width: 600px;
    height: 600px;
    background: #f7941e40;
    border-radius: 50%;
    top: 40px;
    left: -150px;
    z-index: 1;
	display: none;
}

/* SECOND CIRCLE */

.pulse::before{
content:"";
position:absolute;
width:500px;
height:500px;
background:#f7941e60;
border-radius:50%;
top:50px;
left:50px;
}

/* THIRD CIRCLE */

.pulse::after{
content:"";
position:absolute;
width:400px;
height:400px;
background:#f9b25d;
border-radius:50%;
top:100px;
left:100px;
}
.pulse{
animation:pulseWave 4s infinite;
}

@keyframes pulseWave{

0%{
transform:scale(0.9);
opacity:.7;
}

50%{
transform:scale(1.08);
opacity:.4;
}

100%{
transform:scale(0.9);
opacity:.7;
}

}
.brands_wrapper:hover {
    opacity: 1 !important;
    box-shadow: rgb(0 0 0 / 8%) 0px 7px 29px 0px;
    transition: all .5s linear;
    border-color: transparent;
}
.brands_wrapper img {
    max-width: 160px;
    max-height: 160px;
    object-fit: contain;
    transition: all .5s linear;
}
.brands_wrapper:hover img {
    transform: scale(1.05);
    transition: all .5s linear;
}
.brands:hover .brands_wrapper {
    opacity: .6;
    transition: all .5s linear;
}
.brands_wrapper {
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #00000014;
    width: 100%;
    background: #ffffff;
    border-radius: 6px;
    margin-bottom: 20px;
}
.application_left ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.application_left ul li {
    background: #F6F6F6;
    border-radius: 6px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    margin-bottom: 20px;
    color: #000000;
    font-size: 22px;
    cursor: pointer;
    border: 1px solid #F6F6F6;
    transition: all .5s linear;
}
.application_left ul .active {
    background: #F7941E1A;
    border: 1px solid #F7941E;
    color: #E78715;
}
.application_left ul li:hover{
    background: #F7941E1A;
    border-color: #F7941E;
    color: #E78715;
    transition: all .5s linear;
}
.application_left ul li:hover img{
    filter: unset;
    transition: all .5s linear;
}
#application .common_title {
    margin-bottom: 50px;
}
.service_support_right {
    margin-left: 50px;
}
.application_left ul li img {
    filter: brightness(0);
    max-width: 32px;
    max-height: 32px;
    object-fit: cover;
    transition: all .5s linear;
}
.application_left ul .active img{
    filter: unset;
}

/* RIGHT CIRCLE */

.application_right {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 540px;
    position: sticky;
    top: 68px;
}
.main_circle {
    width: 340px;
    height: 340px;
    background: #f7941d;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #000;
    padding: 30px;
    z-index: 9;
}

.main_circle img {
    width: 60px;
    margin-bottom: 10px;
    filter: brightness(0);
}
.circle_btn {
    background: #fff;
    padding: 6px 20px;
    border-radius: 4px;
    font-size: 16px;
    text-decoration: none;
    margin-top: 10px;
    display: inline-block;
    color: #000000;
    border: 0;
}
#circle_title {
    font-size: 34px;
}
.ellipse {
    position: absolute;
    right: -50px;
    top: 0;
    height: 100%;
    object-fit: contain;
}
.next_application {
    width: 90px;
    height: 90px;
    border: 1px solid #F7941E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 110px;
    background: #fff;
}
.prev_application {
    width: 90px;
    height: 90px;
    border: 1px solid #F7941E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    right: 110px;
    background: #fff;
}
.application {
    border-radius: 0px 100px 0px 0px;
}
.main_circle {
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.main_circle.zoom {
    transform: scale(0.85);
    opacity: 0;
}
#legacy_header p {
    width: 600px;
    margin: auto;
}
/* MAIN LAYOUT */

.timeline_wrapper{
max-width:1100px;
margin:auto;
 overflow: hidden;
}

.timeline_content{
display:flex;
gap:100px;
margin-bottom:150px;
}

/* IMAGE */

.timeline_left {
    min-width: 475px;
    height: 350px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}
.timeline_left img{
width:100%;
height:100%;
object-fit:cover;
transition:.5s;
border-radius: 6px;
}
/* TEXT */

.timeline_year {
    font-size: 48px;
    color: #f7941e;
    margin-bottom: 60px;
}
.timeline_right h4 {
    margin: 0 0 10px;
}
.timeline_content .timeline_right p{
color:#666;
line-height:1.6;
}

/* NAV BUTTONS */
.timeline_right {
    position: relative;
    display: flex;
    align-items: center;
}
.timeline_nav {
    display: flex;
    gap: 10px;
    position: absolute;
    top: 0;
    right: 0;
}

.timeline_nav div {
    display: flex;
    background: #f7941e00;
    color: #000000;
    width: 36px;
    height: 36px;
    text-align: center;
    line-height: 36px;
    cursor: pointer;
    border-radius: 6px;
    align-items: center;
    justify-content: center;
    border: 1px solid #00000021 !important;
}
.timeline_nav div:hover {
    background: #f7941e;
    color: #fff;
    border-color: #f7941e;
}
/* YEAR SLIDER */

.timeline_slider{
position:relative;
padding-top:40px;
}

.timeline_slider:before{
content:"";
position:absolute;
top:0px;
left:0;
width:100%;
height:2px;
background:#e0a268;
}

/* YEAR ITEM */

.timeline_year_item{
text-align:center;
cursor:pointer;
}

.timeline_year_item span {
    display: block;
    margin-top: -60px;
    color: #888;
    font-weight: 700;
    font-size: 20px;
}

/* DOT */

.timeline_year_item:before {
    content: "";
    width: 22px;
    height: 22px;
    background: #FFC886;
    border-radius: 50%;
    display: block;
    margin: auto;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
}
.swiper {
    overflow: unset !important;
    height: 30px;
}
/* ACTIVE DOT */

.swiper-slide-active:before {
    background: #f7941e;
    width: 25px;
    height: 25px;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px #f7941e;
}
.swiper-slide-active span{
color:#000;
font-weight:600;
}

/* IMAGE ANIMATION */

.timeline_left img.fade{
opacity:.3;
transform:scale(.95);
}
#legacy_header .head_centre {
    margin: 0;
}
.product_slider .owl-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}
.product_slider .owl-nav button {
    width: 40px;
    height: 40px;
    font-size: 16px !important;
    background: #f7941e00 !important;
    border-radius: 6px;
    align-items: center;
    justify-content: center;
    display: flex;
    border: 1px solid #00000021 !important;
	transition: all .5s linear;
}
.product_slider .owl-nav button:hover{
	background: #f7941e!important;
	color: #fff!important;
	border-color: #f7941e!important;
	transition: all .5s linear;
}
.applications_mob ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.applications_mob ul li {
    background: #F6F6F6;
    border-radius: 6px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    margin-bottom: 20px;
    color: #000000;
    font-size: 18px;
    cursor: pointer;
    line-height: 18px;
}
.applications_mob ul li img {
    filter: brightness(0);
    max-width: 25px;
    max-height: 25px;
    object-fit: cover;
}
.applications_mob{
    display: none;
}
    .application_popup .modal-dialog {
        max-width: 970px;
    }
.appliction_img {
    height: 220px;
    border-radius: 6px;
    overflow: hidden;
    margin-right: 40px;
}
    .appliction_img img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .application_popup_wrap {
    padding: 60px;
}
.key_applictions {
    margin-top: 50px;
}
.key_application_list_wrap {
    background: #FFFBF6;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 20px;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    min-height: 300px;
}
.application_title {
    color: #000000;
    font-size: 20px;
    margin-bottom: 15px;
}
.key_application_list_wrap p {
    font-size: 16px;
    line-height: 20px;
    margin: 0;
}
.key_application_list_wrap img {
    max-width: 160px;
    max-height: 160px;
    object-fit: contain;
    margin: 0 auto 10px;
    display: block;
}
.key_applictions .common_title {
    margin-bottom: 50px;
}
.application_popup_wrap .btn-close {
    width: 60px;
    height: 60px;
    background: #EAEAEA;
    border-radius: 50%;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    padding: 0;
    position: absolute;
    right: 30px;
    top: 30px;
}
.para_bottom {
    margin-bottom: 0;
    margin-top: 20px;
}
.application_popup .modal-body {
    padding: 0;
}
.btn-close:focus{
    box-shadow: none;
}
.HomeSubsidiaries_loader__uvDpp .HomeSubsidiaries_face__dv1T3 {
    position: absolute;
    border-radius: 50%;
    border-style: solid;
    animation: HomeSubsidiaries_animate__fSwAg 3s linear infinite
}
.HomeSubsidiaries_loader__uvDpp .HomeSubsidiaries_face__dv1T3:first-child {
    width: 100%;
    height: 100%;
    color: #f18a00;
    border-color: currentColor transparent transparent currentColor;
    border-width: .2em .2em 0 0;
    --deg: -45deg;
    animation-direction: normal
}

.HomeSubsidiaries_loader__uvDpp .HomeSubsidiaries_face__dv1T3 .HomeSubsidiaries_circle__kAjhM {
    position: absolute;
    width: 50%;
    height: .1em;
    top: 50%;
    left: 50%;
    background-color: transparent;
    transform: rotate(var(--deg));
    transform-origin: left
}

.HomeSubsidiaries_loader__uvDpp .HomeSubsidiaries_face__dv1T3 .HomeSubsidiaries_circle__kAjhM:before {
    position: absolute;
    top: -4px;
    right: -4px;
    content: "";
    width: 6px;
    height: 6px;
    background-color: currentColor;
    border-radius: 50%;
    box-shadow: 0 0 2em,0 0 4em,0 0 6em,0 0 8em,0 0 10em,0 0 0 .5em rgba(255,255,0,.1)
}

@keyframes HomeSubsidiaries_animate__fSwAg {
    to {
        transform: rotate(1turn)
    }
}
.HomeSubsidiaries_loader__uvDpp {
    width: 140px;
    height: 140px;
    position: absolute;
}
.commitments {
    border-radius: 0px 100px 0px 0px;
}
.brands{
    border-radius: 0px 100px 0px 0px;
}
.modal-content {
    border: revert-layer;
    border-radius: 6px;
}
.our_business_header .common_title {
    width: 500px;
}
.business_img {
    height: 160px;
    border-radius: 6px;
    overflow: hidden;
    width: 270px;
}
.business_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.busness_count {
    color: #000;
    font-size: 18px;
    font-weight: 400;
}
.accordion-button {
    background: transparent;
    padding: 20px 0px;
    text-align: left;
}
.business_category {
    color: #F7941E;
    font-size: 20px;
    font-weight: 400;
    line-height: 20px;
    margin: 0;
    width: 270px;
}
.business_title {
    color: #000000;
    font-size: 24px;
    font-weight: 400;
    width: 400px;
}
#business .accordion-item {
    border: 0;
    border-radius: 0;
    background: transparent;
    border-bottom: 1px solid #00000017;
    padding: 40px 0px;
    position: relative;
    transition: all .5s linear;
}
#business .accordion-item::after {
    position: absolute;
    content: '';
    left: 0;
    bottom: -1px;
    width: 0%;
    height: 1px;
    background: #fad9b2;
    transition: all .5s linear;
}
#business .accordion-item:hover::after{
    width: 100%;
    transition: all .5s linear;
}
#business .accordion-button::after {
    width: 30px;
    height: 30px;
    background-size: 30px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M18 12h-6m0 0H6m6 0V6m0 6v6'/%3E%3C/svg%3E");
    position: absolute;
    right: 0;
}
#business .accordion-button:not(.collapsed)::after{
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M18 12h-6m0 0H6m6 0V6m0 6v6'/%3E%3C/svg%3E");
    transform: rotate(45deg);
}
#business .accordion-button:not(.collapsed) {
    background: transparent;
    box-shadow: none;
}
#business .accordion-button:focus{
    box-shadow: none;
}
#business .accordion-body {
    padding: 20px 0px 0px 0px;
}
#business .row {
    width: 100%;
}
#business .accordion-item:last-child {
    border: 0;
    padding-bottom: 0;
}
#business .accordion-item:last-child::after{
    display: none;
}
#business .accordion-item:first-child {
    padding-top: 0;
}
.timeline_logo_wrap {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #FFFFFF;
    border-radius: 6px;
    padding: 10px 12px;
}
.timeline_logo_wrap img {
    max-width: 120px;
    max-height: 100px;
}
.mission_vision_wrap {
    background: #ffffff;
    padding: 40px;
    border-radius: 6px;
    min-height: 150px;
}
.mission_vision_wrap h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    margin-bottom: 15px;
}
.mission_vision_wrap p {
    font-size: 17px;
    margin: 0;
}
.mission_vision_wrap h3 img {
    background: #F7941E1A;
    padding: 5px;
    border-radius: 4px;
    max-width: 32px;
    max-height: 32px;
}
	#team_slider .owl-nav button {
    display: flex;
    background: #f7941e00;
    color: #000000;
    width: 36px;
    height: 36px;
    text-align: center;
    line-height: 36px;
    cursor: pointer;
    border-radius: 6px;
    align-items: center;
    justify-content: center;
    border: 1px solid #00000021 !important;
}
#team_slider .owl-nav button:hover{
	background: #f7941e;
	border-color: #f7941e;
	color: #fff;
}
#team_slider .owl-nav .disabled{
	opacity: .5;
}
.swiper-button-disabled{
	opacity: .5;
}
#no_jobs_found {
    background: #f7f3ee;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    border: 1px dashed #d6d6d6;
    margin-bottom: 60px;
    font-size: 16px;
    text-transform: capitalize;
    display: none;
}
.legacypg .timeline_logo_wrap {
    background: transparent;
    padding: 0;
}
/* .legacypg .timeline_logo_wrap img{
	filter:brightness(0);
} */
.next_application img, .prev_application img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.wpcf7-checkbox span.wpcf7-list-item.first.last {
    margin: 0;
}
.menu_light .sectionfixed .logo .blacklogo {
    display: block;
}
.menu_light .sectionfixed .logo .whitelogo {
    display: none;
}
.menu_dark .sectionfixed .logo .whitelogo {
    display: none;
}
.menu_dark .sectionfixed .logo .blacklogo {
    display: block;
}
.menu_dark .logo .blacklogo {
    display: block;
}
.menu_light img.blacklogo {
    display: none;
}
.menu_dark img.whitelogo {
    display: none;
}
.cta_form span.wpcf7-form-control-wrap.kc_captcha span {
    font-size: 14px;
}
   .industries_popup .modal-dialog {
        max-width: 850px;
    }
.industry_logo_wrap {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #00000014;
    width: 100%;
    background: #ffffff;
    border-radius: 6px;
    margin-bottom: 20px;
}
.industry_logo_wrap img {
    max-width: 140px;
    max-height: 80px;
    object-fit: contain;
    transition: all .5s linear;
}
.industries_popup_wrap .btn-close {
    position: absolute;
    right: 17px;
    top: 12px;
    opacity: 1;
    padding: 0 !important;
    background: transparent;
    font-size: 26px;
}
.industries_popup_wrap {
    padding: 30px 30px;
}
#blog_details p img {
    margin: 0 0 5px;
}
.industries_popup_wrap .head_centre {
    margin-bottom: 20px;
}
.industries_popup_wrap .head_centre .common_title {
    margin-bottom: 8px;
}
.portal_label {
    color: #020202a3;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
}
.service_portal {
    font-family: "satoshi-regular";
    width: 80%;
    margin: auto;
}
.portal_input {
    border-radius: 6px;
    border: 1px solid #1818180f;
    background: #ffffff;
    padding: 10px 15px;
    width: 100%;
    outline: none;
    box-shadow: none;
    color: #000;
    font-size: 16px;
}
.portal_input_wrap {
    margin-bottom: 20px;
}
.requests {
    display: flex;
    align-items: center;
    gap: 30px;
}
.requests div{
	display: flex;
	align-items: center;
	gap: 5px;
}
.requests input[type=radio] {
    accent-color: #cd7006;
    width: 15px;
    height: 15px;
}
input[type=checkbox] {
  accent-color: #cd7006;
}
.portal_label sub {
    color: #D90D10;
    position: relative;
    top: -1px;
    margin-left: 3px;
}
.terms_conditions p {
    color: #525252;
    font-size: 15px;
    width: 800px;
}
.terms_conditions {
    margin: 0px 0px 40px;
}
.portal_input_wrap textarea {
    height: 100px;
    resize: none;
}
.portal_input:focus {
    border-color: #f7941e38;
}
#service_portal_header .head_centre{
	margin-bottom: 0;
}
.file_upload {
    height: 100px;
    background: #fff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.checkbox_label {
    display: flex;
    align-items: center;
    gap: 5px;
    width: 100%;
}
.portal_input_wrap p {
    margin: 0;
}
.portal_input_wrap .wpcf7-list-item {
    margin: 0 20px 0 0;
}
.wpcf7-not-valid-tip {
    font-size: 15px !important;
    margin-top: 8px;
}
.wpcf7-list-item label {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 15px;
}
.job_description h5 {
    margin-bottom: 20px;
}
.job_description {
    margin-bottom: 30px;
}