/*
Template: Buildar - Construction HTML Template
Author: peacefulqode.com
Version: 1.0
Design and Developed by: Peacefulqode
*/

/*==============================================
[  Table of contents  ]
================================================
==> Moz Selection
==> General
==> Loading
==> Back To Top
==> Button Core
==> Button Rounded
==> Section Title
==> OWL Carousel
==> Header
==> Service
==> Service Single
==> Isotope Portfolio
==> Portfolio
==> Popup Video
==> Team
==> Background SVG
==> Counter
==> Process Steps
==> Text Border
==> Testimonial
==> Clients
==> Fancy Box
==> Pricing Box
==> Contact Form
==> Breadcrumb
==> Blog
==> Recent Post
==> Blog Sidebar
==> Pagination
==> Single Post Navigation
==> single project css
==> Footer
==> Wow Image effects
==> Award
==> Accordion-Box
==> Tooltip
==> Tab
==> Form
==> Coustom CSS
=======================================
[ End table content ]
======================================*/



/* ################################# */

/* Moz Selection */

/* ################################# */
:root {
    --primary-color: #5D9B3C;
    --dark-color: #000000;
    --secondary-color: #525256;
    --grey-color: #F3F3F3;
    --white-color: #ffffff;
    --body-fonts: Helvetica, Arial, sans-serif;
    --title-fonts: Helvetica, Arial, sans-serif;
    --font-weight: 500;
    --border-radius: 20px;
    --big--border-radius: 900px;
    --transition-duration: 0.5s;
    --transition-timing-function: ease-in-out;
    --transition: all 0.5s ease-in-out;
    --box-shadow: -4px -4px 1px 2px var(--primary-color);
}

/* ################################# */

/* 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;
    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;
    text-decoration: none;
}

a:focus,
a:hover {
    color: var(--primary-color);
    outline: none;
    text-decoration: none !important;
}

p {
    margin-bottom: 10px;
}

img {
    width: 100%;
    height: auto;
    border-radius: 3px;
}

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: 0;
}

ol li {
    list-style: decimal;
}

ol ol {
    padding-left: 25px;
}

ul li {
    list-style: none;
}

/*============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,
textarea,
input.form-control {
    background: var(--grey-color);
    border: 1px solid var(--grey-color);
    color: var(--dark-color);
    margin-bottom: 30px;
    width: 100%;
    float: left;
    font-size: 16px;
    font-weight: 400;
    padding: 0 15px;
    height: 54px;
    line-height: 54px;
    outline: none;
    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;
    border-radius: var(--border-radius);
}

input::placeholder {
    color: var(--dark-color);
}

input:focus,
input:hover,
textarea:focus,
textarea:hover,
.form-control:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: none;
}

input[type="radio"],
input[type="checkbox"] {
    width: auto;
    height: auto;
    float: none;
    margin-right: 5px;
}

textarea {
    margin-bottom: 30px;
    height: 150px;
    border-radius: var(--border-radius);
    background: var(--grey-color);
    border: 1px solid var(--grey-color);
    color: var(--dark-color);
    width: 100%;
    float: left;
    padding: 10px 15px;
    outline: none;
    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;
}

textarea::placeholder {
    color: var(--dark-color);
}
/*################################# */
/* breadcrumb */
/* ################################# */

.pq-breadcrumb-style-1 {
    background-image: url(../image/breacrub_01.webp) !important;
}

.pq-breadcrumb-style-1 {
    background: var(--dark-color);
    text-align: left;
    padding: 150px 0;
    position: relative;
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    object-fit: cover;
}

.pq-breadcrumb-style-1 nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    align-items: center;
    justify-content: space-between;
    width: 60%;
}

.pq-breadcrumb-style-1 .pq-breadcrumb-title h1 {
    font-size: 56px;
    line-height: 64px;
    margin-bottom: 0;
    color: var(--dark-color);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 0;
}

/* .pq-breadcrumb-style-1 .pq-breadcrumb-container .breadcrumb {
    display: inline-block;
    margin: 0;
    text-align: start;
} */
.pq-breadcrumb-container .breadcrumb {
    display: flex;
    align-items: center;
}

.pq-breadcrumb-style-1 .pq-breadcrumb-container .breadcrumb li {
    list-style-type: none;
    margin-right: 10px;
    padding-left: 0;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pq-breadcrumb-style-1 .pq-breadcrumb-container .breadcrumb li.active {
    color: var(--dark-color);
}

.pq-breadcrumb-style-1 .pq-breadcrumb-container .breadcrumb li.active.style-1 {
    color: var(--white-color);
}

.pq-breadcrumb-style-1 .pq-breadcrumb-container .breadcrumb li a {
    color: var(--dark-color);
    display: inline-flex;
    align-items: center;
}

.pq-breadcrumb-style-1 .pq-breadcrumb-container .breadcrumb li a i {
    margin-right: 10px;
    display: block;
    border-radius: var(--border-radius);
    background: var(--primary-color);
    color: var(--white-color);
    text-align: center;
}

.pq-breadcrumb-container .breadcrumb li a>i {
    width: 30px;
    height: 30px;
    font-size: 14px;
    line-height: 29px;
}


.pq-breadcrumb-style-1 .pq-breadcrumb-container .breadcrumb li a:hover {
    color: var(--dark-color);
}

.pq-breadcrumb-style-1 .pq-breadcrumb-container .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    content: "-";
    font-size: 16px;
    font-family: var(--body-fonts);
    padding-right: 10px;
    color: var(--dark-color);
    float: none;
}
.mt-breadcrumb-item {
    margin-top: 2px;
}

@media(max-width:1199px) {
    .pq-breadcrumb-style-1 {
        padding: 120px 0;
    }

    .pq-breadcrumb-style-1 nav {
        width: 75%;
    }

    .pq-breadcrumb-style-1 .pq-breadcrumb-title h1 {
        font-size: 52px;
        line-height: 60px;
    }
}

@media(max-width:1023px) {
    .pq-breadcrumb-style-1 {
        padding: 100px 0;
    }

    .pq-breadcrumb-style-1 .pq-breadcrumb-title h1 {
        font-size: 42px;
        line-height: 50px;
    }

    .pq-breadcrumb-style-1 nav {
        width: 100%;
    }
}

@media(max-width:767px) {
    .pq-breadcrumb-style-1 nav {
        grid-template-columns: 1fr;
    }

    .pq-breadcrumb-style-1 .pq-breadcrumb-container {
        justify-content: flex-start;
        display: block;
    }

    .pq-breadcrumb-style-1 .pq-breadcrumb-title h1 {
        font-size: 34px;
        line-height: 42px;
    }

    .pq-breadcrumb-style-1 .pq-breadcrumb-container .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
        padding-right: 10px;
        font-size: 12px;
    }
}

@media(max-width:479px) {
    .pq-breadcrumb-style-1 .pq-breadcrumb-title h1 {
        font-size: 30px;
        line-height: 38px;
    }
}
/*============  Select ==============*/
select,
select.form-control {
    border: 1px solid var(--grey-color);
    color: var(--dark-color);
    width: 100%;
    float: left;
    padding: 0 30px 0 15px;
    height: 54px;
    line-height: 54px;
    outline: none;
    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;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill=!string!height=!string!viewBox=!string!width=!string!xmlns=!string!><path d=!string!/><path d=!string!fill=!string!/></svg>");
    background-repeat: no-repeat;
    background-position: right 16px bottom 50%;
    background-size: 20px 20px;
    border-radius: 3px;
}

/*===== Container =====*/
.container {
    max-width: 1400px;
}

section {
    padding: 100px 0 0 0;
    position: relative;
}

.pb-100 {
    padding-bottom: 100px !important;
}
.pt-100 {
    margin-top: 100px !important;
}
@media(max-width: 767px) {
    section {
        padding: 60px 0;
    }
    .pb-100 {
        padding-bottom: 60px !important;
    }
    .pt-100 {
        margin-top: 60px !important;
    }
}


/* ################################# */
/* 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;
}

/*================================================
    OWL Carousel
================================================*/

/*===== Nav =====*/

.owl-carousel .owl-nav.disabled {
    display: none;
}

.owl-nav {
    position: relative;
    top: 0%;
    transform: translateY(0);
    margin: 0;
    width: 100%;
    display: flex;
    cursor: inherit;
    justify-content: center;
}
.owl-carousel .owl-nav {
    margin-top: 30px;
}

.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: 70px;
    height: 70px;
    line-height: 70px;
    background: var(--dark-color);
    padding: 0 !important;
    margin: 0 5px;
    border: none;
    color: var(--white-color);
    border-radius: 100%;
}

.owl-carousel .owl-nav button.owl-prev {
    transform: rotate(180deg) translate(0px, 0px);
}

.owl-carousel .owl-nav button.owl-next {
    right: 0;
}

.owl-carousel .owl-nav button:hover {
    color: var(--white-color);
    background: var(--primary-color);
}

.pt-dark-bg .owl-carousel .owl-nav button:hover {
    color: var(--primary-color);
    background: var(--white-color);
}


/*===== prev-next =====*/

.owl-carousel .owl-nav.disabled {
    display: none;
}
.owl-nav {
    position: relative;
    top: 0%;
    transform: translateY(0);
    margin: 0;
    width: 100%;
    display: flex;
    cursor: inherit;
    justify-content: center;
}
.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: 70px;
    height: 70px;
    line-height: 75px;
    background: var(--dark-color);
    padding: 0 !important;
    margin: 0 5px;
    border: none;
    color: var(--white-color);
    border-radius: 100%;
}

.owl-carousel .owl-nav button.owl-prev {
    transform: rotate(180deg) translate(0px, 0px);
}

.owl-carousel .owl-nav button.owl-next {
    right: 0;
}

.owl-carousel .owl-nav button:hover {
    color: var(--white-color);
    background: var(--primary-color);
}

.pt-dark-bg .owl-carousel .owl-nav button:hover {
    color: var(--primary-color);
    background: var(--white-color);
}
/*++++++++++++++++ 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-color: var(--dark-color);
    border: 0 solid var(--grey-color);
    display: inline-block;
    padding: 0;
    margin: 0px 5px;
    height: 12px;
    width: 12px;
    transition: var(--transition-duration);
    -webkit-transition: var(--transition-duration);
    -o-transition: var(--transition-duration);
    -moz-transition: var(--transition-duration);
    -ms-transition: var(--transition-duration);
    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;
}
/* ################################# */
/* Header Top */
/* ################################# */

.pq-header-style-1 {

    width: 100%;
    z-index: 99;
}
.pq-top-header.top-style-1 {
    background: var(--dark-color);
    font-size: 16px;
    font-family: var(--title-fonts);
    padding: 0 45px;
}
.pq-top-header.top-style-1 .top-header-row {
    display: flex;
    padding: 10px 0;
    align-items: center;
    justify-content: space-between;
    align-content: center;
}
.pq-header-contact ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.pq-header-contact ul li {
    padding: 0;
    margin: 0;
    list-style: none;
}

.pq-header-contact ul li a,
.pq-header-contact ul li {
    color: var(--white-color);
}

.pq-header-contact ul li a:hover {
    color: var(--primary-color);
}

.pq-header-contact ul li a i,
.pq-header-contact ul li i {
    margin-right: 8px;
}

.pq-header-contact ul li a i::before,
.pq-header-contact ul li i::before {
    vertical-align: middle;
}

.pq-header-social ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.pq-header-social ul li {
    padding: 0;
    margin: 0;
    list-style: none;
}

.pq-header-social ul li a {
    color: var(--white-color);
}

.pq-header-social ul li a:hover {
    color: var(--primary-color);
}

@media (max-width: 1399px) {
    .pq-top-header.top-style-1 {
        padding: 0;
    }
}

@media (max-width: 1299px) {
    .pq-header-right .pq-header-icon .pq-search-button {
        display: none;
    }
}

@media (max-width: 767px) {
    .pq-top-header.top-style-1 {
        display: none;
    }
}
    @media (max-width: 768px) {
        .pq-top-header.top-style-1 {
            display: none;
        }

    .pq-top-header.top-style-1 .top-header-row {
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 479px) {
    .pq-top-header.top-style-1 {
        display: none;
    }
}

/* ################################# */
/* Header Logo */
/* ################################# */

#pq-header .pq-bottom-header .pq-header-logo {
    line-height: 1.2;
}

 .pq-header-logo .navbar-brand .header-logo{
    width:192px;
}
@media (max-width: 767px) {
    .pq-header-logo .navbar-brand .header-logo{
        width:120px;
    }
    #pq-header .navbar-brand img{
        height: 40px;
    }
}
#pq-header .navbar-brand img {
    height: 55px;
}

@media (max-width: 379px) {
    #pq-header .navbar-brand img {
        height: 45px;
    }
}

/* ################################# */
/*  Header bottom style-1 */
/* ################################# */

#pq-header{
    position: relative;
    /* display: inline-block; */
    width: 100%;
    z-index: 99;
}

#pq-header.pq-header-style-1 .pq-bottom-header.pq-has-sticky {
    position: fixed;
    display: inline-block;
    width: 100%;
    z-index: 99;
    top: -100%;
    transition: var(--transition);
    transition-duration: 0.8s;
}

#pq-header.pq-header-style-1 .pq-bottom-header.pq-header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    background: #fff;
    -webkit-box-shadow: 0px 5px 15px 0px rgba(26, 26, 26, 0.1);
    -moz-box-shadow: 0px 5px 15px 0px rgba(26, 26, 26, 0.1);
    box-shadow: 0px 5px 15px 0px rgba(26, 26, 26, 0.1);
    border-bottom: none;
}

#pq-header.pq-header-style-2 .pq-bottom-header.pq-header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    background-color: var(--white-color);;
    -webkit-box-shadow: 0px 5px 15px 0px rgba(26, 26, 26, 0.1);
    -moz-box-shadow: 0px 5px 15px 0px rgba(26, 26, 26, 0.1);
    box-shadow: 0px 5px 15px 0px rgba(26, 26, 26, 0.1);
    border-bottom: none;
}

.pq-header-style-1 .pq-bottom-header {
    padding: 10px 45px;
    background:white;
    position: absolute;
    display: inline-block;
    left:0;
    width:100%;
    transition: 0s;
}
 .pq-bottom-header .navbar {
    padding: 0;
    justify-content: space-between !important;
}

 .pq-bottom-header .navbar .navbar-collapse {
    justify-content: center;
    flex-grow: inherit;
}

 .pq-bottom-header .pq-menu-contain .pq-main-menu {
    display: flex;
    padding: 0;
    margin: 0;
}

 .pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item {
    list-style: none;
    margin-right: 30px;
    position: relative;
}

 .pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item:last-child {
    padding-right: 0;
}

 .pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item a {
    text-transform: uppercase;
    transition: var(--transition-duration);
    line-height: 1.4rem ;
    display: inline-block;
    color: var(--white-color);

}
 .pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item>a {
    color: 000000;
}

 .pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item:hover>a {
    color: var(--primary-color);
}

 .pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item.current-menu-item>a {
    color: var(--primary-color);
}

 .pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item i {
    font-size: 14px;
    line-height: 2rem !important;
    transition: var(--transition-duration);
    color: var(--white-color);
    margin-left: 6px;
}

 .pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item:hover>i {
    color: var(--primary-color);
}

 .pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item.current-menu-item>i {
    color: var(--primary-color);
}

 .pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item .sub-menu {
    display: none;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background-color: var(--white-color);
    z-index: 11;
    border-radius: 10px;
    box-shadow: 0px 0px 20px 0px rgba(28, 46, 22, 0.2);
}

 .pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item:hover .sub-menu {
    display: block;
}

 .pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item .sub-menu .menu-item {
    line-height: 0;
    display: block;
    margin-right: 0;
}

 .pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item .sub-menu .menu-item a {
    display: block;
    font-size: 16px;
    font-weight: normal;
    padding: 10px 15px;
    line-height: 35px;
    text-decoration: none;
    text-transform: uppercase;
    transition: var(--transition-duration);
    position: relative;
}

 .pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item .sub-menu .menu-item:first-child>a {
    border-radius: 10px 10px 0 0;
}

 .pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item .sub-menu .menu-item:last-child>a {
    border-radius: 0 0 10px 10px;
}

 .pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item .sub-menu .menu-item:hover a {
    color: var(--white-color);
    background-color: var(--primary-color);
}

 .pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item .sub-menu .menu-item a {
    color: var(--dark-color);

}

 .pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item .sub-menu .menu-item.current-menu-item a {
    color: var(--white-color);
    background-color: var(--primary-color);
}

 .pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item .sub-menu .menu-item.current-menu-item i {
    color: var(--white-color);
}
 .pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item .sub-menu .menu-item i {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 14px;
    line-height: 34px;
    transform: rotate(270deg);
    transition: var(--transition-duration);
}

 .pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item .sub-menu .menu-item:hover i {
    color: var(--white-color);
}

.pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item .sub-menu .menu-item .sub-menu {
    display: none;
    position: relative;
}

 .pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item .sub-menu .menu-item:hover .sub-menu {
    display: block;
    position: absolute;
    top: 0;
    left: 100%;
}

 .pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item .sub-menu .menu-item .sub-menu .menu-item a {
    background-color: var(--white-color);
    color: var(--dark-color);
}

.pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item.current-menu-item .sub-menu .menu-item.current-menu-item .sub-menu .menu-item.current-menu-item a {
    background-color: var(--primary-color);
    color: var(--white-color);
}

 .pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item .sub-menu .menu-item .sub-menu .menu-item:hover a {
    background-color: var(--primary-color);
    color: var(--white-color);
}

 .pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item .sub-menu .menu-item .sub-menu .menu-item:first-child>a {
    border-radius: 10px 10px 0 0;
}

 .pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item .sub-menu .menu-item .sub-menu .menu-item:last-child>a {
    border-radius: 0 0 10px 10px;
}

 .pq-bottom-header .navbar .navbar-toggler {
   width:50px;
   height:50px;
   padding: 0;
   /* padding: 12px 14px; */
    border-radius: 100%;
    background-color: var(--primary-color);
    box-shadow: none;

}
.pq-bottom-header .navbar .navbar-toggler i{
    color:var(--white-color);
}
header#pq-header .pq-bottom-header .pq-menu-contain {
    font-size: 15px;
}
@media (max-width: 767px) {
    header#pq-header .pq-bottom-header {
        padding: 0;
    }

}

@media (max-width: 1365px) {
    header#pq-header .pq-bottom-header .navbar-collapse .navbar-brand {
        padding: 0;
        margin: 0;
    }

    .pq-header-right .pq-header-icon {
        gap: 5px;
    }

    header#pq-header .pq-bottom-header .pq-menu-contain {
        font-size: 14px;
    }


}
@media (max-width:1365px) {

   .pq-header-right .pq-button .pq-button-flat {
       display: none;
   }

}

@media (max-width:1279px) {

    .pq-header-right .pq-button .pq-button-flat {
        display: none;
    }
    .pq-header-right  {
        margin-left: auto;
    }


 }
 @media (max-width:1099px) {

    .pq-header-right  {
        margin-left: auto;
    }

 }

@media (max-width: 1199px) {
    header#pq-header .pq-bottom-header .navbar .navbar-collapse {
        width: 100%;
        position: absolute;
        left: 0;
        top: 100%;
        background-color: white;
        box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
        z-index: 12;
    }

    .pq-bottom-header .pq-menu-contain .pq-main-menu {
        flex-direction: column;
    }

     .pq-bottom-header .pq-menu-contain .pq-main-menu>.menu-item {
        margin-right: 0;
        padding: 7px;
    }

     .pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item a {
        width: 100%;
        line-height: 0;
        color: var(--dark-color);
    }

     .pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item i {
        position: absolute;
        right: 20px;
        top: 26px;
    }

     .pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item .sub-menu {
        position: relative;
        box-shadow: none;
        width: 100%;
    }

     .pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item .sub-menu .menu-item i {
        transform: rotate(0deg);
    }

     .pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item .sub-menu .menu-item:hover .sub-menu {
        position: relative;
        left: 0;
        top: 0;
    }

     .pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item .sub-menu .menu-item:first-child>a {
        border-radius: 0;
    }

     .pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item .sub-menu .menu-item:last-child>a {
        border-radius: 0;
    }

     .pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item .sub-menu .menu-item .sub-menu .menu-item:first-child>a {
        border-radius: 0;
    }

     .pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item .sub-menu .menu-item .sub-menu .menu-item:last-child>a {
        border-radius: 0;
    }

     .pq-bottom-header .pq-header-right {
        margin-left: auto;
        margin-right: 15px;
    }
}


@media (max-width:767px) {
    .pq-bottom-header .pq-header-right .pq-header-icon .pq-search-button {
        display: none;
    }

    .pq-header-right .pq-header-contact {
        display: none;
    }

    .pq-header-right .pq-button .pq-button-flat {
        display: none;
    }

}

@media (max-width: 479px) {
     .pq-bottom-header .pq-header-right .pq-header-icon .pq-search-button {
        display: none;
    }

    .pq-header-right .pq-header-contact {
        display: none;
    }

    .pq-header-right .pq-button .pq-button-flat {
        display: none;
    }

}

@media (max-width: 397px) {
     .pq-bottom-header .pq-header-right .pq-header-icon .pq-search-button {
        display: none;
    }

    .pq-header-right .pq-header-contact {
        display: none;
    }

    .pq-header-right .pq-button .pq-button-flat {
        display: none;
    }
    .pq-bottom-header .navbar .navbar-toggler{
        padding: 7px 10px;
    }
}

/* ################################# */
/*  Header Bottom style-2 */
/* ################################# */

.pq-header-style-2 .pq-bottom-header {
    padding: 0 45px;
    background-color: var(--white-color);
    transition: 0s;
}

.pq-header-style-2 .pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item a{
   color:var(--dark-color);
}

.pq-header-style-2 .pq-bottom-header .pq-header-right .pq-header-contact span {
     color:var(--dark-color);
}
.pq-header-style-2 .pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item i {
       color: var(--dark-color);
}
.pq-header-style-2 .pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item.current-menu-item .pq-inner-icon  {
    color: var(--primary-color);
}
.pq-header-style-2 .pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item a:hover{
    color: var(--primary-color);
}
.pq-header-style-2 .pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item.current-menu-item>a {
    color: var(--primary-color);
}

@media (max-width: 379px) {
    #pq-header .navbar-brand img {
        height: 45px;
    }
}

/* ################################# */
/*  Header Right*/
/* ################################# */

.pq-header-right .pq-header-icon {
    display: flex;
    gap:15px;
    align-items: center;
    padding: 0;
    margin: 0;
}

.pq-header-right .pq-header-icon .pq-header-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white-color);
}

.pq-header-right .pq-header-icon .pq-header-contact .pq-icon {
    width: 56px;
    height: 56px;
    font-size: 20px;
    line-height: 64px;
    text-align: center;
    background: var(--grey-color);
    color: var(--primary-color);
    border-radius: var(--big--border-radius);
    display: inline-block;
}

/* ################################# */
/*  Search*/
/* ################################# */

.pq-header-right .pq-header-icon .pq-search-button {
    width: 56px;
    height: 56px;
    font-size: 20px;
    line-height: 58px;
    text-align: center;
    background: var(--grey-color);
    color: var(--primary-color);
    border-radius: var(--big--border-radius);
    display: inline-block;
}

.pq-header-right .pq-header-icon .pq-search-button svg {
    fill: var(--primary-color);
    width: 20px;
}

.pq-header-right .pq-header-icon .pq-search-button svg path {
    fill: var(--primary-color);
}


/* ################################# */
/*  section-title*/
/* ################################# */

.pq-section-title.text-center {
    padding: 0 1em;
    margin-bottom: 60px;
}

.pq-title-left {
    color: var(--white-color);
}

.pq-section-title .pq-title-subtitle {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    position: relative;
    text-transform: uppercase;
    color: var(--primary-color);
    margin: 0 0 10px;
    display: inline-block;
    letter-spacing: 1px;
    align-items: center;
}

.pq-section-title .pq-title-subtitle::before {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60%;
    height: 2px;
    background: var(--primary-color);
    display: inline-block;
}
.pq-section-title.text-left .pt-title-subtitle {
    padding: 0;
    justify-content: center;
}

.pq-section-title .pq-title-heading {
    font-size: 45px;
    line-height: 56px;
    font-weight: 700;
    z-index: 9;
    color: var(--dark-color);
    margin: 0 ;
    position: relative;
    display: block;
    margin-bottom: 5px;
}
.pq-section-title .pq-title-heading.pq-heading-1{
    color:var(--white-color);
    margin-bottom: 20px;
}

.pq-section-title .pq-title-heading-1 {
    font-size: 45px;
    line-height: 53px;
    z-index: 9;
    color: var(--white-color);
    padding: 0;
    margin: 0 0;
    position: relative;
    display: block;
    margin-bottom: 5px;
}

.pq-section-title .pq-title-description {
    font-family: var(--body-fonts);
    font-size: 18px;
    font-weight: 400;
    z-index: 9;
    position: relative;
    margin: 0 0 0 0;

}

@media(max-width:1399px) {
    .pq-section-title.text-center {
        padding: 0 8em;
    }
}

@media(max-width:1299px) {
    .pq-section-title.text-center {
        padding: 0 4em;
    }

    .pq-section-title .pq-title-heading {
        font-size: 45px;
        line-height: 52px;
    }
}

@media(max-width:1099px) {
    .pq-section-title .pq-title-heading {
        font-size: 34px;
        line-height: 42px;
    }
}

@media(max-width:1023px) {
    .pq-section-title .pq-title-heading {
        font-size: 40px;
        line-height: 48px;
    }

    .pq-section-title.text-center {
        padding: 0;
        margin-bottom: 40px;
    }
}

@media(max-width:799px) {
    .pq-section-title .pq-title-subtitle {
        font-size: 23px;
        line-height: 31px;
    }

    .pq-section-title .pq-title-heading {
        font-size: 22px;
        line-height: 31px;
    }
    .pq-section-title .pq-title-heading-1 {
      font-size: 25px;
      line-height: 35px;
    }
    .pq-section-title.text-center {
        margin-bottom: 30px;
    }
}


@media(max-width:397px) {
        .pq-section-title .pq-title-subtitle {
            font-size: 23px;
            line-height: 31px;
        }

    .pq-section-title .pq-title-subtitle::before {
        display: none;
    }
    .pq-title-heading{
        font-size: 27px;
        line-height: 35px;
    }
    .pq-icon-box-main .pq-icon-box-wrapper .pq-icon-box-description{
        font-size: 14px;
    }
}




/* ################################# */
/* Button Flat */
/* ################################# */

.pq-button .pq-button-flat {
    overflow: hidden;
    font-family: var(--body-fonts);
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.4rem ;
    letter-spacing: 1px;
    font-size: 15px;
    padding: 1px 30px;
    position: relative;
    width: auto;
    height: auto;
    color: var(--white-color);
    vertical-align: middle;
    display: inline-block;
    text-decoration: none;
    -webkit-border-radius: var(--big--border-radius);
    -moz-border-radius: var(--big--border-radius);
    border-radius: var(--big--border-radius);
    transition: var(--transition-duration);
    background: linear-gradient(to right, var(--dark-color) 50%, var(--primary-color) 50%);
    background-size: 202% 100%;
    background-position: right bottom;
}

.pq-service-box-style-2 .pq-button .pq-bg-white{
    color:var(--white-color);
}
.pq-service-box-style-2 .pq-button  .pq-bg-white:hover{
    color:var(--primary-color);
}
.pq-form-box-style-1.style-1 .pq-button .pq-button-flat{
    background: linear-gradient(to right, var(--white-color) 50%, var(--dark-color) 50%);
    background-size: 202% 100%;
    background-position: right bottom;
    color:var(--white-color);
}
.pq-form-box-style-1.pq-style-2.pq-btn-bg .pq-button .pq-button-flat{
    background: linear-gradient(to right, var(--primary-color) 50%, var(--dark-color) 50%);
    background-size: 202% 100%;
    background-position: right bottom;
    color:var(--white-color);
}
.pq-form-box-style-1.style-1 .pq-button .pq-button-flat:hover{
    background-position: left bottom;
    color:var(--dark-color);
}

.pq-blog-main .pq-button{
    padding-top: 5px;
}
.pq-button.pq-about-style-3{
    padding-top: 20px;
}

.pq-button .pq-button-flat:hover,
.pq-button.pq-button-flat:focus {
    background-position: left bottom;
    color: var(--white-color);
}

.pq-button .pq-button-flat i {
    color: var(--white-color);
    font-size: 20px;
    margin-left: 4px;
    vertical-align: middle;
    display: inline-block;
    line-height: 1;
}

.pq-button .pq-button-link {
    text-transform: uppercase;

}
.pq-icon-box-style-1 .pq-button:hover{
    color:var(--dark-color);
}

.pq-button .pq-button-flat:hover i,
.pq-button .pq-button-flat:focus i {
    animation: pheasantBounce 1s infinite linear;
}



/* ################################# */
/* Button Rounded */
/* ################################# */

.button-rounded {
     display: flex;
}

.button-rounded a {
     display: inline-block;
     width: 60px;
     height: 60px;
     line-height: 60px;
     font-size: 24px;
     border-radius: var(--big--border-radius);
     background: var(--dark-color);
     color: var(--white-color);
     text-align: center;
     transition: var(--transition-duration);
}

.button-rounded a:hover {
     background: var(--primary-color);
     color: var(--white-color);
}


/* ################################# */
/* service-box style-3 */
/* ################################# */
.pq-service-box-style-3-main{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap:40px;
}

.pq-service-box-style-3{
    height: 350px;
    display: flex;
    gap:10px;
    background-color: var(--white-color);
    align-items: center;
    border-radius: var(--border-radius);
}
.img-auto{
    height: 100%;
}

.pq-service-box-style-3 .pq-service-box-image{
    width:100%;
    border-radius: var(--border-radius);
}
.pq-service-box-style-3 .pq-service-box-image img{
    border-radius: 10px;
}

.pq-service-box-style-3 .pq-service-box-information{
    padding: 30px;
}
.pq-service-box-style-3 .pq-service-box-information .pq-service-box-icons{
    background-color: var(--primary-color);
    font-size: 40px;
    line-height: 92px;
    width:84px;
    height:84px;
    text-align: center;
    color:var(--white-color);
    border-radius: var(--big--border-radius);
}
.pq-service-box-style-3 .pq-service-box-information .pq-service-box-titles{
    font-size: 22px;
    line-height: 30px;
    margin-top: 15px;
}
.pq-service-box-style-3 .pq-service-box-information .pq-service-box-description{
    width: 350px;
    border-top: 1px solid #0000001f;
    margin-top: 15px;
    padding-top: 15px;
    margin-bottom: 0px;
}
@media(max-width:1279px) {
    .pq-service-box-style-3{
        display: block;
}
}
@media(max-width:767px) {
    .pq-service-box-style-3-main{
        grid-template-columns: 1fr;
    }
    .pq-form-box-style-1{
        height: 100%;
        }
}

/* ################################# */
/* service-box style-4 */
/* ################################# */

.pq-service-box-main.pq-style-4{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap:30px;
}
.pq-service-box-style-1.pq-style-4 .pq-service-box-info::before {
    content: "";
    position: absolute;
    bottom: -1px;
    right: 100%;
    height: 1px;
    width: 100%;
    transition: var(--transition-duration);
    background: var(--primary-color);
}

.pq-service-box-style-1.pq-style-4:hover .pq-service-box-info::before {
    right: 0%;
}
@media(max-width:1099px) {
    .pq-service-box-main.pq-style-4{
        grid-template-columns: 1fr 1fr;
    }
}
@media(max-width:767px) {
    .pq-service-box-main.pq-style-4{
        grid-template-columns: 1fr;
    }
}




/* ################################# */
/* client-box */
/* ################################# */
.pq-client-box{
    margin-top: 60px;
}

.pq-client-box-slider.pq-style-1 .owl-nav {
    display: none;
}

.pq-client-box.pq-style-1 a img {
    width: 200px;
    margin: 0 auto;
}

.pq-client-box-slider.pq-style-1 .pq-client-box-title {
    position: relative;
    text-align: center;
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
    word-spacing: 4px;
    margin-bottom: 45px;
    padding: 0 10px;
    display: inline-block;
    background-color: var(--white-color);
}

.pq-client-box-slider.pq-style-1 .pq-clint-box-border {
    position: relative;
    width: 100%;
    text-align: center;
}

.pq-client-box-slider.pq-style-1 .pq-clint-box-border::before {
    content: "";
    position: absolute;
    top: 14px;
    left: 0;
    width: 100%;
    border-bottom: 1px solid rgba(102, 102, 102, 0.2);
}

.pq-clients-box-1 {
    position: relative;
    background: var(--grey-color);
    padding: 45px 15px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pq-clients-box-1 .client-img {
    height: 70px;
    width: auto !important;
    transition: var(--transition-duration);
}

/* .pq-clients-box-1:hover .client-img { */
    /* opacity: 0; */
/* } */

.pq-clients-box-1 .client-hover-img {
    height: 70px;
    width: auto !important;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition-duration);
    opacity: 0;
}

.pq-clients-box-1:hover .client-hover-img {
    opacity: 1;
}

.pq-client-box-img  {
    position: absolute;
    left: -85px;
    width: 320px;
    bottom: -39px;
    z-index: 9;
}


@media (max-width:1499px) {
    .pq-client-box-img img {
        display: none;
    }

}

@media (max-width:1099px) {
    .pq-client-box-img img {
        display: none;
    }

}

@media (max-width:1023px) {
    .pq-client-box-img img {
        display: none;

    }
}

@media (max-width:979px) {
    .pq-client-box-img img {
        display: none;
    }

}

@media (max-width:767px) {
    .pq-client-box-img img {
        display: none;
    }

}

@media (max-width:479px) {
    .pq-client-box-img img {
        display: none;
    }
}

@media (max-width:369px) {
    .pq-client-box-img img {
        display: none;
    }
}




/* ################################# */
/* work-box */
/* ################################# */

.pq-work-box-main{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap:20px;

}
.pq-work-box-style-1.pq-work-style-1{
    background-color: var(--primary-color);
    color:var(--white-color);
    text-align: left;
    padding: 45px 30px 45px 30px;
    margin: 0px 15px 0px 15px;
}
.pq-work-box-style-1 img{
    height:464px;
    object-fit: cover;
}
.pq-work-box-style-1{
    border-radius: var(--border-radius);
}
.pq-work-box-style-1 .pq-work-box-wrapper{
   padding-top: 45px;

}
.pq-work-box-style-1 .pq-work-box-icon{
    line-height: 4;
}
/* .pq-work-box-style-1 .pq-work-box-content{
   width:315px;
} */

.pq-work-box-style-1 .pq-box-icon i{
    font-size: 50px;
    line-height: 1;
    display: inline-block;
}

.pq-work-box-style-1 h4{
    color:var(--white-color);
    font-weight: 500;
}

.pq-work-box-style-1 .pq-button{
    color:var(--white-color);
    margin-left: 1px;
}
.pq-work-box-style-1 .pq-button:hover{
    color:var(--dark-color);
}

.pq-work-box-style-1 img{
    border-radius: var(--border-radius);
}

.pq-work-box-style-1.pq-work-counter-1{
    padding: 45px 30px;
}
.pq-work-box-style-1 .pq-work-counter-2{
    padding-top: 14px;
}

.pq-work-box-style-1 .pq-work-counter-3{
    padding-top: 14px;
}

@media (max-width: 1099px) {
    .pq-work-box-main  {
        grid-template-columns: 1fr 1fr ;
    }

}
@media (max-width: 767px) {
    .pq-work-box-main  {
        grid-template-columns: 1fr;

    }
    }

/* ################################# */
/* process-box */
/* ################################# */

.pq-process-box-grid {
    background-image: url("../image/process/vector/1.webp");
    background-position: 50% 10%;
    background-repeat: no-repeat;
    background-size: 70% auto;
    margin-bottom: 60px;
}

.process-box-style-1.text-center.pq-even {
    margin-top: 60px;
}

.process-vector {
    width: 337px;
    position: absolute;
    right: 0;
    top: 0;
    margin-top: -137px;
    z-index: 9;
}

.pq-process-box {
    position: relative;
}


.process-box-style-1.text-center {
    padding: 0 30px;
    position: relative;
}

.process-box-style-1 .process-box-icon {
    height: 90px;
    width: 90px;
    text-align: center;
    font-size: 40px;
    line-height: 96px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: var(--big--border-radius);
    display: inline-block;
}

.process-box-style-1 .process-box-big-title {
    position: absolute;
    top: 30%;
    left: 0;
    right: 0;
    color: var(--grey-color);
    font-size: 80px;
    line-height: 88px;
    font-family: var(--title-fonts);
    font-weight: var(--font-weight);
}

.process-box-style-1 .process-box-info {
    margin-top: 30px;
    position: relative;
}

.process-box-style-1 .process-box-info .process-box-title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 5px;
}

.process-box-style-1 .process-box-info .process-box-description {
    margin-bottom: 0;
}




/* ################################# */
/* process-box style-2 */
/* ################################# */

.pq-process-main-style-2{
    display: grid;
    grid-template-columns: 1fr;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    }
 .pq-process-img img{
     width:80%;
 }
 .pq-process-box-style-2 {
     display: flex;
     gap: 30px;
 }
 .pq-process-box-style-2:nth-child(even){
    padding-left: 60px;
 }
 .pq-process-box-style-2{
    margin-bottom: 45px;
 }
 .pq-process-box-style-2:last-child{
    margin-bottom: 0;
 }

 .pq-process-box-style-2 .pq-process-box-big-title {
     color: var(--grey-color);
     font-size: 56px;
     line-height: 64px;
     font-family: var(--title-fonts);
     font-weight: var(--font-weight);
 }

 .pq-process-box-style-2 .pq-process-box-info .pq-process-box-title {
     font-size: 24px;
     line-height: 32px;
     margin-bottom: 5px;
 }

 .pq-process-box-style-2 .pq-process-box-info .pq-process-box-description {
     margin-bottom: 0;
 }
 .pq-mask-img{
    width:268px;
    position: absolute;
    right:0;
    margin-top: -38%;
 }
 .process-box-style-2 .process-box-icon {
    height: 90px;
    width: 90px;
    text-align: center;
    font-size: 40px;
    line-height: 96px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: var(--big--border-radius);
    display: inline-block;
}
@media (max-width: 1499px) {
    .pq-mask-img {
         display: none;
    }
}
 @media (max-width: 479px) {
     .pq-process-box-style-2 {
          flex-direction: column;
          gap: 15px;
     }
 }
 @media (max-width: 799px) {
    .pq-process-img img{
       width:412px;
    }
    .pq-process-box-style-2 .pq-process-box-title{
        font-size: 31px;
        line-height: 38px;
    }
    .pq-process-box-style-2 .pq-process-box-info{
        font-size: 12px;
        line-height: 20px;
   }
}
 @media (max-width: 767px) {
    .pq-process-img img{
       width:412px;
    }
    .pq-process-box-style-2 .pq-process-box-title{
        font-size: 31px;
        line-height: 38px;
    }
    .pq-process-box-style-2 .pq-process-box-info{
        font-size: 12px;
        line-height: 20px;
   }
}
 @media (max-width: 397px) {
 .pq-process-main-style-2{
    display: grid;
    grid-template-columns: 1fr;
 }
 .pq-process-img img{
    width:282px;
 }
}

/* ################################# */
/* detail-box */
/* ################################# */
.pq-custom-detail-box-main{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap:30px;
    position: relative;
}
.pq-custom-stye-1{
    padding: 30px;
    margin: 15px 0px 0px 0px;
    background-color: var(--grey-color);
    border-radius: 10px;
}

.pq-cust-style-1 .pq-icon-list-items .pq-icon-list-item{
    padding-bottom: 7px;
}

.pq-custom-design-img {
    position: absolute;
    width:541px;
    bottom: 16%;
    right:38%;
}

.pq-custom-stye-1.pq-active{
    background-color: var(--primary-color);
    color:var(--white-color);
}
.pq-custom-stye-1.pq-active .pq-custom-heading-title{
    border-bottom: 1px solid #FFFFFF2F;
    color:var(--white-color);
}
.pq-custom-stye-1 .pq-custom-heading-title{
    padding-bottom: 12px;
    margin-left: 25px;
}
.pq-custom-stye-1 .pq-cust-description{
    border-top: 1px solid #0000001F;
    border-width:90%;
    margin-left: 25px;
    padding-top: 11px;
    margin-bottom: 0px;
}
.pq-custom-design-style-1{
   margin-top: 30px;
}
.pq-custom-design-style-1 .pq-custom-description{
    margin-bottom: 0px;
}
.pq-custom-design-style-1 .pq-icon-list-items{
    margin-top: 15px;
}
@media (max-width: 1279px) {
    .pq-custom-design-img img{
        width:346px;
       }

       }
       @media(max-width:1199px) {
        .pq-custom-design-img{
            position: static;
            width: 60%;
           margin: 0 auto;
           display: block;
        }
       }

    @media (max-width: 1099px) {
        .pq-custom-detail-box-main{
            grid-template-columns: 1fr;
         }
        }


        @media (max-width: 979px) {
            .pq-custom-detail-box-main{
               grid-template-columns: 1fr;
            }
            .pq-custom-design-img img{
                display: none;
               }
               .pq-custom-stye-1 {
                width:100%;
               }
               .pq-custom-design-detail-box{
                padding-left: 5%;
        }
    }
@media (max-width: 767px) {
    .pq-custom-detail-box-main{
        grid-template-columns: 1fr;
       }

    }

 /*################################# */
/* pricing-box */
/* ################################# */

 .pq-pricing-box-style-1 {
    display: grid;
    grid-template-columns:auto 1fr 4fr auto;
    gap: 30px;
    position: relative;
    background: var(--grey-color);
    border-radius: var(--border-radius);
    padding: 45px 30px;
    align-items: center;
    justify-items: center;
    overflow: inherit;
    margin-bottom: 30px;
}

.pq-pricing-box-style-1 .pq-pricing-box-icon {
    font-size: 72px;
    line-height: 80px;
    color: var(--primary-color);
}

.pq-pricing-box-style-1 .pq-pricing-box-price .pq-pricing-box-price-designation {
    font-size: 18px;
    line-height: 26px;
    position: relative;
    display: block;
    font-weight: 400;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;

}

.pq-pricing-box-style-1 .pq-pricing-box-price-title {
    font-size: 44px;
    line-height: 52px;
}

.pq-pricing-box-style-1 .pq-pricing-box-info .pq-pricing-box-title {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 15px;
}

.pq-pricing-box-style-1 .pq-pricing-box-info .pq-pricing-box-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 30px;
    margin: 0;
    padding: 0;
}

.pq-pricing-box-style-1 .pq-pricing-box-info .pq-pricing-box-list li {
    display: flex;
}

.pq-pricing-box-style-1 .pq-pricing-box-info .pq-pricing-box-list li i {
    color: var(--primary-color);
    margin-right: 8px;
}

.pq-pricing-box-style-1 .pq-pricing-box-info .pq-pricing-box-list li p {
    margin-bottom: 0;
}

.pq-pricing-box-style-1.pq-active {
    background: var(--primary-color);
}

.pq-pricing-box-style-1.pq-active .pq-pricing-box-icon {
    color:var(--white-color);
}

.pq-pricing-box-style-1.pq-active .pq-pricing-box-price-designation {
    color:var(--white-color);
}

.pq-pricing-box-style-1.pq-active .pq-pricing-box-price-title {
    color:var(--white-color);
}

.pq-pricing-box-style-1.pq-active .pq-pricing-box-title {
    color:var(--white-color);
}
.pq-pricing-box-style-1.pq-active .pq-pricing-box-price-title {
    color:var(--white-color);
}
.pq-pricing-box-style-1.pq-active .pq-pricing-box-info {
    color:var(--white-color);
}

.pq-pricing-box-style-1.pq-active .pq-pricing-box-info li i {
    color:var(--white-color);
}

.pq-pricing-box-style-1.pq-active .button-rounded a {
    background: var(--white-color);
    color: var(--dark-color);
}

.pq-pricing-box-style-1.pq-active .button-rounded a:hover {
    background: var(--dark-color);
    color: var(--white-color);
}

@media (max-width: 1199px) {
    .pq-pricing-box-style-1 .pq-pricing-box-info .pq-pricing-box-list {
         display: flex;
         flex-direction: column;
         gap: 10px;
    }
}
@media (max-width: 1499px) {
    .pq-pricing-box-style-1 {
         padding: 66px;
    }
}


@media (max-width: 1099px) {
    .pq-pricing-box-style-1 {
         padding: 30px 50px;
    }
}
@media (max-width: 1023px) {
    .pq-pricing-box-style-1 {
         display: flex;
         flex-direction: column;
         gap: 15px;
         align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .pq-pricing-box-style-1 .pq-pricing-box-info .pq-pricing-box-title {
         font-size: 28px;
         line-height: 36px;
    }

    .pq-pricing-box-style-1 .pq-pricing-box-price-title {
         font-size: 40px;
         line-height: 48px;
    }
}

@media (max-width: 479px) {
    .pq-pricing-box-style-1 {
         padding: 30px 22px;
    }

    .pq-pricing-box-style-1 .pq-pricing-box-info .pq-pricing-box-title {
         font-size: 24px;
         line-height: 32px;
    }
}

/*################################# */
/* team-style-1 */
/* ################################# */

.pq-team-box-style-1 {
    background: var(--white-color);
    border-radius: var(--border-radius);
    text-align: center;
    margin-bottom: 51px;
    padding: 30px 20px 0;
    transform: var(--transition);
    position: relative;
}

.pq-team-style-1 .owl-item.active.center .pq-team-box-style-1 {
    background-color: var(--primary-color);
}
.pq-team-style-1 .pq-team-box-style-1.pq-team-bg::before {
    background-image: url(../image/team/pic-3.svg);
 }
.pq-team-style-1 .owl-item.active.center .pq-team-box-style-1 .team-box-title a {
    color:var(--white-color);
}
.pq-team-style-1 .owl-item.active.center .pq-team-box-style-1 .team-box-info .team-box-categorie a {
    color: var(--white-color);
}

.pq-team-box-style-1 .team-box-info {
    margin-bottom: 5px;
}

.pq-team-box-style-1 .team-box-info .team-box-title {
    font-size: 24px;
    line-height: 32px;
    transition: none;
}

.pq-team-box-style-1 .team-box-info .team-box-categorie {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    position: relative;
    text-transform: uppercase;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.pq-team-box-style-1 .team-box-img {
    /* position: relative; */
    display: inline-block;
    width: 100%;
    overflow: hidden;
    margin-bottom: -30px;
    border-radius: var(--border-radius);
}

.pq-team-box-style-1 .team-box-img::before {
    content: "";
    position: absolute;
    top: 98px;
    display: inline-block;
    width: 100%;
    height: 15px;
    left: 0;
    background-image: url(../image/team/pic1.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom center;
    z-index: 9;
}
.pq-team-style-1 .owl-item.active.center .pq-team-box-style-1 .team-box-img::before {
    content: "";
    position: absolute;
    top: 98px;
    display: inline-block;
    width: 100%;
    height: 15px;
    left: 0;
    background-image: url(../image/team/team-active.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom center;
    z-index: 9;
}

.pq-team-box-style-1.pq-team-bg .team-box-img::before {
    content: "";
    position: absolute;
    top: 98px;
    display: inline-block;
    width: 100%;
    height: 15px;
    left: 0;
    background-image: url(../image/team/team-svg.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom center;
    z-index: 9;
}
.pq-team-box-style-1.pq-team-bg:hover .team-box-img::before {
    content: "";
    position: absolute;
    top: 98px;
    display: inline-block;
    width: 100%;
    height: 15px;
    left: 0;
    background-image: url(../image/team/team-active.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom center;
    z-index: 9;
}
.pq-team-box-style-1 .team-box-img img {
    transition: var(--transition-duration);
}

.pq-team-box-style-1:hover .team-box-img img {
    transform: scale(1.1);
}

.pq-team-box-slider-1 .owl-nav {
    display: none;
}

/*################################# */
/* team-style-2 */
/* ################################# */

.pq-team-box-style-2{
    text-align: center;
}
.pq-team-box-style-2 .pq-team-box-meta {
    overflow: hidden;
}

.pq-team-box-style-2 .pq-team-box-social {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition-duration);
    position: absolute;
    left: 0;
    bottom: 110px;
    visibility: visible;
    gap: 15px;
    width: 100%;
    z-index: 1;
}

.pq-team-box-style-2 .pq-team-box-social a {
    font-size: 16px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    display: block;
    border-radius: 100%;
    color: var(--dark-color);
    background: var(--white-color);
    transition: var(--transition-duration);
    transform: translateY(30px);
    opacity: 0;
}

.pq-team-box-style-2:hover .pq-team-box-social a {
    transform: translateY(0px);
    opacity: 1;
}

.pq-team-box-style-2 .pq-team-box-social a:hover {
    background: var(--primary-color);
}

.pq-team-box-style-2:hover .pq-team-box-social a:nth-child(2) {
    transition-delay: 0.2s;
}

.pq-team-box-style-2:hover .pq-team-box-social a:nth-child(3) {
    transition-delay: 0.3s;
}

.pq-team-box-style-2:hover .pq-team-box-social a:nth-child(4) {
    transition-delay: 0.4s;
}

.pq-team-box-style-2:hover .pq-team-box-social a:nth-child(5) {
    transition-delay: 0.5s;
}

.pq-team-box-style-2:hover .team-box-social a:nth-child(6) {
    transition-delay: 0.6s;
}

.pq-team-box-style-2:hover .pq-team-box-social a:nth-child(7) {
    transition-delay: 0.7s;
}

.pq-team-box-style-2:hover .pq-team-box-social a:nth-child(8) {
    transition-delay: 0.8s;
}

.pq-team-box-style-2 .pq-team-box-info {
    margin-top: 20px;
}

.pq-team-box-style-2 .pq-team-box-info .pq-team-box-title {
    font-size: 24px;
    line-height: 32px;
}

.pq-team-box-style-2 .pq-team-box-info .pq-team-box-categorie {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    position: relative;
    text-transform: uppercase;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.pq-team-box-style-2 .pq-team-box-img {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.pq-team-box-style-2 .pq-team-box-img img {
    transition: var(--transition-duration);
}

.pq-team-box-style-2:hover .pq-team-box-img img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
}

.pq-team-box-style-2 .owl-carousel .owl-nav{
    position: relative;
    top: 0%;
    transform: translateY(0);
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    cursor: inherit;
    justify-content: center;
    margin-top: 26px;
}



/*################################# */
/* team-share-icon */
/* ################################# */

.pq-team-box-style-1 .menu {
    position: fixed;
    margin: 0;
    bottom: 0;
    list-style-type: none;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
}

.pq-team-box-style-1 .menu .share>i {
    width: 60px;
    text-align: center;
    line-height: 60px;
    background-color: var(--dark-color);
    color: var(--white-color);
    border-radius: var(--big--border-radius);
    cursor: pointer;
}

.pq-team-box-style-1 .menu .submenu {
    padding: 8px 20px;
    margin: 0;
    background: var(--white-color);
    position: absolute;
    top: -30px;
    opacity: 0;
    display: flex;
    gap: 15px;
    border-radius: var(--big--border-radius);
    left: 50%;
    transform: translateX(-50%);
    transition: var(--transition-duration);
}

.pq-team-box-style-1 .menu .submenu li a {
    color: var(--dark-color);
}

.pq-team-box-style-1 .menu .submenu li a:hover {
    color: var(--primary-color);
}

.pq-team-box-style-1 .menu .share:hover .submenu {
    top: -60px;
    opacity: 1;
}

/*################################# */
/* team-carousal*/
/* ################################# */
.pq-team-box-slider-1 .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.pq-team-box-slider-1 .owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    left: -8%;

    transform: rotate(180deg) translate(0px, 0px);
}

.pq-team-box-slider-1 .owl-carousel .owl-nav button.owl-next {
    position: absolute;
    right: -8%;
}
/*################################# */
/* team-details */
/* ################################# */
.pq-team-detail-box-main{
    display: grid;
    grid-template-columns: 1fr 1.5fr 2fr;
    gap:15px;
}
.pq-team-main-img img{
    width:390px;
    border-radius: var(--border-radius);
}
.pq-team-detail .pq-title-subtitle-1{
    color:var(--primary-color);
    margin-top: 10px;
    font-family: var(--title-fonts);
    font-weight: 400;
    margin-left: 43px;
}
.pq-team-detail .pq-heading-title{
    margin-left: 36px;
}
.pq-contact-list{
    padding:0px 15px 0px 45px;
    margin-top: 15px;
}

.pq-contact-list .pq-left-title{
    font-size: 18px;
    line-height: 26px;
    font-weight: 700;
    text-transform: capitalize;
    font-family: "Manrope", Sans-serif;
    color:var(--secondary-color);
    padding-bottom: 20px;

}
.pq-contact-list .pq-right-title{
    font-family: "Hanken Grotesk", Sans-serif;
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    text-transform: none;
    color:#525256;
    margin-left: 10px;
}
.pq-detail-info-main{
    display: grid;
    gap:15px;
    grid-template-columns: 2fr 1fr;
    margin-top: 45px;
}
.pq-footer-social-style-1.pq-style-2 ul li a{
    background-color: black;
    color:white;
}
.pq-footer-social-style-1.pq-style-2 ul li a{
    width: 36px;
    height:36px;
    font-size: 16px;
    line-height: 40px;

}
.pq-footer-social-style-1.pq-style-2 .pq-social-icon{
    margin-top: -33px;
    margin-left: 43px;
}
.pq-team-detail .pq-bullet-list .pq-icon-list-items li{
    padding-top: 3px;
    padding-bottom: 0;
}
@media(max-width:1099px) {
    .pq-team-detail-box-main{
        grid-template-columns: 1fr 1fr;
    }
    .pq-detail-info-main{
        grid-template-columns: 1fr;
    }
}
@media(max-width:767px) {
    .pq-team-detail-box-main{
        grid-template-columns: 1fr ;
    }
}
@media(max-width:479px) {
    .pq-contact-list {
      padding: 0px 10px 0px 10px ;
    }
    .pq-team-main-img img{
        width:100%;
    }
}
@media(max-width:379px) {
    .pq-contact-list .pq-left-title{
        font-size: 16px;
    }
}
/*################################# */
/* team-style-3 */
/* ################################# */

.pq-team-style-1.pq-team-main{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap:15px;
}
 .pq-team-box-style-1.pq-team-bg{
    background-color: var(--grey-color);
}
.pq-team-box-style-1.pq-team-bg:hover{
    background-color: var(--primary-color);
}

.pq-team-box-style-1.pq-team-bg:hover .team-box-title {
    color:var(--white-color);
}

.pq-team-box-style-1.pq-team-bg:hover .team-box-categorie a {
    color:var(--white-color);
}
.pq-team-style-1.pq-team-main .pq-team-box-style-1.pq-team-bg .menu{
   position: absolute;
   padding: 0;
   margin: 0;
   z-index: 9;
   bottom: -50px;
}
.pq-team-style-1.pq-team-main .pq-team-box-style-1.pq-team-bg .team-box-info:hover{
    color:var(--white-color);
}

@media(max-width:799px) {
    .pq-team-style-1.pq-team-main {
      grid-template-columns: 1fr 1fr;
    }
}
@media(max-width:767px) {
    .pq-team-style-1.pq-team-main {
      grid-template-columns: 1fr;
    }
}


/*################################# */
/* testimonial-style-1 */
/* ################################# */

.pq-testimonial {
    position: relative;

}
.pq-testimonial-box-slider-1 {
    padding: 120px;
    margin-top: 80px;
    padding: 90px 30px 90px 30px;
    border-radius: 20px 20px 20px 20px;
}
.pq-testimonial-img {
    width: 100px;
    top: 0;
    position: absolute;
    left: 100px;
}
.pq-img-team {
    width: 180px;
    height: auto;
}

.pq-image-box-wrapper {
    padding-top: 20px;
    display: flex;
    gap: 30px;
}

.pq-image-box-content .pq-image-box-title {
    color: var(--white-color);
}

.pq-image-box-content .pq-image-box-description {
    color: var(--white-color);
}

.pq-testimonial-1 {
    display: flex;
    gap: 20px;
}

.pq-testimonial-box-style-1 {
    color: white;
    position: relative;
}

.pq-testimonial-box-style-1 .pq-testimonial-box-star {
    margin-bottom: 15px;
    color: var(--white-color);
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: 1px;
}

.pq-testimonial-box-style-1 .pq-testimonial-box-quote {
    position: absolute;
    bottom: -15px;
    right: 0;
    color: var(--white-color);
    font-size: 72px;
    line-height: 80px;
    opacity: 0.4;
}

.pq-testimonial-box-style-1 .pq-testimonial-box-description {

    font-size: 20px;
    line-height: 1.8;
}

.pq-testimonial-box-style-1 .pq-testimonial-box-info .pq-testimonial-box-title {
    color: var(--white-color);
}

.pq-testimonial-box-style-1 .pq-testimonial-box-info .pq-testimonial-box-designation {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    position: relative;
    text-transform: uppercase;
    color: var(--white-color);
    letter-spacing: 1px;
}

.pq-testimonial-box-slider-1 .owl-dots {
    display: flex;
    justify-content: flex-end;
}

.pq-testimonial-box-main .owl-dots .owl-dot{
    background-color: var(--white-color);
    border: 1px solid var(--white-color);
}

.pq-testimonial-box-main .owl-dots .owl-dot.active{
    background-color: var(--dark-color);
    border: 1px solid var(--dark-color);
}

@media (max-width: 1499px) {
    .pq-testimonial-box-quote {
        display: none;
    }
    .pq-testimonial-img{
        display: none;
    }
    .pq-img-team{
        width:90px;
    }
    .pq-image-box-content{
        text-align: left;
    }
}

/*################################# */
/* testimonial-style-2 */
/* ################################# */

.pq-testimonial-box-style-2{
    position: relative;
    background-color: var(--grey-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    padding: 60px 30px 45px;
}
.pq-testimonial-box-style-2 .pq-testimonial-box-star{
    color:var(--primary-color);
}
.pq-testimonial-box-style-2 .pq-testimonial-box-detail .pq-testimonial-box-title{
    font-size: 20px;
    line-height: 28px;
}
.pq-testimonial-box-style-2 .pq-testimonial-box-detail .pq-testimonial-box-designations{
  font-size: 18px;
  line-height: 26px;
  position: relative;
  text-transform: uppercase;
  color: var(--primary-color);
  letter-spacing: 1;
  font-weight: 400;
}
.pq-testimonial-box-style-2 .pq-testimonial-box-quote{
    font-size: 72px;
    line-height: 80px;
    opacity: 0.4;
    position: absolute;
    bottom: 45px;
    right: 30px;
    color: var(--primary-color);

}
.pq-testimonial-box-style-2 .pq-testimonial-box-info{
    display: flex;
    gap:20px;
    align-items:center;
    border-top: 1px solid rgb(21 20 28 / 10%);
    padding-top: 30px;
}
.pq-testimonial-box-img img{
    width:90px;
    height:90px;
    border-radius: 100%;
}
.pq-testimonial-box-style-2::before{
    content: "";
    position: absolute;
    top: -1px;
    display: inline-block;
    width: 100%;
    height: 15px;
    left: 0;
    background-image: url('../image/testimonial/small-cut.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    z-index: 9;
}
.pq-testimonial-box-slider-2 .owl-carousel .owl-nav{
    position: relative;
    top: 0%;
    transform: translateX(0);
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    cursor: inherit;
    justify-content: center;
    margin-top: 26px;
}
/*################################# */
/* testimonial-style-3 */
/* ################################# */
.pq-testimonial-box-style-2.pq-style-2{
    background-color:var(--white-color);
}

/*################################# */
/* blog-style-1 */
/* ################################# */
.pq-blog-post {
    display: inline-block;
    width: 100%;
    background: var(--white-color);
    padding: 15px 15px 30px;
    border-radius: var(--border-radius);
}

.pq-blog-post .pq-blog-image {
    overflow: hidden;
    position: relative;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}

.pq-blog-post .pq-blog-image img {
    width: 100%;
    transition: var(--transition-duration);
}

.pq-blog-post:hover .pq-blog-image img {
    transform: scale(1.1);
}
.pq-blog-post .pq-blog-title{
    font-size: 20px;
    line-height: 1.4em;
    font-weight: 500;
}

.pq-blog-post .pq-blog-contain {
    padding: 0 15px;
}
.pq-blog-post .pq-blog-contain .pq-post-meta {
    margin-left: -26px;
}

.pq-blog-contain .pq-post-category {
    text-transform: uppercase;
}

.pq-blog-title a {
    margin-bottom: 10px;
}

.pq-blog-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.pq-blog-post .pq-post-meta ul {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 0 0 3px;


}

@media(max-width:1023px) {
    .pq-blog-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:767px) {
    .pq-blog-main {
        grid-template-columns: 1fr;
    }
}

@media(max-width:397px) {
    .pq-blog-main {
        grid-template-columns: 1fr;
    }
}

/*################################# */
/* blog-style-2 */
/* ################################# */

.pq-blog-style-2-main{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap:30px;
}
.pt-blog-post.pq-list:last-child {
    margin-bottom: 0;
}

.pq-blog-post.pq-list {
    padding: 0;
    background-color: transparent;
    padding-bottom: 30px;
    border-bottom: 1px solid #0000001f;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    margin-bottom: 30px;
}

.pq-blog-post.pq-list .pq-blog-area {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

.pq-bg-gray .pq-blog-post.pq-list .pq-blog-area {
    background-color: var(--white-color);
}

.pq-blog-post.pq-list .pq-blog-area .pq-post-meta {
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.pq-blog-post.pq-list .pq-blog-area .pq-post-meta ul .pq-post-category a {
    color: var(--primary-color);
}

.pq-blog-post.pq-list.pq-active .pq-blog-area .pq-post-meta ul .pq-post-category a {
    color: var(--primary-color);
}

.pq-blog-post.pq-list .pq-blog-area .pq-post-meta ul a i {
    margin-right: 8px;
}

.pq-blog-post.pq-list .pq-blog-area .pq-blog-contain {
    position: relative;
    z-index: 1;
}

.pq-blog-post.pq-list .pq-blog-area .pq-blog-contain .pq-blog-title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
    max-width: 600px;
}

.pq-blog-post.pq-list.pq-active .pq-blog-area .pq-blog-contain .pq-blog-title {
    color: var(--primary-color);
}

.pq-blog-post.pq-list .pq-blog-area .pq-post-date {
    text-align: center;
    position: relative;
    z-index: 1;
    transition: var(--transition-duration);
}

.pq-blog-post.pq-list.pq-active .pq-blog-area .pq-post-date {
    z-index: 0;
}

.pq-blog-post.pq-list .pq-blog-area .pq-post-date a {
    display: block;
    font-size: 18px;
    line-height: 34px;
    text-transform: uppercase;
}

.pq-blog-post.pq-list .pq-blog-area .button-rounded a {
    color: var(--dark-color);
    background-color: transparent;
    border: 1px solid transparent;
}

.pq-blog-post.pq-list.pq-active .pq-blog-area .button-rounded a {
    color: var(--primary-color);
    background-color: transparent;
    border: 1px solid transparent;
}

.pq-blog-post.pq-list .pq-blog-area .button-rounded a:hover {
    color: var(--dark-color);
    background-color: transparent;
    border: 1px solid transparent;
}

@media (max-width: 1099px) {
    .pq-blog-style-2-main{
        grid-template-columns: 1fr;
    }

}

@media (max-width: 767px) {
    .pq-blog-post.pq-list .pq-blog-area {
         grid-template-columns: 1fr;
         gap: 15px;
    }

    .pq-blog-post.pq-list .pq-blog-area .pq-blog-contain .pq-blog-title {
         font-size: 24px;
         line-height: 32px;
    }
}
/*################################# */
/* blog-style-3 */
/* ################################# */
.pq-blog-main .pq-blog-post.pq-style-1{
    background-color: var(--grey-color);
}
/*################################# */
/* contact-form */
/* ################################# */
.pq-form-box-style-1{
    background-color: var(--white-color);
    padding: 45px 30px 45px 30px;
    border-radius: 20px;
}
.pq-form-box.pq-style-1{
    margin-top: 20px;
}
.pq-form-box-style-1 .pq-form .name{
    border-radius: 20px;
}
.pq-form-box-style-1 .pq-form .email{
    border-radius: 20px;
}
.pq-form-box-style-1 .pq-form .phone{
    border-radius: 20px;
}
.pq-form-box-style-1 .pq-form .subject{
    border-radius: 20px;
}
.pq-form-box-style-1 .pq-form .your-name{
    border-radius: 20px;
}
.pq-form-box-style-1 .pq-form input::placeholder{
    color: #020101;
    opacity: 0.5;
}
.pq-form-box-style-1 .pq-form textarea::placeholder{
    color: #020101;
    opacity: 0.5;
}
 .pq-contct-img{
    margin-bottom: -90px;
    border-radius: 20px;
}

@media(max-width:799px) {
    .pq-contct-img {
        width:80%;
        margin-bottom: 3px;
    }

}
/*################################# */
/* contact-form-style-2 */
/* ################################# */
.pq-form-box-style-1.pq-style-2{
    background-color: #F3F3F3;
}
.pq-form-box-style-1.pq-style-2 .pq-form input{
    background-color: #FFFFFF;
    color:var(--dark-color);
}
.pq-form-box-style-1.pq-style-2 .pq-form textarea{
    background-color: #FFFFFF;
    color:var(--dark-color);
}
.pq-form-box.pq-style-2{
    margin-top: 20px;
}

/*################################# */
/* blog-sidebar */
/* ################################# */
.pq-blog-details-main {
    display: flex;
    gap:30px;
}
.pq-blog-post.pq-style-3{
    background-color: var(--grey-color);
    margin-bottom: 20px;
}
.pq-blog-group-style-1{
    background-color: var(--grey-color);
    padding: 30px;
    border-radius: var(--border-radius);
}
.pq-blog-group-style-1 .pq-blog-heading {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 20px;
}
.pq-blog-group-style-1 .pq-blog-small-img{
    border-radius: var(--border-radius);
}
.pq-blog-group-style-1 .pq-blog-social .pq-footer-social-style-1.pq-style-4 ul li a{
   background: none;
}
 .pq-tag-blog.pq-style-1{
    background-color: var(--grey-color);
    padding: 25px;
    border-radius: var(--border-radius);
    margin-top: 30px;
}

.pq-blog-group .pq-blog-heading{
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 20px;
}
.pq-blog-group .pq-blog-small-img{
    border-radius: 20px;
}
.pq-blog-group .pq-blog-description{
    margin-top: 15px;
}
.pq-social-icon ul li{
    list-style: none;
}
.pq-blog-social .pq-blog-social-style-1 .pq-social-icons{
    display: flex;
    gap:30px;
}
 .pq-blog-social-style-1 ul li a{
    background: none;
    margin: 2px;
    font-size: 18px;
    line-height: 50px;
    color: var(--dark-color);
    text-align: center;
    display: inline-block;
    padding: 0;
}
.pq-blog-social-style-1 .pq-social-icons .pq-facebook i{
    width: 21px;
    height: 21px;
    background-color: black;
    color: white;
    line-height: 29px;
    border-radius: 100%;
    font-size: 14px;

}
.pq-recent-main{
    padding: 30px;
    background-color: var(--grey-color);
    border-radius: var(--border-radius);
    margin-top: 30px;
}
.pq-recent-main .pq-blog-heading{
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 20px;
}
.pq-blog-main-style-1 .pq-recent-post{
    display: flex;
    gap:15px;
    margin-bottom: 27px;
}
.pq-recent-post .pq-recent-post-media img{
    width: 80px;
    height:80px;
    border-radius: 20px;
}
.pq-recent-post .pq-recent-post-info a{
    font-size: 16px;
    line-height: 24px;

}
.pq-recent-post .pq-recent-post-info .pq-recent-link{
    font-size: 16px;
    line-height: 24px;
}
.pq-recent-post .pq-recent-post-info i{
    margin-right: 10px;
}
.pq-recent-post .pq-recent-post-info h6 a:hover{
    color:var(--dark-color);
}
.pq-blog-group .pq-tag-blog{
    background-color: var(--grey-color);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-top: 30px;
}
.pq-tag-blog .pq-tag-links {
    margin-top: 20px;
    padding: 16px;
}
.pq-tag-blog .pq-tag-links a{
    font-size: 16px;
    padding: 4px 16px;
    background-color: var(--white-color);
    color:var(--secondary-color);
    text-transform: capitalize;
    margin: 0px 10px 10px 0px;
    display: inline-block;
    border-radius: 10px;
}
.pq-tag-blog .pq-tag-links a:hover{
    background-color: var(--primary-color);
    color:var(--white-color);
}
.pq-blog-group .pq-tag-blog.pq-style-1{
    padding: 14px;
}

@media(max-width:1023px) {
  .pq-blog-details-main{
    display: block;
  }
}
@media(max-width:767px) {
    .pq-right-blog.pq-style-1{
        grid-template-columns: 1fr;
    }

}
@media(max-width:479px) {
    .pq-blog-main-style-1 .pq-recent-post{
        display: block;
    }
}
@media(max-width:397px) {
    .pq-blog-main-style-1 .pq-recent-post{
        display: block;
    }
    .pq-blog-group .pq-tag-blog {
        padding:10px;
    }
    .pq-tag-blog .pq-tag-links{
        padding: 10px;
    }
}
/*################################# */
/* blog-left-sidebar */
/* ################################# */
.pq-right-blog.pq-style-1{
   display: grid;
   grid-template-columns: 1fr 2fr;
   gap:30px;
}
@media(max-width:1099px) {
    .pq-right-blog.pq-style-1{
        grid-template-columns: 1fr;
    }
}
/*################################# */
/* blog-right-sidebar */
/* ################################# */
.pq-right-blog.pq-style-2{
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap:30px;
 }
 @media(max-width:1099px) {
    .pq-right-blog.pq-style-2{
        grid-template-columns: 1fr;
    }
}

/*################################# */
/* blog-details */
/* ################################# */
.pq-blockquote blockquote{
    padding: 30px;
    background-color: var(--grey-color);
    border-left: 5px solid var(--primary-color);
    border-radius: var(--border-radius);
    position: relative;
}
.pq-blockquote blockquote strong{
    color:var(--primary-color);
    font-weight: 400;
    display: block;
    margin-top: 10px;
    font-style: italic;
    font-family: var(--title-fonts);
}
.pq-blog-sidebar .pq-blockquote blockquote:before{
    content: "\f10e";
    font-weight: 900;
    font-size: 76px;
    line-height: 84px;
    opacity: 0.1;
    font-family: "Font Awesome 5 Free";
    position: absolute;
    right:23px;
    bottom: 10px;
    color:var(--primary-color);
}
.pq-blog-sidebar .pq-blog-list{
    margin-top: 30px;
}
.pq-blog-sidebar .pq-blog-list .pq-blog-heading{
    margin-bottom: 10px;
}
.pq-blog-list-main{
    display: flex;
    gap:15px;
    margin-top: 30px;
}
.pq-blog-list-main .pq-list-image-1 img{
    border-radius: 20px;
}
.pq-blog-list-main .pq-list-image-2 img{
    border-radius: 20px;
}
.pq-blog-list-description .pq-list-description{
    margin-top: 30px;
}

@media (max-width: 767px) {
    .pq-blog-list-main {
        display: block;
    }
    .pq-blockquote blockquote{
        font-size: 14px;
    }
    .pq-blog-heading{
        font-size: 14px;
    }
    .pq-icon-list-items{
        font-size: 14px;
    }
    .pq-list-image-2{
        margin-top: 15px;
    }
    .pq-comment-reply-title{
        font-size: 28px;
    }
    .widget.widget_search{
      margin-top: 15px;
    }

}
/*################################# */
/* single-page navigation */
/* ################################# */
.pq-page-post-navigation{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    background-color: var(--grey-color);
    border-radius: var(--border-radius);
}
.pq-page-post-navigation .pq-page-post-nav {
    position: relative;
    padding-left: 75px;
    display: inline-block;
    cursor: pointer;
}
.pq-page-post-navigation .pq-page-post-nav:hover::before{
    background-color: var(--primary-color);

}
.pq-page-post-navigation .pq-page-post-nav .pq-post-nav-content:hover .pq-post-nav-label {
    color: var(--primary-color);
 }
.pq-page-post-navigation .pq-page-post-nav:before{
    content: "\e64a";
    width: 60px;
    height:60px;
    position: absolute;
    font-weight: 600;
    line-height: 68px;
    top:50%;
    transform: translate(0 ,-50%);
    left:0;
    font-size: 20px;
    line-height: 60px;
    font-family: 'themify';
    color: var(--white-color);
     background: var(--dark-color);
     text-align: center;
     border-radius: var(--big--border-radius);
     transition: var(--transition-duration);
}
.pq-page-post-navigation .pq-page-post-nav:before:hover{
    background-color: var(--primary-color);
}
.pq-page-post-navigation .pq-page-post-nav.pq-next:before{
    content: "\e649";
    right: 0;
}
.pq-page-post-navigation .pq-page-post-nav .pq-post-nav-content .pq-post-nav-label{
     color: var(--dark-color);
     font-size: 18px;
     line-height: 26px;
     text-transform: uppercase;
     font-weight: 400;
     font-family: var(--title-fonts);
     letter-spacing: 1px;
}
.pq-single-post-social-icon-box{
	display: flex;
	justify-content: space-between;
	border-top: 1px solid var(--primary-color);
	border-bottom: 1px solid var(--primary-color);
	align-items: center;
	padding: 15px 0;
	margin: 45px 0;
}

.pq-single-post-social-icon-box .pq-share-link-list{
	display: flex;
	gap: 15px;
	margin-bottom: 0;
	align-items: center;
}

.pq-single-post-social-icon-box .pq-share-link-list .pq-share-link .pq-single-post-social-title{
	font-size: 16px;
	line-height: 24px;
	text-transform: uppercase;
}

.pq-single-post-social-icon-box .pq-share-link-list .pq-share-link a{
	font-size: 18px;
	line-height: 50px;
	width: 50px;
	height: 50px;
	background-color: var(--grey-color);
	color: var(--dark-color);
	display: inline-block;
	text-align: center;
	border-radius: 10px;
	transition: var(--transition);
    border-radius: var(--big--border-radius);
}

.pq-single-post-social-icon-box .pq-share-link-list .pq-share-link a:hover{
	color:var(--white-color);
	background-color: var(--primary-color);
}

.pq-single-post-social-icon-box .pq-single-post-tags{
	display: flex;
	gap: 15px;
	align-items: center;
}

.pq-single-post-social-icon-box .pq-single-post-tags .pq-single-post-tags-title{
	font-size: 16px;
	line-height: 24px;
	color: var(--dark-color);
	text-transform: uppercase;
	font-weight: 700;
	font-family: var(--title-fonts);
}

.pq-single-post-social-icon-box .pq-single-post-tags .pq-tags-share{
	font-size: 16px;
	text-transform: uppercase;
	background: var(--grey-color);
	display: inline-block;
	color: var(--dark-color);
	padding: 4px 16px;
	border-radius: 20px;
    font-family: var(--title-fonts);
	border: 1px solid var(--white-color);
	transition: var(--transition);
}

.pq-single-post-social-icon-box .pq-single-post-tags .pq-tags-share:hover{
	color:var(--white-color);
	background-color: var(--primary-color);
}
.pq-single-post-usernav{
	padding: 30px;
	background-color: var(--grey-color);
	border-radius: 10px;
}

.pq-single-post-usernav .pq-user{
	display: flex;
	gap: 30px;
}

.pq-single-post-usernav .pq-user .pq-user-media .pq-img{
	width: 132px;
	border-radius: var(--big--border-radius);
}

.pq-single-post-usernav .pq-user .pq-user-info .pq-user-title{
	font-size: 22px;
    line-height: 30px;
    margin-bottom: 5px;
}

.pq-single-post-usernav .pq-user .pq-user-info .pq-user-sub-title{
	font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
	margin-bottom: 15px;
}
    .pq-comment-area{
        margin-top: 30px;
    }

    .pq-comment-area .pq-comments-title{
        padding-top: 30px;
        margin-bottom: 30px;

    }
    .pq-comment-area .pq-commentlist .pq-comment-item{
        padding: 30px;
        background-color: var(--grey-color);

    }

    .pq-comment-area .pq-commentlist .pq-comment-item .pq-comment-info-box{
        display: flex;
        gap: 30px;
    }

    .pq-comment-area .pq-commentlist .pq-comment-item .pq-comment-info-box .pq-user-media img{
        width: 120px;
        border-radius: 10px;
    }

    .pq-comment-area .pq-commentlist .pq-comment-item .pq-comment-info-box .pq-comment-info .pq-comment-top{
        display: flex;
        justify-content: space-between;

    }
    .pq-comment-area .pq-commentlist .pq-comment-item .pq-comment-info-box .pq-comment-info .pq-comment-top .pq-comment-repy{
        color: var(--primary-color);
        text-transform: uppercase;
    }

    .pq-comment-area .pq-commentlist .pq-comment-item .pq-comment-info-box .pq-comment-info .pq-comment-description{
        margin-bottom: 0;
    }
    .pq-form.pq-style-2 .pq-input-box .form-control{
        margin-bottom: 30px;
        border-radius: var(--border-radius);
        font-size: 16px;
        line-height: 24px;
    }

    .pq-form.pq-style-2 textarea{
        background-color: var(--grey-color);
        padding: 10px 15px;
        height:200px;

    }

    .pq-form.pq-style-2 .pq-button-text {
        display: contents;
    }


    @media(max-width:767px) {
        .pq-single-post-social-icon-box{
               display: block;
        }
        .pq-single-post-tags{
            margin-left: 23px;
            margin-top: 14px;
        }
        .pq-single-post-usernav .pq-user{
            display: block;
        }
    }
    @media(max-width:479px) {
        .pq-page-post-navigation{
               padding: 30px 15px;
               flex-direction: column;
               border-radius: var(--border-radius);
               gap:30px;
        }
        .pq-single-post-social-icon-box .pq-share-link-list.pq-share-link-list{
            margin-top: 5px;
            gap:0;
        }
        .widget{
            margin-top: 10px;
        }

    }


/*################################# */
/* accordian-box */
/* ################################# */
.pq-accordian-box-main{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.pq-form-box-style-1.style-1{
    background-color: var(--primary-color);
}
.accordian-box {
    height: 100%;
    max-height: 700px;

  }

@media(max-width: 767px) {
    .accordian-box {
        height: auto;
        max-height: none;
    }
}
@media(min-width: 1660px) {
    .pq-accordion-block {
        max-height: 1200px;
    }
}
.pq-accordion-block {
    background-color: var(--white-color);
    padding: 30px 30px 5px 30px;
    border-radius: 10px 10px 10px 10px;

}

.pq-accordion-box.pq-style-1 {
    border-bottom: 1px solid rgb(0, 0, 0, 0.2);
    margin-bottom: 24px;
    padding-bottom: 24px;
    position: relative;
}

.pq-accordion-box.pq-style-1:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.pq-bg-dark .pq-accordion-box.pq-style-1 {
    border-bottom: 1px solid rgb(255, 255, 255, 0.2);
}

.pq-accordion-box.pq-style-1 .pq-accordion-info .pq-accordion-title {
    font-size: 20px;
    line-height: 28px;
    padding-right: 30px;
}

.pq-bg-dark .pq-accordion-box.pq-style-1 .pq-accordion-info .pq-accordion-title {
    color: var(--white-color);
}

.pq-accordion-box.pq-style-1.pq-active .pq-accordion-info .pq-accordion-title {
    color: var(--primary-color);
}

.pq-bg-dark .pq-accordion-box.pq-style-1.pq-active .pq-accordion-info .pq-accordion-title {
    color: var(--primary-color);
}

.pq-accordion-box.pq-style-1 .pq-accordion-info i {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 26px;
}

.pq-bg-dark .pq-accordion-box.pq-style-1 .pq-accordion-info i {
    color: var(--white-color);
    position: absolute;
    top: 0;
    right: 0;
    font-size: 26px;
}

.pq-accordion-box.pq-style-1.pq-active .pq-accordion-info i.active {
    opacity: 0;
}

.pq-accordion-box.pq-style-1.pq-active .pq-accordion-info i.inactive {
    opacity: 1;
}

/* .pq-accordion-box.pq-style-1 .pq-accordion-details {
    overflow: hidden;
    transition: all 1s ease;
} */

.pq-accordion-box.pq-style-1 .pq-accordion-details p {
    margin-top: 10px;
    margin-bottom: 0;
}
.pq-accordian-img{
    border-radius: 10px;
}
@media (max-width: 1279px) {
    .pq-accordian-box-main {
        grid-template-columns: 1fr;
    }

    .pq-bg-accordian {
        background-image: none;
    }
}



/*################################# */
/* Error */
/* ################################# */
.pq-error-box{
    text-align: center;
    padding-top: 50px;
}
.pq-error-box .pq-error-text{
    font-size: 420px;
    line-height: 0.8;
    color:var(--primary-color);
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 30px;
}

@media(max-width:767px) {
    .pq-error-box .pq-error-text{
        font-size: 183px;
    }
    .pq-error-box .pq-error-content{
        font-size: 30px;
}
}

/*################################# */
/* footer */
/* ################################# */

.pq-footer {
    background-color: var(--grey-color);
    display: inline-block;
    width: 100%;
}

.pq-footer .pq-img-logo {
    height: 60px;
    width: auto;
}

.pq-top-footer-main{
    display: grid;
    grid-template-columns: 3fr 2fr 5fr 1fr;
    gap:30px;
}
.pq-contact-detail-style-1{
  margin-left: -32px;
  margin-top: 20px;
}

.pq-contact-detail-style-1 ul.pq-contact li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.pq-contact-detail-style-1 ul.pq-contact li:last-child {
    margin-bottom: 0;
}

.pq-contact-detail-style-1 ul.pq-contact li span {
    position: relative;
    border: none;
    display: block;
    color: var(--white-color);
}

.pq-contact-detail-style-1 ul.pq-contact li,
.pq-contact-detail-style-1 ul.pq-contact li a {
    color: var(--white-color);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
    padding: 0;
    margin-bottom: 10px;
}

.pq-contact-detail-style-1 ul.pq-contact li a {
    padding: 0;
}

.pq-contact-detail-style-1 ul.pq-contact li .pt-icon {
    height: 26px;
}

.pq-contact-detail-style-1 ul.pq-contact li i {
    font-size: 18px;
    color: var(--white-color);
    margin-right: 15px;
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    line-height: 51px;
    border-radius: var(--big--border-radius);
    text-align: center;
}

.pq-contact-detail-style-1 ul.pq-contact li svg {
    width: 22px;
    height: 20px;
}

.pq-contact-detail-style-1 ul.pq-contact li svg path {
    fill: var(--white-color);
}

.pq-footer-social-style-1 ul{
    display: flex;
    gap: 10px;
    margin-top: 20px;

}

.pq-footer-social-style-1 ul li {
    list-style: none;
    margin-bottom: 0;
}

.pq-footer-social-style-1 ul li a {
    width: 50px;
    height: 50px;
    font-size: 18px;
    line-height: 50px;
    background: var(--white-color);
    color: var(--dark-color);
    text-align: center;
    display: inline-block;
    border-radius: 100%;
    padding: 0;
}

.pq-footer-social-style-1 ul li a:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.pq-menu-info {
    border-right: 1px solid var(--light-white);
    position: relative;

}

.pq-menu-info {
    min-height: 100%;
}

.pq-menu-info .pq-footer-title {
    font-size: 24px;
    line-height: 32px;
    position: relative;
    padding: 0;
    margin-top: 15px;
    margin-bottom: 13px;
    color: var(--white-color);
}

.pq-footer .pq-menu-link {
    margin-bottom: 0;
}

.pq-menu-container .pq-menu-link .pq-menu-item {
    position: relative;
}

.pq-menu-container ul.pq-menu-link {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pq-menu-container ul.pq-menu-link li.pq-menu-item a {
    color: var(--white-color);
}

.pq-menu-container ul.pq-menu-link li.pq-menu-item a {
    padding: 0 0 0 20px;
    display: inline-block;
}

.pq-menu-container ul.pq-menu-link li.pq-menu-item a:hover {
    padding: 0 0 0 25px;
}

.pq-menu-container .pq-menu-link .pq-menu-item a::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 10px;
    height: 2px;
    display: inline-block;
    background: var(--primary-color);
    margin: auto 0;
}

.pq-subscribe-details .pq-subscribe-title {
    font-size: 24px;
    line-height: 32px;
    position: relative;
    padding: 0;
    margin-top: 15px;
    margin-bottom: 16px;
    color: var(--white-color);
}

.pq-subscribe-details p {
    color: var(--white-color);
    max-width: 320px;
}

.pq-footer.form-field {
    display: inline-block;
    position: relative;
    width: 100%;
    color: var(--white-color);
}

.form-field .email {
    color: var(--white-color);
    border-radius: 100px;
    border: 1px solid rgba(250, 250, 250, 0.2);
    background-color: var(--white-color);

}

.pq-form-detail .form-field input.submit {
    background-color: transparent;
    font-size: 0;
    padding: 0;
    width: 53px;
    height: 53px;
    position: absolute;
    right: 0;
    top:0;
    z-index: 9;
    border-radius: 100px;
    background-position: center;
    background-size: 28px auto;
    background-repeat: no-repeat;
    border: none;
}
.pq-form-detail .form-field{
    display: inline-block;
    width: 100%;
    position: relative;
    max-width: 320px;

}
.pq-form-detail .form-field svg {
    position: absolute;
    right: 15px;
    top:12px;
}

.pq-term-condition {
    display:block;
    gap: 20px;
    margin-bottom: 5px;
    float: none;

}

.pq-term-condition label {
    color: var(--white-color);
}


@media (max-width: 1399px) {
    .pq-term-condition label{
       font-size: 15px;

}
}
@media (max-width: 1279px) {
    .pq-term-condition label{
       font-size: 15px;

}
}

/*################################# */
/* back-to-top */
/* ################################# */

.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 55px;
    width: 55px;
    cursor: pointer;
    display: block;
    border-radius: 55px;
    box-shadow: inset 0 0 0 2px var(--dark-color);
    background: var(--grey-color);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap::after {
    position: absolute;
    font-family: 'themify';
    content: "\e660";
    text-align: center;
    line-height: 55px;
    font-size: 24px;
    color: var(--dark-color);
    left: 0;
    top: 0;
    height: 55px;
    width: 55px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap:hover::after {
    color: var(--primary-color);
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: var(--primary-color);
    stroke-width: 4;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}



/* ################################# */
/* Pagination */
/* ################################# */

.pq-pagination {
    margin-top: 50px;
}
.pq-pagination.pq-style-1{
    margin-left: 185px;
}

.pq-pagination .page-numbers {
    display: flex;
    list-style: none;
    margin:0;
   }

.pq-pagination .page-numbers li:first-child .page-numbers {
    margin-left: 0;
}
.pq-pagination.pq-left-grid{
    margin-left: 10%;
}
.pq-pagination .page-numbers li .page-numbers {
    position: relative;
    letter-spacing: 1px;
    display: block;
    padding: 0px 23px;
    height: 60px;
    width: 60px;
    text-align: center;
    line-height: 60px;
    margin: 0 5px;
    text-transform: uppercase;
    color: var(--white-color);
    background-color: var(--dark-color);
    border: 0px solid var(--dark-color);
 border-radius: var(--big--border-radius);
}

.pq-pagination .page-numbers li .page-numbers:hover {
    color: var(--white-color);
    text-decoration: none;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    z-index: 2;
}

.pq-pagination .page-numbers li .page-numbers:focus {
    box-shadow: none;
    outline: 0;
    z-index: 2;
}

.pq-pagination .page-numbers li .page-numbers:not(:disabled):not(.disabled) {
    cursor: pointer
}

.pq-pagination .page-numbers li .page-numbers.current {
    color: var(--white-color);
    background: var(--primary-color);
    border-color: var(--primary-color);
    z-index: 1;
   transition: var(--transition-duration);
}

.pq-pagination .page-numbers li .next.page-numbers,
.pq-pagination .page-numbers li .prev.page-numbers {
    width: auto;
}
.pq-pagination.pq-style-1 .page-numbers{
    margin-left: 0;
}

@media(max-width:479px) {
    .pq-pagination .page-numbers .next.page-numbers{
        display: none;
    }
}
/* ################################# */
/* map */
/* ################################# */
.pq-map-1 iframe{
    width: 100%;
    height: 600px;
}
/* ################################# */
/* custom-css */
/* ################################# */

.pq-bg-gray {
    background-color: var(--grey-color);
}

.pq-bg-black {
    background-color: var(--dark-color);
}

.pq-bg-orange {
    background-color: var(--primary-color);
}

.pq-bg-dark {
    background-color: var(--dark-color);
}
.pq-bg-lightblue {
    background-color: #F3F3F3
}
.pq-bg-contact{
    background-color: var(--primary-color);
}
.pq-img-cut {
    position: relative;
}

.pq-img-cut-1 {
    position: relative;
}

.pq-img-cut::before {
    content: "";
    background-image: url(../image/aboutus/s1.svg);
    width: 100%;
    height: 28px;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: -1px;
    left: 0;
}

.pq-img-cut-1::after {
    content: "";
    background-image: url(../image/site/svg2.svg);
    width: 100%;
    height: 28px;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -1px;
    left: 0;
}


.pq-bg-img {
    background-image: url(../image/testimonial/background.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 1;
    transition: background-color 0.3s, border-radius 0.3s, opacity 0.3s;
}
.pq-bg-accordian{
    /* background-image: url(../image/gmfb_ос.webp); */
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 50% 100%;
    opacity: 1;
}

@media(max-width: 1279px) {
    .pq-bg-accordian{
        background-image: none;
    }
}
@media(max-width: 767px) {
    .pq-img-cut-1::after{
        background-image: none;
    }
    .pq-img-cut::before{
        background-image: none;
    }
}
/*===== Image Effect Left =====*/

.img-pqkey-left {
    animation: img-pqkey-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
    opacity: 0;
}

@keyframes img-pqkey-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;
    }
}

.animated {
    animation-duration: 1.25s;
}
.button-rounded a i.flaticon-right {
    padding-top: 5px;
    display: inline-block;
}

@media (max-width: 767px) {
    .rev-text {
        font-size: 12px !important;
    }
}
.img-fluid{
    border-radius: 10px;
}

.font-size-24{
    font-size: 24px;
    line-height: 2rem !important;
}
@media (max-width: 767px) {
    .font-size-24 {
        font-size: 20px !important;
        padding-top: 10px;
    }
}
@media (max-width: 979px) {
    .mobile-font-size-18 {
        font-size: 18px !important;
   }
}

.mobile-br{
    display: none;
}

@media (max-width: 767px) {

    .desktop-display-none { display: none; }
    .mobile-br { display: block; }
}
.size-icon{
    width: 50px;
    height: 50px;
    margin-top: 20px;
}
.size-icon-40 {
    width: 40px;
    height: 40px;
    margin-top: 20px;
}
@media(max-width:1279px) {
    .pq-service-box-style-3{
        height: auto;}
    .pq-service-box-style-3 .pq-service-box-information .pq-service-box-description{
        width: auto;
        }
    .img-auto{
        height: auto;
    }


}
#slider-2-slide-5-layer-1 { color: #000 !important;  }
#slider-2-slide-5-layer-0 { color: #000 !important; }
#slider-2-slide-5-layer-5 { color: #000 !important;  }
/* #rev_slider_2_1_forcefullwidth   { height: 100vh !important; } */
/* #rev_slider_2_1_wrapper  { height: 100vh !important; } */
/* #rev_slider_2_1 { height: 100vh !important; max-height: 100vh !important;} */
@media (max-width: 767px) {
    html, body {
        overflow-x: hidden !important;
        /* max-width: 100vw; */
    }
    #slider-2-slide-5-layer-3{
       display: none !important;
    }
    #slider-2-slide-5-layer-1{
        font-size: 24px !important;
        /* top: 200px !important; */
    }
    #slider-2-slide-5-layer-2{
        /* top: 332px !important; */
        background-color: rgb(93, 155, 60) !important;
        width: 255px !important;
        font-size: 12px !important;

        /* height: 250px !important; */
    }
    rs-mask-wrap{

       top: 10px !important;
    }
}
.banner {
    /* min-height: 100vh; */
    /* height: 100vh; */
    box-sizing: border-box;
}



.h-500 {
    height: 500px;
}
@media(max-width: 767px) {
    .h-500 {
            height: auto;
        }
}

.phone-bubbles {
    position: relative;
    width: 320px;
    height: 600px;
    max-height: 600px;
    margin: 0 auto;
  }

  .phone-bubbles .phone {
    position: absolute !important;
    width: 550px !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    z-index: 2;
  }

  /* === Позиции как на скрине === */
  .bubble {
    position: absolute !important;
    /* width: 24px; */
    /* height: 24px; */
    /* z-index: 1; */
    animation: float 5s ease-in-out infinite;
  }

  .bubble-1 {
    width: 130px !important;
    bottom: 220px;
    left: 320px;
    z-index: 3 !important;
    animation-duration: 5.2s;
    animation-delay: 0s;
  }

  .bubble-2 {
    width: 130px !important;
    top: 100px;
    right: 280px;
    z-index: 3 !important;
    animation-duration: 6.1s;
    animation-delay: 0.8s;
  }

  .bubble-3 {
    width: 180px !important;
    top: 100px;
    z-index: 3 !important;
    left: 290px;
    animation-duration: 4.7s;
    animation-delay: 0.3s;
  }

  .bubble-4 {
    width: 180px !important;
    bottom: 70px;
    right: 280px;
    z-index: 3 !important;
    animation-duration: 5.9s;
    animation-delay: 1.2s;
  }

  .bubble-5 {
    width: 130px !important;
    bottom: 70px;
    left: 370px;
    z-index: 3 !important;
    animation-duration: 5.9s;
    animation-delay: 1.2s;
  }
  .bubble-6 {
    width: 130px !important;
    bottom: 220px;
    right: 280px;
    z-index: 3 !important;
    animation-duration: 5.5s;
    animation-delay: 0.6s;
  }
  .bubble-7 {
    width: 130px !important;
    bottom: 70px;
    left: 280px;
    z-index: 3 !important;
    animation-duration: 5.9s;
    animation-delay: 1.2s;
  }

  @keyframes float {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-8px); }
    100% { transform: translateY(0); }
  }
  .bubble-1 { animation-duration: 2.8s; animation-delay: 0s; }
  .bubble-2 { animation-duration: 3.1s; animation-delay: 0.4s; }
  .bubble-3 { animation-duration: 2.5s; animation-delay: 0.2s; }
  .bubble-4 { animation-duration: 3.4s; animation-delay: 0.6s; }
  .bubble-5 { animation-duration: 3.0s; animation-delay: 0.3s; }
  /* Мобильная версия — уменьшаем и прячем лишние */
  @media (max-width: 767px) {
    .phone-bubbles {
      width: 220px;
      height: 300px;
    }
    .phone-bubbles .phone {
      width: 120px;
    }
    .bubble {
      width: 24px;
      height: 24px;
    }
    .bubble-4, .bubble-5 {
      display: none;
    }
  }
  .rs-parallax-wrap[style*="top: 190px"] {
    top: 110px !important;
  }

.pq-accordion-box.pq-style-1 .pq-accordion-details {
    overflow: hidden;
    /* transition: all 0.3s ease; */
}
.pt-6{
    padding-top: 6rem;
}
        .color-black {
            color: #00000;
        }

        /* Стили для сетки отзывов */
        .pq-testimonial-box-grid {
            margin-top: 30px;
        }

        .pq-testimonial-box-grid .pq-testimonial-box-style-2 {
            height: 100%;
            margin-bottom: 0;
        }

        /* Фиксированная высота для описания отзывов */
        .pq-testimonial-box-description {
            height: 130px;


            margin-bottom: 15px;
        }

        /* Адаптивность для мобильных устройств */
        @media (max-width: 768px) {


            .pq-testimonial-box-description {
                height: 90px;
                -webkit-line-clamp: 3;
            }
        }

        .mb-20 {
            margin-bottom: 20px !important;
        }

        .mt-3 {
            margin-top: 3% !important;
        }

        .gmfb-hero {
            background-color: #f3f3f3;
            padding: 80px 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
        }

        .gmfb-hero-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            width: 100%;
            gap: 40px;
        }

        .gmfb-text-block {
            flex: 1 1 500px;
        }

        .gmfb-subtitle {
            font-size: 14px;
            text-transform: uppercase;
            color: #555;
            margin-bottom: 20px;
        }

        .gmfb-title {
            font-size: 36px;
            font-weight: 600;
            color: #000;
            margin-bottom: 30px;
            line-height: 1.3;
        }

        .gmfb-button {
            display: inline-block;
            background-color: #5D9B3C;
            color: #fff;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-size: 16px;
            margin-bottom: 20px;
            transition: background 0.3s;
        }

        .gmfb-button:hover {
            background-color: #4a7c2e;
        }

        .gmfb-note {
            font-size: 14px;
            color: #666;
        }

        .gmfb-image-block {
            position: relative;
            flex: 1 1 400px;
            max-width: 400px;
        }

        .gmfb-image-block .phone {
            width: 100%;
            height: auto;
            z-index: 2;
            position: relative;
        }

        .bubble {
            position: absolute;
            width: 40px;
            height: 40px;
            opacity: 0;
            animation: float 4s infinite ease-in-out;
        }

        .bubble-1 {
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .bubble-2 {
            top: 30%;
            left: -10%;
            animation-delay: 0.5s;
        }

        .bubble-3 {
            top: 20%;
            right: 10%;
            animation-delay: 1s;
        }

        .bubble-4 {
            bottom: 20%;
            left: 5%;
            animation-delay: 1.5s;
        }

        .bubble-5 {
            bottom: 10%;
            right: 5%;
            animation-delay: 2s;
        }

        .bubble-6 {
            bottom: 30%;
            right: -5%;
            animation-delay: 2.5s;
        }

        .bubble-7 {
            top: 50%;
            left: 50%;
            animation-delay: 3s;
        }

        @keyframes float {
            0% {
                transform: translateY(0) scale(0.8);
                opacity: 0;
            }

            20% {
                opacity: 1;
            }

            100% {
                transform: translateY(-100px) scale(1.2);
                opacity: 0;
            }
        }

        .animate {
            opacity: 0;
        }

        .fadeInUp {
            animation: fadeInUp 1s forwards;
        }

        .fadeInRight {
            animation: fadeInRight 1s forwards;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .delay-1 {
            animation-delay: 0.2s;
        }

        .delay-2 {
            animation-delay: 0.4s;
        }

        .delay-3 {
            animation-delay: 0.6s;
        }

        .delay-4 {
            animation-delay: 0.8s;
        }

        @media (max-width: 768px) {
            .gmfb-hero-content {
                flex-direction: column;
                text-align: center;
            }

            .gmfb-title {
                font-size: 28px;
            }
        }


        /* ---------- HERO-1 styles (как в первом экране) ---------- */
        .hero-1 {
            position: relative;
            width: 100%;
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: #f3f3f3;
            padding: 80px 0;
            overflow: hidden
        }

        .hero-1__wrap {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 40px;
            padding: 50px 15px 0px 0px
        }

        .hero-1__text {
            flex: 1 1 500px
        }

        .hero-1__subtitle {
            font-family: 'Nunito', sans-serif;
            font-size: 14px;
            text-transform: uppercase;
            color: #555;
            margin-bottom: 20px;
            letter-spacing: 1px
        }

        .hero-1__title {
            font-family: 'Nunito', sans-serif;
            font-size: 36px;
            font-weight: 600;
            color: #000;
            line-height: 1.3;
            margin-bottom: 30px
        }

        .hero-1__btn {
            display: inline-flex;
            background: var(--primary, #5D9B3C);
            color: #fff;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-family: 'Nunito', sans-serif;
            font-size: 16px;
            margin-bottom: 20px;
            transition: background .3s
        }

        .hero-1__btn:hover {
            background: #4a7c2e;
            color: #fff;
            text-decoration: none
        }

        .hero-1__note {
            font-family: 'Nunito', sans-serif;
            font-size: 14px;
            color: #666
        }

        .hero-1__visual {
            flex: 1 1 400px;
            position: relative;
            max-width: 400px;
            margin-right: 50px;
        }

        .hero-1__phone {
            width: 100%;
            height: auto;
            position: relative;
            z-index: 2
        }

        .hero-1__bubble {
            position: absolute;
            width: 100%;
            height: 30%;
            opacity: 1;
            animation: float 4s infinite ease-in-out
        }

        .hero-1__bubble--1 {
            top: 1%;
            left: 45%;
            animation-delay: 0s
        }

        .hero-1__bubble--2 {
            top: 1%;
            right: 35%;
            animation-delay: .5s
        }

        .hero-1__bubble--3 {
            top: 53%;
            left: 38%;
            animation-delay: 1s
        }

        .hero-1__bubble--4 {
            bottom: 42%;
            right: 45%;
            animation-delay: 1.5s
        }

        .hero-1__bubble--5 {
            bottom: 47%;
            left: 35%;
            animation-delay: 2s
        }

        .hero-1__bubble--6 {
            bottom: 17%;
            right: 35%;
            animation-delay: 2.5s
        }

        .hero-1__bubble--7 {
            top: 24%;
            left: 60%;
            animation-delay: 3s
        }

        @keyframes float {
            0% {
                transform: translateY(0) scale(.8);
                opacity: 0
            }

            20% {
                opacity: 1
            }

            100% {
                transform: translateY(-100px) scale(1.2);
                opacity: 0
            }
        }

        /* ---------- мобильная адаптация ---------- */
        @media(max-width:768px) {
            .hero-1__visual {
                display: none
            }

            .hero-1__wrap {
                text-align: center
            }

            .hero-1__title {
                font-size: 28px
            }
        }

        @media (min-width: 1640px) {
            .hero-1__phone {
                width: 550px;
            }

            .hero-1__bubble--1 {
                left: 85%
            }

            .hero-1__bubble--2 {
                right: 35%
            }

            .hero-1__bubble--3 {
                left: 85%
            }

            .hero-1__bubble--4 {
                right: 45%
            }

            .hero-1__bubble--5 {
                left: 100%
            }

            .hero-1__bubble--6 {
                right: 35%
            }

            .hero-1__bubble--7 {
                left: 70%
            }


        }

.pq-top-footer-main {
    display: grid;
    grid-template-columns: 3fr 2fr 5fr 1fr;
    gap: 30px;
}
                @media (max-width: 1099px) {
                    .pq-top-footer-main {

                        grid-template-columns: 1fr 1fr;
                    }
                }

                @media (max-width: 979px) {
                    .pq-top-footer-main {
                        grid-template-columns: 1fr 1fr;
                        gap: 5px;
                    }
                }

                @media (max-width: 767px) {
                    .pq-top-footer-main {
                        grid-template-columns: 1fr;
                        gap: 5px;
                    }
                }
.pq-portfolio-icon-box.style-1 {
    padding: 45px;
    background-color: var(--grey-color);
    border-radius: 10px;
    position: sticky;
    top: 150px;
}

.pq-portfolio-icon-box.style-1 .pq-portfolio-icon-box-content {
    border-bottom: 1px solid #0000001A;
    margin: 10px 0px 20px 0px;
}

.pq-portfolio-icon-box.style-1 .pq-portfolio-icon-box-content:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.pq-portfolio-icon-box.style-1 .pq-portfolio-icon-box-content .pq-portfolio-icon-box-title {
    font-size: 20px;
    line-height: 28px;
}


.pq-portfolio-icon-box.style-1 .pq-portfolio-icon-box-content .pq-portfolio-icon-box-description {
    font-size: 18px;
    line-height: 26px;
}


.pq-portfolio-icon-box.style-1 .pq-portfolio-icon-box-content .pq-portfolio-social-icon-list {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    margin-left: -17px;
}

.pq-portfolio-icon-box.style-1 .pq-portfolio-icon-box-content .pq-portfolio-social-icon-list .pq-social-icon {
    font-size: 16px;
    line-height: 48px;
    height: 48px;
    width: 48px;
    text-align: center;
    color: var(--white-color);
    background-color: var(--primary-color);
    border-radius: 100%;
}

.pq-portfolio-icon-box.style-1 .pq-portfolio-icon-box-content .pq-portfolio-social-icon-list .pq-social-icon.pq-facebook {
    background-color: #3b5998;
}

.pq-portfolio-icon-box.style-1 .pq-portfolio-icon-box-content .pq-portfolio-social-icon-list .pq-social-icon.pq-twitter {
    background-color: #1da1f2;
}

.pq-portfolio-icon-box.style-1 .pq-portfolio-icon-box-content .pq-portfolio-social-icon-list .pq-social-icon.pq-youtube {
    background-color: #cd201f;
}
