/*
Template: Growix - Business Consulting HTML Template
Author: peacefulqode.co.in
Version: 1.0
Design and Developed by: Peacefulqode

NOTE: This is main stylesheet of template, This file contains the styling for the actual Template. Please do not change anything here! write in a custom.css file if required!

*/

/*==============================================
[  Table of contents  ]
================================================

==> Moz Selection
==> General
==> Loading
==> Scrollbar
==> Back to Top
==> Button Core
==> Animation Button
==> Section Title
==> Header
==> Search Button
==> Breadcrumb
==> Footer
==> Blog
==> Blog single
==> Isotope Portfolio
==> Portfolio Zigzag
==> Portfolio Slider
==> Service Box
==> Wow Image Effects
==> Icon Box
==> About Us
==> Process Step
==> Popup Animation
==> Team
==> Fancy Box
==> Testimonial
==> OWL Carousel
==> Form
==> Client
==> Map Box
==> Pagination
==> Service Single
==> Card
==> Pricing Plan
==> Award
==> Counter
==> FAQ
==> 404
==> Progress Bar
==> Custom Css

=======================================
[ End table content ]
======================================*/

/*===== fonts =====*/

@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&family=Manrope:wght@200..800&display=swap');

/* ################################# */

/* Moz Selection */

/* ################################# */

:root {
    --primary-color: #1C5540;
    --dark-color: #232323;
    --secondary-color: #4A4A4A;
    --grey-color: #F1EEE6;
    --white-color: #ffffff;
    --light-white: #ffffff2b;
    --light-black: #0000001F;
    --body-fonts: "Hanken Grotesk", serif;
    --title-fonts: "Manrope", serif;
    --border-radius: 10px;
    --big--border-radius: 20px;
    --transition: all 0.5s ease-in-out;
    --background-color: #F1EEE6;
}

/* ################################# */

/* General */

/* ################################# */

body {
    background: var(--white-color);
    font-family: var(--body-fonts);
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    line-height: 1.8;
    color: var(--secondary-color);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--title-fonts);
    color: var(--dark-color);
    font-style: normal;
    text-transform: capitalize;
    font-weight: 700;
    margin: 0;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
}

h1 {
    font-size: 40px;
    font-style: normal;
    line-height: 48px;
}

h2 {
    font-size: 36px;
    font-style: normal;
    line-height: 44px;
}

h3 {
    font-size: 32px;
    font-style: normal;
    line-height: 40px;
}

h4 {
    font-size: 28px;
    font-style: normal;
    line-height: 36px;
}

h5 {
    font-size: 24px;
    font-style: normal;
    line-height: 32px;
}

h6 {
    font-size: 20px;
    font-style: normal;
    line-height: 28px;
}

/*===== HTML Tags =====*/
a,
.button {
    color: var(--primary-color);
    outline: none !important;
    text-decoration: none;
    transition: all 0.5s ease-in-out;
}

a:focus,
a:hover {
    outline: none;
    text-decoration: none !important;
}

p {
    margin-bottom: 30px;
}

img {
    max-width: 100%;
    height: auto;
}

pre {
    background: var(--white-color);
    padding: 15px;
    border: 1px solid var(--grey-color);
}

hr {
    margin: 0;
    padding: 0px;
    border-bottom: 1px solid #e0e0e0;
    border-top: 0px;
}

b,
strong {
    font-weight: 600;
}

/*===== Lists (Nested) =====*/

ol,
ul {
    padding-left: 25px;
    margin-bottom: 1em;
    list-style: none;
}

ol li {
    list-style: decimal;
}

ol ol {
    padding-left: 25px;
}

ul li {
    list-style: inherit;
}

/*===== Definition Lists =====*/

dl dd {
    margin-bottom: 15px;
}

dl dd:last-child {
    margin-bottom: 0px;
}

/*===== Table =====*/

table {
    border: 2px solid var(--grey-color);
    width: 100%;
    margin-bottom: 20px;
}

table td,
table th {
    border: 2px solid var(--grey-color);
    padding: 8px;
    text-align: center;
}

/*===== Input Textarea =====*/
input,
input.form-control {
    background: var(--grey-color);
    border: 1px solid var(--grey-color);
    color: var(--dark-color);
    width: 100%;
    float: left;
    font-size: 16px;
    padding: 0 15px;
    height: 54px;
    line-height: 54px;
    outline: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

input:focus,
input:hover,
textarea:focus,
textarea:hover,
.form-control:focus {
    border-color: var(--primary-color);
    outline: none;
}

input[type="radio"],
input[type="checkbox"] {
    width: auto;
    height: auto;
    float: none;
    margin-right: 5px;
}

textarea {
    background: var(--grey-color);
    border: 1px solid var(--grey-color);
    color: var(--dark-color);
    width: 100%;
    float: left;
    padding: 10px 15px;
    outline: none;
    border-radius: var(--border-radius);
}

.search-submit {
    background: transparent;
    border: none;
    padding: 0;
    font-size: 20px;
    position: absolute;
    text-align: center;
    color: var(--secondary-color);
    line-height: 54px;
    height: 54px;
    width: 54px;
    top: 0;
    right: 0;
    transition: all 0.5s ease-in-out;
}

/*===== Select =====*/
select,
select.form-control {
    background: var(--grey-color);
    border: 1px solid var(--grey-color);
    color: var(--dark-color);
    width: 100%;
    float: left;
    font-size: 16px;
    padding: 0 15px;
    height: 54px;
    line-height: 54px;
    outline: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill=\'%23999999\' height=\'24\' viewBox=\'0 0 24 24\' width=\'24\' xmlns=\'http://www.w3.org/2000/svg\'><path d=\'M7 10l5 5 5-5z\'/><path d=\'M0 0h24v24H0z\' fill=\'none\'/></svg>');
    background-repeat: no-repeat;
    background-position: right 16px bottom 50%;
    background-size: 20px 20px;
}

.container {
    max-width: 1400px;
    position: relative;
}

section {
    padding: 130px 0;
    position: relative;
}

@media(max-width:1023px) {

    section {
        padding: 90px 0;
    }
}

@media(max-width:767px) {

    section {
        padding: 60px 0;
    }
}

/*================================================
Loading
================================================*/

#pq-loading {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    display: flex;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background: var(--white-color);
}

#pq-loading img {
    height: 60px;
}

/*==============================================
Scrollbar
================================================*/

html::-webkit-scrollbar {
    width: 8px;
    border-radius: 8px;
}

html::-webkit-scrollbar-track {
    background-color: var(--grey-color);
    border-radius: 8px
}

html::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 8px
}

html {
    scroll-behavior: smooth;
}

/*==============================================
 Back to Top 
================================================*/

#back-to-top .top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    margin: 0px;
    color: var(--dark-color);
    background: var(--white-color);
    z-index: 99;
    border: 1px solid var(--dark-color);
    font-size: 22px;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 90px;
    -moz-border-radius: 90px;
    -webkit-border-radius: 90px;
    overflow: hidden;
}

#back-to-top .top:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

#back-to-top .top i {
    display: inline-block;
}

#back-to-top .top:hover i {
    animation: back-to-top-animation 0.4s linear;
}

@keyframes back-to-top-animation {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }

    50% {
        transform: translate(0, -40px);
        opacity: 0;
    }

    51% {
        transform: translate(0, 40px);
        opacity: 0;
    }

    100% {
        transform: translate(0, 0);
        opacity: 1;
    }
}

/*==============================================
Button Core
================================================*/

.pq-button {
    position: relative;
    display: inline-block;
    font-size: 18px;
    line-height: 2;
    font-weight: 600;
    letter-spacing: 0.04em;
    width: auto;
    vertical-align: middle;
    text-transform: uppercase;
    text-decoration: none;
    overflow: hidden;
    font-family: var(--title-fonts);
    transition: all 0.3s ease-in-out;
}

/*==========flat-button ================*/

.pq-button.pq-button-flat {
    padding: 12px 30px;
    border-radius: 50px;
    color: var(--white-color);
    background-color: var(--primary-color);
}

.pq-button .pq-button-block {
    position: relative;
    height: 36px;
    overflow: hidden;
    display: block;
}

.pq-button .pq-button-text {
    font-weight: 500;
    display: block;
    position: relative;
    z-index: 9;
    transform: translateY(0%);
    transition: all 0.3s ease-in-out;
}

.pq-button:hover .pq-button-block .pq-button-text {
    transform: translateY(-100%);
}

@media(max-width:479px) {

    .rev-btn .pq-button.pq-button-flat {
        font-size: 16px;
        padding: 8px 24px;
    }

    .rev-btn .pq-button.pq-button-flat .pq-button-block {
        height: 32px;
    }
}

/*==========link-button ================*/

.pq-button.pq-button-link .pq-button-block {
    color: var(--primary-color);
}

.pq-button.pq-button-link .pq-button-block.text-white {
    color: var(--white-color);
}

.pq-button.pq-button-link .pq-button-block::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.7s ease-in-out;
}

.pq-button.pq-button-link .pq-button-block::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.4s ease-in-out;
}

.pq-button.pq-button-link .pq-button-block.text-white::before {
    background-color: var(--white-color);
}

.pq-button.pq-button-link .pq-button-block.text-white::after {
    background-color: var(--white-color);
}

.pq-button.pq-button-link:hover .pq-button-block::after {
    width: 0;
}

.pq-button.pq-button-link:hover .pq-button-block::before {
    width: 100%;
}

/*==========icon-button ================*/

.pq-icon-button {
    overflow: hidden;
}

.pq-icon-button a {
    width: 60px;
    height: 60px;
    border: 1px solid var(--dark-color);
    border-radius: 30px;
    text-align: center;
    display: inline-block;
    font-size: 24px;
    line-height: 58px;
    color: var(--dark-color);
    transition: all 0.5s ease-in-out;
}

.pq-icon-button.text-white a {
    border-color: var(--white-color);
    color: var(--white-color);
}

.pq-icon-button.pq-bg-black a:hover {
    background-color: var(--dark-color);
    color: var(--white-color);
    transition: var(--transition);
}

.pq-icon-button a i {
    display: inline-block;
    transform: translate(0, 0);
}

.pq-icon-button a:hover i {
    animation: button-animation 0.4s linear;
}

@keyframes button-animation {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }

    50% {
        transform: translate(40px, 0);
        opacity: 0;
    }

    51% {
        transform: translate(-40px, 0);
        opacity: 0;
    }

    100% {
        transform: translate(0, 0);
        opacity: 1;
    }
}

/*==========load-more-button ================*/

.pq-button-container.pq-button-load-container {
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

.pq-button-container.pq-button-load-container .pq-button.pq-bg-white {
    background-color: var(--white-color);
    color: var(--primary-color);
}

.pq-button-container.pq-button-load-container .pq-button.pq-bg-white:hover {
    color: var(--white-color);
    background-color: var(--dark-color);
    transition: var(--transition);
}

/*==============================================
 Animation Button
================================================*/

/*style-1*/
.pq-animation-block {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.pq-animation-button {
    width: 180px;
    height: 180px;
    border-radius: 100%;
    transform-origin: center;
    position: relative;
}

.pq-animation-button-icon {
    background-color: var(--grey-color);
    width: 90px;
    height: 90px;
    border-radius: 55px;
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 28px;
}

.pq-animation-button-icon i {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.pq-animation-block .pq-animation-button-inner img {
    width: 180px;
    position: absolute;
    top: 0%;
    left: 0%;
    right: 0%;
    bottom: 0%;
    animation: rotateText 10s linear infinite;
}

/*style-2*/

.pq-animation-button.pq-style-2 {
    width: 180px;
    position: relative;
}

.pq-animation-button.pq-style-2 .pq-media-block .pq-icon-block {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-weight: 400;
    font-family: var(--title-fonts);
    color: var(--dark-color);
    text-align: center;
    font-size: 30px;
    line-height: 100px;
    display: inline-block;
    border-radius: 60px;
    z-index: 2;
}

.pq-animation-button.pq-style-2 .pq-media-block .pq-icon-block i {
    display: block;
    font-size: 24px;
    line-height: 32px;
}

.pq-animation-button.pq-style-2 .pq-media-block img {
    animation: text-animation 10s linear infinite;
    transition: var(--transition);
}

@keyframes text-animation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}


/*==============================================
   icon Button
================================================*/

/*==========icon-button ================*/

.pq-icon-button {
    overflow: hidden;
}

.pq-icon-button a {
    width: 60px;
    height: 60px;
    border: 1px solid var(--dark-color);
    border-radius: 30px;
    text-align: center;
    display: inline-block;
    font-size: 24px;
    line-height: 58px;
    color: var(--dark-color);
    transition: all 0.5s ease-in-out;
}

.pq-icon-button.text-white a {
    border-color: var(--white-color);
    color: var(--white-color);
}

.pq-icon-button.pq-bg-black a:hover {
    background-color: var(--dark-color);
    color: var(--white-color);
    transition: var(--transition);
}

.pq-icon-button a i {
    display: inline-block;
    transform: translate(0, 0);
}

.pq-icon-button a:hover i {
    animation: button-animation 0.4s linear;
}

@keyframes button-animation {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }

    50% {
        transform: translate(40px, 0);
        opacity: 0;
    }

    51% {
        transform: translate(-40px, 0);
        opacity: 0;
    }

    100% {
        transform: translate(0, 0);
        opacity: 1;
    }
}

/*==============================================
   Animation Button
================================================*/

/*=====style-1=====*/

.pq-animation-block.pq-style-1 {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.pq-animation-block.pq-style-1 .pq-animation-button {
    width: 180px;
    height: 180px;
    border-radius: 100%;
    transform-origin: center;
    position: relative;
}

.pq-animation-block.pq-style-1 .pq-animation-button-icon {
    background-color: var(--grey-color);
    width: 90px;
    height: 90px;
    border-radius: 55px;
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 28px;
}

.pq-animation-block.pq-style-1 .pq-animation-button-icon i {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.pq-animation-block.pq-style-1 .pq-animation-button-inner img {
    width: 180px;
    position: absolute;
    top: 0%;
    left: 0%;
    right: 0%;
    bottom: 0%;
    animation: rotateText 10s linear infinite;
}

/*==============================================
   Section Title
================================================*/

.pq-section-title.text-center {
    padding: 0 270px;
    margin-bottom: 60px;
}

.pq-section-title .pq-section-sub-title {
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.pq-section-title.pq-style-1 .pq-section-sub-title i {
    font-size: 18px;
    line-height: 26px;
    color: var(--primary-color);
    display: inline-block;
}

.pq-bg-dark .pq-section-title.pq-style-1 .pq-section-sub-title i {
    color: var(--white-color);
}

.pq-section-title.pq-style-1 .pq-section-sub-title span {
    color: var(--primary-color);
    font-size: 18px;
    line-height: 26px;
    font-family: var(--title-fonts);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.pq-bg-dark .pq-section-title.pq-style-1 .pq-section-sub-title span {
    color: var(--white-color);
}

.pq-section-title .pq-section-main-title {
    font-size: 52px;
    line-height: 60px;
    color: var(--dark-color);
    text-transform: capitalize;
}

.pq-bg-dark .pq-section-title .pq-section-main-title {
    color: var(--white-color);
}

.pq-section-title .pq-section-main-title .word {
    display: inline-block;
}

.pq-section-title .pq-section-main-title .word .char:first-child {
    text-transform: capitalize;
}

.pq-section-title .pq-section-main-title .char {
    transition: transform 0.3s cubic-bezier(0.3, 0, 0.3, 1), opacity 0.3s linear;
    transform: translateX(-5px);
    transition-delay: calc(20ms * var(--char-index));
    text-transform: none;
    display: inline-block;
}

.pq-section-title .pq-section-main-title[data-scroll="out"] .char {
    opacity: 0.4;
    transform: translateY(0.25em);
}

.pq-section-title .pq-section-description {
    margin-top: 10px;
    margin-bottom: 30px;
}

@media(max-width:1279px) {
    .pq-section-title.text-center {
        padding: 0;
    }
}

@media (max-width: 1023px) {
    .pq-section-title.text-center {
        margin-bottom: 45px;
    }

    .pq-section-title .pq-section-main-title {
        font-size: 44px;
        line-height: 52px;
    }
}

@media (max-width: 767px) {
    .pq-section-title .pq-section-main-title {
        font-size: 40px;
        line-height: 48px;
    }

    .pq-section-title.text-center {
        margin-bottom: 30px;
    }
}

@media (max-width: 479px) {
    .pq-section-title .pq-section-main-title {
        font-size: 36px;
        line-height: 44px;
    }
}

/*==============================================
   Header
================================================*/

/*===== header-style-1=====*/

header.pq-header-style-1 {
    position: relative;
    display: inline-block;
    width: 100%;
    z-index: 99;
    top: 0;
}

.animated {
    animation-duration: 1.25s;
}

.pq-header-style-1 .pq-bottom-header {
    padding: 0 30px;
    background-color: var(--white-color);
}

.pq-bottom-header .navbar {
    padding: 0px;
    gap: 45px;
    align-items: center;
}

.pq-bottom-header .navbar.navbar-expand-xl .navbar-brand {
    padding: 0;
}

.pq-bottom-header .navbar-brand img {
    height: 55px;
}

.pq-bottom-header .navbar .navbar-collapse .pq-menu-contain .navbar-nav .menu-item {
    position: relative;
}

.pq-bottom-header .pq-menu-contain .navbar-nav>li.menu-item {
    margin-right: 15px;
    z-index: 2;
}

.pq-bottom-header .pq-menu-contain .navbar-nav>li.menu-item:last-child {
    margin-right: 0;
    color: var(--dark-color);
}

.pq-bottom-header .navbar .navbar-nav>.menu-item.current-menu-item>a {
    color: var(--white-color);
}

.pq-bottom-header .pq-menu-contain .navbar-nav>li.menu-item>a {
    padding: 0 15px;
    font-size: 18px;
    line-height: 100px;
    height: 100px;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    position: relative;
    color: var(--dark-color);
    font-family: var(--title-fonts)
}

.pq-bottom-header .navbar .navbar-nav li a::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    width: 0;
    z-index: -1;
    height: 34px;
    color: var(--white-color);
    background-color: var(--primary-color);
    border-radius: var(--border-radius);
    transform: translateY(-50%);
    transition: var(--transition);
}

.pq-bottom-header .navbar .navbar-nav>.menu-item:hover>a::before {
    left: 0;
    width: 100%;
}

.pq-bottom-header .navbar .navbar-nav>.menu-item.current-menu-item>a::before {
    width: 100%;
    left: 0px;
}

.pq-bottom-header .navbar .navbar-nav li:hover a {
    color: var(--white-color);
    transition: var(--transition);
}

.pq-bottom-header .navbar-nav .menu-item .sub-menu {
    position: absolute;
    width: 225px;
    background-color: white;
    border-radius: 10px 10px 10px 10px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 0;
    display: none;
}

.pq-bottom-header .navbar-nav .menu-item .sub-menu .menu-item.current-menu-item>a {
    background-color: var(--primary-color);
    color: var(--white-color);
    width: 100%;
}

.pq-bottom-header .navbar-nav .menu-item .sub-menu .menu-item a {
    font-size: 16px;
    padding: 10px 15px 10px 15px;
    line-height: 35px;
    display: inline-block;
    width: 100%;
    text-transform: uppercase;
    color: var(--dark-color);
    position: relative;
}

.pq-bottom-header .menu-item:hover .sub-menu {
    display: block;
}

.pq-bottom-header .navbar-nav .menu-item .sub-menu .menu-item a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    width: 100%;
    transition: var(--transition);
}

.pq-bottom-header .menu-item .sub-menu .menu-item {
    list-style-type: none;
}

.pq-bottom-header .navbar-nav .menu-item .sub-menu .menu-item .sub-menu {
    position: absolute;
    left: 100%;
    top: 0;
    display: none;
}

.pq-bottom-header .menu-item i {
    rotate: -90deg;
    position: absolute;
    top: 40%;
    right: 10px;
    font-size: 14px;
    color: var(--dark-color);
}

.pq-bottom-header .navbar-nav .menu-item .sub-menu .menu-item:hover i {
    color: var(--white-color);
}

.pq-bottom-header .navbar-nav .menu-item .sub-menu .menu-item.current-menu-item i {
    color: var(--white-color);
}

.pq-bottom-header .navbar-nav .menu-item .sub-menu .menu-item:hover .sub-menu {
    display: block;
}

.pq-bottom-header .sub-menu .menu-item:first-child>a {
    border-radius: 10px 10px 0 0;
}

.pq-bottom-header .sub-menu .menu-item:last-child>a {
    border-radius: 0 0 10px 10px;
}

.pq-header-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.pq-header-right .pq-header-contact a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.pq-header-right .pq-header-contact .pq-icon {
    background-color: var(--grey-color);
    border-radius: 100%;
    width: 48px;
    height: 48px;
    margin: 0px 0px;
    padding-left: 0px;
    text-align: center;
    line-height: 48px;
    display: inline-block;
    font-size: 18px;
    color: var(--primary-color);
}

.pq-header-right .pq-header-contact .pq-contact-number {
    font-size: 16px;
    line-height: 2;
    color: var(--dark-color);
    font-family: var(--title-fonts);
    font-weight: 600;
    margin-left: 10px;
}

.pq-header-right .navbar-toggler {
    height: 60px;
    width: 60px;
    background-color: var(--primary-color);
    box-shadow: none;
    font-size: 28px;
    text-align: center;
}

button.navbar-toggler i {
    color: var(--white-color);
}

@media(max-width:1499px) {
    .pq-header-style-1 .pq-header-contact {
        display: none;
    }
}

@media (max-width: 1399px) {
    .pq-header-style-1 .pq-bottom-header {
        padding: 0;
    }
}

@media(max-width:1279px) {
    .pq-bottom-header .navbar {
        padding: 15px 0px;
        gap: 30px;
    }

    .pq-bottom-header .pq-menu-contain .navbar-nav>li.menu-item {
        margin-right: 0;
    }

    .pq-bottom-header .pq-menu-contain .navbar-nav>li.menu-item>a {
        height: 50px;
        line-height: 50px;
    }

    .pq-bottom-header .navbar-nav .menu-item .sub-menu {
        position: sticky;
        width: 100%;
    }

    .pq-bottom-header .navbar-nav .menu-item .sub-menu .menu-item .sub-menu {
        position: relative;
        left: 0;
    }

    .pq-bottom-header .menu-item i {
        right: 15px;
        color: var(--dark-color);
        rotate: 0deg;
    }
}

@media(max-width:1199px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        width: 100%;
        background-color: var(--white-color);
        z-index: 99;
    }
}

@media(max-width:1099px) {
    .pq-bottom-header .navbar .navbar-nav li a::before {
        border-radius: 0;
        content: none;
    }

    .pq-bottom-header .sub-menu .menu-item:first-child>a {
        border-radius: 0;
    }

    .pq-bottom-header .sub-menu .menu-item:last-child>a {
        border-radius: 0;
    }

    .pq-bottom-header .navbar .navbar-nav>.menu-item.current-menu-item>a {
        background-color: var(--primary-color);
    }

    .pq-bottom-header .navbar .navbar-nav li:hover a {
        color: var(--dark-color);
        transition: var(--transition);
    }
}

@media(max-width:767px) {
    .pq-bottom-header .navbar-brand img {
        height: 50px;
    }

    .pq-bottom-header .navbar {
        gap: 15px;
    }

    .pq-header-right .pq-button {
        display: none;
    }

    .pq-header-right .navbar-toggler {
        height: 50px;
        width: 50px;
        font-size: 24px;
    }
}

@media (max-width: 379px) {
    .pq-bottom-header .navbar-brand img {
        height: 45px;
    }
}

/*===== header-style-2=====*/

header.pq-header-style-2 {
    position: relative;
    display: inline-block;
    width: 100%;
    z-index: 99;
    top: 0;
}

.pq-top-header {
    padding: 0 45px;
    background-color: var(--grey-color);
}

.pq-top-header .pq-header-contact ul {
    display: flex;
    gap: 30px;
    margin-bottom: 0;
    padding: 0;
}

.pq-top-header .pq-header-contact ul li {
    font-size: 16px;
    padding: 10px 0;
    display: flex;
    gap: 8px;
    align-items: center;
    color: var(--primary-color);
}

.pq-top-header .pq-header-contact ul li:nth-last-child(2) {
    margin-left: auto;
}

.pq-top-header .pq-header-contact ul li a {
    display: flex;
    gap: 10px;
    align-items: center;
}

.pq-top-header .pq-header-contact ul li .pq-header-icon {
    font-size: 18px;
}

.pq-header-style-2 .pq-bottom-header {
    padding: 0 30px;
}

.pq-header-style-2 .pq-bottom-header .navbar-collapse {
    justify-content: center;
}

.pq-header-style-2 .navbar-nav .menu-item .sub-menu .menu-item.current-menu-item a {
    background-color: var(--primary-color);
    color: var(--white-color);
    width: 100%;
    border-radius: 0;
}

@media(max-width:1399px) {
    .pq-header-style-2 .pq-bottom-header {
        padding: 0;
    }
}

@media(max-width:1099px) {
    .pq-top-header {
        padding: 0;
    }
}

@media(max-width:979px) {
    .pq-top-header {
        padding: 0 15px;
    }

    .pq-top-header .pq-header-contact ul {
        gap: 15px;
    }
}

@media(max-width:767px) {
    .pq-top-header .pq-header-contact ul li:nth-child(1) {
        display: none;
    }

    .pq-top-header .pq-header-contact ul {
        justify-self: baseline;
    }
}

@media(max-width:479px) {
    .pq-top-header {
        display: none;
    }
}

/*===== pq-header-style-3=====*/

.pq-header-style-3 .pq-bottom-header {
    padding: 0 30px;
    background-color: var(--white-color);
}

.pq-header-style-3 .pq-bottom-header .navbar {
    padding: 0;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    justify-items: start;
}

.pq-header-style-3 .pq-bottom-header .navbar .navbar-collapse {
    justify-content: center;
    flex-grow: inherit;
}

.pq-header-style-3 .pq-menu-contain .navbar-nav>li.menu-item.current-menu-item>a {
    background-color: rgba(255, 255, 255, 0);
    color: var(--primary-color);
    padding: 0;
    border-radius: 0;
}

.pq-header-style-3 .pq-menu-contain .navbar-nav>li.menu-item>a {
    padding: 0;
    color: var(--dark-color);
}

.pq-header-style-3 .pq-menu-contain .navbar-nav>li.menu-item {
    margin-right: 20px;
    z-index: 99;
}

.pq-header-style-3 .pq-bottom-header .navbar .navbar-nav li:hover {
    color: var(--white-color);
    transition: var(--transition);
}

.pq-header-style-3 .pq-menu-contain .navbar-nav>li.menu-item:last-child {
    margin-right: 0px;
}

.pq-header-style-3 .navbar-nav .menu-item .sub-menu .menu-item.current-menu-item a {
    background-color: var(--primary-color);
    color: var(--white-color);
    width: 100%;
}

.pq-header-style-3 .pq-bottom-header .navbar .navbar-nav li a::before {
    content: "";
    background-color: var(--primary-color);
    width: 0;
    position: absolute;
    top: 50%;
    height: 2px;
    left: 50%;
    transform: translateY(14px);
    transition: var(--transition);
}

.pq-header-style-3 .pq-bottom-header .navbar .navbar-nav>.menu-item:hover>a::before {
    left: 0;
    width: 100%;
}

.pq-header-style-3 .pq-bottom-header .navbar .navbar-nav>.menu-item.current-menu-item>a::before {
    width: 100%;
    left: 0px;
}

.pq-header-style-3 .pq-menu-contain .navbar-nav>li.menu-item:hover>a {
    color: var(--primary-color);
}

.pq-header-style-3 .pq-bottom-header .navbar-brands {
    text-align: center;
    margin: 0;
}

.pq-header-style-3 .pq-header-right {
    margin-left: auto;
}

@media(max-width:1279px) {
    .pq-header-style-3 .pq-bottom-header {
        padding: 0;
    }

    .pq-header-style-3 .pq-bottom-header .navbar {
        display: flex;
        padding: 15px 0;
        position: relative;
    }

    .pq-header-style-3 .pq-header-right {
        margin-left: 0;
    }

    .pq-header-style-3 .pq-menu-contain .navbar-nav>li.menu-item {
        margin-right: 0;
    }

    .pq-header-style-3 .pq-menu-contain .navbar-nav>li.menu-item.current-menu-item>a {
        padding-left: 10px;
    }

    .pq-header-style-3 .pq-menu-contain .navbar-nav>li.menu-item>a {
        padding-left: 10px;
    }

    .pq-header-style-3 .pq-bottom-header .navbar .navbar-nav>.menu-item:hover>a::before {
        left: 0;
        width: 0;
    }

    .pq-header-style-3 .pq-bottom-header .navbar .navbar-nav>.menu-item.current-menu-item>a::before {
        width: 0;
        left: 0px;
    }

    .pq-bottom-header .navbar-nav .menu-item .sub-menu {
        border-radius: 0;
    }

    .pq-bottom-header .sub-menu .menu-item:last-child>a {
        border-radius: 0;
    }
}

@media(max-width:1023px) {
    .pq-header-style-3 .pq-bottom-header .navbar .navbar-nav li a::before {
        display: none;
    }
}

@media(max-width:479px) {
    .pq-header-style-3 .pq-bottom-header {
        padding: 15px 0;
        height: auto;
    }
}

/*==============================================
   search button
================================================*/

/*++++++ Search ++++++*/

.pq-header-right .pq-search-button {
    font-size: 20px;
    line-height: 2;
    text-align: center;
    color: var(--primary-color);
    display: inline-block;
}

.pq-header-right .pq-search-button svg {
    fill: var(--primary-color);
    width: 18px;
}

.pq-header-right .pq-search-button svg path {
    fill: var(--primary-color);
}

@media(max-width:479px) {
    .pq-header-right .pq-search-button {
        display: none;
    }
}

/*============ Header Search ============*/

.pq-search-button .offcanvas {
    position: fixed;
    z-index: 1050;
    background-color: var(--white-color) !important;
    padding: 45px;
    height: auto;
    bottom: inherit;
    transform: translateY(-100%) !important;
    transition: all 0.5s ease;
    overflow: hidden;
}

.pq-search-button .offcanvas.show {
    display: block;
    transform: translateY(0%) !important;
}

.pq-search-button .offcanvas .btn-close-icon {
    display: inline-block;
    position: absolute;
    right: -70px;
    padding: 0;
    margin-left: 30px;
    box-shadow: none;
    width: 55px;
    height: 55px;
    font-weight: 400;
    background-color: var(--primary-color);
    opacity: 1;
    border-radius: 0;
    color: var(--white-color);
    transition: var(--transition);
    border: none;
    border-radius: 10px;

}

.pq-search-button .offcanvas .btn-close-icon:hover {
    background-color: var(--dark-color);
    color: var(--white-color);
}

.pq-search-button .offcanvas .btn-close-icon:before {
    font-size: 20px;
    content: "\e646";
    font-family: "themify";
}

.pq-search-button .offcanvas .search-form {
    margin: 0 auto;
    width: 60%;
    position: relative;
}

.pq-search-button .offcanvas .search-form label {
    display: block;
}

.pq-search-button .offcanvas .search-form .search-field {
    border: none;
    color: var(--secondary-color);
    background: var(--grey-color);
    padding-left: 30px;
    margin: 0;
    border-radius: 10px;
}

.pq-search-button .offcanvas .search-form .search-submit {
    background: transparent;
    border: none;
    padding: 0;
    font-size: 20px;
    position: absolute;
    text-align: center;
    color: var(--dark-color);
    line-height: 54px;
    height: 54px;
    width: 54px;
    top: 0;
    right: 0;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.pq-search-button .offcanvas .search-form .search-submit:before {
    content: "\e610";
    font-family: "themify";
    font-weight: 500;
}

.pq-search-button .offcanvas .search-form #search-clear {
    display: none;
}

.pq-search-button .offcanvas .search-form input.search-field[type="search"]::-webkit-search-decoration,
.pq-search-button .offcanvas .search-form input.search-field[type="search"]::-webkit-search-cancel-button,
.pq-search-button .offcanvas .search-form input.search-field[type="search"]::-webkit-search-results-button,
.pq-search-button .offcanvas .search-form input.search-field[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance: none;
}

.pq-search-button .offcanvas .search-form .search-field:focus {
    color: var(--dark-color);
}

.pq-search-button .offcanvas .search-form .search-submit {
    background: transparent;
    color: var(--dark-color) !important;
}

.pq-search-button .offcanvas .search-form .search-submit:hover {
    color: var(--primary-color) !important;
}

header#pq-header .pq-bottom-header.pq-header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
    -moz-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
    box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
    background: var(--white-color);
    z-index: 999;
}

/*==============================================
   breadcrumb
================================================*/

/*=====style-1=====*/

.pq-breadcrumb-style-1 {
    background-image: url(../image/breadcrumb/breadcrumb-bg-001.webp);
    object-fit: cover;
}

.pq-breadcrumb-style-1 {
    padding: 180px 0 0 0;
    position: relative;
    background-position: left center;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 0 45px;
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
}

.pq-breadcrumb-style-1 .pq-breadcrumb-title h1 {
    font-size: 60px;
    line-height: 86px;
}

.pq-breadcrumb-style-1 .pq-breadcrumb-container {
    display: inline-block;
}

.pq-breadcrumb-style-1 .pq-breadcrumb-container .breadcrumb {
    text-align: left;
    margin: 0;
    display: flex;
    padding: 18px 30px;
    background-color: var(--primary-color);
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
    margin-bottom: 180px;
    margin-top: 15px
}

.pq-breadcrumb-style-1 .pq-breadcrumb-container .breadcrumb li {
    font-size: 16px;
    line-height: 24px;
    list-style-type: none;
    margin-right: 5px;
    padding-left: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pq-breadcrumb-style-1 .pq-breadcrumb-container .breadcrumb li.active {
    color: var(--white-color);
}

.pq-breadcrumb-style-1 .pq-breadcrumb-container .breadcrumb li a {
    color: var(--white-color);
}

.pq-breadcrumb-style-1 .pq-breadcrumb-container .breadcrumb li a i {
    margin-right: 5px;
    display: none;
}

.pq-breadcrumb-style-1 .pq-breadcrumb-container .breadcrumb li a:hover {
    color: var(--white-color);
}

.pq-breadcrumb-style-1 .pq-breadcrumb-container .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    content: "\e649";
    font-size: 12px;
    font-family: "themify";
    padding-right: 5px;
    color: var(--white-color);
    float: none;
}

@media(max-width:1499px) {
    .pq-breadcrumb-style-1 {
        margin: 0;
        border-radius: 0;
    }
}

@media(max-width:1023px) {

    .pq-breadcrumb-style-1 {
        padding: 130px 0 0 0;
    }

    .pq-breadcrumb-style-1 .pq-breadcrumb-title h1 {
        font-size: 42px;
        line-height: 50px;
    }

    .pq-breadcrumb-style-1 .pq-breadcrumb-container .breadcrumb {
        margin-bottom: 130px;
    }
}

@media(max-width:767px) {
    .pq-breadcrumb-style-1 {
        padding: 90px 0 0 0;
    }

    .pq-breadcrumb-style-1 .pq-breadcrumb-title h1 {
        font-size: 34px;
        line-height: 42px;
    }

    .pq-breadcrumb-style-1 .pq-breadcrumb-container .breadcrumb {
        padding: 10px 20px;
    }

    .pq-breadcrumb-style-1 .pq-breadcrumb-container .breadcrumb li {
        font-size: 14px;
        line-height: 22px;
    }
}

@media(max-width:479px) {

    .pq-breadcrumb-style-1 {
        padding: 60px 0 0 0;
    }

    .pq-breadcrumb-style-1 .pq-breadcrumb-title h1 {
        font-size: 30px;
        line-height: 38px;
    }

    .pq-breadcrumb-style-1 .pq-breadcrumb-container .breadcrumb {
        margin-bottom: 60px;
    }
}

/*==============================================
   footer
================================================*/

/*===== Footer=====*/

.pq-top-footer {
    padding: 90px 0 60px;
}

.pq-footer-detail {
    display: flex;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--light-white);
    align-items: center;
    justify-content: space-between;
    padding-right: 30px;
}

.pq-footer.pq-style-1 .pq-top-footer .pq-footer-detail .pq-footer-main-title h3 {
    font-size: 48px;
    line-height: 56px;
    max-width: 800px;
    color: var(--white-color);
}

.pq-footer.pq-style-1 .pq-top-footer .pq-footer-info {
    display: grid;
    grid-template-columns: 6fr 4fr 2fr;
    gap: 60px;
}

.pq-footer.pq-style-1 .pq-top-footer .pq-footer-column-1 {
    padding-right: 60px;
    border-right: 1px solid var(--light-white);
    height: 100%;
    max-width: 610px;
}

.pq-footer.pq-style-1 .pq-top-footer .pq-footer-column-1 .pq-footer-logo img {
    width: auto;
    height: 60px;
    margin-bottom: 20px;
}

.pq-footer.pq-style-1 .pq-top-footer .pq-footer-column-1 .pq-footer-description {
    color: var(--white-color);
    margin-bottom: 0;
}

.pq-footer.pq-style-1 .pq-top-footer .pq-footer-column-1 .pq-social-icon {
    margin-top: 20px;
}

.pq-footer.pq-style-1 .pq-top-footer .pq-footer-column-1 .pq-social-icon .pq-social-icon-list {
    display: flex;
    margin: 0;
    padding: 0;
    gap: 10px;
}

.pq-footer.pq-style-1 .pq-top-footer .pq-footer-column-1 .pq-social-icon ul li i {
    width: 50px;
    height: 50px;
    color: var(--dark-color);
    border-radius: 30px;
    background-color: var(--white-color);
    text-align: center;
    line-height: 50px;
}

.pq-footer.pq-style-1 .pq-top-footer .pq-footer-column-1 .pq-social-icon ul li i:hover {
    background-color: var(--dark-color);
    color: var(--white-color);
    transition: var(--transition);
    border: none;
}

.pq-footer-column-2 .pq-footer-title h3 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 15px;
    color: var(--white-color);
}

.pq-footer-column-2 .pq-footer-list {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 150px 150px;
    gap: 15px 30px;
}

.pq-footer-column-2 .pq-footer-list .pq-menu-item a {
    color: var(--white-color);
    text-transform: capitalize;
    position: relative;
    padding: 0 0 0 20px;
}

.pq-footer-column-2 .pq-footer-list .pq-menu-item a:hover {
    padding: 0 0 0 25px;
}

.pq-footer-column-2 .pq-footer-list .pq-menu-item a::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 10px;
    height: 2px;
    display: inline-block;
    background: var(--white-color);
}

.pq-footer-column-3 .pq-footer-title h3 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 15px;
    color: var(--white-color);
}

.pq-footer-column-3 .pq-footer-details {
    display: flex;
    gap: 15px;
}

.pq-footer-column-3 .pq-footer-details .pq-footer-icon i {
    font-size: 18px;
    line-height: 26px;
    color: var(--white-color);
}

.pq-footer-column-3 .pq-footer-details .pq-address {
    margin-bottom: 15px;
}

.pq-footer-column-3 .pq-footer-details .pq-address .pq-title {
    font-size: 18px;
    line-height: 32px;
    color: var(--white-color);
    font-weight: 400;
}

.pq-footer-column-3 .pq-footer-details .pq-address p {
    margin: 0;
    color: var(--white-color);
}

.pq-footer-column-3 .pq-footer-details .pq-phone .pq-footer-icon i {
    font-size: 18px;
    line-height: 26px;
    color: var(--white-color);
}

.pq-footer-column-3 .pq-footer-details .pq-phone {
    margin-bottom: 15px;
}

.pq-footer-column-3 .pq-footer-details .pq-phone .pq-title {
    font-size: 18px;
    line-height: 32px;
    color: var(--white-color);
    font-weight: 400;
}

.pq-footer-column-3 .pq-footer-details .pq-phone p {
    margin: 0;
    color: var(--white-color);
}

.pq-footer-column-3 .pq-footer-details .pq-footer-icon i {
    font-size: 18px;
    line-height: 26px;
    color: var(--white-color);
}

.pq-footer-column-3 .pq-footer-details .pq-email .pq-title {
    font-size: 18px;
    line-height: 32px;
    color: var(--white-color);
    font-weight: 400;
}

.pq-footer-column-3 .pq-footer-details .pq-email p {
    margin: 0;
    color: var(--white-color);
}

.pq-bottom-footer .pq-footer-copyright {
    padding: 15px 0;
    text-align: center;
    color: var(--white-color);
    border-top: 2px solid var(--light-white);
}

@media(max-width:1499px) {
    .pq-footer-container {
        margin: 0;
    }
}

@media(max-width:1099px) {
    .pq-footer.pq-style-1 .pq-top-footer .pq-footer-info {
        grid-template-columns: 5fr 2fr 2fr;
    }

    .pq-top-footer {
        padding: 45px 0 30px;
    }
}

@media(max-width:979px) {
    .pq-footer-detail {
        display: inline-block;
    }

    .pq-footer.pq-style-1 .pq-top-footer .pq-footer-detail .pq-footer-main-title h3 {
        margin-bottom: 15px;
    }

    .pq-footer.pq-style-1 .pq-top-footer .pq-footer-info {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .pq-footer-column-2 .pq-footer-list {
        grid-template-columns: 150px 150px;
        gap: 15px 30px;
        justify-content: start;
        padding-left: 30px;
    }
}

@media(max-width:767px) {
    .pq-footer.pq-style-1 .pq-top-footer .pq-footer-info {
        grid-template-columns: 1fr;
    }

    .pq-footer.pq-style-1 .pq-top-footer .pq-footer-column-1 {
        padding-right: 0;
        border-right: none;
    }

    .pq-footer.pq-style-1 .pq-top-footer .pq-footer-detail .pq-footer-main-title h3 {
        font-size: 40px;
        line-height: 48px;
    }
}

@media(max-width:479px) {
    .pq-footer.pq-style-1 .pq-top-footer .pq-footer-detail .pq-footer-main-title h3 {
        font-size: 36px;
        line-height: 44px;
    }

    .pq-footer-column-2 .pq-footer-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px 0;
    }

    .pq-footer-column-2 .pq-footer-list {
        padding-left: 15px;
    }
}

/*==============================================
   blog
================================================*/

/*===== blog style-1=====*/

.pq-blog-list-1.pq-style-1 .pq-blog {
    margin-bottom: 45px;
    display: inline-block;
    width: 100%;
}

.pq-blog-list-1.pq-style-1 .pq-blog:last-child {
    margin-bottom: 0;
}

.pq-blog-list-1.pq-style-1 .pq-blog {
    margin-bottom: 45px;
}

.pq-blog-list-1.pq-style-1 .pq-blog .pq-blog-content {
    padding: 60px 45px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    background-color: var(--grey-color);
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
    gap: 90px;
    transition: var(--transition);
    align-items: center;
}

.pq-blog-list-1.pq-style-1 .pq-blog .pq-blog-content .pq-blog-category {
    align-content: center;
    z-index: 1;
    transition: var(--transition);
    position: relative;
}

.pq-blog-list-1.pq-style-1 .pq-blog .pq-blog-content .pq-blog-category a h2 {
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: var(--primary-color);
    padding: 8px 15px;
    color: var(--white-color);
    display: inline-block;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.pq-blog-list-1.pq-style-1 .pq-blog.pq-active .pq-blog-content .pq-blog-category a h2 {
    color: var(--primary-color);
    background-color: var(--white-color);
    transition: var(--transition);
}

.pq-blog-list-1.pq-style-1 .pq-blog .pq-blog-content .pq-blog-contain {
    position: relative;
    z-index: 1;
}

.pq-blog-list-1.pq-style-1 .pq-blog .pq-blog-content .pq-blog-contain .pq-blog-decription {
    font-size: 36px;
    line-height: 44px;
    width: 700px;
    margin-bottom: 0;
    color: var(--dark-color);
    font-weight: 700;
    text-transform: capitalize;
}

.pq-blog-list-1.pq-style-1 .pq-blog.pq-active .pq-blog-content .pq-blog-contain .pq-blog-decription {
    color: var(--white-color);
    z-index: 1;
}

.pq-blog-list-1.pq-style-1 .pq-blog.pq-active .pq-blog-content .pq-blog-contain .pq-blog-decription a:hover {
    color: var(--white-color);
}

.pq-blog-list-1.pq-style-1 .pq-blog .pq-blog-content .pq-blog-date {
    position: relative;
    z-index: 1;
    text-align: center;
    transition: var(--transition);
}

.pq-blog-list-1.pq-style-1 .pq-blog.pq-active .pq-blog-content .pq-blog-date {
    z-index: 0;
}

.pq-blog-list-1.pq-style-1 .pq-blog .pq-blog-content .pq-blog-date a {
    font-size: 16px;
    line-height: 24px;
    color: var(--dark-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    display: block;
    font-family: var(--title-fonts);
}

.pq-blog-list-1.pq-style-1 .pq-blog .pq-blog-content .pq-blog-date a .pq-blog-duration {
    font-size: 64px;
    line-height: 72px;
    transition: var(--transition);
    display: block;
    margin-bottom: 5px;
}

.pq-blog-list-1.pq-style-1 .pq-blog.pq-active .pq-blog-content .pq-blog-date .pq-blog-duration {
    z-index: 0;
}

.pq-blog-list-1.pq-style-1 .pq-blog .pq-blog-content .pq-blog-media {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: var(--transition);
    border-radius: var(--border-radius);
}

.pq-blog-list-1.pq-style-1 .pq-blog .pq-blog-content .pq-blog-media::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.8;
    z-index: 1;
    background-color: var(--dark-color);
    transition: var(--transition);
    border-radius: var(--border-radius);
}

.pq-blog-list-1.pq-style-1 .pq-blog .pq-blog-content .pq-blog-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.pq-blog-list-1.pq-style-1 .pq-blog.pq-active .pq-blog-content .pq-blog-media {
    opacity: 1;
    transform: translate(-50%, -50%);
    transition: var(--transition);
    border-radius: var(--border-radius);
}

.pq-blog-list-1.pq-style-1 .pq-blog.pq-active .pq-blog-content .pq-icon-button {
    transform: translate(-50%, -50%) scale(1);
    z-index: 2;
    transition: var(--transition);
}

.pq-blog-list-1.pq-style-1 .pq-blog .pq-blog-content .pq-icon-button {
    text-align: center;
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translate(-50%, -50%) scale(0);
    transition: var(--transition);
}

.pq-blog-list-1.pq-style-1 .pq-blog .pq-blog-content .pq-icon-button a {
    color: var(--primary-color);
    background-color: var(--white-color);
    border-color: var(--light-black);
    transform: rotate(-45deg);
    transition: var(--transition);
}

.pq-blog-list-1.pq-style-1 .pq-blog .pq-blog-content .pq-icon-button a:hover {
    color: var(--white-color);
    background-color: var(--dark-color);
}

@media(max-width:1099px) {

    .pq-blog-list-1.pq-style-1 .pq-blog .pq-blog-content .pq-blog-contain .pq-blog-decription {
        max-width: 500px;
    }
}

@media(max-width:1023px) {
    .pq-blog-list-1.pq-style-1 .pq-blog .pq-blog-content {
        padding: 45px 15px;
    }
}

@media(max-width:979px) {
    .pq-blog-list-1.pq-style-1 .pq-blog .pq-blog-content {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .pq-blog-list-1.pq-style-1 .pq-blog .pq-blog-content .pq-blog-category a h2 {
        color: var(--primary-color);
        background-color: var(--white-color);
    }

    .pq-blog-list-1.pq-style-1 .pq-blog .pq-blog-content .pq-blog-contain .pq-blog-decription {
        color: var(--white-color);
        z-index: 1;
    }

    .pq-blog-list-1.pq-style-1 .pq-blog .pq-blog-content .pq-blog-duration {
        text-align: left;
        color: var(--white-color);
    }

    .pq-blog-list-1.pq-style-1 .pq-blog.pq-active .pq-blog-content .pq-blog-date {
        z-index: 1;
    }

    .pq-blog-list-1.pq-style-1 .pq-blog .pq-blog-content .pq-blog-date a {
        color: var(--white-color);
        text-align: left;
    }

    .pq-blog-list-1.pq-style-1 .pq-blog.pq-active .pq-blog-content .pq-blog-date .pq-blog-duration {
        z-index: 1;
    }

    .pq-blog-list-1.pq-style-1 .pq-blog .pq-blog-content .pq-blog-media {
        opacity: 1;
        z-index: 0;
    }

    .pq-blog-list-1.pq-style-1 .pq-blog.pq-active .pq-blog-content .pq-blog-media {
        opacity: 1;
        z-index: 0;
    }

    .pq-blog-list-1.pq-style-1 .pq-blog .pq-blog-content .pq-icon-button {
        transform: translateY(-50%) rotate(315deg) scale(0);
        text-align: center;
        position: absolute;
        top: 65%;
        left: 80%;
        transform: translate(0, 0);
        transition: none;
    }

    .pq-blog-list-1.pq-style-1 .pq-blog.pq-active .pq-blog-content .pq-icon-button {
        transform: none;
    }
}

@media(max-width:767px) {
    .pq-blog-list-1.pq-style-1 .pq-blog .pq-blog-content .pq-blog-contain .pq-blog-decription {
        font-size: 24px;
        line-height: 32px;
        max-width: 250px;
    }
}

@media(max-width:479px) {
    .pq-blog-list-1.pq-style-1 .pq-blog .pq-blog-content .pq-icon-button {
        left: 70%;
    }
}

/*===== blog style-2=====*/

.pq-blog-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.pq-blog-list .pq-blog .pq-blog-content .pq-blog-media img {
    border-radius: var(--border-radius);
    object-fit: cover;
    margin-bottom: 10px;
}

.pq-blog-list .pq-blog .pq-blog-content .pq-blog-date {
    text-transform: uppercase;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    letter-spacing: 1px;
}

.pq-blog-list .pq-blog .pq-blog-content .pq-blog-date .pq-blog-duration {
    padding-right: 15px;
    font-family: var(--title-fonts);
}

.pq-blog-list .pq-blog .pq-blog-content .pq-blog-contain .pq-blog-main-title {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 10px;
    padding-bottom: 15px;
    font-family: var(--title-fonts);
    border-bottom: 1px solid var(--light-black);
}

.pq-blog-list .pq-blog .pq-blog-content .pq-blog-contain .pq-blog-main-title:hover {
    color: var(--primary-color);
}

.pq-blog-list .pq-button-container {
    margin-top: 30px;
}

@media(max-width:979px) {
    .pq-blog-list {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pq-blog-list .pq-button-container {
        margin: 30px 0;
    }

    .pq-blog-list .pq-button-container:last-child {
        margin: 30px 0 0 0;
    }
}

/*===== blog style-3=====*/

.pq-blog-list.pq-style-3 {
    display: grid;
    grid-template-columns: 1fr;
}

/*===== blog style-4=====*/

.pq-blog-list.pq-style-4 {
    padding: 30px;
    margin-bottom: 30px;
    grid-template-columns: 1fr;
    background-color: var(--grey-color);
    border-radius: var(--border-radius);
}

.pq-blog-list.pq-style-4 .pq-blog-main-title {
    font-size: 28px;
    line-height: 36px;
}

.pq-blog-list.pq-style-4 .pq-blog {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 15px;
    align-items: center;
}

.pq-blog-list.pq-style-4 .pq-blog .pq-blog-media img {
    border-radius: var(--border-radius);
}

.pq-blog-list.pq-style-4 .pq-blog .pq-blog-content .pq-blog-contain .pq-blog-decription {
    font-size: 16px;
    line-height: 24px;
}

.pq-blog-list.pq-style-4 .pq-blog .pq-blog-content .pq-blog-date a {
    color: var(--secondary-color);
}

.pq-tag-block {
    padding: 30px;
    border-radius: var(--border-radius);
    background-color: var(--grey-color);
}

.pq-tag-block .pq-tag-title {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 20px;
}

.pq-tag-block .pq-tag-list {
    margin-bottom: 0;
}

.pq-tag-block .pq-tag-list a {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1px;
    padding: 4px 16px;
    margin: 0 10px 10px 0;
    display: inline-block;
    text-transform: uppercase;
    border-radius: var(--border-radius);
    color: var(--secondary-color);
    background-color: var(--white-color);
    transition: var(--transition);
}

.pq-tag-block .pq-tag-list a:hover {
    color: var(--white-color);
    background-color: var(--primary-color);
}

@media(max-width:1023px) {
    .pq-blog-list.pq-style-4 .pq-blog {
        grid-template-columns: auto 1fr;
    }
}

@media(max-width:767px) {
    .pq-widget-author-details {
        padding: 30px 15px;
    }

    .pq-blog-list.pq-style-4 {
        padding: 30px 15px;
    }

    .pq-blog-list.pq-style-4 .pq-blog {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pq-blog-list.pq-style-4 .pq-blog .pq-blog-media img {
        width: 100%;
        object-fit: cover;
    }

    .pq-tag-block {
        padding: 30px 15px;
    }
}

/*=====  SideBar - Search=====*/

.widget {
    display: inline-block;
    width: 100%;
    margin-bottom: 30px;
    position: relative;
    padding: 30px;
    border-radius: var(--border-radius);
}

.widget.widget_search {
    background: var(--primary-color);
}

.widget.widget_search .widgettitle {
    display: none;
}

.widget.widget_search .widget-title {
    display: none;
}

.wp-block-search {
    position: relative;
}

.wp-block-search label {
    display: none;
}

.wp-block-search .wp-block-search__input {
    background: var(--white-color);
    border-color: var(--white-color);
}

.wp-block-search .wp-block-search__button {
    background: transparent;
    border: none;
    padding: 0;
    position: absolute;
    text-align: center;
    color: var(--dark-color) !important;
    font-size: 0px;
    line-height: 54px;
    height: 54px;
    width: 54px;
    top: 0;
    right: 0;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.wp-block-search .wp-block-search__button:before {
    content: "\e610";
    font-family: 'themify';
    font-weight: 400;
    font-size: 20px;
}

.wp-block-search .wp-block-search__button:hover {
    color: var(--primary-color) !important;
    background: transparent;
    outline: none;
}

.search-form {
    position: relative;
}

.search-form label {
    width: 100%;
    margin-bottom: 0;
    float: left;
    width: 100%;
}

.search-form label input.search-field {
    margin: 0;
}

.pq-search-form .search-form input.search-field[type="search"]::-webkit-search-decoration,
.pq-search-form .search-form input.search-field[type="search"]::-webkit-search-cancel-button,
.pq-search-form .search-form input.search-field[type="search"]::-webkit-search-results-button,
.pq-search-form .search-form input.search-field[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance: none;
}

.widget input[type="search"]::-webkit-search-decoration,
.widget input[type="search"]::-webkit-search-cancel-button,
.widget input[type="search"]::-webkit-search-results-button,
.widget input[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance: none;
}


.widget.widget_search .search-form .search-field,
.widget.widget_search .wp-block-search__input {
    background: var(--white-color);
    border-color: var(--white-color);
    border-radius: var(--border-radius);
}

.search-submit {
    background: transparent;
    border: none;
    padding: 0;
    font-size: 20px;
    position: absolute;
    text-align: center;
    color: var(--dark-color) !important;
    line-height: 54px;
    height: 54px;
    width: 54px;
    top: 0;
    right: 0;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.search-submit:before {
    content: "\e610";
    font-family: 'themify';
    font-weight: 400;
}

.search-submit:hover {
    color: var(--primary-color) !important;
    background: transparent;
    outline: none;
}

.pq-widget-author-details {
    margin-bottom: 30px;
    padding: 30px;
    background-color: var(--grey-color);
    border-radius: var(--border-radius);
}

.pq-widget-author-details .pq-author-title {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 20px;
}

.pq-widget-author-details img {
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}

.pq-widget-author-details .pq-widget-author-social-icon ul {
    margin: 0;
    padding: 0;
    display: flex;
    gap: 15px;
}

/*==============================================
   Blog single
================================================*/

.pq-blog-details .pq-blog-content .pq-blog-media img {
    width: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.pq-blog-details .pq-blog-content .pq-blog-date {
    margin-top: 15px;
    margin-bottom: 15px;
}

blockquote {
    margin-bottom: 30px;
}

.pq-blog-gallery {
    margin-bottom: 30px;
}

.pq-blog-gallery img {
    border-radius: var(--border-radius);
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: auto;
}

.pq-blog-details .pq-single-page-navigation {
    display: flex;
    justify-content: space-between;
    padding: 45px 30px;
    background-color: var(--grey-color);
    border-radius: var(--border-radius);
}

.pq-blog-details .pq-single-page-navigation .pq-signgle-post-left-arrow:hover a {
    color: var(--primary-color);
}

.pq-blog-details .pq-single-page-navigation .pq-signgle-post-left-arrow:hover a i {
    background-color: var(--primary-color);
}

.pq-blog-details .pq-single-page-navigation .pq-signgle-post-left-arrow {
    display: flex;
    gap: 10px;
    text-align: center;
    align-items: center;
    transition: var(--transition);
}

.pq-blog-details .pq-single-page-navigation .pq-signle-title a {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--secondary-color);
    text-transform: uppercase;
    transition: var(--transition);
}

.pq-blog-details .pq-single-page-navigation .pq-signgle-post-right-arrow {
    display: flex;
    gap: 10px;
    text-align: center;
    align-items: center;
    transition: var(--transition);
}

.pq-blog-details .pq-single-page-navigation i {
    width: 60px;
    height: 60px;
    font-size: 20px;
    text-align: center;
    align-content: center;
    border-radius: var(--border-radius);
    color: var(--white-color);
    background-color: var(--dark-color);
    transition: var(--transition);
}

.pq-blog-details .pq-single-page-navigation .pq-signgle-post-right-arrow:hover a {
    color: var(--primary-color);
}

.pq-blog-details .pq-single-page-navigation .pq-signgle-post-right-arrow:hover a i {
    background-color: var(--primary-color);
}

.pq-signgle-post-bottom-holder {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--dark-color);
    border-bottom: 1px solid var(--dark-color);
    margin: 45px 0;
    padding: 15px 0;
}

.pq-signgle-post-bottom-holder .pq-signgle-post-social-icon {
    display: flex;
    gap: 15px;
    align-items: center;
}

.pq-signgle-post-bottom-holder .pq-signgle-post-social-icon .pq-signgle-post-title {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 0;
    text-transform: uppercase;
}

.pq-signgle-post-bottom-holder .pq-signgle-post-social-icon ul {
    display: flex;
    gap: 15px;
    padding: 0;
    margin: 0;
    text-align: center;
}

.pq-signgle-post-bottom-holder .pq-signgle-post-social-icon ul li a i {
    width: 50px;
    height: 50px;
    text-align: center;
    align-content: center;
    color: var(--dark-color);
    transition: var(--transition);
    border-radius: var(--border-radius);
    background-color: var(--grey-color);
}

.pq-signgle-post-bottom-holder .pq-signgle-post-social-icon ul li a i:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.pq-signgle-post-bottom-holder .pq-signgle-post-tag-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pq-signgle-post-bottom-holder .pq-signgle-post-tag-title .pq-signgle-post-tag-sub-title {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 0;
    text-transform: uppercase;
}

.pq-signgle-post-bottom-holder .pq-signgle-post-tag-main-title {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
    letter-spacing: 1px;
    color: var(--secondary-color);
    padding: 5px 16px;
    text-transform: uppercase;
    border-radius: var(--border-radius);
    background-color: var(--grey-color);
    transition: var(--transition);
}

.pq-signgle-post-bottom-holder .pq-signgle-post-tag-main-title:hover {
    color: var(--white-color);
    transition: var(--transition);
    background-color: var(--primary-color);
}

.pq-single-post-user {
    padding: 30px;
    background-color: var(--grey-color);
    border-radius: var(--border-radius);
}

.pq-single-post-user .pq-user {
    display: flex;
    gap: 15px;
}

.pq-single-post-user .pq-user .pq-user-image img {
    width: 180px;
    border-radius: var(--border-radius);
}

.pq-single-post-user .pq-user .pq-user-info .pq-user-title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 5px;
}

.pq-single-post-user .pq-user .pq-user-info .pq-user-sub-title {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pq-comment-area .pq-comment-reply-title {
    padding-top: 30px;
}

.pq-comment-area .pq-input-box textarea {
    background-color: var(--grey-color);
}

.pq-comment-area .pq-button-container {
    margin-top: 30px;
}


@media(max-width:1023px) {
    .pq-blog-details {
        margin-bottom: 30px;
    }
}

@media(max-width:767px) {

    .pq-blog-details .pq-blog-contain .pq-blog-decription {
        margin-bottom: 15px;
    }

    blockquote {
        margin-bottom: 15px;
    }

    .pq-blog-details .pq-single-page-navigation {
        margin-bottom: 30px;
    }

    .pq-signgle-post-bottom-holder {
        display: inline;
    }

    .pq-signgle-post-bottom-holder .pq-signgle-post-tag-title {
        margin-top: 30px;
    }

    .pq-single-post-user {
        margin-top: 30px;
        padding: 30px 15px;
    }

    .pq-signgle-post-bottom-holder .pq-signgle-post-social-icon {
        display: inline;
    }

    .pq-signgle-post-bottom-holder .pq-signgle-post-social-icon .pq-signgle-post-title {
        margin-bottom: 10px;
    }
}

@media(max-width:479px) {
    .pq-blog-details .pq-single-page-navigation {
        display: block;
        padding: 30px 15px;
    }

    .pq-blog-details .pq-single-page-navigation .pq-signgle-post-right-arrow {
        justify-content: flex-end;
    }
}

/*================================================
   Gallery
================================================*/

.slide-show .gallery.style-1 {
    display: flex;
}

.mfp-wrap .mfp-close {
    padding: 0;
    top: -50px;
    right: 0;
    opacity: 1;
    height: 50px;
    width: 50px;
    font-size: 26px;
    line-height: 50px;
    text-align: center;
    color: var(--white-color);
    background-color: var(--primary-color);
    position: absolute;
    letter-spacing: 0;
    font-weight: 400;
    border-radius: 0;
}

.mfp-gallery .mfp-close {
    top: -10px;
    cursor: pointer !important;
}

.mfp-gallery .mfp-arrow {
    position: absolute;
}

.mfp-wrap .mfp-close:hover {
    background: var(--primary-color);
}

.mfp-wrap .mfp-close:focus {
    outline: none;
}

/*================================================
isotope Portfolio
================================================*/

.pq-portfolio-box.pq-style-1 {
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 100%;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.pq-portfolio-box.pq-style-1 .pq-portfolio-img {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.pq-portfolio-box.pq-style-1 .pq-portfolio-img img {
    width: 100%;
    height: 100%;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

.pq-portfolio-box.pq-style-1:hover .pq-portfolio-img img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    overflow: hidden;
}

.pq-portfolio-box.pq-style-1 .pq-portfolio-box-info {
    margin-top: 15px;
}

.pq-portfolio-box.pq-style-1 .pq-portfolio-box-info .pq-portfolio-box-categorie a {
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.pq-portfolio-box.pq-style-1 .pq-portfolio-box-info h5 a:hover {
    color: var(--primary-color);
    transition: var(--transition);
}

.pq-portfolio-box.pq-style-1 .owl-nav {
    position: absolute;
    margin-top: 0;
    text-align: center;
    left: -76.5%;
    top: 75%;
}

.pq-grid-item.visible_item,
.pq-masonry-item.visible_item {
    display: none;
}

.pq-filters .pq-filter-button-group ul {
    margin: 0 0 45px;
    padding: 0;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.pq-filters .pq-filter-button-group ul li {
    font-family: var(--title-fonts);
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    list-style: none;
    color: var(--dark-color);
    display: inline-block;
    cursor: pointer;
    padding: 12px 20px;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.pq-filters .pq-filter-button-group ul li:last-child {
    margin-right: 0;
}

.pq-filters .pq-filter-button-group ul li.active,
.pq-filters .pq-filter-button-group ul li.active:hover {
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 10px;
}

.pq-filters .pq-filter-button-group ul li:hover {
    color: var(--dark-color);
}

.pq-grid {
    display: block;
    width: 100%;
    float: left;
}

.pq-grid:after {
    content: '';
    display: block;
    clear: both;
}

.pq-col-3 {
    width: 25%;
    padding: 0 15px 30px;
}

.pq-col-6 {
    width: 50%;
    padding: 0 15px 30px;
}

.pq-col-4 {
    width: 33.33%;
    padding: 0 15px 30px;
}

.pq-grid.no-padding .pq-grid-item,
.pq-masonry.no-padding .pq-masonry-item {
    padding: 0;
}

.pq-btn-load-container {
    margin-top: 0;
    display: inline-block;
    width: 100%;
}

.pq-btn-load-container a.pq-button {
    cursor: pointer;
}

.pq-grid.style-2 .pq-portfoliobox-1 .pq-portfolio-img {
    overflow: hidden;
}

.pq-grid.style-2 .pq-portfoliobox-1 .pq-portfolio-info {
    position: relative;
    bottom: 0;
    left: 0;
    background: transparent;
    padding-left: 0;
    padding-bottom: 0;
    opacity: 1;
}

.pq-grid.style-2 .pq-portfoliobox-1 a.pq-portfolio-icon-bg {
    display: none;
}

.pq-grid.style-2 .pq-grid-item:nth-child(1) .pq-portfoliobox-1 {
    margin-top: 60px;
}

.pq-grid.style-2 .pq-col-6 {
    padding: 0 30px 45px;
    padding-bottom: 45px;
}

/*+++++++++ masonry +++++++++*/

.pq-masonry {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.pq-masonry .ipq-lg-6 {
    width: 50%;
    padding: 0 15px 30px;
}

.pq-masonry .ipq-lg-3 {
    width: 25%;
    padding: 0 15px 30px;
}

.pq-masonry .ipq-lg-4 {
    width: 33.333%;
    padding: 0 15px 30px;
}

.pq-masonry.no-padding .ipq-lg-6,
.pq-masonry.no-padding .ipq-lg-3 {
    padding: 0;
}

.pq-masonry.no-padding .pq-portfoliobox-1,
.pq-masonry.no-padding .pq-portfoliobox-1 .pq-portfolio-img img {
    border-radius: 0;
}

/*+++++++++ layout 2 +++++++++*/

.pq-masonry .ipq-lg-4 {
    width: 33.333%;
    padding: 0 15px 30px;
}

.pq-masonry .ipq-lg-8 {
    width: 66.666%;
    padding: 0 15px 30px;
}

.pq-masonry .ipq-lg-12 {
    width: 100%;
    padding: 0 15px 30px;
}

@media(max-width:1365px) {
    .pq-col-3 {
        width: 33.33%;
    }

    .pq-masonry .ipq-lg-6 {
        width: 50%;
    }

    .pq-masonry .ipq-lg-3 {
        width: 33.33%;
    }

    .pq-masonry .ipq-lg-4 {
        width: 50%;
    }

    .pq-masonry .ipq-lg-8 {
        width: 50%;
    }

    .pq-filters .pq-filter-button-group ul li {
        margin-right: 10px;
    }

    .pq-col-3,
    .pq-col-4,
    .pq-masonry .ipq-lg-3 {
        width: 50%;
    }
}

@media(max-width:767px) {
    .pq-filters .pq-filter-button-group ul li {
        margin-right: 0;
        font-size: 14px;
        padding: 5px 15px;
    }

    .pq-col-6,
    .pq-col-4,
    .pq-col-3,
    .pq-masonry .ipq-lg-3,
    .pq-masonry .ipq-lg-6 {
        width: 100%;
        padding: 0 0 30px;
    }

    .pq-masonry .ipq-lg-4 {
        width: 100%;
        padding: 0 0 30px;
    }

    .pq-masonry .ipq-lg-8 {
        width: 100%;
    }

    .pq-grid.style-2 .pq-grid-item:nth-child(1) .pq-portfoliobox-1 {
        margin-top: 0;
    }

    .pq-grid.style-2 .pq-col-6 {
        padding: 0 0 30px;
    }
}

@media(max-width:479px) {
    .pq-filters .pq-filter-button-group ul li {
        margin-bottom: 15px;
    }
}

.pq-grid-item {
    float: left;
}


/*==============================================
   Portfolio Zigzag
================================================*/

/*===== Portfolio Zigzag style-1=====*/

.pq-portfolio-zigzag.style-1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 60px;
}

.pq-portfolio-block-1 {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pq-portfolio-zigzag.style-1 .pq-portfolio-block-1:nth-child(even) {
    margin-top: 45px;
}

.pq-portfolio-zigzag.style-1 .pq-portfolio-block-1 .pq-portfolio-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.pq-portfolio-zigzag.style-1 .pq-portfolio-block-1 .pq-portfolio-image::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    background-color: var(--dark-color);
    transition: var(--transition);
}

.pq-portfolio-zigzag.style-1 .pq-portfolio-block-1.pq-active .pq-portfolio-image::before {
    opacity: 0.6;
}

.pq-portfolio-block-1 .pq-portfolio-image .pq-portfolio-title-marquee {
    display: flex;
    position: absolute;
    top: 50%;
    gap: 30px;
    transform: translate(0, -50%);
    transition: var(--transition);
    animation: LeftToRight 15s linear infinite;
    z-index: 4;
    opacity: 0;
}

.pq-portfolio-block-1.pq-active .pq-portfolio-image .pq-portfolio-title-marquee {
    opacity: 1;
    left: 0;
}

@keyframes LeftToRight {
    0% {
        transform: translate(0, -50%);
    }

    100% {
        transform: translate(calc(-50% - 15px), -50%);
    }
}

.pq-portfolio-block-1 .pq-portfolio-image .pq-portfolio-title-marquee .pq-portfolio-title-marquee-inner {
    display: flex;
    gap: 30px;
    width: max-content;
}

.pq-portfolio-block-1 .pq-portfolio-image .pq-portfolio-title-marquee .pq-portfolio-title-marquee-inner .pq-portfolio-title {
    font-size: 60px;
    line-height: 68px;
    color: var(--white-color);
}

.pq-portfolio-zigzag.style-1 .pq-portfolio-block-1 .pq-portfolio-image .pq-icon-button a {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0);
    transform-origin: center;
    z-index: 9;
    transition: var(--transition);
    width: 90px;
    height: 90px;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    font-size: 24px;
    line-height: 90px;
    color: var(--white-color);
}

.pq-portfolio-zigzag.style-1 .pq-portfolio-block-1.pq-active .pq-portfolio-image .pq-icon-button a {
    transform: translate(-50%, -50%) scale(1);
}

.pq-portfolio-block-1 .pq-portfolio-image .pq-icon-button a:hover i {
    animation: icon-button-animation 0.4s linear;
}

@keyframes icon-button-animation {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }

    50% {
        transform: translate(40px, -40px);
        opacity: 0;
    }

    51% {
        transform: translate(-40px, 40px);
        opacity: 0;
    }

    100% {
        transform: translate(0, 0);
        opacity: 1;
    }
}

.pq-portfolio-zigzag .pq-portfolio-detail {
    text-align: center;
    margin-top: 20px;
}

.pq-portfolio-zigzag .pq-portfolio-detail .portfolio-sub-title a {
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    padding: 5px 20px;
    border: 1px solid var(--white-color);
    border-radius: 20px;
    background-color: transparent;
    color: var(--white-color);
    font-weight: 600;
    letter-spacing: 1px;
}

.pq-portfolio-zigzag .pq-portfolio-detail .portfolio-sub-title a:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
}

.pq-portfolio-zigzag .pq-portfolio-detail .pq-portfolio-main-title {
    color: var(--white-color);
    border: none;
    margin-top: 15px;
    font-size: 36px;
    line-height: 44px;
}

.pq-portfolio-zigzag .pq-portfolio-detail .pq-portfolio-main-title a:hover {
    color: var(--dark-color);
}

@media(max-width:1023px) {
    .pq-portfolio-zigzag.style-1 {
        gap: 0 45px;
    }

    .pq-portfolio-zigzag .pq-portfolio-detail .pq-portfolio-main-title {
        font-size: 32px;
        line-height: 40px
    }

    .pq-portfolio-block-1 .pq-portfolio-image .pq-portfolio-title-marquee .pq-portfolio-title-marquee-inner .pq-portfolio-title {
        font-size: 48px;
        line-height: 56px;
    }
}

@media(max-width:767px) {
    .pq-portfolio-zigzag {
        margin: 0;
    }

    .pq-portfolio-zigzag.style-1 {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .pq-portfolio-zigzag.style-1 .pq-portfolio-block-1:nth-child(even) {
        margin-top: 0;
    }

    .pq-portfolio-zigzag .pq-portfolio-detail .pq-portfolio-main-title {
        font-size: 24px;
        line-height: 32px
    }

    .pq-portfolio-block-1 .pq-portfolio-image .pq-portfolio-title-marquee .pq-portfolio-title-marquee-inner .pq-portfolio-title {
        font-size: 44px;
        line-height: 52px;
        color: var(--white-color);
    }
}

/*==============================================
   portfolio slider
================================================*/

/*===Portfolio Slider style-1===*/

.pq-portfolio-slider.pq-style-1 {
    margin-top: 90px;
    padding: 0 30px;
    overflow: hidden;
}

.pq-portfolio-slider .pq-portfolio-block-1 {
    text-align: left;
    overflow: hidden;
}

.pq-portfolio-slider .pq-portfolio-block-1 .pq-portfolio-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.pq-portfolio-slider.pq-style-1 .pq-portfolio-block-1 .pq-portfolio-image::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    background-color: var(--dark-color);
    transition: var(--transition);
}

.pq-portfolio-slider.pq-style-1 .pq-portfolio-block-1:hover .pq-portfolio-image::before {
    opacity: 0.6;
}

.pq-portfolio-slider .pq-portfolio-block-1 .pq-portfolio-image .pq-portfolio-title-marquee {
    display: flex;
    position: absolute;
    top: 50%;
    gap: 30px;
    transition: var(--transition);
    animation: LeftToRight 15s linear infinite;
    opacity: 0;
}

.pq-portfolio-slider.pq-style-1 .pq-portfolio-block-1:hover .pq-portfolio-image .pq-portfolio-title-marquee {
    opacity: 1;
    left: 0;
}

@keyframes LeftToRight {
    0% {
        transform: translate(0, -50%);
    }

    100% {
        transform: translate(calc(-50% - 15px), -50%);
    }
}

.pq-portfolio-slider .pq-portfolio-block-1 .pq-portfolio-image .pq-portfolio-title-marquee .pq-portfolio-title-marquee-inner {
    display: flex;
    gap: 30px;
    width: max-content;
}

.pq-portfolio-slider.pq-style-1 .pq-portfolio-block-1 .pq-portfolio-image .pq-portfolio-title-marquee .pq-portfolio-title-marquee-inner .pq-portfolio-title {
    font-size: 48px;
    line-height: 56px;
}

.pq-portfolio-slider.pq-style-1 .pq-portfolio-block-1 .pq-portfolio-image .pq-icon-button a {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    border-radius: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    border-color: var(--primary-color);
    transform-origin: center;
    z-index: 9;
    transition: var(--transition);
    transform: translate(-50%, -50%) scale(0);
}

.pq-portfolio-slider.pq-style-1 .pq-portfolio-block-1:hover .pq-portfolio-image .pq-icon-button a {
    transform: translate(-50%, -50%) scale(1);
}

.pq-portfolio-slider.pq-style-1 .pq-portfolio-block-1 .pq-portfolio-image .pq-icon-button a {
    font-size: 20px;
    line-height: 70px;
    color: var(--white-color);
}

@keyframes icon-button-animation {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }

    50% {
        transform: translate(40px, -40px);
        opacity: 0;
    }

    51% {
        transform: translate(-40px, 40px);
        opacity: 0;
    }

    100% {
        transform: translate(0, 0);
        opacity: 1;
    }
}

.pq-portfolio-slider .pq-portfolio-block-1 .pq-portfolio-detail {
    padding-bottom: 20px;
    margin-top: 15px;
    border-bottom: 1px solid var(--light-black);
    position: relative;
}

.pq-portfolio-slider .pq-portfolio-block-1 .pq-portfolio-detail .portfolio-sub-title a {
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: var(--title-fonts);
    letter-spacing: 1px;
}

.pq-portfolio-slider.pq-style-1 .pq-portfolio-block-1.pq-hover-bellow .pq-portfolio-detail::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    transition: var(--transition);
    height: 1px;
    background-color: var(--dark-color);
    width: 0;
}

.pq-portfolio-slider.pq-style-1 .pq-portfolio-block-1:hover .pq-portfolio-detail::before {
    width: 100%;
}

@media(max-width:1023px) {
    .pq-portfolio-slider.pq-style-1 {
        margin-top: 60px;
        padding: 0;
    }
}

@media(max-width:767px) {
    .pq-portfolio-slider {
        margin-top: 30px;
        padding: 0;
    }
}

/*===Portfolio Slider pq-style-2===*/

.pq-portfolio-block-1 {
    position: relative;
}

.pq-portfolio-slider.pq-style-2 .pq-portfolio-block-1 .pq-portfolio-image::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    background-color: var(--dark-color);
    transition: var(--transition);
}

.pq-portfolio-slider.pq-style-2 .pq-portfolio-block-1.pq-hover-slide:hover .pq-portfolio-image::before {
    opacity: 0.6;
}

.pq-portfolio-slider.pq-style-2 .pq-portfolio-block-1 .pq-portfolio-block-info {
    background-color: var(--white-color);
    padding: 30px 15px;
    display: inline-grid;
    border-radius: var(--border-radius);
    position: absolute;
    top: 60%;
    left: 0;
    width: 330px;
    z-index: 1;
    transform: translate(-100%, 0);
    transition: var(--transition);
}

.pq-portfolio-block-1.pq-hover-slide:hover .pq-portfolio-block-info {
    transform: translate(0px, 0px);
    left: 30px;
}

.pq-portfolio-slider.pq-style-2 .pq-portfolio-block-1 .pq-portfolio-block-info .pq-portfolio-tag-box {
    display: inline-block;
}

.pq-portfolio-slider.pq-style-2 .pq-portfolio-block-1 .pq-portfolio-block-info .pq-portfolio-tag-box a {
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pq-portfolio-slider.pq-style-2 .pq-portfolio-block-1 .pq-portfolio-block-info .pq-portfolio-tag-box-title {
    display: inline-block;
}

.pq-portfolio-slider.pq-style-2 .owl-carousel .owl-nav button.owl-prev {
    background-color: var(--white-color);
    color: var(--dark-color);
    border-radius: 100%;
}

.pq-portfolio-slider.pq-style-2 .owl-carousel .owl-nav button.owl-prev:hover {
    background-color: var(--dark-color);
    color: var(--white-color);
}

.pq-portfolio-slider.pq-style-2 .owl-carousel .owl-nav button.owl-next {
    background-color: var(--white-color);
    color: var(--dark-color);
    border-radius: 100%;
}

.pq-portfolio-slider.pq-style-2 .owl-carousel .owl-nav button.owl-next:hover {
    background-color: var(--dark-color);
    color: var(--white-color);
}

@media(max-width:1699px) {
    .pq-portfolio-slider.pq-style-2 .owl-carousel .owl-nav button {
        display: none;
    }
}

@media(max-width:1279px) {

    .pq-portfolio-slider.pq-style-2 .pq-portfolio-block-1 .pq-portfolio-block-info {
        padding: 15px 10px;
        width: 300px;
    }
}

@media(max-width:1099px) {
    .pq-portfolio-block-1.pq-hover-slide:hover .pq-portfolio-block-info {
        left: 6px;
    }
}

@media(max-width:1023px) {
    .pq-portfolio-slider.pq-style-2 .pq-portfolio-block-1 .pq-portfolio-block-info {
        top: 60%;
    }
}

@media(max-width:799px) {
    .pq-portfolio-slider.pq-style-2 .pq-portfolio-block-1 .pq-portfolio-block-info {
        padding: 30px 10px;
        top: 70%;
    }
}

@media(max-width:479px) {
    .pq-portfolio-slider.pq-style-2 .pq-portfolio-block-1 .pq-portfolio-block-info .pq-portfolio-tag-box-title {
        font-size: 18px;
        line-height: 26px;
    }
}

@media(max-width:397px) {
    .pq-portfolio-slider.pq-style-2 .pq-portfolio-block-1 .pq-portfolio-block-info {
        top: 65%;
        width: 250px;
        padding: 15px;
    }
}

/*===Portfolio Slider pq-style-3===*/

.owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    cursor: inherit;
}

.pq-portfolio-slider.pq-style-3 .owl-carousel .owl-nav button.owl-prev,
.pq-portfolio-slider.pq-style-3 .owl-carousel .owl-nav button.owl-next {
    outline: none;
    text-align: center;
    text-indent: inherit;
    cursor: pointer;
    position: relative;
    font-size: 45px;
    width: 0;
    height: 0;
    line-height: 56px;
    background: none;
    padding: 0 !important;
    margin: 0;
    border: none;
    color: var(--primary-color);
}

.pq-portfolio-slider.pq-style-3 .owl-carousel .owl-nav button:hover {
    color: var(--primary-color);
    background: var(--primary-color);
}

.pq-portfolio-slider.pq-style-3 .pq-dark-bg .owl-carousel .owl-nav button:hover {
    color: var(--primary-color);
    background: var(--primary-color);
}

.pq-portfolio-slider.pq-style-3 .owl-carousel .owl-nav button.owl-prev {
    margin-left: 30px;
}

.pq-portfolio-slider.pq-style-3 .owl-carousel .owl-nav button.owl-next {
    margin-right: 30px;
}

.pq-portfolio-slider.pq-style-3 .pq-portfolio-block-1 .pq-portfolio-image::before {
    background-color: initial;
}

.pq-portfolio-image img {
    border-radius: var(--border-radius);
    object-fit: cover;
}

.pq-portfolio-image.img-2 {
    height: 100%;
}

.pq-portfolio-image.img-2 img {
    height: 100%;
}

.pq-project-details {
    padding: 0 30px 0 15px;
}

.pq-portfolio-details-block {
    margin-top: 45px;
}

.pq-project-details .pq-project-description {
    margin-bottom: 20px;
    margin-top: 15px;
}

.pq-project-details-list ul {
    padding: 0;
    margin: 0;
}

.pq-project-details-list ul .pq-project-details-item {
    margin-bottom: 10px;
}

.pq-project-details-list ul .pq-project-details-item .pq-project-details-icon i {
    margin-right: 5px;
    color: var(--primary-color);
}

.pq-project-information .pq-project-info-title {
    padding: 30px;
    color: var(--white-color);
    border-radius: 10px 10px 0 0;
    background-color: var(--primary-color);
}

.pq-project-information .pq-project-contain {
    background-color: var(--grey-color);
    padding: 30px;
    border-radius: 0 0 10px 10px;
}

.pq-project-information .pq-project-contain .pq-project-info .pq-project-details-title {
    padding: 15px 0 15px 0;
    border-bottom: 1px solid var(--light-black);
}

.pq-project-information .pq-project-contain .pq-project-info .pq-project-details-title:first-child {
    padding-top: 0;
}

.pq-project-information .pq-project-contain .pq-project-info .pq-project-details-title span {
    font-size: 18px;
    line-height: 24px;
    color: initial;
    font-weight: 400;
}

.pq-project-information .pq-project-contain .pq-project-social-icon-list {
    display: flex;
    gap: 20px;
    padding-top: 15px;
    font-size: 16px;
}

.pq-project-information .pq-project-contain .pq-project-social-icon-list .pq-project-social-icon a .fa-facebook-f {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    text-align: center;
    align-content: center;
    color: white;
    background-color: #3b5998;
}

.pq-project-information .pq-project-contain .pq-project-social-icon-list .pq-project-social-icon a .fa-twitter {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    text-align: center;
    align-content: center;
    color: white;
    background-color: #1da1f2;
    ;
}

.pq-project-information .pq-project-contain .pq-project-social-icon-list .pq-project-social-icon a .fa-youtube {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    text-align: center;
    align-content: center;
    color: white;
    background-color: #cd201f;
}

.pq-project-img-details {
    padding: 45px 0;
}

.pq-project-img-details .pq-project-img-details-title {
    padding-top: 30px;
}

.pq-project-img-details .pq-portfolio-image-description {
    padding-top: 30px;
    margin-bottom: 15px;
}

.pq-project-img-details .pq-project-details-item:last-child {
    margin-bottom: 0;
}

.pq-project-arrow .pq-single-page-navigation {
    display: flex;
    justify-content: space-between;
    padding: 45px 30px;
    background-color: var(--grey-color);
    border-radius: var(--border-radius);
}

.pq-project-arrow .pq-single-page-navigation .pq-single-post-left-arrow:hover a {
    color: var(--primary-color);
}

.pq-project-arrow .pq-single-page-navigation .pq-single-post-left-arrow:hover a i {
    background-color: var(--primary-color);
}

.pq-project-arrow .pq-single-page-navigation .pq-single-post-left-arrow {
    display: flex;
    gap: 10px;
    text-align: center;
    align-items: center;
    transition: var(--transition);
}

.pq-project-arrow .pq-single-page-navigation .pq-single-title a {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    transition: var(--transition);
}

.pq-project-arrow .pq-single-page-navigation .pq-single-post-right-arrow {
    display: flex;
    gap: 10px;
    text-align: center;
    align-items: center;
    transition: var(--transition);
}

.pq-project-arrow .pq-single-page-navigation i {
    width: 60px;
    height: 60px;
    font-size: 20px;
    text-align: center;
    align-content: center;
    border-radius: var(--border-radius);
    color: var(--white-color);
    background-color: var(--dark-color);
    transition: var(--transition);
}

.pq-project-arrow .pq-single-page-navigation .pq-single-post-right-arrow:hover a {
    color: var(--primary-color);
}

.pq-project-arrow .pq-single-page-navigation .pq-single-post-right-arrow:hover a i {
    background-color: var(--primary-color);
}

@media(max-width:1023px) {
    .pq-portfolio-image.img-2 {
        display: none;
    }

    .pq-project-img-details .pq-project-img-details-title {
        padding-bottom: 30px;
    }
}

@media(max-width:767px) {
    .pq-project-details {
        padding: 0;
    }
}

@media(max-width:479px) {

    .pq-project-information .pq-project-info-title {
        padding: 30px 15px;
    }

    .pq-project-information .pq-project-contain {
        padding: 30px 15px;
    }

    .pq-project-arrow .pq-single-page-navigation {
        display: block;
        padding: 30px 15px;
    }

    .pq-project-arrow .pq-single-page-navigation .pq-single-post-right-arrow {
        justify-content: flex-end;
    }
}

/*==============================================
   Service Box
================================================*/

/*===== our-service style-1=====*/

.pq-service-box-style-1 .pq-service-box {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.pq-service-box-style-1 .pq-service-box .pq-service-box-info {
    display: grid;
    grid-template-columns: auto 2.5fr 3fr auto;
    gap: 45px;
    padding: 45px;
    position: relative;
    align-items: center;
    border-top: 1px solid var(--light-black);
    border-radius: var(--border-radius);
    z-index: 9;
    transition: all 0.5s ease-in-out;
}

.pq-service-box-style-1 .pq-service-box:last-child .pq-service-box-info {
    border-bottom: 1px solid var(--light-black);
}

.pq-service-box-style-1 .pq-service-box .pq-service-box-info .pq-service-box-icon {
    font-size: 64px;
    color: var(--primary-color);
    line-height: 1;
    height: 64px;
    transition: all 0.5s ease-in-out;
}

.pq-service-box-style-1 .pq-service-box.pq-active .pq-service-box-info .pq-service-box-icon {
    color: var(--white-color);
}

.pq-service-box-style-1 .pq-service-box .pq-service-box-info .pq-service-box-title {
    font-size: 28px;
    line-height: 36px;
    color: var(--dark-color);
    transition: all 0.5s ease-in-out;
}

.pq-service-box-style-1 .pq-service-box.pq-active .pq-service-box-info .pq-service-box-title {
    color: var(--white-color);
}

.pq-service-box-style-1 .pq-service-box .pq-service-box-info .pq-service-box-description {
    max-width: 470px;
    transition: all 0.5s ease-in-out;
    margin: 0;
}

.pq-service-box-style-1 .pq-service-box.pq-active .pq-service-box-info .pq-service-box-description {
    color: var(--white-color);
}

.pq-service-box-style-1 .pq-service-box.pq-active .pq-service-box-info .pq-icon-button a {
    background-color: var(--grey-color);
}

.pq-service-box-style-1 .pq-service-box .pq-image-block {
    position: absolute;
    right: 100%;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}

.pq-service-box-style-1 .pq-service-box.pq-active .pq-image-block {
    right: 0;
}

.pq-service-box-style-1 .pq-service-box .pq-image-block:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 0.9;
    overflow: hidden;
}

.pq-service-box-style-1 .pq-service-box .pq-image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media(max-width:1023px) {
    .pq-service-box-style-1 .pq-service-box .pq-service-box-info {
        padding: 45px 30px;
        gap: 15px 30px;
    }
}

@media(max-width:979px) {
    .pq-service-box-style-1 .pq-service-box .pq-service-box-info {
        padding: 45px;
    }
}

@media(max-width:767px) {

    .pq-service-box-style-1 .pq-service-box {
        margin-bottom: 30px;
    }

    .pq-service-box-style-1 .pq-service-box:last-child {
        margin-bottom: 0;
    }

    .pq-service-box-style-1 .pq-service-box .pq-service-box-info {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .pq-service-box-style-1 .pq-service-box .pq-service-box-info .pq-service-box-icon {
        color: var(--white-color);
    }

    .pq-service-box-style-1 .pq-service-box .pq-service-box-info .pq-service-box-title {
        color: var(--white-color);
    }

    .pq-service-box-style-1 .pq-service-box .pq-service-box-info .pq-service-box-description {
        color: var(--white-color);
        max-width: 100%;
    }

    .pq-service-box-style-1 .pq-service-box .pq-service-box-info .pq-icon-button a {
        border: 1px solid var(--primary-color);
        background-color: var(--grey-color);
    }

    .pq-service-box-style-1 .pq-service-box .pq-image-block {
        right: 0;
    }
}

@media(max-width:479px) {
    .pq-service-box-style-1 .pq-service-box .pq-service-box-info {
        padding: 30px 15px;
    }

    .pq-service-box-style-1 .pq-service-box .pq-service-box-info .pq-service-box-title {
        font-size: 24px;
        line-height: 32px;
    }
}

/*===== our-service-style-2=====*/

.pq-service-box-style-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    padding-left: 30px;
}

.pq-service-box-style-2 .pq-service-box {
    position: relative;
}

.pq-service-box-style-2 .pq-service-box .pq-service-box-number {
    font-size: 28px;
    line-height: 36px;
    color: var(--primary-color);
    padding-bottom: 15px;
    margin-bottom: 15px;
    display: block;
    position: relative;
    font-weight: 700;
    border-bottom: 1px solid var(--light-black);
}

.pq-service-box-style-2 .pq-service-box .pq-service-box-number::before {
    content: "";
    position: absolute;
    top: 52px;
    left: 0;
    transition: var(--transition);
    height: 1px;
    background-color: var(--dark-color);
    width: 0;
}

.pq-service-box-style-2 .pq-service-box.pq-active .pq-service-box-number::before {
    width: 100%;
}

.pq-service-box-style-2 .pq-service-box-title {
    font-size: 28px;
    line-height: 36px;
}

.pq-service-box-style-2 .pq-service-box .pq-service-box-description {
    margin-bottom: 0;
    margin-top: 5px;
}

.pq-service-box-style-2 .pq-service-box .pq-service-box-media img {
    position: absolute;
    max-width: 180px;
    border-radius: var(--border-radius);
    top: 5%;
    right: 0;
    transform-origin: 50% 50%;
    transition: var(--transition);
    transform: scale(0) rotate(0deg);
    margin-right: 15px;
}

.pq-service-box-style-2 .pq-service-box.pq-active .pq-service-box-media img {
    transform: scale(1) rotate(10deg);
}

@media(max-width:1099px) {
    .pq-service-box-style-2 {
        margin-top: 45px;
        padding-left: 0;
        gap: 45px;
    }
}

@media(max-width:767px) {

    .pq-service-box-style-2 {
        grid-template-columns: 1fr;
        margin-top: 30px;
    }

    .pq-service-box-style-2 .pq-service-box-title {
        font-size: 24px;
        line-height: 32px;
    }

    .pq-service-box-style-2 .pq-service-box .pq-service-box-media img {
        position: static;
        max-width: 100%;
        transform-origin: 50% 50%;
        transition: none;
        transform: none;
        width: 100%;
        margin: 15px 0 0 0;
    }

    .pq-service-box-style-2 .pq-service-box.pq-active .pq-service-box-media img {
        transform: none;
    }
}

@media(max-width:479px) {
    .pq-service-box-style-2 {
        gap: 30px;
    }
}

/*===== our service style-3====*/

.pq-service-box-style-3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 60px;
}

.pq-service-box.pq-style-3 {
    display: grid;
    grid-template-columns: auto 2.2fr 2fr auto;
    gap: 20px;
    border-bottom: 1px solid var(--light-black);
    padding-bottom: 30px;
}

.pq-service-box.pq-style-3 .pq-service-box-title .pq-service-box-category {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.pq-service-box.pq-style-3 .pq-service-box-title .pq-service-box-title {
    font-size: 24px;
    line-height: 32px;
    text-transform: capitalize;
}

.pq-service-box.pq-style-3 .pq-service-box-media {
    position: relative;
    width: 100%;
    height: 100%;
}

.pq-service-box.pq-style-3 .pq-service-box-media img {
    position: absolute;
    width: 180px;
    top: -30%;
    left: 50%;
    transform: translateX(-50%) scale(0);
    transform-origin: top center;
    transition: var(--transition);
    border-radius: var(--border-radius);
}

.pq-service-box.pq-style-3.pq-active .pq-service-box-media img {
    transform: translateX(-50%) scale(1);
}

.pq-service-box-style-3 .pq-service-box .pq-icon-button a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.pq-service-box-style-3 .pq-icon-button a {
    font-size: 18px;
}

.pq-service-box-style-3 .pq-service-box .pq-icon-button a:hover i {
    animation: icon-button-animation 0.4s linear;
}

@keyframes icon-button-animation {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }

    50% {
        transform: translate(40px, -40px);
        opacity: 0;
    }

    51% {
        transform: translate(-40px, 40px);
        opacity: 0;
    }

    100% {
        transform: translate(0, 0);
        opacity: 1;
    }
}

@media(max-width:1099px) {
    .pq-service-box-style-3 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media(max-width:767px) {
    .pq-service-box-style-3 .pq-service-box.pq-style-3 {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-bottom: 30px;
    }

    .pq-service-box.pq-style-3 .pq-service-box-title .pq-service-box-title {
        font-size: 24px;
        line-height: 32px;
    }

    .pq-service-box.pq-style-3 .pq-service-box-media img {
        transform: none;
        transition: none;
        position: initial;
        width: 100%;
        object-fit: cover;
        max-width: 100%;
    }

    .pq-service-box.pq-style-3.pq-active .pq-service-box-media img {
        transform: none;
    }

    .pq-service-box-style-3 .pq-service-box .pq-icon-button a:hover {
        background-color: var(--primary-color);
        color: var(--white-color);
    }

    .pq-service-box-style-3 .pq-service-box .pq-icon-button a:hover i {
        animation: none;
    }

    .pq-service-box-style-3 .pq-icon-button a {
        background-color: var(--grey-color);
    }
}

/*===== our service style-4====*/

.pq-service-box-style-4 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 60px;
}

.pq-service-box.pq-style-4 {
    display: grid;
    grid-template-columns: auto 2.2fr 2fr auto;
    gap: 20px;
    border-bottom: 1px solid var(--light-white);
    padding-bottom: 30px;
}

.pq-service-box.pq-style-4 .pq-service-box-number {
    color: var(--white-color);
}

.pq-service-box.pq-style-4 .pq-service-box-title .pq-service-box-category {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--white-color);
}

.pq-service-box.pq-style-4 .pq-service-box-title .pq-service-box-title {
    font-size: 24px;
    line-height: 32px;
    text-transform: capitalize;
    color: var(--white-color);
}

.pq-service-box.pq-style-4 .pq-service-box-media {
    position: relative;
    width: 100%;
    height: 100%;
}

.pq-service-box.pq-style-4 .pq-service-box-media img {
    position: absolute;
    width: 180px;
    top: -30%;
    left: 50%;
    transform: translateX(-50%) scale(0);
    transform-origin: top center;
    transition: var(--transition);
    border-radius: var(--border-radius);
}

.pq-service-box.pq-style-4.pq-active .pq-service-box-media img {
    transform: translateX(-50%) scale(1);

}

.pq-service-box-style-4 .pq-service-box .pq-icon-button a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.pq-service-box-style-4 .pq-icon-button a {
    font-size: 18px;
}

.pq-service-box-style-4 .pq-service-box .pq-icon-button a:hover i {
    animation: icon-button-animation 0.4s linear;
}

@keyframes icon-button-animation {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }

    50% {
        transform: translate(40px, -40px);
        opacity: 0;
    }

    51% {
        transform: translate(-40px, 40px);
        opacity: 0;
    }

    100% {
        transform: translate(0, 0);
        opacity: 1;
    }
}

@media(max-width:1099px) {
    .pq-service-box-style-4 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media(max-width:767px) {
    .pq-service-box-style-4 .pq-service-box.pq-style-4 {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-bottom: 30px;
    }

    .pq-service-box.pq-style-4 .pq-service-box-title .pq-service-box-title {
        font-size: 24px;
        line-height: 32px;
    }

    .pq-service-box.pq-style-4 .pq-service-box-media img {
        transform: none;
        transition: none;
        position: initial;
        width: 100%;
        object-fit: cover;
        max-width: 100%;
    }

    .pq-service-box.pq-style-4.pq-active .pq-service-box-media img {
        transform: none;
    }

    .pq-service-box-style-4 .pq-service-box .pq-icon-button a:hover {
        background-color: var(--primary-color);
        color: var(--white-color);
    }

    .pq-service-box-style-4 .pq-service-box .pq-icon-button a:hover i {
        animation: none;
    }
}

/*===== our-service slider style-1=====*/

.pq-service-box-slider.pq-style-1 {
    display: grid;
    gap: 45px;
    grid-template-columns: minmax(410px, 50%) minmax(30%, calc(100% - 410px - 45px));
}

.pq-service-box-slider.pq-style-1 .pq-service-box {
    display: flex;
    border-bottom: 1px solid var(--light-black);
    padding-bottom: 30px;
    margin-bottom: 30px;
    justify-content: space-between;
}

.pq-service-box-slider.pq-style-1 .pq-slick-slider-thumb .slick-slide:last-child .item .pq-service-box {
    margin-bottom: 0;
}

.pq-service-box-slider.pq-style-1 .pq-slick-slider-thumb .slick-slider-thumb .slick-list.draggable .slick-track {
    width: 100% !important;
}

.pq-service-box-slider.pq-style-1 .pq-slick-slider-thumb .slick-slide {
    margin: 0;
    width: 100% !important;
}

.pq-service-box-slider.pq-style-1 .pq-service-box .pq-service-box-content .pq-service-box-sub-title {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: inherit;
    margin-bottom: 5px;
}

.pq-service-box-slider.pq-style-1 .pq-service-box .pq-service-box-content .pq-service-box-main-title {
    font-size: 36px;
    line-height: 44px;
}

.pq-service-box-slider.pq-style-1 .slick-slide.slick-current.slick-active .pq-icon-button a {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.pq-service-box-slider.pq-style-1 .pq-slick-slider-main .slick-slider-main .slick-slide {
    margin: 0;
}

.pq-service-box-slider.pq-style-1 .pq-slick-slider-main .slick-slider-main .item .pq-service-box-media img {
    object-fit: cover;
    border-radius: var(--border-radius);
}

@media(max-width:1023px) {
    .pq-service-box-slider.pq-style-1 .pq-service-box .pq-service-box-content .pq-service-box-main-title {
        font-size: 28px;
        line-height: 36px;
    }
}

@media(max-width: 767px) {
    .pq-service-box-slider.pq-style-1 {
        grid-template-columns: 100%;
    }

    .pq-service-box-slider.pq-style-1 .pq-service-box .pq-service-box-content .pq-service-box-main-title {
        font-size: 20px;
        line-height: 28px;
    }
}

/*==============================================
   Wow Image effects
================================================*/

/*==== Image Effect Right  =====*/

.img-ptkey-right {
    animation: img-ptkey-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
    opacity: 0;
}

@keyframes img-ptkey-right {
    0% {
        transform: translateX(5%);
        clip-path: inset(0 0 0 100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

.pq-img-right .pq-image-effect {
    position: absolute;
    width: calc((100vw / 2) - 60px);
    right: calc((1400px - 100vw)/2 + 30px);
}

.pq-img-right .pq-image-effect img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
}

@media (max-width: 1400px) {

    .pq-img-right .pq-image-effect {
        right: -15px;
    }
}

@media (max-width: 1024px) {
    .pq-img-right .pq-image-effect {
        position: inherit;
        width: 100%;
    }
}

/*===== Image Effect Left =====*/

.img-ptkey-left {
    animation: img-ptkey-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
    opacity: 0;
}

@keyframes img-ptkey-left {
    0% {
        transform: translateX(-5%);
        clip-path: inset(0 100% 0 0);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

.pq-img-left .pq-image-effect {
    position: absolute;
    width: calc((100vw / 2) - 60px);
    left: calc((1400px - 100vw)/2 + 30px);
}

.pq-img-left .pq-image-effect img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: var(--border-radius);
}

@media (max-width: 1400px) {
    .pq-img-left .pq-image-effect {
        left: -15px;
    }
}

@media (max-width: 1024px) {
    .pq-img-left .pq-image-effect {
        position: inherit;
        width: 100%;
    }
}

/*==============================================
   Icon Box
================================================*/

.pq-page-redirect-block {
    position: absolute;
    bottom: -55px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.pq-icon-box.pq-style-1 {
    padding: 10px;
    background-color: var(--white-color);
    position: relative;
    border-radius: 100%;
}

.pq-icon-box.pq-style-1::before {
    position: absolute;
    content: "";
    bottom: 55px;
    left: -43.2px;
    background: transparent;
    width: 55px;
    height: 55px;
    border-bottom-right-radius: 55px;
    box-shadow: 0px 24px 0 -4px var(--white-color);
}

.pq-icon-box.pq-style-1::after {
    position: absolute;
    content: "";
    bottom: 55px;
    right: -43.2px;
    background: transparent;
    width: 55px;
    height: 55px;
    border-bottom-left-radius: 55px;
    box-shadow: 0px 24px 0 -4px var(--white-color);
}

.pq-icon-box.pq-style-1 .pq-icon-box-icon {
    width: 100px;
    height: 100px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 100%;
    font-size: 48px;
    line-height: 100px;
    text-align: center;
}

.pq-icon-box.pq-style-1:hover .pq-icon-box-icon i {
    animation: icon-animation 0.3s linear;
    display: inline-block;
}

@keyframes icon-animation {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }

    50% {
        transform: translate(0, 70px);
        opacity: 0;
    }

    51% {
        transform: translate(0, -70px);
        opacity: 0;
    }

    100% {
        transform: translate(0, 0);
        opacity: 1;
    }
}

@media(max-width:1023px) {
    .pq-icon-box.pq-style-1 .pq-icon-box-icon {
        width: 80px;
        height: 80px;
        font-size: 44px;
        line-height: 80px;
    }

    .pq-icon-box.pq-style-1::before {
        bottom: 50px;
        left: -36.2px;
        width: 50px;
        height: 50px;
        border-bottom-right-radius: 50px;
        box-shadow: 0px 19px 0 -4px var(--white-color);
    }

    .pq-icon-box.pq-style-1::after {
        bottom: 50px;
        right: -36.2px;
        width: 50px;
        height: 50px;
        border-bottom-left-radius: 50px;
        box-shadow: 0px 19px 0 -4px var(--white-color);
    }
}

@media (max-width: 767px) {

    .pq-icon-box.pq-style-1 {
        padding: 8px;
    }

    .pq-icon-box.pq-style-1 .pq-icon-box-icon {
        width: 74px;
        height: 74px;
        font-size: 40px;
        line-height: 74px;
    }

    .pq-icon-box.pq-style-1::before {
        bottom: 45px;
        left: -33px;
        width: 45px;
        height: 45px;
        border-bottom-right-radius: 45px;
        box-shadow: 0px 18px 0 -4px var(--white-color);
    }

    .pq-icon-box.pq-style-1::after {
        bottom: 45px;
        right: -33px;
        width: 45px;
        height: 45px;
        border-bottom-left-radius: 45px;
        box-shadow: 0px 18px 0 -4px var(--white-color);
    }
}

@media(max-width:767px) {
    .pq-page-redirect-block {
        display: none;
    }
}

/*==============================================
   about us
================================================*/

/*===== about-us style-1=====*/

.pq-about-media-block {
    position: relative;
}

.pq-about-media-block .pq-about-image img {
    width: 576px;
    border-radius: 10px;
    position: relative;
}

.pq-about-info .pq-image-box {
    display: grid;
    grid-template-columns: 1fr 70%;
}

.pq-about-info .pq-image-box .pq-image-box-img {
    margin-bottom: 20px;
    margin-right: 20px;
}

.pq-about-info .pq-image-box .pq-image-box-img img {
    width: 250px;
    border-radius: 10px;
}

.pq-about-info .pq-image-box .pq-image-box-content .pq-image-box-title {
    font-size: 18px;
    line-height: 26px;
    color: var(--dark-color);
    text-transform: capitalize;
    font-style: italic;
    font-weight: 700;
    margin-bottom: 10px;
}

.pq-about-info .pq-image-box .pq-image-box-content .pq-image-box-description {
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--secondary-color);
    font-family: var(--title-fonts);
    letter-spacing: 1px;
    margin-bottom: 0px;
}

.pq-about-info .pq-ineer-page {
    display: flex;
    border-top: 1px solid #0000001F;
    margin-top: 15px;
    padding-top: 30px;
}

.pq-about-info .pq-ineer-page .pq-image-box-content {
    padding-left: 30px;
}

.pq-about-info .pq-ineer-page .pq-image-box-content .pq-image-box-title {
    font-size: 18px;
    line-height: 26px;
}

.pq-about-info .pq-ineer-page .pq-image-box-content .pq-image-box-description {
    margin-bottom: 0;
}

@keyframes rotateText {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

@media(max-width:1365px) {

    .pq-about-media-block .pq-about-image img {
        width: 524px;
    }
}

@media(max-width:1279px) {

    .pq-about-media-block .pq-about-image img {
        width: 480px;
    }
}

@media(max-width:1099px) {
    .pq-about-media-block .pq-about-image img {
        width: 414px;
    }

    .pq-about-info .pq-image-box {
        grid-template-columns: 1fr 60%;
    }
}

@media(max-width:1023px) {

    .pq-about-media-block .pq-about-image {
        margin-top: 30px;
    }

    .pq-about-media-block .pq-about-image img {
        width: 100%;
    }

    .pq-about-contain.pq-style-1 .pq-animation-block.pq-style-1 {
        display: none;
    }

    .pq-about-info .pq-image-box {
        grid-template-columns: 1fr 3fr;
    }
}

@media(max-width:767px) {

    .pq-about-info .pq-image-box {
        grid-template-columns: 1fr;
    }

    .pq-about-info .pq-image-box .pq-image-box-img {
        margin-right: 0;
    }

    .pq-about-info .pq-ineer-page {
        margin-top: 30px;
        display: block;
    }

    .pq-about-info .pq-ineer-page .pq-image-box-content {
        padding-left: 0;
        margin-top: 15px;
    }
}

/*=====about-us style-2=====*/

.pq-about-us-image {
    margin-left: -223px;
}

.pq-about-us-image img {
    border-radius: var(--border-radius);
}

.pq-about-item.pq-style-2 {
    border-radius: 0 10px 10px 0;
    padding: 130px 0 60px 0;
}

.pq-about-us-info .pq-icon-box {
    display: flex;
    max-width: 685px;
}

.pq-about-us-info .pq-icon-box .pq-icon-box-content {
    display: flex;
    margin-bottom: 30px;
}

.pq-about-us-info .pq-icon-box .pq-icon-box-content i {
    font-size: 60px;
    line-height: 68px;
    color: var(--primary-color);
    margin-right: 15px;
}

.pq-about-us-info .pq-icon-box .pq-icon-box-content .pq-icon-title {
    font-size: 24px;
    line-height: 32px;
    align-self: center;
}

.pq-about-us-info .pq-icon-list {
    margin: 0 0 30px 0;
    padding-bottom: 30px;
    max-width: 655px;
    border-bottom: 1px solid #0000001F;
}

.pq-about-us-info .pq-icon-list .pq-icon-list-item {
    padding: 0;
    margin: 0;
}

.pq-about-us-info .pq-icon-list .pq-icon-list-item li .pq-icon-list-icon-title i {
    padding-right: 5px;
    color: var(--primary-color);
}

.pq-about-us-info .pq-icon-list .pq-icon-list-item li .pq-icon-list-icon-title {
    font-weight: 450;
    display: flex;
    gap: 10px;
}

.pq-about-us-info .pq-media {
    display: flex;
}

.pq-about-us-info .pq-media .pq-author-image {
    width: 85px;
}

.pq-about-us-info .pq-media .pq-author-image img {
    border-radius: 100%;
    object-fit: cover;
    width: 70px;
}

.pq-about-us-info .pq-media .pq-author-content {
    width: 180px;
}

.pq-about-us-info .pq-media .pq-author-content .pq-author-name {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 5px;
}

.pq-about-us-info .pq-media .pq-author-content .pq-author-designation {
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.pq-about-item.pq-style-2 .pq-about-us-info .pq-media .pq-author-signature img {
    max-width: 200px;
}

@media(max-width:1499px) {
    .pq-about-item.pq-style-2 {
        padding: 90px 0 45px 0;
    }
}

@media(max-width:1365px) {
    .pq-about-us-image {
        margin-left: -251px;
    }
}

@media(max-width:1279px) {
    .pq-about-item.pq-style-2 {
        padding: 30px 0 30px 0;
    }

    .pq-about-us-image {
        margin-left: -285px;
    }
}

@media(max-width:1099px) {

    .pq-about-us-image {
        margin-left: 0;
        text-align: center;
        margin-top: 30px;
    }

    .pq-about-us-info .pq-icon-box {
        display: inline;
    }
}

@media(max-width:1023px) {

    .pq-about-item.pq-style-2 {
        padding: 60px 0 0 0;
    }

    .pq-about-us-info .pq-icon-list {
        max-width: 100%;
    }

    .pq-about-us-image {
        margin-bottom: 45px;
    }
}

@media(max-width:767px) {
    .pq-about-item.pq-style-2 {
        padding: 30px 0 0 0;
    }

    .pq-about-us-image {
        margin-bottom: 30px;
    }

    .pq-about-us-info .pq-media {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/*=====about-us style-3=====*/

.pq-about-item.pq-style-3 {
    padding: 15px 0px 0 30px;
}

.pq-about-us-images img {
    border-radius: var(--border-radius);
    width: 80%;
}

.pq-about-us-image-2 {
    position: absolute;
    max-width: 428px;
    left: 19%;
    top: 29%;
}

.pq-about-item.pq-style-3 .pq-author-info {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.pq-about-item.pq-style-3 .pq-author-info .pq-author-image img {
    border-radius: 100%;
    width: 80px;
}

.pq-about-item.pq-style-3 .pq-author-info .pq-author-signature {
    align-content: center;
}

.pq-about-item.pq-style-3 .pq-author-info .pq-author-signature img {
    height: 54px;
}

.pq-about-item.pq-style-3 .pq-author-duration {
    background-color: var(--grey-color);
    padding: 10px 20px;
    border-radius: 100px;
    display: inline;
    font-weight: 500;
}

@media(max-width:1399px) {

    .pq-about-us-images {
        display: flex;
        align-items: center;
        justify-content: space-evenly;
    }

    .pq-about-us-images img {
        width: 50%;
    }

    .pq-about-us-image-2 {
        position: static;
    }

    .pq-about-item.pq-style-3 {
        padding: 45px 0 0 0;
    }

    .pq-counter.pq-style-2 {
        gap: 100px;
    }
}

@media(max-width:979px) {
    .pq-about-us-images img {
        width: 45%;
    }
}

@media(max-width:767px) {
    .pq-about-us-images {
        display: none;
    }

    .pq-about-item.pq-style-3 {
        padding: 0;
    }
}

@media(max-width:479px) {

    .pq-about-item.pq-style-3 .pq-author-info {
        margin-bottom: 30px;
    }

    .pq-about-item.pq-style-3 .pq-author-duration {
        padding: 20px 20px;
    }
}

@media(max-width:397px) {
    .pq-about-item.pq-style-3 .pq-author-duration {
        padding: 20px 10px;
    }
}

/*=====about-us style-4=====*/

.pq-about-us-image-3 img {
    width: 100%;
    border-radius: var(--border-radius);
}

.pq-about-item.pq-style-4 {
    padding: 0 0 0 30px;
}

.pq-about-item.pq-style-4 .pq-icon-list .pq-icon-list-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
}

.pq-about-item.pq-style-4 .pq-author-signature {
    max-width: 100%;
}

.pq-about-item.pq-style-4 .pq-about-us-info .pq-media .pq-author-signature img {
    height: 54px;
    width: 368px;
}

@media(max-width:1023px) {
    .pq-about-us-image-3 {
        display: none;
    }

    .pq-about-item.pq-style-4 {
        padding: 0;
    }
}

@media(max-width:767px) {
    .pq-about-item.pq-style-4 .pq-icon-list .pq-icon-list-item {
        grid-template-columns: 1fr;
    }
}

/*=====about-us style-5=====*/

.pq-about-item.pq-style-5 img {
    border-radius: var(--border-radius);
}

.pq-about-item.pq-style-5 .pq-about-contain .pq-about-title {
    margin-top: 30px;
    margin-bottom: 5px;
    font-size: 24px;
    line-height: 32px;
    color: var(--primary-color);
}

.pq-about-item.pq-style-5 .pq-about-contain .pq-about-us-item {
    margin: 0;
    padding: 0;
}

.pq-about-item.pq-style-5 .pq-about-item-list-title {
    display: flex;
    text-align: center;
    margin-bottom: 5px;
}

.pq-about-item.pq-style-5 .pq-about-item-list-title:last-child {
    margin-bottom: 0;
}

.pq-about-item.pq-style-5 .pq-about-contain .pq-about-us-item li .pq-about-item-list-title i {
    margin-right: 10px;
    color: var(--primary-color);
}

@media(max-width:1023px) {
    .pq-about-us-image-4 img {
        margin-top: 30px;
    }

    .pq-about-item.pq-style-5 .pq-about-us-image-6 {
        margin-top: 30px;
    }
}

/*==============================================
  Process Step
================================================*/

/*=====Process Step style-1=====*/

.pq-process-list.pq-style-1 {
    position: relative;
}

.pq-process-list.pq-style-1 .pq-process-box-line {
    position: absolute;
    width: 100%;
    height: 1px;
    top: 34%;
    background-color: var(--light-black);
}

.pq-process-list.pq-style-1 .pq-process-box-line::after {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: var(--border-radius);
    background-color: var(--white-color);
    border: 1px solid var(--light-black);
    position: absolute;
    left: 0;
    top: 0;
    transform: translateY(-50%);
}

.pq-process-list.pq-style-1 .pq-process-box-line::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: var(--border-radius);
    background-color: var(--white-color);
    border: 1px solid var(--light-black);
    position: absolute;
    left: 0;
    top: 0;
    transform: translateY(-50%);
}

.pq-process-list.pq-style-1 .pq-process-box-line::before {
    right: 0;
    left: inherit;
}

.pq-process-list.pq-style-1 .pq-process {
    position: relative;
    text-align: -webkit-center;
}

.pq-process-list.pq-style-1 .pq-process .pq-process-media {
    border: 1px solid var(--light-black);
    padding: 10px;
    border-radius: 215px;
    width: 270px;
    background-color: var(--white-color);
    position: relative;
}

.pq-process-list.pq-style-1 .pq-process .pq-process-media img {
    border-radius: 215px;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.pq-process-list.pq-style-1 .pq-process .pq-process-media .pq-process-number {
    position: absolute;
    top: 80%;
    left: 0;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 10px;
    padding: 5px 15px;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.pq-process-list.pq-style-1 .pq-process .pq-process-media .pq-process-icon {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 80px;
    height: 80px;
    background-color: var(--grey-color);
    border-radius: 40px;
    font-size: 40px;
    line-height: 80px;
    color: var(--primary-color);
    transform: translate(50%, -50%);
}

.pq-process-list.pq-style-1 .pq-process .pq-process-contain {
    margin-top: 30px;
    padding: 0 15px;
    background-color: var(--white-color);
    display: inline-block;
}

.pq-process-list.pq-style-1 .pq-process .pq-process-contain .pq-process-title {
    font-size: 28px;
    line-height: 36px;
}

.pq-process-list.pq-style-1 .pq-process .pq-process-contain .pq-about-description {
    max-width: 300px;
    margin-bottom: 0;
    margin-top: 5px;
}

.pq-process-list.pq-style-1 .pq-process .pq-process-contain .pq-process-icon-next {
    display: inline-block;
    position: absolute;
    top: 140px;
    right: 0;
    color: var(--primary-color);
    transform: translate(100%, -50%);
    font-size: 19px
}

@media (max-width: 1099px) {
    .pq-process-list.pq-style-1 .pq-process .pq-process-media {
        width: 240px;
    }

    .pq-process-list.pq-style-1 .pq-process .pq-process-contain .pq-process-icon-next {
        top: 130px;
    }
}

@media(max-width:1023px) {

    .pq-process-list.pq-style-1 .pq-process {
        margin: 60px 0;
    }

    .pq-process-list.pq-style-1 .pq-process-box-line {
        position: absolute;
        width: 1px;
        height: 100%;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .pq-process-list.pq-style-1 .pq-process .pq-process-media {
        width: 350px;
    }

    .pq-process-list.pq-style-1 .pq-process-box-line::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .pq-process-list.pq-style-1 .pq-process-box-line::after {
        left: 50%;
        transform: translateX(-50%);
        top: 100%;
    }

    .pq-process-list.pq-style-1 .pq-process .pq-process-contain {
        margin-top: 15px;
    }

    .pq-process-list.pq-style-1 .pq-process .pq-process-contain .pq-process-icon-next {
        top: 530px;
        right: initial;
        left: 50%;
        transform: translate(calc(-50% - 1px), -50%) rotate(90deg);
    }
}

@media(max-width:479px) {

    .pq-process-list.pq-style-1 .pq-process {
        margin: 30px 0;
    }

    .pq-process-list.pq-style-1 .pq-process .pq-process-media {
        width: 250px;
    }

    .pq-process-list.pq-style-1 .pq-process .pq-process-contain .pq-process-icon-next {
        top: 400px;
    }

    .pq-process-list.pq-style-1 .pq-process .pq-process-contain .pq-process-title {
        font-size: 24px;
        line-height: 32px;
    }
}

/*==============================================
  Popup Animation
================================================*/

/*=====pop Animation style-1====*/

.pq-popup-animation.pq-style-1 {
    text-align: -webkit-center;
    padding: 260px 0 260px 0;
    background-image: url(../image/service-box/service-style-2/video-h1-001-scaled.webp);
    background-size: cover;
    margin: 130px 45px 0 45px;
    border-radius: var(--border-radius);
    background-size: cover;
}

.pq-popup-animation a {
    color: var(--white-color);
    display: block;
}

.pq-popup-animation .pq-media-block {
    width: 180px;
    height: 180px;
    position: relative;
    padding: 0px;
    overflow: hidden;
}

.pq-popup-animation.pq-style-1 .pq-media-block {
    border: 1px solid var(--dark-color);
    border-radius: 100%;
    background-color: var(--white-color);
}

.pq-popup-animation .pq-media-block .pq-icon-block {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-weight: 400;
    font-family: var(--title-fonts);
    color: var(--dark-color);
    text-align: center;
    font-size: 30px;
    line-height: 100px;
    display: inline-block;
    border-radius: 60px;
    z-index: 2;
    border: 1px solid var(--dark-color);
    border-radius: 100%;
    width: 100px;
    height: 100px;
}

.pq-popup-animation.pq-style-1 .pq-media-block img {
    animation: text-animatio 10s linear infinite;
    position: absolute;
    left: 11px;
    top: 11px;
    transition: var(--transition);
    width: 156px;
}

@keyframes text-animatio {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

.pq-popup-animation.pq-style-1:hover .pq-media-block img {
    scale: 1.1;
}

@media(max-width:1499px) {
    .pq-popup-animation.pq-style-1 {
        margin: 90px 0 0;
        border-radius: 0;
    }
}

@media(max-width:1023px) {
    .pq-popup-animation.pq-style-1 {
        padding: 180px 0 180px 0;
        margin: 90px 0 0 0;
    }
}

@media(max-width:767px) {
    .pq-popup-animation.pq-style-1 {
        background-size: cover;
        border-radius: 0;
        padding: 120px 0 120px 0;
        margin: 60px 0 0 0;
    }
}

/*=====pop Animation style-2====*/

.popup-animation {
    z-index: 1;
    position: relative;
}

.pq-popup-animation.pq-style-2 {
    text-align: -webkit-center;
    padding: 260px 0 260px 0;
    background-image: url(../image/video-h3-001.webp);
    background-size: cover;
    border-radius: var(--border-radius);
    background-size: cover;
    background-position: center;
}

.pq-popup-animation.pq-style-2 .pq-media-block .pq-icon-block i {
    display: block;
    font-size: 30px;
}

.pq-popup-animation.pq-style-2 .pq-media-block img {
    animation: text-animatio 10s linear infinite;
    transition: var(--transition);
}

@keyframes text-animatio {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

@media(max-width:1023px) {
    .pq-popup-animation.pq-style-2 {
        padding: 180px 0 180px 0;
    }
}

@media(max-width:767px) {
    .pq-popup-animation.pq-style-2 {
        padding: 130px 0 130px 0;
    }

    .pq-popup-animation.pq-style-2 .pq-popup-animation .pq-media-block {
        width: 100px;
        height: 100px;
    }
}

/*==============================================
  Team
================================================*/

/*=====team style-1====*/

.pq-team-box-style-1 .pq-team-box:hover {
    background-color: var(--primary-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.pq-team-box-style-1 .pq-team-box.pq-active {
    background-color: var(--primary-color);
    border-radius: var(--border-radius);
}

.pq-team-box-style-1 .pq-team-box .pq-team-box-info {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 260px;
    position: relative;
    padding: 45px 30px;
}

.pq-team-box-style-1 .pq-team-box .pq-team-box-info .pq-team-details {
    display: flex;
    gap: 20px;
    align-items: center;
}

.pq-team-box-style-1 .pq-team-box {
    border-bottom: 1px solid var(--light-black);
    transition: var(--transition);
}

.pq-team-box-style-1 .pq-team-box .pq-team-box-info .pq-team-name {
    font-size: 32px;
    line-height: 40px;
    font-weight: 700;
    color: var(--dark-color);
    font-family: var(--title-fonts);
    transition: var(--transition);
}

.pq-team-box-style-1 .pq-team-box.pq-active .pq-team-box-info .pq-team-name {
    color: var(--white-color);
}

.pq-team-box-style-1 .pq-team-box .pq-team-box-info .pq-line {
    font-size: 40px;
    line-height: 48px;
    font-weight: 700;
    color: var(--dark-color);
    font-family: var(--title-fonts);
    transition: var(--transition);
}

.pq-team-box-style-1 .pq-team-box.pq-active .pq-team-box-info .pq-line {
    color: var(--white-color);
}

.pq-team-box-style-1 .pq-team-box .pq-team-box-info .pq-team-designation {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    letter-spacing: 0.04em;
    font-family: var(--title-fonts);
    transition: var(--transition);
    text-transform: uppercase;
}

.pq-team-box-style-1 .pq-team-box.pq-active .pq-team-box-info .pq-team-designation {
    color: var(--white-color);
}

.pq-team-box-style-1 .pq-team-box .pq-team-box-info .pq-team-media img {
    position: absolute;
    left: 50%;
    top: 50%;
    max-width: 350px;
    border-radius: var(--border-radius);
    transform-origin: 50% 50%;
    transform: translateY(-50%) scale(0);
    transition: var(--transition);
}

.pq-team-box-style-1 .pq-team-box.pq-active .pq-team-box-info .pq-team-media img {
    transform: translateY(-50%) scale(1);
}

.pq-team-box-button {
    border: 1px solid var(--dark-color);
    width: 60px;
    height: 60px;
    border-radius: 40px;
    position: relative;
}

.pq-team-box-style-1 .pq-team-box.pq-active .pq-team-box-info .pq-team-box-button {
    background-color: var(--white-color);
}

.pq-team-box-button i {
    font-size: 24px;
    position: absolute;
    line-height: 60px;
    left: 15px;
}

@media(max-width:1099px) {
    .pq-team-box-style-1 .pq-team-box .pq-team-box-info .pq-team-details {
        gap: 5px;
    }

    .pq-team-box-style-1 .pq-team-box .pq-team-box-info .pq-team-name {
        font-size: 24px;
        line-height: 50px;
    }
}

@media(max-width:1023px) {
    .pq-team-box-style-1 .pq-team-box .pq-team-box-info {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .pq-team-box-style-1 .pq-team-box .pq-team-box-info .pq-team-details {
        display: block;
    }

    .pq-team-box-style-1 .pq-team-box .pq-team-box-info .pq-line {
        display: none;
    }

    .pq-team-box-style-1 .pq-team-box .pq-team-box-info .pq-team-media img {
        max-width: 300px;
    }
}

@media(max-width:767px) {

    .pq-team-box-style-1 .pq-team-box {
        background-color: var(--primary-color);
        border-radius: var(--border-radius);
        margin-bottom: 30px;
    }

    .pq-team-box-style-1 .pq-team-box:last-child {
        margin-bottom: 0;
    }

    .pq-team-box-style-1 .pq-team-box .pq-team-box-info {
        padding: 30px;
    }

    .pq-team-box-style-1 .pq-team-box .pq-team-box-info .pq-team-name {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 15px;
        color: var(--white-color);
    }

    .pq-team-box-style-1 .pq-team-box .pq-team-box-info .pq-team-designation {
        color: var(--white-color);
    }

    .pq-team-box-style-1 .pq-team-box.pq-active .pq-team-box-info .pq-team-media img {
        transform: none;
    }

    .pq-team-box-style-1 .pq-team-box .pq-team-box-info .pq-team-media img {
        max-width: 100%;
        border-radius: var(--border-radius);
        position: initial;
        transform: none;
        transition: none;
        margin: 15px 0;
    }

    .pq-team-box-style-1 .pq-team-box .pq-team-box-info .pq-team-box-button {
        background-color: var(--white-color);
    }
}

@media(max-width:479px) {
    .pq-team-box-style-1 .pq-team-box .pq-team-box-info {
        padding: 30px 15px;
    }
}

/*===== team style-2====*/

.pq-team-style-2 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.pq-team-box.pq-style-2 {
    display: inline-block;
    overflow: hidden;
    position: relative;
}

.pq-team-style-2 .pq-team-box.pq-style-2.pq-active {
    border-radius: var(--border-radius);
    overflow: hidden;
}

.pq-team-box.pq-style-2 .pq-team-media {
    position: relative;
    display: inline-block;
}

.pq-team-box.pq-style-2 .pq-team-media img {
    overflow: hidden;
    width: 100%;
    height: 100%;
    transform: scale(1);
    transition: all 0.3s ease-in-out;
    border-radius: 10px 10px 0 0;
}

.pq-team-box.pq-style-2.pq-active .pq-team-media img {
    transform: scale(1.05);
    border-radius: 10px 10px 0 0;
    transition: all 0.3s ease-in-out;
}

.pq-team-social-icon .pq-social-icon-list {
    display: flex;
    position: absolute;
    padding: 0;
    margin: 0;
    gap: 15px;
    position: absolute;
    text-align: center;
    width: 100%;
    justify-content: center;
    bottom: 17px;
    left: 0;
}

.pq-team-social-icon .pq-social-icon-list li a {
    width: 40px;
    height: 40px;
    background-color: var(--dark-color);
    border-radius: 100%;
    color: var(--white-color);
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.pq-team-style-2 .pq-team-box.pq-style-2 .pq-team-social-icon .pq-social-icon-list li a {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.25s, transform 0.3s cubic-bezier(0.26, -0.14, 0, 1.01);
}

.pq-team-style-2 .pq-team-box.pq-style-2.pq-active .pq-team-social-icon .pq-social-icon-list li a {
    opacity: 1;
    transform: translateX(0) translateZ(0);
    transition: var(--transition);
}

.pq-team-social-icon .pq-social-icon-list li a:hover {
    background-color: var(--white-color);
    color: var(--dark-color);
    transition: all 0.3s ease-in-out;
}

.pq-team-social-icon .pq-social-icon-list li a i {
    font-size: 16px;
    line-height: 40px;
}

.pq-team-box.pq-style-2 .pq-team-info {
    background-color: var(--grey-color);
    padding: 30px 15px;
    text-align: center;
    border-radius: 0 0 10px 10px;
}

.pq-team-box.pq-style-2 .pq-team-info .pq-team-name {
    font-size: 24px;
    line-height: 32px;
    color: var(--dark-color);
    text-transform: capitalize;
    font-weight: 600;
}

.pq-team-box.pq-style-2 .pq-team-info .pq-team-designation {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media(max-width:1099px) {
    .pq-team-style-2 {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:767px) {
    .pq-team-style-2 {
        grid-template-columns: 1fr;
    }
}

/*===== team details====*/

.team-details .pq-team-img {
    height: auto;
    max-width: 100%;
}

.team-details .pq-team-img img {
    border-radius: var(--border-radius);
}

.team-details .pq-team-info .pq-team-designation {
    font-size: 16px;
    line-height: 24px;
    color: var(--primary-color);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

.team-details .pq-team-info-title:nth-child(1) {
    margin-top: 30px;
}

.team-details .pq-team-info-title {
    margin-top: 15px;
}

.team-details .pq-team-info-title h2 {
    font-size: 16px;
    line-height: 24px;
}

.team-details .pq-team-info-title h2 span {
    color: var(--secondary-color);
    font-weight: 500;
    letter-spacing: 1px;
    margin-left: 10px;
}

.team-details .pq-team-info-title h2:last-child {
    display: flex;
    align-items: center;
}

.team-details .pq-team-info-title ul {
    display: flex;
    gap: 5px;
    padding: 0;
    margin: 0;
    margin-left: 10px;
}

.team-details .pq-team-info-title ul li a {
    width: 40px;
    height: 40px;
    background-color: var(--dark-color);
    color: var(--white-color);
    display: inline-block;
    border-radius: 100%;
    text-align: center;
    line-height: 40px;
}

.team-details .pq-team-description {
    margin-bottom: 0;
}

.team-details .pq-team-title {
    font-size: 24px;
    line-height: 32px;
    margin-top: 60px;
    margin-bottom: 15px;
}

.team-details .pq-team-description:last-child {
    margin-top: 15px;
}

@media(max-width:1099px) {
    .team-details .pq-team-title {
        margin-top: 30px;

    }
}

@media(max-width:1023px) {
    .team-details .pq-team-description:first-child {
        margin-top: 15px;
    }
}

@media(max-width:767px) {
    .team-details .pq-team-info {
        margin-top: 15px;
    }

    .team-details .pq-team-info .pq-team-name {
        font-size: 28px;
        line-height: 36px;
    }
}

/*==============================================
   fancy box
================================================*/

/*===== Fancy style-1====*/

.pq-fancy-info {
    display: grid;
    grid-template-columns: 41% 54%;
    justify-content: space-between;
}

.pq-fancy-box.pq-style-1 {
    background-color: var(--grey-color);
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    transition: var(--transition);
}

.pq-fancy-box.pq-style-1.pq-active {
    background-color: var(--primary-color);
    padding-bottom: 30px;
    border-radius: var(--border-radius);
}

.pq-fancy-box.pq-style-1:last-child {
    margin-bottom: 0;
}

.pq-fancy-box.pq-style-1 .pq-fancy-box-top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 45px;
    padding: 30px;
    align-items: center;
    transition: var(--transition);
}

.pq-fancy-box.pq-style-1.pq-active .pq-fancy-box-top {
    padding-bottom: 15px;
}

.pq-fancy-box.pq-style-1 .pq-fancy-box-top .pq-fancy-box-icon {
    font-size: 56px;
    color: var(--primary-color);
    transition: var(--transition);
    line-height: 1;
}

.pq-fancy-box.pq-style-1.pq-active .pq-fancy-box-top .pq-fancy-box-icon {
    color: var(--white-color);
}

.pq-fancy-box.pq-style-1 .pq-fancy-box-top .pq-fancy-box-title {
    transition: var(--transition);
}

.pq-fancy-box.pq-style-1.pq-active .pq-fancy-box-top .pq-fancy-box-title {
    color: white;
}

.pq-fancy-box.pq-style-1 .pq-fancy-box-top .pq-icon-button {
    border: 1px solid var(--primary-color);
    width: 60px;
    height: 60px;
    font-size: 24px;
    line-height: 56px;
    border-radius: 100px;
    text-align: center;
    transition: var(--transition);
}

.pq-fancy-box.pq-style-1.pq-active .pq-fancy-box-top .pq-icon-button {
    background-color: var(--white-color);
    transform: rotate(90deg);
}

.pq-fancy-box.pq-style-1 .pq-fancy-box-description {
    border-top: 1px solid var(--light-black);
    margin: 0 130px;
    padding-top: 10px;
    transition: var(--transition);
    display: none;
}

.pq-fancy-box.pq-style-1.pq-active .pq-fancy-box-description {
    color: var(--white-color);
    display: block;
    border-top: 1px solid var(--light-white);
}

@media(max-width:1099px) {
    .pq-fancy-info {
        grid-template-columns: 1fr;
    }

    .pq-fancy-box-details {
        margin-top: 30px;
    }
}

@media(max-width:767px) {

    .pq-fancy-box.pq-style-1 .pq-fancy-box-top {
        gap: 10px 30px;
        grid-template-columns: 1fr auto;
    }

    .pq-fancy-box.pq-style-1 .pq-fancy-box-top .pq-fancy-box-icon {
        font-size: 48px;
    }

    .pq-fancy-box.pq-style-1 .pq-fancy-box-description {
        margin: 0 30px;
    }

    .pq-fancy-box.pq-style-1 .pq-fancy-box-top .pq-fancy-box-title {
        font-size: 24px;
        line-height: 32px;
        grid-row: 2;
        grid-column: 1;
    }
}

@media(max-width:479px) {

    .pq-fancy-box.pq-style-1 .pq-fancy-box-top .pq-fancy-box-icon {
        font-size: 44px;
    }

    .pq-fancy-box.pq-style-1 .pq-fancy-box-top {
        gap: 10px 0px;
    }

    .pq-fancy-box.pq-style-1 .pq-fancy-box-top .pq-icon-button {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 20px;
    }
}

/*===== fancy-box style-2=====*/

.pq-fancy-box-list.pq-style-2 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 90px 0 90px 0;
}

.pq-fancy-box-list.pq-style-2 .pq-fancy-box {
    padding: 0 15px;
}

.pq-fancy-box-list.pq-style-2 .pq-fancy-box .pq-fancy-box-icon {
    font-size: 60px;
    color: var(--white-color);
    line-height: 1;
    margin-bottom: 10px;
}

.pq-fancy-box-list.pq-style-2 .pq-fancy-box .pq-fancy-box-icon i {
    width: 16px;
    height: 16px;
    position: relative;
}

.pq-fancy-box-list.pq-style-2 .pq-fancy-box .pq-fancy-box-title {
    font-size: 26px;
    line-height: 34px;
    color: var(--white-color);
}

.pq-fancy-box-list.pq-style-2 .pq-fancy-box .pq-fancy-box-description {
    margin-top: 5px;
    color: var(--white-color);
    margin-bottom: 0;
}

@media(max-width:1279px) {
    .pq-fancy-box-list.pq-style-2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media(max-width:1099px) {
    .pq-fancy-box-list.pq-style-2 {
        padding: 60px 0;
    }

    .pq-fancy-box-list.pq-style-2 .pq-fancy-box {
        padding: 0;
    }
}

@media(max-width:767px) {
    .pq-fancy-box-list.pq-style-2 {
        grid-template-columns: 1fr;
    }

    .pq-fancy-box-list.pq-style-2 {
        padding: 45px 0;
    }
}

/*===== fancy-box style-3=====*/

.pq-fancy-box-info-item {
    display: grid;
    grid-template-columns: 42% 54%;
    justify-content: space-between;
}

.pq-fancy-box-style-3-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 30px;
}

.pq-fancy-box.pq-style-3 {
    padding: 30px;
    background-color: var(--grey-color);
    border-radius: var(--border-radius);
    margin-top: 30px;
    transition: var(--transition);
}

.pq-fancy-box-style-3-list .pq-fancy-box.pq-style-3.pq-active {
    background-color: var(--primary-color);
}

.pq-fancy-box.pq-style-3:nth-child(even) {
    margin-top: 0;
    margin-bottom: 30px;
}

.pq-fancy-box-info .pq-fancy-box-icon {
    font-size: 70px;
    line-height: 1;
    color: var(--primary-color);
    transition: var(--transition);
}

.pq-fancy-box-style-3-list .pq-fancy-box.pq-style-3.pq-active .pq-fancy-box-info .pq-fancy-box-icon {
    color: var(--white-color);
}

.pq-fancy-box-info .pq-fancy-box-title {
    font-size: 28px;
    line-height: 36px;
    margin-top: 15px;
    text-transform: capitalize;
    transition: var(--transition);
}

.pq-fancy-box-style-3-list .pq-fancy-box.pq-style-3.pq-active .pq-fancy-box-info .pq-fancy-box-title {
    color: var(--white-color);
}

.pq-fancy-box-info .pq-fancy-box-description {
    margin-bottom: 0;
    margin-top: 5px;
    transition: var(--transition);
}

.pq-fancy-box-style-3-list .pq-fancy-box.pq-style-3.pq-active .pq-fancy-box-info .pq-fancy-box-description {
    color: var(--white-color);
}

@media(max-width:1023px) {
    .pq-fancy-box-info-item {
        grid-template-columns: 1fr;
    }
}

@media(max-width:767px) {
    .pq-fancy-box-style-3-list {
        grid-template-columns: 1fr;
        gap: 30px 0;
    }

    .pq-fancy-box.pq-style-3 {
        background-color: var(--primary-color);
        padding: 15px;
    }

    .pq-fancy-box.pq-style-3:nth-child(even) {
        margin-bottom: 0;
    }

    .pq-fancy-box.pq-style-3 {
        margin-top: 0;
    }

    .pq-fancy-box.pq-style-3:first-child {
        margin-top: 30px;
    }

    .pq-fancy-box-style-3-list .pq-fancy-box.pq-style-3 .pq-fancy-box-info .pq-fancy-box-icon {
        color: var(--white-color);
    }

    .pq-fancy-box-style-3-list .pq-fancy-box.pq-style-3 .pq-fancy-box-info .pq-fancy-box-title {
        color: var(--white-color);
    }

    .pq-fancy-box-style-3-list .pq-fancy-box.pq-style-3 .pq-fancy-box-info .pq-fancy-box-description {
        color: var(--white-color);
    }
}

/*===== fancy-box style-4=====*/

.pq-fancy-box-style-4-list {
    margin-top: 45px;
    display: flex;
    gap: 30px;
}

.pq-fancy-box-style-4-list .pq-fancy-box.pq-style-4 {
    background-color: var(--grey-color);
    padding: 30px;
    border-radius: var(--border-radius);
}

.pq-fancy-box-style-4-list .pq-fancy-box.pq-style-4 .pq-fancy-box-info {
    display: grid;
    grid-template-columns: 1fr 4fr;
    gap: 15px;
}

.pq-fancy-box-style-4-list .pq-fancy-box.pq-style-4 .pq-fancy-box-info .pq-fancy-box-icon i {
    font-size: 64px;
}

.pq-fancy-box-style-4-list .pq-fancy-box.pq-style-4 .pq-fancy-box-info .pq-fancy-box-heading {
    margin: 0;
}

@media(max-width:1023px) {
    .pq-service-info-main .pq-service-info-title {
        font-size: 28px;
        line-height: 36px;
    }
}

@media(max-width:979px) {
    .pq-fancy-box-style-4-list {
        margin-top: 30px;
        display: grid;
        grid-template-columns: 1fr;
    }

    .pq-fancy-box-style-4-list .pq-fancy-box.pq-style-4 .pq-fancy-box-info {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }
}

@media(max-width:767px) {

    .pq-service-info-main img {
        margin-bottom: 30px;
    }

    .pq-service-item .pq-service-item-list {
        padding: 30px 15px;
    }

    .pq-service-item .pq-service-media {
        padding: 30px 15px;
    }

    .pq-service-info-main .pq-service-info-title {
        font-size: 24px;
        line-height: 32px;
    }

    .pq-fancy-box-style-4-list .pq-fancy-box.pq-style-4 {
        padding: 30px 15px;
    }
}

/*==============================================
   Testimonial
================================================*/

/*===== testimonial style-1====*/

.pq-testimonial-image-block {
    background-color: var(--primary-color);
    border-radius: var(--border-radius);
    min-height: 100%;
}

.pq-testimonial-image-block .pq-testimonial-img img {
    width: 100%;
    border-radius: 8px 8px 0 0;
}

.pq-testimonial-image-block .pq-testimonial-info {
    text-align: center;
    position: relative;
}

.pq-testimonial-image-block .pq-testimonial-info .pq-testimonial-team img {
    width: 180px;
    margin-top: -45px;
}

.pq-testimonial-image-block .pq-testimonial-info .pq-title {
    font-size: 32px;
    line-height: 40px;
    color: #FFFFFF;
    text-transform: capitalize;
    font-weight: 700;
    margin: 15px 0;
    font-family: var(--title-fonts);
}

.pq-testimonial-image-block .pq-testimonial-info .pq-star {
    color: #FFB82F;
}

.pq-testimonial-box-slider.pq-style-1 .pq-testimonial-box {
    padding: 60px;
    border-radius: var(--border-radius);
    background-color: var(--white-color);
}

.pq-testimonial-box-slider.pq-style-1 .pq-testimonial-box .pq-testimonial-decription {
    font-size: 24px;
    line-height: 1.8;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--light-black);
}

.pq-testimonial-box-slider.pq-style-1 .pq-testimonial-box .pq-testimonial-media {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.pq-testimonial-box-slider.pq-style-1 .pq-testimonial-box .pq-testimonial-media .pq-testimonial-author-img img {
    border-radius: 220px;
    max-width: 100px;
}

.pq-testimonial-box-slider.pq-style-1 .pq-testimonial-box .pq-testimonial-media .pq-testimonial-author-details .pq-testimonial-author-name {
    font-size: 32px;
    line-height: 40px;
}

.pq-testimonial-box-slider.pq-style-1 .pq-testimonial-box .pq-testimonial-media .pq-testimonial-author-details .pq-testimonial-author-designation {
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    color: var(--primary-color);
    letter-spacing: 0.04em;
    font-weight: 600;
}

.pq-testimonial-box-slider.pq-style-1 .owl-carousel .owl-dots {
    margin-top: 0;
    position: absolute;
    right: 60px;
    bottom: 120px;
    width: auto;
}

.pq-testimonial-box-slider.pq-style-1 .owl-carousel .owl-dots .owl-dot.active {
    scale: 1.2;
}

@media(max-width:1023px) {

    .pq-testimonial-image-block {
        text-align: center;
    }

    .pq-testimonial-image-block .pq-testimonial-img img {
        width: 437px;
        border-radius: var(--border-radius)
    }

    .pq-testimonial-image-block .pq-testimonial-info .pq-star {
        margin-bottom: 15px;
    }

    .pq-testimonial-box-slider.pq-style-1 .pq-testimonial-box {
        margin-top: 30px;
        padding: 60px 45px;
    }

    .pq-testimonial-box-slider.pq-style-1 .pq-testimonial-box .pq-testimonial-decription {
        font-size: 20px;
        line-height: 36px;
    }

    .pq-testimonial-box-slider.pq-style-1 .pq-testimonial-box .pq-testimonial-media .pq-testimonial-author-details .pq-testimonial-author-name {
        font-size: 24px;
        line-height: 32px;
    }
}

@media(max-width:767px) {

    .pq-testimonial-image-block .pq-testimonial-info .pq-title {
        font-size: 28px;
        line-height: 36px;
    }

    .pq-testimonial-box-slider.pq-style-1 .pq-testimonial-box {
        padding: 45px 30px;
    }
}

@media(max-width:479px) {
    .pq-testimonial-box-slider.pq-style-1 .pq-testimonial-box {
        padding: 30px 15px;
    }

    .pq-testimonial-box-slider.pq-style-1 .pq-testimonial-box .pq-testimonial-decription {
        font-size: 18px;
        line-height: 30px;
    }
}

/*=====testimonial style-2=====*/

.pq-testimonial-box-list {
    overflow: hidden;
}

.pq-testimonial-box-image {
    max-width: 80px;
    position: relative;
}

.pq-testimonial-box-image img {
    border-radius: 100%;
}

.pq-testimonial-box-image.img-2 img {
    position: absolute;
    left: 115px;
    top: 60px;
}

.pq-testimonial-box-image.img-3 img {
    position: absolute;
    top: 220px;
}

.pq-testimonial-box-image.img-4 img {
    position: absolute;
    top: 348px;
    left: 130px;
}

.pq-testimonial-box-list.pq-style-2 .pq-testimonial-box {
    text-align: -webkit-center;
    background-color: var(--grey-color);
    border-radius: var(--border-radius);
    padding: 45px;
    overflow: hidden;
}

.pq-testimonial-box-list.pq-style-2 .pq-testimonial-box .pq-testimonial-image {
    max-width: 150px;
    overflow: hidden;
}

.pq-testimonial-box-list.pq-style-2 .pq-testimonial-box .pq-testimonial-image img {
    border-radius: 100%;
    overflow: hidden;
}

.pq-testimonial-box-list.pq-style-2 .pq-testimonial-box .pq-testimonial-decription {
    font-size: 20px;
    line-height: 28px;
    font-style: italic;
    margin-top: 30px;
    overflow: hidden;
}

.pq-testimonial-box-list.pq-style-2 .pq-testimonial-box .pq-testimonial-author-name {
    font-size: 28px;
    line-height: 36px;
}

.pq-testimonial-box-list.pq-style-2 .pq-testimonial-box .pq-testimonial-author-designation {
    font-size: 16px;
    line-height: 24px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.pq-testimonial-box-image.img-5 img {
    position: absolute;
    left: 125px;
}

.pq-testimonial-box-image.img-6 img {
    position: absolute;
    top: 125px;
}

.pq-testimonial-box-image.img-7 img {
    position: absolute;
    left: 125px;
    top: 300px;
}

.pq-testimonial-box-image.img-8 img {
    position: absolute;
    top: 425px;
}

.pq-testimonial-box-list.pq-style-2 .owl-carousel .owl-dots .owl-dot {
    width: 24px;
    height: 4px;
}

@media(max-width:1365px) {
    .pq-testimonial-box-list.pq-style-2 .pq-testimonial-box {
        padding: 45px 0;
    }

    .pq-testimonial-box-image.img-4 img {
        left: 110px;
    }
}

@media(max-width:1279px) {

    .pq-testimonial-box-image {
        display: none;
    }

    .pq-testimonial-box-list.pq-style-2 .pq-testimonial-box {
        padding: 45px 30px;
    }
}

@media(max-width:767px) {
    .pq-testimonial-box-list.pq-style-2 .pq-testimonial-box {
        padding: 30px 15px;
    }

    .pq-testimonial-box-list.pq-style-2 .pq-testimonial-box .pq-testimonial-author-name {
        font-size: 24px;
        line-height: 32px;
    }
}

/*==============================================
   OWL Carousel
================================================*/

.owl-carousel .owl-nav.disabled {
    display: none;
}

.owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    cursor: inherit;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    outline: none;
    text-align: center;
    text-indent: inherit;
    cursor: pointer;
    position: relative;
    font-size: 24px;
    width: 56px;
    height: 56px;
    line-height: 56px;
    background: var(--primary-color);
    padding: 0 !important;
    margin: 0 5px;
    border: none;
    color: var(--white-color);
}

.owl-carousel .owl-nav button:hover {
    color: var(--white-color);
    background: var(--dark-color);
}

.pq-dark-bg .owl-carousel .owl-nav button:hover {
    color: var(--primary-color);
    background: var(--white-color);
}

.owl-carousel .owl-nav button.owl-prev {
    margin-left: -100px;
}

.owl-carousel .owl-nav button.owl-next {
    margin-right: -100px;
}

/*===== Dots =====*/

.owl-carousel .owl-dots.disabled {
    display: none;
}

.owl-carousel .owl-dots {
    margin-top: 30px;
    line-height: normal;
    position: relative;
    width: 100%;
    text-indent: inherit;
    text-align: center;
    cursor: pointer;
}

.owl-carousel .owl-dots .owl-dot {
    box-shadow: none;
    outline: none;
    background: var(--grey-color);
    border: 1px solid var(--grey-color);
    display: inline-block;
    padding: 0;
    margin: 0px 5px;
    height: 15px;
    width: 15px;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    cursor: pointer;
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
}

.owl-carousel .owl-dots .owl-dot span {
    display: none;
}

.owl-carousel .owl-dots .owl-dot:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    opacity: 1;
}

.owl-carousel .owl-dots .owl-dot.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    opacity: 1;
}

/*==============================================
   Form
================================================*/

/*=====Form=====*/

.pq-contact-us.style-1 .pq-contact-us-info .pq-contact-us-form .form-control {
    border: 1px solid #0000001F;
}

.pq-contact-us.style-1 .pq-contact-us-info .pq-contact-us-form .form-control:focus {
    background-color: var(--grey-color);
    box-shadow: none;
}

.pq-contact-us.style-1 .pq-contact-us-info .pq-contact-us-form .form-control.bg-grey {
    background-color: var(--grey-color);
    border-radius: var(--border-radius);
}

.form-control.submit {
    background-color: var(--primary-color);
    margin-top: 30px;
    color: var(--white-color);
    text-transform: uppercase;
    height: 60px;
    border-radius: 110px;
    max-width: 200px;
    font-size: 18px;
}

.form-control.submit:hover {
    background-color: var(--dark-color);
    transition: var(--transition);
}

/*==============================================
   contact us
================================================*/

/*=====contact-us style-1=====*/

.pq-contact-us.style-1 {
    display: grid;
    grid-template-columns: 45% 55%;
}

.pq-contact-us.style-1 .pq-contact-us-info .pq-contact-us-form {
    margin-top: 60px;
}

@media (max-width: 1023px) {
    .pq-contact-us.style-1 {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .pq-contact-us.style-1 .pq-contact-us-info .pq-contact-us-form {
        margin-top: 45px;
    }
}

@media(max-width:767px) {
    .pq-contact-us.style-1 .pq-contact-us-info .pq-contact-us-form {
        margin-top: 30px;
    }
}

/*=====contact-us =====*/

.pq-contact-info.pq-style-1 .pq-contact-item {
    background-color: var(--grey-color);
    padding: 45px 30px;
    border-radius: var(--border-radius);
}

.pq-contact-item .pq-contact-content {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.pq-contact-item .pq-contact-content .pq-contact-icon {
    color: var(--primary-color);
    font-size: 32px;
}

.pq-contact-item .pq-contact-content .pq-contact-title .pq-contact-sub-title {
    color: var(--primary-color);
    font-size: 24px;
}

.pq-contact-item .pq-contact-content .pq-contact-title .pq-contact-detail {
    margin-bottom: 0;
}

.pq-contact-item .pq-contact-content .pq-contact-title .pq-contact-detail a {
    color: inherit;
}

.pq-contact-map {
    width: 100%;
    height: 100%;
}

.pq-contact-map iframe {
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
}

@media(max-width:1023px) {
    .pq-contact-info.pq-style-1 {
        margin-bottom: 30px;
    }
}

@media(max-width:767px) {
    .pq-contact-info.pq-style-1 .pq-contact-item {
        padding: 30px 15px;
    }
}

/*===== style-2 =====*/

.pq-contact-us-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: center;
}

.pq-contact-info.style-2 {
    background-color: var(--primary-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.pq-contact-info.style-2 .pq-contact-inner-image img {
    border-radius: var(--border-radius);
}

.pq-contact-info.style-2 .pq-contact-list {
    padding: 45px 30px;
}

.pq-contact-info.style-2 .pq-contact-list .pq-contact-contain:first-child {
    margin-top: 0;
}

.pq-contact-info.style-2 .pq-contact-list .pq-contact-contain {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--light-white);
}

.pq-contact-info.style-2 .pq-contact-list .pq-contact-contain:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.pq-contact-info.style-2 .pq-contact-list .pq-contact-contain .pq-contact-i-con {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    font-size: 24px;
    text-align: center;
    align-content: center;
    background-color: var(--white-color);
}

.pq-contact-info.style-2 .pq-contact-list .pq-contact-contain .pq-contact-details .pq-contact-title {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--white-color);
    letter-spacing: 0.04em;
    margin-bottom: 5px;
}

.pq-contact-info.style-2 .pq-contact-list .pq-contact-contain .pq-contact-details .pq-contact-description {
    margin-bottom: 0;
}

.pq-contact-info.style-2 .pq-contact-list .pq-contact-contain .pq-contact-details .pq-contact-description a {
    font-size: 22px;
    line-height: 30px;
    font-weight: 600;
    color: var(--white-color);
}

@media(max-width:1279px) {
    .pq-contact-us-details {
        grid-template-columns: 1fr;
        gap: 45px;
        align-items: center;
    }

    .pq-contact-info.style-2 .pq-contact-inner-image img {
        width: 100%;
        object-fit: cover;
    }
}

@media(max-width:767px) {
    .pq-contact-info.style-2 .pq-contact-list {
        padding: 30px 15px;
    }

    .pq-contact-info.style-2 .pq-contact-list .pq-contact-contain {
        display: grid;
        grid-template-columns: 1fr;
    }
}

/*==============================================
   client
================================================*/

/*===== client style-1 =====*/

.pq-client-box-style-1 {
    padding-top: 45px;
}

.pq-client-box-style-1 .pq-client-box {
    border: 1px solid var(--light-black);
    width: auto;
    height: 160px;
    transition: var(--transition);
    border-radius: var(--border-radius);
    display: block;
    overflow: hidden;
    position: relative;

}

.pq-client-box-style-1 .pq-client-box:hover {
    border: 1px solid var(--primary-color);
    background-color: var(--primary-color);
}

.pq-client-box-style-1 .pq-client-box .pq-client-image {
    filter: grayscale(100%) brightness(60%) contrast(125%);
    width: 120px;
    height: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition);
}

.pq-client-box-style-1 .pq-client-box:hover .pq-client-image {
    filter: initial;
}

@media(max-width:767px) {

    .pq-client-box-style-1 {
        padding-top: 30px;
        align-items: center;
        align-content: center;
    }
}

/*===== client style-2 =====*/

.pq-client-box-style-1.client {
    margin-top: 60px;
    padding-top: 0;
}

.pq-client-box-style-1.client .pq-client-box-border {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 45px;
}

.pq-client-box-style-1.client .pq-client-box-border::before {
    content: " ";
    border-bottom: 1px solid var(--light-black);
    width: 100%;
    position: absolute;
    top: 15px;
    left: 0;
}

.pq-client-box-style-1.client .pq-client-box-title {
    text-align: center;
    font-size: 20px;
    line-height: 28px;
    text-transform: capitalize;
    color: var(--primary-color);
    font-family: var(--title-fonts);
    font-weight: 400;
    position: relative;
    text-decoration: none;
    display: inline;
    padding: 0 10px 0 10px;
    background-color: var(--grey-color);
}

@media(max-width:767px) {
    .pq-client-box-style-1.client {
        padding-top: 0;
        margin-top: 30px;
    }

    .pq-client-box-style-1.client .pq-client-box-border {
        margin-bottom: 30px;
    }
}

/*===== client style-3 =====*/

.pq-client-box-list.style-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    text-align: center;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--light-black);
}

.pq-client-box-list.style-3 .pq-client-box.pq-style-2 {
    width: 100%;
    height: 210px;
    margin: 0 auto;
    display: block;
    overflow: hidden;
    align-content: center;
    transition: var(--transition);
    border: 1px solid var(--light-black);
}

.pq-client-box.pq-style-2.pq-active {
    background-color: var(--primary-color);
    border: 1px solid var(--light-black);
}

.pq-client-box-list.style-3 .pq-client-box.pq-style-2.pq-active .pq-client-image img {
    filter: initial;
}

.pq-client-box-list.style-3 .pq-client-box.pq-style-2 .pq-client-image img {
    width: 120px;
    height: auto;
    filter: brightness(0) saturate(100%) invert(23%) sepia(62%) saturate(418%) hue-rotate(106deg) brightness(100%) contrast(93%);
    transition: var(--transition);
}

@media(max-width:767px) {
    .pq-client-box-list.style-3 {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:479px) {
    .pq-client-box-list.style-3 {
        grid-template-columns: 1fr;
    }
}

/*==============================================
   Map Box
================================================*/

/*===== map box style-1=====*/

.pq-map-box.pq-style-1 {
    position: relative;
}

.pq-map-box.pq-style-1>img {
    opacity: 0.2;
}

.pq-map-box.pq-style-1 .pq-map-box-list {
    display: inline-flex;
}

.pq-map-box.pq-style-1 .pq-map-box-list .pq-map-media img {
    border-radius: 200px;
    object-fit: cover;
    border: 1px solid var(--primary-color);
    transform: scale(0) translateY(-30px);
    width: 100px;
    position: relative;
    top: 0;
    right: 50%;
}

.pq-map-box.pq-style-1 .pq-map-box-list.pq-active .pq-map-media img {
    transform: scale(1) translateY(-30px);
    transition: var(--transition);
}

.pq-map-box.pq-style-1 .pq-map-box-list .pq-map-box-icon {
    font-size: 24px;
    color: var(--dark-color);
    transition: var(--transition);
}

.pq-map-box.pq-style-1 .pq-map-box-list:nth-child(2) {
    top: 27%;
    left: 16%;
    position: absolute;
}

.pq-map-box.pq-style-1 .pq-map-box-list:nth-child(3) {
    top: 0;
    left: 37%;
    position: absolute;
}

.pq-map-box.pq-style-1 .pq-map-box-list:nth-child(4) {
    top: 63%;
    left: 30%;
    position: absolute;
}

.pq-map-box.pq-style-1 .pq-map-box-list:nth-child(5) {
    top: 52%;
    left: 51%;
    position: absolute;
}

.pq-map-box.pq-style-1 .pq-map-box-list:nth-child(6) {
    top: 19%;
    left: 71%;
    position: absolute;
}

.pq-map-box.pq-style-1 .pq-map-box-list:nth-child(7) {
    top: 40%;
    left: 81%;
    position: absolute;
}

@media(max-width:1023px) {
    .pq-map-box.pq-style-1 {
        margin-top: 45px;
    }
}

@media (max-width: 767px) {
    .pq-map-box.pq-style-1 .pq-map-box-list .pq-map-media img {
        display: none;
    }
}

/*======map-box style-2==========*/

.pq-contact-us-map {
    padding: 130px 0;
}

.pq-contact-map.style-2 iframe {
    width: 100%;
    height: 500px;
    border-radius: var(--border-radius);
}

@media(max-width:1023px) {
    .pq-contact-map.style-2 iframe {
        height: 400px;
    }

    .pq-contact-us-map {
        padding: 90px 0;
    }
}

@media(max-width:767px) {
    .pq-contact-map.style-2 iframe {
        height: 300px;
    }

    .pq-contact-us-map {
        padding: 60px 0;
    }
}

/*==============================================
   Pagination
================================================*/

.pq-pagination {
    margin-top: 45px;
}

.pq-pagination .page-numbers {
    display: flex;
    gap: 15px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.pq-pagination .page-numbers li .page-numbers {
    width: 50px;
    height: 50px;
    padding: 0 15px;
    border-radius: 100%;
    justify-content: center;
    color: var(--white-color);
    background-color: var(--dark-color);
}

.pq-pagination .page-numbers li .page-numbers.current {
    background-color: var(--primary-color);
}

.pq-pagination .page-numbers li .page-numbers:hover {
    background-color: var(--primary-color);
}

.pq-pagination .page-numbers li .next {
    width: auto;
    padding: 0 20px;
    border-radius: 100px;
    text-transform: capitalize;
}

@media(max-width:1023px) {
    .pq-pagination {
        margin-bottom: 30px;
    }
}

@media(max-width:979px) {
    .pq-pagination {
        margin-top: 30px;
    }
}

/*==============================================
   Service Single
================================================*/

.pq-service-item .pq-service-item-list {
    padding: 30px;
    margin-bottom: 30px;
    border-radius: var(--border-radius);
    background-color: var(--grey-color);
}

.pq-service-item .pq-service-item-list .pq-service-item-title {
    display: flex;
    padding: 15px;
    margin-bottom: 10px;
    align-items: center;
    justify-content: space-between;
    border-radius: var(--border-radius);
    background-color: var(--white-color);
}

.pq-service-item .pq-service-item-list .pq-service-item-title:last-child {
    margin-bottom: 0;
}

.pq-service-item .pq-service-item-list .pq-service-item-title.current-menu-item {
    background-color: var(--primary-color);
}

.pq-service-item .pq-service-item-list .pq-service-item-title.current-menu-item a {
    color: var(--white-color);
}

.pq-service-item .pq-service-item-list .pq-service-item-title:hover {
    background-color: var(--primary-color);
    transition: var(--transition);
}

.pq-service-item .pq-service-item-list .pq-service-item-title:hover a {
    color: var(--white-color);
    transition: var(--transition);
}

.pq-service-item .pq-service-item-list .pq-service-item-title a {
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    color: var(--dark-color);
}

.pq-service-item .pq-service-item-list .pq-service-item-title i {
    font-size: 16px;
    line-height: 24px;
    transform: rotate(270deg);
    text-transform: uppercase;
    color: var(--dark-color);
}

.pq-service-item .pq-service-item-list .pq-service-item-title.current-menu-item i {
    color: var(--white-color);
}

.pq-service-item .pq-service-item-list .pq-service-item-title:hover i {
    color: var(--white-color);
    transition: var(--transition);
}

.pq-service-item .pq-service-media {
    padding: 30px;
    text-align: center;
    border-radius: var(--border-radius);
    background-color: var(--grey-color);
}

.pq-service-item .pq-service-media img {
    border-radius: var(--border-radius);
}

.pq-service-info-main img {
    border-radius: var(--border-radius);
    margin-bottom: 45px;
}

.pq-service-info-main .pq-service-info-title {
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 20px;
}

.pq-service-info-main .pq-service-info-description {
    padding-bottom: 45px;
}

.pq-service-info-main .pq-service-info-description p {
    margin-bottom: 15px;
}

.pq-service-info-main .pq-service-info-description p:last-child {
    margin-bottom: 0;
}

.pq-service-details .pq-service-contain-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    margin-bottom: 45px;
}

.pq-service-details .pq-service-info-title {
    margin-bottom: 15px;
}

.pq-service-details .pq-service-info-description {
    margin-bottom: 15px;
}

.pq-service-details .pq-service-info-description:last-child {
    margin-bottom: 0;
}

.pq-service-details .pq-growix-list .pq-growix-list-item {
    margin: 0;
    padding: 0;
}

.pq-service-details .pq-growix-list .pq-growix-list-item li {
    display: flex;
    gap: 15px;
    padding-bottom: 5px;
}

.pq-service-details .pq-growix-list .pq-growix-list-item li:last-child {
    padding-bottom: 0;
}

.pq-service-details .pq-growix-list .pq-growix-list-item .pq-growix-list-icon {
    font-size: 18px;
    color: var(--primary-color);
}

.pq-service-details img {
    border-radius: var(--border-radius);
}

@media(max-width:1023px) {
    .pq-service-info-main {
        margin-top: 45px;
    }
}

@media(max-width:979px) {
    .pq-service-details .pq-service-contain-info {
        grid-template-columns: 1fr;
        margin-bottom: 45px;
        justify-items: left;
    }

    .pq-service-info-main .pq-service-info-description {
        padding-bottom: 30px;
    }

    .pq-service-details .pq-service-contain-info .pq-growix-list {
        margin-top: 30px;
    }
}

@media(max-width:767px) {
    .pq-service-item .pq-service-item-list {
        padding: 30px 15px;
    }

    .pq-service-item .pq-service-media {
        padding: 30px 15px;
    }
}

/*==============================================
   Card
================================================*/

/*===== card style-1=====*/

.pq-cards {
    width: 100%;
    display: grid;
    grid-template-rows: repeat(var(--cards-count), var(--card-height));
    gap: 30px 0;
}

.pq-cards .pq-card.pq-style-1 {
    position: sticky;
    top: 130px;
}

.pq-cards .pq-card.pq-style-1 .pq-card-inner {
    will-change: transform;
    background: var(--grey-color);
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px hsla(265.3, 20%, 10%, 10%);
    transform-origin: center top;
    align-items: center;
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
}

.pq-cards .pq-card.pq-style-1 .pq-card-inner .pq-card-image {
    height: 100%;
    width: 100%;
}

.pq-cards .pq-card.pq-style-1 .pq-card-inner .pq-card-image .pq-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 5 / 4;
}

.pq-cards .pq-card.pq-style-1 .pq-card-inner .pq-card-content {
    padding: 60px;
}

.pq-cards .pq-card.pq-style-1 .pq-card-inner .pq-card-content .pq-card-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.pq-cards .pq-card.pq-style-1 .pq-card-inner .pq-card-content .pq-card-top .pq-card-icon {
    font-size: 80px;
    line-height: 1;
    color: var(--primary-color);
}

.pq-cards .pq-card.pq-style-1 .pq-card-inner .pq-card-content .pq-card-top .pq-card-number {
    font-size: 80px;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke-width: 1px;
    stroke-width: 1px;
    -webkit-text-stroke-color: var(--primary-color);
    stroke: var(--primary-color);
}

.pq-cards .pq-card.pq-style-1 .pq-card-inner .pq-card-content .pq-card-title {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 5px;
}

.pq-cards .pq-card.pq-style-1 .pq-card-inner .pq-card-content .pq-card-description {
    margin-bottom: 0;
}

@media(max-width:767px) {

    .pq-cards .pq-card.pq-style-1 {
        position: relative;
        top: inherit;
        padding-top: 0 !important;
        margin: 0;
    }

    .pq-cards .pq-card.pq-style-1 .pq-card-inner {
        grid-template-columns: 1fr;
        scale: 1 !important;
        filter: brightness(1) !important;
        box-shadow: none;
    }

    .pq-cards .pq-card.pq-style-1 .pq-card-inner .pq-card-content .pq-card-top .pq-card-icon {
        font-size: 64px;
    }

    .pq-cards .pq-card.pq-style-1 .pq-card-inner .pq-card-content .pq-card-top .pq-card-number {
        font-size: 64px;
    }

    .pq-cards .pq-card.pq-style-1 .pq-card-inner .pq-card-content {
        padding: 30px 15px;
    }
}

@media(max-width:479px) {
    .pq-cards .pq-card.pq-style-1 .pq-card-inner .pq-card-content .pq-card-title {
        font-size: 24px;
        line-height: 32px;
    }
}

@media(max-width:479px) {
    .pq-cards .pq-card.pq-style-1 .pq-card-inner .pq-card-content .pq-card-top .pq-card-icon {
        font-size: 56px;
    }

    .pq-cards .pq-card.pq-style-1 .pq-card-inner .pq-card-content .pq-card-top .pq-card-number {
        font-size: 56px;
    }
}

/*==============================================
    Pricing Plan
================================================*/

/*====pricing box style-1=====*/

.pq-pricing-box.pq-style-1 {
    display: grid;
    grid-template-columns: auto 1fr 3fr auto;
    gap: 90px;
    padding: 45px 30px;
    border-top: 1px solid var(--light-white);
    align-items: center;
    border-radius: var(--border-radius);
}

.pq-pricing-box.pq-style-1:last-child {
    border-bottom: 1px solid var(--light-white);
}

.pq-pricing-box.pq-style-1.pq-active {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
}

.pq-pricing-box.pq-style-1 .pq-pricing-box-icon {
    font-size: 70px;
    color: var(--white-color);
    line-height: 1;
    transition: var(--transition);
}

.pq-pricing-box.pq-style-1.pq-active .pq-pricing-box-icon {
    color: var(--primary-color);
}

.pq-pricing-box.pq-style-1 .pq-price-content .pq-price-title {
    color: var(--white-color);
    text-transform: uppercase;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    margin: 0;
    transition: var(--transition);
    letter-spacing: 1px;
}

.pq-pricing-box.pq-style-1.pq-active .pq-price-content .pq-price-title {
    color: var(--primary-color);
}

.pq-pricing-box.pq-style-1 .pq-price-content .pq-price-number {
    color: var(--white-color);
    font-size: 44px;
    line-height: 52px;
    transition: var(--transition);
}

.pq-pricing-box.pq-style-1.pq-active .pq-price-content .pq-price-number {
    color: var(--dark-color);
}

.pq-pricing-box-list-detail .pq-pricing-box-list-title {
    font-size: 28px;
    line-height: 36px;
    color: var(--white-color);
    transition: var(--transition);
}

.pq-pricing-box.pq-style-1.pq-active .pq-pricing-box-list-detail .pq-pricing-box-list-title {
    color: var(--dark-color);
}

.pq-pricing-box-list-detail .pq-price-decription {
    color: var(--white-color);
    max-width: 550px;
    margin-top: 5px;
    margin-bottom: 0;
}

.pq-pricing-box.pq-style-1.pq-active .pq-pricing-box-list-detail .pq-price-decription {
    color: var(--secondary-color);
}

.pq-pricing-box .pq-icon-button a {
    background-color: var(--primary-color);
    color: var(--white-color);
    transition: var(--transition);
    border-color: var(--white-color);
}

.pq-pricing-box.pq-style-1.pq-active .pq-icon-button a {
    background-color: var(--primary-color);
    transition: var(--transition);
}

.pq-pricing-box.pq-style-1.pq-active .pq-icon-button a:hover {
    background-color: var(--dark-color);
    transition: var(--transition);
}

@media (max-width: 1023px) {
    .pq-pricing-box-list-detail .pq-pricing-box-list-title {
        font-size: 24px;
        line-height: 32px;
    }
}

@media(max-width:979px) {
    .pq-pricing-box.pq-style-1 {
        gap: 45px;
    }
}

@media(max-width:767px) {
    .pq-pricing-box.pq-style-1 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        border: 1px solid var(--light-white);
        margin-bottom: 20px;
        padding: 30px 15px;
    }

    .pq-pricing-box.pq-style-1:last-child {
        margin-bottom: 0;
    }

    .pq-pricing-box.pq-style-1 .pq-price-content .pq-price-number {
        font-size: 40px;
        line-height: 48px;
    }
}

/*====pricing-box style-2=====*/

.pq-pricing-box.pq-style-2 {
    padding: 45px 30px;
}

.pq-pricing-box.pq-style-2.pq-active {
    background-color: var(--primary-color);
    border-radius: var(--border-radius);
}

.pq-pricing-box.pq-style-2 {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
}

.pq-pricing-box.pq-style-2.pq-bg-grey {
    background-color: var(--grey-color);
}

.pq-pricing-box.pq-style-2 .pq-price-title {
    font-size: 40px;
    line-height: 48px;
}

.pq-pricing-box.pq-style-2.pq-active .pq-price-title {
    color: var(--white-color);
}

.pq-pricing-box.pq-style-2 .pq-pricing-list {
    padding: 0;
    margin-top: 20px;
}

.pq-pricing-box.pq-style-2 .pq-pricing-list {
    padding: 0;
    margin-top: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.pq-pricing-box.pq-style-2.pq-active .pq-pricing-list {
    border-bottom: 1px solid var(--light-white);
}

.pq-pricing-box.pq-style-2 .pq-pricing-list {
    border-bottom: 1px solid var(--light-black);
}


.pq-pricing-box.pq-style-2 .pq-pricing-list .pq-pricing-item {
    font-size: 18px;
}

.pq-pricing-box.pq-style-2.pq-active .pq-pricing-list .pq-pricing-item {
    color: var(--white-color);
}

.pq-pricing-box.pq-style-2.pq-active .pq-pricing-list .pq-pricing-item i {
    padding-right: 5px;
}

.pq-pricing-box.pq-style-2 .pq-price .pq-pricing-amount {
    font-size: 52px;
    line-height: 60px;
    font-weight: 700;
    color: var(--dark-color);
    font-family: var(--title-fonts);
}

.pq-pricing-box.pq-style-2.pq-active .pq-price .pq-pricing-amount {
    color: var(--white-color);
}

.pq-pricing-box.pq-style-2 .pq-price .pq-pricing-duration {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: var(--title-fonts);
}

.pq-pricing-box.pq-style-2.pq-active .pq-price .pq-pricing-duration {
    color: var(--white-color);
}

.pq-pricing-box.pq-style-2 .pq-price .pq-pricing-duration {
    color: var(--primary-color);
}

.pq-pricing-box.pq-style-2 .pq-button-container {
    margin-top: 20px;
}

@media(max-width:1099px) {
    .pq-pricing-box.pq-style-2 {
        margin-top: 30px;
    }
}

@media(max-width:767px) {
    .pq-pricing-box.pq-style-2 {
        padding: 30px 15px;
    }

    .pq-pricing-box.pq-style-2 .pq-price-title {
        font-size: 36px;
        line-height: 44px;
    }
}

/*==============================================
   Award
================================================*/

.pq-our-award-info {
    display: grid;
    grid-template-columns: 41% 54%;
    justify-content: space-between;
}

.pq-award-box.pq-style-1 .pq-award {
    margin-bottom: 45px;
}

.pq-award-box.pq-style-1 .pq-award:last-child {
    margin-bottom: 0;
}

.pq-award .pq-award-box-top {
    display: flex;
    gap: 60px;
}

.pq-award .pq-award-box-top .pq-award-info .pq-award-title {
    font-size: 28px;
    line-height: 36px;
}

.pq-award .pq-award-box-top .pq-award-info .pq-award-description {
    margin-top: 5px;
    margin-bottom: 15px;
}

@media(max-width:1279px) {
    .pq-award .pq-award-box-top {
        gap: 30px;
    }
}

@media(max-width:1023px) {
    .pq-our-award-info {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media(max-width:1099px) {
    .pq-award .pq-award-box-top .pq-award-info .pq-award-title {
        font-size: 24px;
        line-height: 32px;
    }
}

@media(max-width:767px) {
    .pq-our-award-info {
        gap: 30px;
    }

    .pq-award .pq-award-box-top {
        display: grid;
        grid-template-columns: 1fr;
        border-bottom: 1px solid var(--light-black);
        padding-bottom: 30px;
        gap: 20px;
    }

    .pq-award:last-child .pq-award-box-top {
        border-bottom: none;
        padding-bottom: 0;
    }

    .pq-award-box.pq-style-1 .pq-award {
        margin-bottom: 30px;
    }

    .pq-award .pq-award-box-top .pq-award-image {
        width: 120px;
    }
}

/*==============================================
   Counter
================================================*/

/*===== counter style-1=====*/

.pq-skill {
    padding: 390px 0 130px 0;
    margin-top: -260px;
}

.pq-counter.pq-style-1 {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.pq-counter.pq-style-1 .pq-counter-info {
    border: 1px solid var(--light-black);
    border-radius: 100%;
    width: 300px;
    height: 300px;
    justify-items: center;
    transition: var(--transition);
    align-content: center;
}

.pq-counter.pq-style-1 .pq-counter-info.pq-active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transition: var(--transition);
}

.pq-counter.pq-style-1 .pq-counter-info .pq-count-number {
    display: flex;
}

.pq-counter.pq-style-1 .pq-counter-info .pq-count-number .pq-count {
    font-size: 100px;
    line-height: 108px;
    color: var(--dark-color);
    transition: var(--transition);
}

.pq-counter.pq-style-1 .pq-counter-info.pq-active .pq-count-number .pq-count {
    color: var(--white-color);
    transition: var(--transition);
}

.pq-counter.pq-style-1 .pq-counter-info .pq-count-number h3 {
    font-size: 100px;
    line-height: 108px;
    color: var(--dark-color);
    transition: var(--transition);
}

.pq-counter.pq-style-1 .pq-counter-info.pq-active .pq-count-number h3 {
    color: var(--white-color);
    transition: var(--transition);
}

.pq-counter.pq-style-1 .pq-counter-info .pq-counter-icon-info {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
    align-items: center;
}

.pq-counter.pq-style-1 .pq-counter-info .pq-counter-icon-info .pq-counter-icon {
    font-size: 24px;
    line-height: 1;
    color: var(--primary-color);
    transition: var(--transition);
}

.pq-counter.pq-style-1 .pq-counter-info.pq-active .pq-counter-icon-info .pq-counter-icon {
    font-size: 24px;
    line-height: 1;
    color: var(--white-color);
}

.pq-counter.pq-style-1 .pq-counter-info .pq-counter-icon-info .pq-counter-description {
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    color: var(--primary-color);
    transition: var(--transition);
    margin-bottom: 0;
    letter-spacing: 1px;
}

.pq-counter.pq-style-1 .pq-counter-info.pq-active .pq-counter-icon-info .pq-counter-description {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white-color);
}

@media(max-width:1023px) {
    .pq-skill {
        padding: 390px 0 90px 0;
    }

    .pq-counter.pq-style-1 .pq-counter-info {
        width: 250px;
        height: 250px;
        background-color: var(--primary-color);
        border-color: var(--primary-color);
    }

    .pq-counter.pq-style-1 .pq-counter-info .pq-count-number .pq-count {
        font-size: 84px;
        line-height: 92px;
        color: var(--white-color);
    }

    .pq-counter.pq-style-1 .pq-counter-info .pq-count-number h3 {
        font-size: 84px;
        line-height: 92px;
        color: var(--white-color);
    }

    .pq-counter.pq-style-1 .pq-counter-info .pq-counter-icon-info {
        grid-template-columns: 1fr;
        display: grid;
        justify-items: center;
        margin-top: 10px;
        gap: 10px;
    }

    .pq-counter.pq-style-1 .pq-counter-info .pq-counter-icon-info .pq-counter-icon {
        color: var(--white-color);
    }

    .pq-counter.pq-style-1 .pq-counter-info .pq-counter-icon-info .pq-counter-description {
        color: var(--white-color);
    }
}

@media(max-width:767px) {
    .pq-skill {
        padding: 310px 0 60px 0;
    }

    .pq-counter.pq-style-1 .pq-counter-info .pq-count-number .pq-count {
        font-size: 70px;
        line-height: 78px;
    }

    .pq-counter.pq-style-1 .pq-counter-info .pq-count-number h3 {
        font-size: 70px;
        line-height: 78px;
    }
}

/*===== counter style-2=====*/

.pq-counter.pq-style-2 {
    border-top: 1px solid var(--light-black);
    display: flex;
}

.pq-counter.pq-style-2 .pq-counter-info:first-child {
    border-left: none;
    padding-left: 0;
}

.pq-counter.pq-style-2 .pq-counter-info {
    border-left: 1px solid var(--light-black);
    padding: 20px 15px 20px 15px;
}

.pq-counter.pq-style-2 .pq-counter-info .pq-counter-title {
    text-transform: uppercase;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    letter-spacing: 1px;
}

.pq-counter.pq-style-2 .pq-counter-info .pq-count-number {
    display: flex;
}

.pq-counter.pq-style-2 .pq-counter-info .pq-count-number .pq-count {
    font-size: 48px;
    line-height: 56px;
    color: var(--primary-color);
}

.pq-counter.pq-style-2 .pq-counter-info .pq-count-number .pq-counter-prefix-icon {
    font-size: 48px;
    line-height: 56px;
    color: inherit;
}

@media(max-width:767px) {

    .pq-counter.pq-style-2 {
        display: block;
        border-top: none;
    }

    .pq-counter.pq-style-2 .pq-counter-info {
        padding: 0;
        border-left: none;
        border-bottom: 1px solid var(--light-black);
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .pq-counter.pq-style-2 .pq-counter-info:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .pq-counter.pq-style-2 .pq-counter-info .pq-count-number .pq-count {
        font-size: 40px;
        line-height: 48px;
    }

    .pq-counter.pq-style-2 .pq-counter-info .pq-count-number .pq-counter-prefix-icon {
        font-size: 40px;
        line-height: 48px;
    }
}

/*===== counter style-3=====*/

.pq-counter.pq-style-3 {
    margin-top: 45px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.pq-counter.pq-style-3 .pq-counter-info {
    display: grid;
    grid-template-columns: 125px 1fr;
    gap: 15px;
}

.pq-counter.pq-style-3 .pq-counter-info .pq-count-number {
    display: flex;
    width: 120px;
    height: 120px;
    border: 4px solid var(--primary-color);
    border-radius: 100%;
    justify-content: center;
    align-items: center;
}

.pq-counter.pq-style-3 .pq-counter-info .pq-counter-content .pq-counter-description {
    margin-bottom: 0;
}

@media(max-width:1099px) {
    .pq-counter.pq-style-3 {
        grid-template-columns: 1fr 1fr;
        margin-top: 30px;
    }
}

@media(max-width:767px) {
    .pq-counter.pq-style-3 {
        grid-template-columns: 1fr;
    }

    .pq-counter.pq-style-3 .pq-counter-info {
        grid-template-columns: 1fr;
    }
}

/*==============================================
   FAQ
================================================*/

/*=====style-1=====*/

.pq-accordion .pq-accordion-box {
    padding: 30px 100px 30px 45px;
    position: relative;
    border-bottom: 1px solid var(--light-black);
}

.pq-accordion .pq-accordion-box.pq-active {
    background-color: var(--grey-color);
    border-radius: var(--border-radius);
    border: none;
}

.pq-accordion.pq-style-1 .pq-accordion-box .pq-accordion-title-info {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 60px;
}

.pq-accordion.pq-style-1 .pq-accordion-box .pq-accordion-title-info .pq-accordion-number {
    font-size: 20px;
    line-height: 32px;
    font-weight: 600;
    color: var(--dark-color);
    font-family: var(--title-fonts);
}

.pq-accordion.pq-style-1 .pq-accordion-box .pq-accordion-title-info .pq-accordion-title {
    margin-bottom: 15px;
}

.pq-accordion .pq-accordion-box .pq-accordion-title-info .pq-accordion-title i {
    position: absolute;
    right: 50px;
    top: 30px;
    width: 44px;
    height: 44px;
    font-size: 18px;
    line-height: 44px;
    border: 1px solid var(--dark-color);
    border-radius: 100%;
    text-align: center;
    align-content: center;
    transition: var(--transition);
}

.pq-accordion .pq-accordion-box .pq-accordion-title-info .pq-accordion-title .active {
    display: block;
}

.pq-accordion .pq-accordion-box.pq-active .pq-accordion-title-info .pq-accordion-title .active {
    display: none;
}

.pq-accordion .pq-accordion-box .pq-accordion-title-info .pq-accordion-title .inactive {
    display: none;
}

.pq-accordion .pq-accordion-box.pq-active .pq-accordion-title-info .pq-accordion-title .inactive {
    display: block;
}

.pq-accordion .pq-accordion-box .pq-accordion-details .pq-accordion-text {
    margin-bottom: 0;
    margin-left: 140px;
    max-width: 710px;
    display: none;
    transition: var(--transition);
}

.pq-accordion .pq-accordion-box.pq-active .pq-accordion-details .pq-accordion-text {
    display: block;
}

@media(max-width:1099px) {
    .pq-accordion.pq-style-1 .pq-accordion-box .pq-accordion-title-info {
        grid-template-columns: 45px 1fr;
        gap: 45px;
    }

    .pq-accordion .pq-accordion-box .pq-accordion-details .pq-accordion-text {
        margin-left: 90px;
    }
}

@media(max-width:979px) {
    .pq-accordion .pq-accordion-box {
        margin-bottom: 15px;
    }
}

@media(max-width:767px) {
    .pq-accordion .pq-accordion-box {
        padding: 30px 90px 30px 30px;
    }

    .pq-accordion.pq-style-1 .pq-accordion-box .pq-accordion-title-info {
        grid-template-columns: 30px 1fr;
        gap: 15px;
    }

    .pq-accordion .pq-accordion-box .pq-accordion-details .pq-accordion-text {
        margin-left: 45px;
    }

    .pq-accordion .pq-accordion-box .pq-accordion-title-info .pq-accordion-title i {
        right: 30px;
    }
}

@media(max-width:479px) {

    .pq-accordion .pq-accordion-box {
        padding: 30px 15px;
    }

    .pq-accordion.pq-style-1 .pq-accordion-box .pq-accordion-title-info {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .pq-accordion .pq-accordion-box .pq-accordion-title-info .pq-accordion-title i {
        right: 15px;
        top: 18px;
    }

    .pq-accordion .pq-accordion-box .pq-accordion-details .pq-accordion-text {
        margin-left: 0;
    }
}

/*==============================================
   404
================================================*/

.pq-error-block {
    text-align: center;
}

.pq-error-block .pq-error-title {
    font-size: 420px;
    margin-bottom: 30px;
    line-height: 428px;
    color: var(--primary-color);
}

@media(max-width:1023px) {
    .pq-error-block .pq-error-title {
        font-size: 320px;
        line-height: 328px;
    }
}

@media(max-width:767px) {
    .pq-error-block .pq-error-title {
        font-size: 200px;
        line-height: 208px;
    }

    .pq-error-block h2 {
        font-size: 26px;
        line-height: 34px;
    }
}

@media(max-width:479px) {
    .pq-error-block .pq-error-title {
        font-size: 130px;
        line-height: 138px;
    }
}

/*==============================================
  Progress Bar
================================================*/

.pq-progressbar-style-1 .pq-progressbar-content {
    padding-bottom: 20px;
    display: inline-block;
    float: left;
    width: 100%;
}

.pq-progressbar-style-1 .pq-progressbar-content .sonny_progressbar {
    margin-bottom: 0;
}

.pq-progressbar-style-1 .pq-progressbar-content .bar-container {
    height: 12px;
}

.pq-progressbar-style-1 .pq-progressbar-content:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.pq-progressbar-style-1 .progress-title {
    margin: 0;
    font-size: 16px;
    line-height: 24px;
    font-family: var(--title-fonts);
    color: var(--dark-color);
    font-weight: 600;
}

.pq-progressbar-style-1 .progress-value {
    color: var(--secondary-color);
    margin: 0;
    float: right;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
}

.pq-progressbar-style-1 .pq-progress-bar {
    display: inline-block;
    width: 100%;
    padding: 0;
    background: var(--grey-color);
    float: left;
    margin-top: 5px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.pq-progressbar-style-1 .pq-progress-bar span {
    display: inline-block;
    background: var(--primary-color);
    float: left;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.pq-progressbar-box .pq-progressbar-content .pq-progress-bar span {
    height: 10px;
    line-height: 10px;
    background: var(--primary-color) !important;
}

.pq-progressbar-box .pq-progressbar-content .pq-progress-bar span {
    height: 10px;
    line-height: 10px;
    background: var(--primary-color) !important;
}

/*==============================================
   Custom Css
================================================*/

.pq-section-spacing {
    margin: 0 45px;
    border-radius: var(--border-radius);
}

.pq-banner-info {
    position: relative;
}

.pq-banner {
    margin: 0 45px;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.pq-bg-grey {
    background-color: var(--background-color);
}

.pq-bg-primary {
    background-color: var(--primary-color);
}

.border-radius {
    border-radius: 0 0 10px 10px;
    margin: 0 45px;
}

.pq-border-radius {
    border-radius: 10px 10px 0 0;
    margin: 0 45px;
    overflow: hidden;
}

@media(max-width:1499px) {

    .pq-section-spacing {
        margin: 0 0;
        border-radius: 0;
    }

    .pq-banner {
        margin: 0;
        border-radius: 0;
    }

    .border-radius {
        border-radius: 0;
        margin: 0;
    }

    .pq-border-radius {
        margin: 0;
        border-radius: 0;
    }
}

@media(max-width:767px) {
    .tp-bullet {
        display: none;
    }
}