
nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
}

/* Hide Dropdowns by Default */
nav ul ul {
    display: none;
    position: absolute; 
    top: 60px;
}
    
/* Display Dropdowns on Hover */
nav ul li:hover > ul {
    display:inherit;
    margin-top: 10px;
    margin-top: 10px;
    box-shadow: none;
    min-width: 250px;
}
    
/* Fisrt Tier Dropdown */
nav ul ul li {
    width:170px;
    float:none;
    display:list-item;
    position: relative;
    padding: 10px 10px;
    background: var(--secondary);
    width: 100%;
}
nav ul ul li:hover {
    background: var(--primary);
}
nav ul ul li a{
    color: #FFF;
    width: 100%;
    display: block;
}
nav ul ul li:hover a {
    color: #FFF;
}

/* Second, Third and more Tiers */
nav ul ul ul li {
    position: relative;
    top: -70px;
    left: 160px;
    background: var(--secondary);
}
.sub-menu > a:after {
    content: ' >' !important;
    float: right;
}

    
/* Change this in order to change the Dropdown symbol */
li > a:after { content:  ' +'; }
li > a:only-child:after { content: ''; }

.header-top .social-icons li {
	padding: 0;
}
.header-top .social-icons li a {
	padding: 10px 15px;
}
.media-icon li {
	margin-bottom: 15px;
}

.slick-slide {
    margin: 0px 20px;
}

.slick-slide img {
    width: 100%;
}

.slick-slider
{
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

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

.slick-track
{
    position: relative;
    top: 0;
    left: 0;
    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;
    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

.process-box{
    background: #fff;
    padding: 10px;
    border-radius: 15px;
    position: relative;
    box-shadow: 2px 2px 7px 0 #00000057;
}
.process-left:after{
        content: "";
    border-top: 15px solid #ffffff;
    border-bottom: 15px solid #ffffff;
    border-left: 15px solid #ffffff;
    border-right: 15px solid #ffffff;
    display: inline-grid;
    position: absolute;
    right: -15px;
    top: 42%;
    transform: rotate(45deg);
    box-shadow: 3px -2px 3px 0px #00000036;
    z-index: 1;
}
.process-right:after{
        content: "";
    border-top: 15px solid #ffffff00;
    border-bottom: 15px solid #ffffff;
    border-left: 15px solid #ffffff;
    border-right: 15px solid #ffffff00;
    display: inline-grid;
    position: absolute;
    left: -15px;
    top: 42%;
    transform: rotate(45deg);
    box-shadow: -1px 1px 3px 0px #0000001a;
    z-index: 1;
}
.process-step{
    background: var(--primary);
    text-align: center;
    width: 80%;
    margin: 0 auto;
    color: #fff;
    height: 100%;
    padding-top: 8px;
    position: relative;
    top: -26px;
    border-radius: 0px 0px 10px 10px;
    box-shadow: -6px 8px 0px 0px #00000014;
}
.process-point-right{
    background: #ffffff;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 8px solid var(--primary);
    box-shadow: 0 0 0px 4px var(--secondary);
    margin: auto 0;
    position: absolute;
    bottom: 40px;
    left: -63px;
}
.process-point-right:before{
    content: "";
    height: 144px;
    width: 11px;
    background: var(--secondary);
    display: inline-grid;
    transform: rotate(36deg);
    position: relative;
    left: -50px;
    top: -0px;
}
.process-point-left{
    background: #ffffff;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 8px solid var(--primary);
    box-shadow: 0 0 0px 4px var(--secondary);
    margin: auto 0;
    position: absolute;
    bottom: 40px;
    right: -63px;
}
.process-point-left:before {
    content: "";
    height: 144px;
    width: 11px;
    background: var(--secondary);
    display: inline-grid;
    transform: rotate(-38deg);
    position: relative;
    left: 50px;
    top: 0px;

}

.process-last:before{
    display: none;
}
.process-box p{
    z-index: 9;
}
.process-step p{
    font-size: 20px;
}
.process-step h2{
    font-size: 39px;
}
.process-step:after{
    content: "";
    border-top: 8px solid #04889800;
    border-bottom: 8px solid #a5581f;
    border-left: 8px solid #04889800;
    border-right: 8px solid #ab5719;
    display: inline-grid;
    position: absolute;
    left: -16px;
    top: 0;
}
.process-step:before{
/*    content: "";*/
    border-top: 8px solid #ff000000;
    border-bottom: 8px solid #a5581f;
    border-left: 8px solid #ab5719;
    border-right: 8px solid #ff000000;
    display: inline-grid;
    position: absolute;
    right: -16px;
    top: 0;
}
.process-line-l{
    background: white;
    height: 4px;
    position: absolute;
    width: 136px;
    right: -153px;
    top: 64px;
    z-index: 9;
}
.process-line-r{
    background: white;
    height: 4px;
    position: absolute;
    width: 136px;
    left: -153px;
    top: 63px;
    z-index: 9;
}
.process-step h2 {
	color: #FFF;
}
.process-point-left.last:before {
	content: unset;
} 


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

.section-block-grey {
    padding: 90px 0px 90px 0px;
    background-color: #f9f9f9;
}

.serv-section-2 {
    position: relative;
    border: 1px solid #eee;
    background: #fff;
    box-shadow: 0px 10px 30px 0px rgba(50, 50, 50, 0.16);
    border-radius: 5px;
    overflow: hidden;
    padding: 30px;
    margin: 10px 0;
    min-height: 145px;
}

.serv-section-2:before {
    position: absolute;
    top: 0;
    right: 0px;
    z-index: 0;
    content: " ";
    width: 120px;
    height: 120px;
    background: #f5f5f5;
    border-bottom-left-radius: 136px;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
}

.serv-section-2-icon {
    position: absolute;
    top: 18px;
    right: 22px;
    max-width: 100px;
    z-index: 1;
    text-align: center;
}

.serv-section-2-icon i {
    color: var(--secondary);
    font-size: 48px;
    line-height: 65px;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
}

.serv-section-desc {
    position: relative;
    padding-inline-end: 80px;
}

.serv-section-2 h4 {
    color: #333;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
}

.serv-section-2 h5 {
    color: #333;
    font-size: 17px;
    font-weight: 400;
    line-height: 1;
    margin-top: 5px;
}

.section-heading-line-left {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: var(--primary);
    border-radius: 25%;
    margin-top: 15px;
    margin-bottom: 5px;
}

.serv-section-2 p {
    margin-top: 25px;
    padding-right: 50px;
}

.serv-section-2:hover .serv-section-2-icon i {
    color: #fff;
}

.serv-section-2:hover:before {
    background: var(--primary);
}


	
.about-section{
	position:relative;
/*	padding:120px 0px;*/
}

.about-section .content-column{
	position:relative;
	margin-bottom:40px;
}

.about-section .content-column .inner-column{
	position:relative;
	padding-top:50px;
	padding-inline-start:100px;
}

.about-section .content-column .text{
	position:relative;
	color:#777777;
	font-size:15px;
	line-height:2em;
	margin-bottom:40px;
}

.about-section .content-column .email{
	position:relative;
	color:#252525;
	font-weight:700;
	margin-bottom:50px;
}

.about-section .image-column{
	position:relative;
	margin-bottom:50px;
	transform: translateY(0%);
}

.about-section .image-column .inner-column{
	position:relative;
	padding:40px 40px 0px 0px;
	margin-left:50px;
}

.about-section .image-column .inner-column:after{
	position:absolute;
	content:'';
	right:0px;
	top:0px;
	left:40px;
	bottom:100px;
	z-index:-1;
	border:2px solid var(--primary);
}

.about-section .image-column .inner-column .image{
	position:relative;
}

.about-section .image-column .inner-column .image:before{
	position:absolute;
	content:'';
	left:-50px;
	bottom:-50px;
	width:299px;
	height:299px;
	background:url(img/pattern-2.png) no-repeat;
}

.about-section .image-column .inner-column .image img{
	position:relative;
	width:100%;
	display:block;
}

.about-section .image-column .inner-column .image .overlay-box{
	position:absolute;
	left:40px;
	bottom:48px;
}

.about-section .image-column .inner-column .image .overlay-box .year-box{
	position:relative;
	color:#252525;
	font-size:24px;
	font-weight:700;
	line-height:1.4em;
	padding-left:125px;
}

.about-section .image-column .inner-column .image .overlay-box .year-box .number{
	position:absolute;
	left:0px;
	top:0px;
	width:110px;
	height:110px;
	color: var(--primary);
	font-size:68px;
	font-weight:700;
	line-height:105px;
	text-align:center;
	background-color:#ffffff;
	border:1px solid #000000;
}
.about-section .btn-style-three:before,
.pos-r .btn-style-three:before {
    position: absolute;
    content: '';
    left: 10px;
    top: 10px;
    z-index: -1;
    right: -10px;
    bottom: -10px;
    background: url(../data/pattern-1.jpg) repeat;
}
.about-section .btn-style-three:hover,
.pos-r .btn-style-three:hover {
    color: #ffffff;
    background: var(--primary);
}
.about-section .btn-style-three,
.pos-r .btn-style-three {
    position: relative;
    line-height: 24px;
    color: #252525;
    font-size: 15px;
    font-weight: 700;
    background: none;
    display: inline-block;
    padding: 11px 40px;
    background-color: #ffffff;
    text-transform: capitalize;
    border: 2px solid var(--primary);
    font-family: 'Arimo', sans-serif;
}
.sec-title2{
	color:#fff;
}
.sec-title {
    position: relative;
    padding-bottom: 40px;
}
.sec-title .title {
    position: relative;
    color: var(--primary);
    font-size: 18px;
    font-weight: 700;
    padding-inline-end: 50px;
    margin-bottom: 15px;
    display: inline-block;
    text-transform: capitalize;
}
.sec-title .title:before {
    position: absolute;
    content: '';
    right: 0px;
    bottom: 7px;
    width: 40px;
    height: 1px;
    background-color: #bbbbbb;
}


/* Our Team
-------------------------------------------------------*/

.our_team .our-team .team-row {
  margin-left: -40px;
  margin-right: -40px;
}

.our_team .our-team .team-wrap {
  padding: 0 40px;
}

.our_team .our-team .container-fluid {
  padding: 0 50px;
}

.our_team .team-img img {
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  overflow: hidden;
  width: 100%;
}

.our_team .team-member,
.our_team .team-img {
  position: relative;
  overflow: hidden;
}

.our_team .team-title {
  margin: 30px 0 7px;
}

.our_team .overlay {
  background-color: rgba(20,20,20,.7);
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.our_team .team-details {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 0;
  padding: 5%;
  overflow: hidden;
  width: 100%;
  z-index: 2;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.our_team .team-details p {
  color: #fff;
}

.our_team .team-img:hover .team-details {
  opacity: 1;
  margin-top: -80px;
}

.our_team .team-img:hover .overlay {
  opacity: 1;
}

.our_team .socials a {
  display: inline-block;
  width: 37px;
  height: 37px;
  background-color: transparent;
}

.our_team .socials i {
  line-height: 37px;
  color: #616161;
  font-size: 14px;
  width: 37px;
  height: 37px;
  border-radius: 50%;
  text-align: center;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.our_team .team-details .socials i {
	color: #fff;
}

.our_team .socials a:hover i {
  color: #fff;
  background-color: #355c7d;
}




.bg-gray {
    background-color: #f9f9f9;
}

.site-heading h2 {
  display: block;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.site-heading h2 span {
  color: var(--primary);
}

.site-heading h4 {
  display: inline-block;
  padding-bottom: 20px;
  position: relative;
  text-transform: capitalize;
  z-index: 1;
}

.site-heading h4::before {
  background: var(--primary) none repeat scroll 0 0;
  bottom: 0;
  content: "";
  height: 2px;
  left: 50%;
  margin-left: -25px;
  position: absolute;
  width: 50px;
}

.site-heading {
  margin-bottom: 60px;
  overflow: hidden;
  margin-top: -5px;
}

.carousel-shadow .owl-stage-outer {
  margin: -15px -15px 0;
  padding: 15px;
}

.we-offer-area .our-offer-carousel .owl-dots .owl-dot span {
  background: #ffffff none repeat scroll 0 0;
  border: 2px solid;
  height: 15px;
  margin: 0 5px;
  width: 15px;
}

.we-offer-area .our-offer-carousel .owl-dots .owl-dot.active span {
  background: var(--primary) none repeat scroll 0 0;
  border-color: var(--primary);
}

.we-offer-area .item {
  background: #ffffff none repeat scroll 0 0;
  border-left: 2px solid var(--primary);
  -moz-box-shadow: 0 0 10px #cccccc;
  -webkit-box-shadow: 0 0 10px #cccccc;
  -o-box-shadow: 0 0 10px #cccccc;
  box-shadow: 0 0 10px #cccccc;
  overflow: hidden;
  padding: 30px;
  position: relative;
  z-index: 1;
}

.we-offer-area.text-center .item {
  background: #ffffff none repeat scroll 0 0;
  border: medium none;
  padding: 67px 40px 64px;
}

.we-offer-area.text-center .item i {
  background: var(--primary) none repeat scroll 0 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  color: #ffffff;
  font-size: 40px;
  height: 80px;
  line-height: 80px;
  position: relative;
  text-align: center;
  width: 80px;
  z-index: 1;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  margin-bottom: 25px;
}

.we-offer-area.text-center .item i::after {
  border: 2px solid var(--primary);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  content: "";
  height: 90px;
  left: -5px;
  position: absolute;
  top: -5px;
  width: 90px;
  z-index: -1;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
}

.we-offer-area.item-border-less .item {
  border: medium none;
}

.we-offer-area .our-offer-items.less-carousel .equal-height {
  margin-bottom: 30px;
}

.we-offer-area.item-border-less .item .number {
  font-family: "Poppins",sans-serif;
  font-size: 50px;
  font-weight: 900;
  opacity: 0.1;
  position: absolute;
  right: 30px;
  top: 30px;
}

.our-offer-carousel.center-active .owl-item:nth-child(2n) .item,
.we-offer-area.center-active .single-item:nth-child(2n) .item {
  background: var(--primary) none repeat scroll 0 0;
}

.our-offer-carousel.center-active .owl-item:nth-child(2n) .item i,
.our-offer-carousel.center-active .owl-item:nth-child(2n) .item h4,
.our-offer-carousel.center-active .owl-item:nth-child(2n) .item p,
.we-offer-area.center-active .single-item:nth-child(2n) .item i,
.we-offer-area.center-active .single-item:nth-child(2n) .item h4,
.we-offer-area.center-active .single-item:nth-child(2n) .item p {
  color: #ffffff;
}

.we-offer-area .item i {
  color: var(--primary);
  display: inline-block;
  font-size: 60px;
  margin-bottom: 20px;
}

.we-offer-area .item h4 {
  font-weight: 600;
  text-transform: capitalize;
}

.we-offer-area .item p {
  margin: 0;
}

.we-offer-area .item i,
.we-offer-area .item h4,
.we-offer-area .item p {
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
}

.we-offer-area .item::after {
  background: var(--primary) none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: -100%;
  position: absolute;
  top: 0;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  width: 100%;
  z-index: -1;
}

.we-offer-area .item:hover::after {
  left: 0;
}

.we-offer-area .item:hover i,
.we-offer-area .item:hover h4,
.we-offer-area .item:hover p,
.we-offer-area .item:hover a {
  color: #ffffff !important;
}

.we-offer-area.text-center .item:hover i::after {
  border-color: #ffffff !important;
}

.we-offer-area.text-center .item:hover i {
  background-color: #ffffff !important;
  color: var(--primary) !important;
}

.we-offer-area.text-left .item i {
  background: var(--primary) none repeat scroll 0 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  color: #ffffff;
  display: inline-block;
  font-size: 60px;
  height: 100px;
  line-height: 100px;
  margin-bottom: 30px;
  position: relative;
  width: 100px;
  z-index: 1;
  text-align: center;
}

.we-offer-area.text-left .item i::after {
  border: 2px solid var(--primary);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  content: "";
  height: 120px;
  left: -10px;
  position: absolute;
  top: -10px;
  width: 120px;
}
.contact-a {
	font-size: 16px;
/*    font-weight: bold;*/
}


.ps-0 {
	padding-inline-start: 0;
}
.width-100 {
	width: 100%;
}
.padding-0 {
	padding: 0;
}


.fix-socila {
    position: fixed;
    top: 50%;
    left: 0;
    z-index: 999;
    list-style: none;
}
.fix-socila li{
/*    background: red;*/
    padding: 6px;
}
.fix-socila li:hover{
/*    padding-left: 15px;*/
}
.fix-socila li i{
    font-size: 25px;
    color: #FFF;
}

.social-fa-facebook-f {
    background-color: #1877F2; /* Facebook Blue */
    color: #fff;
}

.social-fa-whatsapp {
    background-color: #25D366; /* WhatsApp Green */
    color: #fff;
}

.social-fa-linkedin {
    background-color: #0077B5; /* Twitter Blue */
    color: #fff;
}

.social-fa-twitter {
    background: #1DA1F2; /* Instagram Gradient */
    color: #fff;
}

.feat-sec {
    background: var(--primary);
    color: #FFF;
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
}
.timing-sec {
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.timing-sec i{
    color: var(--primary);
    font-size: 40px;
}
.timing-sec label{
    width: 75%;
    display: inline-grid
}
.feat-sec li {
    display: flex;
}

.feat-sec li i {
    margin-top: 5px;
}
.feat-sec li,
.feat-sec label {
    font-size: 17px;
}
.feat-sec label {
    margin-inline-start: 10px;
    color: #FFF;
}
.form-control-custom {
    display: block;
    border: 1px solid #DDD;
    width: 100%;
    height: 35px;
    padding: 5px 15px;
}
.traning-form {
    padding: 13px;
    border-radius: 10px;
    box-shadow: 0px 0px 18px 0px #93939314;
    border: 1px solid #f58634;
}
.traning-form h3 {
    background: var(--primary);
    color: #FFF;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 1px 7px 7px 3px #0000001a;
    text-align: center;
}
.custom-select2 .nice-select {
    height: 35px;
    border: 1px solid #DDD;
    line-height: 35px;
}
textarea.form-control-custom {
    height: unset;
}
.form-check-label {
/*    margin-inline-start: 20px;*/
}
.form-check {
    padding-left: unset;
    padding-inline-start: 1.25rem;
}
.form-check-input {
    margin-left: unset;
    margin-inline-start: -1.25rem;
}

:lang(ar) .fix-socila {
    left: unset;
    right: 0;
}

:lang(ar) .header-top .social-icons li {
	border-right: 0px solid #eeecf7;
	border-left: 1px solid #eeecf7;
}
:lang(ar) #header-wrap::before {
	right: 80%;
    left: 0;	
}
:lang(ar) .mr-sm-3, .mx-sm-3 {
	margin-right: unset !important;
	margin-inline-end: 1rem !important;
}
:lang(ar) .mr-auto, .mx-auto {
	margin-right: unset !important;
	margin-inline-end: auto !important;
}
:lang(ar) .media-icon li, :lang(ar) .media-icon li p {
	display: flex;
}

.ltr-num{
	display: inline-block;
	direction: ltr;
}
:lang(ar) .slider {
	direction: ltr;
}
:lang(ar) .sec-title .title:before {
	right: unset;
	left: 0;
}
:lang(ar) .process-line-l {
    right: unset;
    left: -153px;
}
:lang(ar) .process-line-r {
	top: 68px;
    /* z-index: 9; */
    left: unset;
    right: -156px;
}
:lang(ar) .process-left:after {
	right: 444px;
	box-shadow: -3px 2px 3px 0px #00000036;
}
:lang(ar) .process-point-right {
	left: unset;
    right: -63px;
}
:lang(ar) .process-point-right:before {
	transform: rotate(320deg);
	left: 53px;
}

:lang(ar) .process-point-left {
	right: unset;
	left: -63px;
}
:lang(ar) .process-point-left:before {
	top: 3px;
    left: unset;
    right: 47px;
    transform: rotate(38deg);
}
:lang(ar) .process-right:after {
	box-shadow: 4px -2px 3px 1px #0000001a;
    z-index: 1;
    left: unset;
    right: -16px;
    background: #FFF;
}
:lang(ar) .serv-section-2:before {
	right: unset;
    left: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 136px;
}
:lang(ar) .serv-section-2-icon {
	right: unset;
	left: 22px;
}
:lang(ar) .banner-slider {
	direction: ltr;
}
:lang(ar) .banner-slider .owl-item {
	direction: rtl;
}
:lang(ar) .list-icon li i {
	left: unset;
    right: 0;
}
:lang(ar) .fa-long-arrow-alt-right:before {
    content: "\f30a";
}
/*:lang(ar) .btn-2 .btn-icon.btn-arrow {
	left: unset;
	right: 0.625rem;
}
.btn-2 .btn-text {
	margin-left: unset;
	margin-inline-start: 40px;
}*/



@media (max-width: 893px) {
    .about-section .content-column .inner-column {
        padding-inline-start: 20px;
    }
}
.scroll-top {
    bottom: 100px;
}