


@import url('../css2');

:root {
    --primary-color: #1b78ff;
    --dark-color: #15141C;
    --secondary-color: #525256;
    --grey-color: #F3F3F3;
    --white-color: #ffffff;
    --body-fonts: "Titillium Web", sans-serif;
    --title-fonts: "Unbounded", 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: var(--font-weight);
    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);
}

/*============  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: 60px 0;
    position: relative;
}

@media(max-width: 1199px) {
    section {
        padding: 50px 0;
    }
}

@media(max-width: 767px) {
    section {
        padding: 40px 0;
    }
}


/* ################################# */
/* Loading */
/* ################################# */

#pq-loading {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    display: flex;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background: var(--white-color);
}

#pq-loading img {
    height: 100px;
    object-fit: contain;
}

/*================================================
    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: 90px;
}

 .pq-header-logo .navbar-brand .header-logo{
    width:192px;
}

#pq-header .navbar-brand img {
    height: 75px;
}

@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: rgba(21, 20, 28, 0.9);
    -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: 0 45px;
    background:rgba(255, 255, 255, 0.2);
    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: 90px;
    display: inline-block;
    color: var(--white-color);

}
 .pq-bottom-header .pq-menu-contain .pq-main-menu .menu-item>a {
    color: var(--white-color);
}

 .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: 22px;
    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 .sub-menu.right {

  left: auto;
  right: 0;

}

 .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:56px;
   height:56px;
   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);
}

@media (max-width: 1499px) {
    header#pq-header .pq-bottom-header {
        padding: 0;
    }
    header#pq-header .pq-bottom-header .pq-menu-contain {
        font-size: 14px;
    }
}

@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;
        padding-bottom: 20px;
    }

     .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: 8px;
    }

     .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);
}
/* ################################# */
/*  Header Search*/
/* ################################# */

.pq-search-button .offcanvas {
    position: fixed;
    z-index: 1050;
    background-color: var(--white-color) !important;
    padding: 45px;
    height: auto;
    bottom: inherit;
    transform: translateY(-100%) !important;
    transition: all 0.5s ease;
    overflow: hidden;
}

.pq-search-button .offcanvas.show {
    display: block;
    transform: translateY(0%) !important;
}

.pq-search-button .offcanvas .btn-close-icon {
    display: inline-block;
    position: absolute;
    right: -60px;
    padding: 0;
    margin-left: 30px;
    box-shadow: none;
    width: 55px;
    height: 55px;
    font-weight: 400;
    background-color: var(--primary-color);
    opacity: 1;
    border-radius: 100%;
    color: var(--white-color);
    border: none;
}

.pq-search-button .offcanvas .btn-close-icon:hover {
    background-color: var(--dark-color);
    color: var(--white-color);
}

.pq-search-button .offcanvas .btn-close-icon:before {
    font-size: 20px;
    content: "\e646";
    font-family: "themify";
}

.pq-search-button .offcanvas .search-form {
    margin: 0 auto;
    width: 60%;
    position: relative;
}

.pq-search-button .offcanvas .search-form label {
    display: block;
}

.pq-search-button .offcanvas .search-form .search-field {
    border: none;
    color: var(--secondary-color);
    background: var(--grey-color);
    padding-left: 30px;
    margin: 0;
    border-radius: var(--border-radius);
}

.pq-search-button .offcanvas .search-form .search-submit {
    background: transparent;
    border: none;
    padding: 0;
    font-size: 20px;
    position: absolute;
    text-align: center;
    color: var(--dark-color);
    line-height: 54px;
    height: 54px;
    width: 54px;
    top: 0;
    right: 0;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.pq-search-button .offcanvas .search-form .search-submit:before {
    content: "\e610";
    font-family: "themify";
    font-weight: 500;
}

.pq-search-button .offcanvas .search-form #search-clear {
    display: none;
}

.pq-search-button .offcanvas .search-form input.search-field[type="search"]::-webkit-search-decoration,
.pq-search-button .offcanvas .search-form input.search-field[type="search"]::-webkit-search-cancel-button,
.pq-search-button .offcanvas .search-form input.search-field[type="search"]::-webkit-search-results-button,
.pq-search-button .offcanvas .search-form input.search-field[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance: none;
}

.pq-search-button .offcanvas .search-form .search-field:focus {
    color: var(--dark-color);
}

.pq-search-button .offcanvas .search-form .search-submit {
    background: transparent;
    color: var(--dark-color) !important;
}

.pq-search-button .offcanvas .search-form .search-submit:hover {
    color: var(--primary-color) !important;
}

/*+++++ SideBar - Search +++++*/
.widget{
    display: inline-block;
    width: 100%;
    margin-bottom: 30px;
    position: relative;
    padding: 30px;
    border-radius: var(--border-radius);
}
.widget.widget_search {
    background: var(--primary-color);
}

.widget.widget_search .widgettitle {
    display: none;
}

.widget.widget_search .widget-title {
    display: none;
}

.wp-block-search {
    position: relative;
}

.wp-block-search label {
    display: none;
}

.wp-block-search .wp-block-search__input {
    background: var(--white-color);
    border-color: var(--white-color);
}

.wp-block-search .wp-block-search__button {
    background: transparent;
    border: none;
    padding: 0;
    position: absolute;
    text-align: center;
    color: var(--dark-color) !important;
    font-size: 0px;
    line-height: 54px;
    height: 54px;
    width: 54px;
    top: 0;
    right: 0;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.wp-block-search .wp-block-search__button:before {
    content: "\e610";
    font-family: 'themify';
    font-weight: 400;
    font-size: 20px;
}

.wp-block-search .wp-block-search__button:hover {
    color: var(--primary-color) !important;
    background: transparent;
    outline: none;
}

.search-form {
    position: relative;
}

.search-form label {
    width: 100%;
    margin-bottom: 0;
    float: left;
    width: 100%;
}

.search-form label input.search-field{
    margin: 0;
}

.pq-search-form .search-form input.search-field[type="search"]::-webkit-search-decoration,
.pq-search-form .search-form input.search-field[type="search"]::-webkit-search-cancel-button,
.pq-search-form .search-form input.search-field[type="search"]::-webkit-search-results-button,
.pq-search-form .search-form input.search-field[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance: none;
}

.widget input[type="search"]::-webkit-search-decoration,
.widget input[type="search"]::-webkit-search-cancel-button,
.widget input[type="search"]::-webkit-search-results-button,
.widget input[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance: none;
}


.widget.widget_search .search-form .search-field,
.widget.widget_search .wp-block-search__input {
    background: var(--white-color);
    border-color: var(--white-color);
    border-radius: var(--border-radius);
}

.search-submit {
    background: transparent;
    border: none;
    padding: 0;
    font-size: 20px;
    position: absolute;
    text-align: center;
    color: var(--dark-color) !important;
    line-height: 54px;
    height: 54px;
    width: 54px;
    top: 0;
    right: 0;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.search-submit:before {
    content: "\e610";
    font-family: 'themify';
    font-weight: 400;
}

.search-submit:hover {
    color: var(--primary-color) !important;
    background: transparent;
    outline: none;
}

/* ################################# */
/*  section-title*/
/* ################################# */

.pq-section-title.text-center {
    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: 48px;
    line-height: 56px;
    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: 44px;
        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;
    }
}

/* ################################# */
/*  about-us-style-1*/
/* ################################# */

.pq-about-bg-img {
    width: 35%;
    margin-top: 50px;
    position: absolute;
    left: -5%;
    z-index: 9;
}

.pq-about-image{
    margin-top:45px;
}

.pq-about-image img {
    width: 100%;
    border-radius: 20px 20px 20px 20px;
    z-index: 1;
}

@media(max-width:1099px) {
    .pq-about-bg-img {
        display: none;
    }
}

@media(max-width:1499px) {
    .pq-about-bg-img {
        display: none;
    }
}

@media(max-width:799px) {
    .pq-about-bg-img {
        display: none;
    }
    .pq-button {
        text-align: center;
    }
}

@media(max-width:479px) {
    .pq-about-bg-img {
        display: none;
    }

    .pq-about-image img {
        margin-top: 20px;
    }

    .pq-img-cut:before {
        display: none;
    }
}

@media(max-width:397px) {
    .pq-about-bg-img {
        display: none;
    }

    .pq-about-image img {
        height: 350px;
        object-fit: cover;
        border-radius: 20px 20px 20px 20px;
        margin-top: 20px;
    }

    .pq-img-cut:before {
        display: none;
    }


}
/* ################################# */
/*  about-us style-2*/
/* ################################# */

.pq-section-decription{
    color:var(--dark-color);
}

.pq-section-main{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}

.pq-right-img img{
    position: absolute;
    right:-3%;
    width:421px;
    bottom:-4%;
    z-index: 1;
}

.pq-image-style-2{
    position: relative;
}

.pq-tooltip-box-image .pq-tolimage{
    position: relative;
}

@media(max-width:1699px) {
    .pq-right-img {
        display: none;
    }
}
@media(max-width:767px) {

    .pq-tooltip-box .pq-tooltip-contain{
        display: none;

    }
    .pq-tooltip-box .pq-tooltip-contain .pq-tooltip-contain-inner .pq-tooltip-description {
        font-size: 12px;
        line-height: 10px;
    }

}
@media(max-width:479px) {
    .pq-counter .pq-cust-title {
        font-size: 12px;
    }
    .pq-counter .pq-count.pq-ct-1{
        font-size: 40px;
    }
     .pq-icons{
        font-size: 40px;
    }
    .pq-tooltip-box .pq-tooltip-contain .pq-tooltip-contain-inner .pq-tooltip-description {
        font-size: 12px;
        line-height: 10px;
    }
    .pq-section-main{
        grid-template-columns: 1fr;
    }
}

/* ################################# */
/*  about-us style-3*/
/* ################################# */

.pq-about-us-main-style-3{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    position: relative;
}

.pq-about-counter-block{
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    position: absolute;
    bottom: 20%;
    right: 55%;
    width: 20%;
}
/* .pq-about-us-main-style-3 .pq-about-img-style-3 img{
    width: 640px;

} */
.pq-about-us-main-style-3 .pq-about-customer-counter img{
    width:138px;

}
.pq-about-us-main-style-3 .pq-inner-space{
    background-color: var(--primary-color);
    color:var(--white-color);
    border-radius:0px 0px 20px 20px;
    text-align: center;
    padding: 3px 0px 5px 0px;
    display: block;
}
.pq-about-customer-counter{
    position: relative;
    background-color: #F3F3F3;
    border-radius: 20px 20px 0 0;
    padding: 20px 0px 0px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding-bottom: 20px;
}

.pq-inner-about-main{
    display: grid;
    grid-template-columns: 0.1fr auto;
    border-bottom: 1px solid #0000001F;
    padding-bottom: 24px;
    padding-top: 16px;
}
.pq-inner-about-main .pq-inner-description .pq-icon-list-items li{
    padding-top: 0;
}
.pq-icon-list-icon i{
    color:var(--primary-color);
    margin-right: 5px;
}
.pq-inner-about-img img{
    width:168px;
    border-radius: 10px 10px 10px 10px;
}
.pq-right-block-img img{
    width:440px;
    position: absolute;
    right: -4%;
    margin-top: -8%;
}
.pq-about-style-3-upimg img{
    width:110px;
    position: absolute;
    left: 7%;
    top: 0%;
    z-index: 1;
}
@media(max-width:1499px) {
    .pq-about-style-3-upimg img{
        display: none;
    }

    }
    @media(max-width:1365px) {
        .pq-about-style-3-upimg img{
            display: none;
        }
        .pq-right-block-img img{
            display: none;
        }
        .pq-about-counter-block{
          width: 26%;
        }
    }

@media(max-width:1099px) {
    .pq-about-counter-block{
        width:347px;
    }
    .pq-right-block-img img{
        display: none;
    }
    .pq-about-style-3-upimg{
        display: none;
    }

}
@media(max-width:1023px) {
    .pq-about-counter-block{
        width:288px;
        margin-bottom: 76px;
    }


}
@media(max-width:979px) {
    .pq-about-us-main-style-3{
        grid-template-columns: 1fr;
    }
    .pq-about-counter-block{
        margin-bottom: 51%;
    }


}
@media(max-width:799px) {
    .pq-about-us-main-style-3{
        grid-template-columns: 1fr;
    }
    .pq-about-counter-block{
       margin-bottom: 68%;
        margin-right: -34%;

    }

}
@media(max-width:767px) {

    .pq-inner-about-main{
        grid-template-columns: 1fr;
        gap:20px;
    }
    .pq-inner-about-img img{
        width: 100%;
    }
    .pq-about-counter-block{
       margin-bottom: 152%;
        margin-right: -46%;
        width: 67%;

    }

}
@media(max-width:479px) {
    .pq-about-counter-block{
       margin-bottom: 168%;
        margin-right: -42%;
        width: 81%;
    }
    .pq-about-us-main-style-3 .pq-about-customer-counter img{
        width:125px;
    }
}

@media(max-width:397px) {
    .pq-about-counter-block{
       margin-bottom: 203%;
        margin-right: -42%;
        width: 84%;
    }

}

/* ################################# */
/*  about-us-inner*/
/* ################################# */
.pq-inner-about-effect img{
    width:100%;
    border-radius: var(--border-radius);
    margin-top: 30px;
}
.pq-inner-effect {
    width:100%;
    border-radius: var(--border-radius);
    margin-top: 20px;
}
.pq-icon-list-items li{
    padding-top: 10px;
    padding-bottom: 3px;
}
.pq-inner-icon .pq-button{
    padding-top: 10px;
    margin-left: 14px;
}
.pq-inner-main{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap:20px;
    padding-top: 30px;
}
.pq-inner-list-box{
    width:100%;
    background-color: var(--primary-color);
    color:var(--white-color);
    border-radius: var(--border-radius);
    text-align: center;
    padding: 30px 30px 30px 30px;

}
.pq-inner-list-box .pq-heading-title{
    color:var(--white-color);
    font-family: var(--title-fonts);
    padding-bottom: 10px;
}
.pq-inner-list-box .pq-review{
    font-size: 15px;
    padding-bottom: 10px;
}
.pq-icon-wrapper{
    display: flex;
    gap:15px;
    padding-top: 10px;
}
.pq-icon-wrapper .pq-icon-box-icon i{
    font-size: 24px;
}
 .pq-icon-box-content .pq-icon-box-title{
    font-size: 18px;
    font-weight: 500;
    color:var(--white-color);
}
.pq-about-box-star i{
    color:#FFCC00;
    font-size: 16px;
    padding-bottom: 13px;
}
@media(max-width:767px) {
    .pq-inner-main{
        grid-template-columns: 1fr;
    }
}

/* ################################# */
/*  tab*/
/* ################################# */

.pq-tab-box-style-1 .nav-tabs .nav-link {
    font-size: 18px;
    line-height: 26px;
    background: var(--grey-color);
    margin-right: 30px;
    color: var(--dark-color);
    text-transform: uppercase;
    font-weight: 400;
    font-family: var(--body-fonts);
    letter-spacing: 1px;
    border: none;
    transition: var(--transition-duration);
    border-radius: var(--big--border-radius);

}

.pq-tab-box-style-1 .nav-tabs .nav-link.active {
    color: var(--white-color);
    background: var(--dark-color);
}

.pq-tab-box-style-1 .nav-tabs {
    border-bottom: 0px solid #0000001f;
}

.pq-tab-box.pq-style-1 .pq-tab-box-description {
    margin-top: 15px;
    margin-bottom: 20px;

}

.pq-tab-box.pq-style-1 .pq-tab-box-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.pq-tab-box.pq-style-1 .pq-tab-box-list .pq-tab-box-list-item {
    display: flex;
    gap: 12px;
    align-items: center;
}

.pq-tab-box.pq-style-1 .pq-tab-box-list .pq-tab-box-list-item i {
    font-size: 14px;
}
.pq-about-btn{
    margin-top: 20px;
}
.pq-tab-img{
    position: absolute;
}
.pq-tab-img1{
    width:40%;
    border-radius: 30px;
    padding: 15px;
    margin-top: 39px;
}
 .pq-tab-img2{
    width:32%;
    border-radius: 20px;
    margin-left: 10px;
    margin-bottom: 15px;
}
 .pq-tab-img3{
    width:67%;
    border-radius: 30px;
    padding-top: 15px;
    margin-left: 85px;
}
.pq-vactor-logo{
    background-color:var(--primary-color);
    width:23%;
    padding: 30px 30px 30px 30px;
    border-radius: 900px 900px 900px 900px;
    position: relative;
    top:44%;
    left:42%;
}
@media(max-width:1279px) {
    .pq-tab-img1{
        width:347px;
    }
    .pq-tab-img2{
        width:39%;
    }
    .pq-tab-img3{
        width:73%;
    }

}
@media(max-width:1099px) {
    .pq-tab-img1{
        width:257px;
    }
    .pq-tab-img2{
        width:232px;
    }
    .pq-tab-img3{
        width:354px;
    }
    .pq-vactor-logo{
        width:24%;
        top:27%;
        left:42%;
    }

}
@media(max-width:979px) {

    .pq-tab-img1{
        display: none;
    }
}
@media(max-width:980px) {
    .pq-tab-img{
        display: none;
    }
    .pq-vactor-logo{
       display: none;
    }
}
@media(max-width:979px) {

    .pq-vactor-logo{
        width:21%;
        top:130%;
        left:32%;
    }

}
@media(max-width:799px) {

    .pq-vactor-logo{
        display: none;
    }
    .pq-tab-img img{
        display: none;
    }
}

/* ################################# */
/* Button Flat */
/* ################################# */

.pq-button .pq-button-flat {
    overflow: hidden;
    font-family: var(--body-fonts);
    font-weight: 400;
    text-transform: uppercase;
    line-height: 2;
    letter-spacing: 1px;
    font-size: 18px;
    padding: 12px 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 link =====*/
.pq-button .pq-button-link {
    display: flex;
    gap:5px;
    font-family: var(--body-fonts);
    font-weight: 400;
    text-transform: uppercase;
    line-height: 2;
    letter-spacing: 1px;
    font-size: 18px;
}
.pq-button .pq-button-link i {
    margin-top: 2px;
}
.pq-button .pq-button-link:hover i,
.pq-button .pq-button-link:focus i {
    animation: pheasantBounce 1s infinite linear;
}
@keyframes pheasantBounce {
    0% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }

    25% {
        opacity: 0;
        transform: translateX(5px) scale(0.9);
    }

    26% {
        opacity: 0;
        transform: translateX(-5px) scale(0.9);
    }

    55% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}


/* ################################# */
/* 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-1 */
/* ################################# */

.pq-service-box .pq-bg-gray::before {
    content: "";
    background-image: url(../images/aboutus/s1.svg);
    width: 100%;
    height: 28px;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: -1px;
    left: 0;
    z-index: 9;
}

.pq-service-box-style-1 {
    position: relative;
    overflow: hidden;
}

.img-owl img {
    width: 100%;
    height: auto;
}

.pq-service-box-style-1 .pq-service-box-img {
    position: relative;
    overflow: hidden;

}

.pq-service-box-style-1 .pq-service-box-img img {
    width: 100%;
    transition: var(--transition-duration);
    border-radius: var(--border-radius);
}

.pq-service-box-style-1:hover .pq-service-box-img img {
    transform: scale(1.1);
}


.pq-service-box-style-1 .pq-service-box-info .pq-service-box-title {
    font-size: 24px;
    line-height: 32px;
}


.pq-service-box-info {
    padding: 20px 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pq-service-box-style-1 .pq-service-box-info::before {
    content: "";
    position: absolute;
    bottom: 0;
    height: 1px;
    width: 100%;
    transition: var(--transition-duration);
    background-color: #15141C4D;
}

.pq-service-box-style-1:hover .pq-service-box-info::before {
    background-color: var(--primary-color);
}

.pq-service-box-style-1 .pq-service-box-info .pq-button-rounded a {
    width: 60px;
    height: 60px;
    text-align: center;
    display: inline-block;
    border-radius: 50%;
    background-color: var(--dark-color);
    color: var(--white-color);
    font-size: 25px;
    font-weight: 700;
    transition: var(--transition-duration);
    text-decoration: none;
}

.pq-service-box-style-1 .pq-service-box-info .pq-button-rounded a i {
    line-height: 66px;
}

.pq-service-box-style-1 .pq-service-box-info .pq-button-rounded a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

/* ################################# */
/* service-box style-2 */
/* ################################# */

.pq-service-box-style-2 {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}
.pq-service-main{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
     gap:20px;
     margin-left: auto;
     margin-right: auto;
     position: relative;
}

.pq-service-box-style-2 .pq-service-box-img {
    position: absolute;
    display: inline-block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.pq-service-box-style-2 .pq-service-box-img img {
    object-fit: cover;
    transition: var(--transition-duration);
    height: 100%;
    width: 100%;
}

.pq-service-box-style-2:hover .pq-service-box-img img {
    transform: scale(1.1);
}

.pq-service-box-style-2 .pq-service-box-info {
    display: inline-block;
    max-width: 70%;
     padding-top: 21px;
    position: relative;
    margin: 190px 30px 30px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.6);
}

.pq-service-box-style-2 .pq-service-box-info .pq-service-box-title {
    font-size: 28px;
    line-height: 36px;
    color: var(--white-color);
    margin-bottom: 10px;
}

@media(max-width:1024px) {
    .pq-service-main {
        grid-template-columns: 1fr 1fr;
    }

}
@media(max-width:800px) {
    /* .navbar-toggler.collapsed{
        margin-right: 10px;
    } */
    .pq-service-main {
        grid-template-columns: 1fr 1fr;
    }

}

@media(max-width:767px) {
    .pq-service-main {
        grid-template-columns: 1fr;
    }

}
/* ################################# */
/* service-box style-3 */
/* ################################# */
.pq-service-box-style-3-main{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap:40px;
}

.pq-service-box-style-3{
    display: flex;
    gap:30px;
    background-color: var(--white-color);
    align-items: center;
    border-radius: var(--border-radius);
    padding: 30px;
    transition: all .5s ease;
}

.pq-service-box-style-3:hover {
  -webkit-box-shadow: 0px 0px 30px 0px rgba(27, 120, 255, .3);
  -moz-box-shadow: 0px 0px 30px 0px rgba(27, 120, 255, .3);
  box-shadow: 0px 0px 30px 0px rgba(27, 120, 255, .3);
}




.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-icons{

}

.pq-service-box-style-3 .pq-service-box-icons img {
  width:84px;
  height:84px;
}

.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{
    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;
    }
}

/* ################################# */
/* 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;
    }
}

/* ################################# */
/* service-flooring */
/* ################################# */
.pq-link{
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 30px;
    background-color: var(--grey-color);
    border-radius: var(--border-radius);
}
.pq-link.pq-link-1{
    margin-top: 30px;
}
.pq-link .pq-blog-img img{
    border-radius: var(--border-radius);
}
.pq-service-menu-container .pq-service-item .pq-service-inner a::before{
    content: '\f054';
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    font-size: 16px;
    right: 20px;
    left: auto;
    top: 26px;
    position: absolute;
    color: inherit;
    line-height: normal;
}
.pq-service-menu-container .pq-service-item .pq-service-inner a{
    background-color: var(--white-color);
    color:var(--dark-color);
    padding: 20px;
    display: inline-block;
    width: 100%;
    position: relative;
    border: none;
    font-size: 18px;
    line-height: 26px;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 1px;
    border-radius: 30px;
}

.pq-service-menu-container .pq-service-item .pq-service-inner{
    margin: 0px 0px 10px;
}
.pq-service-menu-container .pq-service-item .pq-service-inner.current-menu a{
    background-color: var(--primary-color);
    color: var(--white-color);
}
.pq-service-menu-container .pq-service-item .pq-service-inner a:hover{
    background-color: var(--primary-color);
    color:var(--white-color);
}
.pq-service-menu-container .pq-service-item .pq-service-inner.current-menu a:before{
    color:var(--white-color);
}
.pq-flooring-plan{
    margin-bottom: 45px;
}
.pq-description.pq-style-1{
    margin-top: 16px;
    margin-bottom: 15px;
}
.pq-title-heading.pq-heading-style-1{
    margin-left: 27px;
}
.pq-title-heading.pq-heading-style-2{
    margin-left: 20px;
}
.pq-single-inner-main{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap:45px;
}
.pq-floor-design{
    border-radius: 10px;
}
.pq-icon-box-main{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap:30px;

}
.pq-icon-box-wrapper{
    display: flex;
    gap:30px;
    background-color: #F5F9FC;
    padding: 30px 30px 30px 30px;
    border-radius: 10px;
    margin-top: 30px;
}
.pq-icon-style-1 i{
    font-size: 64px;
    color:var(--primary-color);
    line-height: 1;
}
@media(max-width:1099px){
    .pq-icon-box-main.pq-style-1{
        grid-template-columns: 1fr 1fr;
    }
    .pq-blog-img img{
        width:100%;
    }
}
@media(max-width:767px) {
    .pq-icon-box-main.pq-style-1{
        grid-template-columns: 1fr;
    }
    .pq-single-inner-main{
        grid-template-columns: 1fr;
    }
    .pq-icon-box-main {
        display: block;
        }
}
@media(max-width:479px) {
    .pq-link.pq-link-1{
        padding: 0;
    }
}

@media (max-width: 397px) {
    .pq-service-menu-container .pq-service-item .pq-service-inner  a {
    font-size: 14px;
    }
}

/* ################################# */
/* portfolio-style-1 */
/* ################################# */

.pq-portfolio-box-style-1 {
    overflow: hidden;
    position: relative;

}
.pq-portfolio-main .owl-carousel .owl-dots {
    text-align: left;
}
.pq-portfolio-main.pq-main-style-1 .owl-carousel .owl-nav{
    position: absolute;
    top: 0%;
    transform: translateX(0);
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    cursor: inherit;
    justify-content: center;
    bottom: 0;
    left: -7%;
    gap:15px;

}
.pq-portfolio-main {
    margin: 60px -700px 0px 0px;


}

.pq-portfolio-box-style-1 .pq-portfolio-box-img img {
    transition: var(--transition-duration);
}

.pq-portfolio-box-style-1:hover .pq-portfolio-box-img img {
    transform: scale(1.1);

}

.pq-portfolio-box-style-1 .pq-portfolio-box-img {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.pq-portfolio-box-categorie a {
    font-size: 18px;
    line-height: 26px;
    color: var(--primary-color);
    font-weight: 400;
    text-transform: uppercase;
    margin: 30px 0 10px;
    display: inline-block;
    letter-spacing: 1px;
    align-items: center;
    text-decoration: none;
}

.pq-portfolio-box-title a {
    text-decoration: none;
}

@media (max-width: 1680px) {
    .pq-portfolio-main {
        margin: 0px;
        padding: 0px;
    }

    .pq-portfolio-main .owl-carousel .owl-nav {
        display: none;
    }
}

@media (max-width: 1600px) {
    .pq-portfolio-main {
        margin: 0px;
        padding: 0px;
    }

    .owl-nav {
        display: none;
    }
}


@media (max-width: 1499px) {
    .pq-portfolio-main {
        margin: 0px;
        padding: 0px;
    }

    .pq-portfolio-main.pq-main-style-1 .owl-carousel .owl-nav {
        display: none;
    }
}

@media(max-width:1099px) {
    .pq-portfolio-main {
        margin: 0px;
        padding: 0px;
    }

}

@media (max-width:799px) {
    .pq-portfolio-main {
        margin: 0;
        padding: 0;
    }

}


@media (max-width:479px) {
    .pq-portfolio-main {
        margin: 0;
        padding: 0;
    }

}

@media (max-width:369px) {
    .pq-portfolio-main {
        margin: 0;
        padding: 0;
    }
}

/*================================================
portfolio   Inner-page
================================================*/
.pq-portfolio-slider.pq-style-1{
	margin-bottom: 15px;
}
.pq-portfolio-slider.pq-style-1 .owl-carousel .owl-nav{
	display: none;
}


.pq-portfolio-img-slider.pq-style-1 .pq-img{
	border-radius: 10px;
}
.pq-portfolio-project .pq-project-title{
	font-size: 36px;
    line-height: 44px;
	margin-bottom: 15px;
}

.pq-portfolio-project .pq-project-requiremnt .pq-project-requiremnt-title{
	font-size: 28px;
    line-height: 36px;
	margin-bottom: 10px;
}

.pq-requiremnt-project-lists{
	margin-bottom: 30px;
}

.pq-requiremnt-project-lists .pq-requiremnt-project-list{
	display: flex;
	gap: 10px;
	align-items: center;
}
.pq-requiremnt-project-lists .pq-requiremnt-project-list .pq-icon i{
	font-size: 18px;
	line-height: 26px;
	color: var(--primary-color);

}

.pq-challenge-img img{
	border-radius: 10px;

}
.pq-challenges-lists{
  margin-top:-69px;
}
.pq-challenges-lists .pq-challenges-item{
	display: flex;
	gap: 10px;
	align-items: center;
}
.pq-challenges-lists .pq-challenges-item .pq-icon i{
	font-size:18px;
	line-height: 26px;
	color: var(--primary-color);
}
.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;
}

.pq-single-post-navigation {
	display: flex;
     align-items: center;
     justify-content: space-between;
     align-content: center;
     padding: 30px;
     margin-bottom: 0;
     background: var(--grey-color);
     border-radius: var(--big--border-radius);
     transition: var(--transition-duration);
}

.pq-single-post-navigation .pq-single-post-nav .pq-single-post-nav-content .pq-single-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-navigation{
	position: relative;
	margin-top: 30px;
}

.pq-single-post-navigation .pq-single-post-nav .pq-single-post-nav-content{
	display: flex;
	gap: 15px;
	align-items: center;
}

.pq-single-post-navigation .pq-single-post-nav .pq-single-post-nav-content .pq-nav-icon{
	font-size: 20px;
	width: 60px;
	height: 60px;
	line-height: 60px;
	font-size: 20px;
	color: var(--white-color);
	background: var(--dark-color);
	text-align: center;
	transition: var(--transition);
	border-radius: 100%;
	position: relative;
}

.pq-single-post-navigation .pq-single-post-nav .pq-single-post-nav-content .pq-nav-icon::before{
	position: absolute;
	font-family: "Font Awesome 6 Free";
    font-weight: 600;
    content: "\f053";
    top: 50%;
	left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;

}

.pq-single-post-navigation .pq-single-post-nav .pq-single-post-nav-content .pq-nav-icon.pq-next::before{
	content: "\f054";
}


.pq-single-post-navigation .pq-single-post-nav .pq-single-post-nav-content:hover .pq-nav-icon{
	background: var(--primary-color)
}

.pq-single-post-navigation .pq-single-post-nav .pq-single-post-nav-content:hover .pq-single-post-nav-label{
	color: var(--primary-color);
}

@media(max-width:1099px) {
    .pq-challenges-lists{
        margin-top: 10px;
    }
}
@media(max-width:767px) {
    .pq-portfolio-project .pq-project-title{
        font-size: 30px;
        line-height: 38px;
    }
}
@media(max-width:479px) {
    .pq-single-post-navigation{
        padding:30px 15px;
        flex-direction: column;
        border-radius: var(--border-radius);
    }
    .pq-portfolio-project .pq-project-title{
        font-size: 25px;
        line-height: 33px;
    }
    .pq-project-requiremnt-title{
        font-size: 15px;
        line-height: 23px;
    }
}

/* ################################# */
/* award */
/* ################################# */
.pq-service-award-img {
    width:83%;
}
.pq-award-1-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.pq-award.pq-style-1 {
    display: grid;
    grid-template-columns: 2fr 1fr auto;
    gap: 30px;
    align-items: center;
    padding: 30px;
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    transition: var(--transition-duration);
}

.pq-award.pq-style-1:hover,
.pq-award.pq-style-1.pq-active {
    background-color: var(--primary-color);
}

.pq-award.pq-style-1 .pq-award-title {
    font-size: 22px;
    line-height: 30px;
    transition: var(--transition-duration);
}

.pq-award.pq-style-1:hover .pq-award-title,
.pq-award.pq-style-1.pq-active .pq-award-title {
    color: var(--white-color);
}

.pq-award.pq-style-1 .pq-award-description {
    margin-bottom: 0;
    margin-top: 5px;
    transition: var(--transition-duration);
}

.pq-award.pq-style-1:hover .pq-award-description,
.pq-award.pq-style-1.pq-active .pq-award-description {
    color: var(--white-color);
}

.pq-award.pq-style-1 .pq-award-img {
    position: relative;
}

.pq-award.pq-style-1 .pq-award-img img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(0) scale(0);
    transition: var(--transition-duration);
}

.pq-award.pq-style-1:hover .pq-award-img img,
.pq-award.pq-style-1.pq-active .pq-award-img img {
    transform: translate(-50%, -50%) rotate(20deg) scale(1);
}

.pq-award.pq-style-1 .pq-award-year {
    transition: var(--transition-duration);
    color: var(--primary-color);
}

.pq-award.pq-style-1:hover .pq-award-year,
.pq-award.pq-style-1.pq-active .pq-award-year {
    color: var(--white-color);
}

@media(max-width:767px) {
    .pq-service-award-img {
        width:80%;
    }
    .pq-award.pq-style-1 {
        grid-template-columns: 1fr;
    }
    .pq-award.pq-style-1 .pq-award-img img, .pq-award.pq-style-1:hover
    .pq-award-img img, .pq-award.pt-style-1.pq-active .pq-award-img img{
        transform: none;
          position: relative;
          top: 0;
          left: 0;
    }
    .pq-award-img {
        width:60%;
    }
}

/* ################################# */
/* 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;
    }
}

/* ################################# */
/* fancy-box-style-1 */
/* ################################# */
.pq-fancybox-item {
    display: grid;
    gap: 60px;
    grid-template-columns: 1fr 1fr 1fr;
}

.pq-fancybox-box-style-1 {
    position: relative;
}

.pq-fancybox-box-style-1::before {
    content: "";
    position: absolute;
    right: -27px;
    top: 0;
    width: 1px;
    height: 100%;
    background: #0000001f;
}

.pq-fancybox-box-style-1:nth-child(3n)::before {
    display: none;
}

.pq-fancybox-box-style-1 .pq-fancybox-box-main {
    display: flex;
    align-items: center;
    gap: 22px;
}

.pq-fancybox-box-style-1 .pq-fancybox-box-main .pq-fancybox-box-icon {
    font-size: 56px;
    line-height: 64px;
    color: var(--primary-color);
}

.pq-fancybox-box-style-1 .pq-fancybox-box-description {
    margin-bottom: 0;
}

.pq-fancybox-box-style-1 .pq-fancybox-box-img {
    position: absolute;
    width: 170px;
    top: 50%;
    left: 50%;
    border-radius: var(--border-radius);
    transform: translate(-50%, -45%) scale(0) rotate(20deg);
    transition: var(--transition-duration);
    overflow: hidden;
}

.pq-fancybox-box-style-1.pq-active .pq-fancybox-box-img,
.pq-fancybox-box-style-1:hover .pq-fancybox-box-img {
    transform: translate(-50%, -45%) scale(1) rotate(20deg);
}
@media (max-width:799px) {
    .pq-fancybox-item{
        grid-template-columns: 1fr 1fr;
    }
    .pq-fancybox-box-style-1 .pq-fancybox-box-img {
          width: auto;
          position: relative;
          top: initial;
          left: initial;
          transform: none;
          margin-top: 20px;
    }
    .pq-fancybox-box-style-1.pq-active .pq-fancybox-box-img,
    .pq-fancybox-box-style-1:hover .pq-fancybox-box-img{
        transform: none;

}
}
@media (max-width:767px) {
    .pq-fancybox-item{
        grid-template-columns: 1fr;
    }

    }


/* ################################# */
/* Fancy Box style-2 */
/* ################################# */
.pq-fancybox-box-style-2 {
    padding: 45px 28px;
    position: relative;
    border: 2px solid var(--grey-color);
    border-radius: var(--border-radius);
    transition: var(--transition-duration);
}

.pq-fancybox-box-style-2 .pq-fancybox-box-number {
    position: absolute;
    padding: 8px 10px;
    font-size: 16px;
    top: -24px;
    right: 30px;
    background: var(--grey-color);
    font-family: var(--title-fonts);
    font-weight: var(--font-weight);
    border-radius: 6px;
    color: var(--dark-color);
    transition: var(--transition-duration);
}

.pq-fancybox-box-style-2 .pq-fancybox-box-icon {
    margin-bottom: 45px;
    }

    .pq-fancybox-box-style-2 .pq-fancybox-box-icon svg {

      width: 64px;
      height: 64px;

    }


    .pq-fancybox-box-style-2 .pq-fancybox-box-icon svg * {

      fill: var(--primary-color);

    }
.pq-fancybox-box-style-2 .pq-fancybox-box-title {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 15px;
    font-weight: var(--font-weight);
}

.pq-fancybox-box-style-2:hover {
    border: 2px solid var(--primary-color);
}

.pq-fancybox-box-style-2:hover .pq-fancybox-box-number {
    background: var(--primary-color);
    color: var(--white-color);
}

.pq-fancy-img .pq-fancy-box-img{
    width:360px;
    position: absolute;
    left:-6%;
    top:61%;
}
.pq-fancybox-box-style-2:nth-child(even){
    margin-top: 60px;
 }
 .pq-fancybox-box-style-2:nth-child(odd){
    margin-bottom: 60px;
 }

.pq-fancy-box-style-2-main{
    display:grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
   gap:30px;


}

@media (max-width: 1699px) {
    .pq-fancy-img .pq-fancy-box-img {
         display: none;
    }

}
@media (max-width: 1499px) {
    .pq-fancy-img .pq-fancy-box-img {
         display: none;
    }

}
@media (max-width: 1099px) {

    .pq-fancy-box-style-2-main{
        display:grid;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .pq-fancybox-box-style-2 h6 {
         font-size: 24px;
         line-height: 32px;
    }

    .pq-fancybox-box-style-2 .pq-fancybox-box-icon {
         margin-bottom: 30px;
    }
    .pq-fancy-box-style-2-main{
        display:grid;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 479px) {
    .pq-fancybox-box-style-2 {
         padding: 30px 15px;
    }
    .pq-fancy-box-style-2-main{
        display:grid;
        grid-template-columns: 1fr ;
    }
}

/* ################################# */
/* working-process */
/* ################################# */

.pq-work-process-img-box-style-1{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap:30px;
    position: relative;
    align-items: baseline;
    margin-top: 30px;

}
.pq-work-process-img-box-style-1 img{
    /* width:437px; */
    border-radius: 20px;
    /* height:513px; */
}

.pq-work-process-img-box-style-1 .pq-work-process-img-2{
    width:436px;
    height:572px;
    object-fit: cover;
}

.pq-work-process-img-box-style-1 img:nth-child(even){
    margin-top: -54px;
}

.pq-work-process-img .pq-work-process-box-img{
    width: 363px;
    position: absolute;
    right:-2%;
    top:67%;
    z-index: 1;
}
@media (max-width: 1499px) {
    .pq-work-process-box-img{
        display: none;
    }
    .pq-work-process-img-box-style-1  {
        grid-template-columns: 1fr 1fr 1fr;
    }

}
@media (max-width: 1279px) {
    .pq-work-process-img-box-style-1  {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .pq-work-process-img-box-style-1 img{
        width: 100%;
    }
    .pq-work-process-img-box-style-1 .pq-work-process-img-2{
     width:100%;
}
}
 @media (max-width: 1099px) {
    .pq-work-process-img-box-style-1{
        grid-template-columns: 1fr 1fr ;
    }

}

@media (max-width: 979px) {
    .pq-work-process-img-box-style-1  {
        grid-template-columns: 1fr 1fr ;
    }

}
@media (max-width: 799px) {
    .pq-work-process-img-box-style-1  {
        grid-template-columns: 1fr 1fr;
    }
    .pq-work-process-img-box-style-1 img{
        width: 354px;
     }
}
@media (max-width: 767px) {
    .pq-work-process-img-box-style-1  {
        grid-template-columns: 1fr;
    }
    .pq-work-process-img-box-style-1 .pq-work-process-img-1{
        width: 100%;
        margin-bottom: 45px;
     }
     .pq-work-process-img-box-style-1 .pq-work-process-img-2{
        width: 100%;
     }
     .pq-work-process-img-box-style-1 .pq-work-process-img-3{
        width: 100%;
     }
      .pq-img-cut:before{
        display: none;
     }
     .pq-img-cut-1::after{
        display: none;
     }
}
@media (max-width: 479px) {
    .pq-work-process-img-box-style-1  {
        grid-template-columns: 1fr;
    }
   }
@media (max-width: 397px) {
    .pq-work-process-img-box-style-1  {
        grid-template-columns: 1fr;
    }

     }



/* ################################# */
/* 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;
}
.pq-work-box-style-1 img{
    height:100%;
    object-fit: cover;

}
.pq-work-box-style-1{
    border-radius: var(--border-radius);
}


.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 h4.dark {

    color:var(--dark-color);

}

.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;

    }
    }
/* ################################# */
/* Isotope Portfolio */
/* ################################# */

.pq-grid-item.visible_item,
.pq-masonry-item.visible_item {
     display: none;
}

.pq-filters .pq-filter-button-group ul {
     margin: 0 0 45px;
     padding: 0;
     display: inline-block;
     width: 100%;
     text-align: center;
}

.pq-filters .pq-filter-button-group ul li {
     font-size: 18px;
     line-height: 26px;
     font-weight: 400;
     letter-spacing: 1px;
     text-transform: uppercase;
     list-style: none;
     color: var(--dark-color);
     display: inline-block;
     cursor: pointer;
     padding: 12px 20px;
     transition: var(--transition-duration);
     -moz-transition: var(--transition-duration);
     -ms-transition: var(--transition-duration);
     -o-transition: var(--transition-duration);
     -webkit-transition: var(--transition-duration);
     -webkit-border-radius: var(--big--border-radius);
     -moz-border-radius: var(--big--border-radius);
     border-radius: var(--big--border-radius);
}

.pq-filters .pq-filter-button-group ul li:last-child {
     margin-right: 0;
}

.pq-filters .pq-filter-button-group ul li.active,
.pq-filters .pq-filter-button-group ul li.active:hover {
     background: var(--primary-color);
     color: var(--white-color);
}

.pq-filters .pq-filter-button-group ul li:hover {
     color: var(--dark-color);
}

.pq-portfolio-box-style-1 .pq-portfolio-img {
    position: relative;
    overflow: hidden;
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
}

.pq-portfolio-box-style-1 .pq-portfolio-img img {
    width: 100%;
    transition: var(--transition-duration);
    transition: var(--transition-duration);
    -moz-transition: var(--transition-duration);
    -ms-transition: var(--transition-duration);
    -o-transition: var(--transition-duration);
    -webkit-transition: var(--transition-duration);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.pq-portfolio-box-style-1:hover .pq-portfolio-img img {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.pq-portfolio-box-style-1 .pq-portfolio-img span.pq-portfolio-tag {
    display: none;
}

.pq-portfolio-box-style-1 .pq-portfolio-box-info .pq-portfolio-style-1-tag {
    line-height: 1;
    margin-bottom: 5px;
}

.pq-portfolio-box-style-1 .pq-portfolio-box-info .pq-portfolio-style-1-tag a {
    font-family: var(--title-fonts);
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary-color);
}

.pq-grid {
     display: inline-block;
     width: 100%;
     float: left;
}

.pq-grid:after {
     content: '';
     display: block;
     clear: both;
}

.pq-col-3 {
     width: 25%;
     padding: 0 15px 30px;
}

.pq-col-6 {
     width: 50%;
     padding: 0 15px 30px;
}

.pq-col-4 {
     width: 33.33%;
     padding: 0 15px 30px;
}

.pq-grid.no-padding .pq-grid-item,
.pq-masonry.no-padding .pq-masonry-item {
     padding: 0;
}

.pq-btn-load-container {
     margin-top: 0;
     display: inline-block;
     width: 100%;
}

.pq-btn-load-container a.pq-button {
     cursor: pointer;
}

.pq-grid.style-2 .pq-portfoliobox-1 .pq-portfolio-img {
     overflow: hidden;
}

.pq-grid.style-2 .pq-portfoliobox-1 .pq-portfolio-box-info {
     position: relative;
     bottom: 0;
     left: 0;
     background: transparent;
     padding-left: 0;
     padding-bottom: 0;
     opacity: 1;
}

.pq-grid.style-2 .pq-portfoliobox-1 a.pq-portfolio-icon-bg {
     display: none;
}

.pq-grid.style-2 .pq-grid-item:nth-child(1) .pq-portfoliobox-1 {
     margin-top: 60px;
}

.pq-grid.style-2 .pq-col-6 {
     padding: 0 30px 45px;
     padding-bottom: 45px;
}

/*=========  Masonry ========= */
.pq-masonry {
     display: -ms-flexbox;
     display: flex;
     -ms-flex-wrap: wrap;
     flex-wrap: wrap;
}

.pq-masonry .ipt-lg-6 {
     width: 50%;
     padding: 0 15px 30px;
}

.pq-masonry .ipt-lg-3 {
     width: 25%;
     padding: 0 15px 30px;
}

.pq-masonry .ipt-lg-4 {
     width: 33.333%;
     padding: 0 15px 30px;
}

.pq-masonry.no-padding .ipt-lg-6,
.pq-masonry.no-padding .ipt-lg-3 {
     padding: 0;
}

.pq-masonry.no-padding .pq-portfoliobox-1,
.pq-masonry.no-padding .pq-portfoliobox-1 .pq-portfolio-img img {
     border-radius: 0;
}

/* ========= layout 2 ========= */
.pq-masonry .ipt-lg-4 {
     width: 33.333%;
     padding: 0 15px 30px;
}

.pq-masonry .ipt-lg-8 {
     width: 66.666%;
     padding: 0 15px 30px;
}

.pq-masonry .ipt-lg-12 {
     width: 100%;
     padding: 0 15px 30px;
}

@media(max-width:1365px) {
     .pq-col-3 {
          width: 33.33%;
     }

     .pq-masonry .ipt-lg-6 {
          width: 50%;
     }

     .pq-masonry .ipt-lg-3 {
          width: 33.33%;
     }

     .pq-masonry .ipt-lg-4 {
          width: 50%;
     }

     .pq-masonry .ipt-lg-8 {
          width: 50%;
     }

     .pq-filters .pq-filter-button-group ul li {
          margin-right: 10px;
     }

     .pq-col-3,
     .pq-col-4,
     .pq-masonry .ipt-lg-3 {
          width: 50%;
     }
}

@media(max-width:767px) {
     .pq-filters .pq-filter-button-group ul {
          margin: 0 0 30px;
     }

     .pq-filters .pq-filter-button-group ul li {
          margin-right: 0;
          font-size: 16px;
          padding: 10px 20px;
     }

     .pq-col-6,
     .pq-col-4,
     .pq-col-3,
     .pq-masonry .ipt-lg-3,
     .pq-masonry .ipt-lg-6 {
          width: 100%;
          padding: 0 0 30px;
     }

     .pq-masonry .ipt-lg-4 {
          width: 100%;
          padding: 0 0 30px;
     }

     .pq-masonry .ipt-lg-8 {
          width: 100%;
     }

     .pq-grid.style-2 .pq-grid-item:nth-child(1) .pq-portfoliobox-1 {
          margin-top: 0;
     }

     .pq-grid.style-2 .pq-col-6 {
          padding: 0 0 30px;
     }

}

@media(max-width:479px) {
     .pq-filters .pq-filter-button-group ul li {
          margin-bottom: 15px;
     }

}

.pq-grid-item {
     float: left;
}



/*===== Portfoliobox Hover Slide  =====*/

.pq-portfolio-box-style-1.pq-hover-slide .pq-portfolio-box-info {
     position: absolute;
     bottom: 30px;
     left: 0;
     z-index: 1;
     -moz-transform: translate(-100%, 0px);
     -webkit-transform: translate(-100%, 0px);
     -o-transform: translate(-100%, 0px);
     -ms-transform: translate(-100%, 0px);
     transform: translate(-100%, 0px);
     -webkit-transition: transform 0.4s 0s ease-in-out;
     -moz-transition: transform 0.4s 0s ease-in-out;
     -o-transition: transform 0.4s 0s ease-in-out;
     transition: transform 0.4s 0s ease-in-out;
     padding: 30px;
     background-color: var(--white-color);
     border-radius: var(--border-radius);
     text-align: left;
}

.pq-portfolio-box-style-1.pq-hover-slide:hover .pq-portfolio-box-info {
     -moz-transform: translate(0px, 0px);
     -webkit-transform: translate(0px, 0px);
     -o-transform: translate(0px, 0px);
     -ms-transform: translate(0px, 0px);
     transform: translate(0px, 0px);
     left: 30px;
}

.pq-portfolio-box-style-1.pq-hover-slide .pq-portfolio-box-info h5 a {
     color: var(--dark-color);
     font-size: 24px;
     line-height: 32px;
}
.pq-portfolio-box-style-1.pq-hover-slide .pq-portfolio-box-categorie a{
    margin-top: 0;
}

.pq-portfolio-box-style-1.pq-hover-slide .pq-portfolio-box-info h5 a:hover {
     color: var(--primary-color);
}

.pq-portfolio-box-style-1.pq-hover-slide .pq-portfolio-box-info .pq-portfolio-style-1-tag {
     margin-bottom: 0;
}

.pq-portfolio-box-style-1.pq-hover-slide .pq-portfolio-box-info .pq-portfolio-style-1-tag a {
     font-family: var(--title-fonts);
     font-size: 16px;
     line-height: 24px;
     font-weight: 400;
     letter-spacing: 1px;
     text-transform: uppercase;
     color: var(--primary-color);
     display: inline-block;
     margin-bottom: 10px;
}

/*===== Portfoliobox Hover fade  =====*/

.pq-portfolio-box-style-1.pq-hover-fade {
     text-align: center;
}

.pq-portfolio-box-style-1.pq-hover-fade:before {
     opacity: 0;
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     display: inline-block;
     background: var(--dark-color);
     z-index: 1;
     transition: all 0.3s ease-in-out;
     transition: all 0.3s ease-in-out;
     -moz-transition: all 0.3s ease-in-out;
     -ms-transition: all 0.3s ease-in-out;
     -o-transition: all 0.3s ease-in-out;
     -webkit-transition: all 0.3s ease-in-out;
     -webkit-border-radius: var(--border-radius);
     -moz-border-radius: var(--border-radius);
     border-radius: var(--border-radius);
}

.pq-portfolio-box-style-1.pq-hover-fade:hover:before {
     opacity: 0.9;
}

.pq-portfolio-box-style-1.pq-hover-fade .pq-portfolio-box-info {
     padding: 0;
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     z-index: 1;
     display: grid;
     align-items: center;
     justify-content: center;
     align-content: center;
     justify-items: center;
     opacity: 0;
     -moz-transform: translate(0px, 30px);
     -webkit-transform: translate(0px, 30px);
     -o-transform: translate(0px, 30px);
     -ms-transform: translate(0px, 30px);
     transform: translate(0px, 30px);
     -webkit-transition: all 0.4s cubic-bezier(0.47, 0, 0.745, 0.715);
     transition: all 0.4s cubic-bezier(0.47, 0, 0.745, 0.715);
}

.pq-portfolio-box-style-1.pq-hover-fade .pq-portfolio-box-info h5 {
     margin-bottom: 5px;
}

.pq-portfolio-box-style-1.pq-hover-fade .pq-portfolio-box-info h5 a,
.pq-portfolio-box-style-1.pq-hover-fade .pq-portfolio-box-info .pq-portfolio-style-1-title a {
     color: var(--white-color);
}

.pq-portfolio-box-style-1.pq-hover-fade .pq-portfolio-box-info .pq-portfolio-style-1-tag a {
     color: var(--primary-color);
}

.pq-portfolio-box-style-1.pq-hover-fade:hover .pq-portfolio-box-info {
     opacity: 1;
     -moz-transform: translate(0px, 0);
     -webkit-transform: translate(0px, 0);
     -o-transform: translate(0px, 0);
     -ms-transform: translate(0px, 0);
     transform: translate(0px, 0);
}

.pq-portfolio-box-style-1.pq-hover-fade .pq-e-post-link {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
}

.pq-portfolio-box-style-1.pq-hover-fade .pq-portfolio-box-info .pq-btn-container a {
     font-size: 16px;
     line-height: 24px;
     font-weight: 400;
     color: var(--primary-color);
     text-transform: uppercase;
}

@media (max-width:479px) {
     .pq-portfolio-box-style-1.pq-hover-slide .pq-portfolio-box-info {
          padding: 15px;
          margin-right: 15px;
     }

     .pq-portfolio-box-style-1.pq-hover-slide .pq-portfolio-box-info .pq-portfolio-style-1-title a {
          font-size: 28px;
          line-height: 36px;
     }

     .pq-portfolio-box-style-1.pq-hover-slide:hover .pq-portfolio-box-info {
          left: 15px;
     }
}
/* ################################# */
/* counter-site */
/* ################################# */
.pq-bg-black {
    background-color: var(--dark-color);
}


.pq-decription p {
    color: var(--white-color);
    font-family: var(--body-fonts);
    font-size: 18px;
    line-height: 35px;
}

.pq-image-1 img {
    height: auto;
    border-radius: 30px;
}
.pq-image-2{
    padding-right: 30px;
}
.pq-image-2 img {
    height: auto;
    border-radius: 30px;

}


.pq-title-1 {
    color: var(--primary-color);
    font-size: 20px;
    line-height: 28px;
    font-family: var(--body-fonts);
    letter-spacing: 1px;
    /* margin-top: 20px; */
    text-transform: uppercase;
    /* margin-bottom: 40px; */
}

.pq-increment {
    display: flex;
    gap: 10px;
    margin-bottom: 5px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    /* padding-top: 15px; */
}

.pq-indicator {
    display: flex;
    position: relative;
    margin-bottom: 5px;
}

@media(max-width:1499px) {
    .pq-section-main-title {
        font-size: 40px;
        line-height: 48px;
    }


}

@media(max-width:1365px) {
    .pq-section-title .pq-section-main-title {
        font-size: 40px;
        line-height: 48px;
    }

    .pq-decription p {
        padding-left: 30px;
    }

    .pq-counter {
        padding-left: 30px;
    }



    .pq-decription p {
        font-size: 17px;
        line-height: 25px;
    }

    .pq-counter .pq-count {
        font-size: 48px;
        line-height: 56px;
    }

    .pq-counter .pq-title {
        font-size: 18px;
        line-height: 26px;
    }
}

@media(max-width:1279px) {
    /* .pq-image-1 img {
        width: 250px;
        height: auto;
    }

    .pq-image-2 img {
        width: 270px;
        height: auto;
    } */

    .pq-decription p {
        font-size: 18px;
        line-height: 24px;
    }

    .pq-counter .pq-count {
        font-size: 40px;
        line-height: 48px;
    }

    .pq-counter .pq-title {
        font-size: 15px;
        line-height: 23px;
        margin-top: 35px;
    }
}

@media(max-width:1099px) {
    /* .pq-image-1 img {
        width: 230px;
        height: auto;
    }

    .pq-image-2 img {
        width: 250px;
        height: auto;
    } */

    .pq-counter .pq-count {
        font-size: 30px;
        line-height: 48px;
    }

    .pq-counter .pq-title {
        font-size: 14px;
        line-height: 23px;
        margin-top: 35px;
    }
}

@media(max-width:1023px) {
    .pq-decription p {
        font-size: 17px;
        line-height: 25px;
        padding-left: 0px;
    }

    .pq-decription p {
        font-size: 18px;
        line-height: 25px;
    }

    .pq-image-1 img {
        width: 420px;
        height: auto;
    }

    .pq-image-2 img {
        width: 445px;
        height: auto;
    }

    .pq-counter .pq-count {
        font-size: 42px;
        line-height: 50px;
    }

    .pq-counter .pq-title {
        font-size: 24px;
        line-height: 32px;
    }
}

@media(max-width:979px) {
    .pq-image-1 img {
        width: 330px;
        height: auto;
    }

    .pq-image-2 img {
        width: 350px;
        height: auto;
    }

    .pq-decription p {
        padding-left: 0px;
    }

    .pq-counter {
        padding-left: 0px;
    }
}

@media(max-width: 767px) {

    .pq-image-1 img,
    .pq-image-2 img {
        width: 100%;
        height: auto;
    }

    .pq-counter .pq-count,
    .pq-counter .pq-title {
        text-align: center;
    }
    .pq-counter.pq-increment{
        padding-left: 85px;
    }
     .pq-title-1{
        padding-left: 85px;
    }



}


@media(max-width:479px) {
    .pq-section-title .pq-section-main-title {
        font-size: 32px;
        line-height: 40px;
    }

    .pq-decription p {
        font-size: 20px;
        line-height: 28px;
    }

    .pq-image-1 img {
        max-width: 100%;
        height: auto;
        margin-bottom: 30px;
    }

    .pq-image-2 img {
        max-width: 100%;
        height: auto;
    }
}

@media(max-width:397px) {
    .pq-image-1 img {
        max-width: 100%;
        height: auto;
    }

    .pq-image-2 img {
        max-width: 100%;
        height: auto;
    }
}

/* ################################# */
/* process-box */
/* ################################# */

.pq-process-box-grid {
    background-image: url("../images/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;
}



/* ################################# */
/* video-part */
/* ################################# */

.pq-video-popup-block {
    position: relative;
    border-radius: var(--border-radius);
}

.pq-video-popup-block img {
    border-radius: var(--border-radius);
}

.popup-video-box-style-1 {
    position: absolute;
    bottom: 30px;
    left: 30px;
}

.popup-video-box-style-1.pq-custom-video{
    top:50%;
    left:46%;
}

.pq-video {
    width: 120px;
    display: inline-block;
    text-align: center;
    height: 120px;
    line-height: 120px;
    font-size: 24px;
    border-radius: var(--big--border-radius);
    background: var(--primary-color);
    color: var(--white-color);
    transition: var(--transition-duration);
}

.pq-videohover,
.pq-video:focus {
    color: var(--white-color);
}

.pq-video:hover {
    background: var(--dark-color);
    color: var(--white-color);
}

.mfp-wrap .mfp-close {
    padding: 0;
    top: -50px;
    right: 0;
    font-size: 26px;
    opacity: 1;
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    font-family: var(--title-fonts);
    color: var(--white-color);
    background-color: var(--primary-color);
    position: absolute;
    letter-spacing: 0;
    font-weight: 200;
    border-radius: var(--big--border-radius);
}

.mfp-wrap .mfp-close:hover {
    background: var(--primary-color);
}

.mfp-wrap .mfp-close:focus {
    outline: none;
}

.popup-video-box-style-2{
    background-image: url(../images/aboutus/aboutmore.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 250px 0;
    background-attachment: fixed;
}

.popup-video-box-style-2 .popup-video-box-icon{
    text-align: center;
    position: relative;
}
@media (max-width:1499px) {

    .process-vector {
        display: none;
    }
}

@media (max-width:799px) {
    .process-box-style-1.text-center.pq-even {
        margin-top: 5px;
    }

    .process-vector {
        display: none;
    }
}
@media (max-width:767px) {
    .pq-video {
        width:94px;
        height: 94px;
        line-height: 101px;
    }
}


@media (max-width:479px) {
    .pq-video-popup-block img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        object-position: center center;
    }

    .popup-video-box-style-1 {
        height: 10px;
        margin-bottom: 60px;
    }

}



@media (max-width:369px) {
    .pq-video-popup-block img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        object-position: center center;
    }

    .popup-video-box-style-1 {
        height: 10px;
        margin-bottom: 60px;
    }

}

/* ################################# */
/* 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 {
    position: relative;
    background: var(--grey-color);
    border-radius: var(--border-radius);
    padding: 20px 20px;
    overflow: inherit;
    transition: all .5s ease;
}


.whit-bons .pq-pricing-box-style-1 {

  background: #fff;
  border: 2px solid #dddddd;

}

.whit-bons .pq-pricing-box-style-1:hover {

  border: 2px solid transparent;

}

.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: 24px;
}

.pq-pricing-box-style-1 .pq-pricing-box-info .pq-pricing-box-list {
    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: 1099px) {
    .pq-pricing-box-style-1 {
         padding: 20px 20px;
    }
}
@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: 20px;
    }

    .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: 20px 15px;
    }

    .pq-pricing-box-style-1 .pq-pricing-box-info .pq-pricing-box-title {
         font-size: 18px;
    }
}

/*################################# */
/* 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(../images/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(../images/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(../images/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(../images/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(../images/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{
    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('../images/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);
}
.pq-accordion-block {
    background-color: var(--white-color);
    padding: 30px 30px 30px 30px;
    border-radius: 10px 10px 10px 10px;
}

.pq-accordion-block.bg-gree {

      background-color: #f5f9ff;

}

.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;
    cursor: pointer;
}

.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 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;
    }
}
/*################################# */
/* breadcrumb */
/* ################################# */

.pq-breadcrumb-style-1{
    background-image:url(../images/bread.jpg)!important;
    }

.pq-breadcrumb-style-1 {
    background: var(--dark-color);
    text-align: left;
    padding: 100px 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-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;
}

 @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;
    }
}


/*################################# */
/* Error */
/* ################################# */
.pq-error-box{
    text-align: center;
}
.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;
}
}
/*################################# */
/* contact-us */
/* ################################# */
.pq-contact-us-main{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap:45px;
}
.pq-contact-us-main .pq-contact-image img{
    border-radius: 20px;
}
.pq-icon-box-style-1{
    display: inline-flex;
    gap:30px;
    align-items: center;
}
.pq-icon-box-style-1 .pq-icon-box-icon{
    font-size: 40px;
}
.pq-icon-box-style-1 .pq-icon-box-icon i{
    width:80px;
    height:80px;
    background-color: var(--primary-color);
    display: block;
    border-radius: 100%;
    line-height: 92px;
    text-align: center;
    color:var(--white-color);
}
.pq-icon-box-main.pq-style-1{
    display: grid;
    grid-template-columns: 1fr 1fr ;
    gap:30px;
    margin-top: 60px;
}
.pq-icon-box-main.pq-style-2{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap:30px;
    margin-top: 60px;
}
.pq-icon-box-main .pq-contact-icon-box{
    border-right: 1px solid #0000001F;
}
.pq-icon-box-main .pq-icon-box-wrapper .pq-icon-box-description{
    margin-top: 10px;
}
.pq-contact-icon-box .pq-contact-description{
    margin-bottom: 20px;
    margin-top: 5px;
}
.pq-icon-box-main .pq-contact-icon-box:last-child{
    border-right: none;
}
.pq-contact-icon-box .pq-contact-icon i{
    font-size: 60px;
    color:var(--primary-color);
}

@media(max-width:1099px){
        .pq-contact-us-main{
            grid-template-columns: 1fr;
        }
        .pq-icon-box-main.pq-style-1{
            grid-template-columns: 1fr 1fr;
        }
        .pq-icon-box-main .pq-contact-icon-box{
            border: none;
        }
        .pq-contct-img{
            margin-top: 20px;
        }
    }
    @media(max-width:979px){

        .pq-icon-box-main.pq-style-2{
            grid-template-columns: 1fr 1fr;
        }
    }


    @media(max-width:767px){
        .pq-contact-us-main{
            grid-template-columns: 1fr;
        }
        .pq-icon-box-main.pq-style-2{
            grid-template-columns: 1fr;
        }
        .pq-icon-box-main.pq-style-1{
            grid-template-columns: 1fr;
        }
    }

/*################################# */
/* footer */
/* ################################# */

.pq-footer {
    background-color: var(--grey-color);
    display: inline-block;
    width: 100%;
}

.pq-footer .pq-img-logo {
    height: 60px;
    width: auto;
}


.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: row;
    gap: 30px;
}

.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);
}



.footer-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    grid-gap: 30px;
}



  .footer-logos svg {
      display: block;
      width: auto;
      max-width: 170px;
      height: 40px;
      transition: all .5s ease;
    }

  .footer-logos svg * {
        fill: rgba(255,255,255, .4);
        opacity: 1;
        transition: all .5s ease;
       }

  .footer-logos svg:hover * {
         fill: rgba(255,255,255, .7);
        }


.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;

}
}
/*===== Footer Copyright =====*/

 .pq-bottom-footer .pq-copyright-footer {
    background: var(--dark-color);
    padding: 0;
    border-radius: var(--border-radius);
}

.pq-bottom-footer .pq-copyright-footer .pq-copyright-footer-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    border-top: 1px solid #ffffff1f;
    gap: 15px;
}

.pq-bottom-footer .pq-copyright-footer .pq-copyright-footer-inner ul {
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
}

.pq-bottom-footer .pq-copyright-footer .pq-copyright-footer-inner ul li {
    border-right: 1px solid #ffffff1f;
    padding-right: 15px;
}

.pq-bottom-footer .pq-copyright-footer .pq-copyright-footer-inner ul li:last-child {
    border-right: none;
    padding-right: 0;
}
.pq-bottom-footer  .pq-copyright-footer .pq-copyright-footer-inner ul li a {
    color: var(--white-color);
}
.pq-bottom-footer .pq-copyright-footer .pq-copyright {
    text-align: center;
    display: inline-block;
    width: auto;
    padding: 15px 0;
    border-top: 2px solid var(--light-white);
    color:var(--white-color);
}
@media (max-width: 1699px) {
    .pq-form-detail .form-field input.submit{
        right:11%;
}
}
@media (max-width: 1499px) {
    .pq-form-detail .form-field input.submit{
        right:6%;
}
}
@media (max-width: 1365px) {
    .pq-form-detail .form-field input.submit{
        right:2%;
}
}
@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;
}
}
















@media (max-width: 979px) {
     .pq-copyright-footer .pq-copyright-footer-inner {
         flex-direction: column;
         justify-content: center;
    }
}





/*################################# */
/* 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;
}
/*################################# */
/* slider-counter*/
/* ################################# */
.pq-slider-counter{
    position: absolute;
    padding: 30px 30px 30px 30px;
    background-color: var(--primary-color);
    border-radius: var(--border-radius);
    right: 60px;
    z-index: 9;
    bottom: 60px;
    z-index: 1001;
}
.pq-banner-slider{
    position: relative;
}
.pq-slider-counter .pq-counter .pq-counter-title{
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    font-family: var(--body-fonts);
    color:var(--white-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.pq-slider-counter .pq-counter .pq-counter-number-wrapper .pq-count{
    font-size: 64px;
    line-height: 72px;
    font-weight: 500;
    font-family: var(--title-fonts);
    color: var(--white-color);
}
.pq-slider-counter .pq-counter .pq-counter-number-wrapper  .pq-counter-number-suffix{
    font-size: 64px;
    line-height: 72px;
    font-weight: 700;
    font-family: var(--title-fonts);
    color: var(--white-color);
}
@media (max-width: 1099px) {
    .pq-slider-counter {
        display: none;
   }
}



.banner {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
}

.banner::before {

  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(-45deg, #b740ff, #2a2eff, #37caff, #31fd9d);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
  z-index: 2;
  opacity: .2;

}

.banner::after {

  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
	animation: gradient 15s ease infinite;
  z-index: 1;
  opacity: .6;

}


@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}


.banner .wrapper__video{
  position: absolute;
  object-fit: cover;
  width: 110%;
  height: 110%;
  z-index: 0;
}

/*################################# */
/* counter*/
/* ################################# */

.pq-counter-style-1 .pq-counter .pq-count {
    font-size: 56px;
    line-height: 64px;
    color: var(--white-color);
    font-family: var(--title-fonts);
    font-weight: 600;
    position: relative;
}

.pq-counter-style-1 .pq-counter .pq-counter-suffix{
    font-size: 56px;
    line-height: 64px;
    color: var(--white-color);
    font-family: var(--title-fonts);
    font-weight: 600;
    position: relative;
}

.pq-counter-style-1{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pq-counter-style-1 .pq-cust-title {
    border-top:1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
    font-size: 18px;
    line-height: 26px;
    color: var(--primary-color);
    text-transform: uppercase;
}
.pq-counter .pq-cust-title{
   border-top: 1px solid var(--grey-color);
    font-size: 18px;
    line-height: 26px;
    color: var(--primary-color);
    text-transform: uppercase;
    padding-top: 10px;
}
.pq-counter .pq-count.pq-ct-1{
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
    font-family: var(--title-fonts);
    color: var(--dark-color);
}
.pq-counter .pq-icons{
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
    font-family: var(--title-fonts);
    color:var(--dark-color);
}
.pq-counter .pq-count.pq-ct-1.pq-ct-3{
    font-size: 36px;
    font-weight: 500;
    line-height: 40px;
    font-family: var(--title-fonts);
}
.pq-counter-suffix{
    font-size: 36px;
    font-weight: 500;
    line-height: 40px;
    font-family: var(--title-fonts);
    color:black;
}
.pq-counter-style-2 .pq-counter .pq-count.pq-ct-1 {
    margin-top: 20px;
    display: inline-block;
}


@media(max-width:767px) {
    .pq-counter-style-1{
    text-align: center;
    }
}
@media (max-width: 799px) {

        .pq-count.pq-ct-1 {
            font-size: 45px;
            line-height: 53px;
    }

}

/* ################################# */
/* Tooltip */
/* ################################# */

.pq-tooltip-box {
    --box-width: 235px;
    --icon-width: 44px;
    --icon-height: 50px;
    position: absolute;
    display: grid;
    gap: 15px;
    grid-template-columns: var(--icon-width) 0;
    transform: translate(calc(var(--icon-width) / -2), calc(var(--icon-width) / -2));
    transition: var(--transition-duration);
}

.pq-tooltip-box.pq-active {
    z-index: 1;
    grid-template-columns: var(--icon-width) var(--box-width);
}
.pq-tooltip-main{
    position: relative;
}

.pq-tooltip-box .pq-tooltip-icon {
    width: var(--icon-width);
    height: var(--icon-width);
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 20px;
    line-height: var(--icon-height);
    -webkit-border-radius: var(--big--border-radius);
    -moz-border-radius: var(--big--border-radius);
    border-radius: var(--big--border-radius);
    text-align: center;
    cursor: pointer;
    transition: var(--transition-duration);
    transform: rotate(0deg);
}

.pq-tooltip-box.pq-active .pq-tooltip-icon {
    transform: rotate(90deg);
}

.pq-tooltip-box .pq-tooltip-contain {
    overflow: hidden;
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
    width: 0;
    transition: var(--transition-duration);
}

.pq-tooltip-box.pq-active .pq-tooltip-contain {
    width: var(--box-width);
}

.pq-tooltip-box .pq-tooltip-contain .pq-tooltip-contain-inner {
    padding: 15px;
    background-color: var(--grey-color);
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    border-radius: var(--border-radius);
    width: var(--box-width);
}

.pq-tooltip-box .pq-tooltip-contain .pq-tooltip-contain-inner .pq-tooltip-description {
    margin-bottom: 0;
}

@media (max-width: 799px) {
    .pq-tooltip-box {
         --box-width: 125px;
         --icon-width: 36px;
         gap: 10px;
    }

    .pq-tooltip-box .pq-tooltip-contain .pq-tooltip-contain-inner {
         padding: 10px;
    }

    .pq-tooltip-box .pq-tooltip-contain .pq-tooltip-contain-inner .pq-tooltip-title {
         font-size: 16px;
         line-height: 24px;
    }

    .pq-tooltip-box .pq-tooltip-contain .pq-tooltip-contain-inner .pq-tooltip-description {
         display: none;
    }
}

/* ################################# */
/* 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(../images/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(../images/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(../images/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(../images/accordian/builderpic.webp);
    background-position: center right;
    background-repeat: no-repeat;
    background-size:contain;
    opacity: 1;
}

@media(max-width: 1279px) {
    .pq-bg-accordian{
        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;
}

.blogo {

  background: #16171d;
  padding: 10px;
  border-radius: 10px;
  max-width: 200px;
  aspect-ratio: 1/1;

}

.blogo img {

  width: 100%;
  height: 100%;
  object-fit: contain;

}

.bvipbadge {

  background: var(--primary-color);
  color: #fff;
  border-radius: 24px;
  position: absolute;
  padding: .3em .5em .3em .3em;
  top: 5px;
  right: 5px;
  font-size: .8em;
  line-height: 1;


}



.bnumba {

  background: var(--primary-color);
  color: #fff;
  border-radius: 24px;
  position: absolute;
  padding: .3em .5em;
  top: 5px;
  left: 5px;
  font-size: .8em;
  line-height: 1;


}

.bonnr-1 .bnumba {

    background: #ffaf00;
    font-size: 1em;

}

.bonnr-2 .bnumba {

    background: #56717b;
    font-size: 1em;

}

.bonnr-3 .bnumba {

    background: #7b5656;
    font-size: 1em;

}


.fis {

  width: 16px!important;
  height: 16px!important;
  border-radius: 10px!important;

}

.dealz {

  background: #eee;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid #aaa;

}

.pq-pricing-box-style-1:hover .dealz {

  border-color: var(--primary-color);

}

.pq-pricing-box-style-1:hover {

  -webkit-box-shadow: 0px 0px 50px 0px rgba(27, 120, 255, 1);
  -moz-box-shadow: 0px 0px 50px 0px rgba(27, 120, 255, 1);
  box-shadow: 0px 0px 50px 0px rgba(27, 120, 255, 1);

}

.pq-pricing-box-style-1.bonnr-1:hover {

  -webkit-box-shadow: 0px 0px 50px 0px rgba(255, 180, 27, 1);
  -moz-box-shadow: 0px 0px 50px 0px rgba(255, 180, 27, 1);
  box-shadow: 0px 0px 50px 0px rgba(255, 180, 27, 1);

}

.pq-pricing-box-style-1.bonnr-2:hover {

  -webkit-box-shadow: 0px 0px 50px 0px rgba(112, 134, 169, 1);
  -moz-box-shadow: 0px 0px 50px 0px rgba(112, 134, 169, 1);
  box-shadow: 0px 0px 50px 0px rgba(112, 134, 169, 1);

}

.pq-pricing-box-style-1.bonnr-3:hover {

  -webkit-box-shadow: 0px 0px 50px 0px rgba(169, 127, 112, 1);
  -moz-box-shadow: 0px 0px 50px 0px rgba(169, 127, 112, 1);
  box-shadow: 0px 0px 50px 0px rgba(169, 127, 112, 1);

}


.small-feats {

  display: flex;
  grid-gap: 5px;
  flex-wrap: wrap;
  padding: 0;
  justify-content: center;

}

.small-feats li {

  background: #eee;
  border-radius: 6px;
  padding: .5em .5em;
  line-height: 1;
  list-style: none;
  display: flex;

}

.small-feats li p {

  margin: 0;
  font-size: .8em;
  font-weight: 500;

}

.small-feats i {

  font-size: .8em;

}


.tc-text p {

  font-size: .6em;
  line-height: 1.4;
  margin: 0;

}

.star-rating {

  display: flex;
  background: var(--primary-color);
  grid-gap: 5px;
  line-height: 1;
  font-size: .8em;
  padding: .3em .5em;
  border-radius: 24px;
  color: #fff;
}

[data-bs-toggle="collapse"]:not(.collapsed) .uncollapsed-hide {
  display: none;
}

[data-bs-toggle="collapse"].collapsed .collapsed-hide {
  display: none;
}

.rev-btn {

  background: #333;
  color: #fff!important;
  padding: .4em .5em;
  line-height: 1;
  font-weight: bold;
  font-size: .7em;
  border-radius: 15px;

}

.rev-btn:hover, .rev-btn:active {


  color: #fff;

}


.quick-view {

  background: #fff;
  padding: 20px;
  border-radius: 20px;

}

.quick-view svg {

  height: 24px;
  width: 24px;

}

.qview {

  font-size: .8em;
  line-height: 1.4;
}

.qview h6 {

  color: var(--primary-color);
  font-weight: 500;
    font-size: .8em;

}

.cc-window {

  border: 2px solid var(--primary-color)!important;
  border-radius: 12px 12px 0 0!important;
  z-index: 9989786!important;
  bottom: -3px!important;
  font-family: var(--body-fonts)!important;

}

.cc-btn {

  border-radius: var(--big--border-radius)!important;
  transition: var(--transition-duration)!important;
  background: linear-gradient(to right, var(--dark-color) 50%, var(--primary-color) 50%)!important;
  background-size: 202% 100%!important;
  background-position: right bottom!important;

  overflow: hidden!important;
    font-family: var(--body-fonts)!important;
    font-weight: 400!important;
    text-transform: uppercase!important;
    line-height: 2!important;
    letter-spacing: 1px!important;
    font-size: 18px!important;
    padding: 8px 20px!important;
    display: inline-block!important;
    border: 0!important;

}

.cc-btn:hover {

  background-position: left bottom!important;
    color: var(--white-color)!important;

}


.txtarea ul li {

    list-style: square;
}

.txtarea ul {

  margin-bottom: 20px;

}


.vs-main {

  background-color: var(--primary-color);
  color: var(--white-color);
  text-align: left;
  padding: 20px 30px;
  border-radius: 20px;

}

.vs-main h3  {

  margin-bottom: 10px;

}

.vs-main * {

  color: #fff;

}

.vs-sec {

  background-color: var(--grey-color);
  color: #222;
  text-align: left;
  padding: 20px 30px;
  border-radius: 20px;

}

.vs-sec h3  {

  margin-bottom: 10px;

}

.vs-sec * {

  color: #222;

}

.txtblox {

  border-radius: 20px;
  padding: 30px;
  border: 2px solid var(--grey-color);
  transition: all .5s ease;
}

.txtblox:hover {

  border-color: var(--primary-color);

}


.prosblox {

  padding: 25px;
  border-radius: 20px;
  background: #def0fc;

}

.consblox {

  padding: 25px;
  border-radius: 20px;
  background: #f0f0f0;

}

.ratblox {

  padding: 25px;
  border-radius: 20px;
  border: 2px solid #f0f0f0;

}

.consblox .pq-icon-list-icon i {

  color: #555;

}


.txtarea p {

  margin-bottom: 20px;

}
