@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');

/* ***** Common Css **** */
:root {
    scroll-behavior: initial;
}

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
}
a:hover,
a:focus,
a:active {
    text-decoration: none;
}
html {
  scroll-behavior: smooth;
}
ol,
ul {
    margin: 0;
    padding: 0;
}
img {
    display: block;
}
a {
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
    text-decoration: none;
}

body {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    text-decoration: none;
}

.main-wrpper {
    height: 100%;
    width: 100%;
    overflow: hidden;
}
.container{
    max-width: 1450px;
}
/* ***** End Common Css **** */

/* **** Header **** */
header {
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    background: transparent;
    padding: 30px 0;
    z-index: 120;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
}
.navbar .container .navbar-brand,
.navbar .container-fluid .navbar-brand {
    margin-left: 0;
}
.navbar-brand {
    float: none;
    height: auto;
    padding: 0;
}
.navbar-brand img {
    max-width: 100%;
    height: 75px;
}
.navbar {
    background: transparent;
    position: relative;
    width: 100%;
    left: 0;
    top: 0;
    border: none;
    border-radius: 0;
    margin: 0;
    padding: 0;
    z-index: 120;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
}
.nav-row{
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    width: 100%;
    position: sticky;
}
.navbar-light .navbar-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.navbar-light .navbar-nav li {
    margin-right: 35px;
	margin-right:13px;
    position: static;
}
.navbar-light .navbar-nav li:last-child {
    margin-right: 0;
}
.navbar-light .navbar-nav .nav-link {
    padding: 0 0px;
    color: #fff;
    font-size: 16px;
    position: relative;
    font-weight: 400;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
}

.navbar-light .navbar-nav li .dropdown-menu{
    position: absolute;
    max-width: 800px;
    min-width: 800px;
    width: 100%;
    background: #fff;
    padding: 0 15px;
    border-radius: 0;
    border: none;
    margin: 10px 0 0;
	margin:22px 0 0;
    top: 100%;
    left: auto;
    right: -60px;
    transform: unset;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.navbar-light .navbar-nav li .dropdown-menu ul{
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.navbar-light .navbar-nav li .dropdown-menu ul li{
    width: 33.33%;    
    margin: 0;
}
.navbar-light .navbar-nav li .dropdown-menu ul li a{
    font-size: 16px;
    font-weight:400;
    color: #343d46;
    line-height: 24px;
    padding: 20px 10px;
    display: block;
    border-bottom: 1px solid #343d46;
    word-break: break-all;    
    min-height: 90px;
}

.navbar .navbar-nav li a:focus,
.navbar .navbar-nav li a:hover,
.navbar .navbar-nav li a:hover {
    color: rgba(255,255,255,0.70);
}
.navbar .navbar-nav .active a,
.navbar .navbar-nav .active a:focus,
.navbar .navbar-nav .active a:hover {
    color: rgba(255,255,255,0.70);
}
.navbar-light .navbar-nav .nav-link.active{
    font-weight: 700;
}
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
    color: rgba(255,255,255,0.70);
}
.lang-socialbx{
    max-width: 60px;
    width: 100%;
    margin-left: 30px;
}
.lang-bx span{
    font-size: 16px;
    font-weight: normal;
    color: #fff;
    background-color: transparent;
    height: auto;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    max-width:50px;
}
.dropdown-toggle::after{
    display: none;
}
.lang-bx .dropdown-menu{
    background: #fff;
    border: none;
    border-radius:3px;
    box-shadow: none;
    max-width: 100%;
    padding: 0;
    min-width: 100%;
    width: 100%;
    overflow: hidden;
}
.lang-bx .dropdown-menu li{
    margin: 0;
}
.lang-bx .dropdown-menu li a{
    display: block;
    font-size: 14px;
    font-weight: normal;
    display: block;
    max-width: 100%;
    padding: 3px 5px;
    color: #343d46;
    display: block;text-align: center;
}
.social-bx{
    display: flex;
    align-items: center;
    margin:10px 0 0;
}
.social-bx a{
    width: 25px;
    height: 25px;
    line-height: 25px;
	width:23px;
	height:23px;
	line-height:23px;
    border-radius: 50%;
    background: #fff;
    text-align: center;
    font-size: 12px;
	font-size:13px;
    color: #343d46;
    margin-right: 5px;
	    min-width: 23px;
    justify-content: center;
    align-items: center;
	padding-top: 1px;
}
.social-bx a:last-child{
    margin: 0;
}
.social-bx a:hover{
    color: #fff;
    background: #343d46;
}


header.nav-new{
    background: #343d46;
}
header.nav-new .navbar-brand img{-webkit-filter: brightness(0) invert(1);  filter: brightness(0) invert(1);}
/* **** End Header **** */


/* **** toggler **** */
.navbar-light .navbar-toggler {background-color: transparent;border-radius: 0;outline: none;box-shadow: none;border: none;height: 40px;width: auto;padding: 0;}
.navbar-light .navbar-toggler:focus {box-shadow: none;outline: none; }
.navbar-light .navbar-toggler .navbar-toggler-icon {background-image: unset;}
.navbar-toggler:active, .navbar-toggler:focus { outline: none; }
.navbar-light .navbar-toggler-icon {width: 24px;height: 18px;background-image: none;position: relative;border-bottom: 2px solid #fff;transition: all 300ms linear;}
.navbar-light .navbar-toggler-icon:after,
.navbar-light .navbar-toggler-icon:before {width: 24px;position: absolute;height: 2px;background-color: #fff;top: 0;left: 0;content: "";z-index: 2;transition: all 300ms linear;}
.navbar-light .navbar-toggler-icon:after {top: 8px;}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {transform: rotate(45deg);}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {transform: translateY(8px) rotate(-45deg);}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {border-color: transparent;}
/* **** End toggler **** */

/* ***** Home Page ***** */
.main-banner{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.banner-ai{
    width: 45%;
    position: relative;
}
.banner-box{
    width: 55%;
    position: relative;
}
.banner-box img{
    width: 100%;
}
.banner-aotxt{
    padding: 60px;
}
.banner-aotxt img{
    width: 100%;
    margin: 80px 0 0;
}
.banner-box h1{
    font-size: 72px;
    font-weight: bold;
    color: #fff;
    margin: 0;
    line-height: 82px;
    position: absolute;
    top: 35%;
    left: 20%;
}
.banner-box h6{
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    position: absolute;
    bottom: 15px;
    right: 15px;
}

.why-we-wrp{
    padding: 95px 0;
    position: relative;
}
.why-data{
    padding: 0 0 0 15px;
}
.why-data p{
    margin: 0;
    font-size: 17px;
    font-weight: 300;
	font-weight:400;
    color: #343d46;
    line-height: 26px;
    margin: 0;
}
.why-data .btn-group{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.why-data .btn-group a{
    font-size: 16px;
    font-weight: normal;
	font-weight:400;
    color: #343d46;
    border-bottom: 1px solid #343d46;
    padding: 0px;
    margin: 15px 0 0;
    display: table;
}
.why-data .btn-group a:hover{
    color: #777;
    border-bottom: 1px solid #777;
}
.why-title{
    display: flex;
}
.why-title img{
    margin-right: 40px;
    max-width: 80%;
}
.why-title h2{
    margin: 0;
    font-size: 36px;
    font-weight: 600;
    color: #343d46;
    text-transform: uppercase;
}

.practice-wrp{
    position: relative;
}
.practice-wrp h2{
    font-size: 36px;
    font-weight: 600;
    color: #343d46;
    padding: 0 0 15px;
	padding:0 0 27px;
    border-bottom: 1px solid #343d46;
    margin: 0;
	text-transform: uppercase;
	position:relative;
	z-index:1;
}
.practice-wrp h2 br{display: none;}
.area-tabs ul{
    border-bottom: 1px solid #343d46;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 55;
}
.area-tabs li{
    width: 33.33%;
    padding: 30px 0;
    border-bottom: 1px solid #343d46;
}
.area-tabs li a{    
    display: block;
    font-size: 22px;
    font-weight: 300;
	font-weight:400;
    color: #343d46;
}
.area-tabs li.active a{
    font-weight: 400;text-shadow:0px 0px 1px black;
    text-decoration: underline;
}
.area-tabs li:last-child{border-bottom: none;}
#tabs-content{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}
.tabs-rw{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}
.tabs-imgbox{
    width: 23%;
}
.tabs-imgbox img{
    width: 100%;
    height: 480px;
    object-fit: cover;
}
.tabs-in-circle{
    width: 350px;
    height: 350px;
	width:370px;
	height:370px;
    border-radius: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: -175px;
}
.tabs-in-circle:before{
    position: absolute;
    content: '';
    width: 175px;
    height: 175px;
	width:185px;
	height:185px;
    background: #fff;
    border-radius: 100%;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    z-index: 1;
}
.tabs-in-circle img{
    width: 350px;
    height: 350px;
	width:370px;
	height:370px;
    border-radius: 100%;
    object-fit: cover;
}

.team-title{
    padding: 0 0 15px;
    margin: 0 0 70px;
    border-bottom: 1px solid #343d46;
}
.team-title h2{
    margin: 0;
    display: flex;
    align-items: flex-end;
    font-size: 36px;
    font-weight: 600;
    color: #343d46;
}
.team-title h2 a{
    margin-left: 20px;
    text-transform: inherit;
    font-size: 22px;
    font-weight:500;
    color: #343d46;
    text-decoration: underline;
}
.team-title h2 a:hover{
    color: #777;
}
.team-pg-wrp{position: relative;}
img.team-a{
    position: absolute;
    bottom: 0;
    right: 20%;
    z-index: 5;
    max-width:300px;
	max-width:300px;
}
.blank{min-height: 200px;}
/* ***** End Home Page ***** */

/* **** About Page **** */
.innerpg{
    position: relative;
}
.innerpg h1{
    font-size: 190px;
    font-weight: bold;
    color: #343d46;
    margin: 0;
    position: absolute;
    top: 830px;
    left:55px;
    text-transform: uppercase;
    transform: rotate(-90deg);
    transform-origin: left;
}
.inner-banner{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
}
.iner-banner-img{
    position: relative;
    width:54%;
}
.team-shp{
    position: absolute;
    top: 0;
    left: 0;
    height: 350px;
}
.team-shp img{
    width: 90%;
	width:97%;
}
.iner-banner-img img{
    width: 100%;
    height: 350px;
    object-fit: cover;
}
.iner-banner-img:before{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: #343d46;
    opacity: 0.90;
    top: 0;
    left: 0;
    mix-blend-mode: multiply;
}
.inner-banner-center{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
}
.inner-banner-center h2,.team-banner .inner-banner-center h3{
    font-size: 44px;
    font-weight: bold;
    color: #343d46;
    margin: 0;
    text-transform: uppercase;
}
.in-ban-circlebx{
    width: 350px;
    height: 350px;
    border-radius: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: -175px;
}
.in-ban-circlebx:after{
    position: absolute;
    content: '';
    border-radius: 100%;
    width: 100%;
    height: 100%;
    background: #343d46;
    opacity: 0.90;
    top: 0;
    left: 0;
    mix-blend-mode: multiply
}
.in-ban-circlebx:before{
    position: absolute;
    content: '';
    width: 175px;
    height: 175px;
    background: #fff;
    border-radius: 100%;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    z-index: 1;
}
.in-ban-circlebx img{
    width: 350px;
    height: 350px;
    border-radius: 100%;
    object-fit: cover;
}


.about-pg-wrp{
    padding: 130px 0 300px;
}
.about-data h4{
    font-size: 20px;
    font-weight: 600;
    color: #343d46;
    line-height: 30px;
    padding: 0 0 10px;
    border-bottom: 1px solid #343d46;
    margin: 0 0 25px;
}
.about-breaf-data{
    padding: 0 0 0 30px;
}
.about-breaf-data p{
    font-size: 17px;
    font-weight: 300;
	font-weight:400;
    color: #343d46;
    line-height: 26px;
    margin: 0;
}
/* **** End About Page **** */

/* **** Footer **** */
footer{
    background: #343d46;
    position: relative;
}
.subscribebox{
    padding: 60px 0;
    display: flex;
    align-items: center;
}
.subscribebox h3{
    margin: 0 35px 0 0;
    font-size: 31px;
    font-weight: 300;
    color: #fff;
}
.btn-subs{
    padding: 10px 30px;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    border: 2px solid #fff;
    text-transform: uppercase;
}
.btn-subs:hover{
    background:#fff;
    color: #343d46;
}

.footer-links{
    padding: 0 0 30px;
}
.footer-links .row{
    align-items: flex-end;
	align-items: flex-end;
  direction: rtl;
}
.footer-links .quicklinks{
    display: flex;
    align-items: center;
}
.footer-links .quicklinks ul{
    display: flex;
    align-items: center;
}
.footer-links .quicklinks ul li{
    margin-right: 30px;
	margin-right:15px;
}
.footer-links .quicklinks ul li:last-child{
    margin: 0;
}
.footer-links .quicklinks ul li a{
    font-size: 16px;
	font-size:15px;
    font-weight: normal;
    color: #fff;
    display: block;
    position: relative;
}
.footer-links .quicklinks ul li a:after{
    position: absolute;
    content: '';
    width: 1px;
    height: 80%;
    background: #fff;
    right: -15px;
	right:-7.5px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}
.footer-links .quicklinks ul li a:hover{
    opacity: 0.70;
}
.footer-links .quicklinks ul li:last-child a:after{
    display: none;
}
.footer-links .quicklinks .social-icbtn{
    width: 30px;
    height: 30px;
    line-height: 32px;
    border-radius: 50%;
    display: block;
    background: #fff;
    text-align: center;
    font-size: 15px;
	font-size:19px;
    color: #343d46;
    margin-left: 20px;
}
.footer-links .quicklinks .social-icbtn:hover{
    background: #111;
    color: #fff;
}
.copyright{
    padding: 30px 0 0;
}
.copyright .footer-logo{display: none;}
.copyright p{
    font-size: 16px;
    font-weight: normal;
    color: #fff;
    margin: 0; direction:ltr;text-align: center;
}
.rtl .copyright p{ direction:rtl;text-align: center;}

.footer-logo{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.footer-logo  img.sitelogo{
    height: 75px;margin-left: 0px; margin-right:20px;
}
.footer-links .extralogo{max-width: 334px;
  margin-left: 0;
  margin-right: auto;}
.rtl .footer-logo  img.sitelogo{ margin-left:0px; margin-right:20px;}
.footer-logo img{
    height: 65px;  margin-left:20px;
}
.extralogo{flex-direction: row-reverse;}
.extralogo h5{text-align: left;font-size: 13px;
  line-height: 17px;}
.rtl .extralogo h5{text-align: left;}

/* **** End Footer **** */
@media screen and (min-width:1050px){
	.footer-links .col-md-3{width: 20%;}
	.footer-links .col-md-3:nth-child(2){width: 29%;}
	.footer-links .col-md-6{width: 51%;}
	.extralogo h5{text-align: left;font-size: 13px !important;
  line-height: 17px;}
  .rtl .extralogo h5{text-align: left;font-size: 16px !important;
	.copyright p {
		font-size: 14px;}
	.rtl .copyright p {
		font-size: 16px;}
}
/* **** Contact Page **** */
.contact-wrp{
    padding: 65px 0 150px;
}
.contact-frm{
    max-width: 360px;
}
.contact-frm .form-group{
    margin: 0 0 25px;
}
.contact-frm .form-group .form-control{
    padding: 8px 0;
    font-size: 16px;
	font-size:20px;
    font-weight: normal;
    color: #343d46;
    border: none;
    background: transparent;
    border-bottom: 1px solid #343d46;
    box-shadow: none;
    height: auto;
    resize:none;
    border-radius: 0;
}
.contact-frm .form-group .form-control::placeholder{
    color: #343d46;
}
.contact-frm .form-group textarea.form-control{
    border: 1px solid #343d46;
    padding: 10px;
}
.btn-send{
    padding: 8px 30px;
    border: 2px solid #343d46;
    color: #343d46;
    font-weight: 600;
    background: transparent;
    font-size: 18px;
    text-transform: uppercase;
    transition: .4s linear;
    -webkit-transition: .4s linear;
}
.btn-send:hover{
    background: #343d46;
    color: #fff;
}
.contact-data{
    padding: 0 0 0 15px;
}
.contact-data h4{
    font-size: 20px;
    font-weight: 500;
    color: #343d46;
    line-height: 36px;
    margin: 0;
}
.contact-data p{
    font-size: 20px;
    font-weight: 400;
    color: #343d46;
    line-height: 36px;
    margin: 0;
}
.contact-data .social-icbtn{
    width: 30px;
    height: 30px;
    line-height: 34px;
    border-radius: 50%;
    display: block;
    background: #343d46;
    text-align: center;
    font-size: 15px;
	font-size:18px;
    color: #fff;
    margin: 30px 0 0;
}
.contact-data .social-icbtn:hover{
    background: #111;
    color: #fff;
}
/* **** End Contact Page **** */

/* **** Career Page **** */
.career-wrp{
    padding: 65px 0 130px;
}
.innerpg.career-pg h1{
    top: 620px;
}
.career-row{
    padding: 0 0 30px;
    border-bottom: 1px solid #343d46;
    margin: 0 0 40px;
}
.career-row h4{
    font-size: 20px;
    font-weight: 600;
    color: #343d46;
    line-height: 30px;
    margin: 0;
}
.career-row p{
    font-size: 16px;
    font-weight: 300;
	font-weight:400;
    color: #343d46;
    line-height: 24px;
    margin: 0;
}
.care-posdt{
    padding: 0 0 0 30px;
}
.apply-box{
    display: flex;
    align-items: center;
}
.apply-box h6{
    margin: 0 30px 0 0;
    font-size: 20px;
    font-weight: 600;
    color: #343d46;
}
.apply-box .btn-subs{
    border-color: #343d46;
    color: #343d46;
    font-size: 20px;
}
.apply-box .btn-subs:hover{
    background: #343d46;
    color: #fff;
}
/* **** End Career Page **** */

/* **** Team Page **** */
.team-wrp{
    padding: 70px 0 50px;
}
.team-banner .inner-banner-center{
    bottom: 50px;
}
.team-box{
    margin: 0 0 100px;
    display: flex;
    align-items: center;
}
.team-box .team-img{
    min-width: 175px;
    height: 175px;
    border-radius: 100%;
    background: #e7ecf1;
    margin-right: 20px;
    position: relative;
}
.team-box .team-img a{position:relative;}
.team-box .team-img a:after{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: #343d46;
    border-radius: 100%;
    opacity: 0;
    visibility: hidden;
    top: 0;
    left: 0;
    transition: .4s linear;
    -webkit-transition: .4s linear;
}
.team-box:hover .team-img a:after{
    opacity: 0.50;
    visibility: visible;
}
.team-box .team-img img{
    width: 175px;
    height: 175px;
    border-radius: 100%;
    object-fit: cover;
	object-position:top;
}
.team-data h3{
    font-size: 22px;
    font-weight: 600;
    color: #343d46;
    margin: 0 0 5px;
}
.team-data h6{
    font-size: 22px;
    font-weight: 300;
    color: #343d46;
    margin: 0 0 25px;
	margin:0 0 35px;
}
.team-data a.teama{
    display: table;
    font-size: 16px;
    font-weight: 500;
    color: #343d46;
    padding: 0 0 3px;
    border-bottom: 1px solid #343d46;
}
.team-data a.teama:hover{
    color: #777;
    border-bottom: 1px solid #777;
}


.big-img img{
    width: 320px;
    height: 320px;
	width:350px;
	height:350px;
    border-radius: 100%;
    object-fit: cover;
    margin: 0 0 40px;
	object-position: top;
}
.team-details-imgbx h4{
    font-size: 20px;
    font-weight: 500;
    color: #343d46;
    margin: 0 0 25px;
    display: flex;
    align-items: center;
}
.team-details-imgbx h4 a{
    color: #343d46;
}
.team-details-imgbx h4 a:hover{
    color: #777;
}
.team-details-imgbx h4 i{
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    display: block;
    background: #343d46;
    text-align: center;
    font-size: 15px;
	font-size:18px;
    color: #fff;
    margin-left: 20px
}
.team-details-imgbx h4 i:hover{
    color: #fff;
    background: #777;
}
.team-details-imgbx h6{
    margin: 0 0 25px;
    font-size: 20px;
    font-weight: 500;
    color: #343d46;
    padding: 0 0 3px;
    border-bottom: 1px solid #343d46;
    display: table;
    transition: .4s linear;
    -webkit-transition: .4s linear;
}
.team-details-imgbx h6 strong{
    font-weight: 700;
    text-transform: uppercase;
}
.team-details-imgbx h6:hover{
    color: #777;
}

.team-all-details{
    padding: 40px 0 0 30px;
}
.team-all-details h3,.team-all-details h1{
    font-size: 36px;
    font-weight: 600;
    color: #343d46;
    margin: 0 0 40px;
}
.team-all-details h4{
    font-size: 17px;
    font-weight: 600;
    color: #343d46;
    line-height: 26px;
    margin: 0 0 30px;
    padding: 0 0 30px;
    max-width: 89%;
    border-bottom: 1px solid #343d46;
}
.team-all-details p{
    font-size: 17px;
    font-weight: 300;
	font-weight:400;
    color: #343d46;
    line-height: 26px;
    margin: 0 0 5px;
}

.team-row{
    margin: 30px 0 0;
    padding: 30px 0 40px;
    border-top: 1px solid #343d46;
    border-bottom: 1px solid #343d46;
}
.team-inbx h5{
    font-size: 17px;
    line-height: 28px;
    color: #343d46;
    font-weight: 600;
    margin: 0 0 5px;
}
.team-inbx p{
    margin: 0;
    font-size: 17px;
    line-height: 28px;
}

.pracwrp {
    position: relative;
    padding: 60px 0 130px;
}
.pracwrp .about-breaf-data p{
    margin: 0 0 15px;
}
img.cimgbox{
    position: absolute;
    bottom: 45%;
    left: 0;
    z-index: -1;
    max-width: 250px;
}

header.prectis-header .navbar-light .navbar-nav .nav-link{
    color: #343d46;
}
header.prectis-header .lang-bx span{
    color: #343d46;
}
.prac-banner .iner-banner-img img{
    height: 450px;
}
.prac-banner .iner-banner-img:before{display: none;}
header.nav-new.prectis-header .navbar-light .navbar-nav .nav-link{
    color: #fff;
}
header.nav-new.prectis-header .lang-bx span{
    color: #fff;
}
/* **** End Team Page **** */
.inner-banner-center .container {
    max-width: 300px;
    position: relative;
    right: 30%;
}
.rtl .inner-banner-center .container {
    max-width: 330px;
    position: relative;
    right: -30%;
}
.contact-wrp .row .offset-lg-1.col-lg-4.col-md-5.col-sm-12 {
    width: 100%;
    text-align: center;
    margin-right: unset;
}
.page-template-template-newsletter .contact-frm .form-group .form-control {
    padding: 8px;
    border: 1px solid #343d46;
    
}
.page-template-template-newsletter .col-lg-4.col-md-7.col-sm-12{
    display: flex;
    justify-content: center;
}
.page-template-template-newsletter .wpcf7-form p{
    display: flex;
    justify-content: center;
}
.page-template-template-newsletter .contact-wrp .contact-data h2 {
    font-size: 44px;
    font-weight: bold;
    color: #343d46;
}
.col-md-3.col-sm-12 .footer-logo {
    gap: 25px;
}
.nav-row .fa-facebook-f:before,
.nav-row .fa-linkedin-in:before,
.nav-row .fa-instagram:before,
.nav-row .fa-search:before {
    position: relative;
    left: -3px;
}
.nav-row .fa-fw{
    width: 2.25em;
}
.rtl .nav-row .fa-facebook-f:before,
.rtl .nav-row .fa-linkedin-in:before,
.rtl .nav-row .fa-instagram:before,
.rtl .nav-row .fa-search:before {
    position: relative;
    left: 3px;
}
.f-social-link{
    display: flex;
    gap: 10px;
}

#Navigation .header-hide {
    display: none;
}
