/*
Template: Confer - Conference & Events HTML Template
Author: peacefulqode.co.in
Version: 1.0
Design and Developed by: Peacefulqode
*/

/*================================================
[  Table of contents  ]
================================================
==> Moz Selection
==> General
==> Loading
==> Back to Top
==> Button Core
==> Section Title
==> Section
==> counter 
==> Timer
==> Team
==> Pricing plan 
==> Testimonial 
==> Client
==> Img-Corousel
==> Blog
==> blog-grid page
==? Blog Sidebar
==> blog details page  
==> Portfoliobox
==> Event box
==> Hero section
==> Service Box
==> Contact Form
==> Header
==> Border svg
==> Footer
==> OWL Carousel
==> Testimonial
==> Accordian
==> Stander / Masonry 
==> Isotope Portfolio
==> Progress Bar
==> Error Page
==> About US page
==> Speakers Details  Page
==> Event grid page
==> Gallery page
==> Event details page
==> Contact us page 
==> Project details page
==> Custom Class
======================================
[ End table content ]
======================================*/
/*================================================
Fonts
================================================*/
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Oswald:wght@200..700&display=swap");
/*================================================
Moz Selectio
================================================*/
:root {
  --primary-color: linear-gradient(to right, #f08000, #e72d17);
  --primary-gradient: linear-gradient(to right, #f08000, #243879);

  --dark-color: #1b1b1b;
  --secondary-color: #666666;
  --grey-color: #f4f4f4;
  --white-color: #ffffff;
  --body-fonts: "DM Sans", sans-serif;
  --title-fonts: "Oswald", sans-serif;
  --font-weight: 500;
  --transition: all 0.5s ease-in-out;
  --border: 1px dashed var(--dark-color);
  --light-white: rgba(255, 255, 255, 0.1);
  --light-black: rgba(0, 0, 0, 0.1);
  --border-light-black: rgba(27, 27, 27, 0.3);
  --star-color: #ffc700;
}


/*================================================
General
================================================*/

body {
  background: var(--white-color);
  font-family: var(--body-fonts);
  font-size: 18px;
  font-style: normal;
  font-weight: normal;
  line-height: 1.8;
  color: var(--secondary-color);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--title-fonts);
  color: var(--dark-color);
  font-style: normal;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 40px;
  font-style: normal;
  line-height: 48px;
}

h2 {
  font-size: 36px;
  font-style: normal;
  line-height: 44px;
}

h3 {
  font-size: 32px;
  font-style: normal;
  line-height: 40px;
}

h4 {
  font-size: 28px;
  font-style: normal;
  line-height: 36px;
}

h5 {
  font-size: 24px;
  font-style: normal;
  line-height: 32px;
}

h6 {
  font-size: 20px;
  font-style: normal;
  line-height: 28px;
}

.color-blue {
    background-image: linear-gradient(to right,rgb(3,204,255),rgb(53 17 112));
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;}

/*===== Container =====*/
.container {
  max-width: 1400px;
  position: relative;
}

section {
  padding: 130px 0;
  overflow: hidden;
}
a,
.button {
  color: var(--primary-color);
  outline: none !important;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  text-decoration: none;
}

a:focus,
a:hover {
  color: var(--primary-color);
  outline: none;
  text-decoration: none !important;
}

p {
  margin-bottom: 30px;
}

img {
  width: 100%;
  height: auto;
  border-radius: 3px;
  transition: var(--transition);
}

pre {
  background: var(--white-color);
  padding: 15px;
  border: 1px solid var(--grey-color);
}

hr {
  margin: 0;
  padding: 0px;
  border-bottom: 1px solid #e0e0e0;
  border-top: 0px;
}

b,
strong {
  font-weight: 600;
}

/*============  Lists (Nested)=================*/
ol,
ul {
  padding-left: 25px;
  margin-bottom: 1em;
}

ol li {
  list-style: decimal;
}

ol ol {
  padding-left: 25px;
}

ul li {
  list-style: none;
}

/*============Definition Lists=================*/
dl dd {
  margin-bottom: 15px;
}

dl dd:last-child {
  margin-bottom: 0px;
}

/*============ Table =================*/
table {
  width: 100%;
  border-collapse: collapse;
}

table td,
table th {
  border: 1px solid var(--light-black);
  padding: 30px 15px;
  text-align: start;
  border-collapse: separate;
}

/*============ Input Textarea =================*/
input,
textarea,
input.form-control {
  background: var(--grey-color);
  border: 1px solid var(--grey-color);
  color: var(--dark-color);
  margin-bottom: 30px;
  width: 100%;
  float: left;
  font-size: 16px;
  font-weight: 400;
  padding: 0 15px;
  height: 54px;
  line-height: 54px;
  outline: none;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  border-radius: 3px;
}

input::placeholder {
  color: var(--dark-color);
}

input:focus,
input:hover,
textarea:focus,
textarea:hover,
.form-control:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: none;
}

input[type="radio"],
input[type="checkbox"] {
  width: auto;
  height: auto;
  float: none;
  margin-right: 5px;
}

textarea {
  margin-bottom: 30px;
  height: 150px;
  border-radius: 3px;
  background: var(--grey-color);
  border: 1px solid var(--grey-color);
  color: var(--dark-color);
  width: 100%;
  float: left;
  padding: 10px 15px;
  outline: none;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}

textarea::placeholder {
  color: var(--dark-color);
}

/*============  Select ==============*/
select,
select.form-control {
  border: 1px solid var(--grey-color);
  color: var(--dark-color);
  width: 100%;
  float: left;
  padding: 0 30px 0 15px;
  height: 54px;
  line-height: 54px;
  outline: none;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill=!string!height=!string!viewBox=!string!width=!string!xmlns=!string!><path d=!string!/><path d=!string!fill=!string!/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px bottom 50%;
  background-size: 20px 20px;
  border-radius: 3px;
}

/*================================================
Loading
================================================*/
#pq-loading {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  display: flex;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: var(--white-color);
}
#pq-loading img {
  height: 60px;
}
/*================================================
Back to Top
================================================*/
#back-to-top .top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  margin: 0px;
  background: var(--primary-color);
  z-index: 99;
  font-size: 18px;
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 45px;
  border-radius: 90px;
  -moz-border-radius: 90px;
  -webkit-border-radius: 90px;
  overflow: hidden;
  color: var(--dark-color);
}
#back-to-top .top::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transition: var(--transition);
  border: 2px dashed var(--secondary-color);
}
#back-to-top .top:hover::before {
  --c: var(--dark-color);
}
#back-to-top .top:hover {
  background: var(--primary-color);
  color: var(--dark-color);
  transform: scale(1.1);
}
#back-to-top .top i {
  display: inline-block;
}
#back-to-top .top:hover i {
  animation: back-to-top-animation 0.4s linear;
}
/*================================================
Button Core
================================================*/
[type="button"],
[type="reset"],
[type="submit"] {
  padding: 12px 45px;
  font-family: var(--title-fonts);
  font-size: 18px;
  background: var(--primary-color);
  color: var(--dark-color);
  text-transform: uppercase;
  display: inline-block;
  border: none;
  width: auto;
  height: auto;
  line-height: 2;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}
[type="button"]:hover,
[type="reset"]:hover,
[type="submit"]:hover {
  color: var(--white-color) !important;
}

/*===== Button =====*/
.pq-button {
  position: relative;
  width: auto;
  background: var(--primary-color);
  text-transform: uppercase;
  color: var(--white-color);
  font-family: var(--title-fonts);
  font-size: 18px;
  padding: 12px 45px;
  line-height: 2;
  vertical-align: middle;linear-gradient(to right, #f08000, #243879);
  border: none;
  display: inline-block;
  overflow: hidden;
  transition: var(--transition);
  z-index: 9;
  border-radius:30px;
  
}

.pq-button span {
  z-index: 9;
  position: relative;
}

.pq-button:hover,
.pq-button:focus {
  color: var(--white-color);
  background: linear-gradient(to right,rgb(3,204,255),rgb(53 17 112));
}

/*===== Button link =====*/
.pq-button.pq-button-link {
  padding: 0;
  background: transparent;
  color: var(--dark-color);
  position: relative;
}

.pq-button.pq-button-link:hover {
  color: var(--primary-color);
}

.pq-button.pq-button-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: var(--dark-color);
  width: 0;
  height: 2px;
  transform: translateY(12px);
  transition: var(--transition);
}

.pq-button.pq-button-link:hover::before {
  width: 100%;
  left: 0;
}

/*===== Button outline =====*/
.pq-button.pq-btn-outline {
  background: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.pq-button.pq-btn-outline:hover {
  color: var(--dark-color);
  border: 1px solid var(--dark-color);
}

/*===== Button active =====*/
.pq-btn-container.pq-active .pq-button.pq-button-flat {
  background-color: var(--white-color);
  color: var(--dark-color);
}

.pq-btn-container .pq-button.pq-button-flat:not(.svg-animation) .svg path {
  stroke-dashoffset: 0 !important;
}

.pq-btn-container.pq-active .pq-button.pq-button-flat:hover {
  background-color: var(--dark-color);
  color: var(--white-color);
}

.pq-button.pq-button-flat:hover .svg path,
.pq-btn-container.pq-active .pq-button.pq-button-flat:hover .svg path {
  stroke: var(--white-color);
}

.pq-bg-dark .pq-button.pq-button-flat:hover .svg path {
  stroke: var(--dark-color);
}
/*================================================
Section Title
================================================*/
.pq-section-title.text-center {
  padding: 0 15em;
  margin-bottom: 60px;
}
.pq-section-title .pq-title-heading {
  font-size: 56px;
  line-height: 64px;
  z-index: 9;
  color: var(--dark-color);
  padding: 0;
  margin: 0 0 10px;
  position: relative;
  display: block;
}
.pq-section-title .pq-title-heading .pq-title-last-word {
  position: relative;
  display: inline-block;
  padding: 0 5px;
}
.pq-section-title .pq-title-heading .pq-title-last-word::before,
.pq-section-title .pq-title-heading .pq-title-last-word::after,
.pq-section-title .pq-title-heading .pq-title-last-word .pq-svg-dot::after,
.pq-section-title .pq-title-heading .pq-title-last-word .pq-svg-dot::before {
  content: "";
  position: absolute;
  background: var(--light-black);
  height: 10px;
  width: 10px;
  border-radius: 100%;
  z-index: 1;
}
.pq-section-title .pq-title-heading .pq-title-last-word::before {
  right: -5px;
  bottom: -5px;
}
.pq-section-title .pq-title-heading .pq-title-last-word::after {
  left: -5px;
  top: -5px;
}
.pq-section-title .pq-title-heading .pq-title-last-word .pq-svg-dot::after {
  bottom: -5px;
  left: -5px;
}
.pq-section-title .pq-title-heading .pq-title-last-word .pq-svg-dot::before {
  top: -5px;
  right: -5px;
}
/* +++++ dark section +++++ */
.pq-bg-dark .pq-section-title .pq-title-heading .pq-title-last-word::after,
.pq-bg-dark
  .pq-section-title
  .pq-title-heading
  .pq-title-last-word
  .pq-svg-dot::after,
.pq-bg-dark
  .pq-section-title
  .pq-title-heading
  .pq-title-last-word
  .pq-svg-dot::before,
.pq-bg-dark .pq-section-title .pq-title-heading .pq-title-last-word::before {
  background-color: var(--white-color);
}
.pq-section-title .pq-title-heading span .svg {
  position: absolute;
  top: 0%;
  left: 0%;
  background: linear-gradient(to right,rgb(3,204,255),rgb(53 17 112));;
  height: 100%;
  width: 100%;
  z-index: -1;
  transition: opacity 200ms linear;
  background: linear-gradient(to right,rgb(3,204,255),rgb(53 17 112));;
}
.pq-section-title .pq-title-heading span svg path {
  stroke-dasharray: 8px, 12px;
  stroke-width: 4px;
  stroke: var(--dark-color);
}
.pq-section-title .pq-title .pq-title-description {
  margin-bottom: 0;
}
/*============ section-title Responsive ============*/

@media (max-width: 1023px) {
  .pq-section-title .pq-title-heading {
    font-size: 44px;
    line-height: 52px;
  }
  .pq-section-title {
    padding: 0;
  }
  .pq-section-title.pq-section-title.text-center {
    padding: 0 1em;
  }
}

@media (max-width: 767px) {
  .pq-section-title .pq-title-heading {
    font-size: 42px;
    line-height: 50px;
  }
  .pq-section-title.pq-section-title.text-center {
    padding: 0;
  }
}

@media (max-width: 479px) {
  .pq-section-title .pq-title-heading {
    font-size: 32px;
    line-height: 40px;
  }
  .pq-section-title.pq-section-title.text-center {
    padding: 0;
    margin-bottom: 60px;
  }
}

/*================================================
section
================================================*/
.pq-section-gap {
  padding: 130px 0;
}
/*============ Section responsive ============*/

@media (max-width: 1279px) {
  section {
    padding: 90px 0;
  }
  .pq-section-gap {
    padding: 90px 0;
  }
}
@media (max-width: 1199px) {
  section {
    padding: 90px 10px;
    margin: 0;
  }
}
@media (max-width: 767px) {
  section {
    margin: 0 0;
    padding: 60px 10px;
  }
  .pq-section-gap {
    padding: 60px 0;
  }

  .pq-testimonial-2{
    margin: 0px 10px !important;
  }
}

/*================================================
counter-section
================================================*/
/* +++++ Counter page -1 +++++ */
.pq-counter-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
}
.pq-counter-box {
  text-align: center;
  position: relative;
  padding: 60px 75px;
}
.left-counter::before {
  content: "";
  position: absolute;
  height: 10px;
  width: 10px;
  border-radius: 100%;
  background: var(--dark-color);
  z-index: 1;
  top: -5px;
  left: -5px;
}
.left-counter::after {
  content: "";
  position: absolute;
  height: 10px;
  width: 10px;
  border-radius: 100%;
  background: var(--dark-color);
  z-index: 1;
  bottom: -5px;
  left: -5px;
}
.pq-counter-box span {
  font-family: var(--title-fonts);
  font-size: 70px;
  line-height: 78px;
  font-weight: 600;
  color: var(--dark-color);
}
.pq-counter-box div {
  letter-spacing: 2px;
  padding-top: 15px;
}
.mid-counter {
  background-color: var(--primary-color);
  color: var(--dark-color);
}
.right-counter .pq-svg-dot::before {
  content: "";
  position: absolute;
  height: 10px;
  width: 10px;
  border-radius: 100%;
  background: var(--dark-color);
  z-index: 1;
  bottom: -5px;
  right: -5px;
}
.right-counter .pq-svg-dot::after {
  content: "";
  position: absolute;
  height: 10px;
  width: 10px;
  border-radius: 100%;
  background: var(--dark-color);
  z-index: 1;
  top: -5px;
  right: -5px;
}

/*============ counter-section page-1  responsive ============*/

@media (max-width: 1499px) {
  .pq-counter-box {
    padding: 60px 45px;
  }
}
@media (max-width: 1279px) {
  .pq-counter-box {
    padding: 45px 30px;
  }
}
@media (max-width: 1099px) {
  .pq-counter-box {
    padding: 30px 30px;
  }
  .pq-counter-box span {
    font-size: 52px;
    line-height: 60px;
  }
}
@media (max-width: 979px) {
  .pq-counter-box {
    padding: 30px 0px;
  }
}
@media (max-width: 767px) {
  .pq-counter-wrapper {
    display: block;
  }
  .pq-counter-box {
    padding: 45px 30px;
    margin-bottom: 30px;
  }
  .pq-counter-box.right-counter {
    margin-bottom: 0;
  }
  .pq-counter-box.left-counter::after {
    display: none;
  }
  .pq-counter-box.left-counter::before {
    display: none;
  }
  .pq-counter-box.right-counter .pq-svg-dot::before {
    display: none;
  }
  .pq-counter-box.right-counter .pq-svg-dot::after {
    display: none;
  }
}
@media (max-width: 479px) {
  .pq-counter.pq-counter-style-1
    .pq-counter-info
    .pq-product-timer
    .pq-timer-container.pq-second::before {
    display: none;
  }
}

/* +++++ Counter page -3 +++++ */
.pq-talk-counter-section-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.pq-talk-counter {
  position: relative;
}
.pq-talk-counter .pq-counter {
  position: relative;
  background-color: var(--white-color);
}
.pq-counter.pq-style-2 {
  padding: 60px 15px;
  text-align: center !important;
}
.pq-talk-counter .pq-counter-wrapper {
  display: flex;
  gap: 30px;
}
.pq-talk-counter .pq-counter-wrapper .pq-counter-left .pq-counter {
  margin-bottom: 30px;
}
.pq-talk-counter .pq-counter-wrapper .pq-counter-right .pq-counter {
  margin-bottom: 30px;
}
.pq-talk-counter .pq-counter-wrapper .pq-counter-right {
  margin-top: 90px;
}

.pq-counter.pq-style-2 .pq-counter-info .pq-count {
  font-size: 80px;
  line-height: 88px;
  color: var(--dark-color);
  font-weight: 600;
  font-family: var(--title-fonts);
  margin-bottom: 15px;
  display: inline-block;
  padding: 0 100px;
}
.pq-counter.pq-style-2 .pq-counter-info .pq-counter-title {
  line-height: 32px;
  color: var(--secondary-color);
  text-transform: uppercase;
}
.pq-counter.pq-style-2 .pq-counter-info .pq-counter-title {
  color: var(--dark-color);
  font-family: var(--body-fonts);
}
.pq-talk-counter .pq-counter.pq-counter-active {
  background-color: var(--primary-color);
}
.pq-talk-counter .pq-counter.pq-style-2.pq-counter-active .pq-counter-title {
  color: var(--dark-color);
}
.pq-talk-counter .pq-counter.pq-counter .pq-counter-title {
  color: var(--secondary-color);
}
.pq-counter.pq-style-2:not(.svg-animation) .svg path {
  stroke-dashoffset: 0 !important;
}

.pq-counter-page-3
  .pq-designer-info-box
  .pq-designer-info-box-detail
  .info-box-list
  ul {
  padding: 0;
  font-family: var(--body-fonts);
  margin-top: 15px;
  font-size: 18px;
  line-height: 26px;
}
.pq-counter-page-3
  .pq-designer-info-box
  .pq-designer-info-box-detail
  .info-box-list
  ul
  li {
  padding-bottom: 10px;
  display: flex;
  gap: 15px;
}
.pq-counter-page-3 .pq-designer-info-box .pq-designer-info-box-detail p {
  margin-bottom: 15px;
}
.pq-counter-page-3 {
  background-color: var(--grey-color);
}

.pq-counter-page-3 .pq-designer-info-box .pq-info-box-list-icon {
  padding-right: 5px;
}
.pq-counter-page-3 .pq-designer-info-box {
  padding-left: 45px;
}
.pq-counter-page-3 .pq-designer-info-box .pq-btn-container {
  margin-top: 45px;
}
.pq-counter-page-3 .pq-designer-info-box .pq-info-box-list-icon svg {
  height: 23px;
}
/*============ counter-section page-3  responsive ============*/
@media (max-width: 1399px) {
  .pq-counter-page-3 .pq-talk-counter .pq-counter-wrapper {
    padding-left: 90px;
  }
}
@media (max-width: 1365px) {
  .pq-counter-page-3 .pq-talk-counter .pq-counter-wrapper {
    padding-left: 45px;
  }
  .pq-counter-page-3 .pq-counter.pq-style-2 {
    padding: 45px 0px;
    text-align: center !important;
  }
}
@media (max-width: 1279px) {
  .pq-counter-page-3 {
    padding: 90px 0;
  }
  .pq-counter.pq-style-2 {
    padding: 45px 15px;
  }
  .pq-counter.pq-style-2 .pq-counter-info .pq-count {
    font-size: 72px;
    line-height: 80px;
  }
}
@media (max-width: 1099px) {
  .pq-counter-page-3 .pq-counter.pq-style-2 {
    padding: 30px 0px;
    text-align: center !important;
  }
  .pq-counter-page-3 .pq-talk-counter .pq-counter-wrapper {
    padding-left: 0px;
  }
  .pq-counter-page-3 .pq-counter.pq-style-2 .pq-counter-info .pq-count {
    font-size: 60px;
    line-height: 68px;
  }
}
@media (max-width: 1023px) {
  .pq-counter.pq-style-2 {
    padding: 60px 15px;
  }
  .pq-counter.pq-style-2 .pq-counter-info .pq-count {
    font-size: 60px;
    line-height: 68px;
  }
}
@media (max-width: 979px) {
  .pq-counter-page-3 .pq-talk-counter {
    padding: 0px;
    text-align: center;
  }
  .pq-talk-counter-section-wrapper {
    grid-template-columns: 1fr;
  }
  .pq-counter-page-3 .pq-talk-counter .pq-counter-wrapper {
    padding-left: 0px;
  }
  .pq-counter-page-3 .pq-counter.pq-style-2 {
    padding: 30px 0px;
    text-align: center !important;
  }
  .pq-counter-page-3 .pq-counter.pq-style-2 .pq-counter-info .pq-count {
    font-size: 60px;
    line-height: 68px;
  }
  .pq-counter-page-3 .pq-designer-info-box {
    padding-left: 0px;
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .pq-counter-page-3 .pq-talk-counter {
    padding: 0px;
  }
  .pq-counter-page-3 .pq-talk-counter .pq-counter-wrapper {
    display: inline-block;
  }
  .pq-counter-page-3 .pq-talk-counter .pq-counter-wrapper .pq-counter-right {
    margin-top: 0;
  }
  .pq-counter-page-3 {
    padding: 60px 0;
  }
  .pq-counter.pq-style-2 {
    padding: 45px 15px;
  }
  .pq-counter.pq-style-2 .pq-counter-info .pq-count {
    font-size: 60px;
    line-height: 68px;
    margin-bottom: 10px;
  }
}
@media (max-width: 479px) {
  .pq-counter-page-3 .pq-designer-info-box {
    margin-top: 0;
  }
  .pq-counter-page-3
    .pq-designer-info-box
    .pq-designer-info-box-detail
    .info-box-list
    ul
    li {
    gap: 10px;
  }
  .pq-counter-page-3 {
    margin: 0px;
    padding: 60px 0 60px 0;
  }
}
@media (max-width: 397px) {
  .pq-counter.pq-style-2 .pq-counter-info .pq-count {
    font-size: 50px;
    line-height: 58px;
    margin-bottom: 8px;
  }
}

/*================================================
Timer
================================================*/
/*============ Timer page-1  ============*/
.pq-deal-counter {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
}
.pq-counter.pq-counter-style-1 {
  display: inline-block;
  padding: 15px 45px 15px 20px;
  background-color: var(--white-color);
}
.pq-counter.pq-counter-style-1 .pq-counter-info .pq-timer-tilte {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 15px;
}
.pq-counter.pq-counter-style-1 .pq-counter-info .pq-product-timer {
  display: flex;
  gap: 45px;
}
.pq-counter.pq-counter-style-1
  .pq-counter-info
  .pq-product-timer
  .pq-timer-container {
  text-align: center;
  position: relative;
}
.pq-counter.pq-counter-style-1
  .pq-counter-info
  .pq-product-timer
  .pq-timer-container::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 100%;
  position: absolute;
  top: 37px;
  right: -27.5px;
  background-color: var(--primary-color);
}
.pq-counter.pq-counter-style-1
  .pq-counter-info
  .pq-product-timer
  .pq-timer-container:last-child::after {
  content: inherit;
}
.pq-counter.pq-counter-style-1
  .pq-counter-info
  .pq-product-timer
  .pq-timer-container::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 100%;
  position: absolute;
  top: 15px;
  right: -27.5px;
  background-color: var(--primary-color);
}
.pq-counter.pq-counter-style-1
  .pq-counter-info
  .pq-product-timer
  .pq-timer-container:last-child::before {
  content: inherit;
}
.pq-counter.pq-counter-style-1
  .pq-counter-info
  .pq-product-timer
  .pq-timer-container
  h3 {
  font-size: 40px;
  line-height: 48px;
}
.pq-counter.pq-counter-style-1
  .pq-counter-info
  .pq-product-timer
  .pq-timer-container
  span {
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
}

/*============ Timer page-1  responsive ============*/
@media (max-width: 767px) {
  .pq-hero-section .pq-counter.pq-counter-style-1 {
    background-color: var(--grey-color);
  }
  .pq-hero-section .pq-deal-counter {
    display: inline-block;
    background-color: var(--grey-color);
    position: relative;
  }
  .pq-counter.pq-counter-style-1
    .pq-counter-info
    .pq-product-timer
    .pq-timer-container
    h3 {
    font-size: 32px;
    line-height: 40px;
  }
}

/*============ Timer page-2 responsive  ============*/

/*============ Timer page-3  ============*/
.homepage2 .pq-banner-wrapper .pq-title-heading .pq-counter.pq-counter-style-1 {
  padding: 15px 15px 15px 0;
}
.homepage2 .pq-banner-wrapper .pq-banner-info-1 .pq-deal-counter-page-2 {
  margin-top: 60px;
}
/*============ Timer page-3  responsive ============*/
@media (max-width: 1279px) {
  .homepage2 .pq-banner-wrapper .pq-banner-info-1 .pq-deal-counter-page-2 {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .homepage2
    .pq-banner-wrapper
    .pq-title-heading
    .pq-counter.pq-counter-style-1 {
    margin-top: 30px;
  }
}
@media (max-width: 479px) {
  .pq-counter.pq-counter-style-1
    .pq-counter-info
    .pq-product-timer
    .pq-timer-container
    h3 {
    font-size: 24px;
    line-height: 32px;
  }
  .pq-counter.pq-counter-style-1
    .pq-counter-info
    .pq-product-timer
    .pq-timer-container.pq-second {
    display: none;
  }
  .homepage2
    .pq-banner-wrapper
    .pq-title-heading
    .pq-counter.pq-counter-style-1 {
    padding: 15px 15px 15px 0;
  }
}

/*================================================
Team
================================================*/

/*============ Team page-1  ============*/
.pq-team-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  justify-content: center;
  gap: 60px;
  margin-top: 30px;
  padding: 60px 0;
}
.pq-team-1 .svg path {
  stroke: var(--white-color);
  z-index: -1;
  display: none;
}
.pq-team-1 .pq-team-info {
  background-color: var(--primary-color);
  text-align: center;
  position: absolute;
  width: 285px;
  top: -12px;
  left: 30px;
  opacity: 0;
  transform: rotate(-5deg);
  z-index: 1;
  padding: 30px;
}
.pq-team-1 .pq-team-info span {
  color: var(--dark-color);
  font-size: 16px;
  font-weight: 500;
}
.pq-team-wrapper2 {
  display: flex;
  justify-content: center;
  gap: 60px;
}
.pq-profile-picture {
  z-index: +1;
  position: absolute;
  transform: rotate(-5deg);
  top: 0;
  left: 30px;
  display: block;
}
.pq-team-1 {
  position: relative;
  transform: rotate(-15deg);
  height: 300px;
  width: 300px;
  display: block;
  color: var(--dark-color);
}
.pq-team-1 img {
  transform: rotate(15deg);
  z-index: 1;
}
.pq-team-socials {
  margin-top: 105px;
  padding: 15px 0;
  font-weight: 600;
}
.pq-team-socials a {
  color: var(--dark-color);
  margin-right: 15px;
}
.pq-team-socials a:hover {
  color: var(--white-color);
}
.pq-team-1:hover .pq-profile-picture {
  display: none;
}
.pq-team-1:hover .pq-team-info {
  opacity: 1;
  transform: rotate(5deg);
}
.pq-team-1:hover {
  transform: rotate(-5deg);
  transition: all 0.5s ease-in-out;
}
.pq-team-1:hover.pq-team-1 .svg path {
  display: block;
}
/* team-2 */
.pq-team-2 .svg path {
  stroke: var(--white-color);
  z-index: -1;
  display: none;
}
.pq-team-2 .pq-team-info {
  background-color: var(--primary-color);
  text-align: center;
  position: absolute;
  width: 285px;
  top: -12px;
  left: 30px;
  opacity: 0;
  transform: rotate(5deg);
  z-index: 1;
  padding: 30px;
}
.pq-team-2 .pq-team-info span {
  color: var(--dark-color);
  font-weight: 500;
}
.pq-team-2 .pq-profile-picture {
  z-index: +1;
  position: absolute;
  transform: rotate(-5deg);
  top: 0;
  left: 30px;
  display: block;
}
.pq-team-2 {
  position: relative;
  transform: rotate(5deg);
  height: 300px;
  width: 300px;
  display: block;
}
.pq-team-2 img {
  transform: rotate(5deg);
  z-index: 1;
}
.pq-team-2:hover .pq-profile-picture {
  display: none;
}
.pq-team-2:hover .pq-team-info {
  opacity: 1;
  transform: rotate(5deg);
}
.pq-team-2:hover {
  transform: rotate(-5deg);
  transition: all 0.5s ease-in-out;
}
.pq-team-2:hover.pq-team-2 .svg path {
  display: block;
}
/*============ Team page-1  responsive ============*/
@media (max-width: 1499px) {
  .pq-team-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 15px;
    padding-left: 45px;
  }
  .pq-team-wrapper2 {
    gap: 60px;
  }
  .pq-team-1 {
    width: 250px;
    height: 250px;
  }
  .pq-team-1 .pq-team-info {
    width: 250px;
    height: 250px;
  }
  .pq-team-socials {
    margin-top: 75px;
  }
  .pq-team-2 {
    width: 250px;
    height: 250px;
  }
  .pq-team-2 .pq-team-info {
    width: 250px;
    height: 250px;
  }
}
@media (max-width: 1279px) {
  .pq-team-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 45px 0;
    row-gap: 30px;
  }
  .pq-team-wrapper2 {
    gap: 15px;
  }
  .pq-team-1 {
    width: 300px;
    height: 300px;
    margin: 0 auto;
  }
  .pq-team-1 .pq-team-info {
    width: 300px;
    height: 300px;
  }
  .pq-team-socials {
    margin-top: 130px;
  }
  .pq-team-socials a {
    margin-right: 5px;
  }
  .pq-team-2 {
    width: 300px;
    height: 300px;
    margin: 0 auto;
  }
  .pq-team-2 .pq-team-info {
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 1099px) {
  .pq-team-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    row-gap: 45px;
    padding: 45px 0;
  }
  .pq-team-wrapper2 {
    justify-content: flex-start;
    gap: 90px;
  }
  .pq-team-1 {
    width: 300px;
    height: 300px;
  }
  .pq-team-1 .pq-team-info {
    width: 300px;
    height: 300px;
  }
  .pq-team-socials {
    margin-top: 135px;
  }
  .pq-team-socials a {
    margin-right: 5px;
  }
  .pq-team-2 {
    width: 300px;
    height: 300px;
  }
  .pq-team-2 .pq-team-info {
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 979px) {
  .pq-team-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    row-gap: 45px;
    padding: 45px 0;
  }
  .pq-team-wrapper2 {
    display: flex;
    flex-direction: row;
    gap: 45px;
    padding-bottom: 90px;
  }
  .pq-team-1 {
    width: 300px;
    height: 300px;
  }
  .pq-team-1 .pq-team-info {
    width: 300px;
    height: 300px;
  }
  .pq-team-socials {
    margin-top: 115px;
  }
  .pq-team-socials a {
    margin-right: 5px;
  }
  .pq-team-2 {
    width: 300px;
    height: 300px;
  }
  .pq-team-2 .pq-team-info {
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 767px) {
  .pq-team-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 130px;
    padding-top: 0;
  }
  .pq-team-wrapper2 {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 80px;
    padding: 60px 0;
  }
  .pq-team-wrapper2 .pq-team-1,
  .pq-team-wrapper2 .pq-team-2 {
    margin: 30px auto;
  }
  .pq-team-1:hover.pq-team-1 .svg {
    display: none;
  }
  .pq-team-1 {
    width: 400px;
    height: 300px;
    transform: rotate(0);
  }
  .pq-team-1 .pq-team-info {
    width: 400px;
    height: 105px;
    opacity: 1;
    transform: rotate(0);
    position: absolute;
    bottom: -100px;
    top: auto;
    padding: 5px;
    left: 0;
  }
  .pq-team-1 .pq-team-info h5 {
    font-size: 22px;
  }
  .pq-team-1:hover .pq-team-info {
    transform: rotate(0);
  }
  .pq-team-1:hover {
    transform: rotate(0);
  }
  .pq-profile-picture {
    transform: rotate(0);
    position: static;
  }
  .pq-team-1 img {
    transform: rotate(0);
  }
  .pq-team-1:hover .pq-profile-picture {
    display: block;
  }
  .pq-team-socials {
    margin-top: 0;
    display: flex;
    justify-content: space-evenly;
    padding: 0;
  }
  .pq-team-2 {
    width: 400px;
    height: 300px;
    transform: rotate(0);
  }
  .pq-team-2 .pq-team-info {
    width: 400px;
    height: 105px;
    transform: rotate(0);
    opacity: 1;
    position: absolute;
    top: auto;
    left: 0;
    bottom: -100px;
    padding: 5px;
  }
  .pq-team-2:hover.pq-team-2 .svg {
    display: none;
  }
  .pq-team-2:hover .pq-profile-picture {
    display: block;
  }
  .pq-team-2 .pq-profile-picture {
    transform: rotate(0);
    position: static;
  }
  .pq-team-2 img {
    transform: rotate(0);
  }
  .pq-team-2:hover {
    transform: rotate(0);
  }
  .pq-team-2:hover .pq-team-info {
    transform: rotate(0);
  }
  .pq-team-2 .pq-team-info h5 {
    font-size: 22px;
  }
}
@media (max-width: 479px) {
  .pq-team-2 {
    width: 350px;
    height: 300px;
  }
  .pq-team-2 .pq-team-info {
    width: 350px;
    height: 105px;
  }
  .pq-team-2 .pq-team-info {
    bottom: -60px;
  }
  .pq-team-1 {
    width: 350px;
    height: 300px;
  }
  .pq-team-1 .pq-team-info {
    width: 350px;
    height: 105px;
  }
  .pq-team-1 .pq-team-info {
    bottom: -60px;
  }
  .pq-team-wrapper {
    row-gap: 90px;
  }
  .pq-team-wrapper2 {
    row-gap: 30px;
    padding: 15px 0;
  }
}
@media (max-width: 379px) {
  .pq-team-2 {
    width: 280px;
    height: 300px;
  }
  .pq-team-2 .pq-team-info {
    width: 280px;
    height: 105px;
  }
  .pq-team-2 .pq-team-info {
    bottom: -60px;
  }
  .pq-team-1 {
    width: 280px;
    height: 300px;
  }
  .pq-team-1 .pq-team-info {
    width: 280px;
    height: 105px;
  }
  .pq-team-1 .pq-team-info {
    bottom: -60px;
  }
  .pq-team-wrapper {
    row-gap: 90px;
  }
  .pq-team-wrapper2 {
    row-gap: 30px;
    padding: 15px 0;
  }
}
/*============ Team page-2  ============*/
.pq-team-2-list {
  display: flex;
  flex-wrap: wrap;
  gap: 75px 60px;
  justify-content: center;
  margin: 60px 0;
}
.pq-team.pq-style-2 {
  display: inline-block;
  position: relative;
}
.pq-team.pq-style-2 .pq-team-info {
  display: flex;
  gap: 15px;
  position: relative;
  align-items: baseline;
}
.pq-team.pq-style-2 .pq-team-info .pq-member-name {
  font-size: 40px;
  line-height: 48px;
  color: var(--white-color);
  text-transform: uppercase;
}
.pq-team.pq-style-2 .pq-team-info .pq-team-designation {
  font-size: 18px;
  line-height: 26px;
  color: var(--white-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.pq-team.pq-style-2 .pq-team-info .pq-team-media {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  max-width: 70%;
  min-width: 230px;
  transition: var(--transition);
  overflow: hidden;
  z-index: 9;
}
.pq-team.pq-style-2 .pq-team-info .pq-team-media img {
  max-width: 230px;
}
.pq-team.pq-style-2.pq-active .pq-team-info .pq-team-media {
  transform: translate(-50%, -50%) scale(1);
}
/*============ Team page-2  responsive ============*/
@media (max-width: 1099px) {
  .pq-team-2-list {
    gap: 70px 45px;
  }
  .pq-team.pq-style-2 .pq-team-info .pq-member-name {
    font-size: 32px;
    line-height: 40px;
  }
  .pq-team.pq-style-2 .pq-team-info .pq-team-media img {
    max-width: 200px;
  }
}
@media (max-width: 767px) {
  .pq-team-2-list {
    display: block;
    text-align: center;
    margin-bottom: 0;
  }
  .pq-team.pq-style-2 {
    display: block;
    margin-bottom: 45px;
  }
  .pq-team.pq-style-2 .pq-team-info {
    display: grid;
    gap: 0;
  }
  .pq-team.pq-style-2 .pq-team-info .pq-team-media {
    position: inherit;
    transform: translate(0%, 0%) scale(1);
    top: 0;
    left: 0;
    max-width: 100%;
    grid-row: 1;
    margin-bottom: 15px;
  }
  .pq-team.pq-style-2.pq-active .pq-team-info .pq-team-media {
    transform: translate(0%, 0%) scale(1);
  }
  .pq-team.pq-style-2 .pq-team-info .pq-team-media img {
    max-width: 80%;
    object-fit: cover;
  }
  .pq-team.pq-style-2 .pq-team-info .pq-member-name {
    margin-bottom: 5px;
  }
}
@media (max-width: 379px) {
  .pq-team.pq-style-2 .pq-team-info .pq-member-name {
    font-size: 28px;
    line-height: 36px;
  }
}
/*============ Team page-3  ============*/
.pq-insite-section-page-3 .pq-insite-team-wrapper .pq-team-box {
  display: grid;
  grid-template-columns: 1fr 2fr 2fr 1fr;
  gap: 45px;
  padding: 30px 0;
  border-bottom: 1px solid var(--light-white);
  align-items: center;
}
.pq-insite-section-page-3
  .pq-insite-team-wrapper
  .pq-team-box
  .pq-team-info
  .pq-member-name,
.pq-member-designation {
  color: var(--white-color);
  text-transform: uppercase;
}
.pq-insite-section-page-3
  .pq-insite-team-wrapper
  .pq-team-box
  .pq-team-info
  .pq-member-name {
  font-size: 35px;
  line-height: 43px;
}
.pq-insite-section-page-3
  .pq-insite-team-wrapper
  .pq-team-box
  .pq-team-socials {
  font-size: 24px;
  display: flex;
  gap: 15px;
  align-items: center;
  margin: 0;
}
.pq-insite-section-page-3
  .pq-insite-team-wrapper
  .pq-team-box
  .pq-team-socials
  a {
  padding: 10px 20px;
  border: 1px solid var(--light-white);
  color: var(--white-color);
}
.pq-insite-section-page-3
  .pq-insite-team-wrapper
  .pq-team-box
  .pq-team-socials
  a:hover {
  color: var(--primary-color);
}
.pq-insite-section-page-3 .pq-insite-team-wrapper .pq-btn-container {
  text-align: center;
  margin-top: 0px;
}
.pq-insite-section-page-3 .pq-insite-team-wrapper {
  padding: 30px 0;
}
.pq-insite-section-page-3 .pq-all-team-btn {
  display: flex;
  justify-content: center;
}
/*============ Team page-3 responsive ============*/
@media (max-width: 1279px) {
  .pq-insite-section-page-3 .pq-insite-team-wrapper .pq-team-box {
    gap: 30px;
  }
}
@media (max-width: 1023px) {
  .pq-insite-section-page-3 .pq-insite-team-wrapper .pq-team-box {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .pq-insite-section-page-3 .pq-insite-team-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .pq-insite-section-page-3
    .pq-insite-team-wrapper
    .pq-team-box
    .pq-team-image {
    text-align: center;
  }
  .pq-insite-section-page-3
    .pq-insite-team-wrapper
    .pq-team-box
    .pq-team-image
    img {
    width: 70%;
  }
  .pq-insite-section-page-3
    .pq-insite-team-wrapper
    .pq-team-box
    .pq-team-socials {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .pq-insite-section-page-3 .pq-section-title.text-center h5 {
    font-size: 42px;
    line-height: 50px;
  }
  .pq-insite-section-page-3 {
    padding: 60px 0;
  }
  .pq-insite-section-page-3 .pq-insite-team-wrapper .pq-team-box {
    gap: 15px;
  }
  .pq-insite-section-page-3 .pq-insite-team-wrapper {
    display: grid;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 479px) {
  .pq-insite-section-page-3 {
    margin: 0 0px;
  }
  .pq-insite-section-page-3 .pq-team-socials {
    gap: 5px !important;
  }
  .pq-insite-section-page-3 .pq-section-title.pq-section-title.text-center {
    margin-bottom: 0;
  }
  .pq-insite-section-page-3 .pq-insite-team-wrapper {
    padding-top: 0;
  }
  .pq-insite-section-page-3
    .pq-insite-team-wrapper
    .pq-team-box
    .pq-team-info
    .pq-member-name {
    font-size: 24px;
    line-height: 32px;
  }
}
/*================================================
  Pricing plan
================================================*/
/*============ Pricing plan page-1  ============*/

.pq-pricing-plan-page-1 {
  padding-top: 0;
}
.pq-pricing-plan-box-wrapper .mid-plan .pq-btn-container a {
  background-color: var(--white-color);
}
.pq-pricing-plan-box-wrapper .mid-plan .pq-btn-container a:hover {
  background-color: var(--dark-color);
  color: var(--white-color);
}
.pq-pricing-plan-section .pq-title-heading {
  text-align: center;
}
.pq-pricing-plan-box-wrapper .pq-pricing-plan-box h2 span {
  font-size: 18px;
  color: var(--secondary-color);
}
.pq-pricing-plan-box-wrapper .pq-pricing-plan-box.mid-plan h2 span {
  color: var(--dark-color);
}
.pq-pricing-plan-box-wrapper
  .pq-pricing-plan-box.mid-plan
  .pq-pricing-plan-info {
  color: var(--dark-color);
}
.pq-pricing-plan-box-wrapper .pq-pricing-plan-box h2 sup {
  font-size: 30px;
  margin-right: 10px;
  vertical-align: text-top;
  line-height: 85px;
}
.pq-pricing-plan-box-wrapper .pq-pricing-plan-box h2 {
  font-size: 55px;
  line-height: 63px;
  margin: 15px 0;
  position: relative;
  text-transform: capitalize;
}
.pq-pricing-plan-info ul li span {
  margin-left: 10px;
}
.pq-pricing-plan-info ul li {
  padding: 5px 0px;
}
.pq-pricing-plan-info ul {
  padding-left: 0px;
}
.pq-pricing-plan-box-wrapper .pq-pricing-plan-box {
  background-color: var(--grey-color);
  padding: 60px 45px;
}
.pq-pricing-plan-box-wrapper .pq-pricing-plan-box h5 {
  font-size: 30px;
  line-height: 38px;
}
.pq-pricing-plan-box-wrapper {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: center;
}
.pq-pricing-plan-box-wrapper .mid-plan {
  background-color: var(--primary-color);
  position: relative;
}
.pq-pricing-plan-box-wrapper .pq-btn-container {
  margin-top: 45px;
}
.pq-pricing-plan-box-wrapper .mid-plan .pq-btn-container a {
  background-color: var(--white-color);
}
.pq-pricing-plan-box-wrapper .mid-plan .pq-btn-container a:hover {
  background-color: var(--dark-color);
}
/*============    pricing plan page-1 responsive   =================*/
@media (max-width: 1099px) {
  .pq-pricing-plan-box-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .pq-pricing-plan-box-wrapper {
    grid-template-columns: 1fr;
  }
  .pq-pricing-plan-box-wrapper .pq-pricing-plan-box h2 sup {
    font-size: 28px;
    line-height: 60px;
  }
  .pq-pricing-plan-box-wrapper .pq-pricing-plan-box h2 {
    font-size: 40px;
    line-height: 48px;
  }
  .pq-pricing-plan-box-wrapper .pq-pricing-plan-box h5 {
    padding-bottom: 15px;
  }
  .pq-pricing-plan-box-wrapper {
    margin: 0;
  }
}
@media (max-width: 479px) {
  .pq-pricing-plan-box-wrapper .pq-pricing-plan-box {
    padding: 45px 30px;
  }
}
@media (max-width: 379px) {
  .pq-pricing-plan-box-wrapper .pq-pricing-plan-box {
    padding: 30px 20px;
  }
}
/*============    pricing plan page-2    =================*/
.pq-home-2-plan .pq-plan-heading {
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: center;
  border-bottom: 2px dashed var(--dark-color);
  margin-bottom: 30px;
}
.pq-home-2-plan .pq-plan-heading h2 {
  font-size: 50px;
  line-height: 58px;
  margin: 0;
}
.pq-home-2-plan .pq-plan-heading h5 {
  font-size: 25px;
  line-height: 33px;
}
.pq-home-2-plan .pq-pricing-plan-box {
  position: relative;
  padding: 45px;
}
.pq-home-2-plan .pq-plan-heading h2 span {
  color: var(--light-dark-color);
  font-weight: 400;
}
.pq-home-2-plan .pq-pricing-plan-box .pq-pricing-plan-info {
  color: var(--dark-color);
}
.pq-home-2-plan .pq-pricing-plan-box.pq-active .pq-btn-container {
  margin-top: 45px;
}
.pq-home-2-plan .pq-pricing-plan-box:not(.svg-animation) .svg path {
  stroke-dashoffset: 0 !important;
}
.pq-home-2-plan .pq-pricing-plan-box-wrapper .pq-active {
  background-color: var(--primary-color);
}
.pq-home-2-plan .pq-pricing-plan-box-wrapper .pq-btn-container a {
  background-color: var(--white-color);
}
.pq-home-2-plan .pq-pricing-plan-box-wrapper .pq-btn-container a:hover {
  color: var(--dark-color);
}
.pq-home-2-plan
  .pq-pricing-plan-box-wrapper
  .pq-btn-container
  a:not(.svg-animation)
  .svg
  path {
  stroke-dashoffset: 0 !important;
}
.pq-home-2-plan
  .pq-pricing-plan-box-wrapper
  .pq-btn-container
  a:hover
  svg
  path {
  stroke: var(--dark-color);
}
/*============    pricing plan page-2 responsive   =================*/

@media (max-width: 1365px) {
  .pq-home-2-plan .pq-plan-heading h2 {
    font-size: 32px;
    line-height: 40px;
  }
  .pq-home-2-plan .pq-pricing-plan-box-wrapper .pq-pricing-plan-box h2 sup {
    font-size: 24px;
    line-height: 53px;
  }
  .pq-home-2-plan .pq-plan-heading h5 {
    font-size: 18px;
    line-height: 28px;
  }
}
@media (max-width: 1099px) {
  .pq-home-2-plan .pq-pricing-plan-section .pq-pricing-plan-box-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 799px) {
  .pq-pricing-plan-section .pq-pricing-plan-box-wrapper {
    grid-template-columns: 1fr;
    margin-bottom: 0;
  }
  .pq-pricing-plan-section.pq-home-2-plan .pq-plan-heading {
    grid-template-columns: 2fr 1fr;
    font-size: 40px;
    line-height: 48px;
  }
  .pq-pricing-plan-section.pq-home-2-plan
    .pq-plan-heading
    .pq-pricing-plan-box
    h2
    sup {
    line-height: 60px;
  }
}
@media (max-width: 479px) {
  .pq-pricing-plan-section.pq-home-2-plan .pq-plan-heading h2 {
    font-size: 32px;
    line-height: 40px;
  }
  .pq-pricing-plan-section.pq-home-2-plan .pq-plan-heading h2 sup {
    line-height: 50px;
  }
  .pq-home-2-plan .pq-pricing-plan-box {
    padding: 45px 30px;
  }
}
@media (max-width: 379px) {
  .pq-pricing-plan-section.pq-home-2-plan .pq-plan-heading h2 {
    font-size: 24px;
    line-height: 32px;
  }
  .pq-pricing-plan-section.pq-home-2-plan .pq-plan-heading h2 sup {
    line-height: 45px;
    font-size: 24px;
    margin-right: 5px;
  }
  .pq-pricing-plan-section.pq-home-2-plan .pq-plan-heading h2 span {
    font-size: 16px;
  }
  .pq-pricing-plan-section.pq-home-2-plan .pq-plan-heading h5 {
    line-height: 28px;
    font-size: 16px;
  }
  .pq-home-2-plan .pq-pricing-plan-box {
    padding: 30px 20px;
  }
}
/*============    pricing plan page-3    =================*/
.pq-pricing-plan-page-3 .pq-title-description {
  font-size: 18px;
  line-height: 24px;
  text-transform: none;
  margin: 15px 0;
  font-family: var(--body-fonts);
  font-weight: 400;
}
.pq-pricing-plan-page-3 .pq-title-description .pq-btn-container {
  margin: 15px 0;
}
.pq-pricing-plan-page-3 .pq-pricing-plan-box-wrapper {
  display: block;
}
.pq-pricing-plan-page-3
  .pq-pricing-plan-box-wrapper
  .pq-pricing-plan-box.mid-plan {
  margin-bottom: 30px;
}
.pq-pricing-plan-page-3 .pq-pricing-plan-box-wrapper .pq-pricing-plan-box {
  display: grid;
  grid-template-columns: 4fr 4fr 3fr;
  width: 100%;
  padding: 60px 45px;
  gap: 30px;
  align-items: center;
}
.pq-pricing-plan-page-3
  .pq-pricing-plan-box-wrapper
  .pq-pricing-plan-box.mid-plan
  .pq-btn-container
  a {
  background-color: var(--white-color);
}
.pq-pricing-plan-page-3
  .pq-pricing-plan-box-wrapper
  .pq-pricing-plan-box
  .pq-btn-container
  a {
  background-color: var(--primary-color);
}
.pq-pricing-plan-page-3
  .pq-pricing-plan-box-wrapper
  .pq-pricing-plan-box
  .pq-btn-container
  a:hover {
  background-color: var(--dark-color);
}
.pq-pricing-plan-page-3 .pq-pricing-plan-wrapperpage-3-wrapper {
  display: grid;
  grid-template-columns: 2fr 3fr;
  align-items: baseline;
  gap: 30px;
}
.pq-pricing-plan-page-3
  .pq-pricing-plan-box-wrapper
  .pq-pricing-plan-box
  .pq-btn-container {
  margin: 0;
}
.pq-pricing-plan-page-3
  .pq-pricing-plan-wrapperpage-3-wrapper
  .pq-section-title
  .pq-btn-container {
  margin-top: 30px;
}
.pq-pricing-plan-page-3
  .pq-pricing-plan-box-wrapper
  .pq-pricing-plan-box
  .pq-pricing-info
  h5 {
  font-size: 35px;
  line-height: 43px;
}
.pq-pricing-plan-page-3
  .pq-pricing-plan-box-wrapper
  .pq-pricing-plan-box
  .pq-pricing-info
  span {
  color: var(--dark-color);
}
.pq-pricing-plan-page-3
  .pq-pricing-plan-box-wrapper
  .pq-pricing-plan-box
  .pq-pricing-plan-info {
  color: var(--dark-color);
}
/*============    pricing plan page-3 responsive   =================*/

@media (max-width: 1365px) {
  .pq-pricing-plan-page-3 .pq-pricing-plan-box-wrapper .pq-pricing-plan-box {
    grid-template-columns: 1fr 1fr;
    grid-row-gap: 15px;
    padding: 45px 30px;
  }
  .pq-pricing-plan-box-wrapper .pq-pricing-plan-box h2 {
    margin: 0;
  }
  .pq-pricing-plan-page-3 {
    padding: 90px 0;
  }
}
@media (max-width: 1023px) {
  .pq-pricing-plan-page-3 .pq-pricing-plan-wrapperpage-3-wrapper {
    grid-template-columns: 1fr;
  }
  .pq-pricing-plan-page-3 .pq-pricing-plan-box-wrapper {
    margin: 0;
  }
}
@media (max-width: 991px) {
  .pq-pricing-plan-wrapperpage-3-wrapper .pq-section-title .pq-title-heading {
    padding-top: 0px;
  }
}
@media (max-width: 767px) {
  .pq-pricing-plan-wrapperpage-3-wrapper .pq-section-title .pq-title-heading {
    font-size: 40px;
    line-height: 48px;
  }
  .pq-pricing-plan-wrapperpage-3-wrapper {
    padding-top: 0px;
  }
  .pq-pricing-plan-page-3 .pq-pricing-plan-box-wrapper .pq-pricing-plan-box {
    grid-template-columns: 1fr;
  }
  .pq-pricing-plan-page-3 {
    padding: 60px 0;
  }
}
@media (max-width: 479px) {
  .pq-pricing-plan-wrapperpage-3-wrapper .pq-section-title .pq-title-heading {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (max-width: 379px) {
  .pq-pricing-plan-page-3 .pq-pricing-plan-box-wrapper .pq-pricing-plan-box {
    padding: 30px 20px;
  }
}
/*================================================
 client 
================================================*/
/* ++++++++++ brand-carousel page-1 ++++++++++*/
.pq-carousel-brand.pq-carousel-brand-page-1 {
  padding: 130px 0;
}
.pq-carousel-brand .pq-top-border {
  border-top: 2px dashed var(--border-light-black);
}
.pq-brand-title-div {
  position: relative;
  width: 98%;
  margin-left: 10px;
}
.pq-brand-title {
  position: absolute;
  background-color: var(--white-color);
  left: 35%;
  margin-top: -16px;
  padding: 0 15px;
  font-family: var(--title-fonts);
  color: var(--secondary-color);
  font-size: 16px;
  letter-spacing: 2px;
}
.owl-carousel {
  margin: 60px 0 0 0;
}
.owl-carousel .item .pq-brand-box {
  position: relative;
  padding: 15px;
  height: 180px;
  margin: 8px;
  background: #f3ecff;
  border-radius: 20px;

}
.item .pq-brand-box:hover {
  background-color: var(--primary-color);
}

.owl-carousel .item .pq-brand-box:hover .pq-client-hover-img {
  opacity: 1;
  transition: var(--transition);
}
.pq-client-img {
  opacity: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.owl-carousel .item .pq-brand-box a .pq-client-hover-img {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.owl-carousel .item .pq-brand-box a img {
  width: 200px;
  height: auto;
}
.owl-carousel .item .pq-brand-box .pq-svg-dot::after {
  content: "";
  position: absolute;
  background: var(--dark-color);
  height: 10px;
  width: 10px;
  border-radius: 100%;
  z-index: 1;
  left: -5px;
  bottom: -5px;
  opacity: 0;
}
.owl-carousel .item .pq-brand-box .pq-svg-dot::before {
  content: "";
  position: absolute;
  background: var(--dark-color);
  height: 10px;
  width: 10px;
  border-radius: 100%;
  z-index: 1;
  left: -5px;
  top: -5px;
  opacity: 0;
}
.owl-carousel .item .pq-brand-box ::after {
  content: "";
  position: absolute;
  background: var(--dark-color);
  height: 10px;
  width: 10px;
  border-radius: 100%;
  z-index: 1;
  right: -5px;
  bottom: -5px;
  opacity: 0;
}
.owl-carousel .item .pq-brand-box ::before {
  content: "";
  position: absolute;
  background: var(--dark-color);
  height: 10px;
  width: 10px;
  border-radius: 100%;
  z-index: 1;
  right: -5px;
  top: -5px;
  opacity: 0;
}
/* ++++++++++ brand-carousel page-1 responsive ++++++++++*/
@media (max-width: 1279px) {
  .pq-brand-title {
    left: 30%;
  }
}
@media (max-width: 979px) {
  .pq-brand-title {
    left: 26%;
  }
}
@media (max-width: 799px) {
  .pq-brand-title-div {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .pq-brand-title {
    position: static;
    padding: 0;
  }
  .pq-carousel-brand .pq-top-border {
    border-top: none;
    margin-top: 0;
  }
}
@media (max-width: 497px) {
  .pq-carousel-brand .pq-brand-title-div {
    margin: 0 0 15px 0;
  }
  .pq-carousel-brand .owl-carousel {
    margin: 0;
  }
}

/* ++++++++++ brand-carousel page-2 responsive ++++++++++*/
@media (max-width: 1279px) {
  .pq-page-2-carousel-section {
    padding-bottom: 90px;
  }
}
@media (max-width: 979px) {
  .pq-carousel-brand.pq-carousel-brand-page-1 {
    padding: 60px 0 60px 0;
  }
}
@media (max-width: 767px) {
  .pq-page-2-carousel-section {
    margin: 0;
    padding-bottom: 60px;
    padding-top: 0;
  }
}
@media (max-width: 497px) {
  .pq-page-2-carousel-section .pq-carousel-brand .owl-carousel {
    margin: 0;
  }
}
/*================================================
  img carousel 
================================================*/
.pq-image-slider .pq-slider-wrapper .pq-moving-image img {
  height: 503px;
}
.pq-image-slider {
  padding-bottom: 0;
  margin: 0;
}
.pq-image-slider .pq-slider-wrapper .owl-carousel {
  margin-bottom: 30px;
}
.pq-image-slider {
  margin: 0;
  padding-top: 0;
}
.pq-image-slider .pq-slider-wrapper .owl-carousel {
  margin-top: 0;
}
/*============   image-slider responsive  =================*/
@media (max-width: 479px) {
  .pq-image-slider .owl-carousel.owl-drag .owl-item {
    margin-right: 15px;
  }
}
/*================================================
blog 
================================================*/
/* ++++++++++ news-section ++++++++++*/

.news-wrapper .news-left-div .title-heading {
  padding: 0;
  text-align: start;
}
.news-wrapper .news-left-div .title-heading h5 {
  padding: 0;
}
.news-wrapper .news-left-div .title-heading p {
  color: var(--secondary-color);
  font-family: var(--body-fonts);
  margin-top: 15px;
}
.pq-blog-box {
  display: grid;
  grid-template-columns: 3fr 1fr;
  padding: 15px;
  align-items: center;
}
.pq-news-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
}
.pq-news-right-div {
  padding-left: 60px;
}
.pq-blog-category a {
  color: var(--secondary-color);
}
.pq-blog-title a {
  font-size: 30px;
  line-height: 38px;
}
.pq-blog-info {
  padding: 15px;
}
.pq-blog-image {
  opacity: 0;
  scale: 0;
}
.pq-blog-box:hover.pq-blog-box .pq-blog-image {
  opacity: 1;
  scale: 1;
  transition: all 0.6s ease-in-out;
}
.top-border {
  border-top: 2px dashed var(--light-black);
}
.bottom-border {
  border-bottom: 2px dashed var(--light-black);
}
/* ++++++++++ Blog List ++++++++++*/

.pq-blog-post.pq-list {
  display: grid;
  grid-template-columns: auto 250px;
  gap: 30px;
  align-items: center;
  padding: 30px 15px;
  position: relative;
  background: linear-gradient(
      90deg,
      var(--border-light-black) 50%,
      transparent 0
    )
    repeat-x;
  background-size: 15px 2.2px;
  background-position: 0 100%;
  margin-bottom: 0;
}
.pq-blog-post.pq-list:first-child {
  background: linear-gradient(
        90deg,
        var(--border-light-black) 50%,
        transparent 0
      )
      repeat-x,
    linear-gradient(90deg, var(--border-light-black) 50%, transparent 0)
      repeat-x;
  background-size: 15px 2.2px, 15px 2.2px;
  background-position: 0 0%, 0 100%;
  padding: 20px;
}
.pq-blog-post.pq-list .pq-blog-contain .pq-post-category a {
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  color: var(--secondary-color);
  margin-bottom: 10px;
  text-transform: uppercase;
  display: inline-block;
  letter-spacing: 1px;
}
.pq-blog-post.pq-list.pq-active .pq-blog-contain .pq-post-category a {
  color: var(--dark-color);
}
.pq-blog-post.pq-list .pq-blog-contain .pq-blog-title a {
  font-size: 30px;
  line-height: 38px;
  font-weight: 500;
  color: var(--dark-color);
  text-transform: uppercase;
}
.pq-blog-post.pq-list.pq-active .pq-blog-contain .pq-blog-title {
  font-size: 28px;
  line-height: 36px;
}
.pq-blog-post.pq-list.pq-active .pq-blog-contain .pq-blog-title a {
  color: var(--primary-color);
}
.pq-blog-post.pq-list .pq-post-media {
  transform: scale(0);
  transition: var(--transition);
  margin-bottom: 0;
}
.pq-blog-post.pq-list.pq-active .pq-post-media {
  transform: scale(1);
}
.pq-blog-post.pq-list.pq-active .pq-post-media img {
  width: 100%;
}
.pq-blog-post.pq-list .svg path {
  stroke-dashoffset: 0 !important;
  display: none;
}
.blog .pq-blog-left-side {
  margin-top: 60px;
}
.blog .pq-blog-left-side p {
  padding-right: 75px;
}
.blog .pq-blog-1-list {
  margin-top: 60px;
}
.blog .pq-btn-container {
  margin-top: 45px;
}
.blog {
  margin-bottom: 60px;
}

/* ++++++++++ blog post responsiv ++++++++++*/
@media (max-width: 991px) {
  .pq-blog-section {
    padding: 90px 0 30px 0;
  }
}
@media (max-width: 767px) {
  .pq-blog-post.pq-list {
    display: flex;
    flex-direction: column-reverse;
  }
  .pq-blog-section .pq-blog-left-side .pq-section-title .pq-title h5 {
    font-size: 42px;
    line-height: 48px;
  }
  .pq-blog-post.pq-list .pq-post-media {
    transform: scale(1);
  }
  .pq-blog-post.pq-list .pq-blog-contain .pq-blog-title a {
    font-size: 24px;
    line-height: 30px;
  }
  .pq-blog-section {
    padding: 60px 0 0 0;
    margin-bottom: 30px;
  }
  .pq-blog-post.pq-list.pq-active .pq-blog-contain .pq-blog-title {
    font-size: 24px;
    line-height: 32px;
  }
  .pq-blog-post.pq-list:first-child {
    padding: 15px 0;
  }
  .pq-blog-post.pq-list {
    padding: 30px 0;
  }
}

@media (max-width: 479px) {
  .pq-blog-section .pq-blog-left-side .pq-section-title .pq-title h5 {
    font-size: 32px;
    line-height: 40px;
  }
  .pq-blog-section .pq-blog-left-side {
    padding-left: 0px;
  }
}
/*================================================
	blog-grid page
================================================*/
.pq-blog-post-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  row-gap: 45px;
}
.pq-blog-post-wrapper .pq-blog-image-div {
  overflow: hidden;
}
.pq-blog-post-wrapper .pq-blog-image-div:hover img {
  scale: 1.1;
  transition: var(--transition);
}
.pq-blog-post-wrapper .pq-blog-post-catagory {
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  margin-top: 15px;
}
.pq-blog-post-wrapper .pq-blog-title {
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}
.pq-blog-post-wrapper .pq-blog-discription {
  padding: 5px 0 15px 0;
}
.pq-blog-post-wrapper .pq-btn-container {
  margin-top: 15px;
}
.pq-pagination {
  margin-top: 60px;
}
.pq-pagination .page-numbers-ul {
  display: flex;
  gap: 5px;
  padding: 0;
}
.pq-pagination .page-numbers a {
  color: var(--white-color);
}
.pq-pagination .page-numbers {
  padding: 15px 30px;
  background-color: var(--dark-color);
  color: var(--white-color);
}
.pq-pagination .page-numbers:hover {
  background-color: var(--primary-color);
}
.pq-pagination .page-numbers:hover a {
  color: var(--dark-color);
}
.pq-pagination .page-numbers.current {
  color: var(--dark-color);
  background-color: var(--primary-color);
}
.pq-pagination .page-numbers.current:hover {
  color: var(--dark-color);
  background-color: var(--primary-color);
}
@media (max-width: 767px) {
  .pq-blog-post-wrapper {
    grid-template-columns: 1fr;
  }
  .pq-pagination {
    margin-top: 60px;
  }
}
@media (max-width: 479px) {
  .pq-pagination {
    margin-top: 30px;
  }
}
@media (max-width: 379px) {
  .pq-pagination .page-numbers-ul {
    display: inline-block;
    margin: 0;
  }

  .pq-pagination .page-numbers-ul li {
    margin: 30px 0;
  }
}
/*================================================
	blog-sidebar pages
================================================*/
.pq-blog-sidebar-page .pq-search-bar-div {
  display: flex;
  padding: 30px;
  background-color: var(--primary-color);
}
.pq-blog-sidebar-page .pq-search-bar-div input {
  margin: 0;
  background-color: var(--white-color);
  border: none;
  border-radius: 0;
}
.pq-blog-sidebar-page .pq-search-bar-div .pq-button.pq-sidebar-page-search-btn {
  height: 54px;
  padding: 7px 15px;
  align-items: center;
  font-size: 20px;
  background-color: var(--white-color);
}
.pq-blog-sidebar-page
  .pq-search-bar-div
  .pq-button.pq-sidebar-page-search-btn:hover {
  color: var(--dark-color);
}
.pq-blog-sidebar-page .pq-recent-post-div {
  margin-top: 30px;
  background-color: var(--grey-color);
  padding: 30px;
}
.pq-blog-sidebar-page .pq-recent-post-box {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}
.pq-recent-post-div-title {
  margin-bottom: 20px;
  font-size: 28px;
  line-height: 36px;
}
.pq-recent-post-info-box-title {
  text-transform: capitalize;
}
.pq-blog-sidebar-page .pq-recent-post-box .pq-recent-post-media img {
  width: auto;
  height: 90%;
}
.pq-blog-sidebar-page .pq-recent-post-box .pq-post-date i {
  padding-right: 5px;
  color: var(--secondary-color);
}
.pq-blog-sidebar-page .pq-recent-post-box .pq-post-date {
  color: var(--secondary-color);
  text-transform: uppercase;
  font-size: 16px;
}
.pq-blog-sidebar-page .pq-tags-div {
  background-color: var(--grey-color);
  padding: 30px;
  margin-top: 30px;
}
.pq-blog-sidebar-page .pq-tags-div .pq-tag {
  padding: 5px 10px;
  text-transform: uppercase;
  background-color: var(--white-color);
  color: var(--secondary-color);
  font-size: 16px;
  line-height: 24px;
}
.pq-blog-sidebar-page .pq-tags-div .pq-tag:hover {
  background-color: var(--primary-color);
  color: var(--dark-color);
  transition: var(--transition);
}
.pq-blog-sidebar-page .pq-tags-div .pq-tags-wrapper div {
  margin-top: 10px;
}
.pq-blog-sidebar-page .pq-blog-post-wrapper {
  grid-template-columns: 1fr;
}
@media (max-width: 1365px) {
  .pq-blog-sidebar-page .pq-recent-post-box .pq-recent-post-media img {
    width: auto;
    height: auto;
  }
}
/*================================================
	blog details page
================================================*/
.pq-blog-sidebar-page.pq-blog-details-page blockquote {
  background-color: var(--grey-color);
  padding: 30px;
  position: relative;
  border-left: 5px solid var(--primary-color);
}
.pq-blog-sidebar-page.pq-blog-details-page blockquote p {
  margin: 0;
}
.pq-blog-sidebar-page.pq-blog-details-page blockquote::before {
  content: "\f10e";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  bottom: 30px;
  right: 30px;
  position: absolute;
  opacity: 1;
  font-size: 72px;
  opacity: 1;
  line-height: 80px;
  color: var(--primary-color);
}
.pq-blog-sidebar-page.pq-blog-details-page .pq-blog-discription {
  padding: 0;
}
.pq-blog-sidebar-page.pq-blog-details-page blockquote strong {
  font-family: var(--title-fonts);
  color: var(--dark-color);
  font-style: italic;
  font-weight: 400;
  display: block;
  margin-top: 10px;
  letter-spacing: 1px;
}
.pq-single-post-bottom-holder {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--primary-color);
  border-bottom: 1px solid var(--primary-color);
  padding: 15px 0;
}
.pq-single-post-bottom-holder .pq-single-post-socials {
  display: flex;
  align-items: center;
}
.pq-single-post-bottom-holder .pq-single-post-socials-icons-wrapper {
  display: flex;
  gap: 15px;
  padding: 0 0 0 5px;
  margin: 0;
}
.pq-single-post-bottom-holder
  .pq-single-post-socials
  .pq-single-post-socials-icon {
  padding: 5px 15px;
  background-color: var(--grey-color);
  color: var(--dark-color);
}
.pq-single-post-bottom-holder
  .pq-single-post-socials
  .pq-single-post-socials-icon:hover {
  background-color: var(--primary-color);
  transition: var(--transition);
}
.pq-single-post-bottom-holder .pq-single-post-socials-title {
  text-transform: uppercase;
  font-family: var(--title-fonts);
  color: var(--dark-color);
  letter-spacing: 1px;
  font-weight: 600;
}
.pq-single-post-bottom-holder .pq-single-post-info .pq-tag-title {
  text-transform: uppercase;
  font-family: var(--title-fonts);
  color: var(--dark-color);
  letter-spacing: 1px;
  font-weight: 600;
  font-size: 18px;
}
.pq-single-post-bottom-holder .pq-single-post-info {
  text-transform: uppercase;
  font-size: 16px;
}
.pq-tag {
  padding: 5px 10px;
  text-transform: uppercase;
  background-color: var(--white-color);
  color: var(--secondary-color);
  font-size: 16px;
  line-height: 24px;
}
.pq-tag:hover {
  background-color: var(--primary-color);
  color: var(--dark-color);
  transition: var(--transition);
}
.pq-single-post-usernav {
  display: grid;
  grid-template-columns: 1fr 9fr;
  gap: 30px;
  background-color: var(--grey-color);
  padding: 30px;
  margin-top: 30px;
}
.pq-single-post-usernav .pq-user-media img {
  min-width: 100px;
}
.pq-single-post-usernav .pq-user-title {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 5px;
}
.pq-single-post-usernav .pq-user-info .pq-user-sub-title {
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--secondary-color);
}
.pq-blog-sidebar-page.pq-blog-details-page textarea {
  background-color: var(--grey-color);
}
.pq-blog-sidebar-page.pq-blog-details-page form {
  margin-top: 30px;
}
@media (max-width: 1279px) {
  .pq-blog-sidebar-page .pq-recent-post-div {
    margin-top: 30px;
    background-color: var(--grey-color);
    padding: 30px 10px;
  }
}
@media (max-width: 991px) {
  .pq-blog-sidebar-page .pq-recent-post-div {
    margin-top: 30px;
    background-color: var(--grey-color);
    padding: 30px;
  }
  .pq-blog-sidebar-page .pq-recent-post-box {
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .pq-single-post-bottom-holder {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .pq-single-post-usernav .pq-user-media img {
    max-width: 100px;
  }
  .pq-single-post-usernav .pq-user-media {
    text-align: center;
  }
  .pq-single-post-usernav {
    display: grid;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 379px) {
  .pq-blog-sidebar-page .pq-recent-post-box {
    gap: 10px;
  }
  .pq-blog-sidebar-page .pq-recent-post-div {
    padding: 30px 10px;
  }
  .pq-blog-sidebar-page .pq-search-bar-div {
    padding: 15px 10px;
  }
  .pq-blog-sidebar-page .pq-tags-div {
    padding: 15px 10px;
  }
  .pq-single-post-usernav {
    padding: 15px 10px;
  }
}
/*================================================
  portfolio-section
================================================*/
/* ++++++++++  portfolio-carousel  ++++++++++*/
.pq-portfoliobox-carousel .pq-portfolio-image {
  overflow: hidden;
  margin-top: -80px;
  z-index: 1;
}
.pq-portfoliobox-carousel .pq-portfolio-image img {
  object-fit: cover;
  transition: all 0.5s ease-in-out;
}
.pq-portfolio-section {
  background-color: var(--grey-color);
  overflow: hidden;
}

.pq-portfoliobox-carousel .pq-portfoliobox .pq-portfolio-info {
  margin-top: 15px;
}
.pq-portfoliobox-carousel
  .pq-portfoliobox
  .pq-portfolio-info
  .pq-portfolio-tag {
  color: var(--secondary-color);
}
.pq-portfoliobox-carousel
  .pq-portfoliobox
  .pq-portfolio-info
  .pq-portfolio-style-1-title {
  font-size: 28px;
  line-height: 36px;
}
.pq-portfoliobox-carousel
  .pq-portfoliobox
  .pq-portfolio-info
  .pq-portfolio-style-1-title:hover.pq-portfolio-style-1-title
  a {
  color: var(--dark-color);
}
.pq-portfoliobox-carousel .pq-portfoliobox {
  padding: 30px;
  border: 2px dashed var(--secondary-color);
}
.pq-portfoliobox-carousel .item {
  margin-top: 60px;
  position: relative;
}
.pq-portfoliobox-carousel .pq-portfoliobox:hover {
  background-color: var(--primary-color);
  transition: var(--transition);
}
.pq-portfoliobox-carousel
  .pq-portfoliobox:hover.pq-portfoliobox
  .pq-portfolio-image
  a
  img {
  scale: 1.1;
  transition: var(--transition);
}
.pq-portfoliobox-carousel {
  margin-right: -320px;
}
/*============  porfolio-carousel  =================*/
@media (max-width: 1023px) {
  .pq-portfoliobox-carousel {
    margin-right: 0px;
  }
}
@media (max-width: 767px) {
  .pq-portfoliobox-carousel
    .pq-portfoliobox
    .pq-portfolio-info
    .pq-portfolio-style-1-title {
    font-size: 24px;
    line-height: 32px;
  }
  .pq-portfoliobox-carousel .pq-portfoliobox .pq-portfolio-info {
    margin-top: 0;
  }
}
@media (max-width: 479px) {
  .pq-portfoliobox-carousel {
    margin-right: 0px;
  }
  .pq-portfoliobox-carousel .pq-portfoliobox {
    padding: 15px;
  }
  .pq-portfoliobox-carousel .pq-portfoliobox .pq-portfolio-info {
    margin-top: 0;
  }
}
/*================================================
designer-section (event-section)
================================================*/
.pq-title-heading {
  font-family: var(--title-fonts);
  padding: 0 15em;
  color: var(--dark-color);
}

.pq-title-heading p {
  font-size: normal !important;
}

.pq-title-heading h5{
  font-size: 56px;
  line-height: 64px;
}
.pq-title-last-word {
  position: relative;
  display: inline-block;
  color: var(--white-color);
  z-index: 1;
  padding: 0 5px;
}
.pq-blog-left-side .pq-btn-container {
  margin-top: 30px;
  margin-bottom: 30px;
}
.pq-blog-section {
  padding: 130px 0;
}
/*================================================
Event Box
================================================*/
/* ++++++++++ Event-Box-1 ++++++++++*/
.pq-event-list-1 {
  position: relative;
}
.pq-event-box.pq-style-1 .pq-event-box-img {
  position: absolute;
  left: 0;
  top: 30px;
  transform-origin: 100% 0;
  transform: scale(1) rotate(-3deg);
  opacity: 1;
  width: 44%;
}
.pq-event-box.pq-style-1.pq-active .pq-event-box-img {
  background: linear-gradient(90deg, var(--dark-color) 50%, transparent 0)
      repeat-x,
    linear-gradient(90deg, var(--dark-color) 50%, transparent 0) repeat-x,
    linear-gradient(0deg, var(--dark-color) 50%, transparent 0) repeat-y,
    linear-gradient(0deg, var(--dark-color) 50%, transparent 0) repeat-y;
  background-size: 12px 2px, 12px 2px, 2px 12px, 2px 12px;
  background-position: 0 0, 0 100%, 0 0, 100% 0;
}
.pq-event-box.pq-style-1 .pq-event-box-img img {
  transform-origin: 100% 0;
  transform: scale(1) rotate(0deg) translateX(50px) translateY(-30px);
  opacity: 0;
  transition: var(--transition);
}
.pq-event-box.pq-style-1.pq-active .pq-event-box-img img {
  transform: scale(1) rotate(3deg) translateX(50px) translateY(-30px);
  opacity: 1;
}
.pq-event-box.pq-style-1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 30px;
}
.pq-event-box.pq-style-1:last-child {
  margin-bottom: 0;
}
.pq-event-box.pq-style-1 .pq-event-box-info {
  padding: 30px;
  background-color: var(--grey-color);
  position: relative;
  overflow: hidden;
  z-index: 2;
  grid-column: 2;
}
.pq-event-box.pq-style-1 .pq-event-box-info .pq-event-box-title {
  font-size: 30px;
  line-height: 38px;
  margin-bottom: 15px;
  transition: var(--transition);
}
.pq-event-box.pq-style-1.pq-active .pq-event-box-info .pq-event-box-title {
  color: var(--white-color);
}
.pq-event-box.pq-style-1 .pq-event-box-info .pq-event-box-description {
  margin-bottom: 0;
  transition: var(--transition);
  line-height: 26px;
  font-size: 16px;
}
.pq-event-box.pq-style-1.pq-active
  .pq-event-box-info
  .pq-event-box-description {
  color: var(--white-color);
  line-height: 26px;
  font-size: 16px;
}
.pq-event-box.pq-style-1 .pq-event-box-info .pq-hover-img {
  position: absolute;
  right: 100%;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: var(--transition);
}
.pq-event-box.pq-style-1.pq-active .pq-event-box-info .pq-hover-img {
  right: 0;
}
.pq-event-box.pq-style-1 .pq-event-box-info .pq-hover-img::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--dark-color);
  opacity: 0.8;
}
.pq-event-box.pq-style-1 .pq-event-box-info .pq-hover-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pq-event-wrapper {
  position: relative;
}
.pq-event-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.pq-image-div img {
  position: absolute;
  width: auto;
  height: 400px;
  top: 0;
}
.pq-designer-page-1 {
  padding-top: 0;
}
/* ++++++++++ Event-Box-1  responsive ++++++++++*/

@media (max-width: 1279px) {
  .pq-section-title.text-center {
    padding: 0;
  }
}
@media (max-width: 1023px) {
  .pq-title-heading {
    font-size: 44px;
    line-height: 52px;
  }
}
@media (max-width: 767px) {
  .pq-title-heading {
    font-size: 42px;
    line-height: 50px;
  }
  .pq-title-heading p{
    font-size: 26px;
    line-height: 35px;
  }

  .pq-title-heading .p-small{
    font-size: 20px;
    line-height: 25px;
  }
  .pq-event-box.pq-style-1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0px;
  }
  .pq-event-box.pq-style-1 .pq-event-box-img {
    display: none;
  }
  .pq-event-page-2-section .pq-event-box.pq-style-1 {
    margin-bottom: 0;
  }
  .pq-title-heading {
    margin-bottom: 45px;
  }
  .pq-event-box.pq-style-1 .pq-event-box-info .pq-event-box-title {
    font-size: 24px;
    line-height: 32px;
  }
}
/* ++++++++++ pq-event-section-page-2 Event-Box-2  ++++++++++*/
.pq-event-2-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;
}
.pq-event-2-wrapper .pq-event-box {
  position: relative;
  display: block;
}
.pq-event-2-wrapper .pq-event-box.pq-style-1 {
  padding-top: 30px;
}
.pq-event-2-wrapper .pq-event-box .pq-event-info {
  position: absolute;
  left: 5%;
  margin-top: -115px;
  width: 90%;
  text-align: center;
  background-color: var(--white-color);
  padding: 15px 0;
}
.pq-event-2-wrapper .pq-event-box .pq-event-info:hover {
  background-color: var(--primary-color);
}
.pq-event-2-wrapper .pq-event-box .pq-event-info:hover span {
  color: var(--dark-color);
}
.pq-event-2-wrapper .pq-event-box .pq-event-info svg {
  opacity: 0;
}
.pq-event-2-wrapper .pq-event-box .pq-event-info svg:hover {
  opacity: 1;
}
/*============   pq-section-event-page-2  responsive =================*/
@media (max-width: 1099px) {
  .pq-event-page-2-section .pq-section-title.text-center {
    padding: 0;
  }
  .pq-event-page-2-section .pq-section-title h5 {
    font-size: 44px;
    line-height: 52px;
  }
}
@media (max-width: 1023px) {
  .pq-event-2-wrapper {
    grid-template-columns: 1fr 1fr;
  }
  .pq-event-2-wrapper .pq-event-box .pq-event-info {
    position: absolute;
  }
}
@media (max-width: 767px) {
  .pq-event-page-2-section .pq-section-title h5 {
    font-size: 42px;
    line-height: 50px;
  }
  .pq-event-page-2-section .pq-section-title {
    margin-bottom: 0;
    padding-top: 45px;
  }
  .pq-event-page-2-section .pq-event-2-wrapper {
    grid-template-columns: 1fr;
  }
  .pq-event-page-2-section .pq-event-2-wrapper {
    padding: 30px 0 0 0;
  }
  .pq-event-page-2-section .pq-event-2-wrapper .pq-event-box .pq-event-info {
    position: relative;
    margin-top: -135px;
    margin-bottom: 30px;
  }
  .pq-event-page-2-section .pq-event-2-wrapper .pq-event-box.pq-style-1 {
    padding-top: 0px;
  }
}
@media (max-width: 479px) {
  .pq-speaker-team-section .pq-section-title h5 {
    font-size: 32px;
    line-height: 40px;
  }
  .pq-speaker-team-section .pq-section-title {
    margin-bottom: 0;
    padding-top: 30px;
  }
  .pq-speaker-team-section {
    padding-bottom: 60px;
  }
  .pq-team.pq-style-2 .pq-team-info .pq-team-media img {
    width: 100%;
  }
  .pq-event-page-2-section .pq-event-2-wrapper {
    padding: 0;
  }
}

/*================================================
hero
================================================*/
.pq-hero-main-section .pq-title {
  text-align: center;
  font-family: var(--title-fonts);
  padding: 0 15em;
  color: var(--dark-color);
}
.pq-hero-main-section {
  background-color: var(--grey-color);
  margin: 0 20px;
  padding: 130px 0;
}
.pq-hero-section-wrapper {
  background-color: var(--grey-color);
  background-image: url(../images/page1/hero/h1-banner-bg-001.webp);
  background-size: cover;
}
.pq-title h5 {
  font-size: 82px;
  line-height: 90px;
}
.pq-conference-text {
  position: relative;
  display: inline-block;
  color: var(--dark-color);
  z-index: 1;
  padding: 0 5px;
}
.pq-conference-text .svg {
  background-color: var(--primary-color);
  z-index: -1;
}
.pq-hero-image {
  margin-top: 45px;
  width: 100%;
  position: relative;
}
.pq-conference-text .pq-svg-dot::before {
  content: "";
  position: absolute;
  background: var(--dark-color);
  height: 10px;
  width: 10px;
  border-radius: 100%;
  z-index: 1;
  top: -5px;
  left: -5px;
}
.pq-conference-text .pq-svg-dot::after {
  content: "";
  position: absolute;
  background: var(--dark-color);
  height: 10px;
  width: 10px;
  border-radius: 100%;
  z-index: 1;
  top: -5px;
  right: -5px;
}
.pq-conference-text::before {
  content: "";
  position: absolute;
  height: 10px;
  width: 10px;
  border-radius: 100%;
  background: var(--dark-color);
  z-index: 1;
  bottom: -5px;
  right: -5px;
}
.pq-conference-text::after {
  content: "";
  position: absolute;
  height: 10px;
  width: 10px;
  border-radius: 100%;
  background: var(--dark-color);
  z-index: 1;
  bottom: -5px;
  left: -5px;
}
/*============ hero-section responsive ============*/

@media (max-width: 1279px) {
  .pq-hero-section .pq-title {
    padding: 0 0em;
  }
}
@media (max-width: 1099px) {
  .pq-hero-main-section {
    margin: 0;
  }
}
@media (max-width: 1023px) {
  .pq-hero-section .pq-title h5 {
    font-size: 62px;
    line-height: 68px;
  }
  .pq-hero-main-section {
    padding: 90px 0;
  }
  .pq-hero-section-wrapper {
    background-image: unset;
  }
  header .pq-bottom-header .pq-header-right {
    margin-left: auto;
  }
}
@media (max-width: 767px) {
  .pq-hero-section .pq-title h5 {
    font-size: 42px;
    line-height: 50px;
  }
  .pq-hero-main-section {
    padding: 60px 0;
  }
  .pq-hero-image {
    text-align: center;
  }
  .pq-hero-image img {
    padding: 30px 0 0 0;
  }
}
/*================================================
Service Box
================================================*/

/* ++++++++++ service box style - 1 ++++++++++*/
.pq-service-box-section-page-3 {
  padding: 130px 0px 200px 0px;
}
.pq-service-box-section-page-3 .pq-service-box.pq-style-1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.pq-service-box-section-page-3 .pq-service-box-1-list {
  position: relative;
}
.pq-service-box-section-page-3 .pq-service-box.pq-style-1 .pq-service-info {
  position: relative;
  overflow: hidden;
  z-index: 2;
  grid-column: 1;
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  gap: 30px;
  padding: 45px 30px;
  align-items: center;
  border-bottom: 1px solid var(--light-black);
  transition: var(--transition);
}
.pq-service-box-section-page-3
  .pq-service-box.pq-style-1.pq-active
  .pq-service-info {
  background-color: var(--primary-color);
}
.pq-service-box-section-page-3 .pq-service-box.pq-style-1 .pq-service-title {
  font-size: 28px;
  line-height: 36px;
  position: relative;
  transition: var(--transition);
}
.pq-service-box-section-page-3
  .pq-service-box.pq-style-1
  .pq-service-description {
  line-height: 28px;
}
.pq-service-box-section-page-3 .pq-service-box.pq-style-1 .pq-icon {
  font-size: 20px;
  line-height: 60px;
  width: 60px;
  height: 60px;
  text-align: center;
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: 100%;
  transition: var(--transition);
  position: relative;
}
.pq-service-box-section-page-3 .pq-service-box.pq-style-1.pq-active .pq-icon i {
  color: var(--white-color);
}
.pq-service-box-section-page-3 .pq-service-box.pq-style-1.pq-active .pq-icon {
  border: 2px dashed var(--white-color);
  transition: all 0.1s ease-in-out;
}
.pq-service-box-section-page-3 .pq-service-box.pq-style-1 .pq-icon::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  --n: 16;
  --d: 12deg;
  --t: 2px;
  --c: var(--dark-color);
  padding: var(--t);
  background: var(--);
  mask: linear-gradient(#0000 0 0) content-box,
    repeating-conic-gradient(
      from calc(var(--d) / 2),
      #000 0 calc(360deg / var(--n) - var(--d)),
      #0000 0 calc(360deg / var(--n))
    );
  mask-composite: intersect;
  transition: var(--transition);
}
.pq-service-box-section-page-3
  .pq-service-box.pq-style-1.pq-active
  .pq-icon::before {
  --c: var(--white-color);
}
.pq-service-box-section-page-3 .pq-service-box.pq-style-1.pq-active .pq-icon {
  background-color: var(--dark-color);
  color: var(--primary-color);
}
.pq-service-box-section-page-3 .pq-service-box.pq-style-1 .pq-service-box-img {
  position: absolute;
  right: 50px;
  top: 30px;
  transform: scale(1) rotate(-3deg);
  opacity: 1;
  width: 44%;
}
.pq-service-box-section-page-3
  .pq-service-box.pq-style-1.pq-active
  .pq-service-box-img {
  background: linear-gradient(90deg, var(--dark-color) 50%, transparent 0)
      repeat-x,
    linear-gradient(90deg, var(--dark-color) 50%, transparent 0) repeat-x,
    linear-gradient(0deg, var(--dark-color) 50%, transparent 0) repeat-y,
    linear-gradient(0deg, var(--dark-color) 50%, transparent 0) repeat-y;
  background-size: 12px 2px, 12px 2px, 2px 12px, 2px 12px;
  background-position: 0 0, 0 100%, 0 0, 100% 0;
}
.pq-service-box-section-page-3
  .pq-service-box.pq-style-1
  .pq-service-box-img
  img {
  transform: scale(1) rotate(0deg) translateX(50px) translateY(-30px);
  opacity: 0;
  transition: var(--transition);
}
.pq-service-box-section-page-3
  .pq-service-box.pq-style-1.pq-active
  .pq-service-box-img
  img {
  transform: scale(1) rotate(3deg) translateX(50px) translateY(-30px);
  opacity: 1;
}

/*============ pq-service-box-section-page-3 responsive =================*/
@media (max-width: 1365px) {
  .pq-service-box-section-page-3 {
    padding: 130px 0px 130px 0px;
  }
}
@media (max-width: 1279px) {
  .pq-service-box-section-page-3 {
    padding: 90px 0px 90px 0px;
  }
  .pq-service-box-section-page-3 .pq-service-box.pq-style-1 .pq-service-info {
    display: block;
  }
  .pq-service-box-section-page-3 .pq-service-box.pq-style-1 .pq-active {
    padding: 30px;
  }
  .pq-service-box-section-page-3
    .pq-service-box.pq-style-1
    .pq-service-info
    .pq-service-description {
    width: 90%;
    margin-top: 20px;
    display: inline-block;
  }
  .pq-service-box-section-page-3 .pq-service-box.pq-style-1 .pq-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    line-height: 50px;
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 1023px) {
  .pq-service-box-section-page-3 .pq-service-box.pq-style-1 {
    grid-template-columns: 1fr;
  }
  .pq-service-box-section-page-3 .pq-service-box.pq-style-1.first-box {
    border-top: 1px solid var(--light-black);
  }
  .pq-service-box-section-page-3
    .pq-service-box.pq-style-1.pq-active
    .pq-service-box-img {
    display: none;
  }
}
@media (max-width: 767px) {
  .pq-service-box-section-page-3 {
    padding: 60px 0px;
  }
  .pq-service-box-section-page-3 .pq-service-box.pq-style-1 .pq-service-info {
    padding: 30px 15px;
  }
  .pq-service-box-section-page-3 .pq-service-box.pq-style-1 .pq-icon {
    right: 15px;
    top: 30px;
  }
}
@media (max-width: 397px) {
  .pq-service-box-section-page-3 .pq-service-box.pq-style-1 .pq-icon {
    margin-left: 0;
    line-height: 45px;
    width: 45px;
    height: 45px;
    font-size: 20px;
    top: 23px;
  }
  .pq-service-box-section-page-3 .pq-service-box.pq-style-1 .pq-service-title {
    font-size: 24px;
    line-height: 32px;
  }
}
/*================================================
  contact-form
================================================*/
.pq-contact-page-3 .pq-contact-box .pq-contact-box-icon-div i {
  font-size: 50px;
  line-height: 58px;
  color: var(--dark-color);
}
.pq-contact-page-3 .pq-contact-box .pq-contact-box-icon-div {
  padding-top: 15px;
}
.pq-contact-page-3
  .pq-contact-box
  .pq-contact-box-description
  .pq-contect-box-description-title {
  font-family: var(--body-fonts);
  font-size: 18px !important;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 26px;
}
.pq-contact-page-3
  .pq-contact-box
  .pq-contact-box-description
  .pq-contact-number {
  font-family: var(--title-fonts);
  font-size: 25px !important;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 33px;
  color: var(--dark-color);
}
.pq-contact-page-3
  .pq-contact-box
  .pq-contact-box-description
  .pq-contact-email {
  font-family: var(--title-fonts);
  font-size: 25px !important;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 33px;
  color: var(--dark-color);
}
.pq-contact-box-div {
  
  padding: 0 15px;
  padding-top: 15px;
  position: relative;
  text-align: center;
  border-radius: 30px;
}
.pq-contact-page-3 .pq-contact-box-div .pq-image-box-div img {
  width: 270px;
}
.pq-contact-page-3 .pq-form-wrapper {
  background-color: var(--grey-color);
  position: relative;
  display: flex;
  justify-content: space-evenly;
  flex-direction: column;
}
.pq-contact-page-3 .pq-form-wrapper .pq-title-description {
  font-size: 18px;
}
.pq-contact-page-3 .pq-form-wrapper .pq-contact-form .pq-form-input-div input,
textarea {
  background-color: var(--white-color);
}
.pq-contact-page-3
  .pq-form-wrapper
  .pq-contact-form
  .pq-form-input-div
  input::placeholder {
  color: var(--secondary-color);
}
.pq-contact-page-3
  .pq-form-wrapper
  .pq-contact-form
  .pq-form-input-div
  textarea::placeholder {
  color: var(--secondary-color);
}
.pq-contact-page-3 .pq-form-wrapper svg {
  z-index: -1;
}
.pq-contact-page-3 .pq-form-wrapper {
  padding: 45px;
border-radius: 30px;
}
.pq-contact-page-3 .pq-contact-section-wrapper {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 45px;
}
/*============ pq-contact-responsive =================*/
@media (max-width: 979px) {
  .pq-contact-page-3 .pq-contact-section-wrapper {
    gap: 15px;
  }
}
@media (max-width: 799px) {
  .pq-contact-page-3 .pq-contact-section-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .pq-contact-page-3 .pq-form-wrapper {
    padding: 30px 15px;
  }
  .pq-contact-page-3 {
    margin: 0;
  }
  .pq-contact-page-3 .pq-section-title .pq-title-heading {
    font-size: 42px;
    line-height: 50px;
  }
}

@media (max-width: 479px) {
  .pq-contact-page-3 .pq-section-title .pq-title-heading {
    font-size: 32px;
    line-height: 40px;
  }
}
/*================================================
Header 
================================================*/
.animated {
  animation-duration: 1.25s;
}
header#pq-header {
  position: relative;
  display: inline-block;
  width: 100%;
  clear: both;
  background: var(--white-color);
  z-index: 99;
}
header#pq-header.pq-header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
  -moz-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
  box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
}
/*============ Header Top Bar============*/
header#pq-header .pq-top-header {
  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;
  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;
  float: left;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
header#pq-header .pq-top-header .pq-header-social ul li a {
  color: var(--white-color);
  padding: 10px 20px;
  display: inline-block;
}
header#pq-header .pq-top-header ul li a:hover {
  color: var(--white-color);
  background: var(--primary-color);
}
header#pq-header .pq-top-header .pq-header-social ul li:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
/*============Logo============*/
header#pq-header .pq-bottom-header .navbar .navbar-brand {
  line-height: 65px;
}
header#pq-header .pq-bottom-header .navbar .navbar-brand img {
  height: 65px;
  border-radius: 0;
  width: auto;
}
/*============ Header Navbar Bar ============*/
header#pq-header .pq-bottom-header {
  min-height: 100px;
}

header#pq-header .pq-bottom-header .navbar {
  padding: 0 20px;
}

header#pq-header .pq-bottom-header .navbar .pq-menu-contain {
  width: 100%;
  display: flex;
  justify-content: center;
}

header#pq-header .pq-bottom-header .navbar .navbar-nav {
  justify-content: center;
  position: relative;
}

header#pq-header .pq-bottom-header .navbar .pq-menu-contain .navbar-nav:before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(
      90deg,
      var(--border-light-black) 50%,
      transparent 0
    )
    repeat-x;
  background-size: 15px 2.2px;
  background-position: 0 0;
  position: absolute;
  bottom: 15%;
  left: 0;
}
header#pq-header .pq-bottom-header .navbar .navbar-nav li {
  position: relative;
  float: left;
  margin-right: 30px;
  color: var(--dark-color);
  line-height: 90px;
  font-weight: 400;
  font-family: var(--body-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: 400;
  padding-left: 20px;
  font-size: 18px;
  text-transform: uppercase;
  line-height: 22px;
  text-decoration: none;
  letter-spacing: 1px;
}
header#pq-header .pq-bottom-header .navbar .navbar-nav li a:focus,
header#pq-header .pq-bottom-header .navbar .navbar-nav li a:hover,
header#pq-header .pq-bottom-header .navbar .navbar-nav li.current-menu-item a,
header#pq-header .pq-bottom-header .navbar .navbar-nav li.current_page_item a,
header#pq-header .pq-bottom-header .navbar .navbar-nav li:hover a,
header#pq-header
  .pq-bottom-header
  .navbar
  .navbar-nav
  li.current-menu-ancestor
  a {
  color: var(--primary-color);
}
/*============ Sub Menu Bar ============*/
header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu {
  display: none;
}
header#pq-header .pq-bottom-header .navbar .navbar-nav li:hover .sub-menu {
  display: block;
  background: var(--white-color);
  position: absolute;
  top: 100%;
  left: 0;
  padding-left: 0;
  display: inline-block;
  width: 210px;
  z-index: 999;
  -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
  -moz-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
  box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
}
header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li {
  line-height: 2;
  padding: 0;
  margin: 0;
  display: inline-block;
  width: 100%;
  color: var(--secondary-color);
}
header#pq-header .pq-bottom-header .navbar .navbar-nav li i {
  margin-left: 10px;
  font-size: 18px;
  color: var(--secondary-color);
}
header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li a {
  line-height: 2;
  text-transform: uppercase;
  padding: 10px 15px;
  display: inline-block;
  width: 100%;
  color: var(--dark-color);
  font-size: 14px;
}
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 SideBar =====*/
.pq-background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark-color);
  z-index: 100;
  opacity: 0.8;
  display: none;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}
.pq-siderbar-open .pq-background-overlay {
  display: block;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}
.pq-siderbar-open .pq-sidebar {
  right: 0px;
  opacity: 1;
}
.pq-sidebar {
  width: 410px;
  height: 100%;
  background: var(--white-color);
  opacity: 0;
  display: block;
  position: fixed;
  top: 50%;
  right: -100%;
  height: auto;
  z-index: 101;
  transform: translateY(-50%);
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}
.pq-sidebar .pq-close-btn .pq-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: var(--primary-color);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: var(--dark-color);
  font-size: 20px;
}
.pq-sidebar .pq-close-btn .pq-close:hover {
  background: var(--dark-color);
  color: var(--white-color);
}
.pq-sidebar-block {
  padding: 30px;
  height: 100%;
}
.pq-sidebar-header .pq-sidebar-logo {
  height: 50px;
  width: auto;
  margin-bottom: 30px;
}
.pq-sidebar h4.pq-sidebar-heading {
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 15px;
}
.pq-sidebar h4.pq-sidebar-title {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 15px;
}
.pq-sidebar .pq-sidebar-contact {
  display: inline-block;
  width: 100%;
  margin-bottom: 30px;
}
.pq-sidebar .pq-sidebar-contact .pq-contact-title {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 10px;
}
.pq-sidebar ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.pq-sidebar ul li {
  list-style: none;
  margin: 0;
  display: flex;
  gap: 15px;
  color: var(--dark-color);
}
.pq-sidebar-contact li a {
  color: var(--dark-color);
  display: flex;
  align-items: center;
  gap: 15px;
}
.pq-sidebar-contact li i {
  height: 18px;
  line-height: 1;
  display: inline-block;
}
.pq-sidebar-social ul {
  display: inline-block;
  width: 100%;
}
.pq-sidebar-social ul li {
  display: inline-block;
  padding: 0;
  margin: 0;
  margin-right: 5px;
}
.pq-sidebar-social ul li:last-child {
  margin-right: 0;
}
.pq-sidebar-social ul li a {
  background: var(--grey-color);
  color: var(--dark-color);
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 100%;
  display: inline-block;
  text-align: center;
  position: relative;
}
.pq-sidebar-social ul li a:hover {
  background: var(--primary-color);
  color: var(--dark-color);
}
.pq-sidebar .widget {
  background: transparent;
  padding: 0;
  border: none;
  margin-bottom: 45px;
}
.pq-sidebar .widget .wp-block-image {
  margin-bottom: 0;
}
.pq-sidebar .widget img {
  margin-bottom: 0 !important;
}
/*============ side-bar responsive ============*/
@media (max-width: 1023px) {
  .pq-sidebar {
    display: none;
  }
}

/*============ Navigation Sub Menu ============*/
header#pq-header
  .pq-bottom-header
  .navbar
  .navbar-nav
  li
  .sub-menu
  li
  > .sub-menu {
  display: none;
}
header#pq-header
  .pq-bottom-header
  .navbar
  .navbar-nav
  li
  .sub-menu
  li:hover
  > .sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  display: block;
  background: var(--white-color);
  padding-left: 0;
  display: inline-block;
  width: 200px;
}
header#pq-header
  .pq-bottom-header
  .navbar
  .navbar-nav
  li:hover
  .sub-menu
  li.menu-item-has-children
  > .pq-submenu-icon {
  opacity: 1;
  position: absolute;
  top: 12px;
  right: 15px;
  line-height: 2;
  font-size: 12px;
  color: var(--secondary-color);
  -moz-transform: rotate(270deg);
  -webkit-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
header#pq-header
  .pq-bottom-header
  .navbar
  .navbar-nav
  li
  .sub-menu
  > li.menu-item-has-children:hover
  > .pq-submenu-icon {
  color: var(--white-color);
}
header#pq-header
  .pq-bottom-header
  .navbar
  .navbar-nav
  li
  .sub-menu
  > li.menu-item-has-children:hover {
  background: var(--primary-color);
  color: var(--white-color);
}
header#pq-header
  .pq-bottom-header
  .navbar
  .navbar-nav
  li
  .sub-menu
  li.menu-item-has-children:hover
  > a {
  color: var(--white-color);
  transition: all 0s ease-in-out;
  transition: all 0s ease-in-out;
  -moz-transition: all 0s ease-in-out;
  -ms-transition: all 0s ease-in-out;
  -o-transition: all 0s ease-in-out;
  -webkit-transition: all 0s ease-in-out;
}
/*============ offcanvas ============*/
/*++++++++++++++++ Header Search +++++++++++*/
.pq-menu-search-block .offcanvas {
  position: fixed;
  z-index: 1050;
  background-color: var(--white-color) !important;
  padding: 45px;
  height: auto;
  bottom: inherit;
  transform: translateY(-100%) !important;
  transition: all 0.5s ease;
  overflow: hidden;
}
.fade {
  transition: opacity 0.5s linear;
}
.pq-menu-search-block .offcanvas.show {
  display: block;
  transform: translateY(0%) !important;
}
.pq-menu-search-block .offcanvas .btn-close {
  opacity: 1;
  background: none;
  color: var(--dark-color);
  font-size: 0;
  position: absolute;
  right: -70px;
  top: 50%;
  padding: 0;
  box-shadow: none;
  width: 54px;
  height: 54px;
  line-height: 54px;
}
.pq-menu-search-block .offcanvas .btn-close:before {
  font-size: 18px;
  content: "\e646";
  font-family: "themify";
}
.pq-menu-search-block .offcanvas .btn-close:after {
  content: "";
  background: var(--primary-color);
  width: 54px;
  height: 54px;
  line-height: 54px;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.5s ease;
  z-index: -1;
}
.pq-menu-search-block .offcanvas .btn-close:hover:after {
  background: var(--dark-color);
}
.pq-menu-search-block .offcanvas .btn-close:hover {
  color: var(--white-color);
}
.pq-menu-search-block .offcanvas .search-form {
  margin: 0 auto;
  width: 60%;
  position: relative;
}
.pq-menu-search-block .offcanvas .search-form .search-field {
  border: none;
  color: var(--secondary-color);
  background: var(--grey-color);
  padding-left: 30px;
  margin: 0;
}
.pq-menu-search-block .offcanvas .search-form #search-clear {
  display: none;
}
.pq-menu-search-block
  .offcanvas
  .search-form
  input.search-field[type="search"]::-webkit-search-decoration,
.pq-menu-search-block
  .offcanvas
  .search-form
  input.search-field[type="search"]::-webkit-search-cancel-button,
.pq-menu-search-block
  .offcanvas
  .search-form
  input.search-field[type="search"]::-webkit-search-results-button,
.pq-menu-search-block
  .offcanvas
  .search-form
  input.search-field[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}
.pq-menu-search-block .offcanvas .search-form .search-field:focus {
  color: var(--dark-color);
}
.pq-menu-search-block .offcanvas .search-form .search-submit {
  background: transparent;
  color: var(--dark-color) !important;
}
.pq-menu-search-block .offcanvas .search-form .search-submit:hover {
  color: var(--primary-color) !important;
}
.pq-menu-search-block .offcanvas .search-form .search-submit:before {
  content: "\e610";
  font-family: "themify";
  font-weight: 500;
}
.search-submit {
  background: var(--primary-color);
  border: none;
  padding: 0;
  font-size: 20px;
  position: absolute;
  text-align: center;
  color: var(--white-color);
  line-height: 54px;
  height: 54px;
  width: 54px;
  top: 0;
  right: 0;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}
.search-submit:hover {
  background: var(--dark-color);
  outline: none;
}
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  white-space: nowrap;
  height: 0px;
  width: 1px;
  overflow: hidden;
}
.screen-reader-text:focus {
  background-color: var(--grey-color);
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}
/*+++++ Header cart Sidebar +++++*/

.pq-shop-btn .pq-tools-button .pq-tools-button i {
  position: relative;
}
.pq-shop-btn .pq-tools-button .pq-tools-button {
  height: 52px;
  width: 52px;
  background-color: #1b1b1b;
}
.pq-shop-btn .pq-cart-button {
  list-style-type: none;
  margin: 0;
  padding: 0;
  position: relative;
  height: 52px;
  width: 52px;
  background-color: var(--grey-color);
  text-align: center;
}
.pq-shop-btn .pq-cart-button > a {
  color: var(--dark-color);
  position: relative;
  line-height: 50px;
  padding: 0 0 0;
  font-size: 22px;
  transform: rotateY(180deg);
}
header#pq-header.pq-header-style-2 .pq-shop-btn .pq-cart-button > a {
  color: var(--dark-color);
  line-height: 60px;
}
.pq-shop-btn .pq-cart-button .basket-item-count {
  font-size: 10px;
  font-weight: 600;
  background: var(--primary-color);
  color: var(--dark-color);
  position: absolute;
  top: 10px;
  right: -5px;
  height: 18px;
  width: 18px;
  line-height: 18px;
  text-align: center;
  border-radius: 90px;
  padding: 0 2px 0 0;
}
.pq-cart-button .offcanvas {
  padding: 0px 30px;
  border: 0;
  display: block;
  position: fixed;
  z-index: 1050;
  background-color: var(--white-color) !important;
  transform: translateX(100%) !important;
  width: 400px !important;
  transition: all 0.3s ease-in-out;
}
.pq-cart-button .offcanvas.show {
  transform: none !important;
}
.pq-cart-button .offcanvas .pq-cart-header {
  margin-left: -30px;
  margin-right: -30px;
}
.pq-cart-button .offcanvas .pq-cart-header h3.modal-title {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  padding: 15px 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.pq-cart-button .widget_shopping_cart_content {
  height: calc(100vh - 275px);
}
.pq-cart-button .widget_shopping_cart_content .product_list_widget {
  height: 100%;
  overflow: auto;
}
.pq-cart-button ul.product_list_widget li.mini_cart_item {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
  display: inline-block;
  width: 100%;
  position: relative;
}
.pq-cart-button ul.cart_list li img,
ul.product_list_widget li img {
  width: 80px;
  float: left;
  margin-left: 0;
  margin-right: 15px;
}
.pq-cart-button ul.cart_list li a {
  display: block;
  color: var(--dark-color);
  text-decoration: none;
  font-weight: 600;
  padding-right: 30px;
  line-height: normal;
}
.pq-cart-button ul.product_list_widget a.remove {
  float: right;
  right: 15px;
  top: 3px;
  left: inherit;
  margin: auto 0;
  font-size: 20px;
  font-weight: 400;
  position: absolute;
  padding: 0;
  line-height: 1;
  height: 1em;
  width: 1em;
  color: var(--secondary-color);
  text-align: center;
  background: transparent;
}
.pq-cart-button ul.product_list_widget a.remove:hover {
  color: var(--dark-color);
}
.pq-cart-button .woocommerce-mini-cart__total.total {
  margin-bottom: 15px;
  margin-top: 15px;
}
.pq-cart-button .woocommerce-mini-cart__total.total strong {
  font-weight: 600;
  color: var(--dark-color);
}
.pq-cart-button
  .woocommerce-mini-cart__total.total
  .woocommerce-Price-amount.amount {
  float: right;
  color: var(--dark-color);
  font-weight: 600;
}
.pq-cart-button .woocommerce-mini-cart__buttons .button {
  display: block;
  text-align: center;
  margin-bottom: 10px;
  border: 1px solid transparent;
}
.pq-cart-button .woocommerce-mini-cart__buttons .button:hover {
  background: var(--dark-color);
}
.pq-cart-button .woocommerce-mini-cart__buttons .button.checkout {
  margin-bottom: 0;
  background: none;
  border: 1px solid var(--dark-color);
  color: var(--dark-color);
}
.pq-cart-button .woocommerce-mini-cart__buttons .button.checkout:hover {
  background: var(--dark-color);
  border-color: var(--dark-color);
  color: var(--white-color);
}
.pq-cart-button p {
  margin-bottom: 0;
}
.pq-cart-button .btn-close {
  line-height: 1;
  padding: 0;
  color: var(--dark-color);
  font-size: 20px;
  float: right;
  opacity: 1;
  background: transparent;
  padding-top: 20px;
  box-shadow: none;
}
/*============ top-header ============*/
.pq-top-header {
  background-color: var(--dark-color);
  color: var(--grey-color);
  padding: 0 30px;
}
.top-header-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 120px;
  padding: 10px 0px;
  font-size: 18px;
}
.pq-header-social {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--grey-color);
}
.pq-header-social a {
  color: var(--white-color);
}
.pq-header-social a:hover {
  color: var(--primary-color);
}
.pq-header-contact {
  display: flex;
  gap: 45px;
  align-items: center;
  font-size: 16px;
  justify-content: end;
  line-height: 24px;
}
.pq-header-contact a:hover {
  color: var(--primary-color);
}
.pq-header-contact a {
  color: var(--grey-color);
}
.pq-header-contact p {
  margin: 0;
  color: var(--white-color);
}
.pq-header-contact i {
  margin-right: 5px;
}
.pq-btn-div {
  padding: 15px;
}
/*============ Top Header responsive ============*/
@media (max-width: 1699px) {
  .top-header-row {
    grid-template-columns: 2fr 3fr 3fr;
    gap: 120px;
  }
}
@media (max-width: 1679px) {
  .top-header-row {
    grid-template-columns: 2fr 3fr 3fr;
    gap: 90px;
    padding: 10px 0px;
    font-size: 18px;
  }
}
@media (max-width: 1499px) {
  .top-header-row {
    grid-template-columns: 1fr 2fr 2fr;
    gap: 45px;
    padding: 10px 0px;
    font-size: 18px;
  }
  .pq-header-contain {
    text-align: center;
  }
}
@media (max-width: 1365px) {
  .top-header-row {
    gap: 30px;
  }
}
@media (max-width: 1279px) {
  .pq-header-contain {
    display: none;
  }
  .top-header-row {
    grid-template-columns: 1fr auto 2fr;
    gap: 45px;
    padding: 10px 0px;
    font-size: 18px;
  }
  .pq-top-header {
    padding: 0 15px;
  }
}
@media (max-width: 799px) {
  .top-header-row {
    grid-template-columns: 1fr auto 2fr;
    gap: 15px;
    padding: 10px 0px;
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .pq-top-header {
    display: none;
  }
}
/*============ bottom-header ============*/
header .pq-bottom-header.pq-header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  background: var(--white-color);
  -webkit-box-shadow: 0px 5px 15px 0px rgba(26, 26, 26, 0.1);
  -moz-box-shadow: 0px 5px 15px 0px rgba(26, 26, 26, 0.1);
  box-shadow: 0px 5px 15px 0px rgba(26, 26, 26, 0.1);
  border-bottom: none;
  transition: var(--transition);
}
header .pq-bottom-header .pq-header-right {
  display: flex;
  gap: 15px;
  align-items: center;
}
header .pq-bottom-header .pq-header-right div i {
  color: var(--dark-color);
}
header#pq-header .pq-bottom-header .navbar .navbar-nav li i {
  font-size: 12px;
  line-height: 20px;
}
header .pq-bottom-header .pq-cart-icon sub {
  background-color: var(--primary-color);
  color: var(--dark-color);
  border-radius: 100%;
  padding: 1px 5px;
  margin-left: -10px;
}
header#pq-header .pq-bottom-header .navbar .navbar-nav .menu-item a::after {
  content: "";
  width: 0%;
  position: absolute;
  bottom: 15%;
  left: 0%;
  border: 2px solid transparent;
}
header#pq-header
  .pq-bottom-header
  .navbar
  .navbar-nav
  .menu-item
  a:hover::after {
  left: 0;
  width: 100%;
  transition: var(--transition);
  border-bottom: 2px solid var(--dark-color);
}
header#pq-header
  .pq-bottom-header
  .navbar
  .navbar-nav
  .menu-item
  .sub-menu
  .menu-item
  a::after {
  border-bottom: none;
}
header#pq-header
  .pq-bottom-header
  .navbar
  .navbar-nav
  .menu-item
  .sub-menu
  .menu-item-has-children
  a::after {
  border-bottom: none;
}
header .pq-bottom-header .pq-header-icon,
.pq-cart-icon {
  background-color: var(--grey-color);
  padding: 10px 15px;
}
header .pq-bottom-header .pq-menu-search-block {
  position: relative;
}
header .pq-bottom-header .pq-menu-search-block {
  width: 52px;
  height: 52px;
  background-color: var(--grey-color);
  text-align: center;
  line-height: 52px;
}
header .pq-bottom-header .svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 200ms linear;
}
.pq-carrot-icon {
  position: absolute;
  right: 15px;
  top: 15px;
  color: var(--dark-color);
}
.before-carrrot-icon::before {
  content: "›";
  position: absolute;
  right: 15px;
  font-size: 18px;
  font-weight: 600;
}

.pq-menu-contain .navbar-nav .menu-item a::before {
  content: " ";
  height: 10px;
  width: 10px;
  background-color: var(--primary-color);
  position: absolute;
  bottom: 40px;
  left: 0;
  opacity: 0;
  scale: 0;
}
.navbar-nav .menu-item.current-menu-item a::before {
  opacity: 1;
  scale: 1;
}
.navbar-nav .menu-item.current-menu-item .sub-menu .menu-item a::before {
  opacity: 0;
}
.pq-menu-contain .navbar-nav .menu-item a:hover::before {
  content: " ";
  height: 10px;
  width: 10px;
  background-color: var(--primary-color);
  position: absolute;
  bottom: 40px;
  left: 0;
  opacity: 0;
  transition: var(--transition);
  scale: 1;
}
.pq-menu-contain
  .navbar-nav
  .menu-item
  .sub-menu
  .menu-item:hover.menu-item
  a::before {
  opacity: 0;
}
.pq-menu-contain
  .navbar-nav
  .menu-item
  .sub-menu
  .menu-item-has-children:hover
  a::before {
  opacity: 0;
}
.pq-menu-contain .navbar-nav .menu-item a:hover::before {
  opacity: 1;
  color: var(--primary-color);
}
.pq-toggle-button {
  background-color: var(--primary-color);
}
.pq-toggle-button a svg rect {
  transition: all 0.3s ease-in-out;
}
.pq-toggle-button a svg rect:nth-child(1) {
  transform: translate(4px, 4px);
}
.pq-toggle-button a svg rect:nth-child(2) {
  transform: translate(4px, -4px);
}
.pq-toggle-button a svg rect:nth-child(3) {
  transform: translate(-4px, 4px);
}
.pq-toggle-button a svg rect:nth-child(4) {
  transform: translate(-4px, -4px);
}

.pq-toggle-button a:hover rect:nth-child(1) {
  transform: translate(0, 0);
}
.pq-toggle-button a:hover rect:nth-child(2) {
  transform: translate(0, 0);
}
.pq-toggle-button a:hover rect:nth-child(3) {
  transform: translate(0, 0);
}
.pq-toggle-button a:hover rect:nth-child(4) {
  transform: translate(0, 0);
}

/*============ bottom Header responsive ============*/
@media (max-width: 1399px) {
  header#pq-header .pq-bottom-header .navbar .navbar-nav li {
    margin-right: 0px;
  }
  header .pq-bottom-header .pq-header-right {
    gap: 15px;
  }
}
@media (max-width: 1279px) {
  header .pq-bottom-header .pq-btn-container {
    display: none;
  }
  .pq-header-page-2 .pq-header-right .pq-header-call-block {
    display: none;
  }
  header#pq-header .pq-bottom-header .navbar .navbar-nav li {
    padding-right: 5px;
  }
}
@media (max-width: 1023px) {
  header .pq-bottom-header .pq-btn-container {
    display: none;
  }
  .pq-header-page-2 .pq-header-right .pq-header-call-block {
    display: block;
  }
  .pq-toggle-button {
    display: none;
  }
  header#pq-header .pq-bottom-header {
    min-height: 90px;
  }
}
@media (max-width: 991px) {
  header#pq-header .pq-bottom-header .navbar .navbar-nav li:hover .sub-menu {
    width: 100%;
    background-color: var(--grey-color);
  }
  header#pq-header .pq-bottom-header .navbar .navbar-nav li {
    line-height: 75px;
  }
  .pq-menu-contain .navbar-nav .menu-item a:hover::before {
    bottom: 33px;
  }
  header#pq-header .pq-bottom-header .navbar .navbar-nav .pq-carrot-icon {
    transform: rotate(90deg);
  }
  header#pq-header
    .pq-bottom-header
    .navbar
    .navbar-nav
    li
    .sub-menu
    li:hover
    > .sub-menu {
    top: 100%;
    left: 0;
    width: 100%;
  }
  header#pq-header .pq-bottom-header .navbar .pq-menu-contain {
    display: inline-block;
  }
  header#pq-header
    .pq-bottom-header
    .navbar
    .pq-menu-contain
    .navbar-nav:before {
    content: none;
  }
  header#pq-header
    .pq-bottom-header
    .navbar
    .navbar-nav
    .menu-item
    a:hover::after {
    content: none;
  }
  header#pq-header .pq-bottom-header .navbar {
    padding: 0;
    overflow: auto;
  }
  .pq-hero-main-section {
    margin: 0;
  }
  header#pq-header .pq-bottom-header .navbar .navbar-nav li:hover .sub-menu {
    padding-left: 15px;
  }
  header#pq-header
    .pq-bottom-header
    .navbar
    .pq-menu-contain
    .navbar-nav:before {
    display: none;
  }
  .navbar-nav .menu-item.current-menu-item a::before {
    opacity: 0;
    scale: 1;
  }
}
/*============ toggle-button ============*/
.navbar-toggler span svg rect:nth-child(1) {
  transform: translate(4px, 4px);
}
.navbar-toggler span svg rect:nth-child(2) {
  transform: translate(4px, -4px);
}
.navbar-toggler span svg rect:nth-child(3) {
  transform: translate(-4px, 4px);
}
.navbar-toggler span svg rect:nth-child(4) {
  transform: translate(-4px, -4px);
}
.navbar-toggler {
  height: 54px;
  width: 54px;
  padding: 0;
  margin-left: 30px;
}
/*============ Nav-Bar home page 2 =================*/
.pq-header-page-2 .pq-header-right .pq-header-call-block {
  width: max-content;
}
.pq-header-page-2 .pq-header-right .pq-header-call-block a {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--dark-color);
}
.pq-header-page-2 .pq-header-right .pq-header-call-block .pq-icon {
  height: 52px;
  width: 52px;
  background-color: var(--grey-color);
  text-align: center;
  padding-top: 12px;
  font-size: 20px;
}
.pq-header-page-2 .pq-header-right .pq-menu-search-block {
  flex-shrink: 0;
}

/*============   navbar home page 2 responsive =================*/
@media (max-width: 1679px) {
  .pq-header-page-2 .pq-header-right .pq-header-call-block {
    display: none;
  }
  header .pq-bottom-header .pq-header-right {
    gap: 15px;
  }
}
@media (max-width: 1279px) {
  .pq-header-page-2 .navbar {
    display: flex;
    justify-content: normal;
  }
}
@media (max-width: 1023px) {
  .pq-header-page-2 .pq-header-right .pq-header-call-block {
    display: none;
  }
}
@media (max-width: 479px) {
  header .pq-bottom-header .pq-header-right {
    display: none;
  }
  header#pq-header .pq-bottom-header .navbar {
    justify-content: space-between;
  }
}
/*============ Nav-Bar page-3 =================*/
header#pq-header
  .pq-bottom-header.pq-header-page-3
  .navbar
  .navbar-nav
  .menu-item
  a:hover::after {
  left: 0;
  width: 100%;
  transition: var(--transition);
  border-bottom: 2px solid var(--white-color);
}
header#pq-header
  .pq-bottom-header.pq-header-page-3
  .navbar
  .pq-menu-contain
  .navbar-nav:before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--white-color) 50%, transparent 0)
    repeat-x;
  background-size: 15px 2.2px;
  background-position: 0 0;
  position: absolute;
  bottom: 15%;
  left: 0;
}
header#pq-header
  .pq-bottom-header.pq-header-page-3
  .navbar
  .navbar-nav
  li
  .sub-menu
  li {
  background-color: var(--grey-color);
}
header#pq-header
  .pq-bottom-header.pq-header-page-3
  .navbar
  .navbar-nav
  .menu-item:hover
  a::after {
  border-bottom: 2px solid var(--primary-color);
}
.pq-bottom-header.pq-header-page-3 .pq-header-right {
  gap: 20px;
}
.pq-bottom-header.pq-header-page-3.pq-header-sticky.animated.fadeInDown.animate__faster.pq-header-right
  .pq-header-call-block
  a {
  color: var(--white-color);
}
.pq-bottom-header.pq-header-page-3.pq-header-sticky {
  background-color: var(--dark-color);
  color: var(--white-color);
}
.pq-bottom-header.pq-header-page-3 .pq-bottom-header.pq-header-sticky {
  transition: var(--transition);
}
.pq-header-page-3 .pq-header-right .pq-header-call-block {
  width: max-content;
}
.pq-header-page-3 .pq-header-right .pq-header-call-block a {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--white-color);
}
.pq-header-page-3 .pq-header-right .pq-header-call-block .pq-icon {
  height: 52px;
  width: 52px;
  background-color: var(--grey-color);
  text-align: center;
  padding-top: 12px;
  font-size: 20px;
}
.pq-header-page-3 .pq-header-right .pq-menu-search-block {
  flex-shrink: 0;
}
.pq-header-page-3 .pq-header-right {
  gap: 15px;
}
.pq-header-page-3 {
  background-color: var(--dark-color);
  color: var(--white-color);
  padding: 0 30px;
}
header#pq-header .pq-bottom-header.pq-header-page-3 .navbar .navbar-nav li a {
  color: var(--white-color);
}
header#pq-header .pq-bottom-header.pq-header-page-3 .navbar .navbar-nav li i {
  color: var(--white-color);
  font-size: 12px;
  line-height: 20px;
}
header#pq-header
  .pq-bottom-header.pq-header-page-3
  .menu-item
  .sub-menu
  .menu-item-has-children
  i {
  color: var(--dark-color);
  font-size: 12px;
  line-height: 20px;
}
header#pq-header
  .pq-bottom-header
  .navbar
  .navbar-nav
  .menu-item
  .sub-menu
  .menu-item
  a::after {
  border-bottom: none;
}
header#pq-header
  .pq-bottom-header
  .navbar
  .navbar-nav
  .menu-item
  .sub-menu
  .menu-item-has-children
  a::after {
  border-bottom: none;
}
/*============   navbar home page 3 responsive =================*/
@media (max-width: 1499px) {
  .pq-bottom-header.pq-header-page-3 .pq-header-right {
    gap: 15px;
  }
  .pq-bottom-header.pq-header-page-3 .navbar {
    padding: 0 !important;
  }
  .pq-bottom-header.pq-header-page-3 .navbar .navbar-nav li {
    padding-right: 15px !important;
  }
  .pq-header-page-3 {
    padding: 0;
  }
  .pq-header-page-3 .pq-header-right .pq-header-call-block {
    display: none;
  }
}
@media (max-width: 1279px) {
  .pq-bottom-header.pq-header-page-3 .pq-header-right {
    gap: 30px;
    margin-left: auto;
  }
  .pq-header-page-3 .navbar {
    display: flex;
    justify-content: normal;
  }
}
@media (max-width: 1099px) {
  .pq-bottom-header.pq-header-page-3 .pq-header-right {
    gap: 15px;
  }
  .pq-bottom-header .navbar-toggler {
    margin-left: 15px;
    position: absolute;
    top: 18px;
    right: 0px;
  }
}
@media (max-width: 991px) {
  header#pq-header
    .pq-bottom-header.pq-header-page-3
    .navbar
    .navbar-nav
    li
    .sub-menu
    li.menu-item-has-children {
    background-color: var(--dark-color);
  }
  header#pq-header
    .pq-bottom-header.pq-header-page-3
    .navbar
    .navbar-nav
    li:hover
    .sub-menu
    li.menu-item-has-children
    .sub-menu {
    background-color: var(--dark-color);
  }
  header#pq-header
    .pq-bottom-header.pq-header-page-3
    .navbar
    .navbar-nav
    li
    .sub-menu
    li
    a {
    color: var(--white-color);
  }
  header#pq-header
    .pq-bottom-header.pq-header-page-3
    .navbar
    .navbar-nav
    li
    .sub-menu {
    background-color: var(--dark-color);
  }

  header#pq-header
    .pq-bottom-header.pq-header-page-3
    .navbar
    .navbar-nav
    .pq-carrot-icon {
    right: 30px;
  }
  .pq-bottom-header .pq-header-right {
    position: absolute;
    top: 18px;
    right: 70px;
  }
  header#pq-header
    .pq-bottom-header.pq-header-page-3
    .navbar
    .navbar-nav
    li
    .sub-menu
    li {
    background-color: var(--dark-color);
  }
  header#pq-header
    .pq-bottom-header.pq-header-page-3
    .navbar
    .pq-menu-contain
    .navbar-nav:before {
    display: none;
  }
  header#pq-header
    .pq-bottom-header.pq-header-page-3
    .navbar
    .navbar-nav
    li
    .sub-menu
    li
    a {
    color: var(--white-color);
  }
  header#pq-header
    .pq-bottom-header.pq-header-page-3
    .navbar
    .navbar-nav
    li
    .sub-menu
    li.menu-item-has-children {
    background-color: var(--dark-color);
  }
  header#pq-header
    .pq-bottom-header.pq-header-page-3
    .menu-item
    .sub-menu
    .menu-item-has-children
    i {
    color: var(--white-color);
  }
}
/*================================================
Border svg
================================================*/
.svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 200ms linear;
}
.svg path {
  stroke-dasharray: 8px, 8px;
  stroke-width: 4px;
  stroke: var(--dark-color);
}
/*================================================
footer
================================================*/
footer {
  background: linear-gradient(to right, #f08000, #e72d17);;
}
.pq-top-footer {
  border-bottom: 1px solid var(--secondary-color);
}
.pq-phone-number-div a {
  color: var(--white-color);
}
.pq-phone-number-div p {
  margin: 0;
  font-family: var(--title-fonts);
  color: var(--white-color);
}
.pq-footer-contect-wrapper-left {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--white-color);
  padding: 30px 0px;
  justify-content: start;
}
.pq-footer-contect-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--white-color);
  padding: 30px 0px;
  justify-content: center;
}
.pq-phone-icon-div i {
  font-size: 40px;
  color: var(--primary-color);
  font-weight: light;
}
.pq-footer-logo {
  height: 180px;
  width: auto;
}
.pq-mid-footer-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 45px 0 30px 0;
  gap: 45px;
}
.mid-footer-wrapper-left {
  color: var(--white-color);
  display: flex;
  flex-direction: column;
    justify-content: space-between;

}
.mid-footer-wrapper-left p {
  color: var(--white-color);
  padding: 30px 0;
}
.mid-footer-conference-wrapper h5 {
  color: var(--white-color);
  padding: 15px 0;
  font-size: 26px;
}
.about-list i {
  color: white;
}
.about-list a {
  margin: 0;
  padding-bottom: 10px;
  color: white;
}
.about-list:hover a {
  color: var(--primary-color);
}
.about-list:hover i {
  color: var(--primary-color);
}
.about-list {
  position: relative;
}
.about-list a::after {
  content: "\e64a";
  font-family: "themify";
  transform: rotate(180deg);
  position: absolute;
  left: -20px;
  font-size: 16px;
}
.mid-footer-about-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.mid-footer-about-list ul li {
  margin-bottom: 15px;
}
.mid-footer-about-list ul li a:hover {
  padding-left: 10px;
}
.right-footer-conference h5 {
  color: var(--white-color);
  padding: 15px 0;
  font-size: 26px;
}
.right-footer-conference p {
  color: var(--white-color);
}
.mid-right-footer-wrapper form {
  display: flex;
  align-items: center;
}
.mid-right-footer-wrapper form input {
  margin: 0;
  border-radius: 0;
  background-color: #272727;
  border: 0;
  color: #757563;
}
.mid-right-footer-wrapper form input::placeholder {
  color: #757563;
}
.footer-pq-right-btn a {
  color: var(--dark-color);
  font-size: 25px;
}
.footer-pq-right-btn {
  background-color: var(--primary-color);
  line-height: normal;
}
.footer-pq-right-btn {
  padding: 10px 20px;
}
.pq-bottom-footer-wrapper {
  display: flex;
  justify-content: space-between;
  color: var(--white-color);
}
.pq-bottom-footer {
  padding: 15px 0;
  border-top: 1px solid var(--secondary-color);
}
.footer-socials {
  display: flex;
  gap: 20px;
}
.footer-socials a {
  color: var(--white-color);
  font-size: 20px;
}
.footer-socials a:hover {
  color: var(--primary-color);
}
.border-right {
  border-right: 1px solid var(--secondary-color);
}
/*============   footer responsive =================*/
@media (max-width: 991px) {
  .pq-footer-contect-wrapper-left {
    justify-content: start;
    padding: 15px 0;
  }
  .pq-footer-contect-wrapper {
    justify-content: start;
    padding: 15px 0;
  }
  .mid-footer-wrapper-left p {
    margin: 0;
    padding: 15px 0;
  }
  .pq-mid-footer-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    margin: 15px 0;
    gap: 0px;
  }
  .pq-bottom-footer-wrapper {
    display: block;
    color: var(--white-color);
    text-align: center;
  }
  .mid-footer-conference-wrapper h5 {
    font-size: 24px;
    line-height: 32px;
    padding: 15px 0;
  }
  .mid-footer-about-list ul {
    margin: 0;
  }
  .right-footer-conference p {
    margin-bottom: 15px;
  }
  .footer-socials {
    display: flex;
    gap: 20px;
    justify-content: center;
  }
  .mid-footer-about-list {
    padding-left: 0;
  }
  .pq-mid-footer-wrapper form {
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .pq-footer-logo {
    height: 80px;
    width: auto;
  }
  .mid-footer-wrapper-left p {
    padding: 15px 0;
    margin: 0;
  }
}
@media (max-width: 479px) {
  footer {
    font-size: 16px;
    line-height: 24px;
  }
  .mid-footer-about-list {
    padding-left: 0px;
  }
}
/*================================================
OWL Carousel
================================================*/
.owl-carousel .owl-nav.disabled {
  display: none;
}
.owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  cursor: inherit;
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
  display: none;
  outline: none;
  text-align: center;
  text-indent: inherit;
  cursor: pointer;
  position: relative;
  font-size: 24px;
  width: 50px;
  height: 50px;
  line-height: 2;
  background: var(--primary-color);
  padding: 0 !important;
  margin: 0 5px;
  border: none;
  border-radius: 100%;
  color: var(--white-color);
}
.owl-carousel .owl-nav button:hover {
  color: var(--white-color);
  background: var(--dark-color);
}
.pq-dark-bg .owl-carousel .owl-nav button:hover {
  color: var(--primary-color);
  background: var(--white-color);
}
/*++++++++++++++++ Dots +++++++++++*/
.owl-carousel .owl-dots.disabled {
  display: none;
}
.owl-carousel .owl-dots {
  margin-top: 30px;
  line-height: normal;
  position: relative;
  width: 100%;
  text-indent: inherit;
  text-align: center;
  cursor: pointer;
}
.owl-carousel .owl-dots .owl-dot {
  box-shadow: none;
  outline: none;
  background: transparent;
  border: 1px solid var(--dark-color);
  display: inline-block;
  padding: 0;
  margin: 0px 5px;
  height: 15px;
  width: 15px;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  cursor: pointer;
  border-radius: 100%;
}
.owl-carousel .owl-dots .owl-dot span {
  display: none;
}
.owl-carousel .owl-dots .owl-dot:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  opacity: 1;
}
.owl-carousel .owl-dots .owl-dot.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  opacity: 1;
}
/*================================================
  testimonial-section
================================================*/
.pq-testimonial-section {
  text-align: start;
  margin: 0;
}
.pq-testimonial-section .pq-testimonial-team-wrapper .pq-testimonial-team img {
  width: 40%;
}
.pq-testimonial-section .pq-testimonial-team-wrapper .pq-testimonial-team {
  margin: 30px 0;
}
.pq-testimonial-box-slider .pq-testimonial-box .pq-testimonial-star {
  display: flex;
  gap: 5px;
  color: var(--star-color);
  font-size: 20px;
  line-height: 28px;
}
.pq-testimonial-box-slider .pq-testimonial-box .pq-testimonial-discription {
  margin-top: 30px;
  font-size: 20px;
  line-height: 2;
}

.pq-testimonial-box-slider
  .pq-testimonial-box
  .pq-testimonial-author-designation {
  text-transform: uppercase;
  font-size: 16px;
  line-height: 24px;
}
.pq-testimonial-box-slider .pq-testimonial-box .pq-testimonial-author-name {
  text-transform: capitalize;
  padding: 5px 0;
  font-size: 28px;
  line-height: 36px;
}
.pq-testimonial-box-slider .item {
  position: relative;
  padding-top: 45px;
  align-items: center;
}
.pq-testimonial-box-slider .pq-testimonial-box {
  padding: 0 30px;
}
.pq-testimonial-box-slider .pq-testimonial-box .pq-quote {
  color: var(--primary-color);
  font-size: 65px;
  line-height: 73px;
  transform: rotate(180deg);
  position: absolute;
  right: 90px;
  top: -15px;
}
.pq-testimonial-section-wrapper {
  border: 2px dashed var(--dark-color);
  background-color: var(--white-color);
  position: relative;
  background-image: url(../images/page1/testimonial/background/map_img_001.webp);
  background-size: contain;
  background-repeat: no-repeat;
}
.pq-testimonial-box-slider .owl-carousel {
  margin: 0;
}
.pq-testimonial-section {
  background-color: var(--primary-color);
  overflow: hidden;
  padding: 130px 0 130px 0;
}
.pq-testimonial-box-slider.pq-style-1 .owl-carousel .owl-dots {
  text-align: end;
  margin-top: -50px;
  padding-right: 60px;
}
.pq-testimonial-team-wrapper {
  border-right: 3px dashed var(--light-black);
  margin: 60px 0;
  padding: 60px 0px 60px 45px;
  position: relative;
}
.pq-testimonial-section
  .pq-testimonial-box-slider.pq-style-1
  .owl-carousel
  .owl-dots {
  padding-bottom: 0px;
}
.pq-testimonial-box-slider.pq-style-1 .owl-carousel .owl-dots .owl-dot {
  background-color: var(--dark-color);
  height: 10px;
  width: 10px;
  margin: 0px 8px;
}
.pq-testimonial-box-slider.pq-style-1 .owl-carousel .owl-dots .owl-dot.active {
  border: none;
  background-color: var(--dark-color);
  position: relative;
  border-radius: 100%;
}
.pq-testimonial-box-slider.pq-style-1
  .owl-carousel
  .owl-dots
  .owl-dot.active
  span {
  content: "";
  width: 28px;
  height: 28px;
  border: 1px dashed var(--dark-color);
  border-radius: 100%;
  position: absolute;
  top: -9px;
  left: -9px;
  display: block;
  transition: var(--transition);
}
.pq-testimonial-section-wrapper::after {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  border-radius: 100%;
  color: var(--dark-color);
  background-color: var(--dark-color);
  right: -6px;
  bottom: -5px;
}
.pq-testimonial-section-wrapper::before {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  border-radius: 100%;
  background-color: var(--dark-color);
  top: 0;
  right: -6px;
  top: -5px;
}
.wrapper-dot::before {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  border-radius: 100%;
  background-color: var(--dark-color);
  left: -6px;
  top: -5px;
}
.wrapper-dot::after {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  border-radius: 100%;
  background-color: var(--dark-color);
  left: -6px;
  bottom: -5px;
}
/*============   testimonial-section page 1 responsive =================*/
@media (max-width: 1279px) {
  .pq-testimonial-section {
    padding: 90px 0;
  }
  .pq-testimonial-section .pq-testimonial-team-wrapper {
    margin: 0;
  }
  .pq-testimonial-section .owl-carousel .owl-nav button.owl-prev,
  .owl-carousel .owl-nav button.owl-next {
    display: none;
  }
  .pq-testimonial-section
    .pq-testimonial-box-slider.pq-style-1
    .owl-carousel
    .owl-dots {
    padding-bottom: 60px;
  }
  .pq-testimonial-box-slider .pq-testimonial-box .pq-quote {
    top: 5px;
    right: 60px;
  }
  .pq-testimonial-box-slider .item {
    padding-top: 75px;
  }
}
@media (max-width: 1099px) {
  .pq-testimonial-section
    .pq-testimonial-box-slider.pq-style-1
    .owl-carousel
    .owl-dots {
    padding-bottom: 90px;
  }
}
@media (max-width: 991px) {
  .pq-testimonial-section-wrapper {
    margin: 0;
  }
  .pq-testimonial-box-slider .pq-testimonial-box .pq-quote {
    top: 5px;
    right: 45px;
  }
}
@media (max-width: 767px) {
  .pq-testimonial-section .pq-testimonial-team-wrapper {
    margin: 0;
    padding: 30px 15px 0px 30px;
  }
  .pq-testimonial-section
    .pq-testimonial-box-slider.pq-style-1
    .owl-carousel
    .owl-dots {
    padding-bottom: 60px;
  }
  .pq-testimonial-box-slider.pq-style-1 .owl-carousel .owl-dots {
    padding-right: 45px;
  }
  .pq-testimonial-section {
    padding: 60px 0 60px 0;
  }
  .pq-testimonial-box-slider .pq-testimonial-box {
    padding: 0;
  }
}

@media (max-width: 479px) {
  .pq-testimonial-section .pq-testimonial-team-wrapper {
    margin: 0;
    padding: 45px 0 0 15px;
  }
  .pq-testimonial-section .pq-testimonial-team-wrapper .pq-title-heading {
    padding: 0;
  }
  .pq-testimonial-section .pq-testimonial-box-slider .item {
    padding-top: 30px;
    padding-left: 5px;
  }
  .pq-testimonial-box-slider .pq-testimonial-box .pq-quote {
    top: -15px;
    right: 15px;
    font-size: 44px;
    line-height: 52px;
  }
  .pq-testimonial-box-slider.pq-style-1 .owl-carousel .owl-dots {
    padding-right: 15px;
  }
  .pq-testimonial-box-slider .pq-testimonial-box {
    padding: 0px 15px;
  }
  .pq-testimonial-section-wrapper {
    margin: 0;
  }
}
/*================================================
 testimonial-home-page-2
================================================*/
.pq-testimonial-2 {
  background-color: #f3ecff;
  margin: 0 30px;
}
.pq-testimonial-2 .pq-title-heading {
  color: var(--dark-color);
}
.pq-testimonial-2 .pq-section-title .pq-title .pq-title-description {
  color: var(--dark-color);
}
.pq-testimonial-2 .pq-title-heading .pq-title-last-word {
  color: var(--white-color);
}
.pq-testimonial-2 .pq-btn-container {
  margin-top: 30px;
}
.pq-testimonial-2
  .pq-section-title
  .pq-title-heading
  .pq-title-last-word::before {
  background-color: var(--white-color);
}
.pq-testimonial-2
  .pq-section-title
  .pq-title-heading
  .pq-title-last-word::after {
  background-color: var(--white-color);
}
.pq-testimonial-2
  .pq-section-title
  .pq-title-heading
  .pq-title-last-word
  .pq-svg-dot::after {
  background-color: var(--white-color);
}
.pq-testimonial-2
  .pq-section-title
  .pq-title-heading
  .pq-title-last-word
  .pq-svg-dot::before {
  background-color: var(--white-color);
}
.pq-testimonial-carousel-2-wrapper {
  margin-right: -120px;
}
.pq-testimonial-carousel-2-wrapper .pq-testimonial-box {
  background-color: var(--white-color);
  padding: 30px;
  position: relative;
}
.pq-testimonial-carousel-2-wrapper .pq-testimonial-box svg path {
  stroke-dashoffset: 0 !important;
}
.pq-testimonial-carousel-2-wrapper
  .pq-testimonial-box
  .pq-testimonial-content
  .pq-testimonial-description {
  margin-bottom: 30px;
}
.pq-testimonial-carousel-2-wrapper
  .pq-testimonial-box
  .pq-testimonial-content
  .pq-quotes
  i {
  font-size: 46px;
  line-height: 54px;
}
.pq-testimonial-carousel-2-wrapper
  .pq-testimonial-box
  .pq-testimonial-content
  .pq-quotes {
  margin-bottom: 15px;
}
.pq-testimonial-carousel-2-wrapper
  .pq-testimonial-box
  .pq-testimonial-content
  .pq-testimonial-media {
  display: grid;
  gap: 30px;
  align-items: center;
}
.pq-testimonial-carousel-2-wrapper
  .pq-testimonial-box
  .pq-testimonial-content
  .pq-testimonial-media
  .pq-author-name {
  text-transform: capitalize;
}
.pq-testimonial-carousel-2-wrapper
  .pq-testimonial-box
  .pq-testimonial-content
  .pq-testimonial-media
  .pq-testimonial-author-designation {
  text-transform: uppercase;
}
.pq-testimonial-carousel-2-wrapper .owl-carousel .owl-dots .owl-dot.active {
  display: none;
}
.pq-testimonial-carousel-2-wrapper .owl-carousel .owl-dots {
  display: none;
}
.pq-testimonial-carousel-2-wrapper .owl-carousel {
  margin: 0;
}
/*============  testimonial-page-2 responsive =================*/
@media (max-width: 1699px) {
  .pq-testimonial-carousel-2-wrapper {
    margin-right: -240px;
  }
}
@media (max-width: 1499px) {
  .pq-testimonial-2 .pq-section-title {
    padding-left: 45px;
  }
}
@media (max-width: 1279px) {
  .pq-testimonial-2 .pq-section-title {
    padding-left: 30px;
  }
}
@media (max-width: 1099px) {
  .pq-testimonial-2 .pq-section-title {
    padding-left: 0px;
    padding-top: 0;
  }
}
@media (max-width: 991px) {
  .pq-testimonial-carousel-2-wrapper {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .pq-testimonial-2 .pq-title-heading {
    font-size: 42px;
    line-height: 50px;
  }
  .pq-testimonial-carousel-2-wrapper {
    margin-right: 0;
    margin-top: 30px;
  }
  .pq-testimonial-2 .owl-carousel .owl-dots {
    display: none;
  }
  .pq-testimonial-2 .pq-section-title {
    padding: 0;
  }
  .pq-testimonial-2 {
    margin: 0;
  }
}
@media (max-width: 479px) {
  .pq-testimonial-2 {
    margin: 0;
  }
  .pq-testimonial-2 .pq-section-title {
    margin-bottom: 0;
  }
  .pq-testimonial-2 .pq-title-heading {
    font-size: 32px;
    line-height: 40px;
  }
}
/*================================================
  testimonial-section-page-3
================================================*/
.pq-testimonial-section-page-3 {
  padding: 120px 0;
  background-image: url("../images/page3/testimonial/background/h3_testimonial_001-scaled-1.webp");
  background-size: cover;
  margin: 0;
}
.pq-testimonial-section-page-3 .pq-testimonial-box-slider {
  margin-top: 90px;
  margin-left: 30px;
  margin-bottom: 30px;
}
.pq-testimonial-section-page-3 .item {
  background-color: var(--dark-color);
  color: var(--white-color);
  padding-left: 30px;
  padding-right: 60px;
  padding-top: 120px;
  padding-bottom: 45px;
}
.pq-testimonial-section-page-3
  .pq-testimonial-box-slider
  .pq-testimonial-box
  .pq-testimonial-star {
  display: flex;
  gap: 5px;
  color: var(--star-color);
  font-size: 24px;
  line-height: 32px;
}
.pq-testimonial-section-page-3
  .pq-testimonial-box-slider
  .pq-testimonial-box
  .pq-testimonial-author-name {
  color: var(--white-color);
}
.pq-testimonial-section-page-3 .item svg path {
  stroke: var(--white-color);
  z-index: -1;
}
.pq-testimonial-section-page-3
  .pq-testimonial-box-slider
  .owl-carousel
  .owl-dot.owl-dot.active {
  background-color: var(--white-color);
  border-radius: 100%;
}
.pq-testimonial-section-page-3
  .pq-testimonial-box-slider
  .owl-carousel
  .owl-dots
  .owl-dot {
  background-color: var(--white-color);
  border-radius: 100%;
}
.pq-testimonial-section-page-3
  .pq-testimonial-box-slider
  .owl-carousel
  .owl-dots {
  position: relative;
  bottom: 75px;
}
.pq-testimonial-section-page-3
  .pq-testimonial-box-slider
  .owl-carousel
  .owl-dot.owl-dot.active
  span {
  border: 1px dashed var(--white-color);
}
.pq-testimonial-section-page-3
  .pq-testimonial-box-slider
  .pq-testimonial-box
  .pq-quote {
  top: 30px;
  right: 75px;
}
.pq-testimonial-section-page-3
  .pq-testimonial-box-slider
  .pq-testimonial-box
  .pq-testimonial-author-designation {
  color: var(--primary-color);
}
/*============ pq-testimonial-section-page-3 responsive =================*/
@media (max-width: 1279px) {
  .pq-testimonial-section-page-3 {
    padding: 90px 0;
  }
}
@media (max-width: 1099px) {
  .pq-testimonial-section-page-3
    .pq-testimonial-box-slider
    .pq-testimonial-box
    .pq-quote {
    top: 15px;
    right: 75px;
  }
  .pq-testimonial-section-page-3
    .pq-testimonial-box-slider
    .owl-carousel
    .owl-dots {
    bottom: 60px;
  }
  .pq-testimonial-section-page-3 .pq-testimonial-box-slider {
    margin-left: 15px;
    margin-top: 45px;
  }
  .pq-testimonial-box-slider .item {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 767px) {
  .pq-testimonial-section-page-3 .pq-testimonial-box-slider {
    margin-left: 15px;
    margin-top: 0;
  }
  .pq-testimonial-section-page-3 {
    padding: 60px 0;
  }
  .pq-testimonial-section-page-3
    .pq-testimonial-box-slider
    .pq-testimonial-box
    .pq-quote {
    right: 45px;
  }
  .pq-testimonial-section-page-3 .pq-testimonial-box-slider {
    margin-left: 5px;
  }
}
@media (max-width: 397px) {
  .pq-testimonial-box-slider .item {
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 15px;
  }
  .pq-testimonial-section-page-3
    .pq-testimonial-box-slider
    .pq-testimonial-box
    .pq-quote {
    right: 15px;
  }
  .pq-testimonial-section-page-3 .pq-testimonial-box-slider {
    margin-left: 5px;
  }
  .pq-testimonial-section-page-3
    .pq-testimonial-box-slider
    .owl-carousel
    .owl-dots {
    bottom: 20px;
  }
}
/*================================================
 accordion-section-home-page-2
================================================*/
.pq-accordion-section {
  padding-top: 130px;
}
.pq-accordion-section .pq-section-title {
  background-color: var(--grey-color);
}
.pq-accordion-section .pq-section-title .pq-title-image .pq-image-box {
  margin-top: 30px;
}
.pq-acccordion-left-div {
  background-color: var(--grey-color);
  position: relative;
  padding: 45px;
}
.bg-grey-color {
  background-color: var(--grey-color);
}
.pq-accordion-section .pq-acccordion-left-div .pq-title-image {
  position: relative;
  transform: rotate(-3deg);
}
.pq-accordion-section
  .pq-acccordion-left-div
  .pq-title-image
  .pq-image-box
  img {
  transform: rotate(3deg);
  z-index: 1;
}
.pq-accordion-section .pq-acccordion-left-div .pq-title-image svg {
  z-index: -1;
  left: -30px;
  top: 12px;
}
.pq-accordion-block .pq-accordion-box {
  background: var(--white-color);
  margin-bottom: 30px;
  position: relative;
  padding: 30px;
  border: 1px solid var(--light-black);
}
.pq-accordion-block .pq-accordion-box.pq-active {
  background-color: var(--grey-color);
  border: none;
}
.pq-accordion-block .pq-accordion-box:last-child {
  margin-bottom: 0;
}
.pq-accordion-block .pq-accordion-box .pq-ad-title {
  cursor: pointer;
  width: 85%;
}
.pq-accordion-block .pq-accordion-box.pq-active .pq-ad-title {
  margin-bottom: 15px;
}
.pq-accordion-block .pq-accordion-box .pq-ad-title i {
  position: absolute;
  top: 26px;
  right: 30px;
  opacity: 1;
  color: var(--dark-color);
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 100%;
  border: var(--border);
  background: var(--grey-color);
  text-align: center;
  font-size: 18px;
}
.pq-accordion-block .pq-accordion-box .pq-ad-title i.inactive {
  opacity: 0;
}
.pq-accordion-block .pq-accordion-box.pq-active .pq-ad-title i {
  opacity: 0;
  color: var(--dark-color);
}
.pq-accordion-block .pq-accordion-box.pq-active .pq-ad-title i.inactive {
  opacity: 1;
}
.pq-accordion-block .pq-accordion-box.pq-active .pq-ad-title i {
  color: var(--dark-color);
  background: var(--primary-color);
}
.pq-accordion-block .pq-accordion-box .pq-accordion-details {
  width: 85%;
}
.pq-accordion-block .pq-accordion-box .pq-accordion-details p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 28px;
}
.pq-accordion-block .pq-accordion-box .pq-ad-title .ad-title-text {
  font-size: 25px;
  line-height: 33px;
}
.pq-grey-bg .pq-accordion-block .pq-accordion-box.pq-active .pq-ad-title {
  background: var(--dark-color);
  border: 1px solid var(--dark-color);
}
.pq-accordion-box .svg path {
  opacity: 0;
}
.pq-accordion-box:not(.svg-animation) .svg path {
  stroke-dashoffset: 0 !important;
}
.pq-accordion-box.pq-active .svg path {
  opacity: 1;
}
/*============   accordion-page-2 responsive =================*/
@media (max-width: 1279px) {
  .pq-accordion-section {
    padding-top: 90px;
  }
}
@media (max-width: 1023px) {
  .pq-accordion-section {
    padding-top: 90px;
  }
  .pq-accordion-section .pq-title-image {
    margin-bottom: 45px;
  }
  .pq-accordion-section .pq-title-image .pq-image-box .svg {
    top: 12px;
  }
}
@media (max-width: 991px) {
  .pq-accordion-section .pq-title-image .pq-image-box .svg {
    top: 26px;
    display: none;
  }

  .pq-acccordion-left-div {
    padding: 90px 0 0px 15px;
  }
  .pq-acccordion-left-div .pq-title-description {
    padding: 0px 0 15px 0;
  }
  .pq-accordion-section {
    padding-top: 0px;
  }
}
@media (max-width: 767px) {
  .pq-acccordion-left-div {
    padding: 60px 0 0px 0px;
  }
  .pq-accordion-section .pq-title-image .pq-image-box .svg {
    top: 15px;
  }
  .pq-accordion-section .pq-section-title .pq-title {
    margin-left: 0px;
  }
  .pq-accordion-section .pq-section-title {
    padding-left: 10px;
  }
  .pq-accordion-section .pq-acccordion-left-div .pq-title-image {
    margin: 0px 0px 45px 0;
  }
  .pq-accordion-section .pq-acccordion-left-div .pq-title-heading {
    font-size: 42px;
    line-height: 50px;
  }
  .pq-accordion-section .pq-acccordion-left-div .pq-title-image {
    transform: rotate(0deg);
  }
  .pq-accordion-section
    .pq-acccordion-left-div
    .pq-title-image
    .pq-image-box
    img {
    transform: rotate(0deg);
  }
  .pq-accordion-section {
    padding-top: 0px;
  }
  .pq-accordion-block .pq-accordion-box {
    padding: 30px 15px;
  }
  .pq-accordion-block .pq-accordion-box .pq-ad-title,
  .pq-accordion-block .pq-accordion-box .pq-accordion-details {
    padding: 0px;
  }
  .pq-accordion-block .pq-accordion-box .pq-ad-title i {
    right: 15px;
    width: 43px;
    height: 43px;
    line-height: 43px;
  }
}
@media (max-width: 479px) {
  .pq-accordion-section .pq-title-image .pq-image-box .svg {
    display: none;
  }
  .pq-accordion-section .pq-acccordion-left-div {
    padding: 0;
  }
  .pq-accordion-section .pq-acccordion-left-div .pq-section-title h5 {
    font-size: 32px;
    line-height: 40px;
  }
  .pq-accordion-section .pq-acccordion-left-div .pq-section-title {
    padding-top: 60px;
  }
  .pq-accordion-section .pq-acccordion-left-div .pq-title-image {
    margin: 0 0px 45px 0px;
  }
}
@media (max-width: 397px) {
  .pq-accordion-block .pq-accordion-box {
    padding: 15px;
  }
  .pq-accordion-block .pq-accordion-box .pq-ad-title .ad-title-text {
    font-size: 20px;
    line-height: 28px;
  }
  .pq-accordion-block .pq-accordion-box .pq-ad-title i {
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
}
/*================================================
 nav tabs-section
================================================*/
/*============ Nav Tabs Table =================*/
.pq-tabs-section .nav-link.active,
.pq-tabs-section .show > .nav-link {
  color: var(--white-color);
  background-color: var(--dark-color);
}

.pq-tabs-section .nav-link p {
  margin: 0;
  line-height: 26px;
}
.pq-tabs-section .pq-tabs-wrapper #pills-tab {
  margin-bottom: 60px;
  border: none;
}
.pq-tabs-section .nav-link span {
  font-family: var(--body-fonts);
  font-size: 16px;
  line-height: 24px;
}
.pq-tabs-section .nav-link #pills-tab2 {
  border-left: none;
  border-right: none;
}
.pq-tabs-section .nav-link {
  text-align: start;
  padding: 17px 191px 17px 30px;
  color: var(--dark-color);
  background-color: var(--white-color);
  border: 1px solid var(--light-black);
  border-radius: 0;
}
.pq-tabs-section .nav-link.mid-link {
  border-right: 0;
  border-left: 0;
}
.pq-tabs-section .nav-link a:hover {
  color: var(--dark-color);
}
.pq-tabs-section .nav-link:hover.pq-tabs-section .nav-link p {
  background-color: var(--white-color);
  color: var(--dark-color);
}
.pq-tabs-section .nav-link :hover.pq-tabs-section .nav-link span {
  background-color: var(--white-color);
  color: var(--dark-color);
}
.pq-data-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin: 15px 0;
}
.pq-tabs-table-data {
  padding: 30px 15px 30px 30px;
  border: 1px solid var(--light-black);
}
.pq-tabs-table-data.mid-left-data-box {
  border-left: none;
  border-right: none;
}
.pq-tabs-table-data.mid-right-data-box {
  border-right: none;
}
/*============  Nav Tabs section responsive =================*/
@media (max-width: 979px) {
  .pq-tabs-section .nav-link {
    padding: 15px 140px 15px 15px;
  }
  .pq-tabs-section .pq-tabs-wrapper #pills-tab {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .pq-tabs-section .nav-link {
    padding: 15px 0px 15px 15px;
  }
  .pq-tabs-section .pq-tabs-wrapper #pills-tab {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .pq-tabs-section .pq-data-wrapper {
    grid-template-columns: 1fr;
    padding: 15px;
    border: 1px solid var(--light-black);
  }
  .pq-tabs-table-data {
    border: none;
    padding: 0;
  }
}
@media (max-width: 479px) {
  .pq-tabs-section .nav-link {
    padding: 15px 0px 15px 15px;
  }
  .pq-tabs-section .pq-tabs-wrapper #pills-tab {
    grid-template-columns: 1fr;
  }
  .pq-tabs-section .pq-data-wrapper {
    grid-template-columns: 1fr;
    padding: 15px;
    border: 1px solid var(--light-black);
  }
  .pq-tabs-section .nav-link.mid-link {
    border-right: 1px solid var(--light-black);
    border-left: 1px solid var(--light-black);
  }
}
/*========  tab-section page 2  =========*/
.pq-tabs-section-page-2 {
  margin: 0 30px;
}
.pq-tab-2 .nav-link {
  margin-right: 30px;
}
.pq-tab-2 .nav-link:not(.svg-animation) .svg path {
  stroke-dashoffset: 0 !important;
}
.pq-tab-2 .nav-link {
  color: var(--dark-color);
  position: relative;
  padding: 15px 45px;
  font-family: var(--title-fonts);
}
.pq-tab-2 .nav-link:hover {
  color: var(--dark-color);
}
.pq-tab-2 .nav-link svg:hover {
  color: var(--dark-color);
}
.pq-tab-2 .nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: var(--dark-color);
  background-color: var(--primary-color);
}
.pq-tab-event-box {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='%23333' stroke-width='4' stroke-dasharray='6%2c 14' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e"); */
  margin: 30px 0 0 0;
  padding: 30px;
  border-radius: 30px;
  
}

.pq-tab-event-box .pq-event-thumb {
  position: relative;
  overflow: hidden;
}
.pq-tab-event-box .pq-event-thumb img {
  height: 100%;
  transition: var(--transition);
}

.pq-tab-event-box .pq-event-thumb img:hover {
  height: 100%;
  transition: var(--transition);
   transform: rotate(10deg) scale(1) !important;
}

.pq-tab-event-box:hover .pq-event-thumb img {
  scale: 0.95;
  transition: var(--transition);
}
.pq-tab-event-box:hover .pq-event-content .pq-event-title a {
  color: var(--primary-color);
}
.pq-tab-event-box .pq-event-thumb .pq-event-catagory {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--primary-color);
  padding: 0 10px;
  text-transform: uppercase;
  font-size: 16px;
  color: var(--dark-color);
}
.pq-event-location {
  color: var(--dark-color);
  text-transform: uppercase;
  font-size: 16px;
  line-height: 24px;
}
.pq-event-location i {
  margin-right: 5px;
}
.pq-event-content p {
  margin: 0;
  line-height: normal;
  padding: 15px 0;
  line-height: 30px;
}
.pq-event-footer .pq-btn-container {
  margin-top: 30px;
}
.pq-event-footer .pq-btn-container:hover a {
  background-color: var(--primary-color);
  color: var(--dark-color);
}
.pq-event-footer .pq-btn-container:hover svg path {
  color: var(--dark-color);
  stroke: var(--dark-color) !important;
}
.pq-event-date i {
  color: var(--dark-color);
  margin-right: 5px;
}
/*============    tab-section-page-2 responsive =================*/
@media (max-width: 1279px) {
  .pq-tab-event-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 1023px) {
  .pq-tabs-section-page-2 .pq-section-title.text-center {
    padding: 0;
  }
  .pq-tabs-section-page-2 .pq-section-title.text-center h5 {
    font-size: 44px;
    line-height: 52px;
  }
  .pq-tabs-section-page-2 .pq-tab-event-box .pq-event-thumb img {
    height: auto;
  }
  .pq-tabs-section-page-2 .pq-tab-event-box .pq-event-thumb .pq-event-catagory {
    left: 15px;
  }
  .pq-tabs-section-page-2 {
    margin: 0;
  }
  .pq-tabs-section-page-2 .pq-tab-event-box {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .pq-tabs-section-page-2 .pq-section-title.text-center h5 {
    font-size: 42px;
    line-height: 50px;
  }

  .pq-tabs-section-page-2 .pq-tab-2 .nav-item {
    padding-top: 15px;
  }
  .pq-tabs-section-page-2 .pq-tab-event-box .pq-event-content .pq-event-title {
    font-size: 28px;
    line-height: 34px;
  }

  .pq-tabs-section-page-2 .pq-section-title.text-center {
    margin-bottom: 30px;
  }
}
@media (max-width: 479px) {
  .pq-tabs-section-page-2 .pq-section-title.text-center h5 {
    font-size: 32px;
    line-height: 40px;
  }
  .pq-tabs-section-page-2 .pq-tab-event-box {
    padding: 15px;
  }
}
/*============  tabs-section-page-3    =============*/

.pq-tabs-section-page-3 .title-heading {
  padding: 0;
}
.pq-tabs-section-page-3 .pq-section-title {
  margin-bottom: 30px;
}
.pq-tabs-section-page-3 .pq-tabs-wrapper {
  display: grid;
  grid-template-columns: 2fr 7fr;
  gap: 30px;
}
.pq-tabs-section-page-3 .pq-tabs-wrapper ul {
  display: inline-block;
  padding-top: 14px;
}
.pq-tabs-section-page-3 .pq-tabs-wrapper ul li {
  margin-bottom: 15px;
}
.pq-tabs-section-page-3 .pq-tabs-wrapper ul li p {
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  color: var(--dark-color);
  margin: 0;
}
.pq-tabs-section-page-3 .pq-tabs-wrapper ul .nav-item .nav-link {
  border: 1px solid var(--dark-color);
}

.pq-tabs-section-page-3 .pq-tabs-wrapper ul .nav-item .nav-link {
  padding: 18px 30px;
}
.pq-tabs-section-page-3 .pq-tabs-wrapper ul .nav-item .nav-link.active span {
  color: var(--white-color);
}
.pq-tabs-section-page-3 .pq-tabs-wrapper ul .nav-item .nav-link.active {
  background-color: var(--dark-color);
  border-radius: none;
}
.pq-tabs-section-page-3 .pq-tabs-wrapper ul .nav-item .nav-link.active p {
  color: var(--white-color);
}
.pq-tabs-section-page-3 .pq-tabs-wrapper ul li span {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 1px;
  font-weight: 400;
  font-family: var(--body-fonts);
  color: var(--secondary-color);
}
.pq-tabs-section-page-3 .pq-tabs-table-data {
  border: 1px solid var(--dark-color);
}
.pq-tabs-section-page-3 .pq-tabs-table-data.mid-left-data-box {
  border-left: none;
  border-right: none;
}
.pq-tabs-section-page-3 .pq-tabs-table-data.mid-right-data-box {
  border-right: none;
}
/*============  tab-section-page-3  responsive =================*/
@media (max-width: 1099px) {
  .pq-tabs-section-page-3 .pq-section-title {
    margin-bottom: 0;
  }
  .pq-tabs-section-page-3 .pq-section-title {
    padding: 0;
  }
  .pq-tabs-section-page-3 .pq-tabs-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }
  .pq-tabs-section-page-3 .pq-tabs-wrapper .nav {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding-top: 60px;
  }
  .pq-tabs-section-page-3 .pq-tabs-wrapper ul .nav-item.pq-mid-link .nav-link {
    border-left: none;
    border-right: none;
  }
  .pq-tabs-section-page-3 {
    padding: 90px 0;
  }
}
@media (max-width: 767px) {
  .pq-data-wrapper {
    grid-template-columns: 1fr;
    margin: 15px 0;
    padding: 15px;
  }
  .pq-tabs-section-page-3 .pq-section-title .pq-title-heading {
    font-size: 42px;
    line-height: 50px;
  }
  .pq-tabs-section-page-3 .pq-tabs-wrapper .pq-data-wrapper {
    border: 1px solid var(--dark-color);
  }
  .pq-tabs-section-page-3
    .pq-tabs-wrapper
    .pq-data-wrapper
    .pq-tabs-table-data {
    border: none;
  }
  .pq-tabs-section-page-3 {
    padding: 60px 0;
  }
}
@media (max-width: 479px) {
  .pq-tabs-section-page-3 .pq-section-title.text-center {
    margin-bottom: 45px;
  }
  .pq-tabs-section-page-3 .pq-section-title .pq-title-heading {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 0;
  }
  .pq-tabs-section-page-3 .pq-tabs-wrapper ul .nav-item.pq-mid-link .nav-link {
    border-left: 1px solid var(--dark-color);
    border-right: 1px solid var(--dark-color);
  }
  .pq-tabs-section-page-3 .pq-tabs-wrapper .nav {
    grid-template-columns: 1fr;
    width: 200px;
    padding-top: 0;
  }
}
/*================================================
  stander page /  masonry page 
================================================*/
/*===== Portfoliobox Hover fade  =====*/
.pq-portfoliobox-1.pq-hover-fade {
  text-align: center;
  padding: 0;
  margin: 0;
  border: none;
  position: relative;
}
.pq-portfoliobox-1.pq-hover-fade:before {
  opacity: 0;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: inline-block;
  background-color: var(--dark-color);
  z-index: 9;
  transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -webkit-border-radius: var(--border-radius);
  -moz-border-radius: var(--border-radius);
  border-radius: var(--border-radius);
}
.pq-portfoliobox-1.pq-hover-fade:hover:before {
  opacity: 0.7;
}
.pq-portfoliobox-1.pq-hover-fade .pq-portfolio-block .pq-portfolio-img {
  margin-top: 0;
  height: 100%;
  width: 100%;
}
.pq-portfoliobox-1.pq-hover-fade .pq-portfolio-info {
  padding: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
  display: grid;
  align-items: center;
  justify-content: center;
  align-content: center;
  justify-items: center;
  opacity: 0;
  -moz-transform: translate(0px, 30px);
  -webkit-transform: translate(0px, 30px);
  -o-transform: translate(0px, 30px);
  -ms-transform: translate(0px, 30px);
  transform: translate(0px, 30px);
  -webkit-transition: all 0.4s cubic-bezier(0.47, 0, 0.745, 0.715);
  transition: all 0.4s cubic-bezier(0.47, 0, 0.745, 0.715);
}
.pq-portfoliobox-1.pq-hover-fade .pq-portfolio-info h5 {
  margin-bottom: 5px;
}
.pq-portfoliobox-1.pq-hover-fade .pq-portfolio-info h5 a,
.pq-portfoliobox-1.pq-hover-fade
  .pq-portfolio-info
  .pq-portfolio-style-1-title
  a {
  color: var(--white-color);
}
.pq-portfoliobox-1 .pq-portfolio-info .pq-portfoliobox-tag-box a {
  font-family: var(--title-fonts);
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--secondary-color);
}
.pq-portfoliobox-1.pq-hover-fade .pq-portfolio-info .pq-portfoliobox-tag-box a,
.pq-portfoliobox-1 .pq-portfolio-info .pq-portfoliobox-tag-box a:hover {
  color: var(--primary-color);
}
.pq-portfoliobox-1.pq-hover-fade:hover .pq-portfolio-info {
  opacity: 1;
  -moz-transform: translate(0px, 0);
  -webkit-transform: translate(0px, 0);
  -o-transform: translate(0px, 0);
  -ms-transform: translate(0px, 0);
  transform: translate(0px, 0);
}
.pq-portfoliobox-1.pq-hover-fade .pq-e-post-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.pq-portfoliobox-1.pq-hover-fade .pq-portfolio-info .pq-btn-container a,
.pq-portfoliobox-1.pq-hover-fade .pq-portfolio-info .pq-portfolio-style-1-tag {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: var(--primary-color);
  text-transform: uppercase;
}
.pq-portfoliobox-1.pq-hover-fade svg {
  display: none;
}
/*===== Portfoliobox Hover bellow =====*/
.pq-portfoliobox-1.pq-hover-bellow {
  padding: 0;
  margin: 0;
}
.pq-portfoliobox-1.pq-hover-bellow:hover {
  background-color: transparent;
}
.pq-portfoliobox-1.pq-hover-bellow svg {
  display: none;
}
.pq-portfoliobox-1.pq-hover-bellow .pq-portfolio-block .pq-portfolio-img {
  margin-top: 0;
  height: 100%;
  width: 100%;
}
/*================================================
       Isotope Portfolio
 ================================================*/
.pq-breadcrumb-style-1 {
  padding-bottom: 0;
}
.pq-masonry .pq-portfolio-box .pq-portfolio-info {
  text-transform: uppercase;
  margin-top: 15px;
}
.pq-masonry .pq-portfolio-box .pq-portfolio-img {
  overflow: hidden;
  scale: 1;
}
.pq-masonry .pq-portfolio-box:hover .pq-portfolio-img img {
  scale: 1.06;
  transition: all 0.5s ease-in-out;
}
.pq-masonry .pq-portfolio-box .pq-portfolio-info .pq-portfolio-tag a {
  color: var(--dark-color);
}
.pq-grid-item.visible_item,
.pq-masonry-item.visible_item {
  display: none;
}
.pq-filters .pq-filter-button-group ul {
  margin: 0 0 45px;
  padding: 0;
  display: inline-block;
  width: 100%;
  text-align: center;
}
.pq-filters .pq-filter-button-group ul li {
  font-family: var(--title-fonts);
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  list-style: none;
  color: var(--dark-color);
  display: inline-block;
  cursor: pointer;
  padding: 12px 30px;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}
.pq-filters .pq-filter-button-group ul li:last-child {
  margin-right: 0;
}
.pq-filters .pq-filter-button-group ul li.active,
.pq-filters .pq-filter-button-group ul li.active:hover {
  background: var(--primary-color);
  color: var(--dark-color);
  -webkit-border-radius: var(--border-radius);
  -moz-border-radius: var(--border-radius);
  border-radius: var(--border-radius);
}
.pq-filters .pq-filter-button-group ul li:hover {
  color: var(--dark-color);
}
.pq-grid {
  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: 30px;
  display: inline-block;
  width: 100%;
}
.pq-btn-load-container a.pq-button {
  cursor: pointer;
}
.pq-grid.style-2 .pq-portfoliobox-1 .pq-portfolio-img {
  overflow: hidden;
}
.pq-grid.style-2 .pq-portfoliobox-1 .pq-portfolio-info {
  position: relative;
  bottom: 0;
  left: 0;
  background: transparent;
  padding-left: 0;
  padding-bottom: 0;
  opacity: 1;
}
.pq-grid.style-2 .pq-portfoliobox-1 a.pq-portfolio-icon-bg {
  display: none;
}
.pq-grid.style-2 .pq-grid-item:nth-child(1) .pq-portfoliobox-1 {
  margin-top: 60px;
}
.pq-grid.style-2 .pq-col-6 {
  padding: 0 30px 45px;
  padding-bottom: 45px;
}
/*===== Portfolio Masonry =====*/
.pq-masonry {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.pq-masonry .ipq-lg-6 {
  width: 50%;
  padding: 0 15px 30px;
}
.pq-masonry .ipq-lg-3 {
  width: 25%;
  padding: 0 15px 30px;
}
.pq-masonry .ipq-lg-4 {
  width: 33.333%;
  padding: 0 15px 30px;
}
.pq-masonry.no-padding .ipq-lg-6,
.pq-masonry.no-padding .ipq-lg-3 {
  padding: 0;
}
.pq-masonry.no-padding .pq-portfoliobox-1,
.pq-masonry.no-padding .pq-portfoliobox-1 .pq-portfolio-img img {
  border-radius: 0;
}
/*===== layout 2 =====*/
.pq-masonry .ipq-lg-4 {
  width: 33.333%;
  padding: 0 15px 30px;
}
.pq-masonry .ipq-lg-8 {
  width: 66.666%;
  padding: 0 15px 30px;
}
.pq-masonry .ipq-lg-12 {
  width: 100%;
  padding: 0 15px 30px;
}
@media (max-width: 1365px) {
  .pq-col-3 {
    width: 33.33%;
  }
  .pq-masonry .ipq-lg-6 {
    width: 50%;
  }
  .pq-masonry .ipq-lg-3 {
    width: 33.33%;
  }
  .pq-masonry .ipq-lg-4 {
    width: 50%;
  }
  .pq-masonry .ipq-lg-8 {
    width: 50%;
  }
  .pq-filters .pq-filter-button-group ul li {
    margin-right: 10px;
  }
  .pq-col-3,
  .pq-col-4,
  .pq-masonry .ipq-lg-3 {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .pq-filters .pq-filter-button-group ul li {
    margin-right: 0;
    font-size: 14px;
    padding: 5px 15px;
  }
  .pq-col-6,
  .pq-col-4,
  .pq-col-3,
  .pq-masonry .ipq-lg-3,
  .pq-masonry .ipq-lg-6 {
    width: 100%;
    padding: 0 0 30px;
  }
  .pq-masonry .ipq-lg-4 {
    width: 100%;
    padding: 0 0 30px;
  }
  .pq-masonry .ipq-lg-8 {
    width: 100%;
  }
  .pq-grid.style-2 .pq-grid-item:nth-child(1) .pq-portfoliobox-1 {
    margin-top: 0;
  }
  .pq-grid.style-2 .pq-col-6 {
    padding: 0 0 30px;
  }
}
@media (max-width: 479px) {
  .pq-filters .pq-filter-button-group ul li {
    margin-bottom: 15px;
  }
}
.pq-grid-item {
  float: left;
}
/*===== Portfolio Masonry =====*/
.pq-breadcrumb-style-1 .pq-breadcrumb-title {
  font-size: 56px;
  line-height: 64px;
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .pq-breadcrumb-style-1 .pq-breadcrumb-title {
    font-size: 42px;
    line-height: 50px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .pq-breadcrumb-style-1 .pq-breadcrumb-title {
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 30px;
  }
  .pq-breadcrumb-style-1 {
    padding: 0;
  }
}
/*================================================
  Progressbar
 ================================================*/
/*++++++++++ Progressbar +++++++++++++*/
.pq-progress-div {
  padding: 130px 45px 130px 15px;
}
.pq-progress-bar-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
/*---ProgressBar-style-1------*/
.pq-progressbar-style-1 .pq-progressbar-content {
  margin-bottom: 30px;
  float: left;
  width: 100%;
}
.pq-progressbar-style-1 .pq-progressbar-content:last-child {
  margin-bottom: 0;
}
.team-single .pq-progressbar-style-1 .pq-progressbar-content:last-child {
  margin-bottom: 60px;
}
.pq-progressbar-style-1 .progress-title {
  font-size: 18px;
  line-height: 26px;
  font-family: var(--title-fonts);
  color: var(--dark-color);
  font-weight: 500;
}
.pq-progressbar-style-1 .progress-value {
  color: var(--dark-color);
  margin: 0;
  float: right;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  font-family: var(--title-fonts);
}
.pq-progressbar-style-1 .pq-progress-bar {
  width: 100%;
  padding: 0;
  background: var(--white-color);
  float: left;
  margin-top: 5px;
}
.pq-progressbar-style-1 .pq-progress-bar span {
  height: 8px;
  background: var(--primary-color);
  float: left;
}
/*+++++++++++++++ Progressbar style 2 ++++++++++++++++++++*/
.pq-progressbar-style-2 .pq-progress-bar {
  border: 1px solid var(--grey-color);
  padding: 3px;
  background: none;
}

.sonny_progressbar {
  margin-bottom: 20px;
}
.sonny_progressbar p.title {
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 5px 0;
}
.sonny_progressbar .bar-container {
  position: relative;
  height: 40px;
}
.sonny_progressbar .bar-container.shadow {
  -moz-box-shadow: 0px 5px 7px -3px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0px 5px 7px -3px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 5px 7px -3px rgba(0, 0, 0, 0.5);
}
.sonny_progressbar .backgroundBar {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
.sonny_progressbar .bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}
.sonny_progressbar .targetBar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  -webkit-animation: Animation 2s infinite ease-in-out;
  -moz-animation: Animation 2s infinite ease-in-out;
  animation: Animation 2s infinite ease-in-out;
}
.sonny_progressbar .targetBar.loader {
  -webkit-animation: AnimationB 4s infinite ease-in-out;
  -moz-animation: AnimationB 4s infinite ease-in-out;
  animation: AnimationB 4s infinite ease-in-out;
}
.sonny_progressbar .bar-container.border .bar,
.sonny_progressbar .bar-container.border .targetBar,
.sonny_progressbar .bar-container.border .backgroundBar {
  border-bottom: 3px solid rgba(0, 0, 0, 0.2);
}
.sonny_progressbar .progress-percent {
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  position: absolute;
  right: 15px;
}

@keyframes Animation {
  0% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.4;
  }
}
@-moz-keyframes Animation {
  0% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.4;
  }
}
@-webkit-keyframes Animation {
  0% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.4;
  }
}
@keyframes AnimationB {
  0% {
    opacity: 0.01;
  }
  50% {
    opacity: 0.1;
  }
  100% {
    opacity: 0.01;
  }
}
@-moz-keyframes AnimationB {
  0% {
    opacity: 0.01;
  }
  50% {
    opacity: 0.1;
  }
  100% {
    opacity: 0.01;
  }
}
@-webkit-keyframes AnimationB {
  0% {
    opacity: 0.01;
  }
  50% {
    opacity: 0.1;
  }
  100% {
    opacity: 0.01;
  }
}
/*================================================
	Error
================================================*/
.pq-error-block {
  text-align: center;
}
.pq-error-block .pq-errot-text {
  font-size: 420px;
  color: var(--primary-color);
  line-height: 0.8;
  margin-bottom: 30px;
  font-style: normal;
  text-transform: uppercase;
  font-weight: bold;
}
@media (max-width: 1023px) {
  .pq-error-block .pq-errot-text {
    font-size: 320px;
  }
}
@media (max-width: 767px) {
  .pq-error-block .pq-errot-text {
    font-size: 200px;
  }
  .pq-error-block h2 {
    font-size: 26px;
    line-height: 34px;
  }
}
@media (max-width: 479px) {
  .pq-error-block .pq-errot-text {
    font-size: 130px;
  }
}
/*================================================
	About us page
================================================*/
/*===== designer-content - about us =====*/
.pq-designer-content-aboutus-section-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
.pq-designer-content-aboutus-section-wrapper
  .pq-designer-page-2-wrapper.content2
  .pq-title-heading {
  padding-top: 15px;
}
@media (max-width: 767px) {
  .pq-designer-content-aboutus-section-wrapper .pq-info-box-list ul li {
    gap: 5px;
  }
}
@media (max-width: 479px) {
  .pq-designer-content-aboutus-section-wrapper
    .pq-designer-page-2-wrapper.content2
    .pq-title-heading {
    margin-bottom: 15px;
  }
}
/*===== brand slider - about us =====*/
.pq-carousel-brand.pq-carousel-brand-page-1.pq-carousel-brand-aboutus
  .owl-carousel {
  margin-bottom: 0;
}
.pq-carousel-brand.pq-carousel-brand-page-1.pq-carousel-brand-aboutus {
  padding: 0px 0 120px 0;
}
@media (max-width: 1279px) {
  .pq-carousel-brand.pq-carousel-brand-page-1.pq-carousel-brand-aboutus {
    padding: 0px 0 90px 0;
  }
}
@media (max-width: 799px) {
  .pq-carousel-brand.pq-carousel-brand-page-1.pq-carousel-brand-aboutus {
    padding: 0px 0 60px 0;
  }
  .pq-carousel-brand.pq-carousel-brand-page-1.pq-carousel-brand-aboutus
    .pq-brand-title-div {
    margin-top: 0px;
  }
}
/*===== collaboration - about us =====*/
.pq-collaboration-section.pq-aboutus {
  margin: 0;
  background-color: var(--white-color);
}
.pq-collaboration-section.pq-aboutus::before {
  display: none;
}
.pq-collaboration-section.pq-aboutus .pq-title-heading {
  color: var(--dark-color);
  margin-bottom: 0;
  padding-top: 0;
}
.pq-collaboration-section.pq-aboutus
  .pq-section-title
  .pq-title-heading
  .pq-title-last-word::after {
  background-color: var(--dark-color);
}
.pq-collaboration-section.pq-aboutus
  .pq-section-title
  .pq-title-heading
  .pq-title-last-word::before {
  background-color: var(--dark-color);
}
.pq-collaboration-section.pq-aboutus
  .pq-section-title
  .pq-title-heading
  .pq-svg-dot::after {
  background-color: var(--dark-color);
}
.pq-collaboration-section.pq-aboutus
  .pq-section-title
  .pq-title-heading
  .pq-svg-dot::before {
  background-color: var(--dark-color);
}
@media (max-width: 1279px) {
  .pq-collaboration-section.pq-aboutus {
    padding: 90px 0;
  }
  .pq-collaboration-section.pq-aboutus .pq-team-wrapper2 {
    padding-bottom: 0;
  }
}
@media (max-width: 799px) {
  .pq-collaboration-section.pq-aboutus {
    padding: 60px 0;
  }
}
/*===== designer event - about us =====*/
.pq-designer-page-1.pq-designer-aboutus-section {
  background-color: var(--dark-color);
  padding-top: 130px;
}
.pq-designer-page-1.pq-designer-aboutus-section
  .pq-section-title
  .pq-title-heading {
  color: var(--white-color);
  margin-bottom: 0;
}
.pq-designer-page-1.pq-designer-aboutus-section
  .pq-section-title
  .pq-title-heading
  .pq-title-last-word::after {
  background-color: var(--white-color);
}
.pq-designer-page-1.pq-designer-aboutus-section
  .pq-section-title
  .pq-title-heading
  .pq-title-last-word::before {
  background-color: var(--white-color);
}
.pq-designer-page-1.pq-designer-aboutus-section
  .pq-section-title
  .pq-title-heading
  .pq-title-last-word
  .pq-svg-dot::after {
  background-color: var(--white-color);
}
.pq-designer-page-1.pq-designer-aboutus-section
  .pq-section-title
  .pq-title-heading
  .pq-title-last-word
  .pq-svg-dot::before {
  background-color: var(--white-color);
}
.pq-designer-page-1.pq-designer-aboutus-section
  .pq-section-title
  .pq-event-box-description {
  color: var(--white-color);
  margin-bottom: 0;
  margin-top: 15px;
}
.pq-designer-page-1.pq-designer-aboutus-section
  .pq-section-title
  .pq-btn-container {
  margin-top: 30px;
}
.pq-designer-aboutus-section-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.pq-event-wrapper.pq-aboutus .pq-style-1.pq-item-list.pq-active {
  background-color: var(--primary-color);
  transition: var(--transition);
}
.pq-event-wrapper.pq-aboutus
  .pq-style-1.pq-item-list.pq-active
  .pq-event-box-info {
  background-color: var(--primary-color);
}
.pq-event-wrapper.pq-aboutus
  .pq-style-1.pq-item-list.pq-active
  .pq-event-box-info
  .pq-event-box-title {
  color: var(--dark-color);
}
.pq-event-wrapper.pq-aboutus
  .pq-style-1.pq-item-list.pq-active
  .pq-event-box-info
  .pq-event-box-description {
  color: var(--dark-color);
}
.pq-event-wrapper.pq-aboutus .pq-event-box.pq-style-1 {
  grid-template-columns: 1fr;
  gap: 0;
}
@media (max-width: 1279px) {
  .pq-designer-page-1.pq-designer-aboutus-section {
    padding: 90px 0;
  }
}
@media (max-width: 799px) {
  .pq-designer-page-1.pq-designer-aboutus-section {
    padding: 60px 0;
  }
  .pq-designer-aboutus-section-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .pq-event-wrapper.pq-aboutus .pq-style-1.pq-item-list .pq-event-box-info {
    padding: 15px 10px;
  }
  .pq-designer-page-1.pq-designer-aboutus-section
    .pq-section-title
    .pq-event-box-description {
    margin-top: 15px;
  }
  .pq-designer-page-1.pq-designer-aboutus-section
    .pq-section-title
    .pq-btn-container {
    margin-top: 30px;
  }
}
/*================================================
	Speakers details page
================================================*/
.pq-speakers-page .pq-speakers-image-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 75px;
  align-items: center;
}
.pq-speakers-page .pq-speakers-image-block .pq-speakers-designation {
  color: var(--secondary-color);
  font-size: 18px;
  line-height: 26px;
}
.pq-speakers-page .pq-speakers-image-block .pq-speakers-title {
  font-size: 28px;
  line-height: 36px;
  text-transform: capitalize;
}
.pq-speakers-page .pq-speakers-image-block .pq-speakers-description {
  margin-top: 15px;
}
.pq-speakers-page .pq-speakers-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.pq-speakers-page .pq-speakers-contact a {
  color: var(--secondary-color);
  margin-top: 30px;
  font-size: 16px;
  line-height: 24px;
}
.pq-speakers-page .pq-speakers-socials {
  display: flex;
  gap: 30px;
  align-items: center;
}
.pq-speakers-page .pq-speakers-socials .pq-socials-icons-div a {
  padding: 10px 20px;
  font-size: 18px;
  background-color: var(--grey-color);
  margin: 0;
  color: var(--dark-color);
  border-radius: 5px;
}
.pq-speakers-page .pq-speakers-socials .pq-socials-icons-div a:hover {
  background-color: var(--primary-color);
}
.pq-speakers-page .pq-speakers-socials .pq-socials-icons-div {
  display: flex;
  gap: 15px;
}
.pq-speakers-page .pq-speakers-socials svg {
  height: 17px;
  line-height: 23px;
}
.pq-speakers-details.pq-block {
  margin-top: 30px;
}
/*+++++++++++++++  contact-form-speakers-details-page ++++++++++++++++++++*/
.pq-progress-bar-row .pq-contact-form-div .pq-speakers-details.pq-block {
  margin-top: 0;
}
.pq-progress-bar-row .pq-contact-form .pq-form-input-div textarea {
  background-color: var(--grey-color);
}
@media (max-width: 1023px) {
  .pq-speakers-page .pq-speakers-image-block {
    gap: 30px;
    grid-template-columns: 1fr;
  }
  .pq-speakers-page .pq-speakers-image-block .pq-speakers-image {
    text-align: center;
  }
  .pq-speakers-page .pq-speakers-image-block .pq-speakers-image img {
    max-width: 600px;
  }
  .pq-progress-bar-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .pq-speakers-page .pq-speakers-socials {
    display: block;
    gap: 30px;
  }
  .pq-speakers-page .pq-speakers-socials .pq-socials-icons-div {
    padding-top: 15px;
  }
  .pq-speakers-page .pq-speakers-contact .pq-speakers-emails p {
    margin-bottom: 20px;
  }
}
@media (max-width: 479px) {
  .pq-speakers-page .pq-speakers-contact {
    grid-template-columns: 1fr;
  }
  .pq-speakers-page .pq-speakers-socials .pq-socials-icons-div {
    padding-top: 15px;
  }
  .pq-speakers-page .pq-speakers-socials {
    padding-top: 15px;
  }
}
/*================================================
	Event grid page
================================================*/
.pq-tab-event-wrapper.pq-event-grid-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 30px;
}
.pq-tab-event-wrapper.pq-event-grid-page .pq-tab-event-box {
  grid-template-columns: 1fr;
  margin: 15px 0;
}
.pq-tab-event-wrapper.pq-event-grid-page
  .pq-tab-event-box
  .pq-event-thumb
  .pq-event-catagory {
  left: 15px;
}
@media (max-width: 1023px) {
  .pq-tab-event-wrapper.pq-event-grid-page {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 479px) {
  .pq-tab-event-wrapper.pq-event-grid-page .pq-tab-event-box {
    padding: 15px;
  }
}
/*================================================
	Gallery page
================================================*/
.pq-gallery-section {
  padding-top: 0;
}
.pq-image-gallery-block .gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}
.pq-gallry-image-left-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
.pq-gallry-image-right-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
.mfp-close {
  font-size: 60px;
  top: -42px;
}
.mfp-arrow-right {
  right: 0px;
}
.mfp-arrow-left {
  left: 0px;
}
@media (max-width: 1023px) {
  .pq-image-gallery-block .gallery {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  .pq-gallry-image-left-wrapper {
    gap: 15px;
  }
  .pq-gallry-image-right-wrapper {
    gap: 15px;
  }
}
@media (max-width: 479px) {
  .pq-image-gallery-block .gallery {
    grid-template-columns: 1fr;
  }
}
/*================================================
	Event details page
================================================*/
.pq-event-details-page-section .pq-event-tag span {
  background-color: var(--primary-color);
  padding: 0 10px;
}
.pq-event-details-page-section .pq-event-title {
  text-transform: uppercase;
  font-size: 44px;
  line-height: 52px;
}
.pq-event-title-wrap {
  margin-bottom: 30px;
}
.pq-event-details-page-section .pq-event-description {
  margin: 30px 0;
}
.pq-event-details-page-section ul {
  margin: 15px 0;
  padding-left: 5px;
}
.pq-event-details-page-section .pq-event-list-div ul li {
  align-items: baseline;
  display: flex;
  gap: 10px;
}
.pq-event-details-page-section ul li i {
  color: var(--primary-color);
}
.animated {
  animation-duration: 1.25s;
}
.pq-event-details-page-section .pq-event-list-slider .owl-carousel {
  margin: 0;
}
.pq-event-details-page-section
  .pq-tabs-section
  .pq-tabs-table-data.mid-right-data-box {
  border-right: 1px solid var(--light-black);
}
@media (max-width: 1299px) {
  .pq-event-details-page-section .pq-tabs-wrapper .nav.nav-tabs {
    display: inline-block;
  }
  .pq-event-details-page-section
    .pq-tabs-wrapper
    .nav.nav-tabs
    .nav-link.mid-link {
    border-left: 1px solid var(--light-black);
    border-right: 1px solid var(--light-black);
  }
}
.pq-event-details-page-section .pq-tab-event-box {
  display: grid;
  grid-template-columns: 1fr;
}

.pq-event-details-page-section .pq-tab-event-box .pq-event-title {
  font-size: 28px;
  line-height: 36px;
  margin: 5px 0;
}
.pq-event-details-page-section .pq-tab-event-wrapper .pq-event-list-title {
  font-size: 32px;
  line-height: 40px;
  padding-top: 15px;
}
.pq-event-details-page-section {
  overflow: unset;
}

.pq-event-info-groupe{
  display: flex;
  flex-direction: column;
}

.pq-event-info-groupe i{
  color: #f08000
}


.pq-event-details-page-section .pq-single-page-right-div {
  background-color: var(--grey-color);
  padding: 30px;
  position: sticky;
  top: 150px;
}
.pq-event-details-page-section .pq-single-page-right-div ul :nth-child(1) {
  padding-top: 0;
}
.pq-event-details-page-section .pq-single-page-right-div ul li {
  padding: 15px 15px;
  border-bottom: 1px solid var(--border-light-black);
  font-size: 16px;
  line-height: 24px;
}
.pq-event-details-page-section .pq-single-page-right-div ul span {
  color: var(--dark-color);
  font-weight: 600;
  padding-right: 5px;
}
@media (max-width: 991px) {
  .pq-event-details-page-section .pq-single-page-right-div {
    margin-top: 60px;
  }
}
@media (max-width: 767px) {
  .pq-event-details-page-section .pq-single-page-right-div {
    margin-top: 30px;
  }
}
@media (max-width: 479px) {
  .pq-event-details-page-section .pq-tab-event-box {
    width: auto;
    padding: 20px 15px;
  }
}
/*================================================
Contact us page
================================================*/
.pq-map iframe {
  width: 100%;
  height: 600px;
}
.pq-map {
  padding-top: 0;
}
@media (max-width: 799px) {
  .pq-map iframe {
    height: 400px;
  }
  .pq-page-2-carousel-section.pq-contactus-page-brand-carousel
    .pq-brand-title-div {
    margin-top: 0px;
  }
}
/*================================================
Project details page 
================================================*/
.pq-project-details-page .pq-list-icon svg {
  height: 20px;
  margin-right: 5px;
  vertical-align: text-top;
}
.pq-project-details-page .pq-project-page-list-item ul {
  padding-left: 0;
}
.pq-project-details-page .pq-project-page-list-item li {
  align-items: baseline;
  margin-bottom: 10px;
}
.pq-project-details-page .pq-portfolio-image img {
  border-radius: 10px;
}
.pq-project-info-box-details-wrapper .pq-project-info-box-details div {
  display: flex;
  border-bottom: 1px solid var(--light-black);
  padding: 15px 0;
}
.pq-project-info-box-details-wrapper
  .pq-project-info-box-details
  .pq-details-title {
  width: 120px;
}
.pq-project-info-box-details .collon {
  margin-right: 30px;
  font-weight: 900;
  color: var(--dark-color);
}
.pq-project-info-box-details-wrapper .pq-project-info-box-details p {
  margin: 0;
}
.pq-project-info-box-details-wrapper {
  padding: 30px;
  background-color: var(--grey-color);
}
.pq-project-details-page .pq-project-info-box div {
  padding: 30px;
  background-color: var(--primary-color);
  border-radius: 15px 15px 0 0;
}
.pq-project-details-page .pq-socials-box-wrapper .pq-social {
  color: var(--white-color);
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.39);
}
.pq-project-details-page .pq-socials-box-wrapper .pq-social.fb {
  padding: 15px 22px;
}
.pq-project-details-page .pq-socials-box-wrapper .pq-social.twitter {
  background-color: #1da1f2;
}
.pq-project-details-page .pq-socials-box-wrapper .pq-social.linkedin {
  background-color: #0077b5;
}
.pq-project-details-page .pq-socials-box-wrapper .pq-social.yt {
  background-color: #cd201f;
}
.pq-project-details-page .pq-socials-box-wrapper .pq-social {
  background-color: #3b5998;
  padding: 15px 20px;
}
.pq-project-details-page .pq-socials-box-wrapper .pq-social:hover {
  opacity: 0.8;
}
.pq-project-details-page .pq-socials-box-wrapper {
  gap: 10px;
}
.pq-project-details-page .pq-project-page-slider .owl-carousel {
  margin-top: 0;
}
.pq-project-details-page .pq-project-page-slider .owl-carousel .item img {
  border-radius: 10px;
}
.pq-project-details-page
  .pq-project-page-slider
  .owl-carousel
  .owl-nav.disabled {
  display: block;
}
.pq-project-details-page .owl-carousel .owl-nav button.owl-next {
  margin-right: 0px;
  position: absolute;
  right: 8px;
  line-height: 1;
}
.pq-project-details-page .owl-carousel .owl-nav button.owl-prev {
  margin-right: 0px;
  line-height: 1;
}
.pq-project-details-page .pq-project-page-slider .owl-carousel .item {
  position: relative;
}
.pq-project-details-page .pq-project-page-slider .owl-carousel .owl-dots {
  display: none;
}
.pq-project-details-page .pq-portfolio-image {
  background-image: url("../images/project-details/portfolio_img_008.webp");
  background-size: cover;
  border-radius: 10px;
  height: 100%;
  width: auto;
}
.pq-project-info-box-details-wrapper {
  border-radius: 0 0 15px 15px;
}
.pq-project-page-box-image-div img {
  border-radius: 10px;
}
.pq-title-description {
  margin: 15px 0;
}
.pq-project-page-list-item ul {
  margin-bottom: 0;
}
.row-3 .pq-projectpage-title {
  margin-top: 30px;
}
@media (max-width: 479px) {
  .pq-project-info-box-details-wrapper {
    padding: 15px;
  }
  .pq-project-info-box-details-wrapper
    .pq-project-info-box-details
    .pq-details-title {
    width: 90px;
  }
}
@media (max-width: 379px) {
  .pq-project-info-box-details-wrapper .pq-project-info-box-details div {
    display: block;
  }
  .pq-project-info-box-details-wrapper .pq-project-info-box-details p {
    padding-left: 15px;
  }
}
/*================================================
Custom class
================================================*/

/*========   collaboration-section    =============*/
.pq-collaboration-section {
  background-color: var(--dark-color);
  position: relative;
  overflow: hidden;
  padding: 130px 0 130px 0;
  margin: 0 30px;
}
.pq-collaboration-section::before {
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-image: url("../images/page1/team/team-background.webp");
  position: absolute;
  opacity: 0.01;
}
.pq-collaboration-section .pq-title-heading {
  padding: 0;
  color: var(--white-color);
}
.pq-collaboration-section .pq-title-heading {
  color: var(--white-color);
}
.pq-collaboration-section
  .pq-section-title
  .pq-title-heading
  .pq-svg-dot::before {
  background-color: var(--white-color);
}
.pq-collaboration-section
  .pq-section-title
  .pq-title-heading
  .pq-svg-dot::after {
  background-color: var(--white-color);
}
.pq-collaboration-section
  .pq-section-title
  .pq-title-heading
  .pq-title-last-word::after {
  background-color: var(--white-color);
}
.pq-collaboration-section
  .pq-section-title
  .pq-title-heading
  .pq-title-last-word::before {
  background-color: var(--white-color);
}
/*============ collaboration-section responsive ============*/
@media (max-width: 1499px) {
  .pq-collaboration-section {
    padding: 130px 0;
  }
}
@media (max-width: 1365px) {
  .pq-section-title.text-center {
    padding: 0 1em;
    margin-bottom: 60px;
  }
}
@media (max-width: 1279px) {
  .pq-collaboration-section {
    padding: 90px 0;
  }
}
@media (max-width: 1099px) {
  .pq-collaboration-section .pq-title-heading {
    padding: 0 0em;
  }
}
@media (max-width: 979px) {
  .pq-collaboration-section .pq-title-heading {
    padding: 0 0em;
  }
  .pq-collaboration-section {
    padding: 90px 0 0px 0;
    margin: 0;
  }
}
@media (max-width: 767px) {
  .pq-collaboration-section .pq-title-heading {
    padding: 0 0em;
  }
  .pq-collaboration-section {
    padding: 60px 0 90px 0;
  }
}
/*============================================     home page 2    ====================================*/

/*============  banner section page 2 =================*/
.homepage2 {
  /* background-image: 
  linear-gradient(90deg, #f4f4f4 0%, #f4f4f4 60%, transparent 60%), 
  linear-gradient(180deg, #f08000 0%, #e72d17 100%); */
  background-image: url('../images/fond.png'); /* chemin vers ton image */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom right;
  padding: 120px 0;
  margin: 0;
}
.homepage2 .pq-banner-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: start;
  gap: 60px;
}
.homepage2 .pq-banner-wrapper .pq-title-heading {
  text-align: start;
  padding: 0;
}
.homepage2 .pq-banner-wrapper .pq-title-heading h5 {
  padding-right: 10px;
}
.homepage2 .pq-banner-wrapper .pq-banner-info-1 {
  padding: 15px;
}
.homepage2 .pq-banner-wrapper .pq-banner-info-1 .pq-btn-container {
  margin-top: 30px;
}
.homepage2 .pq-banner-wrapper .pq-banner-info-1 .pq-title-heading h5 {
  font-size: 68px;
  line-height: 86px;
  padding-left: 0;
}
.homepage2 .pq-banner-wrapper .pq-banner-info-1 .pq-btn-container {
  margin-top: 30px;
}
.pq-deal-counter-page-2 .pq-counter {
  background-color: var(--grey-color);
}
.homepage2 .pq-banner-wrapper .pq-banner-info-2 .pq-image-box {
  position: relative;
  transform: rotate(-3deg);
  z-index: 1;
}
.homepage2 .pq-banner-wrapper .pq-banner-info-2 .pq-image-box img {
  width: 98%;
  transform: rotate(3deg);
}
.homepage2 .pq-banner-wrapper .pq-banner-info-2 .pq-image-box svg {
  z-index: -1;
  left: -45px;
  top: 30px;
  height: 97%;
}
/*============   banner section home page 2 responsive =================*/
@media (max-width: 1279px) {
  .homepage2 {
    padding: 90px 0;
  }
}
@media (max-width: 1099px) {
  .homepage2 .pq-banner-wrapper .pq-banner-info-1 {
    padding: 0;
  }
}
@media (max-width: 1023px) {
  .homepage2 .pq-banner-wrapper .pq-banner-info-1 .pq-title-heading h5 {
    font-size: 62px;
    line-height: 68px;
  }
  .pq-header-page-2 .pq-header-right .pq-header-call-block {
    display: none;
  }
  .homepage2 .pq-banner-wrapper {
    gap: 0;
    grid-template-columns: 1fr;
    align-items: center;
  }
  .homepage2 .pq-banner-wrapper .pq-banner-info-2 .pq-image-box img {
    transform: rotate(0);
    height: 50%;
    width: 100%;
    margin-top: 30px;
  }
  .homepage2 .pq-banner-wrapper .pq-banner-info-2 .pq-image-box {
    transform: rotate(0);
  }
  .homepage2 .pq-banner-wrapper .pq-banner-info-2 .pq-image-box svg {
    display: none;
  }
}
@media (max-width: 979px) {
  .homepage2 .pq-banner-wrapper .pq-banner-info-1 .pq-title-heading h5 {
    font-size: 62px;
    line-height: 68px;
  }
}
@media (max-width: 767px) {
  .homepage2 .pq-banner-wrapper .pq-banner-info-1 .pq-title-heading h5 {
    font-size: 42px;
    line-height: 50px;
  }
  .homepage2 .pq-banner-wrapper .pq-banner-info-1 .pq-title-heading {
    margin-bottom: 0;
  }
  .homepage2 {
    padding: 60px 0 60px 0;
  }
  .homepage2 .pq-banner-wrapper .pq-banner-info-2 .pq-image-box img {
    margin-top: 30px;
  }
}
@media (max-width: 479px) {
  .homepage2 .pq-banner-wrapper .pq-banner-info-1 .pq-title-heading h5 {
    font-size: 36px;
    line-height: 44px;
    padding: 0;
  }
  .pq-counter.pq-counter-style-1
    .pq-counter-info
    .pq-product-timer
    .pq-timer-container
    h3 {
    font-size: 24px;
    line-height: 32px;
  }
}
/*============   designer section  page 2 =================*/
.pq-speaker-team-section .pq-section-title {
  padding: 0;
}
.pq-designer-page-2 {
  padding: 130px 0 130px 0;
}
.pq-designer-page-2-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.pq-designer-page-2-wrapper .pq-designer-info-box .pq-designer-info-box-detail {
  font-family: var(--body-fonts);
  font-size: 18px;
  line-height: 26px;
}
.pq-designer-page-2-wrapper
  .pq-designer-info-box
  .pq-designer-info-box-detail
  .pq-btn-container {
  margin-top: 30px;
}
.pq-designer-page-2-wrapper .pq-designer-info-box .pq-title-heading {
  padding: 0px;
  margin-bottom: 30px;
  padding: 0;
  text-align: start;
  margin-top: 60px;
}
.pq-info-box-list-icon svg {
  height: 18px;
  vertical-align: text-top;
}
.pq-designer-page-2-wrapper .pq-info-box-list,
.pq-designer-page-2-wrapper .pq-info-box-list p {
  font-family: var(--body-fonts);
  color: var(--secondary-color);
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 15px;
}
.pq-info-box-list ul {
  padding-left: 0;
}
.pq-info-box-list ul li {
  margin: 15px 0;
  display: flex;
  gap: 15px;
}
.pq-info-box-list ul li .pq-info-box-list-icon svg {
  height: 23px;
}
.pq-info-box-list ul li span {
  margin-right: 5px;
}
/*============   designer section  page 2 responsive =================*/
@media (max-width: 1279px) {
  .pq-designer-page-2-wrapper {
    gap: 45px;
  }
  .pq-designer-page-2 {
    padding: 90px 0 90px 0;
  }
}
@media (max-width: 1099px) {
  .pq-designer-page-2-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .pq-designer-page-2-wrapper {
    grid-template-columns: repeat(1fr);
    gap: 20px;
  }
  .pq-designer-page-2-wrapper .pq-image-section-div:nth-of-type(1) {
    order: 2;
  }
  .pq-designer-page-2-wrapper .pq-designer-info-box:nth-of-type(2) {
    order: 1;
  }
  .pq-designer-page-2-wrapper .pq-designer-info-box .pq-title-heading {
    margin-top: 0;
  }
}
@media (max-width: 979px) {
  .homepage2 .pq-banner-wrapper .pq-banner-info-1 {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .pq-designer-page-2 {
    padding: 60px 0 60px 0;
  }
  .pq-designer-page-2-wrapper
    .pq-designer-info-box
    .pq-designer-info-box-detail
    p {
    margin: 15px 0;
  }
}
@media (max-width: 479px) {
  .pq-title-heading h5 {
    font-size: 32px;
    line-height: 40px;
  }
  .pq-info-box-list ul li {
    gap: 10px;
  }
  .pq-designer-page-2-wrapper .pq-designer-info-box .pq-title-heading {
    margin-bottom: 15px;
  }
  .pq-designer-page-2-wrapper
    .pq-designer-info-box
    .pq-designer-info-box-detail
    p {
    margin: 0;
  }
}
/*========  brand-carousel-page-2   ========*/
.pq-page-2-carousel-section {
  padding-bottom: 130px;
}
@media (max-width: 1279px) {
  .pq-page-2-carousel-section {
    padding-bottom: 90px;
  }
}
@media (max-width: 767px) {
  .pq-page-2-carousel-section {
    padding-bottom: 60px;
  }
}
/*==========  speaker-team-section  =========*/
.pq-speaker-team-section {
  margin: 0 30px;
  background-color: var(--dark-color);
  padding-bottom: 120px;
}
.pq-speaker-team-section .pq-section-title {
  margin-bottom: 120px;
}
.pq-speaker-team-section .pq-title-heading {
  color: var(--white-color);
}
.pq-speaker-team-section .pq-title-heading span {
  color: var(--dark-color);
}
.pq-speaker-team-section
  .pq-section-title
  .pq-title-heading
  .pq-title-last-word::before {
  background: var(--white-color);
}
.pq-speaker-team-section
  .pq-section-title
  .pq-title-heading
  .pq-title-last-word::after {
  background: var(--white-color);
}
.pq-speaker-team-section
  .pq-section-title
  .pq-title-heading
  .pq-title-last-word
  .pq-svg-dot::before {
  background-color: var(--white-color);
}
.pq-speaker-team-section
  .pq-section-title
  .pq-title-heading
  .pq-title-last-word
  .pq-svg-dot::after {
  background-color: var(--white-color);
}
/*============   speaker section  page 2 responsive =================*/
@media (max-width: 1399px) {
  .pq-speaker-team-section {
    margin: 0;
  }
}
@media (max-width: 1099px) {
  .pq-speaker-team-section {
    margin: 0;
    padding-bottom: 75px;
  }
}
@media (max-width: 1023px) {
  .pq-speaker-team-section .pq-section-title h5 {
    font-size: 44px;
    line-height: 52px;
  }
}
@media (max-width: 767px) {
  .pq-speaker-team-section .pq-section-title h5 {
    font-size: 42px;
    line-height: 50px;
  }
  .pq-speaker-team-section .pq-section-title {
    margin-bottom: 0;
    padding-top: 45px;
  }
  .pq-speaker-team-section {
    padding-bottom: 60px;
    padding-top: 60px;
  }
  .pq-team.pq-style-2 .pq-team-info .pq-team-designation {
    color: var(--primary-color);
  }
  .pq-team.pq-style-2 .pq-team-info .pq-team-media img {
    width: 70%;
  }
}
/*=======================================   home page 3    ===========================================*/

/*============ rev slider page-3 =================*/
.pq-revsection {
  margin: 0 30px;
}
/*============ Event-section(service-box) page-3 =================*/
.pq-service-box-section-page-3 .pq-event-box.pq-style-1 .pq-event-box-img {
  right: 0;
  left: auto;
}
.pq-service-box-section-page-3 .pq-event-box.pq-style-1 .pq-event-box-info {
  grid-column: auto;
}
/*===========  insites-section-page-3   =========*/
.pq-insite-section-page-3 {
  background-color: var(--dark-color);
  position: relative;
  margin: 0 30px;
  z-index: 1;
  padding: 130px 0;
}
.pq-insite-section-page-3::after {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background-image: url("../images/page3/insite-team/team-background.webp");
  opacity: 0.01;
  z-index: -1;
}
.pq-insite-section-page-3 .pq-section-title.text-center {
  margin: 0;
}
.pq-insite-section-page-3 .pq-title-heading {
  color: var(--white-color);
}
.pq-insite-section-page-3 .pq-title-heading .pq-title-last-word {
  color: var(--dark-color);
}
.pq-insite-section-page-3
  .pq-section-title
  .pq-title-heading
  .pq-title-last-word::before {
  background-color: var(--white-color);
}
.pq-insite-section-page-3
  .pq-section-title
  .pq-title-heading
  .pq-title-last-word::after {
  background-color: var(--white-color);
}
.pq-insite-section-page-3
  .pq-section-title
  .pq-title-heading
  .pq-title-last-word
  .pq-svg-dot::before {
  background-color: var(--white-color);
}
.pq-insite-section-page-3
  .pq-section-title
  .pq-title-heading
  .pq-title-last-word
  .pq-svg-dot::after {
  background-color: var(--white-color);
}
/*============ pq-insite-section-page-3 =================*/
@media (max-width: 1399px) {
  .pq-insite-section-page-3 {
    margin: 0;
    padding: 90px 0;
  }
}
@media (max-width: 1023px) {
  .pq-insite-section-page-3 .pq-section-title {
    margin-bottom: 0;
  }
  .pq-insite-section-page-3 .pq-section-title {
    padding: 0;
  }
  .pq-insite-section-page-3 .pq-section-title.text-center h5 {
    font-size: 44px;
    line-height: 52px;
  }
}
@media (max-width: 767px) {
  .pq-insite-section-page-3 .pq-section-title.text-center h5 {
    font-size: 42px;
    line-height: 50px;
  }
  .pq-insite-section-page-3 {
    padding: 60px 0;
  }
}
@media (max-width: 479px) {
  .pq-insite-section-page-3 .pq-section-title.text-center h5 {
    font-size: 32px;
    line-height: 40px;
  }
  .pq-insite-section-page-3 {
    margin: 0 0px;
  }
}


.bg-violet {
    background-color: #f3ecff !important;
    padding: 20px;
}

.badge_ouvert{
 color: green;
}

.badge_close{
 color: red;
}

.list_group a{
  color: #243879;
}

.pq-single-page-right-div .form-control {
  background: #fff;
  margin-bottom: 10px;
}

.text-primary{
  color: #243879 !important;
  padding-bottom: 10px;
}

.rounded-30 {
  border-radius: 30px;
}

.img-club {
  width: auto;
  height: 300px ;
}

.pq-designer-info-box.bg-violet {
  
  background-image: url(../images/PICTO-19.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 180px auto;
  background-blend-mode: multiply;
}