@import url("css2.css");

:root {
    --primary-color: #17c0f2;
    --primary-dark-color: #00599d;
    --dark-color: #18100f;
    --secondary-color: #666;
    --grey-color: #f4f6f9;
    --white-color: #fff;
    --body-fonts: "Montserrat", sans-serif;
    --title-fonts: "Quicksand", 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
}

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: 600;
    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
}

a,
.button {
    color: var(--primary-color);
    outline: none !important;
    transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    text-decoration: none
}

a:focus,
a:hover {
    color: var(--primary-color);
    outline: 0;
    text-decoration: none !important
}

p {
    margin-bottom: 30px
}

img {
    width: 100%;
    height: auto;
    border-radius: 3px
}

pre {
    background: var(--white-color);
    padding: 15px;
    border: 1px solid var(--grey-color)
}

hr {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #e0e0e0;
    border-top: 0
}

b,
strong {
    font-weight: 600
}

ol,
ul {
    padding-left: 25px;
    margin-bottom: 1em
}

ol li {
    list-style: decimal
}

ol ol {
    padding-left: 25px
}

ul li {
    list-style: none
}

dl dd {
    margin-bottom: 15px
}

dl dd:last-child {
    margin-bottom: 0
}

table {
    width: 100%;
    margin: 20px auto
}

table td,
table th {

    padding: 8px;
    text-align: center
}

/* 自定义表格样式：仅保留横向分隔线，去除纵向线条 */
.table-horizontal-only th,
.table-horizontal-only td {
    border-left: none !important;
    border-right: none !important;
    border-bottom: 1px solid #dee2e6 !important; /* 横向分隔线颜色与Bootstrap默认一致 */
}
/* 表头底部边框加粗（可选，增强视觉层次） */
.table-horizontal-only thead th {
    border-bottom-width: 2px !important;
    background-color: var(--primary-color);
    color: var(--white-color);
}

input,
input.form-control {
    background: var(--grey-color);
    border: 1px solid var(--grey-color);
    color: var(--dark-color);
    margin-bottom: 30px;
    width: 100%;
    float: left;
    font-size: 16px;
    font-weight: 400;
    padding: 0 15px;
    height: 54px;
    line-height: 54px;
    outline: 0;
    transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    border-radius: 3px
}

input::placeholder {
    color: var(--dark-color)
}

input:focus,
input:hover,
textarea:focus,
textarea:hover,
.form-control:focus {
    border-color: var(--primary-color);
    outline: 0;
    box-shadow: none
}

input[type="radio"],
input[type="checkbox"] {
    width: auto;
    height: auto;
    float: none;
    margin-right: 5px
}

textarea {
    margin-bottom: 30px;
    height: 150px;
    border-radius: 3px;
    background: var(--grey-color);
    border: 1px solid var(--grey-color);
    color: var(--dark-color);
    width: 100%;
    float: left;
    padding: 10px 15px;
    outline: 0;
    transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out
}

textarea::placeholder {
    color: var(--dark-color)
}

select,
select.form-control {
    border: 1px solid var(--grey-color);
    color: var(--dark-color);
    width: 100%;
    float: left;
    padding: 0 30px 0 15px;
    height: 54px;
    line-height: 54px;
    outline: 0;
    transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill=!string!height=!string!viewBox=!string!width=!string!xmlns=!string!><path d=!string!/><path d=!string!fill=!string!/></svg>");
    background-repeat: no-repeat;
    background-position: right 16px bottom 50%;
    background-size: 20px 20px;
    border-radius: 3px
}

#pq-loading {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    display: flex;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background: var(--white-color)
}

#pq-loading img {
    height: 60px;
    width: auto;
    border-radius: 0
}

#back-to-top .topbtn {
    border-radius: 25px;
    position: fixed;
    bottom: 36px;
    right: 36px;
    margin: 0;
    color: var(--white-color);
    background: var(--primary-color);
    z-index: 999;
    font-size: 16px;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px
}

#back-to-top .topbtn:hover {
    background: var(--dark-color)
}

#back-to-top .topbtn i {
    font-size: 25px;
    font-weight: 900
}

section {
    position: relative;
    padding: 100px 0
}

.container {
    max-width: 1340px;
    position: relative
}

.container-pq {
    padding: 0 60px
}

.pq-line-box {
    padding: 30px 0
}

.pq-line {
    width: 100%;
    margin: 0 auto;
    border-top: 1px solid #88838;
    display: block
}

.z-index-1 {
    z-index: 1
}

.pq-dark-line {
    border-style: solid;
    border-width: 0 1px 1px 0;
    border-color: #f1f1f1
}

.pq-dark-line-r {
    border-style: solid;
    border-width: 0 0 1px 0;
    border-color: #f1f1f1
}

.pq-dark-line-b {
    border-style: solid;
    border-width: 0 1px 0 0;
    border-color: #f1f1f1
}

.pq-bg-map iframe {
    height: 700px;
    width: 100%;
    border: 0
}

.pq-text-primary {
    color: var(--primary-color) !important
}

.pq-text-light {
    color: var(--grey-color) !important
}

.pq-text-dark {
    color: var(--dark-color) !important
}

.pq-text-white {
    color: var(--white-color) !important
}

.pq-text-primary-dark {
    color: var(--primary-dark-color) !important
}

.pq-bg-primary {
    background: var(--primary-color) !important
}

.pq-bg-white {
    background: var(--white-color) !important
}

.pq-bg-dark {
    background: var(--dark-color) !important
}

.pq-bg-blue {
    background: var(--blue-color) !important
}

.pq-bg-grey, .bg-grey{
    background: var(--grey-color) !important
}

.pq-bg-primary-dark {
    background-color: var(--primary-dark-color) !important
}

.pq-bg-img-1:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 100%;
    opacity: .1;
    background: url(../image/bg-1.png);
    background-position: center center;
    background-repeat: repeat;
    background-size: 65% auto;
    background-attachment: fixed
}

.pq-blue-section-side-right:before {
    content: "";
    position: absolute;
    left: 100%;
    top: 0;
    display: inline-block;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: var(--primary-color)
}

.pq-dark-bg-side-right:before {
    content: "";
    position: absolute;
    left: 55%;
    top: 0;
    display: inline-block;
    width: 100%;
    height: 100%;
    background: var(--primary-dark-color)
}

.pq-button {
    position: relative;
    width: auto;
    background: var(--primary-color);
    color: var(--white-color);
    letter-spacing: .04em;
    font-family: var(--title-fonts);
    font-size: 14px;
    font-weight: 600;
    padding: 12px 30px;
    text-transform: uppercase;
    line-height: 2;
    vertical-align: middle;
    border: 0;
    display: inline-block;
    overflow: hidden;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 30px
}

.pq-button .pq-button-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.pq-button span {
    z-index: 9;
    position: relative;
    margin-right: 10px
}

.pq-button:hover,
.pq-button:focus {
    color: var(--white-color);
    background: var(--primary-dark-color)
}

[type="submit"] {
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    background: var(--primary-color);
    font-family: var(--title-fonts);
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--white-color);
    display: inline-block;
    border: 0;
    width: auto;
    height: auto;
    line-height: 2;
    transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out
}

[type="submit"]:hover {
    background: var(--dark-color)
}

.pq-button.pq-button-link {
    padding: 0;
    background: transparent;
    color: var(--primary-color)
}

.pq-button.pq-button-link i {
    border-color: var(--primary-color)
}

.pq-button.pq-button-link:hover {
    color: var(--dark-color)
}

.pq-button.pq-button-link:hover i {
    border-color: var(--secondary-color)
}

.pq-button.pq-button-outline {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color)
}

.pq-button.pq-button-outline:hover {
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color)
}

.screen-reader-text {
    display: none
}

.pq-search-form [type=submit] {
    background: var(--primary-dark-color)
}

.pq-search-form [type=search] {
    margin-bottom: 0
}

#pq-search-btn {
    display: inline-block; /* 强制图标显示 */
  }

.pq-widget {
    margin-bottom: 45px;
    display: inline-block;
    width: 100%;
    float: left;
    position: relative;
    padding: 30px;
    background: var(--grey-color);
    border-radius: 3px
}

.pq-widget_search {
    background: var(--primary-color)
}

.pq-widget:last-child {
    margin-bottom: 0
}

.pq-widget h2 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 15px
}

.pq-widget.widget_search {
    background: var(--primary-color)
}

.pq-widget.pq-widget_search .pq-widget-title {
    display: none
}

.pq-widget.pq-widget_search input {
    background: var(--white-color);
    border: 1px solid var(--grey-color);
    padding: 0 15px;
    border-radius: 3px
}

.pq-block-search.pq-block-search__button-inside .pq-block-search__inside-wrapper .pq-block-search__input {
    background: var(--white-color);
    border: 1px solid var(--grey-color);
    border-radius: 3px;
    padding: 0 15px
}

.pq-widget.pq-widget_search .pq-block-search label {
    display: none
}

.pq-block-search .pq-block-search__inside-wrapper {
    position: relative
}

.pq-block-search .pq-block-search__inside-wrapper .pq-block-search__input {
    background: var(--white-color);
    border: 1px solid var(--grey-color);
    border-radius: 3px;
    padding: 0 15px;
    margin-bottom: 0
}

.pq-block-search .pq-block-search__button {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    background: var(--primary-dark-color);
    border: 0;
    padding: 0;
    margin-left: 0;
    padding: 0;
    width: 54px;
    height: 54px;
    line-height: 54px;
    position: absolute;
    right: 0;
    font-size: 0
}

.pq-block-search .pq-block-search__button:before {
    content: "\e610";
    font-family: 'themify';
    font-weight: 400;
    font-size: 20px
}

.pq-block-search .pq-block-search__button:hover {
    background: var(--dark-color);
    outline: 0
}

.search-form {
    position: relative
}

.search-form label {
    width: 100%;
    margin-bottom: 0;
    float: left;
    width: 100%
}

.search-submit {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    background: var(--primary-dark-color);
    border: 0;
    padding: 0;
    position: absolute;
    text-align: center;
    color: var(--white-color) !important;
    line-height: 54px;
    height: 54px;
    width: 54px;
    top: 0;
    right: 0;
    transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out
}

.search-submit i {
    
    font-weight: 400;
    font-size: 20px
}

.search-submit:hover {
    background: var(--dark-color);
    outline: 0
}

.pq-widget ul {
    padding: 0;
    margin: 0
}

.pq-widget ul li {
    list-style: none;
    margin: 0 0 10px 0
}

.pq-widget ul li:last-child {
    margin-bottom: 0
}

.pq-widget ul ul.children {
    padding-left: 25px
}

.pq-widget ul li a {
    color: var(--dark-color);
    position: relative;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
    padding: 0 0 0 15px;
    text-transform: capitalize
}

.pq-widget ul li a:hover {
    color: var(--primary-color);
    text-decoration: none
}

.pq-widget ul.pq-block-latest-posts__list li>a:before,
.pq-widget ul.pq-block-archives-list li>a:before,
.pq-widget ul.pq-block-categories-list li>a:before,
.pq-widget.pq-widget_archive ul li>a:before,
.pq-widget.pq-widget_categories ul li>a:before,
.pq-widget.pq-widget_pages ul li>a:before,
.pq-widget.pq-widget_meta ul li>a:before,
.pq-widget.pq-widget_recent_entries ul li>a:before,
.pq-widget.pq-widget_nav_menu ul li>a:before,
.pq-widget .pq-block-page-list .pq-block-pages-list__item a.pq-block-pages-list__item__link:before {
    position: absolute;
    content: '\f054';
    left: 0;
    font-size: 10px;
    top: 5px;
    font-family: "Ionicons";
    line-height: normal;
    font-weight: 600;
    color: var(--primary-color)
}

.pq-widget.pq-widget_recent_comments #recentcomments li.recentcomments span a,
.pq-widget.pq-widget_recent_comments #recentcomments--1 li.recentcomments span a {
    color: var(--secondary-color)
}

.pq-widget.pq-widget_recent_comments #recentcomments li.recentcomments a:before {
    display: none
}

.pq-widget.pq-widget_recent_comments #recentcomments li.recentcomments a {
    color: var(--primary-color);
    padding-left: 0
}

.pq-widget.pq-widget_recent_comments #recentcomments li.recentcomments a:hover {
    color: var(--primary-color);
    text-decoration: underline !important;
    padding-left: 0
}

.pt-footer-recent-post {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(15, 40, 81, 0.1);
    padding-bottom: 24px
}

.pt-footer-recent-post:last-child {
    margin-bottom: 0;
    border: 0;
    padding: 0
}

.pt-footer-recent-post .pt-footer-recent-post-media {
    margin-right: 15px
}

.pt-footer-recent-post .pt-footer-recent-post-media img {
    width: 80px;
    height: 80px;
    border-radius: 3px
}

.pt-footer-recent-post .pt-footer-recent-post-info {
    flex: 1;
    align-self: center
}

.pt-footer-recent-post .pt-footer-recent-post-info .pt-post-date {
    font-family: var(--title-fonts);
    text-transform: uppercase;
    font-size: 12px;
    line-height: 22px;
    font-weight: 600;
    letter-spacing: .04em;
    color: var(--primary-color)
}

.pt-footer-recent-post .pt-footer-recent-post-info .pt-post-date i {
    margin-right: 8px
}

.pt-footer-recent-post .pt-footer-recent-post-info h6 {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 0;
    font-weight: 600
}

.pt-footer-recent-post .pt-footer-recent-post-info h6 a:hover {
    color: var(--primary-color)
}

.pq-widget_calendar table caption {
    caption-side: inherit;
    padding: 0 0 10px;
    color: var(--dark-color);
    font-weight: 500
}

.pq-widget_calendar table#pq-calendar {
    width: 100%;
    text-align: center;
    margin-bottom: 0;
    margin-top: 0;
    background: var(--white-color)
}

.pq-widget_calendar table#pq-calendar a {
    font-weight: 600
}

.pq-widget_calendar .calendar_wrap td#today {
    background: var(--primary-color);
    color: var(--white-color);
    font-weight: 600
}

.pq-widget_calendar .calendar_wrap td#today a {
    color: var(--white-color)
}

.pq-widget_calendar table#pq-calendar td#today {
    background: var(--primary-color);
    color: var(--white-color);
    font-weight: 600
}

.pq-widget_calendar table#pq-calendar td#today a {
    background: var(--primary-color);
    color: var(--white-color)
}

.pq-widget_calendar .calendar_wrap table th {
    background: var(--white-color);
    color: var(--dark-color);
    font-weight: 600
}

.pq-widget_calendar .calendar_wrap table th,
.pq-widget_calendar .calendar_wrap table td {
    padding: 8px;
    text-align: center
}

.pq-widget_categories ul li,
.pq-widget_archive ul li {
    font-weight: 400;
    color: var(--dark-color)
}

.pq-widget_categories ul li a,
.pq-widget_archive ul li a {
    font-weight: 400;
    color: var(--dark-color)
}

.pq-widget.pq-widget_rss ul li {
    margin-bottom: 30px
}

.pq-widget.pq-widget_rss ul li:last-child {
    margin-bottom: 0
}

.pq-widget.pq-widget_rss ul li a {
    padding-left: 0;
    font-size: 16px;
    color: var(--dark-color);
    font-weight: 600;
    font-family: var(--title-fonts)
}

.pq-widget.pq-widget_rss ul li a:hover {
    color: var(--primary-color)
}

.pq-widget.pq-widget_rss ul li a:before {
    display: none
}

.pq-widget.pq-widget_rss ul li cite {
    font-weight: 600;
    margin-top: 5px;
    display: inline-block;
    width: 100%
}

.pq-widget.pq-widget_rss ul li .rss-date {
    font-size: 14px;
    color: var(--primary-color);
    line-height: 1;
    float: left;
    display: inline-block;
    width: 100%;
    margin: 5px 0
}

ul.pq-block-rss .pq-block-rss__item-title a {
    padding: 0
}

.pq-widget.pq-widget_nav_menu ul li,
.pq-widget ul.menu li {
    margin-bottom: 0
}

.pq-widget.pq-widget_nav_menu ul>li {
    margin-bottom: 5px
}

.pq-widget.pq-widget_nav_menu ul>li .sub-menu li {
    margin-bottom: 0
}

.pq-widget.pq-widget_nav_menu ul li .sub-menu,
.pq-widget ul.menu li .sub-menu {
    display: block !important;
    padding-left: 20px
}

.pq-widget.pq-widget_nav_menu ul li a,
.pq-widget ul.menu li a {
    width: 100%
}

.pq-widget_recent_entries ul li .post-date {
    font-weight: 600;
    color: var(--dark-color)
}

.pq-widget_tag_cloud .tag-cloud-link {
    font-size: 14px !important;
    background: var(--white-color);
    margin: 0 10px 10px 0;
    display: inline-block;
    float: left;
    color: var(--dark-color);
    padding: 5px 15px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    border: 1px solid var(--white-color);
    transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    text-transform: capitalize
}

.pq-widget_tag_cloud .tag-cloud-link:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--white-color)
}

.pq-block-tag-cloud .tag-cloud-link {
    font-size: 14px !important;
    background: var(--white-color);
    margin: 0 10px 10px 0;
    display: inline-block;
    float: left;
    color: var(--dark-color);
    padding: 5px 15px;
    border: 1px solid var(--white-color);
    transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px
}

.pq-block-tag-cloud .tag-cloud-link:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--white-color)
}

.pq-block-calendar table {
    background: var(--white-color)
}

.pq-block-calendar table th {
    background: transparent;
    font-weight: 600;
    color: var(--dark-color);
    padding: 8px
}

.pq-block-calendar table td {
    padding: 8px
}

.pq-block-calendar table td a {
    text-decoration: none;
    font-weight: 600
}

.pq-block-calendar table td#today {
    background: var(--primary-color);
    color: var(--white-color);
    font-weight: 600
}

ul.pq-block-social-links li {
    margin-bottom: 0
}

.pq-block-search.pq-block-search__button-inside .pq-block-search__inside-wrapper {
    border: 0;
    padding: 0
}

.pq-block-search .pq-block-search__button svg {
    display: none
}

.pq-widget .pq-block-loginout input.input {
    background: var(--white-color);
    margin-bottom: 15px
}

.pq-widget .pq-block-loginout .login-remember {
    margin-bottom: 15px
}

.entry-content h2+ul,
.entry-content h2+ol {
    margin-top: 1em
}

.pq-blog .owl-carousel .pq-blog-post {
    margin-bottom: 0;
    box-shadow: none
}

.single-post .pq-blog-post {
    margin-bottom: 0
}

.pq-blog-post {
    margin-bottom: 30px;
    background: var(--white-color);
    border-radius: 3px;
    -webkit-box-shadow: 0 0 30px 0 rgba(0, 20, 9, 0.1);
    -moz-box-shadow: 0 0 30px 0 rgba(0, 20, 9, 0.1);
    box-shadow: 0 0 30px 0 rgba(0, 20, 9, 0.1)
}

.pq-light-bg .pq-blog-post {
    background: var(--grey-color)
}

.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: .5s ease-in-out;
    transition: .5s ease-in-out;
    width: 100%;
    -webkit-border-top-left-radius: 3px;
    -webkit-border-top-right-radius: 3px;
    -moz-border-radius-topleft: 3px;
    -moz-border-radius-topright: 3px;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    -webkit-border-bottom-right-radius: 0;
    -webkit-border-bottom-left-radius: 0;
    -moz-border-radius-bottomright: 0;
    -moz-border-radius-bottomleft: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.pq-blog-post:hover .pq-post-media img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

.pq-blog-post .pq-post-media .pq-post-date {
    font-family: var(--title-fonts);
    background: var(--primary-color);
    padding: 4px 8px;
    line-height: normal;
    text-transform: capitalize;
    color: var(--white-color);
    text-align: center;
    position: absolute;
    bottom: 15px;
    left: 15px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px
}

.pq-blog-post .pq-post-media .pq-post-date a {
    color: var(--white-color);
    letter-spacing: .04em;
    font-size: 14px;
    line-height: 22px;
    font-weight: 600;
    text-transform: uppercase
}

.pq-blog-post .pq-blog-contain {
    padding: 30px;
    display: inline-block;
    position: relative;
    width: 100%
}

.pq-blog-post .pq-blog-contain .pq-blog-title {
    margin: 0 0 5px;
    font-size: 24px;
    line-height: 32px
}

.descripqion-hide .pq-blog-post .pq-blog-contain .pq-blog-title {
    margin-bottom: 15px
}

.descripqion-hide p {
    display: none
}

.pq-blog-post .pq-post-meta ul {
    padding: 0 0 15px;
    margin: 0 0 15px;
    width: 100%;
    display: flex;
    border-bottom: 1px solid #ededed
}

.pq-blog-post .pq-post-meta ul li {
    list-style: none;
    float: left;
    display: inline-block;
    margin-right: 20px;
    letter-spacing: .04em;
    font-size: 14px;
    line-height: 22px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--title-fonts)
}

.pq-blog-post .pq-post-meta ul li:last-child {
    margin-right: 0
}

.pq-blog-post .pq-post-meta ul li a {
    color: var(--secondary-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)
}

.single-post .content-area .site-main {
    padding-bottom: 210px
}

blockquote {
    background: var(--grey-color);
    padding: 15px 30px;
    border-radius: 3px;
    border-left: 5px solid var(--primary-color);
    margin-bottom: 45px
}

blockquote cite {
    font-family: var(--title-fonts);
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 600;
    font-style: italic
}

blockquote strong {
    font-family: var(--title-fonts);
    color: var(--primary-color);
    font-style: italic;
    font-weight: 600
}

.pq-blog-post .pq-blog-contain blockquote p {
    margin-bottom: 0
}

.blog-single iframe {
    border-radius: 3px 3px 3px 3px;
    height: 360px;
    width: 100%
}

.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: 0 15px;
    height: 45px;
    width: 45px;
    text-align: center;
    line-height: 45px;
    margin: 0 5px;
    color: var(--dark-color);
    background-color: var(--white-color);
    border: 2px solid var(--grey-color);
    border-radius: 22px
}

.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 .5s ease-out 0s;
    -moz-transition: all .5s ease-out 0s;
    -ms-transition: all .5s ease-out 0s;
    -o-transition: all .5s ease-out 0s;
    transition: all .5s ease-out 0s
}

.pq-pagination .page-numbers li .next.page-numbers,
.pq-pagination .page-numbers li .prev.page-numbers {
    width: auto
}

.pq-error-block {
    text-align: center;
    padding-bottom: 80px
}

.pq-error-block .pq-errot-text {
    font-size: 420px;
    font-family: var(--title-fonts);
    color: var(--primary-color);
    line-height: .8;
    margin-bottom: 30px;
    font-style: normal;
    text-transform: uppercase;
    font-weight: 600
}

.animated {
    -webkit-animation-duration: 1.25s;
    animation-duration: 1.25s
}

.fadeInDown {
    animation-name: fadeInDown
}

.fadeInLeft {
    animation-name: fadeInLeft
}

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: 0 5px 15px 0 rgba(0, 33, 85, 0.1);
    -moz-box-shadow: 0 5px 15px 0 rgba(0, 33, 85, 0.1);
    box-shadow: 0 5px 15px 0 rgba(0, 33, 85, 0.1)
}

header#pq-header .pq-top-header {
    background: var(--primary-dark-color);
    padding: 0;
    font-size: 14px
}

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 20px;
    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: 10px
}

header#pq-header .pq-top-header .pq-header-contact ul li a {
    color: var(--white-color);
    font-family: var(--title-fonts);
    font-weight: 600
}

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)
}

header#pq-header .pq-bottom-header .navbar .navbar-brand {
    line-height: 80px
}

header#pq-header .pq-bottom-header .navbar .navbar-brand img {
    height: 64px;
    border-radius: 0;
    width: auto
}

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 {
    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;
    font-family: var(--title-fonts)
}

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-weight: 600;
    font-size: 16px;
    line-height: 22px
}

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)
}

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: 256px;
    z-index: 999;
    -webkit-box-shadow: 0 5px 15px 0 rgba(0, 33, 85, 0.1);
    -moz-box-shadow: 0 5px 15px 0 rgba(0, 33, 85, 0.1);
    box-shadow: 0 5px 15px 0 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: 3px;
    font-size: 10px;
    color: var(--secondary-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: 15px
}

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)
}

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
}

header#pq-header .pq-menu-search-block {
    position: relative;
    margin: 0 0 0 30px
}

header#pq-header .pq-menu-search-block a {
    color: var(--primary-color);
    font-size: 20px;
    width: 18px;
    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);
    border-radius: 3px;
    border: 2px solid var(--grey-color);
    background: var(--white-color)
}

header#pq-header .pq-button:hover .pq-button-line-left {
    width: calc(15px - 1px)
}

.pq-search-button .offcanvas .search-form input.search-field[type="search"]::-webkit-search-decoration,
.pq-search-button .offcanvas .search-form input.search-field[type="search"]::-webkit-search-cancel-button,
.pq-search-button .offcanvas .search-form input.search-field[type="search"]::-webkit-search-results-button,
.pq-search-button .offcanvas .search-form input.search-field[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance: none
}

.pq-search-button .offcanvas .search-form .search-field:focus {
    color: var(--dark-color)
}

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: 0 5px 15px 0 rgba(0, 33, 85, 0.1);
    -moz-box-shadow: 0 5px 15px 0 rgba(0, 33, 85, 0.1);
    box-shadow: 0 5px 15px 0 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-button {
    background: var(--primary-color);
    margin-left: 30px
}

header#pq-header.pq-header-default .pq-button:hover {
    background: var(--primary-dark-color)
}

header#pq-header.pq-header-default .pq-btn-container .pq-button:hover {
    background: var(--primary-dark-color);
    color: var(--white-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;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px
}

header#pq-header.pq-header-default .pq-menu-search-block {
    margin: 0 30px
}

header#pq-header.pq-header-default .pq-bottom-header .navbar .navbar-nav li .sub-menu li:hover>.sub-menu {
    right: 100%;
    left: inherit
}

header#pq-header.pq-header-style-2 .pq-top-header a.pq-header-contact {
    border: 0
}

header#pq-header.pq-header-style-2 .pq-top-header {
    background: var(--primary-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;
    width: auto;
    border-radius: 0
}

header#pq-header.pq-header-style-2 {
    position: relative;
    left: 0;
    display: inline-block;
    width: 100%;
    overflow-x: clip;
    background: var(--white-color);
    padding: 0;
    -webkit-box-shadow: 0 5px 15px 0 rgba(0, 33, 85, 0.1);
    -moz-box-shadow: 0 5px 15px 0 rgba(0, 33, 85, 0.1);
    box-shadow: 0 5px 15px 0 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: 5.7888;
    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: 77px;
    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#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: 87px
}

header#pq-header.pq-header-style-2.pq-header-sticky .pq-toggle-btn {
    padding: 25px
}

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: .15;
    transition: color .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: 0;
    cursor: pointer;
    background: currentColor;
    color: inherit;
    font-size: 0;
    transition: .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 .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#pq-header.pq-header-style-3.pq-header-sticky .pq-top-header {
    display: none
}

header#pq-header.pq-header-style-3 .pq-header-info-box {
    display: flex;
    align-items: center;
    padding: 0 0 0 30px
}

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 p {
    margin-bottom: 0;
    font-size: 14px
}

header#pq-header.pq-header-style-3 .pq-header-info-box .info-icon-content h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 22px
}

header#pq-header.pq-header-style-3 .pq-header-info-box .info-icon-content {
    padding-left: 15px
}

.pq-background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-color);
    z-index: 100;
    opacity: .8;
    display: none;
    transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out
}

.pq-siderbar-open .pq-background-overlay {
    display: block;
    transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out
}

.pq-siderbar-open .pq-sidebar {
    right: 0;
    opacity: 1
}

.pq-sidebar {
    width: 410px;
    background: var(--white-color);
    opacity: 0;
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    height: 100%;
    z-index: 101;
    transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out
}

.pq-sidebar .pq-close-btn .pq-close {
    position: absolute;
    left: -45px;
    background: var(--primary-color);
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    color: #fff;
    top: 90px;
    font-size: 20px
}

.pq-sidebar-block {
    padding: 60px 30px 30px 30px;
    height: 100%
}

.pq-sidebar-header .pq-sidebar-logo {
    margin-bottom: 15px;
    height: 60px
}

.pq-sidebar h5,
.pq-sidebar h4 {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 15px
}

.pq-sidebar .pq-sidebar-form span.wpcf7-form-control-wrap {
    margin-bottom: 30px;
    display: block
}

.pq-sidebar .pq-sidebar-form .wpcf7-form-control {
    float: none
}

.pq-sidebar ul {
    margin: 0;
    padding: 0
}

.pq-sidebar ul li {
    list-style: none;
    margin: 0;
    padding: 0 0 10px
}

.pq-sidebar ul li a {
    color: var(--dark-color)
}

.pq-sidebar-contact {
    margin-top: 30px;
    display: inline-block;
    width: 100%
}

.pq-sidebar-contact li {
    display: flex;
    align-items: flex-start
}

.pq-sidebar-contact li i {
    line-height: 2;
    color: var(--primary-color)
}

.pq-sidebar-contact li span {
    margin-left: 15px;
    flex: 1
}

.pq-sidebar-social ul {
    margin-top: 30px;
    display: inline-block;
    width: 100%
}

.pq-sidebar-social ul li {
    display: inline-block;
    padding: 0;
    margin: 0
}

.pq-sidebar-social ul li:last-child {
    margin-right: 0
}

.pq-sidebar-social ul li a {
    background: var(--primary-dark-color);
    color: #fff;
    width: 50px;
    height: 50px;
    line-height: 50px;
    display: inline-block;
    text-align: center;
    border-radius: 3px
}

.pq-sidebar-social ul li a:hover {
    background: var(--primary-color)
}

.pq-sidebar .pq-widget {
    background: transparent;
    padding: 0;
    border: 0
}

.pq-sidebar .pq-widget .pq-block-image {
    margin-bottom: 30px
}

.pq-sidebar h2 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 15px
}

.pq-slider-logo-img {
    width: 233px
}

.pq-breadcrumb {
    background: var(--grey-color);
    color: var(--white-color);
    padding: 130px 0;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center
}

.pq-breadcrumb nav {
    position: relative
}

.pq-breadcrumb .pq-breadcrumb-title h1 {
    font-size: 56px;
    line-height: 64px;
    margin-bottom: 15px;
    color: var(--dark-color)
}

.pq-breadcrumb-title h2 {
    font-size: 42px;
    line-height: 50px
}

.pq-breadcrumb-container .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    justify-content: flex-start
}

.pq-breadcrumb-container .breadcrumb li {
    list-style-type: none;
    margin-right: 15px;
    padding-left: 0;
    letter-spacing: .04em;
    font-size: 14px;
    line-height: 22px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--title-fonts)
}

.pq-breadcrumb-container .breadcrumb li.active {
    color: var(--primary-color)
}

.pq-breadcrumb-container .breadcrumb li a {
    color: var(--secondary-color)
}

.pq-breadcrumb-container .breadcrumb li a i {
    margin-right: 10px
}

.pq-breadcrumb-container .breadcrumb li a:hover {
    color: var(--primary-color)
}

.pq-breadcrumb-container .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    content: "\f125";
    font-size: 12px;
    font-family: "Ionicons";
    padding-right: 15px;
    color: var(--secondary-color);
    float: none
}

.pq-yoest-breadcumbs #breadcrumbs {
    margin: 0;
    padding: 0
}

.pq-yoest-breadcumbs #breadcrumbs span {
    color: var(--dark-color)
}

.pq-yoest-breadcumbs #breadcrumbs span a {
    padding: 0 5px
}

.pq-yoest-breadcumbs #breadcrumbs span strong {
    font-weight: 400;
    padding-left: 5px
}

.pq-subscribe {
    display: inline-block;
    width: 100%;
    position: relative;
    margin-top: -80px;
    z-index: 10
}

.pq-subscribe-bg {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 45px;
    border-radius: 3px
}

.pq-subscribe-block {
    display: flex;
    align-items: center;
    margin-bottom: 10px
}

.pq-subscribe-block .pq-subscribe-img {
    width: 55px;
    color: var(--primary-color)
}

.pq-subscribe-block .pq-subscribe-details {
    margin-left: 30px;
    color: var(--white-color);
    flex: 1;
    padding-right: 50px
}

.pq-subscribe-block .pq-subscribe-details h5 {
    color: var(--white-color);
    font-size: 28px;
    line-height: 36px
}

.pq-subscribe-from input {
    border: 0
}

.pq-subscribe-from .form-fields {
    display: flex
}

.pq-subscribe-from input[type="submit"] {
    background: var(--white-color);
    color: var(--dark-color);
    margin-left: 30px
}

.pq-subscribe-from input[type="submit"]:hover {
    background: var(--dark-color);
    color: var(--white-color)
}

.pq-subscribe-from input {
    margin-bottom: 0
}

.pq-subscribe-from input.submit:hover {
    background: var(--dark-color);
    color: var(--white-color) !important
}

footer#pq-footer {
    display: inline-block;
    width: 100%;
    float: left;
    position: relative
}

footer#pq-footer:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 100%;
    opacity: .05;
    background-position: center;
    background-size: 60% auto;
    background-repeat: repeat
}

footer#pq-footer .pq-footer-style-1 {
    background: var(--primary-dark-color);
    color: var(--white-color)
}

footer#pq-footer .pq-footer-top {
    padding: 70px 0 0;
    position: relative;
    z-index: 9
}

footer#pq-footer .pq-copyright-footer {
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative
}

footer#pq-footer .pq-copyright-footer .pq-copyright {
    display: inline-block;
    width: 100%;
    position: relative;
    z-index: 9
}

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#pq-footer .pq-footer-logo {
    height: 50px;
    margin-bottom: 30px;
    width: auto;
    border-radius: 0
}

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 ul.menu li a:hover,
footer#pq-footer .pq-footer-style-1 .pq-service li a:hover {
    color: var(--primary-color)
}

footer#pq-footer .pq-footer-style-1 ul li a:hover {
    color: var(--primary-color)
}

footer#pq-footer .pq-footer-style-1 ul.menu li a,
footer#pq-footer .pq-footer-style-1 .pq-service li a,
footer#pq-footer .pq-footer-style-1 ul li a {
    position: relative;
    border: 0;
    padding: 0 0 0 5px;
    display: inline-block;
    width: 100%
}

footer#pq-footer .pq-footer-style-1 ul.menu li a,
footer#pq-footer .pq-footer-style-1 .pq-service li a,
footer#pq-footer .pq-footer-style-1 ul li a {
    color: var(--white-color)
}

footer#pq-footer .pq-footer-style-1 .pq-footer-social ul li a {
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white-color);
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    display: inline-block;
    padding: 0
}

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 .footer-title {
    margin-bottom: 20px;
    padding: 0;
    font-size: 20px;
    line-height: 1.5;
    position: relative;
    color: var(--white-color)
}

.pq-footer-style-1 ul {
    padding: 0;
    margin: 0
}

footer#pq-footer .pq-footer-block:first-child {
    margin-bottom: 45px
}

footer#pq-footer .pq-footer-style-1 ul#menu-useful-links.menu li {
    width: 100%;
    display: inline-block;
    margin: 0 0 5px 0
}

footer#pq-footer .pq-footer-style-1 ul.menu li a:first-child {
    padding-top: 0
}

#pq-footer .pq-footer1 ul li a {
    color: var(--white-color)
}

footer#pq-footer .pq-footer-style-1 ul#menu-useful-links li a:before {
    top: 4px;
    bottom: 0;
    left: 0;
    width: auto;
    height: auto;
    display: inline;
    background: transparent;
    margin: auto 0;
    content: '\f122';
    margin-right: 10px;
    font-family: "Ionicons";
    font-size: 11px;
    font-weight: 900
}

footer#pq-footer .pq-footer-style-1 ul.pq-contact li {
    display: flex;
    align-items: center
}

footer#pq-footer .pq-footer-style-1 ul.pq-contact li a {
    padding: 0
}

footer#pq-footer .pq-footer-style-1 ul.pq-contact li i {
    margin-right: 20px
}

footer#pq-footer .pq-footer-style-1 ul li {
    margin: 0 0 5px 0
}

.pq-footer-recent-post .pq-footer-recent-post-info .pq-post-date {
    font-family: var(--title-fonts);
    text-transform: uppercase;
    font-size: 12px;
    line-height: 22px;
    font-weight: 600;
    letter-spacing: .04em;
    color: var(--primary-color)
}

footer#pq-footer .pq-footer-recent-post .pq-footer-recent-post-info .pq-post-date {
    color: var(--white-color)
}

.pq-footer-recent-post .pq-footer-recent-post-info h6 {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 0;
    font-weight: 600
}

footer#pq-footer .pq-footer-style-1 .pq-footer-recent-post .pq-footer-recent-post-info h6 {
    color: var(--white-color)
}

.pq-footer-recent-post {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(15, 40, 81, 0.1);
    padding-bottom: 24px
}

footer#pq-footer .pq-footer-recent-post:last-child {
    border: 0
}

footer#pq-footer .pq-footer-recent-post {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-right: 30px
}

.pq-footer-recent-post .pq-footer-recent-post-media {
    margin-right: 15px
}

.pq-footer-recent-post .pq-footer-recent-post-info .pq-post-date i {
    margin-right: 8px
}

.pq-footer-recent-post .pq-footer-recent-post-media img {
    width: 80px;
    height: 80px;
    border-radius: 3px
}

.pq-section.pq-style-1.text-center {
    padding: 0 15em;
    margin-bottom: 45px
}

.pq-section.pq-style-1 .pq-section-sub-title, .blue-blue {
    letter-spacing: .04em;
    font-family: var(--title-fonts);
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    position: relative;
    text-transform: uppercase;
    color: var(--primary-color);
    background: #d3e9fb;
    padding: 4px 8px;
    margin: 0 0 10px;
    display: inline-block;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px
}
.blue-blue { font-size:18px; text-transform: none;}

.pq-section.pq-style-1 .pq-section-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 1.5;
    z-index: 9;
    color: var(--dark-color);
    padding: 0;
    margin: 0 0 15px;
    position: relative;
    display: block
}

.pq-section.pq-style-1 .pq-section-descripqion {
    font-family: var(--body-fonts);
    font-size: 16px;
    font-weight: 400;
    z-index: 9;
    position: relative;
    margin: 5px 0 0
}

.pq-section.pt-style-1 .pq-section-sub-title {
    letter-spacing: .04em;
    font-family: var(--title-fonts);
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    position: relative;
    text-transform: uppercase;
    color: var(--primary-color);
    background: #d3e9fb;
    padding: 4px 8px;
    margin: 0 0 10px;
    display: inline-block;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px
}

.pq-section.pt-style-1 .pq-section-title {
    font-weight: 600;
    font-size: 48px;
    line-height: 56px;
    z-index: 9;
    color: var(--dark-color);
    padding: 0;
    margin: 0;
    position: relative;
    display: block
}

.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 {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    box-shadow: none;
    outline: 0;
    background: var(--dark-color);
    opacity: .5;
    display: inline-block;
    padding: 0;
    margin: 0 5px;
    height: 6px;
    width: 25px;
    border: 0;
    transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .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
}

.pq-list-check {
    margin: 0;
    padding: 0;
    list-style: none
}

.pq-list-check li {
    margin: 0;
    padding: 10px 0 0 0;
    list-style: none
}

.pq-list-check li i {
    color: var(--primary-color);
    margin-right: 8px
}

.pq-list-check li span {
    font-family: "Quicksand", Sans-serif;
    font-weight: 600
}

.pq-list-check li span a{
    color: var(--dark-color)
}
.pq-list-check li span a:hover{
    color: var(--primary-color)
}

.pq-info-box.pq-style-1 {
    background: var(--primary-color)
}

.pq-info-box {
    color: var(--white-color);
    padding: 45px 30px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    position: relative
}

.pq-info-box .pq-info-box-right-icon {
    position: absolute;
    right: 0;
    top: 30px;
    opacity: .1999;
    transition: all .5s ease
}

.pq-info-box:hover .pq-info-box-right-icon {
    right: 15px
}

.pq-info-box .pq-info-box-right-icon i {
    font-size: 80px;
    line-height: 88px
}

.pq-info-box .pq-info-box-icon i {
    font-size: 80px;
    line-height: 88px;
    color: var(--white-color)
}

.pq-info-box .pq-info-title {
    color: var(--white-color);
    font-size: 28px;
    line-height: 36px;
    margin-top: 15px;
    margin-bottom: 5px
}

.pq-info-call {
    display: flex;
    align-items: center;
    margin-bottom: 5px
}

.pq-info-call i {
    font-size: 20px;
    text-align: center;
    width: 45px;
    height: 45px;
    line-height: 45px;
    background: var(--white-color);
    color: var(--primary-color);
    border-radius: 100%
}

.pq-info-call .cpq-call-number {
    color: var(--white-color);
    margin-left: 15px
}

.pq-info-box.pq-style-2 {
    background: var(--primary-dark-color)
}

.pq-info-box.pq-style-2 .pq-button-outline {
    border-color: var(--white-color);
    color: var(--white-color);
    padding: 8px 24px
}

.pq-info-box.pq-style-2 .pq-button-outline:hover {
    border-color: var(--primary-color);
    background: var(--primary-color)
}

.pq-info-box.pq-style-3 {
    background: var(--primary-color)
}

.pq-info-box.pq-style-3 .pq-list-info {
    list-style-type: none;
    padding: 0;
    margin: 0;
    margin-top: 15px
}

.pq-info-box.pq-style-3 .pq-list-info li {
    padding-bottom: 5px;
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #fff29
}

.pq-info-box.pq-style-3 .pq-list-info li:last-child {
    margin-bottom: 0;
    border: 0
}

.pq-service-box.pq-style-1 {
    margin-bottom: 25px;
    background: var(--primary-dark-color);
    
}

.pq-service-box.pq-style-1 .pq-service-img {
    overflow: hidden;
    border-radius: 3px
}

.pq-service-box.pq-style-1 .pq-service-img img {
    width: 100%;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out
}

.pq-service-box.pq-style-1:hover .pq-service-img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

.pq-service-box.pq-style-1 .pq-service-box-info {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative
}

.pq-service-box.pq-style-1 .pq-service-sub-title {
    font-weight: 600;
    letter-spacing: .04em;
    font-size: 14px;
    line-height: 22px;
    font-family: var(--title-fonts);
    text-transform: uppercase;
    color: var(--primary-color)
}

.pq-service-box.pq-style-1 .pq-service-title {
    padding: 10px 0;
    font-size: 18px;
    color:var(--white-color)
}

.pq-service-box.pq-style-1 .pq-service-icon {
    position: absolute;
    top: 5px;
    right: 0;
    transition: all .5s ease
}

.pq-service-box.pq-style-1:hover .pq-service-icon {
    transform: rotateY(180deg)
}

.pq-service-box.pq-style-1 .pq-service-icon i {
    font-size: 56px;
    line-height: 64px;
    color: var(--primary-color)
}

.pq-whitebg .pq-service-box.pq-style-1 {
    padding: 15px !important;
    background: #fff !important
}

.pq-service-box.pq-style-4 {
    background: var(--white-color);
    padding: 45px;
    box-shadow: 0 0 30px 0 rgb(21 21 21 / 11%)
}

.pq-service-box.pq-style-4.active {
    background: var(--primary-color);
    color: var(--white-color)
}

.pq-service-box.pq-style-4 .pq-service-icon i {
    font-size: 56px;
    line-height: 64px;
    color: var(--primary-color)
}

.pq-widget.widget-port {
    background: var(--grey-color);
    box-shadow: none
}

.pq-widget.pq-widget-port .page-title {
    margin: 0 0 20px 0
}

.pq-widget.pq-widget-port .menu li {
    margin: 0 0 10px 0
}

.pq-widget.pq-widget-port .menu li:last-child {
    margin-bottom: 0
}

.pq-widget.pq-widget-port .menu li a {
    position: relative;
    background-color: var(--white-color);
    padding: 15px 24px;
    color: var(--dark-color);
    text-transform: capitalize;
    border: 0;
    display: block;
    transition: all .5s linear;
    -webkit-transition: none;
    font-family: var(--title-fonts);
    font-weight: 500;
    font-size: 16px;
    border-radius: 3px
}

.pq-widget.pq-widget-port .menu li.current-menu-item a {
    background: var(--primary-color);
    color: var(--white-color)
}

.pq-widget.pq-widget-port:nth-child(2),
.pq-widget.pq-widget-port:nth-child(3) {
    padding: 0;
    background: unset
}

.pq-widget.pq-widget-port .menu li>a:before {
    position: absolute;
    content: '\f054';
    font-family: "Ionicons";
    font-size: 12px;
    right: 24px;
    left: auto;
    top: 24px;
    color: inherit;
    line-height: normal;
    font-weight: 600
}

.pq-widget.pq-widget-port img {
    border-radius: 3px
}

.pq-widget.pq-widget-port a.wp-block-button__link {
    letter-spacing: .04em;
    font-family: var(--title-fonts);
    font-size: 14px;
    font-weight: 600;
    padding: 12px 30px
}

.pq-counter.pq-style-2 .pq-counter-num-prefix {
    display: inline-flex
}


/* 基础样式 - 所有.timer共用 */
.timer {
  position: relative;
  display: inline-block;
}

/* 只为带有 with-superscript 类的元素添加上标 */
.timer.with-superscript::after {
  content: "\f217"; /* ion-plus-round */
  font-family: "Ionicons";
  font-size: 0.5em; /* 调整为上标大小 */
  position: absolute;
  top: -0.3em; /* 调整垂直位置 */
  right: -0.8em; /* 调整水平位置 */
  color: white;
}


.pq-counter.pq-style-2 .pq-counter-num-prefix.pq-prefix-top {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -10px
}

.pq-counter.pq-style-2 .pq-counter-num-prefix.pq-prefix-top h5,
.pq-counter.pq-style-2 .pq-counter-num-prefix.pq-prefix-top .pq-counter-prefix {
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--white-color);
    opacity: .03;
    font-size: 62px;
    line-height: 70px
}

.pq-counter.pq-style-2 .pq-counter-info {
    position: relative;
    padding-top: 20px
}

.pq-counter.pq-style-2 .pq-counter-info h5 {
    font-size: 46px;
    line-height: 46px;
    display: inline-block;
    color: var(--white-color)
}

.pq-counter.pq-style-2 .pq-counter-info .pq-counter-prefix {
    font-size: 46px;
    line-height: 46px;
    font-family: var(--title-fonts);
    color: var(--white-color);
    font-weight: 600
}

.pq-counter.pq-style-2 .pq-counter-info p {
    font-family: var(--title-fonts);
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: .04em;
    font-size: 14px;
    line-height: 22px;
    color: var(--white-color);
    font-weight: 600;
    margin-top: 5px
}

.pq-form-counter .pq-counter.pq-style-2 {
    padding: 30px 0
}

.pq-fancy-box.pq-style-1 {
    padding: 45px 30px;
    transition: all .5s ease
}

.pq-fancy-box.pq-style-1 .pq-fancy-box-title {
    text-transform: capitalize;
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: 600
}

.pq-fancy-box.pq-style-1 .pq-fancy-box-icon i {
    font-size: 64px;
    line-height: 72px;
    transition: all .5s ease;
    display: inline-block;
    color: var(--primary-color)
}

.pq-fancy-box.pq-style-1:hover .pq-fancy-box-icon i {
    transform: rotateY(180deg);
    transition: all .5s ease
}

.pq-fancy-box.pq-style-1 .pq-fancybox-description {
    margin-bottom: 15px
}

.pq-fancy-box.pq-style-2 .pq-fancy-img {
    position: relative;
    overflow: hidden;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px
}

.pq-fancy-box.pq-style-2 .pq-fancy-img img {
    width: 100%;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.pq-fancy-box.pq-style-2:hover .pq-fancy-img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

.pq-fancy-box.pq-style-2 .pq-fancy-box-icon {
    border-top-left-radius: 3px;
    -webkit-border-top-left-radius: 3px;
    -webkit-border-top-right-radius: 3px;
    -moz-border-radius-topleft: 3px;
    -moz-border-radius-topright: 3px;
    border-top-right-radius: 3px;
    font-size: 48px;
    line-height: 88px;
    height: 80px;
    width: 80px;
    text-align: center;
    color: var(--white-color);
    background-color: var(--primary-color);
    position: relative;
    position: absolute;
    left: 30px;
    bottom: 0;
    transition: all .5s ease
}

.pq-fancy-box.pq-style-2 .pq-fancy-box-info {
    padding: 30px;
    background: var(--white-color);
    -webkit-box-shadow: 0 0 30px 0 rgba(0, 20, 9, 0.1);
    -moz-box-shadow: 0 0 30px 0 rgba(0, 20, 9, 0.1);
    box-shadow: 0 0 30px 0 rgba(0, 20, 9, 0.1)
}

.pq-fancy-box.pq-style-2 .pq-fancybox-description {
    margin-top: 5px;
    margin-bottom: 15px
}

.pq-fancy-box.pq-style-3 {
    padding: 45px 30px;
    transition: all .5s ease;
    background: var(--white-color);
    overflow: hidden;
    position: relative;
    border-radius: 3px
}

.pq-fancy-box.pq-style-3 .pq-fancy-box-hoverbg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out
}

.pq-fancy-box.pq-style-3 .pq-fancy-box-hoverbg:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    background: var(--primary-color);
    opacity: .9;
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out
}

.pq-fancy-box.pq-style-3:hover .pq-fancy-box-hoverbg {
    opacity: 1
}

.pq-fancy-box.pq-style-3 .pq-fancy-box-info {
    position: relative
}

.pq-fancy-box.pq-style-3:hover,
.pq-active .pq-fancy-box.pq-style-3 {
    background: var(--primary-color)
}

.pq-fancy-box.pq-style-3 .pq-fancy-box-icon i {
    font-size: 64px;
    line-height: 72px;
    transition: all .5s ease;
    display: inline-block;
    color: var(--primary-color)
}

.pq-fancy-box.pq-style-3:hover .pq-fancy-box-icon i {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    color: var(--white-color)
}

.pq-fancy-box.pq-style-3:hover .pq-fancybox-link,
.pq-active .pq-fancy-box.pq-style-3 .pq-fancybox-link {
    color: var(--white-color);
    border-color: var(--white-color)
}

.pq-fancy-box.pq-style-3 .pq-fancy-box-title {
    color: var(--dark-color);
    text-transform: capitalize;
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: 600;
    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
}

.pq-fancy-box.pq-style-3 .pq-fancybox-descripqion {
    margin-bottom: 15px;
    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
}

.pq-fancy-box.pq-style-3 .pq-fancy-box-info .pq-button {
    transition: none;
    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
}

.pq-fancy-box.pq-style-3:hover .pq-fancy-box-title {
    color: var(--white-color)
}

.pq-fancy-box.pq-style-3:hover .pq-fancybox-description {
    color: var(--white-color)
}

.pq-fancy-box.pq-style-3:hover .pq-button.pq-button-link {
    color: var(--white-color)
}

.pq-fancy-box.pq-style-3:hover .pq-button.pq-button-link i {
    border-color: var(--white-color)
}

.pq-progressbar-style-1 .pq-progressbar-content {
    padding-bottom: 20px;
    display: inline-block;
    float: left;
    width: 100%
}

.pq-progressbar-style-1 .pq-progressbar-content .sonny_progressbar {
    margin-bottom: 0
}

.pq-progressbar-style-1 .pq-progressbar-content .bar-container {
    height: 12px
}

.pq-progressbar-style-1 .pq-progressbar-content:last-child {
    margin-bottom: 0
}

.pq-progressbar-style-1 .progress-title {
    margin: 0;
    font-size: 16px;
    line-height: 24px;
    font-family: var(--title-fonts);
    color: var(--dark-color);
    font-weight: 600
}

.pq-progressbar-style-1 .progress-value {
    color: var(--secondary-color);
    margin: 0;
    float: right;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600
}

.pq-progressbar-style-1 .pq-progress-bar {
    display: inline-block;
    width: 100%;
    padding: 0;
    background: var(--primary-dark-color);
    float: left;
    margin-top: 5px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px
}

.pq-progressbar-style-1 .pq-progress-bar span {
    display: inline-block;
    background: var(--primary-color);
    float: left;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px
}

.pq-progressbar-box .pq-progressbar-content .pq-progress-bar span {
    height: 10px;
    line-height: 10px;
    background: var(--primary-color) !important
}

.pq-progressbar-box .pq-progressbar-content .pq-progress-bar span {
    height: 10px;
    line-height: 10px;
    background: var(--primary-color) !important
}

.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;
    background: var(--white-color);
    font-family: var(--title-fonts);
    font-weight: 600;
    text-transform: capitalize;
    list-style: none;
    color: var(--dark-color);
    display: inline-block;
    cursor: pointer;
    padding: 10px 30px;
    transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px
}

.pq-filters .pq-filter-button-group ul li:last-child {
    margin-bottom: 0
}

.pq-filters .pq-filter-button-group ul li:hover {
    background: var(--primary-color);
    color: var(--white-color)
}

.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-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-masonry {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.pq-masonry .ipq-lg-6 {
    width: 50%;
    padding: 0 15px 30px
}

.pq-masonry .ipq-lg-3 {
    width: 25%;
    padding: 0 15px 30px
}

.pq-masonry.no-padding .ipq-lg-6,
.pq-masonry.no-padding .ipq-lg-3 {
    padding: 0
}

.pq-grid-item {
    float: left
}

.pq-portfoliobox.pq-style-1 {
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 100%;
    float: left;
    transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    border-radius: 3px
}

.pq-portfoliobox.pq-style-1 .pq-portfolio-img img {
    width: 100%;
    height: 100%;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    border-radius: 3px
}

.pq-portfoliobox.pq-style-1 .pq-portfolio-img {
    position: relative
}

.pq-portfoliobox.pq-style-1 .pq-portfolio-img:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: inline-block;
    z-index: 9;
    background: var(--secondary-color);
    opacity: 0;
    transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out
}

.pq-portfoliobox.pq-style-1:hover .pq-portfolio-img:before {
    opacity: .2
}

.pq-portfoliobox.pq-style-1 .pq-portfolio-info span,
.pq-portfoliobox.pq-style-1 .pq-portfolio-info .pq-portfolio-link a {
    font-family: var(--title-fonts);
    font-weight: 600;
    letter-spacing: .04em;
    font-size: 14px;
    line-height: 22px;
    text-transform: uppercase;
    color: var(--primary-color)
}

.pq-portfoliobox.pq-style-1:hover .pq-portfolio-img img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2)
}

.pq-portfoliobox.pq-style-1 .pq-portfolio-info {
    background: var(--white-color);
    padding: 30px;
    left: 30px;
    right: 30px;
    position: absolute;
    bottom: -15px;
    opacity: 0;
    transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    text-align: center;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px
}

.pq-portfoliobox.pq-style-1:hover .pq-portfolio-info {
    opacity: 1;
    z-index: 10;
    bottom: 30px
}

.pq-portfoliobox.pq-style-1 .pq-portfolio-info h5 a {
    color: var(--dark-color)
}

.pq-portfoliobox.pq-style-1 .pq-portfolio-info h5 a:hover {
    color: var(--primary-color)
}

.pq-portfoliobox.pq-style-1 .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;
    opacity: 0;
    transition: all 300ms linear 0s
}

.pq-portfoliobox.pq-style-1:hover .pq-portfolio-icon {
    opacity: 1;
    transform: scale(1);
    z-index: 9
}

.pq-portfoliobox.pq-style-1 .pq-portfolio-icon i {
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 54px;
    height: 54px;
    font-size: 16px;
    line-height: 24px;
    background-color: var(--primary-color);
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    border-radius: 3px;
    transition: all .5s ease
}

.pq-portfoliobox.pq-style-1 .pq-portfolio-icon i:hover {
    background: var(--dark-color)
}

.pq-portfolio-info-box {
    display: inline-block;
    width: 100%
}

.pq-porfolio-info-header h5 {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 15px
}
.pq-porfolio-info-header .sub-title {
    letter-spacing: .04em;
    font-family: var(--title-fonts);
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    position: relative;
    text-transform: uppercase;
    color: var(--primary-color);
    background: #d3e9fb;
    padding: 4px 8px;
    margin: 0 0 10px;
    display: inline-block;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px}


.pq-porfolio-info .pq-info-list {
    margin: 0;
    padding: 0
}

.pq-porfolio-info .pq-info-list li {
    list-style: none;
    margin: 0 0 15px;
    padding: 0 0 15px;
    border-bottom: 1px solid var(--grey-color);
    display: inline-block;
    width: 100%
}

.pq-porfolio-info .pq-info-list li h5 {
    display: inline-block;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600
}

.pq-porfolio-info .pq-info-list li span {
    float: right;
    color: var(--primary-color)
}

.Projects-dts .pq-portfolio-block .pq-portfolio-info {
    padding-bottom: 0
}

.pq-porfolio-info .pq-info-list li:last-child {
    border-bottom: 0
}

.pq-portfolio-list-check {
    padding: 0
}

.pq-portfolio-list-check li {
    margin: 0;
    padding: 5px 0 0 0;
    list-style: none
}

.pq-portfolio-list-check li i {
    color: var(--primary-color);
    margin-right: 14px
}

.pq-portfolio-list-check li:first-child {
    padding: 0
}

.counter-border-right {
    border-right: 1px solid #F8F8F81C
}

.pq-team-box.pq-style-1 .owl-carousel .owl-dots {
    margin-top: 0
}

.pq-team-box.pq-style-1 .pq-team-img {
    position: relative;
    overflow: hidden;
    border-radius: 3px
}

.pq-team-box.pq-style-1 .pq-team-img img {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    width: 100%
}
.pq-team-box.pq-style-1:hover .pq-team-img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

.pq-team-box.pq-style-1 .pq-team-social ul {
    margin: 0;
    padding: 0;
    position: absolute;
    top: -100px;
    opacity: 0;
    right: 15px;
    display: inline-block;
    width: 60px;
    transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    background: var(--primary-color);
    -webkit-border-bottom-right-radius: 3px;
    -webkit-border-bottom-left-radius: 3px;
    -moz-border-radius-bottomright: 3px;
    -moz-border-radius-bottomleft: 3px;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px
}

.pq-team-box.pq-style-1:hover .pq-team-social ul {
    top: 0;
    opacity: 1
}

.pq-team-box.pq-style-1 .pq-team-social ul li {
    list-style: none;
    display: inline-flex
}

.pq-team-box.pq-style-1 .pq-team-social ul li:last-child {
    margin: 0
}

.pq-team-box.pq-style-1 .pq-team-social ul li a {
    color: var(--white-color);
    text-align: center;
    width: 60px;
    height: 60px;
    line-height: 60px
}

.pq-team-box.pq-style-1 .pq-team-social ul li a:hover {
    background: var(--dark-color)
}

.pq-team-box.pq-style-1 .pq-team-social ul li:last-child a {
    -webkit-border-bottom-right-radius: 3px;
    -webkit-border-bottom-left-radius: 3px;
    -moz-border-radius-bottomright: 3px;
    -moz-border-radius-bottomleft: 3px;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px
}




.pq-team-box.pq-style-1 .pq-team-info {
    border-radius: 3px;
    background: var(--grey-color);
    padding: 20px 15px;
    margin: 0 0;
    text-align: center;
    position: relative;
    transform: translateY(-3px);
    -moz-transform: translate(-3px);
    -webkit-transform: translate(-3px);
    -o-transform: translate(-3px);
    -ms-transform: translate(-3px);
    transform: translateY(-3px);
    transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    cursor: pointer;
    /* -webkit-box-shadow: 0 0 30px 0 rgba(0, 20, 9, 0.1);
    -moz-box-shadow: 0 0 30px 0 rgba(0, 20, 9, 0.1);
    box-shadow: 0 0 30px 0 rgba(0, 20, 9, 0.1) */
}

.pq-team-box.pq-style-1:hover .pq-team-info {
    transform: translateY(-10px);
    -moz-transform: translate(-10px);
    -webkit-transform: translate(-10px);
    -o-transform: translate(-10px);
    -ms-transform: translate(-10px);
    transform: translateY(-10px)
}



.pq-team-box.pq-style-1 .pq-team-info h5 a {
    color: var(--dark-color)
}

.pq-team-box.pq-style-1 .pq-team-info h5 a:hover {
    color: var(--primary-color)
}

.pq-team-box.pq-style-1 .pq-team-info .pq-team-designation {
    letter-spacing: .04em;
    font-size: 14px;
    line-height: 22px;
    font-weight: 600;
    display: inline-block;
    width: 100%;
    text-transform: uppercase;
    color: var(--primary-color);
    font-family: var(--title-fonts)
}

.single-team .pq-social-icon {
    margin-top: 15px;
    display: inline-block;
    width: 100%
}

.single-team .pq-social-icon ul {
    padding: 0
}

.single-team .pq-social-icon li {
    background: var(--grey-color);
    border-radius: 50%;
    margin-right: 15px;
    width: 45px;
    height: 45px;
    color: var(--dark-color);
    line-height: 45px;
    text-align: center
}

.single-team .pq-social-icon li i {
    color: var(--dark-color)
}

.experience-container {
    margin-top: 60px
}

.experience-container {
    margin-top: 60px
}

.pq-form-container {
    margin-top: 60px
}

.appoinment-form .appoinment-box {
    background-color: var(--grey-color);
    padding: 45px 45px 45px 45px
}

.pq-appointment label {
    width: 100%;
    display: inline-block
}

.pq-appointment-title {
    color: var(--dark-color);
    font-weight: 500;
    display: inline-block;
    margin-bottom: 5px
}

.pq-appointment .form-control-wrap input,
.pq-appointment .form-control-wrap select {
    background-color: var(--white-color);
    border-radius: 3px;
    margin-bottom: 15px
}

.pq-appointment textarea {
    height: 100px;
    margin-bottom: 15px;
    border-radius: 3px;
    background-color: var(--white-color)
}

.pq-testimonial-box.pq-style-1 {
    background: var(--grey-color);
    padding: 45px;
    border-radius: 3px
}

.pq-testimonial-box.pq-style-1 .pq-testimonial-media {
    display: flex;
    position: relative
}

.pq-testimonial-box.pq-style-1 .pq-testimonial-media .pq-testimonial-img img {
    width: 80px;
    height: 80px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%
}

.pq-testimonial-box.pq-style-1 .pq-testimonial-media .pq-testimonial-img {
    margin-right: 15px
}

.pq-testimonial-box.pq-style-1 .pq-testimonial-media .pq-testimonial-meta {
    align-self: center;
    z-index: 2
}

.pq-testimonial-box.pq-style-1 .pq-testimonial-media .pq-testimonial-meta span {
    color: var(--primary-color);
    letter-spacing: .04em;
    font-size: 14px;
    line-height: 22px;
    font-weight: 600;
    font-family: var(--title-fonts);
    text-transform: uppercase
}

.pq-testimonial-box.pq-style-1 .pq-testimonial-media .pq-testimonial-icon i {
    color: var(--primary-color);
    font-size: 64px;
    line-height: 72px;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    opacity: .1
}

.pq-testimonial-whitebg .pq-testimonial-box.pq-style-1 {
    background: #fff;
    padding: 30px
}

.pq-testimonial-whitebg.pq-testimonial-border .pq-testimonial-box.pq-style-1 .pq-testimonial-media .pq-testimonial-icon i {
    color: var(--grey-color)
}

.pq-testimonial-box.pq-style-2 .pq-testimonial-media .pq-testimonial-img img {
    width: 120px;
    height: 120px;
    display: inline-block;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 5px solid var(--white-color)
}

.pq-testimonial-box.pq-style-2 .pq-testimonial-info p {
    margin-top: 30px
}

.pq-testimonial-box.pq-style-2 .pq-testimonial-meta span {
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: .04em;
    font-size: 14px;
    line-height: 22px;
    font-family: var(--title-fonts);
    text-transform: uppercase
}

.pq-testimonial-images {
    position: relative
}

.testimonialimg1 {
    position: absolute;
    top: -45%;
    right: 0;
    width: 100px
}

.testimonialimg2,
.testimonialimg3 {
    position: absolute;
    bottom: 0;
    left: 0
}

.testimonialimg2 {
    width: 90px
}

.testimonialimg3 {
    width: 70px
}

.testimonialimg4 {
    position: absolute;
    top: -40%;
    right: 0;
    width: 82px
}

.pq-testimonial-pt {
    padding-top: 370px
}

.pq-client {
    padding: 60px 0
}

.pq-clientbox.pq-style-1 img {
    border-radius: 0
}

.pq-clientbox.pq-style-1 .pq-client-img {
    position: relative;
    display: block;
    width: 278px;
    
    margin: 0 auto;
    transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out
}

.pq-clientbox.pq-style-1 a:hover .pq-client-img {
    opacity: 0
}

.pq-clientbox.pq-style-1 .pq-client-hover-img {
    position: absolute;
    width: 278px;
    
    margin: 0 auto;
    left: 0;
    opacity: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out
}

.pq-clientbox.pq-style-1 a:hover .pq-client-hover-img {
    opacity: 1
}

.pq-client.pq-bg-grey {
    padding-top: 380px
}

.pq-primary-section-side-left:before {
    content: "";
    position: absolute;
    right: 100%;
    top: 0;
    display: inline-block;
    width: 1000%;
    height: 100%;
    z-index: 1;
    background: var(--primary-color)
}

.pq-tabs-1 .nav-tabs {
    border: 0;
    display: flex
}

.pq-tabs-1 .nav-tabs .nav-item {
    background: var(--grey-color);
    color: var(--primary-color);
    padding: 20px 15px;
    border: 0;
    margin-right: 10px;
    position: relative;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 0 20px 0 0;
    flex: 1;
    font-size: 20px;
    line-height: 20px;
    font-weight: 600;
    transition: none
}

.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%;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    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: none
}

.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;
    border-radius: 3px
}

.pq-tabs-1 .tab-content .pq-tab-info {
    padding-left: 20px
}

.pq-tabs-1 .tab-content .pq-tab-info h2 {
    font-size: 32px;
    line-height: 1.5;
    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:last-child {
    padding: 0;
    margin-bottom: -8px
}

.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-border .pq-tabs-1 .nav-tabs {
    border-bottom: 1px solid var(--grey-color)
}

.pq-tabs-border .pq-tabs-1 .nav-tabs .nav-item {
    display: inline-flex;
    align-items: center;
    background: transparent;
    border-radius: 0;
    color: var(--dark-color)
}

.pq-tabs-1 .nav-tabs .nav-item.active {
    border-bottom: 1px solid var(--primary-color)
}

.pq-tabs-border .pq-tabs-1 .nav-tabs .nav-item i {
    font-size: 44px;
    line-height: 52px
}

.pq-tabs-border .pq-tabs-1 .nav-tabs .nav-item span {
    text-align: left;
    margin-left: 15px
}

.pq-tabs-border .pq-tabs-1 .nav-tabs .nav-item.active,
.pq-tabs-border .pq-tabs-1 .nav-tabs .nav-item.active span {
    color: var(--dark-color)
}

.pq-tabs-border .pq-tabs-1 .nav-tabs .nav-item.active {
    color: var(--primary-color)
}

.pq-tabs-border .pq-tabs-1 .nav-tabs .nav-item:after {
    display: none
}

.pq-pricing-plan.pq-style-1 {
    text-align: center;
    padding-bottom: 45px;
    -webkit-box-shadow: 0 0 30px 0 rgba(0, 20, 9, 0.1);
    -moz-box-shadow: 0 0 30px 0 rgba(0, 20, 9, 0.1);
    box-shadow: 0 0 30px 0 rgba(0, 20, 9, 0.1);
    border-radius: 3px
}

.pq-pricing-plan.pq-style-1 .pq-pricing-head {
    font-family: var(--title-fonts)
}

.pq-pricing-plan.pq-style-1 .pq-pricing-head .pq-title {
    font-size: 28px;
    line-height: 36px;
    font-weight: 600;
    color: var(--white-color);
    display: block;
    background: var(--primary-dark-color);
    padding: 45px 30px;
    padding-bottom: 90px;
    -webkit-border-top-left-radius: 3px;
    -webkit-border-top-right-radius: 3px;
    -moz-border-radius-topleft: 3px;
    -moz-border-radius-topright: 3px;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px
}

.pq-pricing-plan.pq-style-1 .pq-pricing-head .pq-service-media i {
    font-size: 48px;
    line-height: 110px;
    color: var(--primary-dark-color);
    display: inline-block;
    background: var(--white-color);
    width: 110px;
    height: 110px;
    border-radius: 900px;
    margin-top: -90px;
    border: 2px solid var(--grey-color)
}

.pq-pricing-plan.pq-style-1 .pq-pricing-head .price {
    margin: 30px 0 30px;
    position: relative;
    color: var(--dark-color);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    font-weight: 600
}

.pq-pricing-plan.pq-style-1 .pq-pricing-head .price .pq-amount {
    font-size: 64px;
    line-height: 72px
}

.pq-pricing-plan.pq-style-1 .pq-pricing-head .price .pq-price-dollar {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin: 0 5px;
    color: var(--dark-color)
}

.pq-pricing-plan.pq-style-1 .pq-pricing-head .price .price-month {
    font-size: 16px;
    line-height: 24px;
    text-transform: capitalize;
    font-weight: 400;
    color: var(--dark-color)
}

.pq-pricing-plan.pq-style-1 ul.pq-pricing-list {
    list-style: none;
    padding: 0
}

.pq-pricing-plan.pq-style-1 ul.pq-pricing-list li {
    text-transform: capitalize;
    line-height: 34px;
    margin: 0 0 10px
}

.pq-pricing-plan.pq-style-1 ul.pq-pricing-list li i {
    color: var(--primary-color);
    margin-right: 5px;
    font-size: 14px
}

.pq-pricing-plan.pq-style-1 ul.pq-pricing-list li.active i {
    color: #f00
}

.pq-pricing-plan.pq-style-1 ul.pq-pricing-list li:last-child {
    margin-bottom: 0
}

.pq-pricing-plan.pq-style-1 .pq-btn-container {
    margin: 30px 0 0;
    text-align: center
}

.pq-pricing-plan.pq-style-1.active .pq-pricing-head .pq-title {
    background: var(--primary-color)
}

.pq-pricing-plan.pq-style-1.active .pq-pricing-head .pq-service-media i {
    color: var(--primary-color)
}

.pq-accordion-block .pq-accordion-box {
    background: var(--white-color);
    margin-bottom: 10px;
    position: relative;
}

.pq-accordion-block .pq-accordion-box:last-child {
    margin-bottom: 10px;
}

.pq-accordion-block .pq-accordion-box .pq-ad-title {
    border-radius: 3px;
    background: var(--grey-color);
    border: 1px solid var(--grey-color);
    padding: 15px 30px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.pq-accordion-block .pq-accordion-box .pq-ad-title .ad-title-text {
    font-size: 16px;
    margin: 0;
}

.pq-accordion-block .pq-accordion-box .pq-ad-title i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 30px;
    color: var(--dark-color);
    font-size: 16px;
    transition: opacity 0.3s ease;
}

.pq-accordion-block .pq-accordion-box .pq-ad-title i.inactive {
    opacity: 0;
}

.pq-accordion-block .pq-accordion-box .pq-ad-title i.active {
    opacity: 1;
}

/* 展开状态样式 */
.pq-accordion-block .pq-accordion-box.pq-active .pq-ad-title {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 3px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.pq-accordion-block .pq-accordion-box.pq-active .pq-ad-title .ad-title-text {
    color: var(--white-color);
}

/* 箭头图标展开状态 */
.pq-accordion-block .pq-accordion-box.pq-active .pq-ad-title i.active {
    opacity: 0;
}

.pq-accordion-block .pq-accordion-box.pq-active .pq-ad-title i.inactive {
    opacity: 1;
    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;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    display: none; /* 默认隐藏 */
    transition: all 0.3s ease;
}

.pq-accordion-block .pq-accordion-box.pq-active .pq-accordion-details {
    display: block; /* 展开时显示 */
}

.pq-accordion-block .pq-accordion-box .pq-accordion-details p {
    margin-bottom: 0;
}

/* 边框样式 */
.pq-accordion-border .pq-accordion-block .pq-accordion-box .pq-ad-title {
    background: transparent;
    border: 1px solid #eee;
}

.pq-accordion-border .pq-accordion-block .pq-accordion-box.pq-active .pq-ad-title .ad-title-text {
    color: var(--primary-color);
}

.pq-accordion-border .pq-accordion-block .pq-accordion-box.pq-active .pq-ad-title i {
    color: var(--primary-color);
}

.pq-bg-img-2:before {
    content: "";
    position: absolute;
    top: -30px;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 100%;
    opacity: 1;
    background: url(../image/bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: auto
}

.pq-process-pt-130.pq-bg-img-2:before {
    top: 0
}

.pq-process-step.pq-process-style-2 {
    padding: 30px;
    position: relative
}

.pq-process-step.pq-process-style-2 .pq-process-media {
    position: relative;
    margin-bottom: 30px;
    display: inline-block
}

.pq-process-step.pq-process-style-2 .pq-process-media .pq-process-img img {
    border-radius: 100%;
    width: 200px
}

.pq-process-step.pq-process-style-2 .pq-process-media .pq-process-number {
    position: absolute;
    top: 20px;
    left: -5px;
    border-radius: 100%;
    background: var(--primary-color);
    font-size: 16px;
    color: var(--white-color);
    height: 48px;
    width: 48px;
    text-align: center;
    line-height: 48px;
    font-weight: 600
}

.pq-process-step.pq-process-style-2 .pq-process-description p {
    margin-bottom: 0
}

.pq-process-step.pq-style-3 {
    text-align: center;
    position: relative;
    margin-bottom: 20px
}

.pq-process-step.pq-style-3 .pq-step-number {
    width: 48px;
    height: 48px;
    line-height: 48px;
    background: var(--primary-color);
    border-radius: 50%;
    color: var(--white-color);
    display: inline-block
}

.pq-process-step.pq-style-3 .pq-step-number:before {
    content: '';
    display: inline-block;
    border: 2px dashed #fff;
    width: 100%;
    top: 18%;
    left: 58%;
    position: absolute
}

.pq-process-step.pq-style-3 .pq-process-info {
    margin-top: 15px
}

.pq-process-step.pq-style-3 .pq-process-info .pq-process-title {
    color: var(--white-color);
    font-family: var(--title-fonts);
    font-weight: 600
}

.pq-before-border .pq-process-step.pq-style-3 .pq-step-number:before {
    border: 0
}

.pt-navigation-tab .nav-tabs {
    margin: 0 0 45px 0;
    float: left;
    padding: 0;
    display: inline-block;
    width: 100%;
    text-align: center;
    border: 0
}

.pt-navigation-tab .nav-tabs li {
    display: inline-block;
    padding: .25rem .5rem .25rem 0
}

.pt-navigation-tab .nav-tabs li {
    padding: 0;
    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
}

.pt-navigation-tab .nav-tabs li a.active {
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: unset
}

.pt-navigation-tab .nav-tabs li a:hover {
    background: var(--primary-color);
    columns: var(--white-color);
    border-radius: unset;
    color: var(--white-color)
}

.pt-navigation-tab .nav-tabs li a {
    display: inline-block;
    padding: 10px 30px;
    letter-spacing: 1px;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--dark-color);
    border: 0;
    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
}

.pt-navigation-tab .nav-tabs li a.active:hover {
    color: var(--white-color)
}

.navigation-shortcode-table tr.navigation-shortcode-row th {
    background-color: var(--grey-color);
    border: 1px solid var(--white-color);
    text-align: center;
    color: var(--secondary-color);
    padding: .25rem 1rem;
    overflow-wrap: normal;
    -webkit-hyphens: none;
    -ms-hyphens: none;
    hyphens: none
}

.navigation-shortcode-table tr.navigation-shortcode-row th {
    text-align: center;
    font-family: var(--title-fonts);
    font-weight: 400;
    padding: 15px 0;
    padding: 15px !important;
    text-align: center;
    border: 1px solid rgb(255 255 255 / .2);
    background: var(--white-color);
    text-transform: uppercase;
    color: var(--dark-color);
    background: #f0f0f0
}

.navigation-shortcode-table tbody td {
    background: var(--white-color)
}

.navigation-shortcode-table.navigation-theme-mode tbody td.event {
    padding: 15px !important;
    text-align: center;
    border: 1px solid rgb(189 182 182 / 20%);
    background: var(--grey-color);
    color: var(--dark-color)
}

.navigation-shortcode-wrapper .navigation-shortcode-table tbody td.navigation-shortcode-hours {
    padding: 0 1rem !important;
    white-space: nowrap;
    width: 1%;
    vertical-align: middle
}

.navigation-shortcode-wrapper .navigation-shortcode-table.navigation-theme-mode tbody td.event {
    background-color: var(--grey-color)
}

.navigation-shortcode-table tbody td {
    position: relative;
    border: 1px solid rgb(189 182 182 / 20%);
    padding: 15px;
    line-height: normal;
    -webkit-box-sizing: initial;
    box-sizing: initial
}

.menu-navigation-tabs td {
    vertical-align: middle
}

.navigation-shortcode-table tbody .navigation-event-container .event-title {
    display: inline-block;
    margin: .5rem .25rem .25rem;
    text-decoration: none;
    font-size: 1.1em
}

.navigation-shortcode-table tbody .navigation-event-container .event-title {
    letter-spacing: 0;
    font-family: var(--title-fonts);
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    margin: 0;
    font-size: 18px;
    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-inner-event-content {
    color: var(--secondary-color)
}

.navigation-shortcode-table tbody .navigation-event-container .event-title1 {
    color: var(--white-color)
}

.navigation-shortcode-table tbody .navigation-event-container .event-description,
.navigation-shortcode-table tbody .navigation-event-container .event-subtitle {
    font-size: 14px;
    margin: 5px 0 0;
    text-transform: uppercase
}

.navigation-shortcode-table.navigation-theme-mode tbody td.event:hover .navigation-event-container .event-title {
    color: var(--white-color)
}

.navigation-shortcode-table.navigation-theme-mode tbody td.event:hover {
    background: var(--primary-color);
    color: var(--white-color)
}

.navigation-shortcode-table.navigation-theme-mode tbody td.event:hover .navigation-inner-event-content {
    color: var(--white-color)
}

.timeslots-title {
    margin: 30px 0 0
}

.timeslot {
    border-bottom: 1px solid var(--grey-color);
    padding-bottom: 15px;
    margin: 15px 0 0
}

.timeslot .timeslot-user img {
    margin-right: 15px
}

.timeslot .timeslot-link {
    text-transform: uppercase;
    font-size: 16px;
    font-family: var(--title-fonts);
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 24px
}

.timeslot time {
    font-style: italic;
    font-size: 14px
}

.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(--white-color);
    font-size: 28px;
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    display: inline-block;
    background-color: var(--primary-color);
    border-radius: 90%;
    -webkit-animation: ripple 1s linear infinite;
    animation: ripple 1s linear infinite
}

.pq-video-icon a.primary {
    -webkit-animation: rippleprimary 1s linear infinite;
    animation: rippleprimary 1s linear infinite
}

.pq-pop-video {
    margin: -320px 0;
    z-index: 1
}

.pq-popup-video-block .pq-video-icon {
    text-align: center;
    position: absolute;
    top: 43%;
    left: 46.5%
}

.pq-popvideo-img {
    position: relative;
    width: 100%
}

@-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)
    }
}

@-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)
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-100%, 0, 0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.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: 600;
    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);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px
}

.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-avatar img {
    width: 70px
}

.commentlist .pq-comment-box {
    position: relative;
    display: inline-block;
    width: 100%
}

.commentlist .pq-comment-box .title {
    font-size: 20px;
    line-height: 28px
}

.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;
    letter-spacing: .04em;
    font-family: var(--title-fonts);
    text-transform: uppercase
}

.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
}

.pq-contact-box {
    margin: 0;
    padding: 60px 30px 60px 30px;
    background-color: #F4F6F9;
    border-radius: 3px 3px 3px 3px
}

.pq-contact-box-icon {
    text-align: center
}

.pq-contact-box-icon i {
    width: 80px;
    line-height: 80px;
    text-align: center;
    font-size: 40px;
    color: var(--white-color);
    display: inline-block;
    border-radius: 3px;
    height: 80px;
    background: var(--primary-color)
}

.pq-contact-box-info {
    text-align: center;
    margin-top: 30px
}

.pq-contact-box-description {
    margin-bottom: 0
}

input.pq-bg-transparent {
    background: rgb(255 255 255 / 14%);
    border: transparent;
    color: var(--white-color)
}

input.pq-bg-transparent::placeholder {
    color: var(--white-color)
}

[type="submit"].pq-bg-transparent {
    background: var(--white-color);
    color: var(--dark-color);
    margin-bottom: 0
}

[type="submit"].pq-bg-transparent:hover {
    background: var(--dark-color);
    color: var(--white-color)
}

.pq-form {
    margin: -375px 0;
    z-index: 1
}

.pq-form-img-overflow {
    margin-top: -100px;
    padding: 0 30px
}

.pq-form-box {
    width: 70%;
    padding: 60px 45px;
    margin: 0 auto;
    box-shadow: 0 0 30px 0 rgb(21 21 21 / 11%);
    text-align: center;
    margin-bottom: -60px;
    background: var(--white-color);
    position: relative;
    z-index: 1
}

.pq-form3-img {
    width: 75%
}

.pq-formbox {
    box-shadow: 0 0 30px 0 rgb(21 21 21 / 11%);
    background: var(--white-color)
}

.pq-p-45 {
    padding: 45px 60px 0 45px
}

.pq-form-location {
    position: relative
}

.pq-location-box {
    position: absolute;
    right: 0;
    background: var(--grey-color);
    padding: 30px;
    width: 45%;
    text-align: center
}

.pq-location-box1 {
    top: 17%
}

.pq-location-box2 {
    bottom: 10%
}

#rev_slider_24_1_wrapper .metis.tparrows,
#rev_slider_25_1_wrapper .metis.tparrows,
#rev_slider_29_1_wrapper .metis.tparrows {
    background: var(--white-color);
    padding: 10px;
    transition: all .3s;
    -webkit-transition: all .3s;
    width: 60px;
    height: 60px;
    box-sizing: border-box;
    border-radius: 30px;
}

#rev_slider_24_1_wrapper .metis.tparrows.rs-touchhover,
#rev_slider_25_1_wrapper .metis.tparrows.rs-touchhover,
#rev_slider_29_1_wrapper .metis.tparrows.rs-touchhover {
    background: rgba(255, 255, 255, 0.75)
}

#rev_slider_24_1_wrapper .metis.tparrows:before,
#rev_slider_25_1_wrapper .metis.tparrows:before,
#rev_slider_29_1_wrapper .metis.tparrows:before {
    color: #000;
    transition: all .3s;
    -webkit-transition: all .3s
}

#rev_slider_24_1_wrapper .metis.tparrows.rs-touchhover:before #rev_slider_25_1_wrapper .metis.tparrows.rs-touchhover:before #rev_slider_29_1_wrapper .metis.tparrows.rs-touchhover:before {
    transform: scale(1.5)
}

#rev_slider_24_1_wrapper .hesperiden.tp-bullets:before,
#rev_slider_25_1_wrapper .hesperiden.tp-bullets:before,
#rev_slider_29_1_wrapper .hesperiden.tp-bullets:before {
    content: " ";
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent;
    padding: 10px;
    margin-left: -10px;
    margin-top: -10px;
    box-sizing: content-box;
    border-radius: 8px
}

#rev_slider_24_1_wrapper .hesperiden .tp-bullet,
#rev_slider_25_1_wrapper .hesperiden .tp-bullet,
#rev_slider_29_1_wrapper .hesperiden .tp-bullet {
    width: 12px;
    height: 12px;
    position: absolute;
    background: #14457b;
    background: -moz-linear-gradient(top, #14457b 0, #14457b 100%);
    background: -webkit-linear-gradient(top, #14457b 0, #14457b 100%);
    background: -o-linear-gradient(top, #14457b 0, #14457b 100%);
    background: -ms-linear-gradient(top, #14457b 0, #14457b 100%);
    background: linear-gradient(to bottom, #14457b 0, #14457b 100%);
    filter: progid:dximagetransform.microsoft.gradient(startcolorstr='#14457b', endcolorstr='#14457b', gradienttype=0);
    border: 3px solid #e5e5e5;
    border-radius: 50%;
    cursor: pointer;
    box-sizing: content-box
}

#rev_slider_24_1_wrapper .hesperiden .tp-bullet.rs-touchhover,
#rev_slider_24_1_wrapper .hesperiden .tp-bullet.selected,
#rev_slider_25_1_wrapper .hesperiden .tp-bullet.rs-touchhover,
#rev_slider_25_1_wrapper .hesperiden .tp-bullet.selected,
#rev_slider_29_1_wrapper .hesperiden .tp-bullet.rs-touchhover,
#rev_slider_29_1_wrapper .hesperiden .tp-bullet.selected/ {
    background: #2490eb
}

.pb-dot-mt-0 .owl-carousel .owl-dots {
    margin-top: 0
}

.pg-border-bottom {
    border-bottom: 1px solid #F1F1F1
}

.pq-counter-60 {
    padding: 60px 0
}

.pq-90 {
    padding: 90px 0
}

.pq-pb-50 {
    padding-bottom: 50px
}

.pq-pb-100 {
    padding-bottom: 100px
}

.pq-pb-210 {
    padding-bottom: 210px
}

.pq-pb-180 {
    padding-bottom: 180px
}

.pq-pb-140 {
    padding-bottom: 140px
}

.pq-pt-130 {
    padding-top: 130px
}

.pq-mt-60 {
    margin-top: -60px;
    z-index: 1
}

.pq-xl-border-right {
    border-right: 1px solid #F1F1F1
}

.pq-xl-border-bottom {
    border-bottom: 1px solid #F1F1F1
}

.pq-mb-130 {
    margin-bottom: -130px
}

.pq-process-pt-130 {
    padding-top: 260px
}

.pq-team-pb {
    padding-bottom: 370px
}

.pq-about-info-box {
    display: flex
}

.pq-about-info-box-icon {
    margin-right: 30px
}

.pq-about-info-box-icon i {
    font-size: 42px;
    line-height: 50px;
    color: var(--white-color);
    background: var(--primary-color);
    display: inline-block;
    padding: 15px 20px;
    border-radius: 50%
}

.pq-homeservice {
    margin-bottom: -240px
}

.pq-home2-about {
    padding-top: 370px;
    padding-bottom: 130px
}

.pq-skill-pb-130 {
    padding-bottom: 130px
}

.pq-pt-40 {
    padding-top: 100px
}

.contact-us .pq-button:hover,
.contact-us .pq-button:focus {
    color: var(--white-color);
    background: var(--dark-color)
}

.pq-title {
    color: var(--white-color);
    font-family: var(--title-fonts);
    font-size: 48px;
    font-weight: 600;
    line-height: 56px
}

.pq-skill {
    padding: 90px 90px 90px 15px
}

.pq-skill-img {
    max-width: 945px;
    position: absolute;
    top: 40px;
    border-radius: 3px;
    z-index: 1
}

.about-us-img.ps-5 {
    position: relative;
    text-align: right
}

.pq-image1 {
    width: 80%;
    text-align: right
}

.pq-image2 {
    position: absolute;
    width: 50%;
    top: 45%;
    left: 0
}

.pq-icon-box-3 .pq-icon-box-icon-3 i {
    font-size: 30px;
    margin-right: 18px;
    color: var(--dark-color)
}

.pq-icon-box-3 .pq-icon-box-content-3 .pq-icon-box-title-3 {
    font-size: 18px;
    line-height: 26px;
    font-style: normal;
    color: #777
}

.pq-signimg {
    width: 100px
}

.pq-process-pb {
    padding-bottom: 350px
}

.pq-mt-130 {
    margin-top: -130px
}

.pq-pb-130 {
    padding-bottom: 260px
}

.pq-pb-counter-130 {
    padding-bottom: 190px
}

.pq-location-icon {
    margin-bottom: 5px
}

.pq-location-icon i,
.pq-info-box-icon i {
    font-size: 50px;
    line-height: 58px;
    color: var(--primary-color)
}

.pt-sm-line {
    border-bottom: 1px solid var(--grey-color)
}

.m-130 {
    margin: 130px 0
}


/* 方案四：最简美化 */
.timeline {
    max-width: 700px;
    margin: 40px auto;
    padding: 20px;
}

.timeline h3 {
    margin: 30px 0 8px;
    padding: 6px 20px;
    background: #17c0f2;
    color: white;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 3px 8px rgba(23, 192, 242, 0.3);
}

.timeline p {
    margin: 0 0 20px;
    padding: 18px 20px;
    background: #f4f6f9;
    border-radius: 8px;
    border: 1px solid #e8edf2;
    line-height: 1.6;
    color: #333;
    position: relative;
}

.timeline p::before {
    content: '✓';
    position: absolute;
    left: -10px;
    top: 21px;
    width: 20px;
    height: 20px;
    background: #17c0f2;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* 添加间隔线 */
.timeline h3:not(:first-child) {
    margin-top: 40px;
    position: relative;
}

.timeline h3:not(:first-child)::before {
    content: '';
    position: absolute;
    top: -42px;
    left: 15px;
    width: 2px;
    height: 30px;
    background: #ddd;
}