/*---------------------------------
	1.1 Theme SCSS
---------------------------------*/
/*-----------------------------------------------------------------------------------

    Template Name: BuildRox - Construction HTML Template
    Author: PyroxTheme
	Developer: Pyrox Team
    Support: pyroxtheme@gmail.com
    Description: BuildRox - Construction HTML Template
    Version: 1.0

-----------------------------------------------------------------------------------

/************ TABLE OF CONTENTS ***************

	-----------------
    01. THEME SCSS
	-----------------
		1.1 theme
		1.2 typography
		1.3 spacing

	-----------------
    01. utils SCSS
	-----------------
		1.1 mixins
		1.2 root
		1.3 extends
		1.4 breakpoints

	-----------------
    02. COMPONENTS SCSS
	-----------------
		2.1 animation
		2.2 avatar
		2.3 background
		2.4 backtotop
		2.5 breadcrumb
		2.6 buttons
		2.7 carousel 
		2.8 color.scss
		.
		2.9 forms
		2.10 offcanvas
		2.11 pagination
		2.12 preloader
		2.13 section Title
		2.14 shortcodes
		2.15 social
		2.16 tab
		2.17 tooltip
		2.18 video
		2.19 index

	-----------------
    03. layout
	-----------------
		-----------------
		3.1.1 banner SCSS
		-----------------
			3.1.1 banner-1
			3.1.2 banner-2
			3.1.3 banner-3
			3.1.4 banner-4
			3.1.5 banner-5
			3.1.6 banner-common
			3.1.7 index

		-----------------
		3.1.2 blog SCSS
		-----------------
			3.2.1 blog-tag
			3.2.2 blog
			3.2.3 postbox
			3.2.4 recent-post
			3.2.5 sidebar-tag
			3.2.6 index
		-----------------
		3.1.3 ecommerce SCSS
		-----------------
			3.3.1 cart
			3.3.2 checkout
			3.3.3 order
			3.3.4 shop
			3.3.5 index
		-----------------
		3.1.4 footer SCSS
		-----------------
			3.4.1 footer-1
			3.4.6 footerCopyrights
			3.4.8 index

		-----------------
		3.1.5 header SCSS
		-----------------
			3.5.1 header-1
			3.5.2 header-3
			3.5.3 header-4
			3.5.4 header-common
			3.5.5 header-top
			3.5.6 index
		-----------------
		3.1.6 menu SCSS
		-----------------
			3.6.1 meanmenu
			3.6.2 menu
			3.5.3 index

	-----------------
    04. Page SCSS
	-----------------
		4.1 about

/*----------------------------------------*/
/*  1.1 Theme Default
/*----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wdth,wght@0,75..100,300..800;1,75..100,300..800&display=swap");
.offcanvas-overlay, a,
.btn,
button,
span,
sub,
sup,
p,
input,
select,
textarea,
img,
svg,
.transition-3,
li,
h1,
h2,
h3,
h4,
h5,
h6, .body__overlay {
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

:root {
  /**  @font family declaration */
  --ff-body: "Open Sans", sans-serif;
  --ff-title: "Open Sans", sans-serif;
  --ff-remixicon: "remixicon";
  /** @color declaration */
  --color-white: #FFFFFF;
  --color-black: #1D1D1D;
  --color-border: #D6D8DB;
  --color-bg-primary: #F3F5FA;
  --color-gray: #6C757D;
  --color-dark: #343A40;
  --color-primary: #F25C00;
  --color-action: #FF7F32;
  --color-secondary: #0073B7;
  --color-success: #28A745;
  --color-info: #17A2B8;
  --color-warning: #FFC107;
  --color-danger: #FF0000;
  --color-teal: #20C997;
  --color-rating: #F8BC24;
  --color-body: #2C2C2C;
  --color-text: #54585D;
  /** @font weight declaration */
  --fw-normal: normal;
  --fw-thin: 100;
  --fw-elight: 200;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-sbold: 600;
  --fw-bold: 700;
  --fw-ebold: 800;
  --fw-black: 900;
  /** @font size declaration */
  --fs-body: 16px;
  --fs-h1: 68px;
  --fs-h2: 48px;
  --fs-h3: 32px;
  --fs-h4: 24px;
  --fs-h5: 20px;
  --fs-h6: 16px;
  /** @transition value declaration */
  --transition: all .3s ease-in-out;
  --transition-5: all .5s ease-in-out;
}

/*----------------------------------------
   rimixicon customize
-----------------------------------------*/
i[class^=ri-] {
  line-height: 1;
  position: relative;
}

/*----------------------------------------
   Bootstrap customize
-----------------------------------------*/
.container {
  padding-left: 15px;
  padding-right: 15px;
}

.container {
  max-width: 1440px;
}
@media only screen and (min-width: 1700px) and (max-width: 1800px) {
  .container {
    max-width: 1700px;
  }
}
@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .container {
    max-width: 1600px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .container {
    max-width: 1320px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .container {
    max-width: 1320px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .container {
    max-width: 960px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .container {
    max-width: 720px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .container {
    max-width: 100%;
  }
}

.custom-container {
  max-width: 1730px;
}
@media only screen and (min-width: 1700px) and (max-width: 1800px) {
  .custom-container {
    max-width: 1700px;
  }
}
@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .custom-container {
    max-width: 1600px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .custom-container {
    max-width: 1680px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .custom-container {
    max-width: 1320px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .custom-container {
    max-width: 960px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .custom-container {
    max-width: 720px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .custom-container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .custom-container {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.custom-container-two {
  max-width: 1642px;
}
@media only screen and (min-width: 1700px) and (max-width: 1800px) {
  .custom-container-two {
    max-width: 1700px;
  }
}
@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .custom-container-two {
    max-width: 1600px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .custom-container-two {
    max-width: 1680px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .custom-container-two {
    max-width: 1320px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .custom-container-two {
    max-width: 960px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .custom-container-two {
    max-width: 720px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .custom-container-two {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .custom-container-two {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.row {
  --bs-gutter-x: 30px;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-10,
.gx-10 {
  --bs-gutter-x: 10px;
}

.g-20,
.gx-20 {
  --bs-gutter-x: 20px;
}

.g-30,
.gx-30 {
  --bs-gutter-x: 30px;
}

.g-10,
.gy-10 {
  --bs-gutter-y: 10px ;
}

.g-15,
.gy-15 {
  --bs-gutter-y: 15px ;
}

.g-30,
.gy-30 {
  --bs-gutter-y: 30px;
}

/*---------------------------------
    1.2 Common Classes
---------------------------------*/
.w-img img {
  width: 100%;
}

.m-img img {
  max-width: 100%;
}

.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

.z-index-1 {
  z-index: 1;
}

.z-index-11 {
  z-index: 11;
}

.opacity-05 {
  opacity: 0.5;
}

.overflow-y-visible {
  overflow-x: hidden;
  overflow-y: visible;
}

.p-relative {
  position: relative;
}

.position-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

.position-absolute {
  position: absolute;
}

.include-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.bg-attach-fix {
  background-attachment: fixed;
}

.hr-1 {
  border-top: 1px solid rgb(232, 232, 232);
}

.x-clip {
  overflow-x: clip;
}

@media (max-width: 575px) {
  .o-xs {
    overflow-x: hidden;
  }
}

.overflow-visible {
  overflow: visible;
}

/*----------------------------------------
    Body Overlay 
-----------------------------------------*/
.body__overlay {
  background-color: var(--color-black);
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 9999;
  left: 0;
  opacity: 0;
  visibility: hidden;
}
.body__overlay.opened {
  opacity: 0.7;
  visibility: visible;
}

.image-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/*----------------------------------------
   Mfp customize
-----------------------------------------*/
.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 1280px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .mfp-iframe-holder .mfp-content {
    max-width: 1000px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .mfp-iframe-holder .mfp-content {
    max-width: 850px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mfp-iframe-holder .mfp-content {
    max-width: 820px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mfp-iframe-holder .mfp-content {
    max-width: 750px;
  }
}

.mfp-close {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}
.mfp-close:hover {
  color: var(--color-white);
}
.mfp-close::after {
  position: absolute;
  content: "\eb98";
  height: 100%;
  width: 100%;
  font-family: var(--ff-remixicon);
  font-size: 31px;
  font-weight: 200;
  right: -20px;
  margin-top: -25px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .mfp-close::after {
    right: 15px;
    margin-top: -30px;
  }
}

.mfp-wrap {
  z-index: 9999999;
}

/* Bootstrap Table */
.table > thead {
  vertical-align: middle;
}

.table > tbody {
  vertical-align: middle;
}

.table > :not(caption) > * > * {
  padding: 10px 10px;
}

/*---------------------------------
	1.2 Typography SCSS
---------------------------------*/
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 10px;
  scroll-padding-top: 90px;
}

/*---------------------------------
    Typography css start 
---------------------------------*/
body {
  color: var(--color-body);
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  font-weight: normal;
  line-height: 1.5;
  background: var(--color-white);
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h5,
h5,
.h5,
h6,
.h6 {
  color: var(--color-black);
  margin-top: 0px;
  line-height: 1.2;
  margin-bottom: 0;
  font-weight: var(--fw-bold);
  word-break: break-word;
  font-family: var(--ff-title);
}

h1,
.h1 {
  font-size: var(--fs-h1);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  h1,
  .h1 {
    font-size: 48px;
  }
}

h2,
.h2 {
  font-size: var(--fs-h2);
}
@media (max-width: 575px) {
  h2,
  .h2 {
    font-size: 36px;
  }
}

h3,
.h3 {
  font-size: var(--fs-h3);
}

h4,
.h4 {
  font-size: var(--fs-h4);
}

h5,
.h5 {
  font-size: var(--fs-h5);
}

h6,
.h6 {
  font-size: var(--fs-h6);
}

ul {
  margin: 0px;
  padding: 0px;
}

p {
  font-size: var(--fs-body);
  font-family: var(--ff-body);
  font-weight: var(--fw-normal);
  color: var(--color-text);
  margin-bottom: 30px;
  line-height: 1.5;
}
p:last-child {
  margin-bottom: 0;
}

a {
  text-decoration: none;
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

a,
button {
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
}

img {
  max-width: 100%;
  object-fit: cover;
}

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

hr:not([size]) {
  margin: 0;
  border-color: var(--color-border);
  opacity: 1;
  border-width: 1px;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=password],
input[type=date],
input[type=file],
input[type=url],
input[type=search],
textarea {
  outline: none;
  background-color: transparent;
  height: 50px;
  width: 100%;
  font-size: 16px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  border: 1px solid var(--color-border);
  color: var(--color-black);
  padding-inline-start: 20px;
  padding-inline-end: 20px;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=date]:focus,
input[type=file]:focus,
input[type=url]:focus,
input[type=search]:focus,
textarea:focus {
  border-color: var(--color-primary);
}

input[type=file]::file-selector-button {
  font: var(--ff-body);
  -webkit-appearance: button;
  margin-left: -30px;
  width: 100px;
  height: 50px;
  border: none;
  border-radius: 6px 0 0 6px;
  color: var(--color-black);
  cursor: pointer;
}

textarea {
  line-height: 1.4;
  padding-top: 17px;
  padding-bottom: 17px;
  min-height: 150px;
}
textarea:focus {
  border-color: var(--color-primary);
}

*::-moz-selection {
  background: var(--color-secondary);
  color: var(--color-white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--color-primary);
  color: var(--color-white);
  text-shadow: none;
}

::selection {
  background: var(--color-primary);
  color: var(--color-white);
  text-shadow: none;
}

*::-moz-placeholder {
  opacity: 1;
  font-size: 16px;
  color: var(--color-gray);
}

*::placeholder {
  opacity: 1;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--ff-title);
  color: var(--color-gray);
}

/*---------------------------------
	1.3 Section Spacing SCSS
---------------------------------*/
.section-gap {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-gap-top {
  padding-top: 100px;
}

.section-gap-bottom {
  padding-bottom: 100px;
}

.section-gap-small {
  padding-top: 60px;
  padding-bottom: 60px;
}

.section-title-gap {
  margin-bottom: 60px;
}

.section-gap-margin {
  margin-top: 100px;
  margin-bottom: 100px;
}

.section-gap-margin-top {
  margin-top: 100px;
}

.section-gap-margin-bottom {
  margin-bottom: 100px;
}

/*----------------------------------------*/
/*  2.1 accordion
/*----------------------------------------*/
.accordion-common-style .accordion-item {
  border-radius: 0px;
  color: var(--color-black);
  background-color: transparent;
  border: none;
  margin-bottom: 15px;
}
.accordion-common-style .accordion-button {
  font-size: 18px;
  font-weight: 600;
  box-shadow: none;
  padding: 20px 20px;
  padding-inline-end: 38px;
  background-color: rgba(77, 147, 233, 0.06);
  border-radius: 4px 4px 4px 4px !important;
  color: var(--color-black);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .accordion-common-style .accordion-button {
    padding-right: 60px;
  }
}
.accordion-common-style .accordion-button:not(.collapsed) {
  color: var(--color-white);
  background-color: var(--color-primary);
}
.accordion-common-style .accordion-button:focus {
  z-index: 3;
  outline: 0;
  box-shadow: none;
}
.accordion-common-style .accordion-button::after {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: auto;
  height: auto;
  border-radius: 4px;
  margin-inline-start: auto;
  content: "\ea13";
  font-family: var(--ff-remixicon);
  font-size: 18px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: absolute;
  inset-inline-end: 30px;
  top: 50%;
  transform: translateY(-50%);
  background-image: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  color: var(--color-primary);
  background: var(--color-white);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.accordion-common-style .accordion-button:not(.collapsed)::after {
  content: "\f1af";
  font-family: var(--ff-remixicon);
  transition: all 0.2s ease-in-out;
}
.accordion-common-style .accordion-body {
  padding: 20px 30px 25px;
  font-size: 16px;
  color: var(--color-black);
  background-color: var(--color-white);
  background-color: var(--color-bg-primary);
}

/*----------------------------------------*/
/*  2.2 Animations
/*----------------------------------------*/
@keyframes shine {
  100% {
    left: 125%;
  }
}
@-webkit-keyframes btnMarqueeTextX {
  100% {
    transform: translateX(-200%);
  }
}
@keyframes btnMarqueeTextX {
  100% {
    transform: translateX(-200%);
  }
}
@-webkit-keyframes btnMarqueeTextY {
  100% {
    transform: translateY(-200%);
  }
}
@keyframes btnMarqueeTextY {
  100% {
    transform: translateY(-200%);
  }
}
@-webkit-keyframes pulse-white {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    -webkit-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes pulse-white {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    -webkit-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(242, 92, 0, 0.5);
    box-shadow: 0 0 0 0 rgba(242, 92, 0, 0.5);
  }
  70% {
    -moz-box-shadow: 0 0 0 45px rgba(242, 92, 0, 0);
    box-shadow: 0 0 0 45px rgba(242, 92, 0, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(242, 92, 0, 0);
    box-shadow: 0 0 0 0 rgba(242, 92, 0, 0);
  }
}
@keyframes pulse-secondary {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(251, 140, 0, 0.5);
    box-shadow: 0 0 0 0 rgba(251, 140, 0, 0.5);
  }
  70% {
    -moz-box-shadow: 0 0 0 45px rgba(251, 140, 0, 0);
    box-shadow: 0 0 0 45px rgba(251, 140, 0, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(251, 140, 0, 0);
    box-shadow: 0 0 0 0 rgba(251, 140, 0, 0);
  }
}
.pulse-white {
  animation: pulse-white 2s infinite;
}

@keyframes pulse-white {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    -moz-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
.animate-play {
  position: relative;
  z-index: 5;
}
.animate-play::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  border: 1px solid rgb(134, 134, 134);
  top: 0;
  left: 0;
  right: 0px;
  bottom: 0px;
  z-index: 0;
  animation-name: popupBtn;
  animation-duration: 1.6s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  z-index: -1;
}
.animate-play::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  border: 1px solid rgb(134, 134, 134);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0px;
  z-index: 0;
  animation-name: popupBtn;
  animation-duration: 1.8s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  z-index: -1;
}

@keyframes popupBtn {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.3;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
@keyframes ripple {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(1.01);
    opacity: 1;
  }
  75% {
    -webkit-transform: scale(1.9);
    transform: scale(1.9);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(2.3);
    transform: scale(2.3);
    opacity: 0;
  }
}
@keyframes slide-left {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes iconBounce {
  0% {
    animation-timing-function: ease-in;
    opacity: 1;
    transform: translateY(-25px);
  }
  24% {
    opacity: 1;
  }
  40% {
    animation-timing-function: ease-in;
    transform: translateY(-24px);
  }
  65% {
    animation-timing-function: ease-in;
    transform: translateY(-12px);
  }
  82% {
    animation-timing-function: ease-in;
    transform: translateY(-6px);
  }
  93% {
    animation-timing-function: ease-in;
    transform: translateY(-4px);
  }
  25%, 55%, 75%, 87% {
    animation-timing-function: ease-out;
    transform: translateY(0px);
  }
  100% {
    animation-timing-function: ease-out;
    opacity: 1;
    transform: translateY(0px);
  }
}
.line-dash {
  stroke-dasharray: 4;
  stroke-dashoffset: 350;
  -webkit-animation: line-dash 30s linear backwards alternate-reverse infinite;
  animation: line-dash 30s linear backwards alternate-reverse infinite;
}

@keyframes line-dash {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes planeRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100px);
  }
}
@keyframes scaleZeroOne {
  0% {
    transform: scale(0.6);
    opacity: 0.3;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes stoneSlide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100px);
  }
}
@-moz-keyframes badgeSpin {
  100% {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes badgeSpin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes badgeSpin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes plane3Scale {
  0% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes rotate-infinite {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-moz-keyframes rotate-infinite {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-ms-keyframes rotate-infinite {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotate-infinite {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Right To Left */
@keyframes right-2-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-20px);
  }
}
.upDown {
  animation: upDown 1.3S infinite alternate;
}

@keyframes upDown {
  0% {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(-15px);
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -o-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@-webkit-keyframes upDown {
  0% {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(-15px);
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -o-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@keyframes animation-upDown {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-40px);
  }
}
.spin {
  animation: spin 15s linear infinite;
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes qode-draw {
  0%, 100% {
    -webkit-clip-path: inset(-2px 0);
    clip-path: inset(-2px 0);
  }
  42% {
    -webkit-clip-path: inset(-2px 0 -2px 100%);
    clip-path: inset(-2px 0 -2px 100%);
  }
  43% {
    -webkit-clip-path: inset(-2px 100% -2px 0);
    clip-path: inset(-2px 100% -2px 0);
  }
}
@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(16px);
    -moz-transform: translateY(16px);
    -ms-transform: translateY(16px);
    -o-transform: translateY(16px);
    transform: translateY(16px);
  }
}
@-moz-keyframes scroll {
  0% {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(16px);
    -moz-transform: translateY(16px);
    -ms-transform: translateY(16px);
    -o-transform: translateY(16px);
    transform: translateY(16px);
  }
}
@-ms-keyframes scroll {
  0% {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(16px);
    -moz-transform: translateY(16px);
    -ms-transform: translateY(16px);
    -o-transform: translateY(16px);
    transform: translateY(16px);
  }
}
@keyframes scroll {
  0% {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(16px);
    -moz-transform: translateY(16px);
    -ms-transform: translateY(16px);
    -o-transform: translateY(16px);
    transform: translateY(16px);
  }
}
@keyframes bubble {
  0% {
    -webkit-transform: rotate(0deg) translateX(-50px);
    -moz-transform: rotate(0deg) translateX(-50px);
    -ms-transform: rotate(0deg) translateX(-50px);
    transform: rotate(0deg) translateX(-50px);
  }
  100% {
    -webkit-transform: rotate(360deg) translateY(100px);
    -moz-transform: rotate(360deg) translateY(100px);
    -ms-transform: rotate(360deg) translateY(100px);
    transform: rotate(360deg) translateY(100px);
  }
}
@-webkit-keyframes leftright {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-20px);
    -moz-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    -o-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}
@-moz-keyframes leftright {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-20px);
    -moz-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    -o-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}
@-ms-keyframes leftright {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-20px);
    -moz-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    -o-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}
@keyframes leftright {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-20px);
    -moz-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    -o-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}
@keyframes bounce {
  0%, 10%, 100%, 20%, 50%, 80% {
    transform: translateX(0);
  }
  40%, 60% {
    transform: translateX(-15px);
  }
}
@keyframes top-image-bounce {
  0% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  50% {
    -webkit-transform: translateY(12px);
    transform: translateY(12px);
  }
  100% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
}
@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(16px);
    -moz-transform: translateY(16px);
    -ms-transform: translateY(16px);
    -o-transform: translateY(16px);
    transform: translateY(16px);
  }
}
@-moz-keyframes scroll {
  0% {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(16px);
    -moz-transform: translateY(16px);
    -ms-transform: translateY(16px);
    -o-transform: translateY(16px);
    transform: translateY(16px);
  }
}
@-ms-keyframes scroll {
  0% {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(16px);
    -moz-transform: translateY(16px);
    -ms-transform: translateY(16px);
    -o-transform: translateY(16px);
    transform: translateY(16px);
  }
}
@keyframes scroll {
  0% {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(16px);
    -moz-transform: translateY(16px);
    -ms-transform: translateY(16px);
    -o-transform: translateY(16px);
    transform: translateY(16px);
  }
}
@keyframes pulse-blur {
  from, to {
    scale: 1;
    filter: blur(0px);
  }
  50% {
    scale: 1.05;
    filter: blur(2px);
  }
}
.cd-words-wrapper {
  display: inline-block;
  position: relative;
  text-align: left;
}
.cd-words-wrapper b {
  display: inline-block;
  position: absolute;
  white-space: nowrap;
  left: 0;
  top: 0;
  font-weight: inherit;
}
.cd-words-wrapper b.is-visible {
  position: relative;
}

.no-js .cd-words-wrapper b {
  opacity: 0;
}
.no-js .cd-words-wrapper b.is-visible {
  opacity: 1;
}

.cd-headline.clip span {
  display: inline-block;
  transition: none;
}
.cd-headline.clip .cd-words-wrapper {
  overflow: hidden;
  vertical-align: top;
}
.cd-headline.clip .cd-words-wrapper::after {
  top: 0;
  right: 0;
  width: 2px;
  content: "";
  height: 100%;
  position: absolute;
  background-color: #3b3b3b;
}
.cd-headline.clip b {
  opacity: 0;
}
.cd-headline.clip b.is-visible {
  opacity: 1;
}

@keyframes line1 {
  0% {
    top: 0px;
    opacity: 1;
  }
  50% {
    top: 50%;
  }
  100% {
    top: 100%;
    opacity: 1;
  }
}
@keyframes line2 {
  0% {
    opacity: 1;
    bottom: 0px;
  }
  50% {
    bottom: 50%;
  }
  100% {
    bottom: 100%;
    opacity: 1;
  }
}
@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
  }
  100% {
    -webkit-transform: translateX(7px);
    -moz-transform: translateX(7px);
    -ms-transform: translateX(7px);
    -o-transform: translateX(7px);
    transform: translateX(7px);
  }
}
@-moz-keyframes scroll {
  0% {
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
  }
  100% {
    -webkit-transform: translateX(7px);
    -moz-transform: translateX(7px);
    -ms-transform: translateX(7px);
    -o-transform: translateX(7px);
    transform: translateX(7px);
  }
}
@-ms-keyframes scroll {
  0% {
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
  }
  100% {
    -webkit-transform: translateX(7px);
    -moz-transform: translateX(7px);
    -ms-transform: translateX(7px);
    -o-transform: translateX(7px);
    transform: translateX(7px);
  }
}
@keyframes scroll {
  0% {
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
  }
  100% {
    -webkit-transform: translateX(7px);
    -moz-transform: translateX(7px);
    -ms-transform: translateX(7px);
    -o-transform: translateX(7px);
    transform: translateX(7px);
  }
}
@keyframes bannerAnimationOne {
  0% {
    transform: translate(0px, 0px);
  }
  20% {
    transform: translate(20px, -5px);
  }
  40% {
    transform: translate(50px, 20px);
  }
  60% {
    transform: translate(20px, 50px);
  }
  80% {
    transform: translate(-20px, 30px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
@-webkit-keyframes about-text {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@-moz-keyframes about-text {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@-ms-keyframes about-text {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes about-text {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes treeMove {
  0%, 100% {
    -webkit-transform: rotate(0deg) translateX(0);
    transform: rotate(0deg) translateX(0);
  }
  25%, 75% {
    -webkit-transform: rotate(5deg) translateX(15px);
    transform: rotate(5deg) translateX(15px);
  }
  50% {
    -webkit-transform: rotate(10deg) translateX(30px);
    transform: rotate(10deg) translateX(30px);
  }
}
@keyframes bounceSlide {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
.bounce-slide {
  animation-duration: 4s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
  animation-name: bounceSlide;
}

@-webkit-keyframes pttranslate {
  0% {
    -webkit-transform: translateX(-30px);
    -moz-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    -o-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  100% {
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
  }
}
@-moz-keyframes pttranslate {
  0% {
    -webkit-transform: translateX(-30px);
    -moz-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    -o-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  100% {
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
  }
}
@-ms-keyframes pttranslate {
  0% {
    -webkit-transform: translateX(-30px);
    -moz-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    -o-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  100% {
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
  }
}
@keyframes pttranslate {
  0% {
    -webkit-transform: translateX(-30px);
    -moz-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    -o-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  100% {
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
  }
}
@keyframes zoom {
  0% {
    transform: scale(0.5);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.5);
  }
}
@-webkit-keyframes ptswing {
  0% {
    -webkit-transform: rotate(6deg);
    -moz-transform: rotate(6deg);
    -ms-transform: rotate(6deg);
    -o-transform: rotate(6deg);
    transform: rotate(6deg);
  }
  100% {
    -webkit-transform: rotate(-6deg);
    -moz-transform: rotate(-6deg);
    -ms-transform: rotate(-6deg);
    -o-transform: rotate(-6deg);
    transform: rotate(-6deg);
  }
}
@-moz-keyframes ptswing {
  0% {
    -webkit-transform: rotate(6deg);
    -moz-transform: rotate(6deg);
    -ms-transform: rotate(6deg);
    -o-transform: rotate(6deg);
    transform: rotate(6deg);
  }
  100% {
    -webkit-transform: rotate(-6deg);
    -moz-transform: rotate(-6deg);
    -ms-transform: rotate(-6deg);
    -o-transform: rotate(-6deg);
    transform: rotate(-6deg);
  }
}
@-ms-keyframes ptswing {
  0% {
    -webkit-transform: rotate(6deg);
    -moz-transform: rotate(6deg);
    -ms-transform: rotate(6deg);
    -o-transform: rotate(6deg);
    transform: rotate(6deg);
  }
  100% {
    -webkit-transform: rotate(-6deg);
    -moz-transform: rotate(-6deg);
    -ms-transform: rotate(-6deg);
    -o-transform: rotate(-6deg);
    transform: rotate(-6deg);
  }
}
@keyframes ptswing {
  0% {
    -webkit-transform: rotate(6deg);
    -moz-transform: rotate(6deg);
    -ms-transform: rotate(6deg);
    -o-transform: rotate(6deg);
    transform: rotate(6deg);
  }
  100% {
    -webkit-transform: rotate(-6deg);
    -moz-transform: rotate(-6deg);
    -ms-transform: rotate(-6deg);
    -o-transform: rotate(-6deg);
    transform: rotate(-6deg);
  }
}
@keyframes shape-rote {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
.float-bob-y {
  animation-name: float-bob-y;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: float-bob-y;
  -webkit-animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: float-bob-y;
  -moz-animation-duration: 2s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: float-bob-y;
  -ms-animation-duration: 2s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: float-bob-y;
  -o-animation-duration: 2s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}

/*----------------------------------------*/
/*  2.3 Background
/*----------------------------------------*/
.black-bg {
  background-color: #000000;
}

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

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

.theme-bg-5 {
  background-color: rgba(242, 92, 0, 0.05);
}

.theme-bg-secondary {
  background-color: var(--color-secondary);
}

.success-bg {
  background-color: var(--color-success);
}

.info-bg {
  background-color: var(--color-info);
}

.warning-bg {
  background-color: var(--color-warning);
}

.danger-bg {
  background-color: var(--color-danger);
}

.teal-bg {
  background-color: var(--color-teal);
}

.rating-bg {
  background-color: var(--color-rating);
}

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

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

/*----------------------------------------*/
/*  2.4 Back to top
/*----------------------------------------*/
.backtotop-wrap {
  position: fixed;
  bottom: 30px;
  right: 30px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  -o-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
  background: var(--color-primary);
}
@media (max-width: 575px) {
  .backtotop-wrap {
    bottom: 20px;
    right: 20px;
  }
}
.backtotop-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
}
.backtotop-wrap::after {
  position: absolute;
  font-family: var(--ff-remixicon);
  content: "\ea78";
  text-align: center;
  line-height: 46px;
  font-size: 16px;
  font-weight: 400;
  color: var(--color-white);
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
}
.backtotop-wrap svg path {
  fill: none;
}
.backtotop-wrap svg.backtotop-circle path {
  stroke: var(--color-border);
  stroke-width: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
}

/*----------------------------------------*/
/*  2.5 badge
/*----------------------------------------*/
.pt-badge {
  font-size: 14px;
  font-weight: var(--fw-medium);
  padding: 0px 10px 0px 10px;
  color: var(--color-white);
  display: inline-flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  background: var(--color-primary);
  height: 26px;
  border-radius: 4px;
}
.pt-badge.success {
  background-color: var(--color-success);
}
.pt-badge.danger {
  background-color: var(--color-danger);
}
.pt-badge.info {
  background-color: var(--color-info);
}
.pt-badge.warning {
  color: var(--color-black);
  background-color: var(--color-warning);
}

/*----------------------------------------*/
/*  2.6 brand
/*----------------------------------------*/
.pt-brand-item {
  text-align: center;
}

/*----------------------------------------*/
/*  2.7 Breadcrumb
/*----------------------------------------*/
.pt-breadcrumb-wrapper {
  position: relative;
  z-index: 2;
  min-height: 450px;
  display: flex;
  align-items: center;
}
.pt-breadcrumb-bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.pt-breadcrumb-bg::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 1;
  background: rgba(29, 29, 29, 0.6);
}
.pt-breadcrumb-content {
  text-align: start;
}
.pt-breadcrumb-title {
  font-size: 50px;
  color: var(--color-white);
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pt-breadcrumb-title {
    font-size: 38px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-breadcrumb-title {
    font-size: 30px;
  }
}
.pt-breadcrumb-list {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 0 10px;
  color: var(--color-white);
}
.pt-breadcrumb-list span {
  position: relative;
}
.pt-breadcrumb-list span a i {
  margin-inline-end: 10px;
}

/*----------------------------------------*/
/*  2.8 Buttons
/*----------------------------------------*/
.pt-btn {
  font-size: 16px;
  font-weight: var(--fw-sbold);
  text-transform: capitalize;
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  transition: all 0.3s linear;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  white-space: nowrap;
}
.pt-btn.btn-very-small {
  padding: 4px 10px;
  font-size: 14px;
}
.pt-btn.btn-small {
  padding: 4px 12px;
}
.pt-btn.btn-medium {
  padding: 8px 16px;
}
.pt-btn.btn-large {
  padding: 0 34px;
  height: 60px;
  font-size: 20px;
}
.pt-btn.btn-extra-large {
  padding: 0 46px;
  height: 76px;
  font-size: 24px;
}
.pt-btn .left-icon {
  margin-right: 10px;
}
.pt-btn .right-icon {
  margin-left: 10px;
}
.pt-btn:hover .fa-spinner {
  animation-name: fa-spin;
  animation-duration: var(--fa-animation-duration, 5s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, linear);
  animation-direction: alternate;
}
.pt-btn .thumb {
  margin-top: -5px;
  margin-right: 10px;
}

.pt-btn-icon {
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  border-radius: 6px;
  width: 50px;
  height: 50px;
}
.pt-btn-icon.btn-very-small {
  font-size: 16px;
  width: 36px;
  height: 36px;
}
.pt-btn-icon.btn-small {
  font-size: 18px;
  width: 44px;
  height: 44px;
}
.pt-btn-icon.btn-medium {
  font-size: 19px;
  width: 56px;
  height: 56px;
}
.pt-btn-icon.btn-large {
  font-size: 26px;
  width: 60px;
  height: 60px;
}
.pt-btn-icon.btn-extra-large {
  font-size: 30px;
  width: 72px;
  height: 72px;
}
.pt-btn-icon.outline-primary:hover {
  color: var(--color-primary);
  background-color: transparent;
  border: 1px solid var(--color-primary);
}
.pt-btn-icon.outline-secondary:hover {
  color: var(--color-secondary);
  background-color: transparent;
  border: 1px solid var(--color-secondary);
}
.pt-btn-icon.outline-success:hover {
  color: var(--color-success);
  background-color: transparent;
  border: 1px solid var(--color-success);
}
.pt-btn-icon.outline-warning:hover {
  color: var(--color-warning);
  background-color: transparent;
  border: 1px solid var(--color-warning);
}
.pt-btn-icon.outline-info:hover {
  color: var(--color-info);
  background-color: transparent;
  border: 1px solid var(--color-info);
}
.pt-btn-icon.outline-danger:hover {
  color: var(--color-danger);
  background-color: transparent;
  border: 1px solid var(--color-danger);
}

.btn-primary {
  background-color: var(--color-primary);
}
.btn-primary:hover {
  color: var(--color-white);
  background-color: var(--color-action);
}

.btn-secondary {
  background-color: var(--color-secondary);
}
.btn-secondary:hover {
  color: var(--color-white);
  background-color: var(--color-primary);
}

.btn-success {
  background-color: var(--color-success);
}
.btn-success:hover {
  color: var(--color-white);
  background-color: var(--color-primary);
}

.btn-warning {
  background-color: var(--color-warning);
}
.btn-warning:hover {
  color: var(--color-white);
  background-color: var(--color-primary);
}

.btn-danger {
  background-color: var(--color-danger);
}
.btn-danger:hover {
  color: var(--color-white);
  background-color: var(--color-primary);
}

.btn-info {
  background-color: var(--color-info);
}
.btn-info:hover {
  color: var(--color-white);
  background-color: var(--color-primary);
}

.btn-white {
  background-color: var(--color-white);
  color: var(--color-black);
}
.btn-white:hover {
  color: var(--color-black);
  background-color: var(--color-bg-primary);
}

.btn-outline-primary {
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
}
.btn-outline-primary:hover {
  color: var(--color-white);
  border-color: var(--color-primary);
  background-color: var(--color-primary);
}

.btn-outline-secondary {
  border: 1px solid var(--color-secondary);
  color: var(--color-secondary);
}
.btn-outline-secondary:hover {
  color: var(--color-white);
  border-color: var(--color-secondary);
  background-color: var(--color-secondary);
}

.btn-outline-success {
  border: 1px solid var(--color-success);
  color: var(--color-success);
}
.btn-outline-success:hover {
  color: var(--color-white);
  border-color: var(--color-success);
  background-color: var(--color-success);
}

.btn-outline-warning {
  border: 1px solid var(--color-warning);
  color: var(--color-warning);
}
.btn-outline-warning:hover {
  color: var(--color-white);
  border-color: var(--color-warning);
  background-color: var(--color-warning);
}

.btn-outline-danger {
  border: 1px solid var(--color-danger);
  color: var(--color-danger);
}
.btn-outline-danger:hover {
  color: var(--color-white);
  border-color: var(--color-danger);
  background-color: var(--color-danger);
}

.btn-outline-info {
  border: 1px solid var(--color-info);
  color: var(--color-info);
}
.btn-outline-info:hover {
  color: var(--color-white);
  border-color: var(--color-info);
  background-color: var(--color-info);
}

.btn-outline-white {
  border: 1px solid var(--color-white);
  color: var(--color-white);
}
.btn-outline-white:hover {
  color: var(--color-primary);
  border-color: var(--color-white);
  background-color: var(--color-white);
}
.btn-outline-white.active {
  color: var(--color-black);
  border-color: var(--color-white);
  background-color: var(--color-white);
}

.pt-text-btn {
  color: var(--color-black);
  font-weight: var(--fw-sbold);
  font-size: 16px;
  gap: 8px;
  padding: 0;
  height: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pt-text-btn .btn-icon {
  overflow: hidden;
  position: relative;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease-out 0s;
  margin-top: 3px;
}
.pt-text-btn .btn-icon:hover .first-icon {
  transform: translateX(150%);
}
.pt-text-btn .btn-icon:hover.second-icon {
  transform: translateX(0%);
}
.pt-text-btn .btn-icon i {
  font-size: 22px;
}
.pt-text-btn .second-icon {
  position: absolute;
  transform: translateX(-150%);
  transition: all 0.3s ease-out 0s;
}
.pt-text-btn .first-icon {
  transition: all 0.3s ease-out 0s;
}
.pt-text-btn:hover {
  color: var(--color-primary);
}
.pt-text-btn:hover .first-icon {
  transform: translateX(150%);
}
.pt-text-btn:hover .second-icon {
  transform: translateX(0%);
}

.pt-play-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: var(--color-white);
  background: var(--color-primary);
  font-size: 20px;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/*----------------------------------------*/
/*  2.9 Carousel
/*----------------------------------------*/
.pt-slider-pagination {
  display: flex;
  justify-content: center;
}
.pt-slider-pagination .swiper-pagination-bullet {
  height: 2px;
  width: 100px;
  border-radius: 0px;
  background: var(--color-border);
  opacity: 1;
  margin: 0 !important;
  transition: all 0.3s linear;
}
.pt-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--color-primary);
}

/*----------------------------------------*/
/*  2.10 Color Short Code
/*----------------------------------------*/
.white-text {
  color: var(--color-white);
}

.white-text-9 {
  color: rgba(255, 255, 255, 0.9);
}

.white-text-8 {
  color: rgba(255, 255, 255, 0.8);
}

.white-text-7 {
  color: rgba(255, 255, 255, 0.7);
}

.black-text {
  color: var(--color-black);
}

.black-text-9 {
  color: rgba(29, 29, 29, 0.9);
}

.black-text-8 {
  color: rgba(29, 29, 29, 0.8);
}

.black-text-7 {
  color: rgba(29, 29, 29, 0.7);
}

.theme-primary {
  color: var(--color-primary);
}

.theme-secondary {
  color: var(--color-secondary);
}

.success-color {
  color: var(--color-success);
}

.info-color {
  color: var(--color-info);
}

.warning-color {
  color: var(--color-warning);
}

.danger-color {
  color: var(--color-danger);
}

.teal-color {
  color: var(--color-teal);
}

.rating-color {
  color: var(--color-rating);
}

.gray-color {
  color: var(--color-gray);
}

.dark-color {
  color: var(--color-dark);
}

/*----------------------------------------*/
/*  2.11 Short codes
/*----------------------------------------*/
.bg-flashlight {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.bg-flashlight::before {
  content: "";
  position: absolute;
  top: var(--y);
  left: var(--x);
  transform: translate(-50%, -50%);
  background: radial-gradient(var(--color-primary), transparent, transparent);
  width: 200%;
  height: 200%;
  opacity: 0;
  transition: 0.5s, top 0s, left 0s;
  border-radius: 10px;
}
.bg-flashlight > * {
  z-index: 2;
  position: relative;
}
.bg-flashlight::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: var(--color-white);
  border-radius: 8px;
}
.bg-flashlight:hover::before {
  opacity: 1;
}

.sidebar-sticky {
  position: sticky;
  top: 120px;
}

.pos-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/*----------------------------------------
   Text Underline
-----------------------------------------*/
.underline a {
  display: inline;
  background-image: linear-gradient(var(--color-primary), var(--color-primary)), linear-gradient(var(--color-primary), var(--color-primary));
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 83%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
  padding: 0 0 1% 0;
}
.underline a:hover {
  background-size: 0 1px, 100% 1px;
  color: var(--color-primary) !important;
}

.underline-two a {
  display: inline;
  background-image: linear-gradient(var(--color-secondary), var(--color-secondary)), linear-gradient(var(--color-secondary), var(--color-secondary));
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 83%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
  padding: 0 0 2% 0;
}
.underline-two a:hover {
  background-size: 0 1px, 100% 1px;
  color: var(--color-secondary) !important;
}

/* display flex */
.d-flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.d-flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.d-flex-items {
  display: flex;
  align-items: center;
}

.d-flex-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.content-start {
  justify-content: start;
}

.content-center {
  justify-content: center;
}

/* gap */
.gap-05 {
  gap: 5px;
}

.gap-10 {
  gap: 10px;
}

.gap-15 {
  gap: 15px;
}

.gap-20 {
  gap: 20px;
}

.gap-25 {
  gap: 25px;
}

.gap-30 {
  gap: 30px;
}

/* List Style None */
.list-none ul {
  list-style: none;
}

/* Font Weight */
.fw-1 {
  font-weight: var(--fw-thin);
}

.fw-2 {
  font-weight: var(--fw-elight);
}

.fw-3 {
  font-weight: var(--fw-light);
}

.fw-4 {
  font-weight: var(--fw-regular);
}

.fw-5 {
  font-weight: var(--fw-medium);
}

.fw-6 {
  font-weight: var(--fw-sbold);
}

.fw-7 {
  font-weight: var(--fw-bold);
}

.fw-8 {
  font-weight: var(--fw-ebold);
}

.fw-9 {
  font-weight: var(--fw-black);
}

.shadow-adjust {
  padding: 15px 15px !important;
  margin: -15px -15px !important;
}

.pt-post-details-list ul li {
  list-style: none;
  position: relative;
  margin-left: 20px;
}
.pt-post-details-list ul li:not(:last-child) {
  margin-bottom: 10px;
}
.pt-post-details-list ul li::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  background-color: var(--color-primary);
  border-radius: 50%;
  left: -20px;
  top: 8px;
}

.pt-next-prev-button {
  border-top: 1px solid var(--color-border);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  position: relative;
}
@media (max-width: 575px) {
  .pt-next-prev-button {
    flex-wrap: wrap;
    gap: 20px 0;
  }
}
.pt-next-prev-button.bottom {
  border-bottom: 1px solid var(--color-border);
}
.pt-next-prev-button::before {
  position: absolute;
  content: "";
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: var(--color-border);
}
@media (max-width: 575px) {
  .pt-next-prev-button::before {
    display: none;
  }
}
.pt-next-prev-button .text-icon {
  display: inline-flex;
  align-items: center;
  margin-bottom: 5px;
  color: var(--color-text);
  transition: all 0.3s ease-in-out;
}
.pt-next-prev-button .title {
  transition: all 0.3s ease-in-out;
}
.pt-next-prev-button .previous:hover .title {
  color: var(--color-primary);
}
.pt-next-prev-button .next:hover .title {
  color: var(--color-primary);
}

/*----------------------------------------*/
/*  2.12 forms
/*----------------------------------------*/
.pt-contact-link {
  display: flex;
  align-items: start;
  gap: 15px;
}
.pt-contact-link:not(:last-child) {
  margin-bottom: 15px;
}
.pt-contact-link .text a {
  font-size: 24px;
  color: var(--color-black);
  font-weight: var(--fw-sbold);
  line-height: 1.2;
}
@media (max-width: 575px) {
  .pt-contact-link .text a {
    font-size: 20px;
  }
}
.pt-contact-link .icon {
  margin-top: 4px;
}
.pt-contact-link .icon svg {
  width: 24px;
  height: 24px;
}

.office-address .address-item {
  padding-bottom: 15px;
  border-bottom: 1px solid var(--color-border);
  padding-top: 14px;
}
.office-address .address-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.office-address .address-item .name {
  font-weight: var(--fw-sbold);
  margin-bottom: 10px;
}
.office-address .address-item .location {
  font-weight: var(--fw-medium);
  color: var(--color-dark);
}

.pt-map-wrap iframe {
  border-radius: 12px;
  width: 100%;
}

/* Custom checkbox button */
input[type=checkbox] {
  display: none;
}
input[type=checkbox]:checked ~ label::before {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
input[type=checkbox]:checked ~ label::after {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}
input[type=checkbox]:checked ~ label::before {
  visibility: visible;
  opacity: 1;
}
input[type=checkbox] ~ label {
  position: relative;
  padding-inline-start: 30px;
}
input[type=checkbox] ~ label::after {
  position: absolute;
  content: "";
  top: 2px;
  left: 0;
  width: 18px;
  height: 18px;
  line-height: 16px;
  text-align: center;
  border: 1px solid #C3C7C9;
  z-index: -1;
  transition: all 0.2s linear;
}
input[type=checkbox] ~ label::before {
  position: absolute;
  content: "\eb7a";
  top: 3px;
  left: 0px;
  width: 18px;
  height: 18px;
  line-height: 16px;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  color: var(--color-white);
  transition: all 0.2s linear;
  font-family: var(--ff-remixicon);
  font-size: 14px;
}
input[type=checkbox] ~ label:hover {
  cursor: pointer;
}

.pt-sign-bg {
  padding: 30px 30px;
  background-color: var(--color-bg-primary);
  border-radius: 12px;
}
.pt-sign-divider-wrapper {
  display: flex;
  position: relative;
  align-items: center;
  margin: 0 -15px;
  margin-top: 30px;
  margin-bottom: 30px;
}
.pt-sign-divider-title {
  position: relative;
  padding: 0 15px;
  width: max-content;
}
.pt-sign-divider-line {
  position: relative;
  background-image: linear-gradient(90deg, #4B2E2B, rgba(75, 46, 43, 0));
  width: 100%;
  height: 1px;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: auto;
}
.pt-sign-divider-line.left-line {
  background-image: linear-gradient(-90deg, #4B2E2B, rgba(75, 46, 43, 0));
}
.pt-sign-divider-line.right-line {
  background-image: linear-gradient(90deg, #4B2E2B, rgba(75, 46, 43, 0));
}
.pt-sign-link {
  font-weight: var(--fw-sbold);
  color: var(--color-primary);
}

/*----------------------------------------*/
/*  2.13 Offcanvas
/*----------------------------------------*/
.offcanvas-area {
  background: var(--color-bg-primary) none repeat scroll 0 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 500px;
  height: 100%;
  transform: translateX(calc(100% + 80px));
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  z-index: 999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
  border-inline-start: 1px solid var(--color-border);
}
.offcanvas-area ::-webkit-scrollbar {
  display: none;
}
@media (max-width: 575px) {
  .offcanvas-area {
    width: 400px;
  }
}
@media (max-width:450px) {
  .offcanvas-area {
    width: 340px;
  }
}
.offcanvas-area.info-open {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.offcanvas-logo a img {
  width: 160px;
}
@media (max-width: 575px) {
  .offcanvas-logo a img {
    width: 150px;
  }
}
@media (max-width: 575px) {
  .offcanvas-logo a img {
    width: 140px;
  }
}
.offcanvas-content {
  padding-bottom: 45px;
}
.offcanvas-wrapper {
  position: relative;
  height: 100%;
  padding: 45px 45px;
}
@media (max-width: 575px) {
  .offcanvas-wrapper {
    padding: 30px 30px;
  }
}
.offcanvas-top {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}
.offcanvas-title-meta {
  color: var(--pt-heading);
  margin-bottom: 17px;
}
.offcanvas-text p {
  margin-bottom: 25px;
}
.offcanvas-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 99;
  inset-inline-start: 0;
  opacity: 0;
  visibility: hidden;
  backdrop-filter: blur(10px);
}
.offcanvas-overlay:hover {
  cursor: url(../images/shape/cross-out.webp), pointer;
}
.offcanvas-overlay.overlay-open {
  opacity: 1;
  visibility: visible;
}
.offcanvas-contact ul li:not(:last-child) {
  margin-bottom: 20px;
}
.offcanvas-contact ul li a:hover {
  color: var(--color-primary);
}
.offcanvas-contact ul li a:hover i {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}
.offcanvas-contact-icon i {
  display: inline-block;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  border-radius: 50%;
  background: transparent;
  color: var(--color-black);
  border: 1px solid var(--pt-border-secondary);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.pt-sidebar-toggle {
  cursor: pointer;
}

/* Close icon */
.offcanvas-close-icon {
  line-height: 1;
  color: var(--color-primary);
}
.offcanvas-close-icon .offcanvas-m-lines {
  position: relative;
  display: block;
  height: 12px;
  width: 33px;
}
.offcanvas-close-icon.animation--flip .offcanvas-m-line.line--1 {
  top: 6px;
  transform: rotate(45deg);
}
.offcanvas-close-icon.animation--flip .offcanvas-m-line.line--3 {
  opacity: 0;
  opacity: 0;
}
.offcanvas-close-icon.animation--flip .offcanvas-m-line.line--2 {
  top: 6px;
  transform: rotate(-45deg);
}
.offcanvas-close-icon .offcanvas-m-line {
  position: absolute;
  inset-inline-start: 0;
  height: 2px;
  width: 100%;
  background-color: currentColor;
  transition: top 0.15s ease, transform 0.3s ease;
}
.offcanvas-close-icon .offcanvas-m-line.line--1 {
  top: 0;
}
.offcanvas-close-icon .offcanvas-m-line.line--2 {
  top: 5px;
}
.offcanvas-close-icon .offcanvas-m-line.line--3 {
  bottom: 0;
  bottom: 0;
}
.offcanvas-close-icon:hover .offcanvas-m-line {
  animation: qode-draw 0.8s cubic-bezier(0.44, 1.1, 0.53, 0.99) 1 forwards;
  animation: qode-draw 0.8s cubic-bezier(0.44, 1.1, 0.53, 0.99) 1 forwards;
}
.offcanvas-close-icon:hover .offcanvas-m-line:nth-of-type(2) {
  animation-delay: 0.1s;
}

/*----------------------------------------
   2.14 Basic pagination
-----------------------------------------*/
.pt-pagination-wrapper {
  display: flex;
  align-items: center;
  gap: 0 10px;
}
.pt-pagination-wrapper li {
  list-style: none;
}
.pt-pagination-page-link {
  width: 50px;
  height: 50px;
  font-size: 20px;
  font-weight: 500;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-black);
  background-color: rgba(242, 92, 0, 0.2);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-pagination-page-link {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}
.pt-pagination-page-link:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.pt-pagination-page-link.active {
  background-color: var(--color-primary);
  color: var(--color-white);
}

/*----------------------------------------*/
/*  2.15 preloader CSS START
/*----------------------------------------*/
#preloader {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99999;
  width: 100%;
  height: 100%;
  overflow: visible;
  background: var(--color-white) no-repeat center center;
}

.loader {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.text {
  color: var(--color-primary);
  font-size: 20px;
}

.ring {
  width: 190px;
  height: 190px;
  border: 1px solid transparent;
  border-radius: 50%;
  position: absolute;
}
.ring:nth-child(1) {
  border-bottom: 8px solid var(--color-primary);
  animation: rotate1 2s linear infinite;
}
.ring:nth-child(2) {
  border-bottom: 8px solid var(--color-success);
  animation: rotate2 2s linear infinite;
}
.ring:nth-child(3) {
  border-bottom: 8px solid var(--color-danger);
  animation: rotate3 2s linear infinite;
}
.ring:nth-child(4) {
  border-bottom: 8px solid var(--color-warning);
  animation: rotate4 2s linear infinite;
}

@keyframes rotate1 {
  from {
    transform: rotateX(50deg) rotateZ(110deg);
  }
  to {
    transform: rotateX(50deg) rotateZ(470deg);
  }
}
@keyframes rotate2 {
  from {
    transform: rotateX(20deg) rotateY(50deg) rotateZ(20deg);
  }
  to {
    transform: rotateX(20deg) rotateY(50deg) rotateZ(380deg);
  }
}
@keyframes rotate3 {
  from {
    transform: rotateX(40deg) rotateY(130deg) rotateZ(450deg);
  }
  to {
    transform: rotateX(40deg) rotateY(130deg) rotateZ(90deg);
  }
}
@keyframes rotate4 {
  from {
    transform: rotateX(70deg) rotateZ(270deg);
  }
  to {
    transform: rotateX(70deg) rotateZ(630deg);
  }
}
/*----------------------------------------*/
/*  2.16 Section Title  
/*----------------------------------------*/
.pt-section-subtitle {
  color: var(--color-primary);
  font-size: 16px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.pt-section-desc {
  font-size: 18px;
}

/*----------------------------------------*/
/*  2.17 social
/*----------------------------------------*/
.theme-primary-social a {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: var(--color-white);
  z-index: 1;
  border: 1.5px solid var(--color-border);
  transition: all 0.3s 0s ease-out;
  border-radius: 4px;
}
.theme-primary-social a:not(:last-of-type) {
  margin-right: 6px;
}
.theme-primary-social a:hover {
  color: var(--color-white);
  border-color: var(--color-primary);
  background-color: var(--color-primary);
}
.theme-primary-social.has-black a {
  color: var(--color-dark);
  border-color: var(--color-border);
}
.theme-primary-social.has-black a:hover {
  color: var(--color-white);
  border-color: var(--color-primary);
  background-color: var(--color-primary);
}

/*----------------------------------------*/
/*  3.5.1 Header Style 1
/*----------------------------------------*/
.pt-header-area {
  position: absolute;
  inset-inline-start: 0;
  margin: auto;
  width: 100%;
  z-index: 99;
}
@media (max-width: 575px) {
  .pt-header-area {
    overflow: hidden;
  }
}
.pt-header-logo {
  padding-top: 17px;
  padding-bottom: 16px;
  max-width: 207.9px;
}
@media (max-width: 575px) {
  .pt-header-logo {
    padding: 15px 0;
    max-width: 150px;
  }
}
@media (max-width:450px) {
  .pt-header-logo {
    padding: 20px 0;
    max-width: 150px;
  }
}
.pt-header-logo img {
  width: 100%;
}
.pt-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 99;
}
.pt-header-left {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 50px;
}
.pt-header-right {
  display: flex;
  align-items: center;
  gap: 0 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .pt-header-right {
    gap: 0 15px;
  }
}
.pt-header-menu {
  text-align: center;
}
.pt-header-hamburger {
  background: var(--color-black);
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  display: none;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-header-hamburger {
    display: inline-flex;
  }
}
.pt-header-hamburger .h-line {
  width: 28px;
  height: 20px;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: color 0.2s ease-out;
}
.pt-header-hamburger .h-line span {
  width: 28px;
  height: 2px;
  background: var(--color-white);
  display: inline-block;
  transition: color 0.2s ease-out;
  margin: 0 auto;
  margin-right: auto;
  margin-right: 0;
}
.pt-header-hamburger .h-line span:nth-child(1) {
  width: 21px;
  transition: all 0.3s linear;
}
.pt-header-hamburger .h-line span:nth-child(2) {
  width: 28px;
  transition: all 0.3s linear;
}
.pt-header-hamburger .h-line span:nth-child(3) {
  width: 15px;
  transition: all 0.3s linear;
}
.pt-header-hamburger .h-line:hover span {
  animation: qode-draw 0.8s cubic-bezier(0.44, 1.1, 0.53, 0.99) 1 forwards;
}
.pt-header-hamburger .h-line:hover span:nth-child(2) {
  animation-delay: 0.1s;
}
.pt-header-hamburger .h-line:hover span:nth-child(3) {
  animation-delay: 0.2s;
}
.pt-header-hamburger .h-line.is-black span {
  background: var(--color-black);
}
.pt-header-hamburger .h-line.is-white span {
  background: var(--color-white);
}
.pt-header-hamburger .h-line.style-two span {
  transition: all 0.3s ease-in;
}
.pt-header-hamburger .h-line.style-two span:nth-child(2) {
  width: 85%;
}
.pt-header-hamburger .h-line.style-two span:nth-child(3) {
  width: 75%;
}
.pt-header-hamburger .h-line.style-two:hover span {
  width: 100%;
}

.pt-sticky {
  position: fixed !important;
  top: 0;
  z-index: 99;
  inset-inline-end: 0;
  inset-inline-start: 0;
  width: 100%;
  -webkit-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  background: var(--color-white);
  border-top: 0;
  box-shadow: 0 10px 35px 0 rgba(0, 0, 0, 0.1);
}
.pt-sticky .logo-white {
  display: none;
}
.pt-sticky .logo-black {
  display: block;
}

.logo-black {
  display: none;
}

/* header animation */
@-moz-keyframes headerSlideDown {
  0% {
    margin-top: -150px;
  }
  100% {
    margin-top: 0;
  }
}
@-ms-keyframes headerSlideDown {
  0% {
    margin-top: -150px;
  }
  100% {
    margin-top: 0;
  }
}
@-webkit-keyframes headerSlideDown {
  0% {
    margin-top: -150px;
  }
  100% {
    margin-top: 0;
  }
}
@keyframes headerSlideDown {
  0% {
    margin-top: -150px;
  }
  100% {
    margin-top: 0;
  }
}
@-moz-keyframes headerSlideUp {
  0% {
    margin-top: 0;
  }
  100% {
    margin-top: -150px;
  }
}
@-ms-keyframes headerSlideUp {
  0% {
    margin-top: 0;
  }
  100% {
    margin-top: -150px;
  }
}
@-webkit-keyframes headerSlideUp {
  0% {
    margin-top: 0;
  }
  100% {
    margin-top: -150px;
  }
}
@keyframes headerSlideUp {
  0% {
    margin-top: 0;
  }
  100% {
    margin-top: -150px;
  }
}
/* HEADER CSS */
/*----------------------------------------*/
/*  3.1.1 banner css
/*----------------------------------------*/
.pt-banner {
  /*video background css */
  /*video background css */
}
.pt-banner-area {
  position: relative;
  z-index: 1;
}
.pt-banner-bg-image {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  height: 100%;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -2;
  transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
}
.pt-banner-bg-image::before {
  position: absolute;
  content: "";
  inset-inline-start: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #000000 30%, rgba(0, 12, 28, 0) 99.17%);
  opacity: 0.65;
}
.pt-banner-content {
  padding-top: 350px;
  padding-bottom: 210px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .pt-banner-content {
    padding-top: 250px;
    padding-bottom: 200px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .pt-banner-content {
    padding-top: 280px;
    padding-bottom: 180px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-banner-content {
    padding-top: 180px;
    padding-bottom: 180px;
  }
}
.pt-banner-subtitle {
  font-size: 18px;
  font-weight: var(--fw-medium);
  color: var(--color-primary);
  display: inline-block;
}
.pt-banner-title {
  font-size: 72px;
  color: var(--color-white);
  margin-bottom: 25px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .pt-banner-title {
    font-size: 62px;
  }
}
@media (max-width: 575px) {
  .pt-banner-title {
    font-size: 50px;
  }
}
.pt-banner-description {
  width: 85%;
  margin-bottom: 40px;
}
.pt-banner-bg-video {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  height: 100%;
  width: 100%;
  z-index: -2;
}
.pt-banner-bg-video::before {
  position: absolute;
  content: "";
  inset-inline-start: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--color-black);
  opacity: 0.6;
}
.pt-banner-bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pt-slider-nav-btn {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-slider-nav-btn {
    flex-direction: row;
    gap: 15px;
  }
}
.pt-slider-nav-btn button {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  z-index: 55;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  color: var(--color-black);
  background: var(--color-white);
  transition: all 0.3s ease-in-out;
}
.pt-slider-nav-btn button:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.pt-slider-navigation {
  position: absolute;
  top: 50%;
  right: 50px;
  z-index: 5;
  transform: translateY(-50%);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-slider-navigation {
    top: auto;
    right: auto;
    z-index: 5;
    transform: translateY(-50%);
    left: 35px;
    bottom: 50px;
  }
}
@media (max-width: 575px) {
  .pt-slider-navigation {
    left: 15px;
  }
}

/* HEADER CSS */
/*----------------------------------------*/
/*  3.6.2 Main menu css
/*----------------------------------------*/
.main-menu > ul {
  display: inline-flex;
  gap: 0 30px;
}
.main-menu > ul > li:hover > a {
  color: var(--color-primary);
}
.main-menu > ul > li:hover > ul {
  opacity: 1;
  pointer-events: all;
  transform: scaleY(1);
}
.main-menu > ul > li:hover > ul.submenu li:hover > ul {
  opacity: 1;
  pointer-events: all;
}
.main-menu li {
  position: relative;
  list-style: none;
}
.main-menu li a {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-white);
  padding: 23px 0px;
  display: inline-block;
  font-family: var(--ff-body);
  position: relative;
  transition: all 0.3s linear;
  text-transform: capitalize;
}
.main-menu li a.active {
  color: var(--color-primary);
}
.main-menu li a.active::after {
  color: var(--color-primary);
}
.main-menu li .has-arrow > a::before {
  content: "\ea4e";
  font-family: var(--ff-remixicon);
  font-weight: 600;
  position: absolute;
  right: 32px;
  transition: all 0.3s ease-in-out;
}
.main-menu li .has-arrow:hover a::before {
  transform: rotate(-90deg);
}
.main-menu .submenu {
  background-color: var(--color-white);
  box-shadow: 0px 30px 70px 0px rgba(11, 6, 70, 0.08);
  padding: 18px 0px;
  width: 260px;
  position: absolute;
  left: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 10;
  transition: all 0.5s;
  top: 100%;
  border-radius: 0 0 8px 8px;
  transform: scaleY(0);
  transform-origin: top center;
}
.main-menu .submenu ul {
  background-color: var(--color-white);
  padding: 18px 0px;
  width: 260px;
  position: absolute;
  left: 100%;
  top: 0;
  opacity: 0;
  z-index: 10;
  transition: all 0.5s;
}
.main-menu .submenu li {
  position: relative;
  padding: 0 0;
  padding-left: 20px;
  padding-right: 0;
}
.main-menu .submenu li:hover > a {
  color: var(--color-primary);
}
.main-menu .submenu li:hover > ul {
  opacity: 1;
  transform: none !important;
  pointer-events: all;
}
.main-menu .submenu li a {
  font-size: 16px;
  color: var(--color-black);
  padding: 5px 0;
  display: block;
  transition: all 0.5s;
  text-align: left;
  cursor: pointer;
}
.main-menu .submenu li a.active {
  color: var(--color-primary);
}

@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .last-slice.submenu {
    right: 10px;
    left: auto;
  }
  .last-slice.submenu ul {
    right: calc(100% + 10px);
    left: auto;
  }
  .last-slice .has-arrow:hover a::before {
    transform: rotate(90deg) !important;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .main-menu > ul > li:hover > ul.last-slice.submenu li:hover > ul {
    right: 100%;
    left: auto;
  }
}

/* menu arrow css start */
.main-menu > ul > .menu-item-has-children > a::after {
  content: "\ea4e";
  font-family: var(--ff-remixicon);
  margin-left: 5px;
  font-weight: 500;
  font-size: 14px;
  display: inline-block;
  transition: all 0.3s 0s ease-out;
}
.main-menu > ul > .menu-item-has-children > a:hover::after {
  color: var(--color-primary);
}
.main-menu > ul > .menu-item-has-children > a.active::after {
  color: var(--color-primary);
}

/* menu arrow css start */
.pt-sticky .main-menu li a {
  color: var(--color-black);
}
.pt-sticky .main-menu li a.active {
  color: var(--color-primary);
}
.pt-sticky .main-menu > ul > li:hover > a {
  color: var(--color-primary);
}
.pt-sticky .main-menu > ul > .menu-item-has-children > a:hover::after {
  transform: rotate(180deg);
  color: var(--color-primary);
}
.pt-sticky .main-menu > ul > .menu-item-has-children > a.active::after {
  color: var(--color-primary);
}

/*----------------------------------------*/
/*  3.6.1 Mobile Menu css
/*----------------------------------------*/
.pt-mobile-menu {
  display: none;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-mobile-menu {
    display: block;
  }
}

.pt-offcanvas-menu ul li {
  position: relative;
  list-style: none;
}
.pt-offcanvas-menu ul li:not(:last-child) {
  margin-bottom: 8px;
}
.pt-offcanvas-menu ul li > a {
  display: block;
  font-size: 16px;
  color: var(--color-black);
  padding: 10px 0;
  padding-inline-end: 20px;
}
.pt-offcanvas-menu ul li > a.active {
  color: var(--color-primary);
}
.pt-offcanvas-menu ul li > a:hover {
  color: var(--color-primary);
}
.pt-offcanvas-menu ul li.active > a {
  color: var(--color-primary);
}
.pt-offcanvas-menu ul li.active > .pt-menu-close {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}
.pt-offcanvas-menu ul li.active > .pt-menu-close i {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.pt-offcanvas-menu ul li > a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.pt-offcanvas-menu ul li .submenu,
.pt-offcanvas-menu ul li .mega-menu {
  display: none;
  padding-inline-start: 20px;
}
.pt-offcanvas-menu ul li .has-homemenu {
  padding-inline-start: 0;
}
.pt-offcanvas-menu ul li .homemenu-title {
  color: var(--color-white);
}

.pt-menu-close {
  position: absolute;
  inset-inline-end: 0;
  top: 8px;
  font-size: 18px;
  color: var(--color-gray);
  z-index: 1;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-gray);
  border-radius: 4px;
  -webkit-transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, color 0.3s ease-in-out;
  -moz-transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, color 0.3s ease-in-out;
  -ms-transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, color 0.3s ease-in-out;
  -o-transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.pt-menu-close i {
  font-size: 26px;
}

.pt-offcanvas-menu-cat ul li {
  position: relative;
  list-style: none;
}
.pt-offcanvas-menu-cat ul li:not(:last-child) {
  margin-bottom: 8px;
}
.pt-offcanvas-menu-cat ul li > a {
  display: block;
  font-size: 16px;
  color: var(--color-black);
  padding: 10px 0;
  padding-inline-end: 20px;
}
.pt-offcanvas-menu-cat ul li > a.active {
  color: var(--color-primary);
}
.pt-offcanvas-menu-cat ul li > a:hover {
  color: var(--color-primary);
}
.pt-offcanvas-menu-cat ul li.active > a {
  color: var(--color-primary);
}
.pt-offcanvas-menu-cat ul li.active > .pt-menu-close {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}
.pt-offcanvas-menu-cat ul li.active > .pt-menu-close i {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.pt-offcanvas-menu-cat ul li > a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.pt-offcanvas-menu-cat ul li .submenu,
.pt-offcanvas-menu-cat ul li .mega-menu {
  display: none;
  padding-inline-start: 20px;
}
.pt-offcanvas-menu-cat ul li .has-homemenu {
  padding-inline-start: 0;
}
.pt-offcanvas-menu-cat ul li .homemenu-title {
  color: var(--color-white);
}

/* Menu index */
/*----------------------------------------*/
/*  3.2.2 Blog css
/*----------------------------------------*/
.pt-blog-card:hover .pt-blog-thumb img {
  animation: pulse-blur 800ms linear;
}
.pt-blog-card .pt-blog-thumb {
  overflow: hidden;
  transition: all 0.3s linear;
  height: 300px;
  width: 100%;
  border-radius: 8px 8px 0 0;
}
.pt-blog-card .pt-blog-thumb img {
  width: 100%;
  height: 100%;
  transition: all 0.3s linear;
  border-radius: 8px 8px 0 0;
}
.pt-blog-card .pt-blog-content {
  padding: 18px 28px 21px 28px;
  background-color: var(--color-white);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.06);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pt-blog-card .pt-blog-content {
    padding: 18px 20px 21px 20px;
  }
}
.pt-blog-card .pt-blog-content p {
  margin-bottom: 15px;
}
.pt-blog-card.pt-blog-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  border-radius: 8px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .pt-blog-card.pt-blog-list {
    grid-template-columns: 220px auto;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-blog-card.pt-blog-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-blog-card.pt-blog-list {
    border-radius: 8px 8px 0 0;
  }
}
.pt-blog-card.pt-blog-list .pt-blog-thumb {
  border-radius: 8px 0 0 8px;
  height: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-blog-card.pt-blog-list .pt-blog-thumb {
    border-radius: 8px 8px 0 0;
  }
}
.pt-blog-card.pt-blog-list .pt-blog-thumb img {
  border-radius: 8px 0 0 8px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-blog-card.pt-blog-list .pt-blog-thumb img {
    border-radius: 8px 8px 0 0;
  }
}
.pt-blog-card.pt-blog-list .pt-blog-content {
  border-radius: 0 8px 8px 0;
  box-shadow: none;
  background-color: var(--color-bg-primary);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-blog-card.pt-blog-list .pt-blog-content {
    border-radius: 8px 8px 0 0;
  }
}
.pt-blog-card.pt-blog-list .pt-blog-meta-list {
  gap: 10px 20px;
  margin-bottom: 10px;
}
.pt-blog-card.pt-blog-list .pt-blog-meta-item:last-child::before {
  left: -10px;
}
.pt-blog-card.pt-blog-list .pt-blog-meta-item .meta-thumb {
  width: 26px;
  height: 26px;
  min-width: 26px;
}
.pt-blog-meta-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 30px;
  margin-bottom: 15px;
}
.pt-blog-meta-item {
  display: inline-flex;
  gap: 0 5px;
  align-items: center;
  font-size: 15px;
  font-weight: var(--fw-regular);
}
.pt-blog-meta-item:last-child {
  position: relative;
}
.pt-blog-meta-item:last-child::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 20px;
  left: -15px;
  top: 50%;
  background-color: var(--color-border);
  transform: translateY(-50%);
}
.pt-blog-meta-item .meta-icon {
  color: var(--color-dark);
  font-size: 22px;
}
.pt-blog-meta-item .meta-thumb {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 100%;
}
.pt-blog-meta-item .meta-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
}
.pt-blog-meta-item .meta-text {
  color: rgba(29, 29, 29, 0.7);
}
.pt-blog-meta-item .meta-text:hover {
  color: var(--color-primary);
}
.pt-blog-meta-item .meta-author {
  color: rgba(29, 29, 29, 0.7);
}
.pt-blog-meta-item .meta-author:hover {
  color: var(--color-primary);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-blog-pagination {
    margin-top: 50px;
  }
}

/*----------------------------------------*/
/*  3.2.1 Blog tag css
/*----------------------------------------*/
.tagcloud a {
  font-size: 16px;
  font-weight: 500;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  display: inline-flex;
  padding: 0 12px;
  margin-bottom: 10px;
  position: relative;
  transition: all 0.3s ease-in-out;
  height: 36px;
  align-items: center;
  justify-content: center;
}
.tagcloud a:not(:last-child) {
  margin-inline-end: 5px;
}
.tagcloud a:hover {
  color: var(--color-white);
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

/*----------------------------------------*/
/*  3.2.3 Postbox css
/*----------------------------------------*/
.pt-postbox {
  /* Blog Post Details */
  /* comment and comment form */
}
.pt-postbox-title {
  font-size: 30px;
  font-family: var(--font-body);
}
.pt-postbox-item {
  overflow: hidden;
}
.pt-postbox-item:not(:last-child) {
  margin-bottom: 50px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-postbox-item:not(:last-child) {
    margin-bottom: 30px;
  }
}
.pt-postbox-item:hover .pt-postbox-thumb img {
  animation: pulse-blur 800ms linear;
}
.pt-postbox-thumb {
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}
.pt-postbox-thumb img {
  transition: all 0.3s linear;
  border-radius: 12px 12px 0 0;
}
.pt-postbox-content {
  padding: 30px 30px;
  background-color: var(--color-bg-primary);
  border-radius: 0 0 12px 12px;
}
.pt-postbox-description {
  margin-bottom: 30px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.pt-postbox-slider-navigation button {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  z-index: 15;
  color: var(--color-white);
  border: 1px solid var(--color-border);
  background: transparent;
  opacity: 0.8;
  left: 30px;
  inset-block-start: 50%;
  transform: translateY(-50%);
}
.pt-postbox-slider-navigation button:hover {
  color: var(--color-white);
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}
.pt-postbox-slider-navigation .buildrox-navigation-next {
  left: auto !important;
  right: 30px;
}
.pt-postbox-slider .swiper-slide {
  border-radius: 12px 12px 0 0;
}
.pt-postbox-slider .swiper-slide img {
  border-radius: 12px 12px 0 0;
}
.pt-postbox-audio {
  height: 490px;
}
.pt-postbox-audio iframe {
  width: 100%;
  height: 100%;
  border-radius: 12px 12px 0 0;
}
.pt-postbox-video {
  position: relative;
  border-radius: 12px;
}
.pt-postbox-video::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #4F4F4F;
  opacity: 0.45;
  left: 0;
  top: 0;
  border-radius: 12px 12px 0 0;
}
.pt-postbox-video img {
  border-radius: 12px 12px 0 0;
}
.pt-postbox-details-thumb {
  border-radius: 12px;
}
.pt-postbox-details-thumb img {
  border-radius: 12px;
}
.pt-postbox-details-content p:not(:last-child) {
  margin-bottom: 20px;
}
.pt-postbox-details-content blockquote {
  margin-bottom: 30px;
}
.pt-postbox-details-content .pt-blog-gallery {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0;
  width: calc(50% - 30px);
  min-width: 100%;
  gap: 30px;
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-postbox-details-content .pt-blog-gallery {
    width: calc(50% - 20px);
    gap: 15px;
    margin-bottom: 15px;
  }
}
.pt-postbox-details-content .pt-blog-image {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
  max-width: 100%;
  position: relative;
  margin: 0;
  width: calc(50% - 30px);
  border-radius: 12px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-postbox-details-content .pt-blog-image {
    width: calc(50% - 20px);
  }
}
.pt-postbox-details-content .pt-blog-image img {
  flex: 1 0 0%;
  height: 100%;
  object-fit: cover;
  width: 100%;
  border-radius: 12px;
}
.pt-postbox-details-footer .top {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding-top: 15px;
  padding-bottom: 15px;
}
.pt-postbox-details-footer .tagcloud a {
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .pt-postbox-details-footer .tagcloud a {
    margin-bottom: 10px;
  }
}
.pt-postbox-author {
  padding: 34px 34px;
  background-color: var(--color-bg-primary);
  display: grid;
  grid-template-columns: 200px auto;
  gap: 30px;
  align-items: center;
  border-radius: 12px;
}
@media (max-width: 575px) {
  .pt-postbox-author {
    grid-template-columns: auto;
  }
}
.pt-postbox-author-thumb {
  width: 200px;
  height: 200px;
  border-radius: 6px;
}
.pt-postbox-author-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
}
.pt-postbox-comment ul li {
  list-style: none;
}
.pt-postbox-comment ul li:not(:last-child) {
  margin-bottom: 30px;
}
.pt-postbox-comment ul.children {
  margin-top: 30px;
  margin-left: 100px;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .pt-postbox-comment ul.children {
    margin-left: 50px;
  }
}
@media (max-width: 575px) {
  .pt-postbox-comment ul.children {
    margin-top: 20px;
    margin-left: 20px;
  }
  .pt-postbox-comment ul.children .pt-postbox-comment-avatar img {
    margin-bottom: 15px;
  }
}
.pt-postbox-comment-info {
  flex: 0 0 auto;
}
.pt-postbox-comment-text {
  width: 100%;
}
.pt-postbox-comment-avatar img {
  width: 100px;
  height: 100px;
  margin-right: 20px;
  border-radius: 6px;
}
.pt-postbox-comment-name {
  margin-bottom: 5px;
}
.pt-postbox-comment-name .post-meta {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--color-text);
  display: inline-block;
  margin-bottom: 8px;
}
.pt-postbox-comment-name .title {
  font-size: 18px;
  line-height: 1;
  color: var(--color-black);
  margin-bottom: 10px;
}
.pt-postbox-comment-text p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text);
  margin-bottom: 22px;
}
.pt-postbox-comment-text .post-rating i {
  font-size: 16px;
  color: var(--color-warning);
}
.pt-postbox-comment-reply {
  margin-top: 10px;
}
.pt-postbox-comment-reply a {
  display: inline-block;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--color-black);
  border: 1px solid var(--color-border);
  padding: 7px 18px;
  border-radius: 4px;
}
.pt-postbox-comment-reply a:hover {
  color: var(--color-white);
  background: var(--color-primary);
  border-color: var(--color-primary);
}
.pt-postbox-comment-form p {
  line-height: 1;
  color: var(--color-text);
}

/* blockquote css start */
blockquote {
  position: relative;
  background-color: var(--color-bg-primary);
  padding: 30px 30px;
  margin: 0;
  border-radius: 12px;
}
blockquote::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 100%;
  top: 0;
  inset-inline-start: 0;
  background: var(--color-primary);
  border-radius: 12px 0px 0px 12px;
}
blockquote p {
  font-size: 28px;
  font-weight: 600;
  font-style: italic;
  line-height: 1.4;
  color: var(--color-action);
  margin-bottom: 10px;
}
blockquote cite {
  font-size: 18px;
  font-weight: 500;
  display: block;
  color: var(--color-black);
  position: relative;
}
blockquote cite::before {
  position: relative;
  content: "";
  display: inline-block;
  background: var(--color-black);
  height: 2px;
  width: 40px;
  font-weight: 400;
  text-align: center;
  top: -4px;
  margin-right: 10px;
}

/*----------------------------------------*/
/*  3.2.4 Recent Post css
/*----------------------------------------*/
.recent-post {
  display: flex;
  align-items: center;
  gap: 15px;
}
.recent-post:hover .recent-post-thumb img {
  animation: pulse-blur 800ms linear;
}
@media (max-width: 575px) {
  .recent-post {
    flex-direction: column;
    align-items: start;
  }
}
.recent-post:not(:last-child) {
  margin-bottom: 20px;
}
.recent-post-title {
  margin-bottom: 5px;
  font-size: 18px;
}
.recent-post-thumb {
  width: 100px;
  height: 100px;
  min-width: 100px;
  overflow: hidden;
  position: relative;
  border-radius: 6px;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .recent-post-thumb {
    width: 150px;
    height: 110px;
    min-width: 150px;
  }
}
@media (max-width: 575px) {
  .recent-post-thumb {
    width: 100%;
    height: 100%;
    max-width: 100%;
  }
}
.recent-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s linear;
  overflow: hidden;
  border-radius: 6px;
}
.recent-post-date {
  font-size: 16px;
}
.recent-post-date span {
  color: var(--color-primary);
  margin-right: 2px;
}

/*----------------------------------------*/
/*  3.2.5 Sidebar css
/*----------------------------------------*/
.pt-sidebar-wrapper {
  margin-inline-start: 20px;
  background-color: var(--color-bg-primary);
  padding: 30px;
  border-radius: 12px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-sidebar-wrapper {
    margin-inline-start: 0;
  }
}
.pt-sidebar-wrapper .pt-sidebar-widget {
  margin-bottom: 30px;
}
.pt-sidebar-wrapper .pt-sidebar-widget.widget_categories ul li {
  list-style: none;
}
.pt-sidebar-wrapper .pt-sidebar-widget.widget_categories ul li:hover a {
  color: var(--color-primary);
  border-color: var(--color-white);
  background-color: var(--color-white);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.06);
}
.pt-sidebar-wrapper .pt-sidebar-widget.widget_categories ul li:not(:last-child) {
  margin-bottom: 16px;
}
.pt-sidebar-wrapper .pt-sidebar-widget.widget_categories ul li a {
  padding: 11px 18px;
  border: 1px solid var(--color-border);
  transition: all 0.3s ease-in-out;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pt-sidebar-wrapper .widget_search .search-form {
  position: relative;
}
.pt-sidebar-wrapper .widget_search .search-form input {
  padding-inline-end: 60px;
}
.pt-sidebar-wrapper .widget_search .search-form button {
  font-size: 20px;
  color: var(--color-white);
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: var(--color-primary);
  border-radius: 4px;
  transition: all 0.3s linear;
}
.pt-sidebar-wrapper .widget_search .search-form button:hover {
  background-color: var(--color-action);
}
.pt-sidebar-wrapper .pt-sidebar-widget-title {
  font-size: 22px;
  margin-bottom: 22px;
  text-transform: uppercase;
}

/*----------------------------------------*/
/*  3.3.1 Cart css
/*----------------------------------------*/
.pt-cart-table .table > thead {
  vertical-align: middle;
}
.pt-cart-table .table > tbody {
  vertical-align: middle;
}
.pt-cart-total {
  background-color: var(--color-bg-primary);
  padding: 30px 30px;
  margin-top: 60px;
}
.pt-cart-total-table {
  width: 100%;
}
.pt-cart-total-table tr td {
  color: var(--color-black);
  font-weight: 600;
  font-size: 18px;
  padding: 15px 15px;
}
.pt-cart-total-table tr td:first-child {
  background-color: var(--color-border);
  color: var(--color-black);
  font-weight: 700;
}

.pt-quantity-box {
  position: relative;
  width: 98px;
  height: 50px;
}
.pt-quantity-box button {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
  font-size: 12px;
  position: absolute;
  top: 1px;
  right: 1px;
  background-color: transparent;
  border: none;
  border-top-width: medium;
  border-top-style: none;
  border-top-color: currentcolor;
  border-left-width: medium;
  border-left-style: none;
  border-left-color: currentcolor;
  border-left: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  transition: all 500ms ease;
}
.pt-quantity-box button:hover {
  color: var(--color-white);
  background-color: var(--color-primary);
}
.pt-quantity-box button.decrease {
  bottom: 1px;
  top: auto;
  border-top: 1px solid var(--color-border);
}
.pt-quantity-box input {
  width: 98px;
  height: 50px;
  border: 1px solid var(--color-border);
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
  color: var(--color-primary);
  padding-left: 30px;
  outline: none;
  font-size: 18px;
  font-weight: 500;
  background-color: transparent;
}

.pt-coupon-input {
  position: relative;
}
.pt-coupon-input span {
  position: absolute;
  top: 28px;
  inset-inline-start: 20px;
  transform: translateY(-50%);
}
.pt-coupon-input-box {
  position: relative;
}
.pt-coupon-input-box input[type=text] {
  padding-inline-start: 60px;
  padding-inline-end: 120px;
}
.pt-coupon-input-box button {
  position: absolute;
  inset-inline-end: 0;
  transition: all 0.3s linear;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 0 4px 4px 0;
}

.pt-shipping-option:not(:last-child) {
  margin-bottom: 10px;
}
.pt-shipping-option input {
  display: none;
}
.pt-shipping-option input:checked + label::before {
  opacity: 1;
  visibility: visible;
}
.pt-shipping-option input:checked + label::after {
  border-color: var(--color-primary);
}
.pt-shipping-option input[type=radio] {
  opacity: 0;
  position: absolute;
}
.pt-shipping-option input[type=radio]:checked ~ label::before {
  border-color: var(--color-primary);
}
.pt-shipping-option input[type=radio]:checked ~ label::after {
  opacity: 1;
  background-color: var(--color-primary);
}
.pt-shipping-option label {
  color: var(--color-black);
  position: relative;
  padding-left: 25px;
  display: flex;
  justify-content: space-between;
}
.pt-shipping-option label span {
  color: var(--color-black);
  font-weight: 600;
  font-size: 18px;
}
.pt-shipping-option input[type=radio] ~ label {
  position: relative;
  font-weight: 500;
  font-size: 18px;
  padding-inline-start: 28px;
  cursor: pointer;
  margin-bottom: 0;
}
.pt-shipping-option input[type=radio] ~ label::before {
  content: "";
  position: absolute;
  top: 3px;
  inset-inline-start: 0;
  width: 20px;
  height: 20px;
  background-color: transparent;
  border: 1px solid var(--color-black);
  border-radius: 2px;
  transition: all 0.3s;
  border-radius: 50%;
}
.pt-shipping-option input[type=radio] ~ label::after {
  position: absolute;
  content: "";
  opacity: 0;
  transition: all 0.3s;
  width: 12px;
  height: 12px;
  inset-inline-start: 4px;
  border-radius: 50%;
  top: 7px;
}

/*----------------------------------------*/
/*  3.3.1 Cart css
/*----------------------------------------*/
.pt-sidebar-cart-area {
  position: fixed;
  right: 0;
  top: 0;
  width: 380px;
  height: 100%;
  -webkit-transform: translateX(calc(100% + 80px));
  -moz-transform: translateX(calc(100% + 80px));
  -ms-transform: translateX(calc(100% + 80px));
  -o-transform: translateX(calc(100% + 80px));
  transform: translateX(calc(100% + 80px));
  background: var(--color-white) none repeat scroll 0 0;
  transition: 0.45s ease-in-out, opacity 0.45s ease-in-out;
  z-index: 99999999999;
  scrollbar-width: none;
}
@media (max-width: 575px) {
  .pt-sidebar-cart-area {
    width: 100%;
  }
}
.pt-sidebar-cart-area::-webkit-scrollbar {
  display: none; /* for Chrome, Safari, and Opera */
}
.pt-sidebar-cart-area.pt-sidebar-cart-opened {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.pt-sidebar-cart-wrapper {
  position: relative;
  min-height: 100%;
  padding: 30px 30px;
}
.pt-sidebar-cart-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 20px;
  padding-bottom: 15px;
}
.pt-sidebar-cart-close-btn {
  background: transparent;
  color: var(--color-black);
  font-size: 28px;
}
.pt-sidebar-cart-close-btn:hover {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  color: var(--color-primary);
}
.pt-sidebar-cart-widget {
  height: calc(100vh - 335px);
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}
.pt-sidebar-cart-widget::-webkit-scrollbar {
  display: none; /* for Chrome, Safari, and Opera */
}
.pt-sidebar-cart-widget-item {
  position: relative;
  display: flex;
  padding: 20px 0;
  border-bottom: 1px solid rgba(129, 129, 129, 0.2);
  align-items: center;
}
.pt-sidebar-cart-widget-item:first-child {
  padding-top: 0;
}
.pt-sidebar-cart-widget-item:last-child {
  border-bottom: 0;
}
.pt-sidebar-cart-thumb {
  border: 1px solid var(--color-border);
  margin-right: 15px;
  width: 80px;
  height: 80px;
}
.pt-sidebar-cart-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pt-sidebar-cart-title {
  font-size: 18px;
  margin-bottom: 4px;
  font-weight: 500;
}
.pt-sidebar-cart-title a:hover {
  color: var(--color-primary);
}
.pt-sidebar-cart-content {
  padding-right: 15px;
}
.pt-sidebar-cart-content .pt-product-quantity {
  width: 75px;
  padding: 0;
}
.pt-sidebar-cart-content .pt-product-quantity .pt-cart-input[type=text] {
  height: 30px;
  text-align: center;
  font-size: 13px;
  border: 1px solid var(--color-border);
  background-color: var(--color-white);
  padding: 0;
}
.pt-sidebar-cart-content .pt-product-quantity .pt-cart-plus,
.pt-sidebar-cart-content .pt-product-quantity .pt-cart-minus {
  width: 20px;
  height: 30px;
  line-height: 30px;
  display: inline-block;
  text-align: center;
  font-size: 13px;
  left: 3px;
}
.pt-sidebar-cart-content .pt-product-quantity .pt-cart-plus svg,
.pt-sidebar-cart-content .pt-product-quantity .pt-cart-minus svg {
  -webkit-transform: translateY(-1px);
  -moz-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  -o-transform: translateY(-1px);
  transform: translateY(-1px);
  width: 10px;
}
.pt-sidebar-cart-content .pt-product-quantity .pt-cart-plus::after,
.pt-sidebar-cart-content .pt-product-quantity .pt-cart-minus::after {
  display: none;
}
.pt-sidebar-cart-content .pt-product-quantity .pt-cart-plus {
  left: auto;
  right: 3px;
}
.pt-sidebar-cart-del {
  position: absolute;
  top: 15px;
  right: 0;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  color: var(--color-black);
  font-size: 14px;
}
.pt-sidebar-cart-del:hover {
  color: var(--color-primary);
}
.pt-sidebar-cart-checkout {
  padding-top: 15px;
  width: 100%;
  background: var(--color-white);
  border-top: 2px solid var(--color-border);
}
.pt-sidebar-cart-checkout-title {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.pt-sidebar-cart-checkout-title h4 {
  display: inline-block;
  margin-bottom: 0;
  text-transform: capitalize;
}
.pt-sidebar-cart-checkout-title span {
  font-size: 24px;
  color: var(--color-black);
  font-weight: 700;
}
.pt-sidebar-cart-checkout-btn .pt-btn {
  font-size: 15px;
  text-transform: capitalize;
  padding: 10px 30px;
  text-align: center;
}
.pt-sidebar-cart-checkout-btn .pt-btn:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}
.pt-sidebar-cart-checkout-btn .pt-btn-border:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}
.pt-sidebar-cart-price {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-primary);
}
.pt-sidebar-cart-quantity {
  font-size: 14px;
  font-weight: 500;
}
.pt-sidebar-cart-empty {
  margin-top: 100px;
  margin-bottom: 50px;
}
.pt-sidebar-cart-empty img {
  margin-bottom: 30px;
}
.pt-sidebar-cart-empty p {
  font-size: 16px;
  color: var(--color-black);
  margin-bottom: 15px;
}

.body-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  -moz-backdrop-filter: blur(10px);
  visibility: hidden;
  opacity: 0;
  transition: 0.45s ease-in-out;
}
.body-overlay.apply {
  opacity: 1;
  visibility: visible;
}
.body-overlay.opened {
  opacity: 1;
  visibility: visible;
}
.body-overlay:hover {
  cursor: url(../images/shape/cross-out.webp), pointer;
}

/*----------------------------------------*/
/*  3.3.1 Cart css
/*----------------------------------------*/
.pt-sidebar-widget-products-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.pt-sidebar-widget-products-item:hover .thumb img {
  animation: pulse-blur 800ms linear;
}
@media (max-width: 575px) {
  .pt-sidebar-widget-products-item {
    flex-direction: column;
    align-items: start;
  }
}
.pt-sidebar-widget-products-item:not(:last-child) {
  margin-bottom: 20px;
}
.pt-sidebar-widget-products-item .title {
  margin-bottom: 5px;
  font-size: 18px;
}
.pt-sidebar-widget-products-item .thumb {
  width: 100px;
  height: 100px;
  min-width: 100px;
  overflow: hidden;
  position: relative;
  border-radius: 6px;
  border: 1px solid var(--color-border);
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .pt-sidebar-widget-products-item .thumb {
    width: 150px;
    height: 150px;
    min-width: 150px;
  }
}
@media (max-width: 575px) {
  .pt-sidebar-widget-products-item .thumb {
    width: 100%;
    height: 100%;
    max-width: 100%;
  }
}
.pt-sidebar-widget-products-item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s linear;
  overflow: hidden;
  border-radius: 6px;
}
.pt-sidebar-widget-products-item .pt-product-price {
  justify-content: start;
}
.pt-sidebar-widget-products-item .pt-product-price .current-price {
  font-size: 16px;
}
.pt-sidebar-widget-products-item .pt-product-price .old-price {
  font-size: 15px;
}

/*----------------------------------------*/
/*  checkout css
/*----------------------------------------*/
.pt-checkout-customer-login-title {
  color: var(--color-black);
}
.pt-checkout-customer-login-btn {
  font-size: 20px;
  font-weight: 500;
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
}
.pt-checkout-customer-login-form {
  display: none;
  margin-top: 15px;
  padding: 30px 30px;
  background-color: var(--color-bg-primary);
  border-radius: 12px;
}
.pt-checkout-input label {
  color: rgba(29, 29, 29, 0.65);
  font-weight: 500;
  margin-bottom: 10px;
}
.pt-checkout-input label span {
  color: var(--pt-bg-danger);
}
.pt-checkout-option input {
  display: none;
}
.pt-checkout-option input:checked ~ label::before {
  visibility: visible;
  opacity: 1;
}
.pt-checkout-option input:checked ~ label::after {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}
.pt-checkout-option label {
  cursor: pointer;
  display: initial;
  font-size: 16px;
  color: var(--color-black);
  position: relative;
  padding-inline-start: 30px;
  z-index: 1;
}
.pt-checkout-option label::before {
  position: absolute;
  content: url("../images/shape/check.svg");
  top: 2px;
  left: 0;
  width: 18px;
  height: 18px;
  line-height: 16px;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  color: var(--color-white);
  transition: all 0.2s linear;
}
.pt-checkout-option label::after {
  position: absolute;
  content: "";
  top: 2px;
  left: 0;
  width: 18px;
  height: 18px;
  line-height: 16px;
  text-align: center;
  border: 1px solid #C3C7C9;
  border-top-color: rgb(195, 199, 201);
  border-right-color: rgb(195, 199, 201);
  border-bottom-color: rgb(195, 199, 201);
  border-left-color: rgb(195, 199, 201);
  z-index: -1;
  transition: all 0.2s linear;
}
.pt-checkout-faq .accordion-item:not(:last-child) {
  margin-bottom: 15px;
}
.pt-checkout-place-wrapper {
  background-color: var(--color-bg-primary);
  padding: 30px 30px;
  border-radius: 12px;
  margin-inline-start: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-checkout-place-wrapper {
    margin-inline-start: 0;
  }
}

.return-customer {
  display: none;
  margin-top: 15px;
  padding: 30px 30px;
  background-color: rgba(242, 92, 0, 0.05);
}

.create-account {
  display: none;
}

.ship-box-info {
  display: none;
}

/*----------------------------------------*/
/*  3.3.3 Order CSS
/*----------------------------------------*/
.pt-order-list-table {
  width: 100%;
}
.pt-order-list-table > thead {
  vertical-align: middle;
}
.pt-order-list-table > tbody {
  vertical-align: middle;
}
.pt-order-list-table > tbody tr:last-child {
  font-size: 20px;
  font-weight: 600;
}
.pt-order-list-table tr th {
  color: var(--color-black);
  font-weight: 600;
  font-size: 18px;
  padding: 15px 15px;
}
.pt-order-list-table tr td {
  color: var(--color-black);
  font-size: 18px;
  padding: 15px 15px;
}
.pt-order-list-table .pt-shipping-option input[type=radio] ~ label {
  font-size: 14px;
}
.pt-order-list-table .pt-shipping-option label span {
  font-size: 15px;
}

/*----------------------------------------*/
/*  3.3.4 Shop css
/*----------------------------------------*/
.pt-shop-listing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 20px;
}
.pt-shop-listing-title {
  font-weight: var(--fw-regular);
  font-size: 16px;
}
.pt-shop-listing-sorting.nice-select {
  width: auto;
  min-width: 240px;
}

.pt-product-item {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
}
.pt-product-item:hover {
  box-shadow: rgba(149, 157, 165, 0.1) 0px 8px 24px;
}
.pt-product-item:hover .pt-product-action {
  bottom: 15px;
  visibility: visible;
  opacity: 1;
}
.pt-product-item:hover .pt-product-thumb img {
  transform: scale(1.1);
}
.pt-product-thumb {
  border-bottom: 1px solid var(--color-border);
}
.pt-product-thumb img {
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.pt-product-content {
  padding: 20px 27px 22px;
  text-align: center;
}
.pt-product-title {
  font-size: 22px;
  margin-bottom: 7px;
}
.pt-product-tag {
  margin-bottom: 2px;
}
.pt-product-tag a {
  font-size: 15px;
  font-weight: var(--fw-medium);
  color: var(--color-gray);
  transition: all 0.3s ease-in-out;
}
.pt-product-tag a:hover {
  color: var(--color-primary);
}
.pt-product-rating {
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pt-product-price {
  display: flex;
  gap: 0 8px;
  align-items: center;
  justify-content: center;
}
.pt-product-price .current-price {
  font-size: 18px;
  font-weight: var(--fw-bold);
  color: var(--color-black);
}
.pt-product-price .old-price {
  font-size: 16px;
  font-weight: var(--fw-medium);
  color: var(--color-gray);
  text-decoration-line: line-through;
}
.pt-product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 1;
}
.pt-product-action {
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.pt-product-action-item {
  display: flex;
  align-items: center;
  box-shadow: 0px 1px 3px rgba(1, 15, 28, 0.14);
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}
.pt-product-action-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  text-align: center;
  font-size: 18px;
  color: var(--color-black);
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.pt-product-action-btn:hover {
  color: var(--color-white);
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}
.pt-product-action-btn:hover .pt-product-tooltip {
  visibility: visible;
  opacity: 1;
  bottom: 50px;
}
.pt-product-action-btn:last-child {
  border-bottom: 1px solid var(--color-border);
}
.pt-product-tooltip {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 100%;
  font-weight: 500;
  font-size: 14px;
  color: var(--color-white);
  background-color: var(--color-black);
  padding: 0 8px 2px 8px;
  visibility: hidden;
  opacity: 0;
  z-index: 1;
  transition: all 0.3s linear;
  height: 24px;
  width: max-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.pt-product-tooltip::before {
  position: absolute;
  content: "";
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid var(--color-black);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
}
.pt-product-rating-icon {
  margin-right: 6px;
  display: flex;
  align-items: center;
}
.pt-product-rating-icon span {
  color: var(--color-rating);
  font-size: 16px;
}
.pt-product-rating-icon span:not(:last-child) {
  margin-right: 2px;
}
.pt-product-rating-text {
  font-size: 14px;
  color: var(--color-dark);
  font-weight: var(--fw-medium);
}
.pt-product-modal-content {
  width: 100%;
  background-color: var(--color-white);
  padding: 30px 30px;
  border: none;
  border-radius: 12px;
  position: relative;
}
.pt-product-modal-content .btn-close {
  position: absolute;
  z-index: 5;
  inset-inline-end: 0px;
  top: 0px;
  width: auto;
  height: auto;
  padding: 0 0;
  color: transparent;
  background: none;
  border: 0;
  border-radius: 0;
  opacity: 1;
}
.pt-product-modal-content .btn-close i {
  color: var(--color-white);
  background-color: var(--color-danger);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  border-radius: 0 12px 0 0;
}
.pt-product-modal-content .swiper-slide img {
  border-radius: 8px;
  width: 100%;
}
.pt-product-details-meta .ratting {
  font-size: 16px;
  color: var(--color-rating);
}
.pt-product-details-meta a {
  font-size: 16px;
}
.pt-product-details-tag .tagcloud a {
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .pt-product-details-tag .tagcloud a {
    margin-bottom: 10px;
  }
}
.pt-product-details-cat a {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.15px;
  color: var(--color-black);
  transition: all 0.3s 0s ease-out;
}
.pt-product-details-cat a:hover {
  color: var(--color-primary);
}
.pt-product-details-cat a:hover::before {
  width: 100%;
}
.pt-product-details-cat a::before {
  position: absolute;
  content: "";
  height: 1px;
  width: 0;
  bottom: 0;
  left: 0;
  transition: all 0.3s 0s ease-out;
  background-color: var(--color-primary);
}
.pt-product-remove i {
  transition: all 0.3s linear;
}
.pt-product-remove i:hover {
  color: var(--color-danger);
}
.pt-product-thumbnail img {
  width: 100px;
  height: auto;
}
.pt-product-pagination {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}
.pt-product-pagination .slider-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.pt-product-pagination .swiper-pagination-bullet {
  height: 4px;
  width: 30px;
  border-radius: 0px;
  background: var(--color-border);
  opacity: 1;
  margin: 0 !important;
  transition: all 0.3s linear;
}
.pt-product-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--color-primary);
}
.pt-product-details-active {
  overflow: hidden;
}
.pt-product-details-thumb {
  position: relative;
  width: 186px;
  flex: 0 0 auto;
  border-radius: 8px;
  width: 100%;
  flex: 0 0 auto;
  text-align: center;
  position: relative;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pt-product-details-thumb {
    margin: 0 auto 20px;
  }
}
.pt-product-details-thumb img {
  width: 100%;
  border-radius: 8px;
}
.pt-product-details-nav .swiper-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 30px;
}
.pt-product-details-nav .swiper-wrapper .custom-button {
  border: none;
  background: transparent;
  padding: 0;
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 8px;
  border: 2px solid transparent;
  background: transparent;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  line-height: 1;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 575px) {
  .pt-product-details-nav .swiper-wrapper .custom-button {
    width: 75px;
    height: 75px;
  }
}
@media (max-width:450px) {
  .pt-product-details-nav .swiper-wrapper .custom-button {
    width: 85px;
    height: 55px;
  }
}
.pt-product-details-nav .swiper-wrapper .custom-button img {
  width: 100%;
  object-fit: cover;
}
.pt-product-details-nav .swiper-wrapper .swiper-slide {
  width: auto !important;
}
.pt-product-details-nav .swiper-slide-thumb-active .custom-button {
  background: var(--color-white);
  border-color: var(--color-primary);
}
.pt-product-details-nav-button .pt-product-details-button-next, .pt-product-details-nav-button .pt-product-details-button-prev {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: var(--color-white);
  position: absolute;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 18px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
  z-index: 9;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .pt-product-details-nav-button .pt-product-details-button-next, .pt-product-details-nav-button .pt-product-details-button-prev {
    right: 15px;
  }
}
.pt-product-details-nav-button .pt-product-details-button-next:hover, .pt-product-details-nav-button .pt-product-details-button-prev:hover {
  color: var(--color-white);
  background: var(--color-action);
}
.pt-product-details-nav-button .pt-product-details-button-next {
  left: auto;
  right: 20px;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .pt-product-details-nav-button .pt-product-details-button-next {
    right: 15px;
  }
}
.pt-product-info-desc {
  color: var(--color-black);
}
.pt-product-info-desc:last-child {
  margin-top: 30px;
}
.pt-product-info-list {
  list-style-type: none;
}
.pt-product-info-list-wrap .title {
  margin-bottom: 15px;
}
.pt-product-info-list:not(:last-child) {
  margin-bottom: 30px;
}
.pt-product-info-list li {
  color: var(--color-text);
  margin-left: 35px;
  position: relative;
}
.pt-product-info-list li:not(:last-child) {
  margin-bottom: 16px;
}
.pt-product-info-list li::before {
  position: absolute;
  content: "";
  left: -35px;
  top: 8px;
  width: 12px;
  height: 12px;
  background-color: var(--color-primary);
  transform: rotate(45deg);
}

.pt-feature-box-wrapper {
  padding: 20px 20px;
  background-color: var(--color-bg-primary);
}

.pt-shop-details-info-box {
  border: 1px solid var(--color-border);
  padding: 20px 30px 30px 30px;
  border-radius: 8px;
}

.pt-nav-tab-top .nav {
  border-bottom: 1px solid var(--color-border);
  justify-content: center;
}
.pt-nav-tab-top .nav-item {
  padding-right: 30px;
}
@media (max-width: 575px) {
  .pt-nav-tab-top .nav-item {
    padding-right: 15px;
  }
  .pt-nav-tab-top .nav-item:first-child {
    margin-bottom: 10px;
  }
}
.pt-nav-tab-top .nav-link {
  font-size: 20px;
  color: var(--color-black);
  position: relative;
  padding: 0 0 15px 0;
}
.pt-nav-tab-top .nav-link:hover {
  color: var(--color-primary);
}
.pt-nav-tab-top .nav-link:hover::before {
  transform: scaleX(1);
  background-color: var(--color-primary);
}
.pt-nav-tab-top .nav-link::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  display: block;
  transform: scaleX(0);
  transition: transform 0.5s ease;
  inset-inline-start: 0;
  bottom: -1px;
  background-color: var(--color-black);
}
.pt-nav-tab-top .nav-link.active {
  color: var(--color-primary);
}
.pt-nav-tab-top .nav-link.active::before {
  transform: scaleX(1);
  background-color: var(--color-primary);
}

.pt-product-progress-box {
  display: grid;
  grid-template-columns: 165px auto;
  gap: 30px 50px;
  border: 1px solid var(--color-border);
  padding: 30px 30px;
  margin-bottom: 50px;
  align-items: center;
}
@media (max-width: 575px) {
  .pt-product-progress-box {
    grid-template-columns: auto;
  }
}
.pt-product-progress-item {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  gap: 15px;
  position: relative;
}
.pt-product-progress-rating-title {
  color: gray;
  font-weight: var(--fw-medium);
  display: flex;
  align-items: center;
  width: 35px;
  gap: 5px;
  font-size: 20px;
}
.pt-product-progress-rating-title i {
  font-size: 14px;
  color: var(--color-warning);
}
.pt-product-progress-wrapper {
  background-color: #F7F3FF;
  width: 100%;
  border-radius: 0;
  height: 10px;
}
.pt-product-progress-bar {
  height: 10px;
}
.pt-product-progress-bar.bg-1 {
  background-color: #07BB98;
}
.pt-product-progress-bar.bg-2 {
  background-color: #A5E562;
}
.pt-product-progress-bar.bg-3 {
  background-color: #DDEF08;
}
.pt-product-progress-bar.bg-4 {
  background-color: #FFC107;
}
.pt-product-progress-bar.bg-5 {
  background-color: #FF6125;
}
.pt-product-progress-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 80px;
}
.pt-product-progress-meta-title {
  color: var(--color-black);
  font-weight: var(--fw-medium);
  width: 38px;
}
.pt-product-progress-meta-number {
  color: gray;
  font-weight: var(--fw-medium);
}
.pt-product-progress-rating-wrapper {
  border: 1.5px solid var(--color-border);
  text-align: center;
  padding: 20px 20px;
  width: 165px;
  height: 165px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 575px) {
  .pt-product-progress-rating-wrapper {
    width: 100%;
  }
}
.pt-product-progress-rating-number {
  font-size: 67px;
  line-height: 67px;
  color: var(--color-black);
  font-weight: var(--fw-medium);
}
.pt-product-progress-rating-icon {
  margin-top: 6px;
}
.pt-product-progress-rating-icon i {
  font-size: 13px;
  color: var(--color-warning);
}
.pt-product-progress-rating-subtitle {
  font-size: 14px;
  color: var(--color-gray);
}

/*----------------------------------------*/
/*  3.3.1 wishlist css
/*----------------------------------------*/
.pt-wishlist-table .table > thead {
  vertical-align: middle;
}
.pt-wishlist-table .table > tbody {
  vertical-align: middle;
}
.pt-wishlist-table input[type=checkbox] {
  width: 18px;
  height: 18px;
  line-height: 16px;
}
.pt-wishlist-action-btn {
  display: flex;
  gap: 15px;
}
.pt-wishlist-input {
  min-width: 200px;
}

/*----------------------------------------*/
/*  Footer Style
/*----------------------------------------*/
.pt-footer-contact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  justify-content: space-between;
  gap: 30px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .pt-footer-contact {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-footer-contact {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
.pt-footer-contact-item {
  display: flex;
  align-items: start;
  gap: 15px;
}
.pt-footer-contact-item .text a {
  font-size: 36px;
  color: var(--color-white);
  font-weight: var(--fw-sbold);
  line-height: 1.2;
}
@media (max-width: 575px) {
  .pt-footer-contact-item .text a {
    font-size: 24px;
  }
}
.pt-footer-contact-item .icon {
  margin-top: 4px;
}
@media (max-width: 575px) {
  .pt-footer-contact-item .icon svg {
    width: 24px;
    height: 24px;
  }
}
.pt-footer-main {
  position: relative;
}
.pt-footer-border {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.pt-footer-logo {
  max-width: 250px;
}
.pt-footer-logo img {
  width: 100%;
  height: 100%;
}
.pt-footer-widget-title {
  font-size: 20px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.65);
}
.pt-footer-widget-content .content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 575px) {
  .pt-footer-widget-content .content-grid {
    display: inline-block;
  }
}
.pt-footer-widget-content-list li {
  list-style: none;
}
.pt-footer-widget-content-list li:not(:last-child) {
  margin-bottom: 10px;
}
.pt-footer-widget-content-list li a {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.15px;
  color: var(--color-white);
  transition: all 0.3s linear;
}
.pt-footer-widget-content-list li a::before {
  position: absolute;
  content: "";
  height: 1px;
  width: 0;
  bottom: 0;
  left: 0;
  transition: all 0.3s linear;
  background-color: var(--color-white);
}
.pt-footer-widget-content-list li a:hover {
  color: var(--color-white);
}
.pt-footer-widget-content-list li a:hover::before {
  width: 100%;
}
.pt-footer-widget-content p {
  color: var(--color-white);
}

/* footer col design */
.pt-footer-col-2 {
  padding-inline-start: 45px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .pt-footer-col-2 {
    padding-inline-start: 45px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-footer-col-2 {
    padding-inline-start: 0;
  }
}
.pt-footer-col-3 {
  padding-inline-start: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .pt-footer-col-3 {
    padding-inline-start: 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-footer-col-3 {
    padding-inline-start: 0;
  }
}

/*----------------------------------------*/
/*  Copyright Style
/*----------------------------------------*/
.pt-footer-copyright {
  position: relative;
  padding-top: 26px;
  padding-bottom: 26px;
}
.pt-footer-copyright-inner p {
  margin: 0;
  font-size: 18px;
  font-weight: var(--fw-medium);
  letter-spacing: -0.14px;
  color: var(--color-white);
}
.pt-footer-copyright-inner p .company {
  font-weight: var(--fw-medium);
  color: var(--color-primary);
}

/*----------------------------------------*/
/*  About css
/*----------------------------------------*/
.pt-about-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.pt-about-thumb-wrap {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 575px) {
  .pt-about-thumb-wrap {
    gap: 20px;
    flex-wrap: wrap;
  }
}
.pt-about-thumb-col {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
@media (max-width: 575px) {
  .pt-about-thumb-col {
    flex-direction: row;
    gap: 20px;
  }
}
.pt-about-experience {
  display: flex;
  position: relative;
  background-color: var(--color-bg-primary);
  padding: 30px 30px;
  border-radius: 8px;
  text-align: center;
  align-items: center;
  gap: 15px;
}
@media (max-width: 575px) {
  .pt-about-experience {
    flex-direction: column;
    justify-content: center;
  }
}
.pt-about-experience::after {
  position: absolute;
  content: "";
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  left: 50%;
  top: 50%;
  border: 2px dotted var(--color-primary);
  border-radius: 8px;
  transform: translate(-50%, -50%);
}
.pt-about-experience-title {
  font-size: 70px;
  color: var(--color-primary);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .pt-about-experience-title {
    font-size: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .pt-about-experience-title {
    font-size: 58px;
  }
}
@media (max-width: 575px) {
  .pt-about-experience-title {
    font-size: 42px;
  }
}
.pt-about-experience-subtitle {
  text-align: start;
  font-size: 18px;
  font-weight: var(--color-fw-medium);
}
.pt-about-content {
  margin-left: 50px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .pt-about-content {
    margin-left: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-about-content {
    margin-left: 0;
  }
}
.pt-about-list {
  margin-bottom: 35px;
}
.pt-about-list ul {
  list-style-type: none;
}
.pt-about-list ul li {
  font-weight: var(--fw-medium);
  color: var(--color-black);
  margin-left: 35px;
  position: relative;
}
.pt-about-list ul li::before {
  position: absolute;
  content: "";
  left: -35px;
  top: 8px;
  width: 12px;
  height: 12px;
  background-color: var(--color-primary);
  transform: rotate(45deg);
}
.pt-about-list ul li:not(:last-child) {
  margin-bottom: 16px;
}

/*----------------------------------------*/
/*  error css
/*----------------------------------------*/
.pt-error-bg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  position: relative;
  z-index: 9;
}
.pt-error-bg::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: var(--color-black);
  opacity: 0.5;
  z-index: -1;
}
.pt-error-wrapper .error-heading-title {
  color: var(--color-white);
  font-size: 100px;
  margin-bottom: 30px;
}

/*----------------------------------------*/
/*  counter css
/*----------------------------------------*/
.pt-counter-item {
  text-align: center;
  position: relative;
}
.pt-counter-item .title {
  font-size: 78px;
  position: relative;
  z-index: 5;
  opacity: 0.1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .pt-counter-item .title {
    font-size: 70px;
  }
}
.pt-counter-item p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  font-size: 26px;
  width: 100%;
  font-weight: var(--fw-bold);
  color: var(--color-black);
  text-transform: uppercase;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .pt-counter-item p {
    font-size: 20px;
  }
}

/*----------------------------------------*/
/*  Instructor CSS
/*----------------------------------------*/
.pt-team {
  /* team style two */
  /*team details */
}
.pt-team-item {
  position: relative;
  border-radius: 12px;
  z-index: 5;
  overflow: hidden;
}
.pt-team-item::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(0deg, #19191B 37.08%, rgba(25, 25, 27, 0.49) 82.4%, rgba(25, 25, 27, 0) 100%);
  border-radius: 0px 0px 12px 12px;
  z-index: 1;
  transition: all 0.3s linear;
}
.pt-team-item:hover .pt-team-thumb img {
  animation: pulse-blur 800ms linear;
}
.pt-team-thumb {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.pt-team-thumb.height {
  height: 584px;
}
.pt-team-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  transition: all 0.3s linear;
}
.pt-team-info {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 5;
  text-align: center;
  padding: 0 20px;
  overflow: hidden;
}
.pt-team-info .pt-team-name {
  color: var(--color-white);
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}
.pt-team-info .pt-team-role {
  display: block;
  font-size: 17px;
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
  font-weight: var(--fw-sbold);
}
.pt-team-info .pt-team-desc {
  font-size: 15px;
  margin-bottom: 13px;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.pt-team-navigation {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 15px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-team-navigation {
    justify-content: start;
  }
}
.pt-team-navigation button {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: var(--color-white);
  background-color: var(--color-primary);
  transition: all 0.3s linear;
  font-size: 28px;
}
.pt-team-navigation button:hover {
  background-color: var(--color-action);
}
.pt-team-item-two:hover .pt-team-thumb-two img {
  animation: pulse-blur 800ms linear;
}
.pt-team-thumb-two {
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  max-height: 310px;
}
.pt-team-thumb-two img {
  width: 100%;
  height: 100%;
  border-radius: 12px 12px 0 0;
  transition: all 0.3s linear;
}
.pt-team-content-two {
  background-color: var(--color-bg-primary);
  padding: 30px 30px 30px 30px;
  border-radius: 0 0 12px 12px;
}
.pt-team-content-two .name {
  margin-bottom: 5px;
}
.pt-team-content-two .designation {
  margin-bottom: 13px;
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  color: var(--color-primary);
}
.pt-team-content-two .intro {
  margin-bottom: 6px;
}
.pt-team-content-two .pt-team-social ul {
  justify-content: start;
}
.pt-team-content-two .pt-team-social ul li {
  color: #ACAEB4;
}
.pt-team-content-two .pt-team-social ul li:hover {
  color: var(--color-primary);
  opacity: 1;
}
.pt-team-social ul {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  z-index: 5;
  position: relative;
}
.pt-team-social ul li {
  color: var(--color-white);
  font-size: 22px;
  transition: var(--transition);
}
.pt-team-social ul li:hover {
  color: var(--color-primary);
}
.pt-team-details-contact .contact-item {
  display: flex;
  gap: 0 8px;
  align-items: center;
  font-size: 16px;
  color: var(--color-gray);
}
.pt-team-details-contact .contact-item:not(:last-child) {
  margin-bottom: 5px;
}
.pt-team-details-contact .contact-item i {
  font-size: 18px;
}
.pt-team-details-contact .contact-item .icon-1 {
  color: var(--color-primary);
}
.pt-team-details-contact .contact-item .icon-2 {
  color: var(--color-success);
}
.pt-team-details-contact .contact-item .icon-3 {
  color: var(--color-info);
}
.pt-team-details-contact .contact-item .sub {
  color: var(--color-black);
  font-weight: var(--fw-medium);
}
.pt-team-details-social {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
@media (max-width: 575px) {
  .pt-team-details-social {
    grid-template-columns: repeat(1, 1fr);
  }
}
.pt-team-details-social a:hover .social-link {
  color: var(--color-primary);
}
.pt-team-details-social .meta-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-weight: 500;
  width: 50px;
  height: 50px;
  font-size: 24px;
}
.pt-team-details-social .meta-icon.bg-1 {
  color: var(--color-primary);
  background-color: rgba(242, 92, 0, 0.15);
}
.pt-team-details-social .meta-icon.bg-2 {
  color: var(--color-black);
  background-color: rgba(29, 29, 29, 0.15);
}
.pt-team-details-social .meta-icon.bg-3 {
  color: var(--color-success);
  background-color: rgba(40, 167, 69, 0.15);
}
.pt-team-details-social .meta-icon.bg-4 {
  color: var(--color-info);
  background-color: rgba(23, 162, 184, 0.15);
}
.pt-team-details-social .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--color-black);
  transition: all 0.3s linear;
}
.pt-team-details-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
}
.pt-team-details-thumb-wrapper {
  margin-left: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-team-details-thumb-wrapper {
    margin-left: 0;
  }
}

/*----------------------------------------*/
/*  Testimonial css
/*----------------------------------------*/
.pt-testimonial-bg {
  position: relative;
  z-index: 5;
}
.pt-testimonial-bg::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-bg-primary);
  opacity: 0.85;
  z-index: -1;
}
.pt-testimonial-card {
  text-align: center;
}
.pt-testimonial-card-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.pt-testimonial-head .icon i {
  font-size: 40px;
  opacity: 0.4;
  color: var(--color-primary);
}
.pt-testimonial-desc {
  color: var(--color-black);
  font-size: 28px;
  text-transform: uppercase;
}
.pt-testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 20px;
  margin-bottom: 15px;
}
.pt-testimonial-footer .thumb {
  width: 60px;
  height: 60px;
  border-radius: 100%;
}
.pt-testimonial-footer .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
}
.pt-testimonial-footer .meta {
  display: flex;
  align-items: center;
  gap: 0 20px;
}

/*----------------------------------------*/
/*  services css
/*----------------------------------------*/
.serviceActivation {
  counter-reset: count;
}
.serviceActivation .swiper-wrapper .swiper-slide:nth-child(2n+1) {
  margin-top: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .serviceActivation .swiper-wrapper .swiper-slide:nth-child(2n+1) {
    margin-top: 0;
  }
}

.pt-services-card {
  background-color: var(--color-white);
  padding: 30px 30px;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.06);
  z-index: 5;
}
.pt-services-card::before {
  counter-increment: count;
  content: counter(count) "";
  transition: all 500ms ease;
  display: inline-block;
  position: absolute;
  right: 20px;
  top: 0;
  font-size: 60px;
  font-weight: var(--fw-bold);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--color-gray);
  opacity: 0.3;
  z-index: 4;
  display: none;
}
.pt-services-card:hover::before {
  -webkit-text-stroke-color: var(--color-primary);
  opacity: 0.5;
}
.pt-services-card:hover .pt-services-icon svg * {
  stroke: var(--color-primary);
}
.pt-services-icon {
  margin-bottom: 30px;
}
.pt-services-icon svg * {
  stroke: var(--color-gray);
  transition: all 0.3s ease-in-out;
}
.pt-services-title {
  margin-bottom: 15px;
}
.pt-services-desc {
  margin-bottom: 25px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.pt-services-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0.3;
  border-radius: 12px;
}
.pt-services-bg img {
  border-radius: 12px;
  width: 100%;
  height: 100%;
}
.pt-services-pagination {
  display: flex;
  margin-top: 50px;
  justify-content: center;
  gap: 10px;
}
.pt-services-pagination .swiper-pagination-bullet {
  height: 4px;
  width: 30px;
  border-radius: 0px;
  background: var(--color-border);
  opacity: 1;
  margin: 0 !important;
  transition: all 0.3s linear;
}
.pt-services-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--color-primary);
}
.pt-services-details-thumb img {
  border-radius: 12px;
}
.pt-services-details-list-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-services-details-list-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}
.pt-services-details-list-title {
  margin-bottom: 10px;
  position: relative;
  margin-left: 20px;
}
.pt-services-details-list-title::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background-color: var(--color-primary);
  left: -20px;
  top: 50%;
  border-radius: 100%;
  transform: translateY(-50%);
}
.pt-services-details-choose .pt-choose-content-title {
  color: var(--color-black);
  font-size: 20px;
}
.pt-services-details-choose .pt-choose-content p {
  color: var(--color-text);
}
.pt-services-sidebar {
  margin-left: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-services-sidebar {
    margin-left: 0;
  }
}
.pt-services-widget {
  padding: 30px 30px;
  background-color: var(--color-bg-primary);
  border-radius: 15px;
}
.pt-services-widget-list ul li {
  list-style: none;
}
.pt-services-widget-list ul li a {
  font-size: 16px;
  font-weight: var(--fw-sbold);
  text-transform: capitalize;
  color: var(--color-black);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 30px;
  transition: all 0.3s linear;
  width: 100%;
  border-radius: 4px;
  background-color: var(--color-white);
}
.pt-services-widget-list ul li a i {
  transition: all 0.3s ease-in-out;
}
.pt-services-widget-list ul li:not(:last-child) {
  margin-bottom: 25px;
}
.pt-services-widget-list ul li:hover a, .pt-services-widget-list ul li.active a {
  background-color: var(--color-primary);
  color: var(--color-white);
}

/*----------------------------------------*/
/*  project CSS
/*----------------------------------------*/
.pt-project-row .col:nth-child(3n+2) {
  transform: translateY(50px);
  z-index: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-project-row .col:nth-child(3n+2) {
    transform: translateY(0px);
  }
}
.pt-project-filter-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 30px;
}
.pt-project-filter-btn button {
  font-size: 16px;
  font-weight: var(--fw-sbold);
  text-transform: capitalize;
  color: var(--color-black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  transition: all 0.3s linear;
  border: 1px solid var(--color-black);
  border-radius: 4px;
  background-color: transparent;
}
.pt-project-filter-btn button.active, .pt-project-filter-btn button:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}
.pt-project-filter-btn-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 30px;
  justify-content: center;
  margin-bottom: 50px;
}

.pt-project {
  /* details css */
}
.pt-project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .pt-project-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .pt-project-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.pt-project-item:nth-child(3n+2) {
  transform: translateY(50px);
  z-index: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-project-item:nth-child(3n+2) {
    transform: translateY(0px);
  }
}
.pt-project-item:hover .pt-project-thumb img {
  border-radius: 8px 8px 0 0;
  animation: pulse-blur 800ms linear;
}
.pt-project-item:hover .pt-project-category .tag {
  color: var(--color-white);
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}
.pt-project-thumb {
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}
.pt-project-thumb img {
  border-radius: 8px 8px 0 0;
}
.pt-project-content {
  background-color: var(--color-bg-primary);
  padding: 30px 30px;
  border-radius: 0 0 8px 8px;
}
.pt-project-title {
  margin-bottom: 15px;
  font-size: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-project-title {
    font-size: 24px;
  }
}
.pt-project-category .tag {
  font-size: 16px;
  text-transform: capitalize;
  color: var(--color-black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s linear;
  border-radius: 4px;
  white-space: nowrap;
  border: 1px solid var(--color-border);
  padding: 4px 12px;
}
.pt-project-more-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-project-more-btn {
    margin-top: 50px;
  }
}
.pt-project-sidebar {
  margin-left: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-project-sidebar {
    margin-left: 0;
  }
}
.pt-project-widget-cta {
  padding: 30px 30px;
  background-color: var(--color-black);
  border-radius: 12px;
}
.pt-project-widget-cta .pt-project-widget-title {
  font-size: 36px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 25px;
}
.pt-project-widget-cta .pt-project-widget-desc {
  color: rgba(255, 255, 255, 0.85);
}
.pt-project-client-info {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
  padding: 30px 30px;
  background-color: var(--color-bg-primary);
  border-radius: 10px;
}
.pt-project-client-info .pt-client-info-meta {
  display: flex;
  justify-content: space-between;
  background-color: var(--color-white);
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  flex-wrap: wrap;
  gap: 10px;
}
.pt-project-client-info .pt-client-info-meta .title {
  font-weight: bold;
  color: var(--color-black);
  font-size: 16px;
}
.pt-project-client-info .pt-client-info-meta .value {
  color: var(--color-text);
  font-size: 16px;
}
.pt-project-details-thumb img {
  border-radius: 12px;
}

.pt-project-gallery {
  list-style-type: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-project-gallery {
    grid-template-columns: repeat(1, 1fr);
  }
}
.pt-project-gallery .pt-project-gallery-item img {
  border-radius: 8px;
}

@keyframes pulse-blur {
  from, to {
    scale: 1;
    filter: blur(0px);
  }
  50% {
    scale: 1.05;
    filter: blur(4px);
  }
}
/*----------------------------------------*/
/*  newsletter css
/*----------------------------------------*/
.pt-newsletter-form {
  position: relative;
}
.pt-newsletter-form input {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-white);
  border-radius: 4px;
  height: 60px;
  padding-inline-end: 70px;
}
.pt-newsletter-form input::placeholder {
  color: var(--color-white);
}
.pt-newsletter-form button {
  position: absolute;
  right: 7px;
  top: 50%;
  transform: translateY(-50%);
}
.pt-newsletter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background-color: var(--color-primary);
  border-radius: 4px;
}
.pt-newsletter-btn .btn-icon {
  overflow: hidden;
  position: relative;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease-out 0s;
}
.pt-newsletter-btn .btn-icon:hover .first-icon {
  transform: translateX(150%);
}
.pt-newsletter-btn .btn-icon:hover.second-icon {
  transform: translateX(0%);
}
.pt-newsletter-btn .btn-icon svg {
  width: 24px;
}
.pt-newsletter-btn .btn-icon svg * {
  stroke: var(--color-white);
}
.pt-newsletter-btn .second-icon {
  position: absolute;
  transform: translateX(-150%);
  transition: all 0.3s ease-out 0s;
}
.pt-newsletter-btn .first-icon {
  transition: all 0.3s ease-out 0s;
}
.pt-newsletter-btn:hover {
  background-color: var(--color-white);
}
.pt-newsletter-btn:hover .first-icon {
  transform: translateX(150%);
}
.pt-newsletter-btn:hover .second-icon {
  transform: translateX(0%);
}
.pt-newsletter-btn:hover svg * {
  stroke: var(--color-black);
}

/*----------------------------------------*/
/*  vision css
/*----------------------------------------*/
.pt-vision-tab .nav-pills {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-content: center;
  align-content: center;
  text-align: center;
  overflow: hidden;
  gap: 15px 15px;
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .pt-vision-tab .nav-pills {
    grid-template-columns: repeat(1, 1fr);
  }
}
.pt-vision-tab .nav-link {
  display: block;
  padding: 0 47px;
  height: 32px;
  font-size: 12px;
  font-weight: var(--fw-medium);
  color: var(--color-black);
  background-color: transparent;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  white-space: nowrap;
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pt-vision-tab .nav-link {
    padding: 0 12px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .pt-vision-tab .nav-link {
    font-size: 10px;
    padding: 0 12px;
  }
}
.pt-vision-tab .nav-link:hover {
  color: var(--color-white);
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}
.pt-vision-tab .nav-link.active {
  color: var(--color-white);
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}
.pt-vision-tab-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 30px;
  align-items: center;
  justify-content: space-between;
  background-color: var(--color-bg-primary);
  border-radius: 12px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-vision-tab-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.pt-vision-tab-grid .pt-vision-tab-thumb {
  width: 100%;
  height: 100%;
}
.pt-vision-tab-grid .pt-vision-tab-thumb img {
  border-radius: 12px 0 0 12px;
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-vision-tab-grid .pt-vision-tab-thumb img {
    border-radius: 12px 12px 0 0;
  }
}
.pt-vision-tab-grid .pt-vision-tab-content {
  padding: 30px 30px 30px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-vision-tab-grid .pt-vision-tab-content {
    padding: 0 30px 30px 30px;
  }
}
.pt-vision-tab-grid .pt-vision-tab-content .title {
  font-size: 28px;
  margin-bottom: 20px;
}
.pt-vision-tab-grid .pt-vision-tab-list li {
  font-weight: var(--fw-sbold);
  color: var(--color-black);
  margin-left: 35px;
  position: relative;
  list-style: none;
  font-size: 18px;
}
.pt-vision-tab-grid .pt-vision-tab-list li:not(:last-child) {
  margin-bottom: 16px;
}
.pt-vision-tab-grid .pt-vision-tab-list li::before {
  position: absolute;
  content: "";
  left: -35px;
  top: 8px;
  width: 12px;
  height: 12px;
  background-color: var(--color-primary);
  transform: rotate(45deg);
}

/*----------------------------------------*/
/*  award css
/*----------------------------------------*/
.pt-award-list {
  position: relative;
}
.pt-award-list::before {
  position: absolute;
  content: "";
  border-top: 1px solid rgba(52, 58, 64, 0.08);
  width: 100%;
}
.pt-award-item {
  display: grid;
  grid-template-columns: 400px auto 100px;
  border-bottom: 1px solid rgba(52, 58, 64, 0.08);
  padding: 30px 0 30px;
  position: relative;
  gap: 30px;
  justify-content: space-between;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pt-award-item {
    grid-template-columns: 330px auto;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .pt-award-item {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575px) {
  .pt-award-item {
    grid-template-columns: 1fr;
    padding-top: 40px;
    padding-bottom: 0;
  }
}
.pt-award-item:hover .pt-award-thumb {
  opacity: 1;
}
.pt-award-item:hover .pt-award-title {
  color: var(--color-primary);
}
.pt-award-item:hover .pt-award-content {
  color: var(--color-black);
}
.pt-award-item:hover .pt-award-year {
  color: var(--color-black);
}
.pt-award-title {
  font-size: 28px;
  text-transform: capitalize;
  line-height: 1.3;
  color: var(--color-black);
  z-index: 1;
  transition: all 0.3s linear;
}
@media (max-width: 575px) {
  .pt-award-title {
    margin-bottom: 20px;
  }
}
.pt-award-title span {
  display: block;
}
.pt-award-content {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: var(--fw-medium);
  transition: all 0.3s linear;
}
.pt-award-year {
  text-align: end;
  font-size: 30px;
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  transition: all 0.3s linear;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-award-year {
    text-align: start;
  }
}
.pt-award-thumb {
  width: 260px;
  height: 300px;
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: 75%;
  opacity: 0;
  transition: opacity 0.3s, transform 0.7s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  margin: -200px 0 0 -150px;
  overflow: hidden;
  pointer-events: none;
  z-index: -2;
  border-radius: 12px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-award-thumb {
    display: none;
  }
}

/*----------------------------------------*/
/*  choose css
/*----------------------------------------*/
.pt-choose-wrapper .pt-section-desc {
  max-width: 700px;
}
.pt-choose-grid {
  display: grid;
  grid-template-columns: auto auto;
  gap: 30px 20px;
  position: relative;
  z-index: 5;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .pt-choose-grid {
    margin-left: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .pt-choose-grid {
    margin-left: 0;
    gap: 30px 20px;
  }
}
@media (max-width: 575px) {
  .pt-choose-grid {
    grid-template-columns: auto;
    gap: 30px 0;
    margin-left: 0;
  }
}
.pt-choose-icon {
  width: 90px;
  height: 90px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-white);
  border-radius: 50%;
  text-align: center;
  margin-bottom: 10px;
  width: 60px;
  height: 60px;
}
.pt-choose-icon svg {
  width: 36px;
  height: 36px;
}
.pt-choose-icon svg * {
  stroke: var(--color-primary);
}
.pt-choose-content-title {
  font-size: 24px;
  text-transform: capitalize;
  margin-bottom: 10px;
  color: var(--color-black);
}
.pt-choose-thumb img {
  border-radius: 12px;
}

.pt-progress-wrapper .pt-progress-item:not(:last-child) {
  margin-bottom: 20px;
}
.pt-progress-wrapper .pt-progress-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3px;
}
.pt-progress-wrapper .pt-progress-label {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-black);
}
.pt-progress-wrapper .progress-bar {
  position: relative;
  height: 10px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  height: 10px;
}
.pt-progress-wrapper .progress {
  height: 100%;
  background-color: var(--color-primary);
  border-radius: 5px;
  width: 0;
  height: 10px;
  transition: width 1s ease-in-out;
}
.pt-progress-wrapper .percentage {
  font-size: 20px;
  font-weight: 500;
  color: var(--color-black);
}

/*----------------------------------------*/
/*  cta css
/*----------------------------------------*/
.pt-cta-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: start;
}
.pt-cta-bg::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(243, 245, 250, 0.5);
  z-index: -1;
}
.pt-cta-content {
  padding: 105px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-cta-content {
    padding-top: 20px;
    padding-bottom: 60px;
  }
}
.pt-cta-content .pt-section-title {
  font-size: 50px;
  text-transform: uppercase;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-cta-content .pt-section-title {
    font-size: 36px;
  }
}
.pt-cta-thumb {
  text-align: end;
  height: 475px;
  width: 340px;
  position: relative;
  z-index: 5;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-cta-thumb {
    margin: 0 auto;
    margin-top: 30px;
  }
}
.pt-cta-thumb::before {
  position: absolute;
  content: "";
  width: 300px;
  height: 300px;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
  background: var(--color-primary);
  z-index: -1;
  border-radius: 100%;
  filter: blur(80px);
}

/*----------------------------------------*/
/*  History css
/*----------------------------------------*/
.pt-history-sticky {
  left: 0;
  right: 0;
  position: sticky;
  top: 0;
  --offset: 0px;
  top: var(--offset);
  height: calc(100vh - var(--offset));
  height: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .pt-history-sticky {
    height: 100%;
  }
}
.pt-history-box {
  padding: 30px;
  display: flex;
  gap: 30px 30px;
  justify-content: space-between;
  align-items: center;
  background-color: var(--color-bg-primary);
  border-radius: 16px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-history-box {
    flex-wrap: wrap;
  }
}
.pt-history-box.bg-2 {
  background-color: var(--color-border);
}
.pt-history-box:nth-child(2n) {
  flex-direction: row-reverse;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-history-box:nth-child(2n) {
    flex-direction: column-reverse;
  }
}
.pt-history-box:nth-child(1) {
  --offset: 120px;
}
.pt-history-box:nth-child(2) {
  --offset: 140px;
}
.pt-history-box:nth-child(3) {
  --offset: 160px;
}
.pt-history-box:nth-child(4) {
  --offset: 180px;
}
.pt-history-box:nth-child(5) {
  --offset: 200px;
}
.pt-history-box:nth-child(6) {
  --offset: 220px;
}
.pt-history-box:nth-child(7) {
  --offset: 240px;
}
.pt-history-box:nth-child(8) {
  --offset: 260px;
}
.pt-history-box:nth-child(9) {
  --offset: 280px;
}
.pt-history-box:nth-child(10) {
  --offset: 300px;
}
.pt-history-box:nth-child(11) {
  --offset: 320px;
}
.pt-history-box:nth-child(12) {
  --offset: 340px;
}
.pt-history-box:nth-child(13) {
  --offset: 360px;
}
.pt-history-content {
  width: 50%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-history-content {
    width: 100%;
  }
}
.pt-history-year {
  font-size: 50px;
  font-weight: var(--fw-bold);
  color: var(--color-primary);
}
.pt-history-desc {
  color: var(--color-black);
}
.pt-history-title {
  font-size: 26px;
  color: var(--color-black);
  margin-bottom: 10px;
  transition: all 0.3s linear;
}
.pt-history-thumb {
  width: 50%;
  overflow: hidden;
  transition: all 0.3s linear;
  border-radius: 6px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-history-thumb {
    width: 100%;
  }
}
.pt-history-thumb img {
  border-radius: 6px;
}

/*----------------------------------------*/
/*  4.6 Process css
/*----------------------------------------*/
.pt-process-wrapper {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  row-gap: 50px;
}
.pt-process-wrapper > div {
  width: calc((100% - 90px) / 4);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .pt-process-wrapper > div {
    width: calc((100% - 30px) / 2);
  }
}
@media (max-width: 575px) {
  .pt-process-wrapper > div {
    width: calc((100% - 0px) / 1);
  }
}
.pt-process-step {
  text-align: center;
  padding: 0 10px;
  position: relative;
  z-index: 2;
}
.pt-process-step:nth-child(2n) {
  margin-top: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .pt-process-step:nth-child(2n) {
    margin-top: 0;
  }
}
.pt-process-step:hover .pt-process-step-icon img {
  transform: translateY(-10px);
}
.pt-process-step .title {
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .pt-process-step .title {
    font-size: 18px;
  }
}
.pt-process-step-icon {
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background: var(--color-white);
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.24);
  border-radius: 50%;
  margin-bottom: 36px;
  position: relative;
}
.pt-process-shape-one {
  position: absolute;
  top: 80px;
  right: -60px;
}
.pt-process-shape-one svg * path {
  stroke-dasharray: 4;
  stroke-dashoffset: 350;
  -webkit-animation: pt-line-dash 30s linear forwards infinite;
  animation: pt-line-dash 30s linear forwards infinite;
}
.pt-process-shape-two {
  position: absolute;
  top: 60px;
  right: -72px;
}
.pt-process-shape-two svg * path {
  stroke-dasharray: 4;
  stroke-dashoffset: 350;
  -webkit-animation: pt-line-dash 30s linear forwards infinite;
  animation: pt-line-dash 30s linear forwards infinite;
}
.pt-process-shape-three {
  position: absolute;
  top: 80px;
  right: -85px;
}
.pt-process-shape-three svg * path {
  stroke-dasharray: 4;
  stroke-dashoffset: 350;
  -webkit-animation: pt-line-dash 30s linear forwards infinite;
  animation: pt-line-dash 30s linear forwards infinite;
}

/* pt-line-dash */
@keyframes pt-line-dash {
  100% {
    stroke-dashoffset: 0;
  }
}
/*----------------------------------------*/
/*  pricing-plan css
/*----------------------------------------*/
.pt-pricing-plan {
  background-color: var(--color-bg-primary);
  padding: 30px;
  transition: all 0.3s linear;
  border-radius: 12px;
  position: relative;
  z-index: 5;
  overflow: hidden;
}
.pt-pricing-plan::before {
  position: absolute;
  content: "";
  background: url(../images/shape/pricing-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0.15;
  z-index: -1;
}
.pt-pricing-plan .pt-pricing-plan-header {
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 30px;
}
.pt-pricing-plan .pt-pricing-plan-header .package-name {
  color: var(--color-black);
  margin-bottom: 15px;
  display: inline-block;
  font-size: 20px;
  font-weight: var(--fw-bold);
}
.pt-pricing-plan .pt-pricing-plan-header .package-price {
  font-size: 80px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-warning) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .pt-pricing-plan .pt-pricing-plan-header .package-price {
    font-size: 65px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-pricing-plan .pt-pricing-plan-header .package-price {
    font-size: 50px;
  }
}
.pt-pricing-plan .pt-pricing-plan-header .package-price sub {
  font-size: 16px;
  color: var(--color-text);
  margin-left: -30px;
  -webkit-text-fill-color: initial;
  font-weight: 400;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-pricing-plan .pt-pricing-plan-header .package-price sub {
    margin-left: -10px;
  }
}
.pt-pricing-plan .pt-pricing-plan-list {
  margin-top: 30px;
}
.pt-pricing-plan .pt-pricing-plan-list li {
  position: relative;
  margin-left: 35px;
  list-style: none;
}
.pt-pricing-plan .pt-pricing-plan-list li:not(:last-child) {
  margin-bottom: 10px;
}
.pt-pricing-plan .pt-pricing-plan-list li::before {
  position: absolute;
  content: "";
  left: -35px;
  top: 8px;
  width: 12px;
  height: 12px;
  background-color: var(--color-primary);
  transform: rotate(45deg);
}
.pt-pricing-plan .pt-pricing-plan-btn {
  margin-top: 50px;
}
.pt-pricing-plan.active {
  background-color: var(--color-primary);
}
.pt-pricing-plan.active .pt-pricing-plan-header {
  position: relative;
  z-index: 9;
  border-bottom: 1px solid var(--color-white);
}
.pt-pricing-plan.active .pt-pricing-plan-header .package-name {
  color: var(--color-bg-primary);
}
.pt-pricing-plan.active .pt-pricing-plan-header .package-price {
  color: var(--color-white);
  background: initial;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
}
.pt-pricing-plan.active .pt-pricing-plan-header .package-price sub {
  color: var(--color-white);
}
.pt-pricing-plan.active .pt-pricing-plan-header p {
  color: var(--color-white);
}
.pt-pricing-plan.active ul li {
  color: var(--color-white);
}
.pt-pricing-plan.active ul li::before {
  background-color: var(--color-white);
}
.pt-pricing-plan:hover {
  transform: translateY(-10px);
}

/*----------------------------------------*/
/*  2.11 Nice Select 
/*----------------------------------------*/
.nice-select {
  background-color: var(--color-white);
  border: 1px solid #E0E2E3;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 16px;
  height: 50px;
  width: 100%;
  line-height: 50px;
  outline: none;
  padding-inline-start: 15px;
  padding-inline-end: 30px;
  position: relative;
  text-align: left !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  border-radius: 4px;
}
.nice-select:hover {
  border-color: var(--color-border);
}
.nice-select:active, .nice-select.open, .nice-select:focus {
  border-color: var(--color-primary);
}
.nice-select::after {
  position: absolute;
  content: "\ea4e";
  top: 50%;
  inset-inline-end: 10px;
  font-family: var(--ff-remixicon);
  color: var(--color-black);
  font-weight: 500;
  pointer-events: none;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  margin-top: 0;
  transform-origin: center;
  font-size: 24px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.nice-select.open::after {
  -webkit-transform: translateY(-50%) rotate(-180deg);
  -moz-transform: translateY(-50%) rotate(-180deg);
  -ms-transform: translateY(-50%) rotate(-180deg);
  -o-transform: translateY(-50%) rotate(-180deg);
  transform: translateY(-50%) rotate(-180deg);
}
.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
}
.nice-select.disabled {
  border-color: var(--color-border);
  color: var(--color-gray);
  pointer-events: none;
}
.nice-select.disabled::after {
  border-color: var(--color-border);
}
.nice-select.wide {
  width: 100%;
}
.nice-select.wide .list {
  inset-inline-start: 0 !important;
  inset-inline-end: 0 !important;
}
.nice-select.right {
  float: right;
}
.nice-select.right .list {
  inset-inline-start: auto;
  inset-inline-end: 0;
}
.nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px;
}
.nice-select.small::after {
  height: 4px;
  width: 4px;
}
.nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}
.nice-select .list {
  width: 100%;
  background-color: var(--color-white);
  border-radius: 0;
  box-shadow: none;
  box-sizing: border-box;
  margin-top: 4px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  inset-inline-start: 0;
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: scale(0.75) translateY(-21px);
  -ms-transform: scale(0.75) translateY(-21px);
  transform: scale(0.75) translateY(-21px);
  -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
  font-size: 16px;
  color: var(--color-black);
}
.nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 30px;
  list-style: none;
  min-height: 30px;
  outline: none;
  padding-inline-start: 18px;
  padding-inline-end: 29px;
  text-align: left;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.nice-select .option.selected {
  font-weight: inherit;
  color: var(--pt-primary);
}
.nice-select .option.disabled {
  background-color: transparent;
  color: var(--color-border);
  cursor: default;
}

.no-csspointerevents .nice-select .list {
  display: none;
}

.no-csspointerevents .nice-select.open .list {
  display: block;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
  background-color: rgba(242, 92, 0, 0.05);
}

/*----------------------------------------*/
/*  2.11 nivo Slider
/*----------------------------------------*/
.pt-project-slider-wrapper .nivoSlider {
  position: relative;
  background: var(--color-white) url(/assets/images/shape/loading.gif) no-repeat 50% 50%;
  margin-bottom: 10px;
  border-radius: 12px;
}

.pt-project-slider-wrapper .nivoSlider img {
  position: absolute;
  top: 0px;
  left: 0px;
  display: none;
}

.pt-project-slider-wrapper .nivoSlider a {
  border: 0;
  display: block;
}

.pt-project-slider-wrapper .nivo-controlNav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}
.pt-project-slider-wrapper .nivo-controlNav a {
  display: inline-flex;
  width: 20px;
  height: 5px;
  border-radius: 50px;
  text-indent: -9999px;
  border: 0;
  margin: 0 2px;
  background-color: var(--color-black);
  cursor: pointer;
}
.pt-project-slider-wrapper .nivo-controlNav a.active {
  background-position: 0 -22px;
  background-color: var(--color-primary);
  width: 30px;
}

.pt-project-slider-wrapper .nivo-directionNav a {
  display: block;
  width: 30px;
  height: 30px;
  background: url(/assets/images/shape/arrows.png) no-repeat;
  text-indent: -9999px;
  border: 0;
  opacity: 0;
  -webkit-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}

.pt-project-slider-wrapper:hover .nivo-directionNav a {
  opacity: 1;
}

.pt-project-slider-wrapper a.nivo-nextNav {
  background-position: -30px 0;
  right: 15px;
}

.pt-project-slider-wrapper a.nivo-prevNav {
  left: 15px;
}

.pt-project-slider-wrapper .nivo-caption a {
  color: var(--color-white);
  border-bottom: 1px dotted var(--color-white);
}

.pt-project-slider-wrapper .nivo-caption a:hover {
  color: var(--color-white);
}

.pt-project-slider-wrapper .nivo-controlNav.nivo-thumbs-enabled {
  width: 100%;
}

.pt-project-slider-wrapper .nivo-controlNav.nivo-thumbs-enabled a {
  width: auto;
  height: auto;
  background: none;
  margin-bottom: 5px;
}

.pt-project-slider-wrapper .nivo-controlNav.nivo-thumbs-enabled img {
  display: block;
  width: 120px;
  height: auto;
}

/*----------------------------------------*/
/*  2.11 Range Slider 
/*----------------------------------------*/
.sidebar-widget-range .noUi-horizontal {
  height: 5px;
}
.sidebar-widget-range .noUi-target {
  background: var(--color-border);
  border-radius: 2px;
  border: none;
  box-shadow: none;
}
.sidebar-widget-range .noUi-connect {
  background: var(--color-primary);
}
.sidebar-widget-range .noUi-handle {
  border: none;
  background: var(--color-primary);
  cursor: default;
  box-shadow: none;
}
.sidebar-widget-range .noUi-horizontal .noUi-handle {
  position: absolute;
  width: 5px;
  height: 24px;
  right: 0;
  top: -10px;
  cursor: pointer;
}
.sidebar-widget-range .noUi-handle::after,
.sidebar-widget-range .noUi-handle::before {
  display: none;
}
.sidebar-widget-range .price-filter input {
  border: none;
  font-size: 18px;
  margin-left: -25px;
  font-weight: var(--fw-sbold);
  background-color: transparent;
  color: var(--color-black);
}
/*# sourceMappingURL=../maps/main.css.map */
