/*
Template: Debate - Business Consulting HTML Template
Author: Peacefulqode.com
Version: 1.0
Design and Developed by: Peaceful Qode
*/

/*+++++++++++++++++++++++++++++++++++++++++++++++
[  Table of contents  ]
+++++++++++++++++++++++++++++++++++++++++++++++++
==> Fonts
==> Moz Selection
==> General
==> Loading
==> Back to Top
==> Button Core
==> Blog Sidebar
==> Blog
==> Pagination
==> Error
==> Isotope Portfolio
==> Header
==> Breadcrumb
==> Footer
==> OWL Carousel
==> Section Title
==> Service Box
==> Image Box
==> Icon Box
==> Fancy Box
==> Progressbar
==> Counter
==> Portfolio Box
==> Testimonial Box
==> Price Box
==> Video Popup
==> Tabs
==> Client
==> FAQ
==> Service Detail
==> Circle Progress
==> Team
==> Timelines
==> Calculate Fees
==> List Check
==> Info Box
==> Contact Box
==> Custom CSS
+++++++++++++++++++++++++++++++++++++++++++++++
[  End of contents  ]
+++++++++++++++++++++++++++++++++++++++++++++*/

/*++++++++++++++++++++++++++++++++++++++++
Fonts
++++++++++++++++++++++++++++++++++++++++*/

@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Nunito+Sans:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;0,1000;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900;1,1000&display=swap');

/*++++++++++++++++++++++++++++++++++++++++
Moz Selection
++++++++++++++++++++++++++++++++++++++++*/

:root {
    --primary-color: #49D3B1;
    --purple-color: #707DF0;
    --dark-color: #1D1D1D;
    --secondary-color: #616161;
    --grey-color: #F6F6F6;
    --white-color: #ffffff;
    --body-fonts: 'Nunito Sans', sans-serif;
    --title-fonts: 'Jost', sans-serif;
}

::-moz-selection {
    text-shadow: none;
    background: var(--primary-color);
    color: #fff;
}

::-moz-selection {
    text-shadow: none;
    background: var(--primary-color);
    color: #fff;
}

::selection {
    text-shadow: none;
    background: var(--primary-color);
    color: #fff;
}

/*++++++++++++++++++++++++++++++++++++++++
General
++++++++++++++++++++++++++++++++++++++++*/
body {
    background: var(--white-color);
    font-family: var(--body-fonts);
    font-size: 1rem;
    font-style: normal;
    font-weight: normal;
    line-height: 2;
    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: 500;
    margin: 0;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
}

h1 {
    font-size: 40px;
    font-style: normal;
    line-height: 48px;
}

h2 {
    font-size: 36px;
    font-style: normal;
    line-height: 44px;
}

h3 {
    font-size: 32px;
    font-style: normal;
    line-height: 40px;
}

h4 {
    font-size: 28px;
    font-style: normal;
    line-height: 36px;
}

h5 {
    font-size: 24px;
    font-style: normal;
    line-height: 32px;
}

h6 {
    font-size: 20px;
    font-style: normal;
    line-height: 28px;
}

/*++++++++++++++++ HTML Tags +++++++++++*/
a,
.button {
    color: var(--primary-color);
    outline: none !important;
    text-decoration: none;
    transition: all 0.5s ease-in-out;
    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;
}

a:focus,
a:hover {
    color: var(--primary-color);
    outline: none;
    text-decoration: none !important;
}

p {
    margin-bottom: 30px;
}

img {
    max-width: 100%;
    height: auto;
}

pre {
    background: var(--white-color);
    padding: 15px;
    border: 1px solid var(--grey-color);
}

hr {
    margin: 0;
    padding: 0px;
    border-bottom: 1px solid #e0e0e0;
    border-top: 0px;
}

b,
strong {
    font-weight: 500;
}

/*+++++++++++++ Lists (Nested) ++++++++++++++*/
ol,
ul {
    padding-left: 25px;
    margin-bottom: 1em;
}

ol li {
    list-style: decimal;
}

ol ol {
    padding-left: 25px;
}

ul li {
    list-style: inherit;
}

/*+++++++++++Definition Lists ++++++++++*/
dl dd {
    margin-bottom: 15px;
}

dl dd:last-child {
    margin-bottom: 0px;
}

/*+++++++++++++ Table ++++++++++++++*/
table {
    border: 2px solid var(--grey-color);
    width: 100%;
    margin-bottom: 20px;
}

table td,
table th {
    border: 2px solid var(--grey-color);
    padding: 8px;
    text-align: center;
}

/*++++++++++Input Textarea +++++++++++++*/
input,
input.form-control {
    background: var(--grey-color);
    border: 1px solid var(--grey-color);
    color: var(--dark-color);
    width: 100%;
    float: left;
    font-size: 16px;
    padding: 0 15px;
    height: 54px;
    line-height: 54px;
    outline: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 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;
    margin-bottom: 30px;
}

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 {
    background: var(--grey-color);
    border: 1px solid var(--grey-color);
    color: var(--dark-color);
    width: 100%;
    float: left;
    padding: 10px 15px;
    outline: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 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;
    margin-bottom: 30px;
}

/*+++++++++++++ Select +++++++++++++++*/
select,
select.form-control {
    border: 1px solid var(--dark-color);
    color: var(--dark-color);
    width: 100%;
    float: left;
    padding: 0 30px 0 15px;
    height: 51px;
    line-height: 48px;
    outline: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 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;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill=\'%23999999\' height=\'24\' viewBox=\'0 0 24 24\' width=\'24\' xmlns=\'http://www.w3.org/2000/svg\'><path d=\'M7 10l5 5 5-5z\'/><path d=\'M0 0h24v24H0z\' fill=\'none\'/></svg>');
    background-repeat: no-repeat;
    background-position: right 16px bottom 50%;
    background-size: 20px 20px;
}

blockquote {
    background: var(--white-color);
    padding: 30px;
    border: 1px solid var(--grey-color);
    border-left: 5px solid var(--primary-color);
    margin-bottom: 30px;
}

blockquote cite {
    font-family: var(--title-fonts);
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 500;
    font-style: italic;
}

blockquote strong {
    font-family: var(--title-fonts);
    color: var(--primary-color);
    font-style: italic;
    font-weight: 500;
    display: block;
}

.pq-blog-post .pq-blog-contain blockquote p {
    margin-bottom: 0;
}

.pq-bg-grey{
    background-color: var(--grey-color);
}

.pq-bg-white{
    background-color: var(--white-color);
}

.pq-bg-purple{
    background-color: var(--purple-color);
}

.pq-bg-primary{
    background-color: var(--primary-color);
}

.pq-text-white{
    color: var(--white-color) !important;
}

.pq-text-purple{
    color: var(--purple-color);
}

/*+++++++++++++Container +++++++++++++++*/
.container{
    max-width: 1300px;
    position: relative;
}

section {
    padding: 130px 0;
    position: relative;
}

/*++++++++++++++++++++++++++++++++++++++++
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: 45px;
}

.loader {
    display: inline-block;
    background: var(--purple-color);
    width: 60px;
    height: 60px;
    position: relative;
    text-align: center;
    animation: 3s rotate linear infinite;
}

.loader:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--primary-color);
    animation: 1.5s rotate reverse linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*++++++++++++++++++++++++++++++++++++++++
Back To Top
++++++++++++++++++++++++++++++++++++++++*/
#back-to-top .top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    margin: 0px;
    color: var(--white-color);
    background: var(--dark-color);
    z-index: 999;
    border: 1px solid var(--dark-color);
    font-size: 26px;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
}

#back-to-top .top:hover {
    background: var(--primary-color);
    color: var(--white-color);
    border: 1px solid var(--primary-color);
}

/*++++++++++++++++++++++++++++++++++++++++
Wordpress Core
++++++++++++++++++++++++++++++++++++++++*/

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    white-space: nowrap;
    height: 0px;
    width: 1px;
    overflow: hidden;
}

.screen-reader-text:focus {
    background-color: var(--grey-color);
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 500;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/*++++++++++++++++++++++++++++++++++++++++
Button Core
++++++++++++++++++++++++++++++++++++++++*/
[type="button"],
[type="reset"],
[type="submit"] {
    font-family: var(--title-fonts);
    overflow: inherit;
    position: relative;
    width: auto;
    background: var(--primary-color);
    color: var(--white-color);
    text-transform: capitalize;
    font-size: 16px;
    padding: 12px 45px;
    font-weight: 400;
    line-height: 2;
    vertical-align: middle;
    border: none;
    display: inline-block;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out
}

[type="button"]:hover,
[type="reset"]:hover,
[type="submit"]:hover {
    color: var(--white-color);
    background: var(--dark-color);
}

.pq-button {
    font-family: var(--title-fonts);
    font-weight: 400;
    text-transform: capitalize;
    line-height: 2;
    font-size: 16px;
    padding: 12px 45px;
    position: relative;
    width: auto;
    background: var(--primary-color);
    color: var(--white-color);
    vertical-align: middle;
    display: inline-block;
    overflow: hidden;
    -webkit-border-radius: 0;
    -moz-border-radius:0;
    border-radius:0;
    text-decoration:none;
    fill: var(--white-color);
    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-button i {
    margin-left: 8px;
    font-size: 12px;
}

.pq-button:hover,
.pq-button:focus {
    background: var(--dark-color);
    color: var(--white-color);
}

.rev-btn i {
    margin-left: 8px !important;
    font-size: 12px !important;
}

/*===== Button link =====*/
.pq-button.pq-button-link {
    padding: 0;
    position: relative;
    background: transparent;
    color: var(--primary-color);
    border-radius: 0;
    position: relative;
}

.pq-button.pq-button-link:hover {
    color: var(--dark-color);
}

.pq-button.pq-button-link:hover i {
    color: var(--dark-color);
}

/*===== Button outline =====*/
.pq-button.pq-btn-outline {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.pq-button.pq-btn-outline:hover {
    background: transparent;
    border: 1px solid var(--dark-color);
    color: var(--dark-color);
}

.pq-button.pq-btn-outline i {
    fill: var(--primary-color);
}

.pq-button.pq-btn-outline:hover i {
    fill: var(--dark-color);
}

/*++++++++++++++++++++++++++++++++++++++++
Blog Sidebar
++++++++++++++++++++++++++++++++++++++++*/
.widget {
    margin-bottom: 30px;
    display: inline-block;
    width: 100%;
    float: left;
    position: relative;
    padding: 30px;
    background: var(--grey-color);
    border: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.widget:last-child {
    margin-bottom: 0;
}

/*+++++ Widget Title +++++*/
.widget h2 {
    margin-bottom: 15px;
    padding: 0;
    font-size: 28px;
    position: relative;
    line-height: 36px;
    position: relative;
}

/*+++++ SideBar - Search +++++*/
.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);
}

.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;
}

/*+++++ widget-menu +++++*/
.widget ul {
    padding: 0;
    margin: 0;
}

.widget ul li {
    list-style: none;
    margin: 0 0 15px 0;
}

.widget ul li:last-child {
    margin-bottom: 0;
}

.widget ul ul.children {
    padding-left: 25px;
    margin-top: 15px;
}

.widget ul li a {
    color: var(--secondary-color);
    position: relative;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
    position: relative;
    padding: 0 0 0 15px;
}

footer#pq-footer .widget ul li a{
    padding-left: 0;
}

.widget ul li a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.widget ul.wp-block-latest-posts__list li>a:before,
.widget ul.wp-block-archives-list li>a:before,
.widget ul.wp-block-categories-list li>a:before,
.widget.widget_archive ul li>a:before,
.widget.widget_categories ul li>a:before,
.widget.widget_pages ul li>a:before,
.widget.widget_meta ul li>a:before,
.widget.widget_recent_entries ul li>a:before,
.widget.widget_nav_menu ul li>a:before,
.widget ul.wp-block-page-list li>a:before {
    position: absolute;
    content: '\f054';
    left: 0;
    font-size: 10px;
    top: 5px;
    color: inherit;
    font-family: "Font Awesome 6 Free";
    line-height: normal;
    font-weight: 900;
    color: var(--primary-color);
}

/*+++++  widget_categories  +++++*/
.widget_categories ul>li:last-child {
    margin-bottom: 0;
}

/*+++++  SideBar - widget Recent Entries +++++*/
.widget_recent_entries ul li .post-date {
    font-weight: 500;
    color: var(--dark-color);
}

/*+++++ SideBar - Tags +++++*/
.widget_tag_cloud .tag-cloud-link {
    font-size: 14px !important;
    background: var(--dark-color);
    margin: 0 10px 10px 0;
    display: inline-block;
    float: left;
    color: var(--white-color);
    padding: 4px 16px;
    border: 1px solid var(--grey-color);
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
}

.widget_tag_cloud .tag-cloud-link:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--white-color);
}

/*+++++ Footer  widget+++++*/
footer#pq-footer .widget h2 {
    color: var(--white-color);
}

footer#pq-footer .wp-block-calendar table caption,
footer#pq-footer .wp-block-calendar table tbody {
    color: var(--white-color);
}

footer#pq-footer .wp-calendar-table td#today {
    background: var(--primary-color);
    color: var(--white-color);
}

footer#pq-footer .wp-calendar-table td#today a {
    color: var(--white-color);
}

footer#pq-footer .wp-calendar-table td a {
    text-decoration: none;
}

footer#pq-footer .wp-block-latest-comments li .wp-block-latest-comments__comment-author {
    color: var(--primary-color);
}

footer#pq-footer .widget ul.wp-block-social-links li a {
    padding: 0;
    width: 36px;
    height: 36px;
    text-align: center;
    display: table-cell;
    vertical-align: middle;
}

footer#pq-footer .widget ul.wp-block-social-links li a:hover {
    color: var(--white-color);
}

footer#pq-footer .widget ul.wp-block-social-links li a:before {
    display: none;
}

footer#pq-footer .widget .wp-block-search__inside-wrapper {
    position: relative;
}

footer#pq-footer .widget_calendar table#wp-calendar {
    background: transparent;
}

footer#pq-footer .widget_calendar .calendar_wrap table th {
    background: transparent;
    color: var(--white-color);
}

footer#pq-footer .widget.widget_rss ul li cite {
    color: var(--white-color);
}

footer#pq-footer .widget_tag_cloud .tag-cloud-link {
    border: 1px solid transparent;
}

footer#pq-footer .widget ul li.recentcomments .comment-author-link a {
    font-weight: 600;
    text-decoration: underline;
}

footer#pq-footer .widget ul li.recentcomments a:before {
    display: none;
}

/*+++++++++++ Comments Box +++++++++++++*/
.comment-respond {
    margin-top: 0;
    display: inline-block;
    width: 100%;
}

.pq-comment-area .comments-title,
.comment-respond .comment-reply-title {
    padding-top: 30px;
    position: relative;
    margin: 0;
    padding-bottom: 0;
}

.comment-respond .comment-reply-title a {
    font-weight: 400;
    font-family: var(--title-fonts);
    color: var(--primary-color);
    font-size: 60%;
    margin-left: 30px;
}

.comment-respond .comment-reply-title a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.commentlist {
    margin: 0;
    padding: 0;
    list-style: none;
}

.commentlist .comment {
    margin-top: 30px;
    margin-bottom: 0;
    vertical-align: top;
    padding: 0;
    list-style: none;
}

.commentlist .pq-comment-info {
    padding: 30px;
    border: 1px solid var(--grey-color);
    position: relative;
    background: var(--grey-color);
}

.commentlist ol.children {
    padding-left: 60px;
}

.commentlist .pq-comment-wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
}

.commentlist .pq-comment-avatar {
    padding-right: 15px;
}

.commentlist .pq-comment-box {
    position: relative;
    display: inline-block;
    width: 100%;
}

.commentlist .pq-comment-box .title:hover {
    text-decoration: none;
    color: var(--primary-color);
}

.commentlist .comment-content p {
    margin: 0;
}

.commentlist .pq-comment-info .reply a {
    position: absolute;
    right: 30px;
    top: 30px;
    margin: 0;
    font-size: 14px;
    line-height: 22px;
    text-transform: capitalize;
    font-family: var(--title-fonts);
}

.commentlist .pq-comment-info .reply a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.no-comments,
.comment-awaiting-moderation {
    font-style: italic;
    margin: 15px 0;
}

/*++++++++++++++++++++++++++++++++++++++++
Blog
++++++++++++++++++++++++++++++++++++++++*/
.pq-blog .owl-carousel .pq-blog-post {
    margin-bottom: 0;
}

.single-post .pq-blog-post {
    margin-bottom: 0;
}

.pq-blog-post {
    margin-bottom: 30px;
    background: var(--grey-color);
    display: inline-block;
    width: 100%;
}

.pq-blog-post .pq-post-media {
    overflow: hidden;
    margin-bottom: 0;
    position: relative;
}

.pq-blog-post .pq-post-media img {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

.pq-blog-post:hover .pq-post-media img {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.pq-blog-post .pq-post-media .pq-post-date {
    font-family: var(--title-fonts);
    background: var(--primary-color);
    padding: 5px 15px;
    color: var(--white-color);
    text-align: center;
    position: absolute;
    bottom: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.pq-blog-post .pq-post-media .pq-post-date a {
    color: var(--white-color);
}

.pq-blog-post .pq-blog-contain {
    padding: 30px;
    display: inline-block;
    position: relative;
    width: 100%;
}

.pq-blog-col-3 .pq-blog-post .pq-blog-contain .pq-blog-title {
    font-size: 22px;
    line-height: 30px;
}

.pq-blog-post .pq-blog-contain .pq-blog-title {
    font-size: 32px;
    line-height: 40px;
    margin: 0 0 5px;
    font-weight: 500;
}

.pq-blog .owl-carousel .pq-blog-post .pq-blog-contain .pq-blog-title { font-size: 24px; line-height: 32px; }

.pq-blog-post .pq-blog-contain .pq-btn-container {
    margin-top: 10px;
}

.pq-blog-post .pq-blog-contain .pq-btn-container .pq-button.pq-button-link {
    margin-top: 15px;
    color: var(--primary-color);
}

.pq-blog-post .pq-post-meta ul {
    margin: 0 0 15px;
    padding: 0;
    width: 100%;
    display: -ms-flexbox !important;
    display: flex !important;
}

.pq-blog-post .pq-post-meta ul li {
    font-family: var(--title-fonts);
    list-style: none;
    float: left;
    display: inline-block;
    margin-right: 20px;
    color: var(--dark-color);
    align-self: center !important;
    font-size: 14px;
    line-height: 22px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.pq-blog-post .pq-post-meta ul li:last-child {
    margin-right: 0;
}

.pq-blog-post .pq-post-meta ul li a {
    color: var(--dark-color);
    text-decoration: none;
}

.pq-blog-post .pq-post-meta ul li a:hover {
    color: var(--primary-color);
}

.pq-blog-post .pq-post-meta ul li i {
    margin-right: 10px;
    color: var(--primary-color);
}

.pq-light-bg .pq-blog-post {
    background: var(--white-color);
}

/*++++++++++++++++++++++++++++++++++++++++
Pagination
++++++++++++++++++++++++++++++++++++++++*/
.pq-pagination {
    margin-top: 15px;
}

.pq-pagination .page-numbers {
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pq-pagination .page-numbers li:first-child .page-numbers {
    margin-left: 0;
}

.pq-pagination .page-numbers li .page-numbers {
    position: relative;
    display: block;
    padding: 0px 15px;
    height: 45px;
    width: 45px;
    text-align: center;
    line-height: 45px;
    margin: 0 5px;
    color: var(--dark-color);
    background-color: var(--grey-color);
}

.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;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}

.pq-pagination .page-numbers li .next.page-numbers,
.pq-pagination .page-numbers li .prev.page-numbers {
    width: auto;
}

/*++++++++++++++++++++++++++++++++++++++++
Error
++++++++++++++++++++++++++++++++++++++++*/
.pq-error-block {
    text-align: center;
}

.pq-error-block .pq-error-text {
    font-size: 420px;
    font-family: var(--title-fonts);
    color: var(--primary-color);
    line-height: 0.8;
    margin-bottom: 30px;
    font-style: normal;
    text-transform: uppercase;
    font-weight: 500;
}

/*++++++++++++++++++++++++++++++++++++++++
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: 16px;
    line-height: 24px;
    font-family: var(--title-fonts);
    text-transform: uppercase;
    list-style: none;
    text-transform: uppercase;
    color: var(--dark-color);
    display: inline-block;
    cursor: pointer;
    padding: 10px 30px;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.pq-filters .pq-filter-button-group ul li:last-child {
    margin-right: 0;
}

.pq-filters .pq-filter-button-group ul li.active,
.pq-filters .pq-filter-button-group ul li.active:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.pq-filters .pq-filter-button-group ul li:hover {
    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-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;
}

/*++++++++++++++++++++++++++++++++++++++++
Header
++++++++++++++++++++++++++++++++++++++++*/
.animated {
	-webkit-animation-duration: 1.25s;
	animation-duration: 1.25s;
}

.fadeInDown {
	animation-name: fadeInDown
}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translate3d(-100%, 0, 0)
	}

	to {
		opacity: 1;
		transform: none
	}
}

header#pq-header {
	position: relative;
	display: inline-block;
	width: 100%;
	clear: both;
	background: var(--white-color);
	z-index: 99;
}

header#pq-header.pq-header-sticky {
	position: fixed;
	top: 0;
	left: 0;
	display: inline-block;
	width: 100%;
	-webkit-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
	-moz-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
	box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
}

/*+++++++++ Header Top Bar +++++++++*/
header#pq-header .pq-top-header {
	background: var(--dark-color);
	padding: 0;
	font-size: 14px;
}

header#pq-header .pq-header-social.tagline {
	color: var(--white-color);
	padding-top: 13px;
	display: block;
	font-family: var(--title-fonts);
	font-weight: 500;
	font-size: 14px;
	text-transform: uppercase;
	line-height: 22px;
}

header#pq-header .pq-top-header .text-left .pq-header-social.text-left {
	color: var(--white-color);
	padding-top: 10px;
	display: inline-block;
}

header#pq-header .pq-top-header a.pq-header-contact {
	color: var(--white-color);
	padding: 10px 0;
	display: inline-block;
	margin-right: 10px;
	border-right: 1px solid rgba(255, 255, 255, 0.1);
	padding-right: 15px;
	font-family: var(--title-fonts);
	font-weight: 500;
	font-size: 14px;
	text-transform: uppercase;
}

header#pq-header .pq-top-header a.pq-header-contact i {
	margin-right: 5px;
}

header#pq-header .pq-top-header .pq-header-contact.text-right ul {
	float: right;
}

header#pq-header .pq-top-header .pq-header-contact ul {
	margin: 0;
	padding: 0;
}

header#pq-header .pq-top-header .pq-header-contact ul li {
	list-style: none;
	display: inline-block;
	color: var(--white-color);
	border-left: 1px solid rgba(255, 255, 255, 0.1);
	padding: 10px 30px;
	float: left;
}

header#pq-header .pq-top-header .pq-header-contact ul li:last-child {
	margin-right: 0;
	border-right: 1px solid rgba(255, 255, 255, 0.1);
}

header#pq-header .pq-top-header .pq-header-contact ul li i {
	margin-right: 8px;
}

header#pq-header .pq-top-header .pq-header-contact ul li a {
	color: var(--white-color);
}

header#pq-header .pq-top-header .pq-header-contact ul li a:hover {
	color: var(--white-color);
	background: transparent;
}

header#pq-header .pq-top-header .text-right .pq-header-social ul,
header#pq-header .pq-top-header .pq-header-social.text-right ul {
	float: right;
}

header#pq-header .pq-top-header .pq-header-social ul {
	margin: 0;
	padding: 0;
}

header#pq-header .pq-top-header .pq-header-social ul li {
	list-style: none;
	display: inline-block;
	float: left;
	border-left: 1px solid rgba(255, 255, 255, 0.1);
}

header#pq-header .pq-top-header .pq-header-social ul li a {
	color: var(--white-color);
	padding: 10px 20px;
	display: inline-block;
}

header#pq-header .pq-top-header ul li a:hover {
	color: var(--white-color);
	background: var(--primary-color)
}

header#pq-header .pq-top-header .pq-header-social ul li:last-child {
	border-right: 1px solid rgba(255, 255, 255, 0.1);
}

/*++++++++ Logo +++++++++++*/
header#pq-header .pq-bottom-header .navbar .navbar-brand {
	line-height: 80px;
}

header#pq-header .pq-bottom-header .navbar .navbar-brand img {
	height: 42px;
}

/*++++++ Header Navbar Bar +++++*/
header#pq-header .pq-bottom-header {
	min-height: 90px;
}

header#pq-header .pq-bottom-header .navbar {
	padding: 0;
}

header#pq-header .pq-bottom-header .navbar .pq-menu-contain {
	display: inline-block;
	width: 100%;
}

header#pq-header .pq-bottom-header .navbar .navbar-nav {
	float: right;
}

header#pq-header .pq-bottom-header .navbar .navbar-nav li {
	position: relative;
	display: inline-block;
	float: left;
	margin-right: 30px;
	color: var(--dark-color);
	line-height: 90px;
	font-weight: 400;
}

header#pq-header .pq-bottom-header .navbar .navbar-nav li:last-child {
	margin-right: 0;
}

header#pq-header .pq-bottom-header .navbar .navbar-nav li a {
	color: var(--dark-color);
	font-family: var(--title-fonts);
	font-size: 16px;
	text-transform: capitalize;
	line-height: 24px;
}

header#pq-header .pq-bottom-header .navbar .navbar-nav li a:focus,
header#pq-header .pq-bottom-header .navbar .navbar-nav li a:hover,
header#pq-header .pq-bottom-header .navbar .navbar-nav li.current-menu-item a,
header#pq-header .pq-bottom-header .navbar .navbar-nav li.current_page_item a,
header#pq-header .pq-bottom-header .navbar .navbar-nav li:hover a,
header#pq-header .pq-bottom-header .navbar .navbar-nav li.current-menu-ancestor a {
	color: var(--primary-color);
}

/*++++++++ Sub Menu Bar ++++++++*/
header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu {
	display: none;
}

header#pq-header .pq-bottom-header .navbar .navbar-nav li:hover .sub-menu {
	display: block;
	background: var(--white-color);
	position: absolute;
	top: 100%;
	left: 0;
	padding-left: 0;
	display: inline-block;
	width: 210px;
	z-index: 999;
	-webkit-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
	-moz-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
	box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
}

header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li {
	line-height: 2;
	padding: 0;
	margin: 0;
	display: inline-block;
	width: 100%;
	color: var(--secondary-color);
}

header#pq-header .pq-bottom-header .navbar .navbar-nav li i {
	margin-left: 10px;
	font-size: 12px;
	color: var(--dark-color);
}

header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li a {
	line-height: 2;
	text-transform: capitalize;
	padding: 10px 15px;
	display: inline-block;
	width: 100%;
	color: var(--secondary-color);
	font-size: 16px;
}

header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li a:focus,
header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li a:hover,
header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li.current-menu-item>a {
	background: var(--primary-color);
	color: var(--white-color);
}

/*+++++++ Navigation Sub Menu +++++++++++++*/
header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li>.sub-menu {
	display: none;
}

header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li:hover>.sub-menu {
	position: absolute;
	top: 0;
	left: 100%;
	display: block;
	background: var(--white-color);
	padding-left: 0;
	display: inline-block;
	width: 200px;
}

header#pq-header .pq-bottom-header .navbar .navbar-nav li:hover .sub-menu li.menu-item-has-children>.pq-submenu-icon {
	opacity: 1;
	position: absolute;
	top: 12px;
	right: 15px;
	line-height: 2;
	font-size: 12px;
	color: var(--secondary-color);
	-moz-transform: rotate(270deg);
	-webkit-transform: rotate(270deg);
	-o-transform: rotate(270deg);
	-ms-transform: rotate(270deg);
	transform: rotate(270deg);
}

header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu>li.menu-item-has-children:hover>.pq-submenu-icon {
	color: var(--white-color);
}

header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu>li.menu-item-has-children:hover {
	background: var(--primary-color);
	color: var(--white-color);
}

header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li.menu-item-has-children:hover>a {
	color: var(--white-color);
	transition: all 0s ease-in-out;
	transition: all 0s ease-in-out;
	-moz-transition: all 0s ease-in-out;
	-ms-transition: all 0s ease-in-out;
	-o-transition: all 0s ease-in-out;
	-webkit-transition: all 0s ease-in-out;
}

/*+++++++++++++ Navigation search ++++++++++++++++*/
header#pq-header .pq-menu-search-block {
	position: relative;
	margin: 0 0 0 30px;
}

header#pq-header .pq-menu-search-block a {
	color: var(--dark-color);
	font-size: 22px;
	text-align: center;
	display: inline-block;
}

header#pq-header .pq-search-form {
	position: absolute;
	top: 59px;
	right: -30px;
	width: 350px;
	padding: 15px;
	z-index: 999;
	display: none;
	background: var(--white-color);
	-webkit-box-shadow: 0px 3px 30px 0px rgba(0, 33, 85, 0.1);
	-moz-box-shadow: 0px 3px 30px 0px rgba(0, 33, 85, 0.1);
	box-shadow: 0px 3px 30px 0px rgba(0, 33, 85, 0.1);
}

header#pq-header .pq-button:hover .pq-button-line-left {
	width: calc(15px - 1px);
}

/*+++++++++++++ Header Default +++++++++++++++++*/
header#pq-header.pq-header-default .pq-top-header a.pq-header-contact {
	border: none;
}

header#pq-header.pq-header-default .pq-bottom-header.pq-header-sticky {
	position: fixed;
	top: 0;
	left: 0;
	display: inline-block;
	width: 100%;
	-webkit-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
	-moz-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
	box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
	background: var(--white-color);
}

/*+++++++++++++++*/
header#pq-header.pq-header-default .pq-btn-container {
	margin: 0 0 0 30px;
}

header#pq-header.pq-header-default .pq-btn-container .pq-button span {
	margin-right: 0;
}

header#pq-header.pq-header-default .pq-btn-container .pq-button {
	background: var(--primary-color);
}

header#pq-header.pq-header-default .pq-btn-container .pq-button:hover {
	background: var(--dark-color);
}

header#pq-header.pq-header-default .pq-toggle-btn {
	padding: 0;
	margin: 0 0 0 30px;
}

header#pq-header.pq-header-default .pq-toggle-btn a {
	position: relative;
	display: inline-block;
	padding: 0;
	font-size: 38px;
	background: var(--primary-color);
	color: #fff;
	line-height: 52px;
	width: 52px;
	height: 52px;
	text-align: center;
}

header#pq-header.pq-header-default .pq-menu-search-block {
	margin: 0 0 0 30px;
}

/*+++++ Header Style-1 +++++*/
header#pq-header.pq-header-style-1 .pq-top-header a.pq-header-contact {
	border: none;
}

header#pq-header.pq-header-style-1.pq-has-sticky {
	position: absolute;
	left: 0;
	display: inline-block;
	width: 100%;
	background: var(--white-color);
	z-index: 999;
	padding: 0;
	box-shadow: none;
}

header#pq-header.pq-header-style-1.pq-has-sticky.pq-header-sticky {
	position: fixed;
	background: var(--white-color);
	padding: 0;
	-webkit-box-shadow: 0px 3px 30px 0px rgba(0, 33, 85, 0.1);
	-moz-box-shadow: 0px 3px 30px 0px rgba(0, 33, 85, 0.1);
	box-shadow: 0px 3px 30px 0px rgba(0, 33, 85, 0.1);
}

header#pq-header.pq-header-style-1 .pq-bottom-header {
	min-height: 70px;
	max-width: 1920px;
	margin: 0 auto;
}

header#pq-header.pq-header-style-1 .pq-bottom-header .navbar .navbar-brand {
	line-height: normal;
	background: var(--white-color);
	padding: 15px 0px;
	position: relative;
}

header#pq-header.pq-header-style-1 .pq-header-info-box {
	margin: 0 0 0 30px;
	display: flex;
	color: var(--white-color);
}

header#pq-header.pq-header-style-1 .pq-header-call {
	display: inline-block;
	float: left;
	margin-right: 30px;
	margin-top: 5px;
}

header#pq-header.pq-header-style-1 .pq-header-call a i {
	font-size: 48px;
	margin-right: 15px;
	line-height: 56px;
}

header#pq-header.pq-header-style-1 .pq-header-call a {
	display: flex;
	align-items: flex-start;
}

header#pq-header.pq-header-style-1 .pq-header-call a .pq-call-info {
	flex: 1;
	text-transform: capitalize;
	font-size: 14px;
	color: var(--dark-color);
}

header#pq-header.pq-header-style-1 .pq-header-call a .pq-call-info span {
	width: 100%;
	float: left;
	display: inline-block;
	color: var(--primary-color);
	line-height: normal;
}

header#pq-header.pq-header-style-1 .pq-header-call a .pq-call-info h5 {
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
}

header#pq-header.pq-header-style-1 .pq-button {
	background: var(--dark-color);
}

header#pq-header.pq-header-style-1 .pq-button:hover {
	background: var(--primary-color);
}

header#pq-header.pq-header-style-1.pq-header-sticky .pq-bottom-header .navbar .navbar-nav li i {
	color: var(--dark-color);
}

header#pq-header.pq-header-style-1.pq-header-sticky .pq-header-call a .pq-call-info span {
	color: var(--primary-color);
}

header#pq-header .pq-button:before,
header#pq-header .pq-button:after {
	display: none;
}

header#pq-header.pq-header-style-1 .pq-bottom-header .navbar .navbar-nav li .sub-menu li:hover>.sub-menu {
	left: inherit;
	right: 100%;
}

/*+++++ Header Style-2 +++++*/
header#pq-header.pq-header-style-2 .pq-top-header a.pq-header-contact {
	border: none;
}

header#pq-header.pq-header-style-2 .pq-top-header {
	background: var(--dark-color);
}

header#pq-header.pq-header-style-2 .pq-top-header .text-left .pq-header-social {
	padding-top: 11px;
	color: var(--white-color);
	display: inline-block;
}

header#pq-header.pq-header-style-2 .pq-header-diff-block .navbar-brand img {
	height: 60px;
}

header#pq-header.pq-header-style-2 {
	position: absolute;
	left: 0;
	display: inline-block;
	width: 100%;
	background: var(--white-color);
	padding: 0;
	-webkit-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
	-moz-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
	box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
}

header#pq-header.pq-header-style-2 .no-gutters {
	margin-right: 0;
	margin-left: 0;
}

header#pq-header.pq-header-style-2 .no-gutters>.col,
header#pq-header.pq-header-style-2 .no-gutters>[class*="col-"] {
	padding-right: 0;
	padding-left: 0;
}

header#pq-header.pq-header-style-2 .navbar-brand {
	background: var(--primary-color);
	padding: 16px 30px;
	margin: 0;
	line-height: 4.6666;
	text-align: center;
	width: 100%;
	display: inline-block;
}

header#pq-header.pq-header-style-2 .pq-bottom-header {
	min-height: auto;
}

header#pq-header.pq-header-style-2 .pq-bottom-header .navbar .navbar-nav li {
	line-height: 75px;
}

header#pq-header.pq-header-style-2 .pq-header-info-box {
	display: flex;
}

header#pq-header.pq-header-style-2 .pq-menu-search-block {
	line-height: 76px;
	padding: 0 30px;
	background: var(--white-color);
	border-left: 1px solid var(--grey-color);
	border-right: 1px solid var(--grey-color);
	color: #fff;
	font-size: 20px;
}

header#pq-header.pq-header-style-2 .pq-bottom-header .navbar .navbar-nav li:hover .sub-menu {
	top: 75px;
}

header#pq-header.pq-header-style-2 .pq-search-form {
	top: 77px;
}

/*Header Style-2 sticky*/
header#pq-header.pq-header-style-2.pq-header-sticky {
	position: fixed;
	top: 0;
	left: 0;
	display: inline-block;
	width: 100%;
}

header#pq-header.pq-header-style-2.pq-header-sticky .pq-top-header {
	display: none;
}

header#pq-header.pq-header-style-2.pq-header-sticky .navbar-brand {
	line-height: 2.44444;
}

header#pq-header.pq-header-style-2.pq-header-sticky .pq-header-diff-block .navbar-brand img {
	height: 55px;
}

header#pq-header.pq-header-style-2.pq-header-sticky .pq-menu-search-block {
	line-height: 85px;
}

header#pq-header.pq-header-style-2.pq-header-sticky .pq-toggle-btn {
	padding: 25px;
}

/*+++++Ttoggle Side Bar +++++*/
header#pq-header.pq-header-style-2 .pq-toggle-btn {
	line-height: 75px;
	padding: 22px 25px;
	background: var(--primary-color);
	color: #fff;
	cursor: pointer;
}

header#pq-header.pq-header-style-2 .pq-toggle-btn a:before,
header#pq-header.pq-header-style-2 .pq-toggle-btn a:after {
	transform-origin: 50% 0%;
}

.buttons ol li:before {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
	display: block;
	width: 23vw;
	height: 20vw;
	content: "";
	-webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
	-moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.buttons ol li:after {
	position: absolute;
	top: 38%;
	right: 7vw;
	transform: rotate(-90deg);
	z-index: 1;
	display: block;
	width: 30px;
	height: 30px;
	text-align: center;
	content: counter(list-counter, decimal-leading-zero);
	font-family: Helvetica;
	font-size: 20px;
	line-height: 30px;
	font-weight: 300;
	opacity: 0.15;
	transition: color 0.35s;
	will-change: color;
}

header#pq-header.pq-header-style-2 .pq-toggle-btn a {
	position: relative;
	display: block;
	top: 15px;
	width: 30px;
	height: 2px;
	margin: 0 auto;
	border: none;
	cursor: pointer;
	background: currentColor;
	color: inherit;
	font-size: 0;
	transition: 0.35s;
}

header#pq-header.pq-header-style-2 .pq-toggle-btn a:before,
header#pq-header.pq-header-style-2 .pq-toggle-btn a:after {
	position: absolute;
	top: 0;
	left: 50%;
	display: block;
	width: 100%;
	height: 2px;
	background: currentColor;
	content: "";
	transition: transform 0.35s;
}

header#pq-header.pq-header-style-2 .pq-toggle-btn a:before {
	transform: translate(-50%, -10px);
}

header#pq-header.pq-header-style-2 .pq-toggle-btn a:after {
	transform: translate(-50%, 10px);
}

/*+++++ Header Style-3 +++++*/
header#pq-header.pq-header-style-3 .pq-top-header a.pq-header-contact {
	border: none;
}

header#pq-header.pq-header-style-3 .pq-header-top-wrapper {
	padding: 30px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 5px;
}

header#pq-header.pq-header-style-3 .pq-top-header .text-left .pq-header-social {
	padding-top: 11px;
	color: var(--white-color);
	display: inline-block;
}

header#pq-header.pq-header-style-3 .pq-header-top-wrapper .pq-site-logo a.navbar-brand img {
	height: 42px;
}

header#pq-header.pq-header-style-3 .site-header-menu a.navbar-brand img {
	display: none;
}

header#pq-header.pq-header-style-3 .pq-header-top-wrapper .pq-top-info-content .pq-header-info {
	display: flex;
	justify-content: flex-end;
}

header#pq-header.pq-header-style-3 .pq-header-top-wrapper .pq-top-info-content .pq-header-info-box {
	display: flex;
	padding: 0 30px;
	align-items: center;
}

header#pq-header.pq-header-style-3 .pq-header-top-wrapper .pq-top-info-content .pq-header-info-box.address {
	width: 30%;
	padding: 0;
}

header#pq-header.pq-header-style-3 .pq-header-top-wrapper .pq-top-info-content .pq-header-info-box.address p {
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

header#pq-header.pq-header-style-3 .pq-header-top-wrapper .pq-top-info-content .pq-header-info-box:last-child {
	padding-right: 0;
}

header#pq-header.pq-header-style-3 .pq-header-top-wrapper .pq-top-info-content .pq-header-info-box .info-icon-content {
	padding-left: 10px;
}

header#pq-header.pq-header-style-3 .pq-header-info-box .info-icon i {
	font-size: 34px;
	color: var(--primary-color);
}

header#pq-header.pq-header-style-3 .pq-header-info-box .info-icon-content h4 {
	font-size: 20px;
	font-weight: 500;
	line-height: 22px;
}

header#pq-header.pq-header-style-3 .pq-header-info-box .info-icon-content p {
	margin-bottom: 0;
	font-size: 14px;
}

header#pq-header.pq-header-style-3 .site-header-menu {
	position: relative;
	bottom: -30px;
}

header#pq-header.pq-header-style-3 .pq-bottom-header .navbar {
	background: var(--primary-color);
}

header#pq-header.pq-header-style-3 .pq-bottom-header .navbar .navbar-nav {
	float: none;
	padding-left: 15px;
}

header#pq-header.pq-header-style-3 .pq-bottom-header .navbar .navbar-nav li a {
	color: var(--white-color);
}

header#pq-header.pq-header-style-3 .pq-bottom-header .navbar .navbar-nav li i {
	color: var(--white-color);
}

header#pq-header.pq-header-style-3 .pq-menu-search-block {
	line-height: 65px;
	padding: 0 30px;
	font-size: 20px;
}

header#pq-header.pq-header-style-3 .pq-menu-search-block a {
	color: var(--white-color);
	font-size: 22px;
}

header#pq-header.pq-header-style-3 .pq-search-form {
	top: 66px;
	right: 0;
}

header#pq-header.pq-header-style-3 .pq-bottom-header .navbar .navbar-nav li {
	margin-right: 40px;
	line-height: 65px;
}

header#pq-header.pq-header-style-3 .pq-bottom-header .navbar .navbar-nav li:last-child {
	margin-right: 0;
}

header#pq-header.pq-header-style-3 .pq-toggle-btn {
	display: none;
}

header#pq-header.pq-header-style-3 .pq-bottom-header .pq-button {
	background: var(--purple-color);
	padding: 18px 45px;
}

header#pq-header.pq-header-style-3 .pq-bottom-header .pq-button:hover {
	background: var(--dark-color);
}

/*+++++ Header Style-4 +++++*/
header#pq-header.pq-header-style-4 .pq-header-info-box {
	display: flex;
	align-items: center;
	padding: 0 30px;
}

header#pq-header.pq-header-style-4 .pq-header-info-box .info-icon i {
	font-size: 34px;
	color: var(--primary-color);
}

header#pq-header.pq-header-style-4 .pq-header-info-box .info-icon-content p {
	margin-bottom: 0;
}

header#pq-header.pq-header-style-4 .pq-header-info-box .info-icon-content h4 {
	font-size: 20px;
	font-weight: 500;
	line-height: 22px;
}

header#pq-header.pq-header-style-4 .pq-header-info-box .info-icon-content {
	padding-left: 15px;
}

/*+++++ Header Style-5 +++++*/
header#pq-header.pq-header-style-5 {
	background: transparent;
	position: absolute;
}

header#pq-header.pq-header-style-5 .pq-top-header {
	background: transparent;
}

header#pq-header.pq-header-style-5 .pq-top-header .text-left .pq-header-social {
	padding-top: 6px;
	color: var(--white-color);
	display: inline-block;
}

header#pq-header.pq-header-style-5 .pq-bottom-header .navbar .navbar-nav li:last-child {
	margin-right: 0;
}

header#pq-header.pq-header-style-5 .pq-top-header .pq-header-social ul li {
	border: none;
}

header#pq-header.pq-header-style-5 .pq-top-header .pq-header-social ul li a {
	padding: 10px 15px;
}

header#pq-header.pq-header-style-5 .pq-top-header ul li a:hover {
	background: none;
	color: var(--primary-color);
}

header#pq-header.pq-header-style-5 .pq-bottom-header .navbar {
	background: var(--white-color);
	border-radius: 5px;
}

header#pq-header.pq-header-style-5 .pq-bottom-header .navbar .navbar-brand {
	padding-left: 15px;
}

header#pq-header.pq-header-style-5 .pq-menu-phone {
	margin-left: 30px;
}

header#pq-header.pq-header-style-5 .pq-menu-phone a#pq-phone {
	width: 60px;
	height: 60px;
	background: var(--primary-color);
	color: var(--white-color);
	border: 6px solid var(--white-color);
	display: inline-block;
	text-align: center;
	border-radius: 100px;
	line-height: 48px;
	vertical-align: middle;
	margin-right: -30px;
	position: relative;
	z-index: 9;
}

header#pq-header.pq-header-style-5 .pq-btn-container .pq-button {
	border-radius: 0;
	line-height: 66px;
	-webkit-border-top-right-radius: 5px;
	-webkit-border-bottom-right-radius: 5px;
	-moz-border-radius-topright: 5px;
	-moz-border-radius-bottomright: 5px;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	font-weight: 500;
	text-transform: uppercase;
	padding-left: 55px;
}

/*++++++++++++++++++++++++++++++++++++++++
Breadcrumb
++++++++++++++++++++++++++++++++++++++++*/

.pq-breadcrumb{
    background-image: url(../images/breadcrumb/1.png) !important;
}

.pq-breadcrumb {
    background: var(--grey-color);
    color: var(--white-color);
    padding: 130px 0;
    position: relative;
    text-align: left;
    background-size: cover;
    background-position: center center;
}

.pq-breadcrumb .pq-breadcrumb-title,
.pq-breadcrumb .pq-breadcrumb-container {
    position: relative;
    z-index: 9;
}

.pq-breadcrumb .pq-breadcrumb-title h1 {
    font-size: 52px;
    line-height: 60px;
    margin-bottom: 15px;
}

.pq-breadcrumb-container .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.pq-breadcrumb-container .breadcrumb li {
    list-style-type: none;
    margin-right: 15px;
    padding-left: 0;
    color: var(--dark-color);
}

.pq-breadcrumb-container .breadcrumb li.active {
    color: var(--primary-color);
}

.pq-breadcrumb-container .breadcrumb li a {
    color: var(--dark-color);
}

.pq-breadcrumb-container .breadcrumb li a:hover {
    color: var(--primary-color);
}

.pq-breadcrumb-container .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    font-size: 12px;
    font-family: "Ionicons";
    padding-right: 15px;
    content: "\f125";
    color: var(--dark-color);
    float: none;
}

/*++++++++++++++++++++++++++++++++++++++++
Footer
++++++++++++++++++++++++++++++++++++++++*/

footer#pq-footer.style-1 {
    margin-top: 60px;
}

footer#pq-footer {
    background: var(--purple-color);
    display: inline-block;
    width: 100%;
    color: var(--white-color);
    float: left;
    position: relative;
}

footer#pq-footer:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

footer#pq-footer .pq-footer-top {
    padding: 60px 0 0;
    position: relative;
    z-index: 9;
}

footer#pq-footer .pq-copyright-footer {
    padding: 15px 0;
    background: var(--purple-color);
    position: relative;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

footer#pq-footer .pq-copyright-footer .pq-copyright {
    display: inline-block;
    width: 100%;
    color: var(--white-color);
}

footer#pq-footer .pq-copyright-footer .pq-copyright a {
    color: var(--white-color);
}

footer#pq-footer .pq-copyright-footer .pq-copyright a:hover {
    color: var(--white-color);
    text-decoration: underline;
}

/*===== Footer Widget =====*/
footer#pq-footer .widget {
    background: transparent;
    padding: 0;
    box-shadow: none;
    border: none;
    margin-bottom: 45px;
}

footer#pq-footer .widget .footer-title {
    margin-bottom: 15px;
    padding: 0;
    font-size: 28px;
    position: relative;
    line-height: 36px;
}

footer#pq-footer .widget ul#menu-useful-links li {
    display: inline-block;
    width: 48%;
    margin-bottom: 12px;
}

footer#pq-footer .widget ul li {
    margin: 0 0 15px 0;
}

footer#pq-footer .widget ul li a:hover {
    color: var(--primary-color);
}

footer#pq-footer .widget ul.menu li a{
    position: relative;
    border: none;
    padding: 0 0 0 15px;
    display: inline-block;
    width: 100%;
}

footer#pq-footer .widget ul.menu li a:first-child {
    padding-top: 0;
}

footer#pq-footer .widget ul.menu li a:hover {
    color: var(--primary-color);
}

footer#pq-footer .widget ul.menu li a:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 5px;
    height: 5px;
    display: inline-block;
    background: var(--primary-color);
    margin: auto 0;
}

.pq-foote-recent-post {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 15px;
}

.pq-foote-recent-post:last-child {
    margin-bottom: 0;
    border: none;
    padding: 0;
}

.pq-foote-recent-post .pq-foote-recent-post-media {
    margin-right: 15px;
}

.pq-foote-recent-post .pq-foote-recent-post-media img {
    width: 80px;
    height: 80px;
}

.pq-foote-recent-post .pq-foote-recent-post-info {
    flex: 1;
    align-self: center;
}

.pq-foote-recent-post .pq-foote-recent-post-info .pq-post-date {
    font-family: var(--title-fonts);
    font-weight: 400;
    color: var(--primary-color);
    width: 100%;
    display: inline-block;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.1em;
}

.pq-foote-recent-post .pq-foote-recent-post-info h6 {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 0;
    font-weight: 400;
}

.pq-foote-recent-post .pq-foote-recent-post-info h6 a:hover {
    color: var(--primary-color);
}

/*=========*/
footer#pq-footer .pq-footer-style-1 .pq-footer-social {
    display: inline-block;
}

footer#pq-footer .pq-footer-style-1 .pq-footer-social ul {
    margin: 0;
    padding: 0
}

footer#pq-footer .pq-footer-style-1 .pq-footer-social ul li {
    list-style: none;
    float: left;
    margin-right: 10px;
}

footer#pq-footer .pq-footer-style-1 .pq-footer-social ul li:last-child {
    margin: 0;
}

footer#pq-footer .pq-footer-style-1 .pq-footer-social ul li a {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white-color);
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    display: inline-block;
}

footer#pq-footer .pq-footer-style-1 .pq-footer-social ul li a:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

footer#pq-footer .pq-footer-style-1 .pq-foote-recent-post .pq-foote-recent-post-info h6 {
    color: var(--white-color);
}

/*=========*/
footer#pq-footer .widget:first-child {
    margin-bottom: 45px;
}

footer#pq-footer .pq-footer-logo {
    height: 50px;
    margin-bottom: 15px;
    width: auto;
}

footer#pq-footer .widget .footer-title {
    color: var(--white-color);
}

footer#pq-footer .widget ul.menu li a,
footer#pq-footer .widget ul li a {
    color: var(--white-color);
}

footer#pq-footer .widget ul.menu li,
footer#pq-footer .widget ul li {
    color: var(--white-color);
}

/*++++++++++++++++++++++++++++++++++++++++
OWL Carousel
++++++++++++++++++++++++++++++++++++++++*/
.owl-carousel .owl-nav.disabled {
    display: none;
}

.owl-carousel .owl-nav {
    position: relative;
    cursor: pointer;
    z-index: 99;
    margin-top: 30px;
    text-align: center;
}

.owl-carousel .owl-nav button.owl-prev {
    outline: none;
    text-align: center;
    text-indent: inherit;
    cursor: pointer;
    position: relative;
    font-size: 20px;
    line-height: 1;
    width: 45px;
    height: 45px;
    line-height: 45px;
    padding: 0 !important;
    margin: 0 10px;
    background: var(--dark-color);
    color: var(--white-color);
    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;
}

.owl-carousel .owl-nav button.owl-next {
    outline: none;
    text-align: center;
    text-indent: inherit;
    cursor: pointer;
    position: relative;
    font-size: 20px;
    line-height: 1;
    width: 45px;
    height: 45px;
    line-height: 45px;
    padding: 0 !important;
    margin: 0 10px;
    background: var(--dark-color);
    color: var(--white-color);
    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;
}

.owl-carousel .owl-nav button:hover {
    background: var(--primary-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: var(--white-color);
    opacity: 0.6;
    display: inline-block;
    padding: 0;
    margin: 0px 5px;
    height: 2px;
    width: 45px;
    border: none;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    cursor: pointer;
}

.owl-carousel .owl-dots .owl-dot span {
    display: none;
}

.owl-carousel .owl-dots .owl-dot:hover {
    background: var(--primary-color);
    opacity: 1;
}

.owl-carousel .owl-dots .owl-dot.active {
    background: var(--primary-color);
    opacity: 1;
}

.testimonial.pq-bg-primary .owl-carousel .owl-dots .owl-dot.active{
    background: var(--white-color);
    opacity: 1;
}

.pq-team.pq-team-carousel-style-3 .owl-carousel .owl-dots .owl-dot {
    background: var(--dark-color);
}

.pq-team.pq-team-carousel-style-3 .owl-carousel .owl-dots .owl-dot.active{
    background: var(--primary-color);
    opacity: 1;
}

/*++++++++++++++++++++++++++++++++++++++++
Section Title
++++++++++++++++++++++++++++++++++++++++*/
.pq-section-title-style-1.text-center {
    padding: 0 15em;
    margin-bottom: 60px;
}

.pq-section-title-style-1.text-center .pq-section-sub-title {
    padding-right: 15px;
}

.pq-bg-purple .pq-section-title-style-1.text-center .pq-section-sub-title,
.pq-bg-purple .pq-section-title-style-1 .pq-section-sub-title,
.pq-bg-primary .pq-section-title-style-1.text-center .pq-section-sub-title,
.pq-bg-purple .pq-section-title-style-1 .pq-section-sub-title,
.pq-bg-primary .pq-section-title-style-1 .pq-section-sub-title{
    color: var(--white-color);
}

.pq-bg-purple .pq-section-title-style-1.text-center .pq-section-title,
.pq-bg-purple .pq-section-title-style-1 .pq-section-title,
.pq-bg-primary .pq-section-title-style-1 .pq-section-title,
.pq-bg-purple .pq-section-title-style-1.text-center .pq-section-title,
.pq-bg-primary .pq-section-title-style-1 .pq-section-title{
    color: var(--white-color);
}

.pq-bg-purple .pq-section-title-style-1.text-center .pq-section-sub-title:before,
.pq-bg-purple .pq-section-title-style-1 .pq-section-sub-title:before,
.pq-bg-primary .pq-section-title-style-1 .pq-section-sub-title:before,
.pq-bg-purple .pq-section-title-style-1.text-center .pq-section-sub-title:after,
.pq-bg-purple .pq-section-title-style-1 .pq-section-sub-title:after,
.pq-bg-primary .pq-section-title-style-1 .pq-section-sub-title:after{
    background-color: var(--white-color);
}

.pq-section-title-style-1.text-center .pq-section-sub-title:after {
    content: "";
    position: absolute;
    top: 10px;
    right: 0;
    height: 5px;
    width: 5px;
    margin-left: 0;
    display: inline-block;
    background: var(--primary-color);
}

/*===== Sub Title Left =====*/
.pq-section-title-style-1 .pq-section-sub-title {
    font-family: var(--title-fonts);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.1em;
    position: relative;
    text-transform: uppercase;
    color: var(--primary-color);
    padding: 0;
    margin: 0 0 5px;
    display: inline-block;
    position: relative;
    padding-left: 15px;
}

.pq-section-title-style-1 .pq-section-sub-title:before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    height: 5px;
    width: 5px;
    margin-left: 0;
    display: inline-block;
    background: var(--primary-color);
}

.pq-section-title-style-1 .pq-section-title {
    font-weight: 500;
    font-size: 48px;
    line-height: 56px;
    z-index: 9;
    color: var(--dark-color);
    padding: 0;
    margin: 0 0;
    position: relative;
    display: block;
}

.pq-bg-white .pq-section-title-style-1 .pq-section-sub-title {
    font-family: var(--title-fonts);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.1em;
    position: relative;
    text-transform: uppercase;
    color: var(--primary-color);
    padding: 0;
    margin: 0 0 5px;
    display: inline-block;
    position: relative;
    padding-left: 15px;
}

.pq-bg-white .pq-section-title-style-1 .pq-section-sub-title:before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    height: 5px;
    width: 5px;
    margin-left: 0;
    display: inline-block;
    background: var(--primary-color);
}

.pq-bg-white .pq-section-title-style-1 .pq-section-title {
    font-weight: 500;
    font-size: 48px;
    line-height: 56px;
    z-index: 9;
    color: var(--dark-color);
    padding: 0;
    margin: 0 0;
    position: relative;
    display: block;
}

/*++++++++++++++++++++++++++++++++++++++++
Service Box
++++++++++++++++++++++++++++++++++++++++*/
.pq-service-box.pq-service-box-style-1 {
    position: relative;
    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;
    overflow: hidden;
}

.pq-service-box.pq-service-box-style-1 .pq-service-img img {
    width: 100%;
}

.pq-service-box.pq-service-box-style-1 .pq-service-img:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: inline-block;
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(29, 29, 29, 0.8) 100%);
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(29, 29, 29, 0.8) 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(29, 29, 29, 0.8) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#0a1d1d1d', GradientType=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-service-box.pq-service-box-style-1 .pq-service-info {
    padding: 30px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: inline-block;
    margin: 0px;
    z-index: 9;
    transform: translateY(calc(130px + 1em));
    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-service-box.pq-service-box-style-1 .pq-service-info .pq-service-icon {
    margin-bottom: 20px;
}

.pq-service-box.pq-service-box-style-1 .pq-service-info .pq-service-icon i {
    font-size: 40px;
    display: inline-block;
    text-align: center;
    background: var(--primary-color);
    color: var(--white-color);
    width: 90px;
    height: 90px;
    line-height: 90px;
    border-radius: 900px;
}

.pq-service-box.pq-service-box-style-1 .pq-service-title{
    color: var(--white-color);
}

.pq-service-box.pq-service-box-style-1 .pq-service-info p {
    margin-bottom: 20px;
    margin-top: 5px;
    color: var(--white-color);
    opacity: 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-service-box.pq-service-box-style-1 .pq-service-info .pq-button {
    color: var(--white-color);
    opacity: 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-service-box.pq-service-box-style-1 .pq-service-info .pq-button i{
    color: var(--white-color);
    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;
    color: var(--white-color);
}

.pq-service-box.pq-service-box-style-1:hover .pq-service-info {
    transform: translateY(0);
}

.pq-service-box.pq-service-box-style-1:hover .pq-service-info p,
.pq-service-box.pq-service-box-style-1:hover .pq-service-info .pq-button {
    opacity: 1;
}

.pq-service-box.pq-service-box-style-1:hover .pq-service-img:before {
    background: var(--purple-color);
}

.pq-service-box.pq-service-box-style-1 .pq-service-info .pq-button:hover{
    color: var(--primary-color);
}

.pq-service-box.pq-service-box-style-1 .pq-service-info .pq-button:hover i{
    color: var(--primary-color);
}

/*===== service box style 2 =====*/
.pq-service-box.pq-service-box-style-2 .pq-service-img {
    position: relative;
    overflow: hidden;
}

.pq-service-box.pq-service-box-style-2 .pq-service-img img {
    width: 100%;
    height: 100%;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

.pq-service-box.pq-service-box-style-2 .pq-service-img .pq-service-icon {
    font-size: 44px;
    line-height: 75px;
    height: 75px;
    width: 75px;
    text-align: center;
    color: var(--white-color);
    background-color: var(--primary-color);
    position: relative;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    transform: scale(0);
    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;
    z-index: 99;
}

.pq-service-box.pq-service-box-style-2:hover .pq-service-img .pq-service-icon {
    transform: scale(1);
}

.pq-service-box.pq-service-box-style-2 .pq-service-img:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: inline-block;
    width: 100%;
    height: 100%;
    background: var(--dark-color);
    opacity: 0;
    z-index: 9;
    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-service-box.pq-service-box-style-2:hover .pq-service-img:before {
    opacity: 0.4;
}

.pq-service-box.pq-service-box-style-2 .pq-service-info {
    padding: 30px 15px 0;
    position: relative;
    cursor: pointer;
}

.pq-service-box.pq-service-box-style-2 .pq-service-info p,
.pq-service-box.pq-service-box-style-2 .pq-service-info p.pq-service-subtitle {
    font-size: 14px;
    line-height: 22px;
    margin: 0;
    letter-spacing: 0.1em;
    color: var(--primary-color);
    text-transform: uppercase;
    font-family: var(--title-fonts);
}

.pq-service-box.pq-service-box-style-2:hover .pq-service-img img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

/*===== service box style 3 =====*/

.pq-service-box.pq-service-box-style-3{
    position: relative;
    z-index: 1;
}

.pq-service-box.pq-service-box-style-3 .pq-service-img {
    position: relative;
    overflow: hidden;
}

.pq-service-box.pq-service-box-style-3 .pq-service-img img {
    width: 100%;
}

.pq-service-box.pq-service-box-style-3 .pq-service-info {
    padding: 15px 30px;
    position: relative;
    background: var(--white-color);
    margin: 0 30px;
    margin-top: -45px;
    justify-content: space-between;
    display: flex;
    align-items: center;
    -webkit-box-shadow: 0px 0px 40px 0px rgb(21 21 21 / 11%);
    -moz-box-shadow: 0px 0px 30px 0px rgba(21, 21, 21, 11%);
    box-shadow: 0px 0px 30px 0px rgb(21 21 21 / 11%);
    transition: all 0.5s ease;
}

.pq-service-box.pq-service-box-style-3 .pq-service-info:hover {
    margin-top: -60px;
}

.pq-service-box.pq-service-box-style-3 .pq-service-title {
    font-size: 22px;
    line-height: 30px;
}

.pq-service-box.pq-service-box-style-3 .pq-service-icon {
    line-height: normal;
}

.pq-service-box.pq-service-box-style-3 .pq-service-icon i{
    font-size: 60px;
    color: var(--purple-color);
}

/*===== service box style 4 =====*/
.pq-service-box.pq-service-box-style-4 .pq-service-info {
    padding: 45px 30px 30px 30px;
    position: relative;
    background: var(--white-color);
}

.pq-service-box.pq-service-box-style-4 .pq-service-icon {
    font-size: 44px;
    line-height: 64px;
    height: 64px;
    width: 64px;
    text-align: center;
    color: var(--white-color);
    background-color: var(--primary-color);
    position: absolute;
    right: 30px;
    top: -30px;
    transition: all 0.5s ease;
}

.pq-service-box.pq-service-box-style-4:hover .pq-service-icon {
    background: var(--purple-color);
    transform: rotateY(180deg);
}

.pq-service-box.pq-service-box-style-4 .pq-service-title {
    margin-bottom: 5px;
}

.pq-service-box.pq-service-box-style-4 .pq-service-info p {
    margin-bottom: 15px;
}

/*++++++++++++++++++++++++++++++++++++++++
Image Box
++++++++++++++++++++++++++++++++++++++++*/

.pq-image-box.pq-style-1 {
    padding: 45px 15px;
    background-color: var(--white-color);
    text-align: center;
}

.pq-image-box.pq-style-1 .pq-image-box-img {
    margin-bottom: 15px;
}

.pq-image-box.pq-style-1 .pq-image-box-content {
    text-align: center;
}

.pq-image-box.pq-style-2{
    position: relative;
}

.pq-bg-img{
    position: relative;
    padding: 45px;
    min-height: 100%;
}

.pq-bg-img:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/background-images/image-box-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.1;
}

.pq-image-box.pq-style-3{
    display: flex;
    align-items: center;
}

.pq-image-box.pq-style-3 .pq-image-box-img{
    margin-right: 15px;
}

.pq-image-box.pq-style-3 .pq-image-box-img img{
    width: 80px;
}

.pq-image-box.pq-style-3 .pq-image-box-content .pq-image-box-description{
    color: var(--primary-color);
    margin: 0;
    text-transform: uppercase;
}

.pq-image-box.pq-style-4 {
    padding: 45px 15px;
    background-color: var(--grey-color);
    text-align: center;
}

.pq-image-box.pq-style-4 .pq-image-box-img {
    margin-bottom: 15px;
}

.pq-image-box.pq-style-4 .pq-image-box-content {
    text-align: center;
}

/*++++++++++++++++++++++++++++++++++++++++
Icon Box
++++++++++++++++++++++++++++++++++++++++*/

.pq-icon-boxes{
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.pq-icon-box.pq-style-1{ 
    text-align: center;
    background-color: transparent;
    transition: all 0.5s ease-in-out;
}

.pq-icon-box.pq-style-1 .pq-icon-grid {
    position: relative;
	display: block;
	padding: 60px 15px;
	min-height: 100%;
    border-bottom: 1px solid var(--white-color);
    border-right: 1px solid var(--white-color);
    border-left: 1px solid var(--white-color);
}

.pq-icon-box.pq-style-1 .pq-icon-grid .pq-icon{
    margin-bottom: 15px;
}

.pq-icon-box.pq-style-1 .pq-icon-grid .pq-icon{
    transform: translateY(0);
    transition: all 0.5s ease-in-out;
}

.pq-icon-box.pq-style-1 .pq-icon-grid .pq-icon a{
    color: var(--white-color);
}

.pq-icon-box.pq-style-1 .pq-icon-grid .pq-icon a i{
    font-size: 62px;
    line-height: 70px;
}

.pq-icon-box.pq-style-1 .pq-icon-grid .pq-icon-box-content h5{
    color: var(--white-color);
}

.pq-icon-box.pq-style-1:hover .pq-icon-grid .pq-icon-box-content h5{
    color: var(--white-color);
}

.pq-icon-box.pq-style-1:hover{
    background-color: var(--primary-color);
}

.pq-icon-box.pq-style-1 .pq-icon-grid .pq-icon a:hover{
    color: var(--white-color);
}

.pq-icon-box.pq-style-1 .pq-icon-grid .pq-icon:hover{
    transform: translateY(-8px);
}

.pq-icon-box.pq-style-2{
    display: flex;
    margin-top: 30px;
}

.pq-icon-box.pq-style-2 .pq-icon{
    margin-right: 15px;
}

.pq-icon-box.pq-style-2 .pq-icon i{
    color: var(--primary-color);
    font-size: 50px;
    line-height: 58px;
    display: inline-block;
}

.pq-icon-box.pq-style-2 .pq-icon-box-content .pq-icon-box-description{
    margin: 0;
}

.pq-icon-box.pq-style-3+.pq-icon-box.pq-style-3{
    margin-left: 30px;
}

.pq-icon-box.pq-style-3{
    padding: 45px;
    display: flex;
}

.pq-icon-box.pq-style-3 .pq-icon{
    margin-right: 15px;
}

.pq-icon-box.pq-style-3 .pq-icon i{
    color: var(--white-color);
    font-size: 60px;
    ;line-height: 60px;
    display: inline-block;
}

.pq-icon-box.pq-style-3 .pq-icon-box-content .pq-icon-box-title{
    color: var(--white-color);
    margin-bottom: 5px;
}

.pq-icon-box.pq-style-3 .pq-icon-box-content .pq-icon-box-description{
    color: var(--white-color);
    margin: 0;
}

.pq-icon-box.pq-style-4{
    display: flex;
}

.pq-icon-box.pq-style-4 .pq-icon{
    margin-right: 15px;
}

.pq-icon-box.pq-style-4 .pq-icon i{
    color: var(--purple-color);
    font-size: 50px;
    line-height: 50px;
    display: inline-block;
}

.pq-icon-box.pq-style-4 .pq-icon-box-content .pq-icon-box-title{
    margin-bottom: 5px;
}

.pq-icon-box.pq-style-4 .pq-icon-box-content .pq-icon-box-description{
    margin: 0;
}

.pq-icon-box.pq-style-5{
    display: flex;
    align-items: center;
    padding: 15px 30px;
    background-color: var(--grey-color);
}

.pq-icon-box.pq-style-5 .pq-icon{
    margin-right: 15px;
}

.pq-icon-box.pq-style-5 .pq-icon a i{
    color: var(--purple-color);
    font-size: 50px;
    line-height: 50px;
}

.pq-icon-box.pq-style-5 .pq-icon a:hover{
    color: var(--purple-color);
}

.pq-icon-box.pq-style-5 .pq-icon-box-content .pq-icon-box-title a:hover{
    color: var(--dark-color);
}

.pq-icon-box.pq-style-6{
    display: flex;
    padding: 45px 30px;
    background-color: #fdfdfd;
}

.pq-icon-box.pq-style-6 .pq-icon{
    margin-right: 20px;
}

.pq-icon-box.pq-style-6 .pq-icon i{
    color: var(--purple-color);
    font-size: 60px;
    line-height: 60px;
    display: inline-block;
}

.pq-icon-box.pq-style-6 .pq-icon-box-content p{
    margin: 0;
}

.pq-icon-box.pq-style-7{
    display: flex;
    padding: 30px 15px;
    align-items: center;
    background-color: var(--white-color);
    border-right: 1px solid #e0e0e0;
    justify-content: center;
}

.pq-icon-box.pq-style-7 .pq-icon{
    margin-right: 15px;
}

.pq-icon-box.pq-style-7 .pq-icon i{
    font-size: 45px;
    color: var(--primary-color);
    display: inline-block;
    line-height: 45px;
}

.pq-icon-box.pq-style-7 .pq-icon-box-content .pq-icon-box-description{
    margin: 0;
}

.pq-icon-box.pq-style-8{
    display: flex;
    align-items: center;
}

.pq-icon-box.pq-style-8 .pq-icon{
    margin-right: 15px;
}

.pq-icon-box.pq-style-8 .pq-icon i{
    font-size: 64px;
    line-height: 64px;
    color: var(--white-color);
}

.pq-icon-box.pq-style-8 .pq-icon-box-content .pq-icon-box-title{
    color: var(--white-color);
}

.pq-icon-box.pq-style-8 .pq-icon-box-content .pq-icon-box-description{
    color: var(--white-color);
    margin: 0;
}

/*++++++++++++++++++++++++++++++++++++++++
Fancy Box
++++++++++++++++++++++++++++++++++++++++*/

.pq-fancy-box.pq-fancy-box-slider-1.text-center{
    box-shadow: 0px 0px 30px 0px rgba(20.999999999999996, 20.999999999999996, 20.999999999999996, 0.10980392156862745);
}

.pq-fancy-box.pq-fancy-box-slider-1.text-center .pq-fancybox-style-1{
    border-right: 1px solid var(--grey-color);
}

.pq-fancy-box-grid-style-1 {
    position: relative;
}

.pq-fancy-box-grid-style-1 .pq-fancy-box-media {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.pq-fancy-box-grid-style-1 .pq-fancy-box-media .pq-fancy-box-icon:before {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 80px;
    border: 1px solid var(--primary-color);
}

.pq-fancy-box-grid-style-1 .pq-fancy-box-media .pq-fancy-box-icon i {
    font-size: 72px;
    line-height: 80px;
    margin-right: 30px;
    color: var(--primary-color);
    z-index: 2;
    position: relative;
    display: inline-block;
}

.pq-fancy-box-grid-style-1 .pq-fancy-box-media .pq-fancy-box-info {
    align-self: center;
}

.pq-fancy-box-grid-style-1 .pq-fancy-box-media .pq-fancy-box-info span.pq-fancybox-sub-title {
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.1em;
    font-family: var(--title-fonts);
    font-weight: 400;
    text-transform: uppercase;
    color: var(--primary-color);
}

.pq-fancy-box-grid-style-1 .pq-fancy-box-media .pq-fancy-box-info .pq-fancy-box-title {
    color: var(--white-color);
}

.pq-fancy-box-grid-style-1 .pq-fancy-box-content p {
    margin-bottom: 15px;
    color: var(--white-color);
}

.service-single .pq-fancy-box-grid-style-1 .pq-fancy-box-media .pq-fancy-box-info .pq-fancy-box-title {
    color: var(--dark-color);
}

.service-single .pq-fancy-box-grid-style-1 .pq-fancy-box-content p {
    color: var(--secondary-color);
}

.service-single .pq-fancy-box-grid-style-1 .pq-fancy-box-media{
    border-bottom: 1px solid rgba(230, 219, 219, 1);
}

/*+++++++++++++++ fancybox-style 1 +++++++++++++++++++++++++*/

.pq-fancybox-style-1 {
    background: var(--white-color);
    padding: 45px 30px;
}

.pq-fancybox-style-1 .pq-fancy-box-icon {
    position: relative;
    font-size: 62px;
    line-height: 62px;
    margin-bottom: 30px;
    display: inline-block;
}

.pq-fancybox-style-1 .pq-fancy-box-icon:before {
    content: "";
    position: absolute;
    bottom: -10px;
    right: -15px;
    display: inline-block;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border-radius: 900px;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

.pq-fancybox-style-1:hover .pq-fancy-box-icon:before {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.pq-fancybox-style-1 .pq-fancy-box-icon i {
    position: relative;
    z-index: 9;
    color: var(--dark-color);
}

.pq-fancybox-style-1 .pq-fancy-box-info .pq-fancy-box-title {
    margin-bottom: 5px;
}

.pq-fancybox-style-1 .pq-fancy-box-info .pq-fancybox-description {
    margin-bottom: 15px;
}


/*+++++++++++++++ fancybox-style 2 +++++++++++++++++++++++++*/

.pq-fancybox-grid-style-2 {
    background: var(--grey-color);
    padding: 45px 30px;
    position: relative;
}

.pq-fancybox-grid-style-2 .pq-fancy-box-media {
    position: relative;
    margin-bottom: 30px;
}

.pq-fancybox-grid-style-2 .pq-fancy-box-media i {
    font-size: 72px;
    line-height: 80px;
    color: var(--primary-color);
}

.pq-fancybox-grid-style-2 .pq-fancy-box-media span {
    font-size: 62px;
    line-height: 70px;
    font-weight: 500;
    float: right;
    color: var(--grey-color);
}

.pq-fancybox-grid-style-2 .pq-fancy-box-content .pq-fancy-box-title {
    margin-bottom: 5px;
}


/*+++++++++++++++ fancybox-style 3 +++++++++++++++++++++++++*/

.pq-fancybox-style-3 {
    background: var(--white-color);
    padding: 45px 30px;
    position: relative;
    text-align: center;
}

.pq-fancybox-style-3 .pq-fancy-box-hoverbg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

.pq-fancybox-style-3 .pq-fancy-box-hoverbg:before {
    position: absolute;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: var(--purple-color);
    opacity: 0.9;
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

.pq-fancybox-style-3:hover .pq-fancy-box-hoverbg {
    opacity: 1;
}

.pq-fancybox-style-3:hover {
    color: var(--white-color);
}

.pq-fancybox-style-3 .pq-fancy-box-icon {
    position: relative;
    font-size: 64px;
    line-height: 64px;
    margin-bottom: 15px;
    display: inline-block;
}

.pq-fancybox-style-3 .pq-fancy-box-icon i {
    color: var(--primary-color);
}

.pq-fancybox-style-3:hover .pq-fancy-box-icon i {
    color: var(--white-color);
}

.pq-fancybox-style-3 .pq-fancy-box-info {
    position: relative;
}

.pq-fancybox-style-3 .pq-fancy-box-info .pq-fancy-box-title {
    margin-bottom: 5px;
}

.pq-fancybox-style-3:hover .pq-fancy-box-info .pq-fancy-box-title {
    color: var(--white-color);
}

.pq-fancybox-style-3 .pq-fancy-box-info .pq-fancybox-description {
    margin-bottom: 15px;
}

.pq-fancybox-style-3:hover .pq-fancy-box-info .pq-fancybox-description {
    color: var(--white-color);
}

.pq-fancybox-style-3 .pq-button.pq-button-link:hover {
    color: var(--primary-color);
}

.pq-fancybox-style-3 .pq-button.pq-button-link:hover i {
    color: var(--primary-color);
}

.pq-fancy-box-slider-style-3 .owl-carousel .owl-dots .owl-dot {
    background: var(--dark-color);
}

.pq-fancy-box-slider-style-3 .owl-carousel .owl-dots .owl-dot.active {
    background: var(--primary-color);
}

/*+++++++++++++++ fancybox-style 4 +++++++++++++++++++++++++*/

.pq-fancy-box.pq-fancy-box-slider-style-4{
    margin-bottom: -60px;
}

.pq-fancybox-style-4 {
    background: var(--white-color);
    padding: 45px 30px;
    position: relative;
}

.pq-fancybox-style-4 .pq-fancy-box-hoverbg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

.pq-fancybox-style-4 .pq-fancy-box-hoverbg img {
    height: 100%;
}

.pq-fancybox-style-4 .pq-fancy-box-number {
    position: absolute;
    right: 45px;
    font-size: 64px;
    line-height: 64px;
    font-family: var(--title-fonts);
    font-weight: 500;
    opacity: 0.1;
}

.pq-fancybox-style-4:hover .pq-fancy-box-number {
    opacity: 0.5;
}

.pq-fancybox-style-4 .pq-fancy-box-hoverbg:before {
    position: absolute;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: var(--purple-color);
    opacity: 0.9;
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

.pq-fancybox-style-4:hover .pq-fancy-box-hoverbg {
    opacity: 1;
}

.pq-fancybox-style-4:hover {
    color: var(--white-color);
}

.pq-fancybox-style-4 .pq-fancy-box-icon {
    position: relative;
    font-size: 64px;
    line-height: 64px;
    margin-bottom: 15px;
    display: inline-block;
}

.pq-fancybox-style-4 .pq-fancy-box-icon i {
    color: var(--primary-color);
}

.pq-fancybox-style-4:hover .pq-fancy-box-icon i {
    color: var(--white-color);
}

.pq-fancybox-style-4 .pq-fancy-box-info {
    position: relative;
}

.pq-fancybox-style-4 .pq-fancy-box-info .pq-fancy-box-title {
    margin-bottom: 5px;
}

.pq-fancybox-style-4:hover .pq-fancy-box-info .pq-fancy-box-title {
    color: var(--white-color);
}

.pq-fancybox-style-4 .pq-fancy-box-info .pq-fancybox-description {
    margin-bottom: 15px;
}

.pq-fancybox-style-4:hover .pq-fancy-box-info .pq-fancybox-description {
    color: var(--white-color);
}

.pq-fancybox-style-4 .pq-button.pq-button-link:hover {
    color: var(--primary-color);
}

.pq-fancybox-style-4 .pq-button.pq-button-link:hover i {
    color: var(--primary-color);
}

/*++++++++++++++++++++++++++++++++++++++++
Progressbar
++++++++++++++++++++++++++++++++++++++++*/

.pq-progress-div{
    padding: 130px 45px 130px 15px;
}

/*---ProgressBar-style-1------*/
.pq-progressbar-style-1 .pq-progressbar-content {
    margin-bottom: 30px;
    float: left;
    width: 100%;
}

.pq-progressbar-style-1 .pq-progressbar-content:last-child {
    margin-bottom: 0;
}

.team-single .pq-progressbar-style-1 .pq-progressbar-content:last-child{
    margin-bottom: 60px;
}

.pq-progressbar-style-1 .progress-title {
    font-size: 18px;
    line-height: 26px;
    font-family: var(--title-fonts);
    color: var(--dark-color);
    font-weight: 500;
}

.pq-progressbar-style-1 .progress-value {
    color: var(--dark-color);
    margin: 0;
    float: right;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    font-family: var(--title-fonts);
}

.pq-progressbar-style-1 .pq-progress-bar {
    width: 100%;
    padding: 0;
    background: var(--white-color);
    float: left;
    margin-top: 5px;
}

.pq-progressbar-style-1 .pq-progress-bar span {
    height: 8px;
    background: var(--primary-color);
    float: left;
}

/*+++++++++++++++ Progressbar style 2 ++++++++++++++++++++*/
.pq-progressbar-style-2 .pq-progress-bar {
    border: 1px solid var(--grey-color);
    padding: 3px;
    background: none;
}

/*++++++++++++++++++++++++++++++++++++++++
Counter
++++++++++++++++++++++++++++++++++++++++*/

.pq-counter-default{
    display: flex;
    flex-direction: column;
}

.pq-counter-default .pq-counter-num-prefix{ 
    display: flex;
    align-items: center;
}

.pq-counter-default .pq-counter-num-prefix h5{
    color: var(--white-color);
    font-family: var(--title-fonts);
    font-size: 48px;
    font-weight: 500;
    line-height: 56px;
}

.pq-counter-default .pq-counter-num-prefix .pq-counter-prefix{
    color: var(--white-color);
    font-family: var(--title-fonts);
    font-size: 48px;
    font-weight: 500;
    line-height: 56px;
}

.pq-counter-default .pq-counter-title{
    color: var(--white-color);
}

.pq-counter-default .pq-counter-description{
    margin-bottom: 0;
    color: var(--white-color);
    position: relative;
}

.pq-counter.pq-counter-style-1 .pq-counter-num-prefix{
    display: flex;
    align-items: center;
    justify-content: center;
}

.pq-counter.pq-counter-style-1 .pq-counter-num-prefix h5{
    font-size: 69px;
    font-weight: 600;
    line-height: 77px;
    font-family: var(--title-fonts);
    color: var(--white-color);
}

.pq-counter.pq-counter-style-1 .pq-counter-num-prefix .pq-counter-prefix{
    font-size: 69px;
    font-weight: 600;
    line-height: 77px;
    font-family: var(--title-fonts);
    color: var(--white-color);
}

.pq-counters{
    display: flex;
    justify-content: space-around;
}

.pq-counter.pq-counter-style-1 .pq-counter-title{
    text-align: center;
    color: var(--white-color);
    font-family: var(--body-fonts);
    font-size: 14px;
    text-transform: uppercase;
    line-height: 22px;
    letter-spacing: 1px;
}

.pq-counter.pq-counter-style-2{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 15px 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.27);
}

.pq-counter.pq-counter-style-2 .pq-counter-media i{
    font-size: 70px;
    line-height: 78px;
    color: var(--white-color);
}

.pq-counter.pq-counter-style-2 .pq-counter-info{
    margin-left: 15px;
}

.pq-counter.pq-counter-style-2 .pq-counter-info .pq-counter-num-prefix{
    display: flex;
    align-items: center;
}

.pq-counter.pq-counter-style-2 .pq-counter-info .pq-counter-num-prefix h5{
    color: var(--white-color);
    font-family: var(--title-fonts);
    font-size: 56px;
    line-height: 56px;
    display: inline-block;
    font-weight: 500;
}

.pq-counter.pq-counter-style-2 .pq-counter-info .pq-counter-num-prefix .pq-counter-prefix{
    color: var(--white-color);
    font-family: var(--title-fonts);
    font-size: 56px;
    line-height: 56px;
    display: inline-block;
    font-weight: 500;
}

.pq-counter.pq-counter-style-2 .pq-counter-info .pq-counter-description{
    font-family: var(--title-fonts);
    margin-bottom: 0;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.1em;
    color: var(--white-color);
}

.pq-counter-style-3.active {
    background: var(--primary-color);
    padding: 15px 30px;
}

.pq-counter-style-3.active .pq-counter-media{
    text-align: center;
}

.pq-counter-style-3.active .pq-counter-media i{
    font-size: 62px;
    line-height: 70px;
    display: inline-block;
}

.pq-counter-style-3 .pq-counter-info .pq-counter-num-prefix{
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.pq-counter-style-3 .pq-counter-info .pq-counter-num-prefix h5{
    font-family: var(--title-fonts);
    font-size: 40px;
    line-height: 48px;
}

.pq-counter-style-3 .pq-counter-info .pq-counter-num-prefix .pq-counter-prefix{
    font-size: 40px;
    line-height: 48px;
    font-weight: 500;
    margin-left: 5px;
}

.pq-counter-style-3 .pq-counter-info .pq-counter-description{
    text-align: center;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 22px;
    display: inline-block;
    width: 100%;
    margin: 0;
    font-family: var(--title-fonts);
    font-weight: 400;
    letter-spacing: 0.1em;
}

.pq-counter-style-3.active .pq-counter-media i,
.pq-counter-style-3.active .pq-counter-info .pq-counter-num-prefix .pq-counter-prefix,
.pq-counter-style-3.active .pq-counter-info .pq-counter-description,
.pq-counter-style-3.active .pq-counter-info .pq-counter-num-prefix .timer {
    color: var(--white-color);
}

.pq-counter.pq-counter-style-4 .pq-counter-grid{
    border-right: 1px solid #9DA7FF;
    border-bottom: 1px solid #9DA7FF;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 30px 15px 45px 30px;
}

.pq-counter.pq-counter-style-4 .pq-counter-grid .pq-counter-media i{
    font-size: 70px;
    line-height: 78px;
    color: var(--white-color);
}

.pq-counter.pq-counter-style-4 .pq-counter-grid .pq-counter-info{
    margin-left: 15px;
}

.pq-counter.pq-counter-style-4 .pq-counter-grid .pq-counter-info .pq-counter-num-prefix{
    display: flex;
    align-items: center;
}

.pq-counter.pq-counter-style-4 .pq-counter-grid .pq-counter-info .pq-counter-num-prefix h5{
    color: var(--white-color);
    font-family: var(--title-fonts);
    font-size: 56px;
    line-height: 56px;
    display: inline-block;
    font-weight: 500;
}

.pq-counter.pq-counter-style-4 .pq-counter-grid .pq-counter-info .pq-counter-num-prefix .pq-counter-prefix{
    color: var(--white-color);
    font-family: var(--title-fonts);
    font-size: 56px;
    line-height: 56px;
    display: inline-block;
    font-weight: 500;
}

.pq-counter.pq-counter-style-4 .pq-counter-grid .pq-counter-info .pq-counter-description{
    font-family: var(--title-fonts);
    margin-bottom: 0;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.1em;
    color: var(--white-color);
}

.pq-counter.pq-counter-style-5{
    background-color: var(--grey-color);
    padding: 45px 15px;
    text-align: center;
}

.pq-counter.pq-counter-style-5 .pq-counter-media i{
    font-size: 62px;
    line-height: 70px;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: inline-block;
}

.pq-counter.pq-counter-style-5 .pq-counter-info .pq-counter-num-prefix{
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.pq-counter.pq-counter-style-5 .pq-counter-info .pq-counter-num-prefix h5{
    font-family: var(--title-fonts);
    font-size: 40px;
    line-height: 48px;
    color: var(--dark-color);
    font-weight: 500;
}

.pq-counter.pq-counter-style-5 .pq-counter-info .pq-counter-num-prefix .pq-counter-prefix{
    font-size: 40px;
    line-height: 48px;
    color: var(--dark-color);
    font-weight: 500;
    margin-left: 5px;
}

.pq-counter.pq-counter-style-5 .pq-counter-info .pq-counter-description{
    text-transform: uppercase;
    color: var(--secondary-color);
    font-size: 14px;
    line-height: 22px;
    margin: 0;
    font-family: var(--title-fonts);
    font-weight: 400;
    letter-spacing: 0.1em;
}

.pq-counter.pq-counter-style-5.active{
    background-color: var(--primary-color);
}

.pq-counter.pq-counter-style-5.active .pq-counter-media i,
.pq-counter.pq-counter-style-5.active .pq-counter-info .pq-counter-num-prefix h5,
.pq-counter.pq-counter-style-5.active .pq-counter-info .pq-counter-num-prefix .pq-counter-prefix,
.pq-counter.pq-counter-style-5.active .pq-counter-info .pq-counter-description{
    color: var(--white-color);
}

.pq-floating-counter{
    position: absolute;
    top: 34%;
    right: -10%;
}

.pq-floating-counter-2{
    background-color: var(--purple-color);
    position: absolute;
    top: 30px;
    left: 30px;
}

.pq-floating-counter-2 .pq-counter.pq-counter-style-2{
    padding: 15px;
}

.pq-floating-counter-2 .pq-counter.pq-counter-style-2 .pq-counter-info{
    margin-left: 0;
}

.pq-floating-counter-2 .pq-counter.pq-counter-style-2 .pq-counter-info .pq-counter-num-prefix{
    justify-content: center;
}

.pq-floating-counter-2 .pq-counter.pq-counter-style-2 .pq-counter-info .pq-counter-num-prefix h5{
    font-size: 32px;
    line-height: 32px;
}

.pq-floating-counter-2 .pq-counter.pq-counter-style-2 .pq-counter-info .pq-counter-num-prefix .pq-counter-prefix{
    font-size: 32px;
    line-height: 40px;
}

/*++++++++++++++++++++++++++++++++++++++++
Portfolio Box
++++++++++++++++++++++++++++++++++++++++*/
.pq-portfoliobox-1 {
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 100%;
    float: left;
    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-portfoliobox-1 .pq-portfolio-img {
    position: relative;
}

.pq-portfoliobox-1 .pq-portfolio-img img {
    width: 100%;
    height: 100%;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

.pq-portfoliobox-1:hover .pq-portfolio-img img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.pq-portfoliobox-1 .pq-portfolio-info {
    margin: auto;
    position: absolute;
    bottom: -100px;
    z-index: 10;
    left: 30px;
    right: 30px;
    opacity: 0;
    padding: 20px;
    background: var(--primary-color);
    color: var(--white-color);
    display: inline-block;
    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-portfoliobox-1:hover .pq-portfolio-info {
    opacity: 1;
    z-index: 10;
    bottom: 30px;
}

.pq-portfoliobox-1 .pq-portfolio-info span {
    font-family: var(--title-fonts);
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    text-transform: uppercase;
    color: var(--white-color);
    letter-spacing: 0.1em;
}

.pq-portfoliobox-1 .pq-portfolio-info .pq-portfolio-link a {
    color: var(--white-color);
    font-family: var(--title-fonts);
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pq-portfoliobox-1 .pq-portfolio-info h5 a {
    color: var(--white-color);
}

.pq-portfoliobox-1 .pq-portfolio-info h5 a:hover {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none
}

.pq-portfoliobox .owl-nav {
    position: absolute;
    margin-top: 0;
    text-align: center;
    left: -76.5%;
    top: 75%;
}

.pq-portfoliobox .owl-carousel .owl-nav button {
    background: var(--white-color);
    color: var(--dark-color) !important;
    border: 1px solid #88888838;
}

.pq-portfoliobox .owl-carousel .owl-nav button:hover {
    background: var(--primary-color);
    color: var(--white-color) !important;
    border: 1px solid var(--primary-color);
}

.pq-portfoliobox-2 {
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 100%;
    float: left;
    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-portfoliobox-2 .pq-portfolio-img img {
    width: 100%;
    height: 100%;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

.pq-portfoliobox-2 .pq-portfolio-img {
    position: relative;
}

.pq-portfoliobox-2 .pq-portfolio-img:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: inline-block;
    z-index: 9;
    background: var(--dark-color);
    opacity: 0;
    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-portfoliobox-2:hover .pq-portfolio-img:before {
    opacity: 0.01;
}

.pq-portfoliobox-2 .pq-portfolio-info span {
    font-family: var(--title-fonts);
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    text-transform: uppercase;
    color: var(--primary-color);
}

.pq-portfoliobox-2:hover .pq-portfolio-img img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.pq-portfoliobox-2 .pq-portfolio-info {
    padding: 15px 20px;
    position: absolute;
    bottom: 15px;
    z-index: 2;
    left: 15px;
    right: 15px;
    width: 90%;
    opacity: 0;
    background: var(--white-color);
    text-align: left;
    color: var(--white-color);
    display: inline-block;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    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;
    transform: translateY(30px);
    -moz-transform: translate(30px);
    -webkit-transform: translate(30px);
    -o-transform: translate(30px);
    -ms-transform: translate(30px);
    transform: translateY(30px);
}

.pq-portfoliobox-2:hover .pq-portfolio-info {
    opacity: 1;
    z-index: 99;
    transform: translateY(0);
    -moz-transform: translate(0);
    -webkit-transform: translate(0);
    -o-transform: translate(0);
    -ms-transform: translate(0);
    transform: translateY(0);
}

.pq-portfoliobox-2 .pq-portfolio-info .pq-portfolio-link a {
    color: var(--primary-color);
    font-family: var(--title-fonts);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 14px;
    line-height: 22px;
}

.pq-portfoliobox-2 .pq-portfolio-info h5 a {
    color: var(--dark-color);
}

.pq-portfoliobox-2 .pq-portfolio-info h5 a:hover {
    color: var(--primary-color);
    text-decoration: none
}

.pq-portfoliobox-2 .pq-portfolio-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary-color);
    transform: scale(0);
    opacity: 0;
    transition: all 300ms linear 0s;
}

.pq-portfoliobox-2:hover .pq-portfolio-icon {
    opacity: 1;
    transform: scale(1);
    z-index: 99;
}

.pq-portfoliobox-2 .pq-portfolio-icon i {
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    align-items: center;
    justify-content: center;
}

.pq-portfoliobox-2 .pq-portfolio-icon i {
    position: relative;
    padding: 12px;
    color: var(--white-color);
    line-height: normal;
}

.pq-portfoliobox .owl-carousel .owl-dot{
    background: var(--secondary-color);
}

/*++++++++++++++++++++++++++++++++++++++++
Testimonial Box
++++++++++++++++++++++++++++++++++++++++*/

.pq-testimonial-box.pq-testimonialbox-style-1{
    padding: 60px 130px;
}

.pq-testimonialbox-1 .pq-testimonial-info {
    display: flex;
    justify-content: space-between;
}

.pq-testimonialbox-1 .pq-testimonial-info .pq-testimonial-star i {
    color: #f6bb21;
    font-size: 16px;
    line-height: 24px;
}

.pq-testimonialbox-1 .pq-testimonial-info .pq-quote i {
    color: var(--primary-color);
    font-size: 82px;
    line-height: 90px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
    opacity: 0.2;
}

.pq-testimonialbox-1 .pq-testimonial-content {
    color: var(--white-color);
    margin-top: 10px;
}

.pq-testimonialbox-1 .pq-testimonial-media {
    display: inline-block;
}

.pq-testimonial-style-1 .owl-carousel .owl-dots {
    position: absolute;
    right: 0;
    width: auto;
    bottom: 30px;
}

.pq-testimonialbox-1 .pq-testimonial-media .pq-testimonial-img img {
    width: 110px;
    height: 110px;
    -webkit-border-radius: 900px;
    -moz-border-radius: 900px;
    border-radius: 900px;
}

.pq-testimonialbox-1 .pq-testimonial-meta h5 {
    color: var(--white-color);
    font-size: 32px;
    line-height: 40px;
}

.pq-testimonialbox-1 .pq-testimonial-meta span {
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--title-fonts);
    text-transform: uppercase;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.1em;
}

.pq-testimonialbox-style-1 .owl-carousel .owl-nav {
    position: absolute;
    top: 43%;
    width: 100%;
    margin: 0;
}

.pq-testimonialbox-style-1 .owl-carousel .owl-nav button {
    position: absolute;
}

.pq-testimonialbox-style-1 .owl-carousel .owl-nav button:hover {
    background: var(--purple-color);
}

.pq-testimonialbox-style-1 .owl-carousel .owl-nav button.owl-prev {
    left: -100px;
}

.pq-testimonialbox-style-1 .owl-carousel .owl-nav button.owl-next {
    right: -100px;
}

.pq-testimonial-images{
    position: relative;
}

.pq-testimonial-images .pq-testimonial-img-1{
    position: absolute;
    top: -15%;
    left: -90%;
}

.pq-testimonial-images .pq-testimonial-img-2{
    position: absolute;
    bottom: 10%;
    left: -52%;
}

.pq-testimonial-images .pq-testimonial-img-3{
    position: absolute;
    top: -29%;
    right: -70%;
}

.pq-testimonial-images .pq-testimonial-img-4{
    position: absolute;
    bottom: 0;
    right: -10%;
}

.pq-testimonial-div{
    margin: 130px 0;
}

.pq-testimonial.pq-testimonial-style-2{
    margin-top: 45px;
}

.pq-testimonialbox-2 .pq-testimonial-content {
    color: var(--white-color);
}

.pq-testimonialbox-2 .pq-testimonial-content .pq-info-title {
    color: var(--white-color);
    margin-bottom: 5px;
}

.pq-testimonialbox-2 .pq-testimonial-info {
    display: flex;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}

.pq-testimonialbox-2 .pq-testimonial-info .pq-testimonial-img {
    margin-right: 15px;
}

.pq-testimonialbox-2 .pq-testimonial-info .pq-testimonial-img img {
    width: 90px;
    height: 90px;
    -webkit-border-radius: 900px;
    -moz-border-radius: 900px;
    border-radius: 900px;
}

.pq-testimonialbox-2 .pq-testimonial-info .pq-testimonial-star {
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.1em;
    color: #FFFF00;
}

.pq-testimonialbox-2 .pq-testimonial-meta {
    display: flex;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}

.pq-testimonialbox-2 .pq-testimonial-meta h5 {
    font-size: 24px;
    line-height: 32px;
    color: var(--white-color);
}

.pq-testimonialbox-2 .pq-testimonial-meta span {
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--title-fonts);
    text-transform: uppercase;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.1em;
}

.pq-testimonial.pq-testimonial-style-2 .owl-carousel .owl-dots {
    text-align: left;
}

.pq-testimonial.pq-testimonial-style-2 .owl-carousel .owl-dot.active{
    background: var(--white-color);
    opacity: 1;
}

.pq-testimonialbox-4 {
    padding: 30px;
    text-align: center;
}

.pq-testimonialbox-4 .pq-testimonial-img {
    position: relative;
}

.pq-testimonialbox-4 .pq-testimonial-img img {
    width: 90px;
    height: 90px;
    border-radius: 100px;
    display: inline-block;
}

.pq-testimonialbox-4 .pq-testimonial-star {
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.1em;
    color: #ff9529;
    margin-top: 30px;
    margin-bottom: 15px;
}

.pq-testimonialbox-4 .pq-testimonial-content {
    position: relative;
}

.pq-testimonialbox-4 .pq-testimonial-content .pq-quote {
    position: absolute;
    right: 15px;
    bottom: 0px;
    opacity: 0.1;
}

.pq-testimonialbox-4 .pq-testimonial-content .pq-quote i {
    font-size: 54px;
}

.pq-testimonialbox-4 .pq-testimonial-meta span {
    font-family: var(--title-fonts);
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.1em;
}

.pq-testimonialbox-5 .pq-testimonial-star {
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.1em;
    color: #ff9529;
    margin-bottom: 15px;
}

.pq-testimonialbox-5 .pq-testimonial-content {
    position: relative;
}

.pq-testimonialbox-5 .pq-testimonial-content .pq-quote {
    position: absolute;
    right: 15px;
    bottom: 0px;
    opacity: 0.1;
}

.pq-testimonialbox-5 .pq-testimonial-content .pq-quote i {
    font-size: 54px;
}

.pq-testimonialbox-5 .pq-testimonial-info .pq-testimonial-meta {
    display: flex;
    align-items: center;
}

.pq-testimonialbox-5 .pq-testimonial-info .pq-testimonial-meta img {
    width: 90px;
    height: 90px;
}

.pq-testimonialbox-5 .pq-testimonial-info .pq-testimonial-meta .pq-testimonial-data {
    margin-left: 15px;
}

.pq-testimonialbox-5 .pq-testimonial-meta span {
    font-family: var(--title-fonts);
    color: var(--purple-color);
    text-transform: uppercase;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.1em;
}

/*++++++++++++++++++++++++++++++++++++++++
Price Box
++++++++++++++++++++++++++++++++++++++++*/

.pq-pricebox.pq-pricebox-style-1 {
    background: var(--white-color);
}

.pq-pricebox .pq-pricebox-style-1 .text-center {
    background: var(--white-color);
}

.pq-pricebox-style-1.active .pq-price-detail {
    background: var(--primary-color);
    color: var(--white-color);
}

.pq-pricebox-style-1.active .pq-price-detail .price {
    color: var(--white-color);
}

.pq-pricebox-style-1 .pq-price-detail {
    position: relative;
    padding: 45px 30px;
    font-family: var(--title-fonts);
    background: var(--purple-color);
    z-index: 9;
    color: var(--white-color);
    overflow: hidden;
}

.pq-pricebox-style-1 .pq-price-detail .pq-price-title {
    display: inline-block;
    width: 100%;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
    font-family: var(--title-fonts);
    text-transform: uppercase;
    font-size: 18px;
    line-height: 26px;
}

.pq-pricebox-style-1 .pq-price-detail .price {
    font-size: 64px;
    line-height: 72px;
    color: var(--white-color);
}

.pq-pricebox-style-1 .pq-price-detail .pq-price-duration {
    margin-bottom: 0;
    font-size: 16px;
}

.pq-pricebox-style-1 .pq-list-info {
    margin: 0;
    padding: 30px;
    border: 2px solid var(--grey-color);
    border-top: 0;
    border-bottom: 0;
}

.pq-pricebox-style-1 .pq-list-info li {
    list-style: none;
    line-height: 45px;
}

.pq-pricebox-style-1 .pq-btn-container {
    border: 2px solid var(--grey-color);
    border-top: 0;
}

.pq-pricebox-style-1 .pq-button {
    margin-bottom: 45px;
    background-color: var(--purple-color);
}

.pq-pricebox-style-1 .pq-button:hover{
    background-color: var(--dark-color);
}

.pq-pricebox-style-1.active .pq-button{
    background-color: var(--primary-color);
}

.pq-pricebox-style-1.active .pq-button:hover{
    background-color: var(--dark-color);
}

.pq-pricebox.pq-pricebox-style-2 {
    -webkit-box-shadow: 0px 0px 40px 0px rgb(21 21 21 / 11%);
    -moz-box-shadow: 0px 0px 30px 0px rgba(21, 21, 21, 11%);
    box-shadow: 0px 0px 30px 0px rgb(21 21 21 / 11%);
    text-align: center;
    padding-bottom: 45px;
}

.pq-pricebox.pq-pricebox-style-2 .pq-pricing-head {
    font-family: var(--title-fonts);
}

.pq-pricebox.pq-pricebox-style-2 .pq-pricing-head .pq-title {
    font-size: 28px;
    line-height: 36px;
    font-weight: 600;
    color: var(--white-color);
    display: block;
    background: var(--secondary-color);
    padding: 45px 30px;
    padding-bottom: 90px;
}

.pq-pricebox.pq-pricebox-style-2 .pq-pricing-head .pq-service-media i {
    font-size: 48px;
    line-height: 110px;
    color: var(--secondary-color);
    display: inline-block;
    background: var(--white-color);
    width: 110px;
    height: 110px;
    border-radius: 900px;
    margin-top: -90px;
    -webkit-box-shadow: 0px 0px 40px 0px rgb(21 21 21 / 11%);
    -moz-box-shadow: 0px 0px 30px 0px rgba(21, 21, 21, 11%);
    box-shadow: 0px 0px 30px 0px rgb(21 21 21 / 11%);
}

.pq-pricebox.pq-pricebox-style-2 .pq-pricing-head .price {
    margin: 30px 0 30px;
    position: relative;
    color: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    font-weight: 600;
}

.pq-pricebox.pq-pricebox-style-2 .pq-pricing-head .price .pq-amount {
    font-size: 64px;
    line-height: 72px;
}

.pq-pricebox.pq-pricebox-style-2 .pq-pricing-head .price .pq-price-dollar {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin: 0 5px;
}

.pq-pricebox.pq-pricebox-style-2 .pq-pricing-head .price .price-month {
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 400;
}

.pq-pricebox.pq-pricebox-style-2 ul.pq-pricing-list {
    list-style: none;
    padding: 0;
}

.pq-pricebox.pq-pricebox-style-2 ul.pq-pricing-list li {
    text-transform: capitalize;
    line-height: 34px;
    margin: 0 0 10px;
}

.pq-pricebox.pq-pricebox-style-2 ul.pq-pricing-list li i {
    color: var(--primary-color);
    margin-right: 5px;
    font-size: 14px;
}

.pq-pricebox.pq-pricebox-style-2 ul.pq-pricing-list li:last-child {
    margin-bottom: 0;
}

.pq-pricebox.pq-pricebox-style-2 .pq-btn-container {
    margin: 30px 0 0;
    text-align: center;
}

.pq-pricebox.pq-pricebox-style-2.active .pq-pricing-head .pq-title {
    background: var(--primary-color);
}

.pq-pricebox.pq-pricebox-style-2.active .pq-pricing-head .pq-service-media i {
    color: var(--primary-color);
}

/*++++++++++++++++++++++++++++++++++++++++
Video Popup
++++++++++++++++++++++++++++++++++++++++*/

.pq-video-popup{
    position: relative;
}

.pq-video-popup .pq-video-icon{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pq-popup-video-block .pq-video-icon {
    text-align: center;
}

.pq-video-left .pq-popup-video-block .pq-video-icon {
    text-align: left;
}

.pq-popup-video-block .pq-video-icon a {
    margin: auto;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 28px;
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    display: inline-block;
    background-color: var(--white-color);
    border-radius: 90%;
    -webkit-animation: ripple 1s linear infinite;
    animation: ripple 1s linear infinite;
}

@-webkit-keyframes ripple {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2), 0 0 0 5px rgba(255, 255, 255, 0.2), 0 0 0 20px rgba(255, 255, 255, 0.2), 0 0 0 35px rgba(255, 255, 255, 0.2);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2), 0 0 0 5px rgba(255, 255, 255, 0.2), 0 0 0 20px rgba(255, 255, 255, 0.2), 0 0 0 35px rgba(255, 255, 255, 0.2);
    }

    100% {
        -webkit-box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.2), 0 0 0 20px rgba(255, 255, 255, 0.2), 0 0 0 35px rgba(255, 255, 255, 0.2), 0 0 0 45px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.2), 0 0 0 20px rgba(255, 255, 255, 0.2), 0 0 0 35px rgba(255, 255, 255, 0.2), 0 0 0 45px rgba(255, 255, 255, 0);
    }
}

@keyframes ripple {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2), 0 0 0 5px rgba(255, 255, 255, 0.2), 0 0 0 20px rgba(255, 255, 255, 0.2), 0 0 0 35px rgba(255, 255, 255, 0.2);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2), 0 0 0 5px rgba(255, 255, 255, 0.2), 0 0 0 20px rgba(255, 255, 255, 0.2), 0 0 0 35px rgba(255, 255, 255, 0.2);
    }

    100% {
        -webkit-box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.2), 0 0 0 20px rgba(255, 255, 255, 0.2), 0 0 0 35px rgba(255, 255, 255, 0.2), 0 0 0 45px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.2), 0 0 0 20px rgba(255, 255, 255, 0.2), 0 0 0 35px rgba(255, 255, 255, 0.2), 0 0 0 45px rgba(255, 255, 255, 0);
    }
}

.pq-video-icon a.primary {
    -webkit-animation: rippleprimary 1s linear infinite;
    animation: rippleprimary 1s linear infinite;
}

@-webkit-keyframes rippleprimary {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 75, 52, 0.2), 0 0 0 5px rgba(255, 75, 52, 0.2), 0 0 0 20px rgba(255, 75, 52, 0.2), 0 0 0 35px rgba(255, 75, 52, 0.2);
        box-shadow: 0 0 0 0 rgba(255, 75, 52, 0.2), 0 0 0 5px rgba(255, 75, 52, 0.2), 0 0 0 20px rgba(255, 75, 52, 0.2), 0 0 0 35px rgba(255, 75, 52, 0.2);
    }

    100% {
        -webkit-box-shadow: 0 0 0 5px rgba(255, 75, 52, 0.2), 0 0 0 20px rgba(255, 75, 52, 0.2), 0 0 0 35px rgba(255, 75, 52, 0.2), 0 0 0 45px rgba(255, 75, 52, 0);
        box-shadow: 0 0 0 5px rgba(255, 75, 52, 0.2), 0 0 0 20px rgba(255, 75, 52, 0.2), 0 0 0 35px rgba(255, 75, 52, 0.2), 0 0 0 45px rgba(255, 75, 52, 0);
    }
}

@keyframes rippleprimary {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 75, 52, 0.2), 0 0 0 5px rgba(255, 75, 52, 0.2), 0 0 0 20px rgba(255, 75, 52, 0.2), 0 0 0 35px rgba(255, 75, 52, 0.2);
        box-shadow: 0 0 0 0 rgba(255, 75, 52, 0.2), 0 0 0 5px rgba(255, 75, 52, 0.2), 0 0 0 20px rgba(255, 75, 52, 0.2), 0 0 0 35px rgba(255, 75, 52, 0.2);
    }

    100% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 75, 52, 0.2), 0 0 0 20px rgba(255, 75, 52, 0.2), 0 0 0 35px rgba(255, 75, 52, 0.2), 0 0 0 45px rgba(255, 75, 52, 0);
        box-shadow: 0 0 0 10px rgba(255, 75, 52, 0.2), 0 0 0 20px rgba(255, 75, 52, 0.2), 0 0 0 35px rgba(255, 75, 52, 0.2), 0 0 0 45px rgba(255, 75, 52, 0);
    }
}

/*++++++++++++++++++++++++++++++++++++++++
Tabs
++++++++++++++++++++++++++++++++++++++++*/

.pq-tabs-1 .nav-tabs {
    border: none;
    display: flex;
}

.pq-tabs-1 .nav-tabs .nav-item {
    background: var(--grey-color);
    color: var(--primary-color);
    padding: 30px 15px;
    border: none;
    margin-right: 30px;
    position: relative;
    flex: 1;
    font-size: 20px;
    line-height: 20px;
    font-weight: 500;
    border-radius: 0;
}

.pq-tabs-1 .nav-tabs .nav-item:last-child {
    margin-right: 0;
}

.pq-tabs-1 .nav-tabs .nav-item i {
    font-size: 62px;
    line-height: 70px;
    display: inline-block;
}

.pq-tabs-1 .nav-tabs .nav-item span {
    display: inline-block;
    width: 100%;
    margin-top: 15px;
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    color: var(--dark-color);
    font-family: var(--title-fonts);
}

.pq-tabs-1 .nav-tabs .nav-item.active {
    background: var(--primary-color);
    color: var(--white-color);
    position: relative;
}

.pq-tabs-1 .nav-tabs .nav-item.active span {
    color: var(--white-color);
}

.pq-tabs-1 .nav-tabs .nav-item:after {
    top: 100%;
    left: 50%;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(255, 75, 54, 0);
    border-top-color: var(--white-color);
    border-width: 15px;
    margin-left: -15px;
    opacity: 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-tabs-1 .nav-tabs .nav-item.active:after {
    opacity: 1;
    border-top-color: var(--primary-color);
}

/*=========*/
.pq-tabs-1 .tab-content {
    margin-top: 60px;
}

.pq-tabs-1 .tab-content img.pq-full-width {
    width: 100%;
    height: auto;
}

.pq-tabs-1 .tab-content .pq-tab-info {
    padding-left: 20px;
}

.pq-tabs-1 .tab-content .pq-tab-info h2 {
    font-size: 44px;
    line-height: 52px;
    margin-bottom: 15px;
}

.pq-tabs-1 .tab-content .pq-tab-info ul {
    margin: 0;
    padding: 0;
}

.pq-tabs-1 .tab-content .pq-tab-info ul li {
    list-style: none;
    margin: 0;
    padding: 0 0 10px;
}

.pq-tabs-1 .tab-content .pq-tab-info ul li:before {
    font-family: "Ionicons";
    content: "\f382";
    color: var(--primary-color);
    margin-right: 10px;
}

.pq-tabs-1 .tab-content .pq-tab-info .pq-button-block {
    margin: 30px 0 0;
}

/*------tabs 2------*/
.pq-tabs-2 {
    background: var(--white-color);
}

.pq-tabs-2 .nav {
    background: var(--white-color);
    display: inline-block;
    border-bottom: 1px solid var(--grey-color);
    width: 100%;
    margin: 0 !important;
}

.pq-tabs-2 .nav .nav-item {
    float: left;
}

.pq-tabs-2 .nav .nav-item a {
    padding: 15px 45px;
    border-radius: 0;
    font-size: 20px;
    font-family: var(--title-fonts);
    color: var(--dark-color);
    text-transform: capitalize;
}

.pq-tabs-2 .nav .nav-item a.active {
    background: var(--primary-color);
    color: var(--white-color);
}

.pq-tabs-2 .nav .pq-call-fixed {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-end;
    align-items: center;
    height: 70px;
    margin-right: 45px;
}

.pq-tabs-2 .nav .pq-call-fixed .pq-call-number {
    font-size: 20px;
    line-height: 28px;
    margin-left: 15px;
}

.pq-tabs-2 .tab-content {
    padding: 45px;
}

.pq-tabs-2 .tab-content .pq-btn-container {
    margin-top: 30px;
}

/*------Advance Tab------*/
.pq-advance-tab {
    display: inline-block;
    text-align: center;
    width: 100%;
}

.pq-advance-tab .nav-tabs {
    background: var(--grey-color);
    border: none;
    display: inline-block;
    text-align: center;
    -webkit-border-radius: 9000px;
    -moz-border-radius: 9000px;
    border-radius: 9000px;
}

.pq-advance-tab .nav-tabs .pq-tabs.nav-link {
    margin: 0;
    line-height: 2;
    display: inline-block;
    color: var(--white-color);
    background: var(--dark-color);
    padding: 12px 45px;
    text-align: center;
    border: none;
    font-weight: 400;
    -webkit-border-radius: 9000px;
    -moz-border-radius: 9000px;
    border-radius: 9000px;
}

.pq-advance-tab .nav-tabs .pq-tabs.nav-link.active {
    background: var(--primary-color);
    color: var(--white-color);
}

.pq-advance-tab .tab-content {
    margin: 45px 0 0;
}

/*++++++++++++++++++++++++++++++++++++++++
Client
++++++++++++++++++++++++++++++++++++++++*/

.pq-client-box.pq-client-style-1 .pq-clientbox .pq-client-img {
    position: relative;
    display: block;
    width: auto;
    margin: 0 auto;
    height: 75px;
}

.pq-client-box.pq-client-style-1 .pq-clientbox a:hover .pq-client-img {
    opacity: 1;
    height: 75px;
}

.pq-client-grid-box{
    display: inline-block;
    padding: 45px 30px;
    border: 2px solid #F6F6F6;
    border-radius: 0px;
    min-height: 100%;
}

.pq-client-grid-box:hover{
    border-color: var(--primary-color);
}

.pq-client-grid-box:hover img{
    filter: brightness( 100% ) contrast( 100% ) saturate( 100% ) blur( 0px ) hue-rotate( 0deg );
}

/*++++++++++++++++++++++++++++++++++++++++
FAQ
++++++++++++++++++++++++++++++++++++++++*/
.pq-accordion-block .pq-accordion-box {
    background: var(--white-color);
    margin-bottom: 30px;
    position: relative;
}

.pq-accordion-block .pq-accordion-box:last-child {
    margin-bottom: 0;
}

.pq-accordion-block .pq-accordion-box .pq-ad-title {
    background: var(--grey-color);
    border: 1px solid var(--grey-color);
    padding: 15px 30px;
    cursor: pointer;
}

.pq-accordion-block .pq-accordion-box .pq-ad-title i {
    position: absolute;
    top: 20px;
    right: 30px;
    opacity: 1;
    color: var(--dark-color);
}

.pq-accordion-block .pq-accordion-box .pq-ad-title i.inactive {
    opacity: 0;
}

.pq-accordion-block .pq-accordion-box.pq-active .pq-ad-title i {
    position: absolute;
    top: 20px;
    right: 30px;
    opacity: 0;
    color: var(--dark-color);
}

.pq-accordion-block .pq-accordion-box.pq-active .pq-ad-title i.inactive {
    opacity: 1;
}

.pq-accordion-block .pq-accordion-box.pq-active .pq-ad-title i {
    color: var(--white-color);
}

.pq-accordion-block .pq-accordion-box .pq-accordion-details {
    padding: 15px 30px;
    border: 1px solid var(--grey-color);
    border-top: 0;
}

.pq-accordion-block .pq-accordion-box .pq-accordion-details p {
    margin-bottom: 0;
}

.pq-accordion-block .pq-accordion-box.pq-active .pq-ad-title {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.pq-accordion-block .pq-accordion-box.pq-active .pq-ad-title .ad-title-text {
    color: var(--white-color);
}

/*++++++++++++++++++++++++++++++++++++++++
Service Detail
++++++++++++++++++++++++++++++++++++++++*/
.widget.widget-port {
    background: var(--grey-color);
    box-shadow: none;
}

.widget.widget-port:nth-child(2) {
    padding: 0;
    background: unset;
}

.widget.widget-port .page-title {
    margin: 0 0 20px 0;
}

.widget.widget-port .menu li {
    margin: 0 0 10px 0;
}

.widget.widget-port .menu li:last-child {
    margin-bottom: 0;
}

.widget.widget-port .menu li a {
    position: relative;
    background-color: var(--white-color);
    padding: 16px 24px;
    border: none;
    display: block;
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    font-size: 16px;
    font-family: var(--title-fonts);
}

.widget.widget-port .menu li.current-menu-item a {
    background: var(--primary-color);
    color: var(--white-color);
}

.widget.widget-port .menu li>a:before {
    position: absolute;
    content: "\f125";
    font-family: "Ionicons";
    font-size: 12px;
    right: 24px;
    left: auto;
    top: 24px;
    color: inherit;
    line-height: normal;
    font-weight: 500;
}

/*++++++++++++++++++++++++++++++++++++++++
Circle Progress
++++++++++++++++++++++++++++++++++++++++*/
.pq-circle-progress-style-1 {
    position: relative;
    display: flex;
    align-items: flex-start;
}

.pq-circle-progress-style-1 .pq-circle-progress-bar {
    position: relative;
}

.pq-circle-progress-style-1 .pq-progress-count {
    color: var(--dark-color);
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-block;
    font-family: var(--title-fonts);
    font-size: 28px;
    font-weight: 500;
    line-height: 36px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.pq-circle-progress-style-1 .pq-progress-details {
    margin-left: 30px;
    align-self: center !important;
    flex: 1;
}

.pq-circle-progress-style-1 .pq-progress-details .pq-progress-title-tag {
    font-family: var(--title-fonts);
    font-weight: 400;
    letter-spacing: 0.1em;
    font-size: 14px;
    line-height: 22px;
    position: relative;
    text-transform: uppercase;
    color: var(--primary-color);
}

.pq-circle-progress-style-2 {
    position: relative;
    display: flex;
    align-items: flex-start;
}

.pq-circle-progress-style-2 .pq-circle-progress-bar {
    position: relative;
}

.pq-circle-progress-style-2 .pq-progress-count {
    color: var(--white-color);
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-block;
    font-family: var(--title-fonts);
    font-size: 40px;
    font-weight: 500;
    line-height: 48px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.pq-circle-progress-style-2 .pq-progress-details {
    margin-left: 30px;
    align-self: center !important;
    flex: 1;
}

.pq-circle-progress-style-2 .pq-progress-details .pq-progress-title-tag {
    font-family: var(--title-fonts);
    font-weight: 400;
    letter-spacing: 0.1em;
    font-size: 14px;
    line-height: 22px;
    position: relative;
    text-transform: uppercase;
    color: var(--white-color);
}

.pq-circle-progress-style-2 .pq-progress-details .pq-progress-title{
    color: var(--white-color);
}

.pq-circle-progress-style-2 .pq-progress-details .pq-progress-desc{
    color: var(--white-color);
    margin-bottom: 0;
}

/*++++++++++++++++++++++++++++++++++++++++
Team
++++++++++++++++++++++++++++++++++++++++*/
.pq-team-style-1 .pq-team-img {
    position: relative;
    overflow: hidden;
}

.pq-team-style-1 .pq-team-img img {
    width: 100%;
    height: 100%;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

.pq-team-style-1:hover .pq-team-img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.pq-team-style-1 .pq-team-social ul {
    margin: 0;
    padding: 0;
    position: absolute;
    top: 15px;
    left: -75px;
    display: inline-block;
    width: 60px;
    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-team-style-1:hover .pq-team-social ul {
    left: 15px;
}

.pq-team-style-1 .pq-team-social ul li {
    list-style: none;
    display: inline-flex;
    margin: 0 0 5px;
}

.pq-team-style-1 .pq-team-social ul li:last-child {
    margin: 0;
}

.pq-team-style-1 .pq-team-social ul li a {
    background: var(--dark-color);
    color: var(--white-color);
    text-align: center;
    width: 60px;
    height: 60px;
    line-height: 60px;
}

.pq-team-style-1 .pq-team-social ul li a:hover {
    background: var(--primary-color);
}

.pq-team-style-1 .pq-team-social ul li a i {
    font-family: "Font Awesome 6 Brands";
    font-weight: 400;
}

.pq-team-style-1 .pq-team-info {
    background: transparent;
    padding: 15px 15px 0;
    margin: 0px;
    text-align: center;
    position: relative;
}

.pq-team-style-1 .pq-team-info h5 {
    font-size: 24px;
    line-height: 32px;
    margin: 0;
    color: var(--dark-color);
}

.pq-team-style-1 .pq-team-info h5 a {
    color: var(--dark-color);
}

.pq-team-style-1 .pq-team-info .pq-team-designation {
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.1em;
    display: inline-block;
    width: 100%;
    text-transform: uppercase;
    color: var(--primary-color);
    font-family: var(--title-fonts);
}

.pq-team-style-2 .pq-team-img {
    position: relative;
    overflow: hidden;
}

.pq-team-style-2 .pq-team-img img {
    width: 100%;
    height: 100%;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

.pq-team-style-2 .pq-team-social ul {
    margin: 0;
    padding: 0;
    position: absolute;
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    width: 60px;
    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;
    opacity: 0;
}

.pq-team-style-2 .pq-team-info .pq-team-share-icon:hover .pq-team-social ul {
    opacity: 1;
}

.pq-team-style-2 .pq-team-social ul li {
    list-style: none;
    display: inline-flex;
    margin: 0 0 5px;
}

.pq-team-style-2 .pq-team-social ul li:last-child {
    margin: 0;
}

.pq-team-style-2 .pq-team-social ul li a {
    background: var(--dark-color);
    color: var(--white-color);
    text-align: center;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 100%;
}

.pq-team-style-2 .pq-team-social ul li a:hover {
    background: var(--primary-color);
}

.pq-team-style-2 .pq-team-social ul li a i {
    font-family: "Font Awesome 6 Brands";
    font-weight: 400;
}

.pq-team-style-2 .pq-team-info {
    background: var(--white-color);
    padding: 15px 20px;
    margin: 0px;
    position: absolute;
    bottom: -100px;
    width: 90%;
    margin: 0 5%;
    transition: all 0.5s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pq-team-style-2:hover .pq-team-info {
    bottom: 30px;
}

.pq-team-style-2 .pq-team-info h5 {
    font-size: 24px;
    line-height: 32px;
    margin: 0;
    color: var(--dark-color);
}

.pq-team-style-2 .pq-team-info h5 a {
    color: var(--dark-color);
}

.pq-team-style-2 .pq-team-info .pq-team-designation {
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.1em;
    display: inline-block;
    width: 100%;
    text-transform: uppercase;
    color: var(--primary-color);
    font-family: var(--title-fonts);
}

.pq-team-style-2 .pq-team-info .pq-team-share-icon {
    border: 1px solid var(--purple-color);
    color: var(--purple-color);
    width: 40px;
    height: 40px;
    border-radius: 100%;
    text-align: center;
    line-height: 40px;
    position: relative;
    cursor: pointer;
}

/*++++++++++++++++++++++++++++++++++++++++
Timelines
++++++++++++++++++++++++++++++++++++++++*/
.pq-timelines .cntl-icon {
    border: none;
    font-family: var(--title-fonts);
    font-weight: 500;
    font-size: 26px;
    background: var(--primary-color);
    border-color: var(--primary-color);
    left: 0;
    right: 0;
    box-shadow: none;
    border-radius: 0;
}

.pq-timelines .cntl-bar {
    box-shadow: none;
    background: var(--grey-color);
    width: 5px;
    border-radius: 5px;
}

.pq-timelines .cntl-bar-fill {
    background: var(--primary-color);
}

.pq-timelines .cntl-content {
    padding: 30px;
    background: var(--grey-color);
    border-color: var(--primary-color);
    border-radius: 0;
    border: none;
}

.pq-timelines .cntl-content p {
    margin-bottom: 0;
}

.pq-timelines .cntl-content h4 {
    font-weight: 500;
    font-size: 26px;
    line-height: 32px;
}

.pq-timelines .cntl-image {
    padding: 0;
}

/*++++++++++++++++++++++++++++++++++++++++
Calculate Fees
++++++++++++++++++++++++++++++++++++++++*/

.pq-calculate .step_1,
.pq-calculate .step_2,
.pq-calculate .step_3,
.pq-calculate .step_4 {
    padding: 30px;
    border: 1px solid #dbd9d9;
    margin-bottom: 30px;
}

.pq-step-1,
.pq-step-3,
.pq-step-4 {
    width: 49%;
    float: left;
}

.pq-step-2 {
    width: 49%;
    float: right;
}

.pq-calculate .dollar_prefixed .dollar {
    display: inline-block;
}

.pq-calculate fieldset legend {
    font-weight: 500;
    font-family: var(--title-fonts);
    color: var(--dark-color);
}

.pq-calculate button.calculate,
.pq-calculate a.clear_results {
    font-family: var(--title-fonts);
    font-weight: 400;
    text-transform: capitalize;
    line-height: 2;
    font-size: 16px;
    padding: 12px 45px;
    position: relative;
    width: auto;
    background: var(--primary-color);
    color: var(--white-color);
    vertical-align: middle;
    display: inline-block;
    overflow: hidden;
    -webkit-border-radius: 0;
    -moz-border-radius:0; 
    border-radius:0; 
    text-decoration:none;
    fill: var(--white-color);
    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: none;
}

.pq-calculate a.clear_results {
    background: var(--dark-color);
    margin-left: 15px;
}

.pq-calculate button.calculate:hover {
    background: var(--dark-color);
}

.pq-calculate a.clear_results:hover {
    background: var(--primary-color);
}

.pq-calculate .billable_rate {
    display: block;
    margin-top: 15px;
}

.pq-calculate .field {
    margin-bottom: 20px;
}

.pq-calculate .step_1 .field label,
.pq-calculate .step_3 .field label {
    margin-top: 5px;
}

.pq-calculate .step_4 .field label {
    margin-bottom: 5px;
}

.pq-calculate .step_2 .field label {
    margin-bottom: 5px;
    display: inline-block;
}

.pq-calculate .step_1 .field input,
.pq-calculate .step_3 .field input,
.pq-calculate .step_4 .field input{
    margin-bottom: 0;
}

.pq-calculate .step_2 .field input {
    margin-bottom: 20px;
}

/*++++++++++++++++++++++++++++++++++++++++
List Check
++++++++++++++++++++++++++++++++++++++++*/

.pq-list-check{
    margin: 0;
    padding: 0;
}

.pq-list-check li{ 
    list-style: none;
    padding-bottom: 10px;
}

.pq-list-check li:last-child{
    padding-bottom: 0;
}

.pq-list-check li i{
    color: var(--primary-color);
    margin-right: 10px;
}

.pq-contact-list{
    margin: 0;
    padding: 0;
}

.pq-contact-list li {
    list-style: none;
    display: flex;
    align-items: center;
}

.pq-contact-list li:nth-child(2){
    margin: 20px 0;
}

.pq-contact-list li i{
    font-size: 30px;
    margin-right: 10px;
    color: var(--dark-color);
}

/*++++++++++++++++++++++++++++++++++++++++
Info Box
++++++++++++++++++++++++++++++++++++++++*/

.pq-info-box-style-1 {
    padding: 30px;
    background: var(--grey-color);
}

.pq-info-box-style-1 .pq-infobox-description {
    margin: 15px 0 5px;
}

.pq-info-box-style-1 .pq-info-call {
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    font-family: var(--title-fonts);
}

.pq-info-box-style-1 .pq-button{
    color: var(--purple-color);
}

.pq-info-box-style-1 .pq-button:hover{
    color: var(--primary-color);
}

.pq-info-box-style-1 .pq-button:hover i{
    color: var(--primary-color);
}

/*++++++++++++++++++++++++++++++++++++++++
Contact Box
++++++++++++++++++++++++++++++++++++++++*/

.pq-contact-box{
    padding: 45px 30px 45px 30px;
    background-color: var(--white-color);
    text-align: center;
}

.pq-contact-box .pq-contact-box-icon{
    margin-bottom: 15px;
}

.pq-contact-box .pq-contact-box-icon i{
    color: var(--primary-color);
    font-size: 40px;
    width: 80px;
    height: 80px;
    text-align: center;
    background-color: var(--grey-color);
    line-height: 80px;
    display: inline-block;
    border-radius: 100%;
}

.pq-contact-box .pq-contact-box-content .pq-contact-box-title{
    margin-bottom: 5px;
}

.pq-contact-box .pq-contact-box-content p{
    margin: 0;
}

.pq-contact-box-2{
    display: flex;
    align-items: center;
}

.pq-contact-box-2 .pq-contact-box-icon{
    margin-right: 20px;
}

.pq-contact-box-2 .pq-contact-box-icon i{
    font-size: 40px;
    color: var(--primary-color);
    background-color: var(--white-color);
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    border-radius: 100%;
    display: inline-block;
}

.pq-contact-box-2 .pq-contact-box-content .pq-contact-box-title{
    color: var(--white-color);
}

.pq-contact-box-2 .pq-contact-box-content p{
    color: var(--white-color);
    margin: 0;
}

/*++++++++++++++++++++++++++++++++++++++++
Custom CSS
++++++++++++++++++++++++++++++++++++++++*/

.pq-mb-45{
    margin-bottom: 45px;
}

.pq-mb-15{
    margin-bottom: 15px;
}

.pq-mb-10{
    margin-bottom: 10px;
}

.button-align{
    text-align: end;
}

.pq-mt-30{
    margin-top: 30px;
}

.pq-mx-30{
    margin: 0 30px 0 30px;
}

.pq-my-30{
    margin: 30px 0 30px 0;
}

.pq-my-130{
    margin: 130px 0;
}

.pq-mb-30{
    margin-bottom: 30px;
}

.pq-mt-60{
    margin-top: -60px;
}

.pq-mb-60{
    margin-bottom: 60px;
}

.pq-mb-130{
    margin-bottom: -130px;
}

.pq-mt-260{
    margin-top: -260px;
}

.pq-mb-260{
    margin-bottom: -260px;
}

.pq-mt-45{
    margin-top: 45px;
}

.pq-mt-71{
    margin-top: -71px;
    position: relative;
    z-index: 9;
}

.pq-mt-90{
    margin-top: -90px;
}

.pq-mb-90{
    margin-bottom: 90px;
}

.pq-me-33{
    margin-right: -330px;
}

.pq-py-90{
    padding: 90px 0;
}

.pq-py-60{
    padding: 60px 0;
}

.pq-py-45{
    padding: 45px 0;
}

.pq-pt-150{
    padding-top: 150px;
}

.pq-pt-380{
    padding-top: 380px;
}

.pq-pt-390{
    padding-top: 390px;
}

.pq-pt-260{
    padding-top: 260px;
}

.pq-pb-190{
    padding-bottom: 190px;
}

.pq-pb-220{
    padding-bottom: 220px;
}

.pq-pb-100{
    padding-bottom: 100px;
}

.pq-pb-15{
    padding-bottom: 15px;
}

.pq-pb-330{
    padding-bottom: 330px;
}

.pq-pb-210{
    padding-bottom: 210px;
}

.pq-px-30{
    padding: 0 30px;
}

.pq-ps-30{
    padding-left: 30px;
}

.pq-ms-30{
    margin-left: 30px;
}

.pq-ms-45{
    margin-left: 45px;
}

.pq-ps-60{
    padding-left: 60px;
}

.pq-pe-60{
    padding-right: 60px;
}

.pq-pe-70{
    padding-right: 70px;
}

.begin{
    background-color: transparent;
    background-image: linear-gradient(90deg, #F6F6F6 50%, #707DF0 0%);
}

.before-block{
    padding: 90px 15px 90px 90px;
    background-color: var(--purple-color);
}

.before-block-one{
    background-color: var(--primary-color);
    position: relative;
    top: -60px;
}

.before-block-one:before{
    content: "";
    position: absolute;
    top: 0;
    left: 75%;
    background: var(--primary-color);
    height: 100%;
    width: 200px;
    display: inline-block;
    clip-path: polygon(0 0%, 100% 0%, 50% 100%, 0% 100%);
    z-index: 1;
}

.before-block-one:after{
    content: "";
    position: absolute;
    top: 0;
    right: 100%;
    background: var(--primary-color);
    height: 100%;
    width: 100%;
    display: inline-block;
}

.before-block:before{
    content: "";
    position: absolute;
    top: 0;
    right: 50%;
    background: var(--purple-color);
    height: 100%;
    width: 200px;
    display: inline-block;
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 0 100%);
    z-index: 0;
}

.begin-before-img{
    width: 110%;
    max-width: 110%;
    position: relative;
    left: -20%;
    z-index: 2;
    padding-top: 45px;
}

.before-block-two{
    background-color: var(--purple-color);
    padding: 45px 15px 45px 45px;
    position: relative;
    min-height: 100%;
    display: flex;
    align-items: center;
}

.before-block-two:before{
    content: "";
    position: absolute;
    top: 0;
    left: 90%;
    background: var(--purple-color);
    height: 100%;
    width: 200px;
    display: inline-block;
    clip-path: polygon(0% 0%, 40% 0%, 100% 100%, 0% 100%);
    z-index: 0;
}

.pq-bg-map:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/background-images/bg-map.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    background-attachment: fixed;
    opacity: 0.1;
}

.pq-bg-map-full:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/background-images/bg-map.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    opacity: 0.1;
}

.relationship.pq-bg-map-full:before{
    background-attachment: scroll;
}

.form-img-1{
    position: absolute;
    top: 0;
    right: -2%;
}

.testimonial-img-1{
    position: absolute;
    top: 0;
    right: -6%;
}

.progress-img-1{
    position: absolute;
    top: 0;
    right: -6%;
}

.pq-title{
    padding: 45px 15px 45px 45px;
}

.pq-video-testimonial{
    box-shadow: 0px 0px 30px 0px rgba(20.999999999999996, 20.999999999999996, 20.999999999999996, 0.10980392156862745);
}

.popup-img{
    position: relative;
}

.map-chart,
#chartdiv{
    height: 450px;
}

.pq-box-content{
    padding: 45px 30px;
    background-color: var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    min-height: 100%;
}

.pq-box-content .pq-button{
    background-color: var(--purple-color);
}

.pq-box-content .pq-button:hover{
    background-color: var(--dark-color);
}

.pq-about-us-img{
    position: relative;
}

.pq-bg-gradient{
    background-color: transparent;
    background-image: linear-gradient(290deg, #F6F6F6 74%, #49D3B1 50%);
}

.pq-bg-gradient-2{
    background-color: transparent;
    background-image: linear-gradient(260deg, var(--primary-color) 50%, var(--purple-color) 50%);
}

.pq-bg-img .pq-button{
    background-color: var(--white-color);
    color: var(--purple-color);
}

.pq-bg-img .pq-button:hover{
    background-color: var(--dark-color);
    color: var(--white-color);
}

.pq-popup-divison .pq-video-icon{
    text-align: left;
    margin: 45px 0 0 45px;
}

.pq-popup-divison .pq-testimonial-title{
    margin-top: 90px;
    color: var(--white-color);
    font-size: 48px;
    line-height: 68px;
}

.pq-testimonial-divison{
    display: flex;
    flex-direction: column;
    padding: 60px 45px;
    margin-bottom: -230px;
    position: relative;
    z-index: 1;
}

.grow .pq-button{
    background-color: var(--white-color);
    color: var(--dark-color);
}

.grow .pq-button:hover{
    background-color: var(--dark-color);
    color: var(--white-color);
}

.grow .pq-section-title-style-1 .pq-section-sub-title{
    color: var(--white-color);
}

.grow .pq-section-title-style-1 .pq-section-sub-title:before{
    background: var(--white-color);
}

.grow .pq-section-title-style-1 .pq-section-title{
    color: var(--white-color);
}

.grow .pq-section-title-style-1 p{
    color: var(--white-color);
    margin: 0;
}

.pq-grow-img{
    position: absolute;
    max-width: 45%;
    bottom: 0;
    right: 0;
}

.pq-title-div{
    padding-bottom: 130px;
}

.pq-bg-img-2:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/background-images/hosting-bg-img.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.1;
}

.pq-bg-img-3:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/background-images/hosting-bg-img.jpg);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.1;
}

.pq-bg-img-4:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/background-images/hosting-bg-img.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.1;
}

.hosting .pq-section-title-style-1 .pq-section-title{
    font-size: 64px;
    line-height: 72px;
}

.pq-hosting-buttons .pq-button:last-child{
    margin-left: 30px;
    background-color: var(--white-color);
    color: var(--dark-color);
}

.pq-hosting-buttons .pq-button:last-child:hover{
    background-color: var(--dark-color);
    color: var(--white-color);
}

.pq-appointment-form{
    padding: 45px;
}

.pq-appointment-form .pq-section-title-style-1 .pq-section-title{
    font-size: 32px;
    line-height: 40px;
}

.pq-shadow{
    box-shadow: 0px 0px 30px 0px rgba(20.999999999999996, 20.999999999999996, 20.999999999999996, 0.10980392156862745);
}

.pq-contact-div{
    padding-bottom: 30px;
    border-bottom: 1px solid #e4e1e1;
}

.pq-contact-div h6{
    display: inline-block;
    font-size: 18px;
    line-height: 24px
}

.pq-founder-div{
    display: flex;
    align-items: center;
    padding-top: 30px;
}

.pq-sign-img{
    width: 71px;
    height: 72px;
    margin-left: 30px;
}

.partners .pq-clientbox .pq-client-grid{
    border-bottom: 1px solid var(--grey-color);
    border-right: 1px solid var(--grey-color);
    text-align: center;
}

.partners .pq-clientbox .pq-client-grid .pq-client-img{
    width: 80%;
    padding: 45px 0;
}

.testimonial{
    z-index: 1;
}

.pq-about-us-image1{
    position: relative;
    width: 70%;
}

.pq-about-us-image2{
    position: absolute;
    right: 1%;
    bottom: -19%;
    width: 60%;
}

.pq-about-us-image3{
    position: relative;
    width: 100%;
}

.pq-about-us-image4{
    position: absolute;
    left: -15%;
    bottom: -8%;
    width: 50%;
}

.pq-why-debate-img{
    height: 750px;
}

.form .pq-popup-divison .pq-video-icon a i{
    color: var(--purple-color);
}

.pq-form-div{
    padding: 45px;
    margin: -190px 0 60px 0;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
}

.pq-form-div .pq-form-title{
    margin-bottom: 15px;
    text-align: center;
}

.pq-form-div .pq-form-description{
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 15px;
    text-align: center;
}

.relationship .pq-button{
    background-color: var(--purple-color);
    color: var(--white-color);
}

.relationship .pq-button:hover{
    background-color: var(--dark-color);
    color: var(--white-color);
}

.pq-link-div{
    display: flex;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #e4e1e1;
}

.pq-border-top{
    border-top: 1px solid var(--grey-color);
}

.challange .pq-progressbar-style-1 .pq-progress-bar,
.team-single .pq-progressbar-style-1 .pq-progress-bar{
    background-color: var(--grey-color);
}

.pq-team-sinlge-social a i {
    color: var(--dark-color);
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    background-color: var(--grey-color);
    text-align: center;
    border-radius: 100%;
    transition: all 0.5s ease-in-out;
}

.pq-team-sinlge-social a i:hover{
    color: var(--white-color);
    background-color: var(--primary-color);
}

.pq-team-sinlge-social a+a {
    margin-left: 15px;
}

.map{
    line-height: 0;
}

.map iframe{
    height: 450px;
    width: 100%;
    border: 0;
}

.pq-approach-div{
    padding: 60px 45px;
}

.pq-portfolio-bg-img{
    background-image: url(../images/background-images/portfolio-single-bg-img.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 1;
    background-attachment: fixed;
    padding: 240px 0;
}

.single-portfolio-slider .owl-carousel .owl-dots{
    margin-top: -30px;
}

.single-portfolio-slider .owl-carousel .owl-dots .owl-dot{
    width: 12px;
    height: 12px;
    border-radius: 100%;
    background-color: var(--purple-color);
}

.pq-portfolio-info-box{
    display: inline-block;
    width: 100%;
    background: var(--grey-color);
    padding: 30px;
}

.pq-portfolio-info-box .pq-info-list{
    margin: 0;
    padding: 0;
    display: flex;
}

.pq-portfolio-info .pq-info-list li{
    list-style: none;
    float: left;
    margin: 0;
    padding: 0;
    display: inline-block;
    width: 100%;
}