
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Outfit:wght@100..900&display=swap');
@import url('../css/vendor/bootstrap.min.css');
@import url('../css/vendor/swiper-bundle.min.css');

@property --progress {
    syntax: '<integer>';
    inherits: true;
    initial-value: 0;
}

@keyframes load {
    to {
        --progress: var(--value)
    }
}

@keyframes background_animation {
    from {
        background-size: 100%;
    }

    to {
        background-size: 110%;
    }
}

@keyframes ripple {
    from {
        opacity: 1;
        transform: scale3d(1, 1, 1);
        transform-origin: center;
        border-width: 0px;
    }

    to {
        opacity: 0;
        transform: scale3d(1.7, 1.7, 1.8);
        transform-origin: center;
        border-width: 13px;
    }
}


:root {
    --dark-bg: #000000;
    --secondary-dark: #0c0e0e;
    --secondary-color: #21282b;
    --gray-color: #c2c2c2;
    --accent-color: #f6903b;
    --font-1: "Oswald", sans-serif;;
    --font-2: "Outfit", sans-serif;        
}

body {
    font-family: var(--font-1);
    color: white;
    background-color: #1c2326;
}

h1 {
    font-size: 76px;
}

h2 {
    font-size: 68px;
}

h3 {
    font-size: 48px
}

h4 {
    font-size: 32px;
}

h5 {
    font-size: 24px;
}

h6 {
    font-size: 18px;
}

ul {
    list-style: none;
}

img {
    object-fit: cover;
}
/* Scroll */
::-webkit-scrollbar {
    width: 5px;
} 
::-webkit-scrollbar-track {
    background-color:var(--secondary-color);
    -webkit-border-radius: 10px;    
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    height: 100px;    
    background-color: var(--accent-color);
}
/* Scroll */
section {
    background-size: cover;
    background-position: center;
}

button {
    padding-inline: 1rem;
    padding-block: 0.5rem;
    text-decoration: none;
    transition: all 0.5s;
}

.button {
    padding-inline: 17px;
    padding-block: 15px;
    text-decoration: none;
    transition: all 0.5s;
    background-color: var(--accent-color);
    border: solid 2px var(--accent-color);
    color: white;
    font-weight: 600;
}

.button-outline,
.button-outline:hover {
    border-width: 1px;
    border-color: currentColor;
    border-style: solid;
}

.button:hover {
    color: white;
    background-color: transparent;
    border: solid 2px var(--accent-color);
}

.hover-transform:hover {
    transform: translateY(-10px);
}

button:hover {
    color: black;
}

a {
    text-decoration: none;
}
.text-uppercase{
    text-transform: uppercase;
}
.font-1 {
    font-family: var(--font-1);
}

.font-2 {
    font-family: var(--font-2);
}

.font-3 {
    font-family: var(--font-3);
}

.ls-2 {
    letter-spacing: 2px;
}

.fs-7 {
    font-size: 0.8rem !important;
}

.fw-black {
    font-weight: 900 !important;
}

.btn-outline {
    background-color: transparent;
    border: solid 1px currentColor !important;
}

.form input,
.form textarea,
.form select {
    background-color: transparent;
    border-radius: 0;
    border: solid 2px var(--accent-color) ;
    color: white;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
    box-shadow: none;
    border: solid 2px var(--accent-color) ;

}

.form input::placeholder,
.form textarea::placeholder {
    color: var(--gray-color);
    font-family: var(--font-2);
}

.form-check-input:checked[type=checkbox] {
    --bs-form-check-bg-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="blue" class="bi bi-check-lg" viewBox="0 0 16 16"><path d="M12.736 3.97a.733.733 0 0 1 1.047 0c.286.289.29.756.01 1.05L7.88 12.01a.733.733 0 0 1-1.065.02L3.217 8.384a.757.757 0 0 1 0-1.06.733.733 0 0 1 1.047 0l3.052 3.093 5.4-6.425a.247.247 0 0 1 .02-.022Z"/></svg>');
}

.form input.form-check-input {
    background-color: transparent;
    border: 1px solid gray;
}

.form input.form-check-input:checked {
    border: 1px solid blue;
    color: blue;
}

.form .submit_form {
    padding-inline: 2rem;
    padding-block: 0.7rem;
    text-decoration: none;
    transition: all 0.5s;
    background-color: var(--accent-color);
    color: white;
    border-radius: 5px;
    border: solid 2px var(--accent-color);
}

.submit_form:hover {
    background-color: transparent;
}

.submit_form-subscribe {
    padding-inline: 2rem;
    padding-block: 0.7rem;
    text-decoration: none;
    transition: all 0.5s;
    color: white;
    background-color: var(--accent-color-1);
    border-radius: 5px;
}

.submit_form-subscribe:hover {
    background-color: var(--dark-bg);
    color: white;
    filter: none;
}

.maps {
    width: 100%;
    height: 480px;
    transition: filter 0.5s;
}

#header {
    transition: all 0.5s ease;
}

.nav-link {
    border-bottom: 2px solid transparent;
    font-size: 18px;
    font-weight: 600;
    font-family: var(--font-1);
    padding-block: 1.2rem;
    text-transform: uppercase;
    color: white;
    letter-spacing: 2px;
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link.active {
    color: var(--accent-color) !important;
}

.navbar-toggler {
    border: none;
    color: var(--accent-color);
}

.navbar-toggler:focus {
    box-shadow: none;
    background-color: transparent;
    color: var(--accent-color);
}

.dropdown-menu {
    background-color: #21282b;
    border-radius: 0;
    border: none;
    padding: 0.75rem;
    width: 200px;
}

.dropdown-item {
    padding-block: 0.75rem;
    color: white;
    font-family: var(--font-2);
    font-size: 0.95rem;
    font-weight: 400;
    padding-inline: 0.75rem;
}

.dropdown-item.active {
    color: white;
    background-color: var(--accent-color);
}

.dropdown-item:hover {
    background-color: var(--accent-color);
    color: white;
}

.dropdown-item:focus {
    color: var(--accent-color);
}
.dropdown-toggle::after{
    display: none;
}
/* Header css */
.pnxs_header_wrapper {
    padding: 15px 0;
}
.pnxs_header_parnt {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
ul.navbar-nav {
    display: flex !important;
    justify-content: center;
    flex-direction: row;
    gap: 40px;
}
/* Header css */

/* Banner css */
.pnxs_banner_wrapper {
    padding-top: 200px !important;
    width: 100%;
    height: 91vh;
    overflow: hidden;
}
.pnxs_banner_wrapper .image-overlay{
    z-index: 1;
    /* display: none; */
    opacity: 0.75;
}
.pnxs_banner_wrapper.section {
    padding: 6em 2em 2.5em 2em;
}
.pnxs_banner_wrapper video {
    min-width: 100%;
    min-height: 100%;    
    width: auto;
    height: auto;
    position: absolute;
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%);
}
.pnxs_banner_parent {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 100%;
    z-index: 2;
}
.pnxs_banner_top P {
    text-align: center;
    font-size: 25px;
    font-family: 'Oswald';
    text-transform: uppercase;
    letter-spacing: 1px;
}
.pnxs_main_head {
    text-transform: uppercase;
    font-size: 70px;
    letter-spacing: 2px;
}
.pnxs_sb_heading{
    font-size: 35px;
    font-weight: 600;
    color: var(--accent-color);
    font-family: var(--font-2);
    text-transform: uppercase;
    letter-spacing: 2px;
}
.pnxs_banner_names ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-bottom: 20px;
}
.pnxs_banner_names ul li {
    font-size: 25px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    line-height: 1.3;
}
.pnxs_banner_names ul li::before {
    content: '';
    width: 1px;
    height: 30px;
    background-color: white;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -25px;
}
.pnxs_banner_names ul li:last-child:before{
    display: none;
}
/* Banner css */

/* Cover poster css */
section.pnxs_cover_wrapper a > img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
/* Cover poster css */

/* About css */
.pnxs_about_content h3 {
    line-height: 1.2 !important;
    text-transform: uppercase;
}
.pnxs_top_heading{
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.pnxs_about_content p {
    font-family: 'Outfit';
    max-width: 600px;
}
/* About css */


.section {
    padding: 6em 2em 6em 2em;
    overflow: hidden;
}

.r-container {
    max-width: 1440px;
    margin-right: auto;
    margin-left: auto;
}

.bg-dark-color {
    background-color: var(--dark-bg);
}

.bg-secondary-color {
    background-color: var(--secondary-dark);
}

.bg-secondary-dark {
    background-color: var(--secondary-dark);
}

.bg-accent-color {
    background-color: var(--accent-color);
}

.accent-color {
    color: var(--accent-color);
}


.border-accent-color {
    border-color: var(--accent-color) !important;
}

.text-gray {
    color: var(--gray-color) !important;
}

.text-secondary-color {
    color: var(--secondary-color);
}

.bg-accent-color-hover:hover {
    background-color: var(--accent-color);
    color: white;
}

.bg-dark-transparent {
    background-color: #232323b7;
}

.btn-dark {
    background-color: var(--dark-bg);
    color: white;
    border: none;
}

.btn-dark:hover {
    background-color: var(--accent-color-1);
    color: white;
    border: none;
}

.image-overlay {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-color: black;
    opacity: 0.6;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.image-overlay-2 {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-color: black;
    opacity: 0.3;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.overlay {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-color: transparent;
    background-image: linear-gradient(180deg, transparent 0%, #000000 100%);
    opacity: 1;
}

.texture-overlay {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-image: url("../image/texture.png");
    background-position: center center;
    background-size: cover;
    opacity: 0.5;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.logo-container {
    max-width: 170px;
}
.logo-container > img {
    width: 300px;
    height: auto;
    object-fit: contain;
}
.logo-filter {
    filter: brightness(200%) contrast(0%) saturate(200%) blur(0px) hue-rotate(0deg);
}

.divider {
    display: flex;
    align-items: center;
}

.divider::after {
    display: block;
    content: "";
    border-bottom: 0;
    flex-grow: 1;
    border-top: 3px solid #8692af;
    max-width: 30px;
    min-width: 30px;
}


.divider-element {
    letter-spacing: 2px;
    flex-shrink: 0;
    flex-grow: 1;
    margin: 0;
    margin-left: 1rem;
    font-weight: 400;
}

.image-infinite-bg {
    height: 90vh;
}

.animation-bg {
    animation: background_animation 10s forwards;
}

.r-progress {
    --value: 17;
    --progress-color: var(--accent-color);
    --secondary-progress-color: var(--secondary-color);
    --animation-duration: 2000;
}

.r-progress-bar {
    position: relative;
    height: 8px;
    background-color: var(--secondary-progress-color);
    display: flex;
    border-radius: 3px;
}

.r-progress-bar .progress-value {
    height: 100%;
    width: calc(var(--progress) * 1%);
    background-color: var(--progress-color);
    position: relative;    
    animation: load;
    animation-fill-mode: forwards;
    animation-duration: calc(var(--animation-duration) * 1ms);
    animation-timing-function: linear;
    animation-delay: 500ms;
    color: black;
}

.r-progress-bar.percentage-label::after {
    counter-reset: percentage var(--progress);
    content: counter(percentage) '%';
    display: block;
    position: absolute;
    left: calc((var(--progress) * 1%) - 2rem);
    animation: load;
    animation-fill-mode: forwards;
    animation-duration: calc(var(--animation-duration) * 1ms);
    animation-timing-function: linear;
    animation-delay: 500ms;
    color: var(--accent-color);
    font-size: 14px;
    line-height: 1.2;
    /* font-weight: 700; */
    font-family: var(--font-1);
    top: -1.2rem;
}

.bg-attach-fixed {
    background-attachment: fixed;
}

.social-container {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.social-item {
    border-radius: 50%;
    aspect-ratio: 1/1;
    font-size: 15px;
    width: 1.8rem;
    height: 1.8rem;
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--accent-color);
    color: white;
}
.social-item > svg{
    fill: white;
    transition: all 0.3s;
}
.social-item:hover {
    color: var(--accent-color) !important;
    background-color: white;
}
.social-item:hover > svg{
    fill: var(--accent-color);
}
.share-button {
    background-color: var(--accent-color-1);
    aspect-ratio: 1/1;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.share-button:hover {
    background-color: var(--accent-color);
}

.nav-tabs {
    border-bottom: none;
}

.nav-tabs .nav-link {
    background-color: transparent;
    color: var(--accent-color);
    border: none;
    position: relative;
}

.nav-tabs .nav-link:hover {
    border: none;
    color: white;
}

.nav-tabs .nav-link.active {
    background-color: transparent;
    border: none;
}

.nav-tabs .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
}

.breadcrumb .breadcrumb-item>a {
    color: var(--accent-color);
}

.breadcrumb .breadcrumb-item.active {
    color: var(--accent-color-1);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--accent-color-1);
}

.swiper-pagination {
    margin-block: 1rem;
}

.swiper-pagination .swiper-pagination-bullet-active {
    background-color: black;
}

.video-container {
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center;
    position: relative;
}

.video-iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.video-btn {
    border-radius: 50%;
    aspect-ratio: 1/1;
    width: 5rem;
    background-color: transparent;
    border: solid 2px var(--accent-color);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    font-size: 2rem;
}

.video-btn:hover {
    color: var(--accent-color);
}

.border-custom {
    border-width: 0px 1px 0px 0px;
    border-color: var(--accent-color);
    border-style: solid;
}

.icon-box {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 2.5rem;
    aspect-ratio: 1/1;
    width: 4rem;
    height: 4rem;
}

.request-loader {
    position: relative;
    height: 60px;
    width: 60px;
    border-radius: 50% !important;
    border: solid 2px var(--accent-color);
    background-color: var(--accent-color);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 25px;
}

.request-loader:hover {
    border: solid 2px var(--accent-color);
    color: white;
    background-color: transparent;
}


.request-loader::after,
.request-loader::before {
    opacity: 0.2;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    color: var(--accent-color);
    border: 4px solid currentColor;
    border-radius: 50%;
    animation-name: ripple;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(.65, 0, .34, 1);
    z-index: 0;
}

.request-loader::after {
    animation-delay: 0.5s;
    animation-duration: 3s;
}

.request-loader::before {
    animation-delay: 0.2s;
    animation-duration: 3s;
}

.ifr-video {
    aspect-ratio: 16/9;
    width: 100%;
}

.post-button {
    background-color: transparent;
    color: var(--accent-color) !important;
    border: none !important;
}

.post-button:hover {
    background-color: transparent !important;
    color: var(--accent-color) !important;
    transform: scale(1.15);
}

.card.with-border-bottom {
    border-bottom: 5px solid var(--accent-color) !important;
}

.list-group .list-group-item {
    border: none;
    border-radius: 5px;
}

.list-group .list-group-item.active {
    background-color: var(--accent-color);
}

.list-group .list-group-item.list-group-item-action:hover {
    background-color: var(--accent-color);
    color: white;
}

.accordion-button:not(.collapsed) {
    background-color: var(--accent-color);
    color: white;
    border: 2px solid var(--accent-color);
}

.accordion-button:not(.collapsed):hover {
    color: white;
}


.accordion-button {
    background-color: transparent;
    border-radius: 0px;
    color: white;
    border: 2px solid var(--accent-color);
    font-family: var(--font-2);
    border-radius: 5px;
}

.accordion-button:hover {
    color: var(--accent-color);
}

.accordion-button:focus {
    outline: 0;
    box-shadow: none;
    border: 2px solid var(--accent-color);

}

.accordion-item {
    border: none;
    background-color: transparent;
    margin-bottom: 1rem;
}

.accordion-button::after {
    filter: invert(1);
}

[data-bs-theme=dark] .accordion-button::after {
    --bs-accordion-btn-icon: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-chevron-down" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/></svg>');
    --bs-accordion-btn-active-icon: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-chevron-down" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/></svg>');
}

.outer-margin {
    margin-right: -7rem;
}

.list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.list li {
    padding: 0;
}

.card .link {
    color: white;
    transition: color 0.5s;
}

.card .link:hover {
    color: var(--accent-color);
}

.link.accent-color {
    color: var(--accent-color);
    transition: color 0.5s;
}

.link.accent-color:hover {
    color: var(--dark-bg);
}


.link-white {
    color: white;
}

.link-white:hover {
    color: var(--accent-color);
}

.glass-effect {
    background: #202020b3;
    backdrop-filter: blur(11px);
    -webkit-backdrop-filter: blur(11px);
}

.fs-very-large {
    font-size: 4.125rem;
}

.border-bottom-hover:hover {
    border-bottom: 2px solid var(--accent-color);
}

.testimonial-container {
    background-color: var(--dark-bg);
    border-radius: 5px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}
.pnxs_testmnl_parent{
    gap: 30px;
}
.pnxs_client_img > img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}
.rating {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding: 0;
    margin: 0;
}

.rating li {
    color: var(--accent-color);
}
.rating li > img{
    width: 18px;
    height: 18px;
}
.logo-partner {
    filter: brightness(200%) contrast(0%) saturate(0%) blur(0px) hue-rotate(0deg);
    transition-duration: 0.5s;
}
.pnxs_social_flex{
    gap: 30px;
}
.pnxs_social_flex a img {
    max-width: 160px;
    height: auto;
}
.pnxs_about_img img{
    height: 600px;
    object-fit: cover;
    border-radius: 10px;
}
.logo-partner:hover {
    filter: none;
}
.pnxs_temsl_head p {
    max-width: 550px;
}
.testimonial-container > p {
    font-family: 'Outfit';
    font-size: 18px !important;
    word-break: break-word;
}
.pnxs_testmnl_info .name {
    text-transform: capitalize;
    font-size: 18px !important;
}
.pnxs_testmnl_info .designation {
    font-size:16px !important;
}
.pnxs_footer_wrapper .pnxs_footer_left > img {
    width: 280px;
    height: auto;
    object-fit: contain;
}
.pnxs_footer_left > p {
    margin-bottom: 0;
    padding-top: 10px;
}
.pnxs_footer_left .social-item{
    width: 2.5rem;
    height: 2.5rem;
}
.list li a{
    position: relative;
    padding: 0 0 10px 20px;
    transition: all 0.3s;
}
.list li a:hover{
    color: var(--accent-color);
}
.list li a:before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
    position: absolute;
    top: 7px;
    left: 0px;
    transition: all 0.3s;
}
.list li a:hover:before{
    background-color: var(--accent-color);
}
.trailor{
    color: white;
}
/* Service css */
.pnxs_service_wrapper{
    background-color: var(--dark-bg);
}
.pnxs_service_head {
    padding-bottom: 50px;
}
.pnxs_service_box {
    background-color: var(--secondary-dark);
    padding: 50px 35px;
    min-height: 460px;
    border: 2px solid transparent;
    transition: all 0.3s;
}
.pnxs_service_box:hover{
    border: 2px solid var(--accent-color);
}
.pnxs_service_img > img{
    width: 75px;
    height: 75px;
    object-fit: contain;
}
.pnxs_service_content h4 {
    margin: 20px 0 15px 0;
}
.pnxs_service_content > p {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 300;
}
/* Service css */

/* Video Banner css */
section.pnxs_video_wrapper {
    width: 100%;
    height: 60vh;
    overflow: hidden;
}
section.pnxs_video_wrapper .image-overlay{
    opacity: 0.75;
    z-index: 1;
}
section.pnxs_video_wrapper video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    left: 50%;
    top: 30%;
    transform: translate(-50%, -50%);
}
section.pnxs_video_wrapper .pnxs_video_icon{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;    
    position: absolute;
    top: 70%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    z-index: 1;
}
section.pnxs_video_wrapper h1 {    
    text-align: center;
    font-size: 60px;
}
/* Video Banner css */

/* Contact css */
.pnxs_contact_box{
    max-width: 800px;
    width: 100%;
    margin: auto;
    padding: 50px 40px;
    border-radius: 10px;
}
.pnxs_input_field{
    margin-bottom: 30px;
}
.pnxs_input_field label {
    font-size: 18px;
    font-weight: normal;
    color: white;
    text-transform: capitalize;
    font-family: 'Oswald';
    letter-spacing: 1px;
    display: block;
    padding-bottom: 10px;
}
.pnxs_input_field input {
    width: 100%;
    min-height: 50px;
    padding: 0 15px;
    color: white;
    font-size: 15px;
    font-weight: 500;
    background-color: var(--dark-bg);
    border: 1px solid #ffffff1f;
    font-family: 'Outfit';
    border-radius: 6px;
}
.pnxs_input_field input:focus, .pnxs_input_field textarea:focus{
    box-shadow: none !important;
    outline: none !important;
    border: 1px solid var(--accent-color);
}
.pnxs_input_field textarea {
    width: 100%;
    min-height: 150px;
    max-height: 300px;
    overflow-x: hidden;
    padding: 15px;
    resize: none;
    border-radius: 6px;
    background-color: var(--dark-bg);
    border: 1px solid #ffffff1f;
    font-family: 'Outfit';
}
input:-webkit-autofill {
    background-color: var(--dark-bg) !important;
    color: white !important;
    transition: background-color 5000s ease-in-out 0s;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px var(--dark-bg) inset !important;
    -webkit-text-fill-color: white !important;
}
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; 
}
.pnxs_contact_btn .button {
    min-width: 160px;
    text-transform: uppercase;
    font-weight: normal;
    font-size: 18px;
    padding: 12px;
}
/* Contact css */

/* Footer css */
.pnxs_footer_wrapper .section {
    padding: 6em 2em 3em 2em; 
}
.pnxs_footer_parent {
    border-bottom: 1px solid #ffffff14;
}
.pnxs_footer_content .pnxs_footer_add_icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.pnxs_footer_add_info {
    max-width: 310px;
    width: 100%;
}
.pnxs_footer_add_info span:first-child {
    line-height: 1.3;
    padding-bottom: 5px;
}
.pnxs_footer_add_icon > img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}
.pnxs_footer_add_info a {
    color: #fff;
}
.pnxs_cpright p a{
    cursor: pointer;
    text-decoration: none;
    color:#fff;
}
/* Footer css */

/* Toggle css */
.pnxs_toggle_btn { 
    display: none;
    position: absolute;
    right: 25px;
    top: 23px;
    cursor: pointer;
}
.pnxs_toggle_btn span {
    width: 30px;
    height: 4px;
    border-radius: 10px;
    background-color: var(--accent-color);
    margin-bottom: 5px;
    display: block;
    margin-left: auto;
    transition: all 0.3s ease-in-out;
}
.pnxs_toggle_btn span:nth-child(2){
    width: 25px;
}
.pnxs_toggle_btn span:last-child{
    margin-bottom: 0;
}
/* Toggle css */

@media (max-width:1500px) {
    .pnxs_main_head {     
        font-size: 55px;        
    }
}
@media (max-width:1440px) {
    .pnxs_footer_add_info span:last-child {
        font-size: 15px;
    }
}
@media (max-width:1400px) {
    .pnxs_service_box {        
        padding: 50px 20px 50px 35px;     
    }
    .pnxs_service_content h4 {     
        font-size: 28px;
    }
    .pnxs_service_content > p {     
        font-size: 15px;        
    }
}
@media (max-width:1350px) {
    .section.pnxs_footer_parent .px-lg-5, .section.pnxs_footer_parent .px-4 {
        padding: 0 10px !important;
    }
    .section.pnxs_footer_parent a > img {
        max-width: 120px;
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    .pnxs_footer_wrapper .pnxs_footer_left > img {
        width: 230px;     
    }
    .pnxs_footer_add_info span:first-child {     
        font-size: 22px !important;
    }
    .pnxs_footer_add_info span:last-child {
        font-size: 13px;
        max-width: 230px;
        font-weight: 300;
    }
    .pnxs_footer_left > p {
        font-weight: 300;
        font-size: 15px;
    }
    .pnxs_footer_content {
        gap: 10px !important;
    }
    .pnxs_footer_content .pnxs_footer_add_icon {     
        min-width: 40px;
        min-height: 40px;
    }
}
@media (max-width:1199px) {
    .pnxs_main_head {     
        font-size: 45px;        
    }
    .pnxs_about_content h3, .pnxs_temsl_head h3, .pnxs_contact_wrapper h3, .pnxs_partner_wrapper h3 {     
        font-size: 40px;
    }
    .pnxs_about_content p {     
        margin-bottom: 0;
    }
    .pnxs_social_flex a img {
        max-width: 130px;     
    }
    .pnxs_service_box {
        padding: 30px 15px 30px 20px;
        min-height: 370px;
    }
    .pnxs_service_img > img {
        width: 60px;
        height: 60px;     
    }
    .pnxs_service_content h4 {
        font-size: 23px;
    }
    .pnxs_service_content > p {
        font-size: 14px;
    }
    section.pnxs_video_wrapper h1 {     
        font-size: 50px;
    }
    .testimonial-container > p {     
        font-size: 15px !important;
    }
    .testimonial-container {     
        gap: 15px;
    }
    .pnxs_client_img > img {
        width: 60px;
        height: 60px;
    }
    .fs-very-large {
        font-size: 30px;
    }
    span.fs-very-large > img {
        width: 50px;
        height: 50px;
        object-fit: contain;
    }
    .pnxs_banner_names ul li {
        font-size: 18px;
    }
    section.pnxs_cover_wrapper a > img {
        height: 300px;
    }
}
@media only screen and (max-width:993px) {
    h1 {
        font-size: 48px;
    }

    h2 {
        font-size: 36px;
    }
    h4 {
        font-size: 18px;
    }
    h6 {
        font-size: 12px;
    }
    .section {
        padding: 6em 2em 6em 2em;
    }
    .divider {
        width: 330px;
    }
    .fs-very-large {
        font-size: 3.125rem;
    }
    .image-absolute-1 {
        left: 45%;
        top: 35%;
    }
    .image-infinite-bg {
        background-size: cover !important;
    }
    #header {
        background: #202020b3;
        backdrop-filter: blur(11px);
        -webkit-backdrop-filter: blur(11px);
    }
    .border-custom {
        border-width: 0px 0px 1px 0px;
    }
    .outer-margin {
        margin-right: 0;
    }
    .nav-link {
        padding-block: 0.2rem;
    }
    .banner-image {
        margin: 0;
        transform: none;
    }
    .heading {
        margin-top: -40px;
    }
    .testimonial-img {
        margin: 0;
        margin-bottom: 1rem;
    }
    .dropdown-menu {
        width: 100%;
    }
}
@media only screen and (max-width:991px) {
    /* Toggle css */    
    .pnxs_nav_menu {
        position: fixed;
        top: 74px;
        left: -300px;
        width: 300px;
        background: #0c0e0e;
        height: 100%;
        padding: 30px 0 0 30px;
        transition: all 0.3s;
        z-index: 999;
    }
    .pnxs_header_parnt.pnxs_menu_open .pnxs_nav_menu{                
        left: 0;        
    }
    .pnxs_toggle_btn {
        display: block;
        margin-top: 5px;        
    }   
    .pnxs_menu_open .pnxs_toggle_btn span:nth-child(1) {
        transform: rotate(45deg);
        transform-origin: 3px 5px;
    }
    .pnxs_menu_open .pnxs_toggle_btn span:nth-child(2) {
        transform: translateX(20px);
        visibility: hidden;
        opacity: 0;
    }
    .pnxs_menu_open .pnxs_toggle_btn span:nth-child(3) {
        transform: rotate(-45deg);
        transform-origin: 4px -1px;
    }
    ul.navbar-nav {             
        gap: 20px;
        flex-direction: column;
    }
    .pnxs_header_parnt .social-container {
        margin-bottom: 0 !important;
        margin-right: 60px;
    }    
    /* Toggle css */
    .pnxs_main_head {     
        font-size: 33px;        
    }
    .pnxs_banner_wrapper {
        padding-top: 0px !important;     
    }
    .pnxs_banner_top P {        
        font-size: 20px;     
    }
    .pnxs_banner_names ul {
        gap: 30px;
    }
    .pnxs_banner_names ul li{
        font-size: 16px;     
    }
    .pnxs_banner_names ul li::before {
        height: 25px;
        right: -15px;
    }
    .pnxs_service_box {     
        min-height: 320px;
    }
    .pnxs_service_head {
        padding-bottom: 30px;
        gap: 5px !important;
    }
    .pnxs_service_head h3{
        font-size: 40px;
    }
    section.pnxs_video_wrapper h1 {
        font-size: 40px;
    }
    .pnxs_testmnl_parent {     
        align-items: unset !important;
    }
    .pnxs_footer_left > p {     
        max-width: 350px;
    }
    section.pnxs_cover_wrapper a > img {
        height: 250px;
    }
}
@media (max-width:850px) {
    .pnxs_banner_names ul {
        gap: 15px;
    }
    .pnxs_banner_names ul li {
        font-size: 15px;
    }
    .pnxs_banner_names ul li::before {
        height: 15px;
        right: -7px;
    }
}
@media (max-width:767px) {
    .section {
        padding: 6em 1em 6em 1em;
    }
    .pnxs_banner_wrapper {     
        height: 50vh;        
    }
    .pnxs_banner_wrapper .image-overlay{        
        display: block;
    }
    .pnxs_main_head {
        font-size: 23px;
    }
    .pnxs_banner_top P {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .pnxs_banner_names ul {     
        gap: 30px;        ;
    }
    .pnxs_banner_names ul li {
        font-size: 13px;
    }
    .pnxs_banner_names ul li::before {
        height: 20px;
        right: -15px;
    }
    .pnxs_service_box {
        min-height: auto;        
        max-width: 400px;
        width: 100%;
        margin: auto;
    }
    section.pnxs_video_wrapper {     
        height: 40vh;        
    }
    section.pnxs_video_wrapper h1 {
        font-size: 30px;
    }
    .pnxs_banner_wrapper video {
        height: 500px;
    }
    section.pnxs_video_wrapper video {
        height: 500px;
    }
    .logo-partner {     
        margin-top: 20px;
    }
    .pnxs_footer_left > p {
        max-width: 450px;
    }
    .section.pnxs_footer_parent h5 {
        margin-bottom: 0;
    }
    .pnxs_foot_infomtn{
        margin-top: 20px;
    }
    section.pnxs_cover_wrapper a > img {
        height: 180px;
    }
}
@media(max-width:575px){    
    .pnxs_main_head {
        font-size: 17px;
        margin-bottom: 0;
    }
    .pnxs_banner_top P {
        font-size: 16px;     
    }
    .pnxs_banner_names ul li{
        font-size:12px;
    }
    .request-loader {        
        height: 50px;
        width: 50px;
    }
    button.btn.request-loader svg {
        width: 15px;
        height: 15px;
    }
    .pnxs_about_content h3, .pnxs_service_head h3, .pnxs_temsl_head h3, .pnxs_contact_wrapper h3, .pnxs_partner_wrapper h3 {
        font-size: 32px;
    }
    section.pnxs_video_wrapper h1 {
        font-size: 25px;
    }
    section.pnxs_video_wrapper {
        height: 30vh;
    }
    .pnxs_partner_head h3 {
        margin-bottom: 30px !important;
    }
    section.pnxs_cover_wrapper a > img {
        height: 150px;
    }
}
@media(max-width:480px){    
    .pnxs_banner_wrapper {
        padding: 80px 10px!important;
        height: 100%;
    }
    .pnxs_main_head {
        font-size: 17px;        
    }
    .pnxs_banner_top P {
        font-size: 15px;     
    }
    .pnxs_banner_names ul li {
        font-size: 10px;     
    }
    .pnxs_banner_names ul {        
        margin-bottom: 10px;
    }    
    .pnxs_social_flex {
        gap: 20px;
    }
    .pnxs_about_content h3, .pnxs_service_head h3, .pnxs_temsl_head h3, .pnxs_contact_wrapper h3, .pnxs_partner_wrapper h3 {
        font-size: 28px;
    }
    .pnxs_social_flex a img {
        max-width: 110px;
    }
    section.pnxs_video_wrapper {
        height: 30vh;
    }
    section.pnxs_video_wrapper h1 {
        font-size: 20px;
    }
    .logo-container > img {
        width: 140px;     
    }
    .section {
        padding: 3em 1em 3em 1em;
    }
    .pnxs_about_img img {
        height: 300px;     
    }
    .pnxs_footer_wrapper .pnxs_footer_left > img {
        width: 200px;
    }
    .pnxs_footer_wrapper .section {
        padding: 3em 1em 2em 1em;
    }    
    .pnxs_footer_left > p {        
        font-size: 12px;
    }
    .pnxs_footer_left .social-item {
        width: 2.2rem;
        height: 2.2rem;
    }
    .section.pnxs_footer_parent h5 {     
        font-size: 19px;
    }
    .list li a {     
        padding: 0 0 5px 15px;        
        font-size: 14px;
    }
    .list li a:before {        
        width: 6px;
        height: 6px;
    }
    .section.pnxs_footer_parent a > img {
        max-width: 100px;     
    }    
    .pnxs_footer_content .pnxs_footer_add_icon {
        min-width: 35px;
        min-height: 35px;
        max-width: 35px;
        max-height: 35px;
    }
    .pnxs_footer_add_icon > img {
        width: 19px;
        height: 19px;     
    }
    .pnxs_footer_add_info span:first-child {
        font-size: 18px !important;
    }
    .pnxs_footer_add_info span:last-child {
        font-size: 12px;     
    }
    .pnxs_footer_add_info a {     
        font-weight: 300;
        font-size: 13px;
    }
    .pnxs_fot_social{
        gap: 10px !important;
    }
    .section.pnxs_footer_parent .px-lg-5, .section.pnxs_footer_parent .px-4 {     
        gap: 10px !important;
    }
    .section.pnxs_footer_parent h5 {
        margin-bottom: 10px;
    }
    .pnxs_foot_infomtn {
        margin-top: 10px;
    }
    .logo-partner {     
        max-width: 150px;
        height: auto;
        object-fit: contain;
    }
    .pnxs_header_parnt .social-container {     
        gap: 7px !important;
        margin-right: 45px;
    }
    .pnxs_toggle_btn {
        margin-top: 2px;
        margin-right: -10px;
    }
    .nav-link {        
        font-size: 15px;
        font-weight: 500;
    }
    ul.navbar-nav {
        gap: 10px;     
    }
    section.pnxs_cover_wrapper a > img {
        height: 120px;
    }
}
@media(max-width:425px){
    .pnxs_nav_menu {        
        top: 70px;
        width: 250px;
    }    
    .request-loader {        
        height: 35px;
        width: 35px;
        padding: 0;
    }
    button.btn.request-loader svg {
        width: 10px;
        height: 10px;
    }
    .pnxs_main_head {
        font-size: 16px;
        font-weight: normal !important;
    }
    .pnxs_banner_top P{
        font-size: 13px;
    }
    .pnxs_banner_names ul {
        gap: 20px;
        margin-bottom: 0;
        padding-left:10px;
    }
    .pnxs_banner_names ul li::before {
        height: 15px;
        right: -10px;
    }
    .trailor {     
        font-size: 13px;
    }    
    .pnxs_about_content h3, .pnxs_service_head h3, .pnxs_temsl_head h3, .pnxs_contact_wrapper h3, .pnxs_partner_wrapper h3 {
        font-size: 25px;
    }
    .pnxs_about_content p {
        margin-bottom: 0;
        font-size: 14px;
    }
    .pnxs_about_content h5 {
        font-size: 20px;
    }
    .pnxs_about_content {
        gap: 10px !important;
    }
    .pnxs_social_flex a img {
        max-width: 100px;
    }
    .pnxs_social_flex {
        gap: 15px;
    }    
    .pnxs_top_heading {
        font-size: 16px;     
    }
    .pnxs_service_head {
        padding-bottom: 20px;     
    }
    .pnxs_service_img > img {
        width: 50px;
        height: 50px;
    }
    .pnxs_service_content h4 {
        font-size: 20px;
        margin: 10px 0 10px 0;
    }
    .pnxs_service_content > p {
        font-size: 13px;
    }
    section.pnxs_video_wrapper video, .pnxs_banner_wrapper video {
        height: 400px;
    }
    span.fs-very-large > img {
        width: 30px;
        height: 30px;     
    }
    .testimonial-container > p {
        font-size: 14px !important;
    }
    .pnxs_client_img > img {
        width: 50px;
        height: 50px;
    }
    .pnxs_testmnl_info .name {     
        font-size: 16px !important;
        line-height: normal;
    }
    .pnxs_testmnl_info .designation {
        font-size: 15px !important;
        line-height: normal;
    }
    .pnxs_client_img {
        gap: 10px !important;
    }
    .fs-very-large {
        font-size: 1.825rem;
    }
    .pnxs_temsl_head h3 {
        margin-bottom: 0;
    }
    .pnxs_temsl_head {
        gap: 10px !important;
    }
    .pnxs_temsl_head p {     
        font-weight: 300;
        font-size: 14px;
        margin-bottom: 0;
    }
    .rating li > img {
        width: 15px;
        height: 15px;
    }
    .pnxs_form_head, .pnxs_partner_head{
        gap: 10px !important;        
    }
    .pnxs_form_head h3{
        margin-bottom: 30px !important;
    }
    .pnxs_contact_box {     
        padding: 30px 20px;        
    }
    .pnxs_input_field {
        margin-bottom: 20px;
    }
    .pnxs_input_field label {
        font-size: 16px;
        padding-bottom: 7px;
    }
    .pnxs_input_field input, .pnxs_input_field textarea, .pnxs_input_field input::placeholder {
        font-size: 13px;
    }
    .pnxs_input_field textarea {
        min-height: 100px;
    }
    .pnxs_contact_btn .button {
        min-width: 120px;     
        font-size: 16px;
        padding: 10px;
    }
    .pnxs_partner_head h3 {
        margin-bottom: 10px !important;
    }    
    .pnxs_cpright{
        padding: 15px 0 !important;
    }
    .pnxs_cpright p {
        font-size: 14px;        
    }
    .pnxs_banner_wrapper .image-overlay {
        height: 300px;
    }
}
@media(max-width:375px){
    .pnxs_toggle_btn {
        margin-top: 3px;
        margin-right: -15px;
    }
    .pnxs_toggle_btn span {
        width: 25px;
        height: 3px;
        margin-bottom: 4px;
    }
    .pnxs_toggle_btn span:nth-child(2) {
        width: 20px;
    }
    .pnxs_menu_open .pnxs_toggle_btn span:nth-child(1) {        
        transform-origin: 3px 4px;
    }
    .pnxs_header_parnt .social-container {     
        margin-right: 35px;
    }
    .pnxs_header_parnt .social-item {
        width: 1.6rem;
        height: 1.6rem;
    }
    .pnxs_header_parnt {     
        gap: 5px;
    }
    .pnxs_main_head {
        font-size: 13px;     
    }
    .pnxs_banner_top P {
        font-size: 11px;
    }
    .pnxs_banner_wrapper {
        padding: 60px 0px!important;     
    }
    .pnxs_about_content h3, .pnxs_service_head h3, .pnxs_temsl_head h3, .pnxs_contact_wrapper h3, .pnxs_partner_wrapper h3 {
        font-size: 22px;
    }
    .pnxs_about_content p {     
        font-size: 12px;
    }
    .pnxs_about_content h5 {
        font-size: 18px;
        margin-bottom: 0;
        font-weight: normal !important;
    }
    .pnxs_social_flex {
        gap: 10px;
    }
    .pnxs_social_flex a img {
        max-width: 85px;
    }
    .pnxs_cpright p {
        font-size: 12px;
    }
    section.pnxs_cover_wrapper a > img {
        height: 100px;
    }
}
@media(max-width:350px){
    .logo-container > img {
        width: 120px;
    }
    .pnxs_nav_menu {
        top: 65px;     
    }
    .pnxs_toggle_btn {
        margin-top: 0;     
    }
}
