/* normal css */
:root{
    --textColor:#777777;
    --darkColor: #222222;
    --primaryColor: #f7913b;
    --lightColor: #FFF1E5;
    --secondaryColor: #353b48;
    --pnx_transition: all 0.25s ease-in-out;
}
body{
    margin: 0;
    padding: 0;
    box-shadow: none;
    text-shadow: none;
    font-family: 'Outfit', sans-serif;
}
input:focus,
textarea:focus {
    outline: none;
    resize: none;
}
p {
    -webkit-font-smoothing: antialiased;
}
p,
h1,
h2,
h3,
h4 {
    word-wrap: break-word;
}
h1,
h2,
h3,
h4,
h5,
h6,
.title {
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
    font-weight: 700;
}
.widget,
.ds_wrapper,
.full_width {
    float: left;
    width: 100%;
}
a,
a:hover {
    text-decoration: none;
    color: var(--primaryColor);
}
ul li {
    list-style: none;
}
ul {
    padding: 0px;
}
img{
    max-width: 100%;
}

.hide {
   display: none;
}
.pnx_btn, a{
    transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    cursor: pointer;
}
.pnx_btn{
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 30px;
    color: #fff ;
    text-align: center;
    border-radius: 5px;
    background-color: var(--secondaryColor);
    overflow: hidden;
    position: relative;
    transition: all 0.5s;
}
.pnx_btn:hover, .pnx_primaryBtn{
    background-color: var(--primaryColor);
    color: #fff;
}
.pnx_btn:before {
    content: "";
    position: absolute;
    width: 100%;
    transform: rotate(45deg);
    height: 0px;
    left: 0;
    right: 0;
    margin: auto;
    background-color: rgb(255 255 255 / 10%);
    transition: all 0.5s;
    z-index: 1;
}
.pnx_btn:hover:before {
    height: 450%;
}
.pnx_primaryBtn:hover{
    background-color: var(--secondaryColor);
}
.pnx_btnHolder .pnx_btn:first-child {
    margin-right: 20px;
}
.pnx_bgLightBlue{
    background-color: #E9E9F6;
}
.paddY50 {
    padding: 50px 15px 0;
}
.paddY30 {
    padding-top: 15px;
    padding-bottom: 15px;
}
/***************************************/
/* Mobile Toggle Button*/
.pnx_toggleIcon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
}
.pnx_toggleBtn {
    margin: 0px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--lightColor);
    border-radius: 50%;
    border: 0px !important;
    box-shadow: none !important;
}
.pnx_toggleBtn span {
    height: 2px;
    background-color: var(--primaryColor);
    transition: .3s cubic-bezier(.97, .75, .61, 1.84);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 2px;
    display: inline-block;
    position: relative;
    width: 20px;
    margin: 0 0 0px;
}
.pnx_toggleBtn span:before {
    content: "";
    position: absolute;
    left: 0;
    top: -8px;
    width: 16px;
    background: var(--primaryColor);
    height: 2px;
}
.pnx_toggleBtn span:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 14px;
    background: var(--primaryColor);
    height: 2px;
}
.pnx_toggleBtn:hover span:before,
.pnx_toggleBtn:hover span:after,
.pnx_toggleBtn.checked span:before,
.pnx_toggleBtn.checked span:after {
    width: 100%;
}
.pnx_toggleBtn:hover span:before,
.pnx_toggleBtn:hover span:after,
.pnx_toggleBtn.checked span:before,
.pnx_toggleBtn.checked span:after,
.pnx_toggleBtn span:before,
.pnx_toggleBtn span:after,
.pnx_toggleBtn span:before,
.pnx_toggleBtn span:after {
    -webkit-transition: var(--pnx_transition);
    -moz-transition: var(--pnx_transition);
    -ms-transition: var(--pnx_transition);
    -o-transition: var(--pnx_transition);
    transition: var(--pnx_transition);
}
/* User Drop Down Header*/
/*=== Header Css ===*/
.pnx_bodyOverlay{
    display: none;
}
.pnx_OpenRightbar .pnx_bodyOverlay {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: rgb(0 0 0 / 50%);
    z-index: 99;
    display: block;
}
.pnx_header {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 10%);
    position: fixed;
    width: 100%;
    z-index: 999;
    top: 0;
}
.pnx_container {
    max-width: 1545px;
    margin: auto;
}
.pnx_header .navbar {
    padding: 0px;
}
.navbar-brand img {
    width: 148px;
}
.pnx_header .navbar-nav .nav-link {
    line-height: 80px;
    padding: 0px 20px;
    color: var(--darkColor);
    position: relative;
    font-size: 16px;
}
.pnx_header .navbar-nav .active .nav-link,
.pnx_header .navbar-nav .nav-link:hover{
    color: var(--primaryColor);
}
.pnx_header .navbar-nav .nav-link:after{
    content: '';
    position: absolute;
    width: 0px;
    height: 3px;
    background-color: var(--primaryColor);
    bottom: 0px;
    margin: auto;
    left: 0;
    right: 0;
    transition: linear 0.2s;
}
.pnx_header .navbar-nav .active .nav-link:after,
.pnx_header .navbar-nav .nav-link:hover::after{
    width: 40px;
}
.pnx_header .navbar-nav .active li .nav-link:after,
.pnx_header .navbar-nav li:hover li .nav-link:after{
    width: 0% !important;
    color: var(--secondaryColor);
}
.pnx_header .navbar-nav .active li:hover .nav-link:after{
    width: 100% !important;
    color: var(--primaryColor);
}
.pnx_header .navbar-nav .active li .nav-link,
.pnx_header .navbar-nav li:hover li .nav-link{
    color: var(--secondaryColor) !important;
}
.pnx_header .navbar-nav .active li:hover .nav-link,
.pnx_header .navbar-nav .active .active .nav-link{
    color: var(--primaryColor) !important;
}
.pnx_rightArrow_circle img{
    opacity: 0;
}
.pnx_headerWrapper {
    height: 80px;
}
.pnx_header ul li{
    position: relative;
}
.pnx_innerMenu {
    position: absolute;
    left: calc(50% - 100px);
    top: calc(100% + 15px);
    z-index: 999;
    background-color: rgb(255 255 255);
    width: 200px;
    border-top: 2px solid var(--primaryColor);
    box-shadow: 0px 10px 20px rgb(0 0 0 / 20%);
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s;
}
.pnx_header .navbar-nav .pnx_innerMenu li a {
    line-height: 50px;
}
.pnx_header ul li .pnx_innerMenu li:hover a:after{
    width: 100%;
}
.pnx_header .navbar-nav .pnx_innerMenu li.active a:after, 
.pnx_header .navbar-nav .pnx_innerMenu li:hover a:after{
    width: 100% !important;
}
.pnx_header ul li:hover .pnx_innerMenu{
    visibility: visible;
    opacity: 1;
}
.pnx_innerMenu.pnx_verticalMenu {
    width: 670px;
    left: calc(50% - 335px);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.pnx_innerMenu.pnx_verticalMenu > li {
    width: 33.3%;
    text-align: left;
}
ul.pnx_innerMenu:before {
    content: '';
    position: absolute;
    top: -10px;
    border-bottom: 10px solid var(--primaryColor);
    border-left: 10px solid rgb(0 0 0 / 0%);
    border-right: 10px solid rgb(0 0 0 / 0%);
    left: 0;
    right: 0;
    margin: auto;
    width: 1px;
}
/*===================*/
/********** Contact Information Css *********/
.pnx_infoWrapper {
    position: fixed;
    right: -445px;
    height: calc(100vh - 80px);
    top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
	z-index: 99;
    transition: var(--pnx_transition);
}
.pnx_infoWrapper .pnx_infoRight{
	width: 385px;
	height: 100%;
	background-color:  var(--primaryColor);
	position: relative;
	display: flex;
	flex-direction: column;
	opacity: 0;
	visibility: hidden;
	padding: 85px 60px 80px 0;
	-webkit-transform: translateX(150%);
	-moz-transform: translateX(150%);
	transform: translateX(150%);
	-webkit-transition: all 0.5s cubic-bezier(1.000, -0.600, 0.000, 1.650);
	-moz-transition: all 0.5s cubic-bezier(1.000, -0.600, 0.000, 1.650);
	transition: all 0.5s cubic-bezier(1.000, -0.600, 0.000, 1.650);
    align-items: self-start;
    justify-content: center;
}
.pnx_OpenRightbar .pnx_infoWrapper{
    right: 0;
}
.pnx_infoWrapper .pnx_infoRight::before{
	content: "";
	position: absolute;
	right: calc(-100% * 3);
	top: calc(-50% * 1);
	bottom: calc(-50% * 1);
	left: -30%;
	border-radius: calc(100% * 1);
	background-color:  var(--primaryColor);
	z-index: -1;    
    background-image: url(../images/menuBg.png);
    background-repeat: no-repeat;
    background-position: -3px;
}
.pnx_OpenRightbar .pnx_infoWrapper > .pnx_infoRight{
	opacity: 1;
	visibility: visible;
	-webkit-transform: translateX(0%);
	-moz-transform: translateX(0%);
	transform: translateX(0%);
}
.pnx_OpenRightbar .pnx_infoWrapper > .pnx_infoRight::before{
	-webkit-animation: right_header 0.8s cubic-bezier(0.680, -0.550, 0.265, 1.550);
	-moz-animation: right_header 0.8s cubic-bezier(0.680, -0.550, 0.265, 1.550);
	animation: right_header 0.8s cubic-bezier(0.680, -0.550, 0.265, 1.550);
	-webkit-animation-direction: alternate-reverse;
	-moz-animation-direction: alternate-reverse;
	animation-direction: alternate-reverse;
}
@keyframes right_header{
	0%{border-radius: calc(100% * 1);}
	100%{border-radius: calc(100% * 0.5);}
}
.pnx_innerInfo{
    color: #fff;
}
.pnx_innerInfo h4{
    font-size: 26px;
    font-weight: 500;
}
.pnx_innerInfo h5{
    font-size: 20px;
    font-weight: 500;
    margin-top: 35px;
}
.pnx_iconList a {
    color: rgb(255 255 255);
    margin-left: 0px;
    font-size: 16px;
    font-weight: 300;
}
.pnx_iconList li {
    position: relative;
    padding-left: 35px;
    font-weight: 300;
}
.pnx_iconList li span{
    position: absolute;
    left: 0;
}
.pnx_iconList svg {
    fill: rgb(255 255 255);
}
.pnx_rightArrow_circle {
    position: absolute;
    left: -30%;
}
.pnx_header_toggle {
    position: absolute;
    transform: rotate(-90deg);
    top: 50px;
    right: 10px;
    cursor: pointer;
    width: 80px;
    padding-left: 30px;
}
.pnx_header_toggle p {
    margin: 0;
    color: rgb(255 255 255);
}
.pnx_header_toggle > span.pnx_icon {
    vertical-align: middle;
    position: absolute;
    left: 10px;
    bottom: calc(100% - 25px);
    top: 0px;
}
.pnx_header_toggle > span.pnx_icon:before,
.pnx_header_toggle > span.pnx_icon:after{
	content:"";
	display:inline-block;
	width:2px;
	background-color:#ffffff;
	margin:0 2px;
}
.pnx_header_toggle > span.pnx_icon:before{
	height:14px;
}
.pnx_header_toggle > span.pnx_icon:after{
	height:24px;
}
.pnx_OpenRightbar .pnx_header_toggle > span.pnx_icon:before{
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transform-origin: 5px 5px;
	-moz-transform-origin: 5px 5px;
	transform-origin: 5px 5px;
}
.pnx_OpenRightbar .pnx_header_toggle > span.pnx_icon:after{
	height: 14px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transform-origin: -3px 5px;
	-moz-transform-origin: -3px 5px;
	transform-origin: -3px 5px;
}
/************* End Header Css ***********/
/************* Slider Css Start **********/
.pnx_sliderSection .carousel-control-next, 
.pnx_sliderSection .carousel-control-prev {
    width: 50px;
    height: 50px;
    background-color: var(--primaryColor);
    z-index: 999;
    position: absolute;
    left: 100px;
    top: calc(50% - 25px);
    bottom: 0;
    border-radius: 50px;
}
.pnx_sliderSection .carousel-control-next-icon, 
.pnx_sliderSection .carousel-control-prev-icon{
    height: 17px;
}
.pnx_sliderSection .carousel-control-prev {
    left: 40px;
}
.pnx_sliderSection .carousel-control-next{
    left: auto;
    right: 40px;
}
.pnx_sliderSection {
    position: relative;
    z-index: 8;
}
.pnx_darkSlide{
    background-color: #141C37;
    padding: 80px 15px;
}
.pnx_slideCaption {
    max-width: 1540px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}
.px_hero_bg{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}
.px_hero_bg > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pnx_captionContent {
    max-width: 600px;
}
.pnx_captionContent> span {
    padding: 5px 20px;
    background-color: var(--primaryColor);
    color: rgb(255 255 255);
    font-size: 18px;
    border-radius: 30px;
    margin-bottom: 20px;
    display: inline-block;
}
.pnx_captionContent>h2{
    font-size: 45px;
    font-weight: 800;
    color: var(--secondaryColor);
    /* max-width: 450px; */
    text-transform: uppercase;
}
.pnx_captionContent>p{
    font-size: 17px;
    color: var(--textColor);
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}
.pnx_btnHolder {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.pnx_darkSlide .pnx_captionContent>p,
.pnx_darkSlide .pnx_captionContent>h2{
    color: #fff;
}
.pnx_darkSlide .pnx_btnHolder .pnx_btn:last-child{
    background-color: #fff;
    color: var(--secondaryColor);
}
.pnx_darkSlide .pnx_btnHolder .pnx_btn:hover:last-child{
    background-color: var(--primaryColor);
    color: #fff;
}
/************* End Slider Section Css ************/
/********* Start About Us Css **************/
.pnx_sectionPadd{
    padding: 80px 0px;
}
.pnx_sectionHeading {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 970px;
    margin: auto;
}
.pnx_sectionHeading >h2{
    font-size: 50px;
    font-weight: 400;
    color: var(--secondaryColor);
    position: relative;
}
.pnx_sectionHeading >h2>span {
    font-size: 120px;
    opacity: 0.05;
    position: absolute;
    top: -28%;
    text-align: center;
    left: 0;
    right: 0;
    margin: auto;
    font-weight: bolder;
    z-index: -1;
}
.pnx_sectionHeading > p {
    max-width: 970px;
    margin: 15px auto 0px;
    font-size: 18px;
    color: var(--textColor);
}

.pnx_aboutSection .pnx_sectionHeading h2 ,
.pnx_aboutSection .pnx_sectionHeading p  {
    text-align: left;
}
.pnx_who_are a {
   margin-top: 30px;
}
.pnx_technoSection  .pnx_sectionHeading > p {
    color: rgb(197 197 197);
}
.pnx_videoHolder {
    margin: 20px auto 75px;
    max-width: 770px;
}
.pnx_upText {
    position: relative;
    color: var(--primaryColor);
    font-size: 30px;
    margin: 0px;
    display: block;
    text-align: center;
    font-weight: 500;
}
.pnx_upText:before {
    content: "";
    width: 280px;
    height: 280px;
    background-color: var(--lightColor);
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    top: -15px;
    left: 0;
    right: 0;
    margin: auto;
}
.pnx_box {
    margin: auto;
    border-radius: 6px;
    background-color: #fff9f7;
    /* box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 6%); */
    overflow: hidden;
    height: auto;
    padding: 30px 0;
}
.pnx_clicleIcon {
    width: 100px;
    height: 100px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: auto;
    position: relative;
    /* background-color: rgb(255 255 255); */
}
/* .pnx_box .pnx_upText {
    z-index: 1;
    margin-top: 55px;
} */
/* .pnx_box .pnx_upText::before {
    top: auto;
    bottom: 45%;
    width: 275px;
    height: 275px;
} */




.pnx_box p {
    margin: 15px 0px;
    text-align: center;
    font-weight: 600;
    color: var(--secondaryColor);
}
.pnx_aboutSection .pnx_upText::before {
   display: none;
}
.pnx_aboutSection h4 {
    text-align: left;
    font-weight: 600;
    margin: 60px 0 20px;
    font-size: 42px;
    background: -webkit-linear-gradient( -135deg, rgb(215,215,215) 0%, rgb(249,145,58) 0%, rgb(252,105,104) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.pnx_aboutInnerList {
    margin-top: 100px;
}
.pnx_aboutInnerList h3 {
    text-align: center;
    font-weight: 500;
    margin-bottom: 50px;
    color: var(--secondaryColor);
}


.pnx_connectUs_box .swiper-button-next, 
.pnx_connectUs_box .swiper-button-prev {
    display: none;
}
/******* Colors *******/




/* .pnx_box.pnx_yellowBox .pnx_upText::before {
    background-color: rgb(255 250 233);
}
.pnx_box.pnx_yellowBox .pnx_clicleIcon {
    border-color: rgb(255 184 0);
    background-color: rgb(255 250 233);
}
.pnx_box.pnx_yellowBox p{
    color: rgb(255 184 0);
}
.pnx_box.pnx_pinkBox .pnx_upText::before {
    background-color: #FFF5F9;
}
.pnx_box.pnx_pinkBox .pnx_clicleIcon {
    border-color: #FD549F;
    background-color: #FFF5F9;
}
.pnx_box.pnx_pinkBox p{
    color: #FD549F;
}
.pnx_box.pnx_greenBox .pnx_upText::before {
    background-color: #EEFEFF;
}
.pnx_box.pnx_greenBox .pnx_clicleIcon {
    border-color: #28C6DA;
    background-color: #EEFEFF;
}
.pnx_box.pnx_greenBox p{
    color: #28C6DA;
}
.pnx_box.pnx_lightGreenBox .pnx_upText::before {
    background-color: #E9F6D9;
}
.pnx_box.pnx_lightGreenBox .pnx_clicleIcon {
    border-color: #80CC28;
    background-color: #E9F6D9;
}
.pnx_box.pnx_lightGreenBox p{
    color: #80CC28;
} */
/********* End About Us Css **************/
/************ Service Section Css *************/
.pnx_serviceSection{
    position: relative;
    background: url(../images/serviceBg.jpg) no-repeat top center / cover;
}
.pnx_serviceSection .pnx_sectionHeading >h2 {
    color: rgb(255 255 255);
}
.myflaticon {
    width: 110px;
    display: inline-block;
}
/* services custome css */
.pnx_service_box {
    border-radius: 6px;
    background-color: rgb(255, 255, 255);
    position: relative;
    text-align: center;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    padding: 55px 30px;
    margin-top: 0px;
    box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 6%);
    height: 100%;
}
.pnx_service_box::after,
.pnx_service_box::before{
    content: '';
    position: absolute;
    width: 80%;
    left: 0;
    right: 0;
    height: 8px;
    background-color: var(--primaryColor);
    opacity: 0;
    visibility: hidden;
    transition: var(--pnx_transition);
    margin: auto;
}
.pnx_service_box::after{
    bottom: 0px;
    border-radius: 10px 10px 0 0 ;
}
.pnx_service_box::before{
    top: 0px;
    border-radius: 0 0 10px 10px;
}
.pnx_service_box:hover::after, 
.pnx_service_box:hover::before{
    visibility: visible;
    opacity: 1;
	cursor:pointer;
}
.pnx_service_box:hover .pnx_service_data h2{
	color:var(--primaryColor);
}
.pnx_service_box:hover {
    transform: translate(0px, -10px);
}
.pnx_service_box .bg_img:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.pnx_service_box .pnx_service_icon {
    position: relative;
}
.pnx_service_box .pnx_service_data {
    padding: 40px 0px 0px;
	position:relative;
}
.pnx_service_box .pnx_service_data {
    color: white;
}
.pnx_service_box .pnx_service_bottom a {
    color: var(--primaryColor);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
}
.pnx_service_box .pnx_service_data h2 {
    position: relative;
    padding-bottom: 20px;
    color: var(--secondaryColor);
    text-transform: capitalize;
	font-size: 18px;
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
	transition:0.5s;
    margin-bottom: 20px;
}
.pnx_service_box .pnx_service_data h2 > img {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.pnx_service_box .pnx_service_data p {
	transition:0.5s;
    color:var(--textColor);
    font-size: 14px;
}
.btm_margin {
    margin-bottom: 40px;
}
/*************** End Service Section Css ******************/
/*************** Start Orange Section Css ******************/
.pnx_scheduleSection {
    background-image: url(../images/BG.jpg);
    color: rgb(255 255 255);
    background-size: cover;
    background-position: center;
    padding: 40px 0;
}
.pnx_scheduleSection .pnx_btn {
    background-color: #fff;
    color: #000 ;
}
.pnx_scheduleSection .pnx_rightBtn .pnx_btn:hover {
    background-color: var(--secondaryColor);
    color: #fff !important;
}
.call_img_section {
    text-align: center;
}
.pnx_scheduleContent {
    padding: 40px 0;
}
.pnx_rightBtn {
    display: flex;
    align-items: center;
    justify-content: end;
}
.pnx_scheduleContent h3 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 600;
}
.pnx_scheduleContent p{
    max-width: 670px;
    font-size: 14px;
}
.pnx_scheduleContent p:last-child {
    margin-bottom: 0;
}
.pnx_rightBtn .pnx_btn:hover {
    background-color: rgb(255 255 255);
    color: var(--primaryColor) !important;
}

.pnx_btnHolder .pnx_btn {
    height: 50px;
    line-height: 50px;
    padding: 0 45px;
    font-size: 16px;
}
/*************** End Orange Section Css ******************/
/*************** Start Section Css ******************/
.pnx_bigHead.pnx_sectionHeading >h2>span {
    top: 0%;
    font-size: 100px;
}
.Rectangle_8 {
    border-radius: 6px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.06);
    position: absolute;
    left: 775px;
    top: 4401px;
    width: 370px;
    height: 354px;
    z-index: 689;
}
.pnx_clientSection {
    background: url(../images/clientBg.jpg) no-repeat top center / cover;
    position: relative;
}
.pnx_clientSection h2{
    color: #fff;
    font-size: 36px;
}
.pnx_clientBox {
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    padding: 30px 10px 10px;
}
.pnx_clientImg_box {
    display: flex;
    align-items: center;
    justify-content: start;
    padding-left: 20px;
}
.pnx_clientImg_box span {
    border: 1px solid rgb(218 218 218);
    border-radius: 50%;
    overflow: hidden;
    width: 60px;
    height: 60px;
    margin-right: 15px;
    margin-bottom: 25px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}
.pnx_clientDetail {
    text-align: left;
}
.pnx_clientDetail p{
    color: var(--primaryColor);
    font-size: 14px;
    font-weight: 600;
}
.pnx_clientDetail h5 {
    font-size: 18px;
    margin-bottom: 5px;
}
.pnx_clientReview_box {
    /* background: url(../images/grayQoute.png) no-repeat center center / auto; */
    padding: 15px 30px;
    position: relative;
    border-style: solid;
    border-width: 1px;
    border-color: rgb(233, 233, 233);
    border-radius: 10px;
    background-color: rgb(249, 249, 249);
    min-height: 220px;
    display: flex;
    align-items: center;
}
.pnx_clientReview_box p{
    font-size: 14px;
    color: var(--textColor);
    margin-bottom: 0;
}
.pnx_quteImg {
    position: absolute;
    right: 20px;
    top: -8px;
}
.pnx_swiperSlider {
    position: relative;
}
/** Start Swiper Slider Css **/
.swiper-pagination.swiper-pagination-horizontal {
    position: relative;
    margin-top: 45px;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--primaryColor);
    opacity: 1;
}
.swiper-pagination-bullet {
    background-color: rgb(255 255 255);
    opacity: 0.3;
}
.swiper-button-next:after, 
.swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after, 
.swiper-rtl .swiper-button-next:after{
    display: none;
}
.swiper-button-prev, .swiper-button-next  {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgb(255 255 255);
}
.swiper-button-prev:hover svg, .swiper-button-next:hover svg{
    fill: #fff;
}
.swiper-button-prev:hover, .swiper-button-next:hover{
    background-color: var(--primaryColor);
}
.swiper-button-prev {
    left: -100px;
}
.swiper-button-next {
    right: -100px;
}
/** End Swiper Slider Css **/
/*************** End Section Css ******************/
/*** Filter Gallery Project Css ***/
.pnx_galleryImages .row {
    flex-wrap: wrap;
}
.pnx_galleryImages .col {
    flex: 0 0 20%;
}
.gallery_title{
    font-size: 36px;
    color: var(--primaryColor);
    text-align: center;
    font-weight: 500;
    margin-bottom: 70px;
}
.gallery_title:after {
    content: "";
    position: absolute;
    width: 7.5%;
    left: 46.5%;
    height: 45px;
    border-bottom: 1px solid #5e5e5e;
}
.pnx_filterButton{
    font-size: 14px;
    border-radius: 5px;
    text-align: center;
    color: var(--darkColor);
    margin-bottom: 0px;
    padding: 10px 35px;
    border-radius: 70px;
    outline: none !important;
    box-shadow: none !important; 
}
.pnx_filterButton:hover, .pnx_filterButton.pnx_active{
    color: #ffffff;
    background-color: var(--primaryColor);
}
.btn-default:active .pnx_filterButton:active{
    background-color: var(--primaryColor);
    color: white;
}
.pnx_centerBtn_box {
    margin-top: 20px;
    display: inline-block;
    margin-bottom: 40px;
    width: fit-content;
    padding: 10px 30px;
    background-color: rgb(249 249 249);
    border: 1px solid rgb(233 233 233);
    border-radius: 50px;
}
.port-image{
    width: 100%;
}
.gallery_product{
    margin-bottom: 30px;
    position: relative;
    display: block;
    color: inherit;
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
    background-color: #ffffff;
    box-shadow: 0px 20px 27.6px 2.4px rgb(35 35 35 / 5%);
}
.gallery_product:hover{
    transform: translateY(-5px);
    box-shadow: 5px 10px 40px rgb(0 0 0 / 25%);
    box-shadow: 0px 20px 27.6px 2.4px rgb(35 35 35 / 15%);
}
.gallery_product > .gallery_product_overlay_image{
    position: absolute;
    top: 5.4%;
    left: 13.5%;
    bottom: 41%;
    right: 13.6%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.gallery_product .pnx_galleryImg {
    margin-bottom: 15px;
    border-radius: 5px;
}
.pnx_filter h6 {
    font-size: 13px;
    cursor: pointer;
    transition: all 0.5s;
    font-weight: 500;
    max-width: 80%;
    margin: 0 auto;
}
.pnx_filter h6:hover{
    color: var(--primaryColor);
}
/*************************************/
/** Technologies Section Css ***/
.pnx_technoSection{
    background: url(../images/technoBg.jpg) no-repeat top center / cover;
}
.pnx_technoSection h2{
    font-size: 36px;
    color: #fff;
}
.pnx_techno .pnx_service_box {
    padding: 30px 0;
    margin-top: 0px;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.pnx_techno .pnx_service_box p {
    margin-bottom: 0;
    margin-top: 10px;
}
.pnx_techno .pnx_service_box::after, 
.pnx_techno .pnx_service_box::before {
    height: 4px;
}
.pnx_techno {
    padding: 35px 24px 0;
}
.pnx_technoImage {
    display: flex;
    height: 56px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
/**********************************************/
/******* Connect Us Section Css ******/
.pnx_connectUs_box {
    position: relative;
    max-width: 970px;
    margin: 100px auto 30px;
}
.pnx_connectUs_box .swiper-button-next,
.pnx_connectUs_box .swiper-button-prev {
    background-color: var(--secondaryColor);
}
.pnx_connectUs_box .swiper-button-next:hover,
.pnx_connectUs_box .swiper-button-prev:hover {
    background-color: var(--primaryColor);
}
.pnx_connectUs_box .swiper-button-next svg,
.pnx_connectUs_box .swiper-button-prev svg{
    fill: #fff;
}
.pnx_connectUsSection .pnx_clientReview_box {
    padding: 50px 70px;
    background-image: none;
    flex-direction: column;
}
.pnx_connectUsSection .pnx_clientReview_box h3 {
    font-size: 30px;
    margin-bottom: 20px;
    color: var(--secondaryColor);
}
.pnx_connectUsSection .pnx_clientReview_box p {
    font-size: 18px;
    margin-bottom: 25px;
}
.pnx_btnView .pnx_btn{
    width: fit-content;
}
.pnx_btnView {
    display: flex;
    align-items: center;
    justify-content: center;
}
.pnx_galleryImages img {
    margin-top: 0px;
    width: 100%;
}
.pnx_swiperImage {
    margin-top: 30px;
    position: relative;
}
.pnx_imgOverlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgb(0 0 0 / 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    transform: scale(0);
}
.pnx_swiperImage:hover .pnx_imgOverlay{
    transform: scale(1);
}
.pnx_contactSection .pnx_contactInfo_box {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 9;
}
.pnx_contact_location {
    margin-top: 285px;
}
.pnx_contact_location iframe {
    position: relative;
    top: 10px;
}
/******* End Connect Us Section Css ******/

/**********************************************/
.company_logo {
    padding: 70px 0;
    text-align: center;
}
.mar10 {
    margin: 70px 0 30px 0px;
}
.company_logo .pnx_sectionHeading {
    margin-bottom: 50px;
}
/******* Connect Us Section Css ******/
/******* Mission Section Css ******/
.mission_section {
    background-color: #f9f9f9;
}
.mission_section h2 {
    text-align: left;
}
.mission_section .pnx_sectionHeading >h2>span {
    font-size: 100px;
    text-align: left;
    top: -15%;
}
.pnx_pera_section {
    margin-top: 50px;
}
.mission_section p {
    color: var(--secondaryColor);
    font-size: 18px;
}
.mission_section .img_our_mission {
    text-align: center;
}

/******* Mission Section Css End ******/
/******* Vision Section Css ******/
.vision_section h2 {
    text-align: left;
}
.vision_section .pnx_sectionHeading >h2>span {
    font-size: 100px;
    text-align: left;
    top: -15%;
}
.vision_section p {
    color: var(--secondaryColor);
    font-size: 18px;
}
.vision_section .img_our_mission {
    text-align: center;
}
ul.content_vision_our {
    margin-top: 50px;
}
.content_vision_our span {
    position: relative;
    margin-right: 0;
    display: flex;
    align-items: center;
    margin-top: 5px;
}
.content_vision_our li {
    display: flex;
    gap: 15px;
}
.vision_box {
    display: flex;
    position: relative;
    top: 4px;
}
.dot_v {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50px;
    top: 0;
    left: 0;
    z-index: 1;
}
.dot_l {
    position: absolute;
    content: "";
    width: 10px;
    height: 4px;
    top: 3px;
    left: -1px;
}

/******* Mission Section Css End ******/


/*** Get In Touch Section Css ***/
.pnx_getInTouchSection {
    background-color: rgb(245 245 245);
}
.pnx_contactInfo_box {
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 6%);
    padding: 10px;
    display: flex;
    align-items: start;
    justify-content: start;
    max-width: 970px;
    margin: auto;
}
.pnx_formHeading p {
    max-width: 630px;
    margin: 20px auto 50px;
    color: var(--textColor);
}
.pnx_blackBox {
    width: 360px;
    background-color: var(--secondaryColor);
    color: rgb(255 255 255);
    padding: 50px 25px;
    border-radius: 10px;
}
.pnx_formBox {
    padding-left: 30px;
    width: calc(100% - 360px);
    padding-right: 30px;
    padding-top: 40px;
    padding-bottom: 40px;
}
.pnx_formBox > h4 {
    font-size: 32px;
    font-weight: 500;
    color: var(--darkColor);
}
.pnx_formBox .form-control {
    border: 0px;
    border-bottom: 1px solid rgb(223 223 223);
    border-radius: 0px;
    margin-bottom: 20px;
    line-height: 40px;
    padding: 0px;
    font-size: 14px;
    outline: none !important;
    box-shadow: none !important;
}
.pnx_formBox .form-label {
    color: var(--darkColor);
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 0px;
    width: 100%;
}
.pnx_formBox textarea.form-control {
    line-height: normal;
    resize: none;
}
.pnx_formBox p {
    max-width: 460px;
    font-size: 16px;
    color: var(--textColor);
    margin-bottom: 25px;
}
.pnx_formBox .pnx_btnView {
    justify-content: start;
    margin-top: 30px;
}
.pnx_formBox .pnx_btnView .pnx_btn{
    border: 0px;
}
/*** End Get In Touch Section Css ***/
/******** Fooder Css **********/
footer {
    background-color: var(--secondaryColor);
    color: rgb(255 255 255);
    text-align: center;
    padding: 80px 0px 0px;
}
.pnx_footer > img {
    margin-bottom: 30px;
    max-width: 236px;
}
.pnx_footer > p {
    font-size: 18px;
    max-width: 970px;
    margin: 0px auto 25px;
    color: #d8deec;
    line-height: 30px;
}
.pnx_socialList.navbar {
    max-width: fit-content;
    margin: 0px auto 30px;
    justify-content: center;
}
.pnx_socialList.navbar li {
    margin: 5px 5px;
    position: relative;
}
.pnx_socialList li:before {
    content: "";
    position: absolute;
    width: 30px;
    height: 5px;
    background-color: rgb(38 43 54);
    bottom: 0px;
    border-radius: 50%;
    left: 0;
    right: 0;
    margin: auto;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
}
.pnx_socialList.navbar li:hover::before{
    opacity: 1;
    visibility: visible;
}
.pnx_socialList li a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #262B36;
    border-radius: 50%;
    transition: var(--pnx_transition);
}
.pnx_socialList li a:hover{
    background-color: var(--primaryColor);
    transform: translate(0, -10px);
}
.pnx_socialList li a svg {
    fill: rgb(255 255 255);
}
.pnx_lastFooter{
    background-color: #262B36;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pnx_lastFooter >p{
    font-size: 16px;
    margin-bottom: 0px;
}
.pnx_footer {
    border-bottom: 1px solid rgb(255 255 255 / 10%);
    margin-bottom: 00px;
}
.pnx_subscribeForm {
    margin: 30px auto 80px;
    max-width: 570px;
    position: relative;
}
.pnx_subscribeForm h2 {
    font-size: 26px;
    font-weight: normal;
    margin-bottom: 25px;
}
.pnx_subscribeForm input.form-control {
    background-color: #2e3440;
    border: 0;
    line-height: 50px;
    padding: 0px 35px;
    border-radius: 50px;
}
.pnx_subscribeForm button {
    font-size: 16px;
    font-weight: 300;
    color: rgb(255 255 255);
    background-color: var(--primaryColor);
    border: 0px;
    border-radius: 50px !important;
    padding: 0px 35px;
    position: relative;
    left: -20px;
    z-index: 9;
}
/************************* End Home Page Css  *************************/
/** ================ Start About Page Css ============== **/
.pnx_bannerSection {
    text-align: center;
    padding: 35px;
    color: #fff;
    background: url(../images/bannerBg.jpg) no-repeat top center / cover;
}
.pnx_bannerSection h1{
    font-size: 30px;
    font-weight: 500;
}
.pnx_bannerSection ul{
    display: inline-block;
    width: fit-content;
    margin: 15px auto;
    border-radius: 50px;
}
.pnx_bannerSection ul {
    display: inline-block;
    width: fit-content;
    margin: 15px auto;
    padding: 10px 30px;
    background-color: var(--primaryColor);
}
.pnx_bannerSection ul li{
    display: inline;
    font-size: 14px;
}
.pnx_bannerSection ul li a{
    color: #fff;
}
.pnx_sectionHeading.pnx_headingLeft {
    text-align: left;
}
.pnx_sectionHeading.pnx_headingLeft > h2> span{
    text-align: left;
    font-size: 100px;
    top: 0;
}
.pnx_headingLeft > p {
    font-size: 22px;
    color: var(--darkColor);
    font-weight: 500;
}
.pnx_leftText {
    margin: 35px 0;
    font-size: 18px;
    color: var(--textColor);
    line-height: 30px;
}
.pnx_meetImage_box {
    position: relative;
    width: 100%;
    text-align: center;
}
.pnx_meetImage_box:before {
    content: '';
    position: absolute;
    width: 100%;
    top: 10%;
    margin: 0px auto;
    background-color: rgb(243 249 255);
    height: calc(100% - 10%);
    z-index: -1;
    left: 0;
    right: 0;
}
.mrg60 {
    margin-top: 60px;
}
.pnx_meetContent_dv .pnx_clientDetail h5 {
    font-size: 30px;
    margin-bottom: 10px;
}
.pnx_meetContent_dv > p {
    color: var(--textColor);
    font-size: 18px;
    line-height: 30px;
    margin-top: 30px;
}
/* .pnx_meetContent_dv {
    padding-top: 10%;
} */
.pnx_meetContent_dv > p:last-child {
    margin-bottom: 0;
}
.pnx_meetImage_box img {
    margin: auto;
}
/** ================ End About Page Css ============== **/
.pnx_linkTag:hover {
    color: rgb(255 255 255);
}
/** ================ Start Work Page Css ============== **/
.p_relative{
    position: relative;
    margin-bottom: 80px;
}
.pnx_pojectList_box {
    border-radius: 20px;
    background-color: rgb(248, 248, 255);
    z-index: 1;
    max-width: 470px;
    padding: 40px 40px 50px;
}
.pnx_steps {
    color: rgb(235 235 249);
    font-size: 70px;
    font-weight: bold;
    display: block;
    margin-bottom: 90px;
    line-height: 55px;
}
.pnx_topProject_list {
    margin-top: 95px;
}
.pnx_pojectList_box.pnx_leftBox {
    margin-top: 80px;
    margin-bottom: 60px;
}
.pnx_screenImage {
    display: block;
    position: absolute;
    top: 0px;
    right: 50px;
}
.pnx_pojectList_box h2 {
    font-size: 34px;
    color: var(--secondaryColor);
    margin-bottom: 20px;
}
.pnx_linkTag {
    background-color: var(--lightColor);
    padding: 5px 15px;
    display: inline-block;
    border-radius: 50px;
    margin-bottom: 30px;
}
.pnx_pojectList_box p {
    color: rgb(140 135 149);
    margin-bottom: 40px;
}
.pnx_imageHolder img {
    padding: 8px;
    /*max-height: 50px;*/
    border-radius: 5px;
}
.pnx_imageHolder {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.pnx_pojectList_box.pnx_rightBox {
    margin-left: auto;
    margin-top: 20px;
    margin-bottom: 65px;
}
.pnx_pojectList_box.pnx_rightBox .pnx_screenImage {
    top: auto;
    bottom: 0;
    left: 0;
}
.pnx_pojectList_box.pnx_rightBox .pnx_steps {
    top: 95px;
    position: relative;
    text-align: right;
}
.pnx_bannerImage h6 {
    margin-bottom: 45px;
}
.pnx_videoBox {
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 40px;
    background-color: rgb(255 255 255);
}
.pnx_bannerImage .pnx_videoBox h6 {
    margin: 30px 10px 20px;
    text-align: left;
    line-height: 30px;
    font-size: 18px;
    font-weight: 500;
    max-width: 300px;
}
.pnx_pojectList_box.pnx_leftBox a.pnx_linkTag {
    color: var(--primaryColor);
}
.pnx_pojectList_box.pnx_rightBox a.pnx_linkTag {
    color: var(--primaryColor);
}
/** ================ End Work Page Css ============== **/
/** ================ Start Career Page Css ============== **/
.pnx_careerContent {
    margin-top: 75px;
}
.pnx_jobsContent {
    margin: 80px auto 50px;
    max-width: 570px;
}
.pnx_jobsContent h3{
    color: var(--secondaryColor);
    font-size: 40px;
    font-weight: 600;
}
.pnx_jobsContent p{
    color: var(--textColor);
}
.pnx_careerBox {
    display: flex;
    text-align: left;
    align-items: center;
    justify-content: space-between;
    padding: 45px 40px;
    border-style: solid;
    border-width: 1px;
    margin-bottom: 30px;
    border-color: rgb(233, 233, 233);
    border-radius: 6px;
    background-color: rgb(253, 253, 253);
}
.pnx_careerBox h4{
    font-size: 22px;
    color: var(--secondaryColor);
    font-weight: 600;
}  
.pnx_careerBox p{
    font-size: 16px;
    color: var(--primaryColor);
    font-weight: 500;
    margin-bottom: 0;
}
.w_short{
    max-width: 570px;
    margin: 0px auto 30px;
}
.pnx_imageDv {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 110px;
    margin: 0px auto 15px;
}
.pnx_offerSection .pnx_service_box {
    padding: 50px 15px;
}
.pnx_service_box.pnx_thinBorder::after, 
.pnx_service_box.pnx_thinBorder::before {
    height: 3px;
}
.pnx_service_box h5 {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondaryColor);
}
/** Resume Form Css **/
.pnx_resumeForm_box {
    border-radius: 10px;
    padding: 50px;
    max-width: 770px;
    margin: 100px auto 0;
    text-align: left;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.06);
}
.pnx_resumeForm_box .pnx_formBox{
    width: 100%;
    padding: 0;
}
.pnx_fileUpload {
    border-width: 1px;
    border-color: rgb(231, 231, 243);
    border-style: dashed;
    border-radius: 10px;
    background-color: rgb(252, 252, 252);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 30px;
    text-align: center;
    cursor: pointer;
}
.pnx_resumeInput {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    display: none;
} 
.pnx_fileUpload p {
    font-size: 16px;
    margin-bottom: 0;
    margin-top: 15px;
    font-weight: 500;
    color: var(--darkColor);
}
.pnx_fileUpload svg{
    fill: var(--primaryColor);
}
.pnx_formBox .pnx_btnView {
    justify-content: start;
    margin-top: 20px;
}
.pnx_ResumeSection .pnx_sectionHeading >h2>span {
    font-size: 100px;
}
/** ================ End Career Page Css ============== **/
/******** Select2 Css ********/
.select2-selection.select2-selection--single {
    border: 0px;
    border-bottom: 1px solid rgb(223 223 223);
    border-radius: 0px;
    margin-bottom: 20px;
    line-height: 40px;
    padding: 0px;
    font-size: 14px;
    outline: none !important;
    box-shadow: none !important;
    height: 40px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--textColor);
    line-height: 40px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 39px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: rgb(0 0 0 / 0%) var(--textColor) var(--textColor) rgb(0 0 0 / 0%);
    border-width: 0px 2px 2px 0px;
    width: 7px;
    height: 7px;
    transform: rotate(45deg);
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: rgb(0 0 0 / 0%) var(--textColor) var(--textColor) rgb(0 0 0 / 0%);
    border-width: 0px 2px 2px 0px;
    width: 7px;
    height: 7px;
    transform: rotate(-135deg);
}
.select2-dropdown {
    border: 1px solid var(--primaryColor) !important;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--primaryColor);
    color: rgb(255 255 255);
}
/******** End Select2 Css ********/
/** ================ Start Technologies/News Page Css ============== **/
.pnx_sectionHeading .pnx_jobsContent {
    margin: 30px auto;
    max-width: 630px;
}
.pnx_newsList_box {
    display: block;
    padding: 10px 10px 30px;
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 30px 0px rgb(41 36 95 / 10%);
    margin-bottom: 30px;
}
.pnx_newsList_box p {
    margin: 25px 15px 0;
    font-weight: 600;
    color: var(--darkColor);
} 
.pnx_newsImage img{
    width: 100%;
}
.pnx_singleImage {
    border-radius: 6px;
}
.pnx_newsContent h4 {
    color: var(--secondaryColor);
    margin-bottom: 25px;
}
.pnx_newsContent p {
    color: var(--textColor);
    margin-bottom: 30px;
    font-size: 15.5px;
}
.pnx_newsContent p:last-child{
    margin-bottom: 0;
}
.pnx_newsList {
    margin-top: 50px;
    text-align: center;
}
.pnx_newsList h4{
    font-size: 24px;
    color: var(--secondaryColor);
    margin-bottom: 30px;
}
.pnx_listBox {
    border-style: solid;
    border-width: 1px;
    border-color: rgb(233, 233, 233);
    border-radius: 6px;
    background-color: rgb(253, 253, 253);
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 20px 30px;
    text-align: left;
    margin-bottom: 30px;
}  
.pnx_listIcon_news {
    margin-right: 20px;
}
.pnx_listIcon_news h6{
    color: var(--secondaryColor);
    font-size: 20px;
}
.pnx_newsImage {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
}
.pnx_newsImage .pnx_imgOverlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgb(0 0 0 / 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(255 255 255);
    font-size: 20px;
    transition: all 0.5s;
    transform: scale(0);
}
.pnx_viewIcon {
    width: 50px;
    height: 50px;
    background-color: var(--primaryColor);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}
.pnx_viewIcon svg{
    fill: #fff;
}
.pnx_newsImage:hover .pnx_imgOverlay{
    transform: scale(1);
}
/** ================ End Technologies Page Css ============== **/
/** ================ Start Our Services Page Css ============== **/
.pnx_ourServices {
    position: relative;
    padding: 80px 0 0;
    max-width: 1330px;
    margin: 0 auto;
}
.pnx_ourServices_image h4 {
    margin: 10px 0 25px;
    font-size: 32px;
    color: var(--secondaryColor);
}
.pnx_ourServices_image > img {
    width: 100px;
}
.pnx_orangeBg {
    background-color: var(--primaryColor);
    color: rgb(255 255 255);
    font-size: 18px;
    padding: 7px 30px;
}
.pnx_technoUsed ul {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-items: center;
    justify-content: center;
}
.pnx_technoUsed ul> li {
    border-style: solid;
    border-width: 1px;
    border-color: rgb(237, 227, 242);
    border-radius: 10px;
    background-color: rgb(253, 251, 255);
    box-shadow: 0px 12px 10px 0px rgba(44, 43, 101, 0.06);
    width: 170px;
}
.pnx_technoUsed ul> li {
    border-style: solid;
    border-width: 1px;
    border-color: rgb(237, 227, 242);
    border-radius: 10px;
    background-color: rgb(253, 251, 255);
    box-shadow: 0px 12px 10px 0px rgb(44 43 101 / 6%);
    width: 170px;
    padding: 10px;
    height: 70px;
    align-items: center;
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-right: 20px;
}
.pnx_ourServices_content {
    text-align: left;
    color: var(--textColor);
}
.pnx_orangeColor{
    color: var(--primaryColor);
    font-weight: 600;
}
.pnx_ourServices_content p {
    margin-bottom: 35px;
    font-size: 15px;
}
.pnx_ourServices_box {
    position: relative;
    padding: 40px 20px 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #cccccc70;
}
.pnx_ourServices_box:last-child {
    border: none;
    padding: 40px 20px 0;
    margin-bottom: 0;
}
/** ================ End Our Services Page Css ============== **/
/************************************************* 
    Popup start
**************************************************/
.modal-open .pnx_main_wrapper {
    filter: blur(2px);
    -webkit-filter: blur(2px);
    -moz-filter: blur(2px);
    -ms-filter: blur(2px);
    -o-filter: blur(2px);
}
.pnx_modal  .modal-dialog {
    max-width: 1170px;
    width: 100%;
}
.modal-content{
    border: 0;
}
.pnx_modal button.close {
	position: absolute;
    right: -10px;
    top: -10px;
    width: 25px;
    height: 25px;
    background-color: #fff;
    color: var(--primaryColor);
    font-size: 17px;
    outline: none;
    opacity: 1;
    border-radius: 25px;
    border: 2px solid var(--primaryColor);
    display: flex;
    align-items: center;
    z-index: 9;
}
.pnx_modal .modal-title {
    font-size: 22px;
    text-transform: capitalize;
    color: #303a47;
    font-weight: bold;
    font-family: 'Nunito', sans-serif;
}
.pnx_modal .modal-header {
    border-color: #303a47;
    padding-top: 20px;
}
.pnx_modal .modal-body {
    padding: 30px 40px 40px;
}
.pnx_modal_heading {
    color: var(--primaryColor);
    font-size: 18px;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
	text-transform: capitalize;
    margin: 20px 0 10px;
}
.pnx_modal  ul {
    padding: 0 0 0 10px;
    margin: 0;
    list-style: none;
}
.pnx_modal ul li {
    font-size: 14px;
	position:relative;
	padding-left:27px;
}
.pnx_modal ul li:before {
    position: absolute;
    top: 8px;
    left: 0;
    width: 12px;
    height: 12px;
    content: '';
    background-image: url('../images/check.png');
}
.pnx_modal ul.pnx_role {
    margin: 0 0 15px 0;
}
.pnx_modal  .pnx_btn {
    margin-top: 10px;
    text-transform: capitalize;
}
.modal-backdrop {
    background-color: rgb(0 0 0 / 90%);
}
.pnx_singlePageModal .modal-dialog {
    max-width: 650px;
    text-align: center;
}
.pnx_singlePageModal .pnx_btn {
    margin: 15px auto 0;
}
.pnx_singlePageModal.pnx_modal .modal-header,
.pnx_singlePageModal.pnx_modal .modal-body {
    border-color: transparent;
    padding: 0px;
    border: 0;
}
.pnx_singlePageModal .modal-dialog {
    max-width: 650px;
    text-align: center;
    width: fit-content;
}
/********************************************************************************************* 
Popup end
*********************************************************************************************/
/* Sectors Or Verticals Css */
.pnx_timeLineBox {
    margin: 80px 0px 0;
    position: relative;
    z-index: 1;
    color: #fff;
}
.pnx_imgBox {
    position: relative;
    width: 90%;
    margin: auto;
    padding: 4px;
    border-radius: 6px;
    background-image: -moz-linear-gradient( 0deg, rgb(215,215,215) 0%, rgb(249,145,58) 0%, rgb(252,105,104) 100%);
    background-image: -webkit-linear-gradient( 0deg, rgb(215,215,215) 0%, rgb(247 145 59) 0%, rgb(252 104 104) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(215,215,215) 0%, rgb(249,145,58) 0%, rgb(252,105,104) 100%);
}
.pnx_imgBox:before {
    content: '';
    border-radius: 50px;
    background-color: rgb(247, 145, 59);
    position: absolute;
    left: 0;
    top: 0%;
    bottom: 0px;
    width: 80%;
    height: 110%;
    z-index: -1;
    right: 0;
    background-image: -moz-linear-gradient( 0deg, rgb(215,215,215) 0%, rgb(249,145,58) 0%, rgb(252,105,104) 100%);
    background-image: -webkit-linear-gradient( 0deg, rgb(215,215,215) 0%, rgb(247 145 59) 0%, rgb(252 104 104) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(215,215,215) 0%, rgb(249,145,58) 0%, rgb(252,105,104) 100%);
    margin: auto;
}
.pnx_imgBox img {
    border-radius: 6px;
} 
.pnx_textBox h3 {
    font-size: 32px;
    color: var(--secondaryColor);
    margin-bottom: 25px;
}
.pnx_textBox p {
    font-size: 14px;
    color: var(--textColor);
    margin-bottom: 25px;
}
.pnx_darkBg{
    background-color: var(--secondaryColor);
}
.pnx_darkBg .pnx_sectionHeading> h2,
.pnx_darkBg .pnx_sectionHeading > p {
    color: rgb(255 255 255);
}
.pnx_textBox .pnx_btn {
    width: fit-content;
}
.pnx_verticalBox {
    margin-top: 50px;
}
.pnx_imgHolder {
    position: relative;
    margin-bottom: 30px;
}
.pnx_rocket {
    position: absolute;
    right: 25px;
    bottom: -46px;
    width: 92px;
    height: 92px;
    background-color: rgb(255 255 255);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 60px 0px rgb(44 43 101 / 20%);
}
.pnx_textContentBox h5 {
    font-size: 20px;
    color: var(--secondaryColor);
}
.pnx_textContentBox p {
    font-size: 16px;
    color: var(--textColor);
}
.pnx_imgHolder img {
    border-radius: 6px 6px 0 0;
}
.pnx_mainContent_box {
    margin-bottom: 45px;
}
/* Sectors Or Verticals End */
/********* MOtion Plan Css ***********/
.pnx_line {
    position: absolute;
    z-index: -1;
}


/*********************  Button Design Css *****************/
.pnx_circleBtn {
    cursor: pointer;
    margin-left: 5px;
    margin-bottom: 15px;
    text-shadow: none;
    box-sizing: border-box;
    font-size: 2em;
    font-family: Helvetica, Arial, Sans-Serif;
    text-decoration: none;
    font-weight: bold;
    color: rgb(255 255 255);
    height: 110px;
    line-height: 30px;
    padding: 20px 40px;
    display: flex;
    width: 165px;
    background: linear-gradient(to right, rgb(126 201 89) 0%, rgb(0 183 158) 100%);
    border-radius: 50%;
    border-bottom: 2px solid rgb(1 218 180);
    top: 0;
    transition: all 0.06s ease-out;
    position: relative;
    left: 0;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    font-weight: 600;
    font-size: 24px;
    text-transform: uppercase;
}
.pnx_circleBtn:visited {
    color: #5ea97d;
}
.pnx_circleBtn:hover {
    background: linear-gradient(to left, #007a9e 0%, #00b79e 70%, #7ec959 100%);
}
.pnx_circleBtn:active {
    top: 6px;
    /* text-shadow: 0 -2px 0 #7fbb98, 0 1px 1px #c2dece, 0 0 4px white;
    color: white; */
    animation: clickBtn 0.2s linear infinite;
}
.pnx_circleBtn:active:before {
    top: 0;
    box-shadow: 0 3px 3px rgb(0 0 0 / 30%), 0 3px 9px rgb(0 0 0 / 20%);
}
.pnx_circleBtn:before {
    display: inline-block;
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    z-index: -1;
    top: 6px;
    border-radius: 50%;
    height: 125px;
    background: linear-gradient(to right, rgb(0 122 158) 0%, rgb(0 183 158) 26%, rgb(126 201 89) 100%);
    transition: all 0.078s ease-out;
    box-shadow: 0 1px 0 0px rgb(0 0 0 / 30%), 0 0px 2.4px rgb(0 0 0 / 50%), 0 10.8px 9px rgb(0 0 0 / 20%);
}
.pnx_designerBtn{
    left: 25px;
    margin-top: -15px;
    background: linear-gradient(to right, #FD9500 0%, #FE1B6D 50%);
    border-bottom: 2px solid #FBBB01;
}
.pnx_designerBtn:before{
    background: linear-gradient(to right,#FE1B6D  0%, #FD9500 50%);
}
.pnx_designerBtn:hover {
    background: linear-gradient(to left, #FE1B6D 0%, #FD9500 70%, #FD9500 100%);
}
.pnx_developmentBtn{
    margin-top: -25px;
    background: linear-gradient(to right, #FFCC01 0%, #FE9500 50%);
    border-bottom: 2px solid #F7D615;
}
.pnx_developmentBtn:before{
    background: linear-gradient(to right,#FF5100  0%, #FFCA00 50%);
}
.pnx_developmentBtn:hover {
    background: linear-gradient(to left, #FE9500 0%, #FFCA00 70%, #FFCC01 100%);
}
.pnx_testingBtn{
    left: -32px;
    margin-top: -15px;
    background: linear-gradient(to right, #C62AB2 0%, #822691 50%);
    border-bottom: 2px solid #B73CB9;
}
.pnx_testingBtn:before{
    background: linear-gradient(to right,#6320AB  0%, #9124A3 50%);
}
.pnx_testingBtn:hover {
    background: linear-gradient(to left, #822691 0%, #C62AB2 70%, #B73CB9 100%);
}
.pnx_deliveryBtn{
    left: -57px;
    margin-top: -23px;
    background: linear-gradient(to right, #17D8E1 0%, #5943FD 50%);
    border-bottom: 2px solid #18B2F0;
}
.pnx_deliveryBtn:before{
    background: linear-gradient(to right,#2D3272  0%, #0293EC 50%);
}
.pnx_deliveryBtn:hover {
    background: linear-gradient(to left, #5943FD 0%, #0293EC 70%, #17D8E1 100%);
}
.pnx_bannerImage {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 110px;
    margin-bottom: 45px;
}
.pnx_stepName{
    position: absolute;
    color: #353b48;
    font-weight: 600;
    font-size: 20px;
}
.pnx_topName {
    top: -50px;
}
.pnx_bottomName {
    bottom: -90px;
}
.pnx_designerBtn,
.pnx_testingBtn {
    margin-top: 120px;
}
.pnx_stepBtns {
    display: block;
    text-align: center;
    font-size: 32px;
    width: 100%;
}
.pnx_circleImg {
    width: 760px;
    position: absolute;
    margin: auto;
    z-index: -1;
}
.pnx_planningBtn {
    left: 54px;
    margin-top: -23px;
}
.pnx_planningBtn:before{
    animation-delay: 2s;
    /* animation: clickBtn 0.2s linear infinite; */
}
  @keyframes clickBtn {
    0%, 100% {
      top: 0;
    }
    50% {
      top: 10px;
    }
  }

.pnx_viewMobile {
    display: none;
}

.pnx_meetImg_logos {
    background: #f9f9f9;
    padding: 25px 10px ;
    border-radius: 10px;
    border: 1px solid #e9e9e9;
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

/*============== Responsive Css Start ===================*/
@media (min-width: 1400px){
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1200px;
    }
}
@media(min-width:990px){
    span.menuArrow{
        display: none;
    }
}
@media(max-width:1760px){
    /* .pnx_slideCaption {
        max-width: 1300px;
    } */
}

@media(max-width:1440px){
    /* .pnx_slideCaption{
        padding: 0px 55px;
    } */
    .pnx_sliderSection .carousel-control-prev {
        left: 10px;
    }
    .pnx_sliderSection .carousel-control-next {
        right: 10px;
    }
    .pnx_technoUsed ul> li {
        width: 120px;
        padding: 5px 10px;
        height: 55px;
    }
    .pnx_header .navbar-nav .nav-link {
        padding: 0px 15px;
        font-size: 14px;
    }
    .pnx_captionContent>p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .pnx_btnHolder .pnx_btn {
        height: 50px;
        line-height: 50px;
        font-size: 16px;
    }
    .pnx_captionContent>h2 {
        font-size: 44px;
    }
}
@media(max-width:1300px){
    .swiper-button-next {
        right: 0px;
        background-color: var(--darkColor);
    }
    .swiper-button-prev {
        left: 0px;
        background-color: var(--darkColor);
    }
    .swiper-button-prev svg, .swiper-button-next svg{
        fill: #fff;
    }
    .pnx_sliderSection .carousel-control-next, .pnx_sliderSection .carousel-control-prev {
        width: 35px;
        height: 35px;
    }
}
@media(max-width:1200px){
    .pnx_captionContent {
        max-width: 400px;
    }
    .pnx_captionContent>h2 {
        font-size: 26px;
        max-width: 100%;
    }
    .pnx_btnHolder .pnx_btn {
        height: 35px;
        line-height: 35px;
        padding: 0 25px;
        font-size: 12px;
    }
    .pnx_captionContent>p {
        font-size: 12px;
        margin-bottom: 10px;
    }
    .pnx_pojectList_box {
        max-width: 90%;
    }   
    .pnx_screenImage {
        right: 0px;
    }
    .pnx_header .navbar-nav .nav-link {
        padding: 0px 15px;
    }
    .pnx_captionContent> span {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .pnx_header .navbar-nav .nav-link {
        padding: 0px 10px;
        font-size: 12px;
    }

    .pnx_scheduleContent h3 {
        font-size: 26px;
    }
    .pnx_aboutSection .pnx_sectionHeading h2 {
        font-size: 28px;
    }
    .pnx_aboutSection .pnx_sectionHeading p {
        font-size: 16px;
    }
    .pnx_aboutSection h4 {
        margin: 30px 0;
        font-size: 32px;
    }
}
@media(max-width:990px){   
 
    .pnx_captionContent {
        max-width: 100%;
    }    
    .pnx_box {
        max-width: 100%;
        margin: 0 auto 30px;
    }
    .pnx_scheduleContent .justify-content-end {
        justify-content: start !important;
        margin-top: 30px;
    }
    .pnx_filterButton {
        font-size: 14px;
        padding: 5px 15px;
    }
    .pnx_sectionHeading >h2>span {
        font-size: 80px;
        top: 10%;
    }
    .pnx_bigHead.pnx_sectionHeading >h2>span {
        font-size: 75px;
    }
    .pnx_sectionHeading >h2 > br {
        display: none;
    }
    .pnx_sliderSection .carousel-item > img {
        display: none !important;
    }
    .pnx_sliderSection .carousel-item {
        background-color: var(--secondaryColor);
    }
    .pnx_captionContent>p, .pnx_captionContent>h2 {
        color: rgb(255 255 255);
    }
    .pnx_header .navbar-collapse.collapse.show {
        left: 0;
    }
    .pnx_header .navbar-collapse {
        position: fixed;
        top: 72px;
        background-color: rgb(255 255 255);
        width: 220px;
        left: -220px;
        display: block !important;
        transition: linear 0.2s;
        bottom: 0;
        height: 100%;
        max-height: 100vh;
        overflow: auto;
    }
    .pnx_header .navbar-nav .active .nav-link:after, 
    .pnx_header .navbar-nav .nav-link:hover::after {
        width: 100%;
    }
    li.pnx_toggleIcon {
        display: none;
    }
    .pnx_header {
        position: fixed;
        width: calc(100% + 2px);
        top: -1px;
        left: -1px;
        right: 0;
    }
    .pnx_header .navbar-nav .nav-link {
        line-height: 55px;
    }
    .pnx_galleryImages .col {
        flex: 0 0 33.3%;
    }
    .pnx_formBox, .pnx_blackBox {
        width: calc(100%);
    }
    .pnx_formBox {
        padding: 30px 25px;
    }
    .pnx_contactInfo_box {
        flex-wrap: wrap;
    }
    .order1 {
        order: 1;
    }
    .order2 {
        order: 2;
    }
    .order3 {
        order: 3;
    }
    .order4 {
        order: 4;
    }
    .order5 {
        order: 5;
    }
    .order6 {
        order: 6;
    }
    .order7 {
        order: 7;
    }
    .order8 {
        order: 8;
    }
    .pnx_meetContent_dv {
        padding-top: 0;
    }
    .pnx_pojectList_box.pnx_leftBox{
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 0px;
    }
    .pnx_pojectList_box.pnx_rightBox {
        margin-left: auto;
        margin-right: auto;
    }
    .pnx_pojectList_box.pnx_rightBox {
        margin-top: 0px;
    }
    .pnx_pojectList_box.pnx_rightBox .pnx_screenImage {
        bottom: -25px;
    }
    .pnx_contactSection .pnx_contactInfo_box {
        position: relative;
    }
    .pnx_contact_location {
        margin-top: 50px;
    }
    .pnx_contact_location iframe {
        height: 450px;
    }
    .pnx_header .navbar {
        padding: 10px;
    }
    .pnx_headerWrapper {
        height: 73px;
    }
    .pnx_innerMenu,.pnx_innerMenu.pnx_verticalMenu {
        width: 100%;
        left: 0;
    }
    .pnx_innerMenu > li,
    .pnx_innerMenu.pnx_verticalMenu > li {
        width: 100%;
    }
    /******* Menu Css **********/
    .pnx_header .navbar-nav .nav-link {
        line-height: 40px;
    }
    .pnx_header ul li:hover .pnx_innerMenu, .pnx_header ul li .pnx_innerMenu {
        visibility: hidden;
        opacity: 0;
        display: none;
        height: 0px;
        overflow: hidden;
        border: 0px;
    }
    .pnx_header .navbar-nav .nav-link:after {
        visibility: visible;
        height: 1px;
        width: 100%;
        background-color: rgb(245 244 244);
    }
    .pnx_header ul li.pnx_hasChild .pnx_innerMenu {
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        border: 0px !important;
        display: block;
        transition: all 0.5s;
        top: 0;
        position: relative;
        padding-left: 20px;
        box-shadow: none;
        border-top: 2px solid var(--primaryColor) !important;
    }
    .pnx_header ul li.pnx_hasChild.isOpen_menu .pnx_innerMenu {
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        
    }
    .pnx_header .navbar-nav .pnx_innerMenu li a {
        line-height: 35px;
    }
    .pnx_header ul li .pnx_innerMenu{
        border: 0px;
    }
    ul.pnx_innerMenu:before{
        display: none;
    }
    .menuArrow {
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0;
        background-color: rgb(247 145 59);
        border: 0;
    }
    .menuArrow:before {
        content: "";
        width: 7px;
        height: 7px;
        border-left: 1px solid #fff;
        border-bottom: 1px solid #fff;
        transform: rotate(-45deg);
        transition: all 0.5s;
    }
    .isOpen_menu .menuArrow:before {
        transform: rotate(135deg);
    }
    /************************/
    .pnx_service_box {
        height: auto;
        margin-bottom: 30px;
    }
    .paddY30 {
        padding-top: 0;
        padding-bottom: 0;
    }
    .pnx_modal .modal-dialog {
        width: 95%;
        margin: auto;
    }
    .pnx_modal {
        padding: 50px 0;
    }
    .pnx_circleImg{
        display: none;
    }

    .call_img_section {
        margin-bottom: 30px;
    }
}
@media(max-width:768px){
    .pnx_aboutSection .pnx_sectionHeading h2 {
        font-size: 24px;
    }
    .pnx_aboutSection .pnx_sectionHeading {
        margin-top: 50px;
    }
    .pnx_aboutSection h4 {
        margin: 30px 0;
        font-size: 28px;
    }
    .pnx_aboutSection .pnx_sectionHeading p {
        font-size: 14px;
    }
    .pnx_darkSlide{
        padding: 40px 15px;
    }
    .pnx_slideCaption{
        flex-direction: column-reverse;
        gap: 30px;
    }
    .pnx_meetImg_logos {
        padding: 15px;
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media(max-width:650px){
    .pnx_pojectList_box h2 {
        font-size: 22px;
    }
    .pnx_galleryImages .col {
        flex: 0 0 50%;
    }
    .pnx_subscribeForm input.form-control {
        width: 100%;
        margin-bottom: 15px;
        border-radius: 50px !important;
    }
    .pnx_subscribeForm button {
        left: 0px;
        line-height: 50px;
        width: 100%;
        text-align: center;
        align-items: center;
        justify-content: center;
    }
    .pnx_lastFooter >p {
        font-size: 14px;
    }
    .pnx_connectUsSection .pnx_clientReview_box p {
        font-size: 14px;
    }
    .pnx_sectionHeading >h2 {
        font-size: 34px;
    }
    .pnx_sectionHeading > p {
        font-size: 15px;
    }
    .pnx_sectionHeading >h2>span,
    .pnx_bigHead.pnx_sectionHeading >h2>span {
        font-size: 50px;
    }
    .pnx_scheduleContent {
        padding: 0px 0;
    }
    .pnx_footer > p, .pnx_iconList a, .pnx_iconList p {
        font-size: 14px;
        line-height: 24px;
    }
    .pnx_connectUsSection .pnx_clientReview_box {
        padding: 50px 30px;
    }
    .pnx_careerBox {
        padding: 25px 15px;
    }
    .pnx_innerInfo h5 {
        margin-top: 20px;
    }
    .pnx_resumeForm_box {
        padding: 25px;
    }
    .pnx_ResumeSection .pnx_sectionHeading >h2>span,
    .pnx_sectionHeading >h2>span {
        font-size: 200%;
    }       
    .pnx_viewMobile {
        display: block;
    }
    span.pnx_circleBtn {
        display: none;
    }
    .pnx_bannerImage {
        margin-top: 45px;
        margin-bottom: 0;
    }
    .pnx_sectionPadd {
        padding: 50px 0px;
    }

    .mar10 {
        margin: 10px 0;
    }

}
@media(max-width:450px) {
    .pnx_formBox .select2-container {
        width: 100% !important;
    }   
    .pnx_btnHolder .pnx_btn {
        margin: 10px 0;
    }
    .pnx_centerBtn_box {
        padding: 10px 15px;
    }
    .pnx_filterButton {
        font-size: 12px;
        padding: 5px 10px;
    }
    .pnx_galleryImages .col {
        flex: 0 0 100%;
    }
    .pnx_screenImage {
        right: 10px;
        max-width: 210px;
    }
    .pnx_pojectList_box.pnx_leftBox {
        margin-top: 45px;
    }
    .pnx_steps {
        font-size: 45px;
        margin-bottom: 45px;
    }
    .pnx_pojectList_box {
        padding: 40px 15px 50px;
    }
    .pnx_pojectList_box.pnx_rightBox .pnx_steps {
        top: 60px;
    }  
    .pnx_pojectList_box.pnx_rightBox .pnx_screenImage {
        bottom: 0;
        left: 10px;
    }  
    .pnx_topProject_list {
        margin-top: 45px;
    }
    .pnx_ResumeSection .pnx_sectionHeading >h2>span, 
    .pnx_sectionHeading >h2>span {
        font-size: 150%;
    }
}
@media(max-width:320px) {
    .pnx_linkTag {
     font-size: 12px;
}
}



.pg_line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 430px;
    z-index: -1;
}
.pg_plan {
    position: absolute;
    z-index: 1;
    right: 245px;
    top: 40px;
}
.pnx_ourServices .pg_line {
    top: 80px;
}
span#rs_upload_file {
    border: 1px solid green;
    padding: 10px;
    margin-top: 10px;
    display: none;
}

@media (max-width: 1440px){
    .pg_line, .pg_plan {
        display: none;
    }
}

.parallax-box > img{
    opacity: 0;
}


.hero_vector_wrapper > svg{
    width: 100%;
    height: auto;
}
/* .hero_vector_wrapper #text_lable_list > g path, */
.hero_vector_wrapper #center_logo,
.hero_vector_wrapper g[id*="innericon"],
.hero_vector_wrapper rect[id*="icon_bg"]{
    transform-origin: center center;
    opacity: 1;
}
#text_lable_list > g{
    opacity: 0;
}

.hero_vector_wrapper #big_circle{
    transform-origin: 51.4% 46.5%;
    opacity: 0;
}

.pnx_header_social ul{
    display: flex;
    align-items: center;
    gap: 15px;
}
.pnx_header_social ul li a{
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pnx_header_social ul li a svg{
    width: 22px;
    height: 22px;
}

.pnx_copyright_content{
    color: #ededed;
    font-size: 14px;
}


.pnx_pojectList_box{
    background-color: #f9f9f9;
}
.pnx_pojectList_box:hover{
    background-color: #ffffff;
    box-shadow: 0px 0px 0px 2px var(--primaryColor);
}
.pnx_steps{
    color: var(--textColor);
    opacity: 0.2;
}
.pnx_pojectList_box:hover .pnx_steps{
    color: var(--primaryColor);
    opacity: 1;
}

/*Contact Form Video CSS*/
.pnx_lead_getInTouchSection {
    background-image: url(../images/form-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-top: 80px;
}
.pnx_lead_getInTouchSection .pnx_contactInfo_box {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 10px 10px 10px 30px;
}
.pnx_lead_getInTouchSection .pnx_contactInfo_box video {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -173px;
    max-width: 500px;
    width:100%;
    height: auto;
    z-index:-1;
}
.pnx_lead_formbox .pnx_formBox {
    padding-bottom: 30px;
    width: 100%;
}
.pnx_lead_formbox .pnx_formBox .form-label {
    margin-bottom: 5px;
}
.pnx_lead_formbox .pnx_formBox .form-control {
    border: 1px solid rgb(223 223 223);
    border-radius: 6px;
    padding: 0px 15px;
    background: rgb(250 252 255);
}
.pnx_lead_formbox .pnx_formBox textarea.form-control{
    padding: 15px;
}
.pnx_lead_formbox #cnt_sched_date {
    background-image: url(../images/calendar.png);
    background-repeat: no-repeat;
    background-position: 97% 10px;
}
.pnx_lead_formbox select#cnt_sched_time {
    width: 100%;
    min-height: 42px;
    border: 1px solid rgb(223 223 223);
    background: rgb(250 252 255);
    border-radius: 6px;
    padding: 0 10px;
    color: #212529;
    font-size: 14px;
    appearance: none;
    background-image: url(../images/clock.png);
    background-repeat: no-repeat;
    background-position: 97% 10px;
    cursor:pointer;
}
.pnx_lead_formbox select#cnt_sched_time:focus{
    box-shadow:none;
    border: 1px solid rgb(223 223 223);
    outline:none;
}
.pnx_lead_formbox .spinner-border {
    display: inline-block;
    width: 17px;
    height: 17px;
    border: 3px solid currentColor;
    border-right-color:transparent;
    animation: .80s linear infinite spinner-border;
    margin-left: 10px;
}
.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange, .flatpickr-day.selected.inRange, .flatpickr-day.startRange.inRange, .flatpickr-day.endRange.inRange, .flatpickr-day.selected:focus, .flatpickr-day.startRange:focus, .flatpickr-day.endRange:focus, .flatpickr-day.selected:hover, .flatpickr-day.startRange:hover, .flatpickr-day.endRange:hover, .flatpickr-day.selected.prevMonthDay, .flatpickr-day.startRange.prevMonthDay, .flatpickr-day.endRange.prevMonthDay, .flatpickr-day.selected.nextMonthDay, .flatpickr-day.startRange.nextMonthDay, .flatpickr-day.endRange.nextMonthDay {
    background: #f6913c;
    border-color: #f6913c;
}
@media(max-width:1150px){
    .pnx_lead_getInTouchSection .pnx_contactInfo_box {
        max-width: 700px;
    }
}
@media(max-width:1024px){
    .pnx_lead_getInTouchSection .pnx_contactInfo_box {
        max-width: 650px;
    }
}
@media(max-width:990px){
    video#video1, video#video2 {
        display: none;
    }
    video#video3 {
        display: block !important;
    }
    .pnx_lead_getInTouchSection .pnx_contactInfo_box video {
        top: -216px;
        transform: none;
        left: 0;
        right: 0;
        margin: auto;
    }
    .pnx_lead_getInTouchSection .pnx_contactInfo_box {
        margin-top: 180px;
    }
    .pnx_lead_getInTouchSection .pnx_contactInfo_box {
        padding: 10px;
    }
}
@media(max-width:575px){
    .pnx_lead_getInTouchSection .pnx_contactInfo_box video {
        top: -239px;
        max-width: 100%;
    }
}
@media(max-width:480px){
    .pnx_lead_getInTouchSection .pnx_contactInfo_box video {
        top: -174px;
        max-width: 402px;
    }
    .pnx_lead_getInTouchSection .pnx_contactInfo_box {
        margin-top: 120px;
    }
}
@media(max-width:425px){
    .pnx_lead_getInTouchSection .pnx_formBox {
        padding: 20px 10px;
    }
}
@media(max-width:375px){
    .pnx_lead_getInTouchSection .pnx_contactInfo_box video {
        top: -130px;
        max-width: 300px;
    }
    .pnx_lead_getInTouchSection {
        padding-top: 30px;
    }
}
/*Contact Form Video CSS*/