@charset "UTF-8";
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Typography
# Elements
	## Social Profiles
	## Top Bar Icon List
	## Top Bar Menu
	## Contact Methods
	## Nav Search Form
	## Nav Mini Cart
# Forms
# Navigation
	## Links
	## Primary Menu
# Accessibility
# Alignments
# Clearings
# Layout
	## Topbar
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  60% {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
@-moz-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  60% {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
@-ms-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  60% {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  60% {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
a {
  transition: all 0.3s ease-in-out;
}
a:hover {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Be Vietnam Pro", serif;
  clear: both;
  line-height: 1.2em;
  font-weight: 700;
  color: #2C3539;
  text-transform: uppercase;
}

h1, .h1, h2, .h2 {
  margin-top: 0;
  margin-bottom: 15px;
}

h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  margin-top: 0;
  margin-bottom: 10px;
}

h1, .h1 {
  font-size: 72px;
}

h2, .h2 {
  font-size: 40px;
}

h3, .h3 {
  font-size: 26px;
}

h4, .h4 {
  font-size: 24px;
}

h5, .h5 {
  font-size: 16px;
}

h6, .h6 {
  font-size: 14px;
}

p {
  margin-bottom: 1.5em;
}

dfn, cite, em, i {
  font-style: italic;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code {
  color: #F25B3D;
}

code, kbd, tt, var {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
}

abbr, acronym {
  border-bottom: 1px dotted #8a8da1;
  cursor: help;
}

mark, ins {
  text-decoration: none;
}

big {
  font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
  box-sizing: border-box;
  margin-top: 0 !important;
}

*,
*:before,
*:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  box-sizing: inherit;
}

a {
  color: #2C3539;
  text-decoration: none;
}

body {
  font-family: "Be Vietnam Pro", serif;
  background: #fff;
  position: relative;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  overflow-x: hidden;
  color: #383838;
}
@media (max-width: 1200px) {
  body {
    font-size: 18px;
    line-height: 26px;
  }
}
@media (max-width: 992px) {
  body {
    font-size: 16px;
    line-height: 24px;
  }
}
body.canvas-header {
  padding-left: 400px;
}
@media (max-width: 1440px) {
  body.canvas-header {
    padding-left: 300px;
  }
}
@media (max-width: 992px) {
  body.canvas-header {
    padding-left: 0;
  }
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

img {
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */
}

p {
  margin-bottom: 1em;
}

.pr {
  position: relative;
}

.no-scroll {
  overflow: hidden;
}

.container-fluid {
  padding: 0 120px;
}
@media (max-width: 1440px) {
  .container-fluid {
    padding: 0 60px;
  }
}
@media (max-width: 992px) {
  .container-fluid {
    padding: 0 20px;
  }
}

.site-main {
  min-height: 50vh;
}

@media (max-width: 767px) {
  .position-default {
    position: static !important;
  }
}

.pts-18 {
  padding-top: 18%;
}
@media (max-width: 1024px) {
  .pts-18 {
    padding-top: 30%;
  }
}
@media (max-width: 576px) {
  .pts-18 {
    padding-top: 40%;
  }
}

@media (min-width: 992px) {
  .pl_30 {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .pix-order-2 {
    order: 2;
  }
}
.pb-50 {
  padding-bottom: 50px;
}

.pb-110 {
  padding-bottom: 110px;
}

.mb-70 {
  margin-bottom: 67px !important;
  font-weight: 500 !important;
}

@media (min-width: 1200px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1351px;
  }
}
strong,
b {
  font-weight: 700;
}

figure {
  margin: 1em 0;
  /* Extra wide images within figure tags don't overflow the content area. */
}

#preloader .loading {
  font-size: 84px;
  font-weight: 700;
  text-align: center;
  width: 100%;
  line-height: 1;
}
@media (max-width: 767px) {
  #preloader .loading {
    font-size: 64px;
  }
}
@media (max-width: 576px) {
  #preloader .loading {
    font-size: 48px;
  }
}
@media (max-width: 480px) {
  #preloader .loading {
    font-size: 30px;
  }
}
#preloader .loading span {
  position: relative;
  color: rgba(0, 0, 0, 0.2);
  display: inline-block;
}
#preloader .loading span::after {
  position: absolute;
  top: 0;
  left: 0;
  content: attr(data-text);
  color: #2C3539;
  opacity: 0;
  transform: scale(1.5);
  animation: loading 3s infinite;
}
#preloader .loading span:nth-child(2)::after {
  animation-delay: 0.1s;
}
#preloader .loading span:nth-child(3)::after {
  animation-delay: 0.2s;
}
#preloader .loading span:nth-child(4)::after {
  animation-delay: 0.3s;
}
#preloader .loading span:nth-child(5)::after {
  animation-delay: 0.4s;
}
#preloader .loading span:nth-child(6)::after {
  animation-delay: 0.5s;
}
#preloader .loading span:nth-child(7)::after {
  animation-delay: 0.6s;
}

@keyframes loading {
  0%, 75%, 100% {
    transform: scale(1.5);
    opacity: 0;
  }
  25%, 50% {
    transform: scale(1);
    opacity: 1;
  }
}
.cam-history {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 10px;
}

h3.cam-history__year {
  border-radius: 10px;
  background: linear-gradient(180deg, #111184 0%, #36C 100%);
  color: #fff;
  padding: 10px 20px;
}

p.cam-history__description {
  color: #fff;
}

ul, ol {
  padding-left: 20px;
  margin-bottom: 30px;
}

.comment-list ul, .comment-list ol {
  padding-left: 25px;
  margin-bottom: 30px;
}
.comment-list ol ol, .comment-list ol ul, .comment-list ul ol, .comment-list ul ul {
  margin-bottom: 0;
}

ul ul {
  list-style-type: disc;
}

.pix__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.pix__list li {
  color: #9A9A9A;
  line-height: 1.9;
  display: flex;
  align-items: baseline;
  position: relative;
  font-size: 16px;
}
.pix__list li.icon-shape .pix__list-icon {
  padding: 0.3em;
  background-color: #F1F6FE;
  border-radius: 50%;
  display: inline-block;
  line-height: 1;
  transition: all 0.3s;
  text-align: center;
  margin-right: 10px;
}
.pix__list li.icon-shape .pix__list-icon i, .pix__list li.icon-shape .pix__list-icon svg {
  width: 1em;
  height: 1em;
  position: relative;
  color: #F25B3D;
  font-size: 16px;
}
.pix__list li p {
  margin: 0;
}
.pix__list li .pix__list-icon {
  margin-right: 10px;
  font-size: 14px;
  color: #a6afbc;
  text-align: center;
}
.pix__list li a {
  color: #2C3539;
  display: flex;
  align-items: baseline;
}
.pix__list li a:hover {
  color: #F25B3D;
}
.pix__list.list-dice li {
  padding-left: 25px;
  display: block;
}
.pix__list.list-dice li:before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  left: 0;
  top: 15px;
  background: #6730e3;
  transform: translateY(-50%);
  transition: all 0.5s;
}
.pix__list.inline-items li {
  display: inline-block;
}
.pix__list.inline-items li:not(:last-child) {
  margin-right: 20px;
}

.list-style-hexa ul, .cam-feature-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.list-style-hexa ul li, .cam-feature-box ul li {
  position: relative;
  padding-left: 20px;
  color: #3C525B;
  font-size: 18px;
  line-height: 40px;
  font-weight: 500;
}
@media (max-width: 1280px) {
  .list-style-hexa ul li, .cam-feature-box ul li {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 15px;
  }
}
.list-style-hexa ul li:before, .cam-feature-box ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 13px;
  height: 11px;
  background: url(../images/hexa.svg) no-repeat;
}
@media (max-width: 1280px) {
  .list-style-hexa ul li:before, .cam-feature-box ul li:before {
    top: 9px;
  }
}

table {
  width: 100%;
  margin-bottom: 30px;
  border: 1px solid #D3D3D3;
}
table thead {
  background: #2C3539;
}
table th {
  text-align: left;
  padding: 10px 15px;
  color: #2C3539;
  font-size: 16px;
  font-weight: 600;
  min-width: 130px;
  vertical-align: middle;
}
table th a {
  color: #2C3539;
}
table th a:hover {
  color: #F25B3D;
}
table td {
  padding: 10px 15px;
  border-top: none;
  border-right: none;
  vertical-align: middle;
}
table td:last-child {
  border-right: 1px solid #D3D3D3;
}

.wp-block-calendar table th {
  min-width: 40px;
  text-align: center;
}

tbody {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
  direction: ltr;
}
tbody > tr {
  border-top: 1px solid #D3D3D3;
}

tfoot tr #prev a:hover, tfoot tr #next a:hover {
  color: #F25B3D;
}

tbody > tr > th {
  background-color: #f5f5f5;
}

table thead ~ tbody > tr > th {
  background-color: transparent;
}

caption {
  caption-side: top;
  text-align: center;
}

.calendar_wrap caption {
  text-align: center;
  background: #f0f2f9;
  color: #051441;
  font-weight: 500;
  border-radius: 5px 5px 0 0;
}
.calendar_wrap table tr, .calendar_wrap table td {
  border: 0;
}
.calendar_wrap table thead tr {
  border: 0;
}
.calendar_wrap table thead tr th {
  border: 0;
}

nav.wp-calendar-nav {
  background: #f0f2f9;
  padding: 5px 20px;
  border-radius: 6px;
}

.wp-calendar-nav-next {
  float: right;
}

@media (max-width: 576px) {
  table th {
    min-width: 80px;
  }
}
/*--------------------------------------------------------------
## Button
--------------------------------------------------------------*/
.pix-btn {
  font-family: "Be Vietnam Pro", serif;
  position: relative;
  padding: 10px 30px;
  background-color: #F25B3D;
  border: 2px solid #F25B3D;
  z-index: 1;
  color: #fff;
  overflow: hidden;
  font-size: 20px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  border-radius: 50px;
  text-transform: uppercase;
  gap: 16px;
  box-shadow: 0 20px 30px 0 rgba(242, 91, 61, 0.35);
}
.pix-btn .btn-icon {
  border: 2px solid #fff;
  border-radius: 30px;
  padding: 7px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
}
.pix-btn .btn-icon svg path {
  transition: all 0.3s ease-in-out;
}
.pix-btn i {
  font-size: 14px;
}
.pix-btn.btn-secondary {
  background-color: #00D565;
  border-color: #00D565;
  box-shadow: none;
}
.pix-btn.btn-secondary .btn-icon {
  border-color: #ffffff;
}
.pix-btn.btn-secondary .btn-icon svg path {
  stroke: #ffffff;
}
.pix-btn.btn-secondary:hover {
  background-color: transparent;
  color: #00D565;
}
.pix-btn.btn-secondary:hover .btn-icon {
  border-color: #00D565;
}
.pix-btn.btn-secondary:hover .btn-icon svg path {
  stroke: #00D565;
}
.pix-btn.btn-circle {
  border-radius: 40px;
}
.pix-btn.btn-sqr {
  border-radius: 0;
}
.pix-btn.btn-round {
  border-radius: 5px;
}
.pix-btn:hover, .pix-btn:focus {
  background: transparent;
  color: #F25B3D;
  box-shadow: none;
}
.pix-btn:hover .btn-icon, .pix-btn:focus .btn-icon {
  border-color: #F25B3D;
}
.pix-btn:hover .btn-icon svg path, .pix-btn:focus .btn-icon svg path {
  stroke: #F25B3D;
}
.pix-btn.btn-sm {
  padding: 8px 24px !important;
  font-size: 16px !important;
}
.pix-btn.btn-sm .btn-icon {
  padding: 4px 13px;
}
.pix-btn.btn-sm .btn-icon svg {
  width: 24px;
}
.pix-btn.btn-lg {
  padding: 20px 43px;
  font-size: 25px;
}
.pix-btn.btn-outline {
  background: transparent;
  color: #F25B3D;
  border-color: #F25B3D;
  box-shadow: none;
}
.pix-btn.btn-outline .btn-icon {
  border-color: transparent;
}
.pix-btn.btn-outline .btn-icon svg path {
  transition: all 0.3s ease-in-out;
}
.pix-btn.btn-outline:hover {
  color: #fff;
  border-color: #F25B3D;
  background-color: #F25B3D;
}
.pix-btn.btn-outline:hover .btn-icon svg path {
  fill: #fff;
  stroke: #fff;
}
.pix-btn.btn-outline.btn-light {
  border-color: #fff;
  color: #fff;
}
.pix-btn.btn-outline.btn-light:hover {
  color: #F25B3D;
  background-color: #fff;
}
.pix-btn.btn-outline.btn-dark {
  border: 1px solid #EAEEF3;
  color: #2C3539;
  box-shadow: none;
}
.pix-btn.btn-outline.btn-dark:hover {
  color: #fff;
  background-color: #2C3539;
}
.pix-btn.btn-light:not(.btn-outline) {
  background-color: #ffffff;
  color: #F25B3D;
  border-color: #ffffff;
}
.pix-btn.btn-light:not(.btn-outline) .btn-icon {
  border-color: #F25B3D;
}
.pix-btn.btn-light:not(.btn-outline) .btn-icon svg path {
  stroke: #F25B3D;
}
.pix-btn.btn-light:not(.btn-outline):hover {
  color: #ffffff;
  background: transparent;
}
.pix-btn.btn-light:not(.btn-outline):hover .btn-icon {
  border-color: #fff;
}
.pix-btn.btn-light:not(.btn-outline):hover .btn-icon svg path {
  fill: #ffffff;
  stroke: #ffffff;
}
.pix-btn.btn-dark:not(.btn-outline) {
  background-color: #2C3539;
  color: #fff;
  border-color: #2C3539;
  box-shadow: none;
}
.pix-btn.btn-dark:not(.btn-outline):hover {
  color: #2C3539;
  background: transparent;
}
.pix-btn.btn-dark:not(.btn-outline):hover .btn-icon {
  border-color: #2C3539;
}
.pix-btn.btn-dark:not(.btn-outline):hover .btn-icon svg path {
  stroke: #2C3539;
}
.pix-btn .elementor-align-icon-right {
  margin-left: 5px;
}
.pix-btn .pix-btn-icon {
  font-size: 14px;
}
.pix-btn .pix-btn__icon {
  line-height: 1;
}
.pix-btn.btn-link-type {
  background: transparent !important;
  background-color: transparent !important;
  border: none;
  color: #062A77;
  font-size: 16px;
  font-weight: 500;
  padding: 0 !important;
}
.pix-btn.btn-link-type.btn-light {
  color: #ffffff;
  background-color: transparent;
}
.pix-btn.btn-link-type:hover {
  background: transparent !important;
}

.pix-btn__icon {
  line-height: 1;
}

.play-button {
  font-size: 14px;
  font-weight: 500;
  position: relative;
}
.play-button .pix-btn__text {
  position: relative;
  z-index: 1;
}
.play-button .pix-btn__text:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #111921;
  transition: all 0.3s ease-in-out;
}
.play-button .pix-btn__icon {
  height: 30px;
  width: 30px;
  line-height: 30px;
  border-radius: 50%;
  text-align: center;
  background: #111921;
  display: inline-block;
  color: #fff;
  font-size: 12px;
  margin-right: 7px;
}
.play-button .pix-btn__icon i {
  margin-left: 3px;
}

/**
* Popup Button
 */
.popup-btn {
  display: inline-block;
  height: 75px;
  width: 75px;
  line-height: 77px;
  text-align: center;
  background-color: #F25B3D;
  color: #fff;
  border-radius: 50%;
  position: relative;
  font-size: 20px;
}
.popup-btn i {
  margin-left: 5px;
}
.popup-btn:before {
  content: "";
  position: absolute;
  left: -12.5px;
  top: -12.5px;
  height: 100px;
  width: 100px;
  opacity: 0;
  border-radius: 50%;
  border: 1px solid #F25B3D;
  animation: btnWave 1500ms linear infinite;
}
.popup-btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  border-radius: 50%;
  border: 10px solid #F25B3D;
  animation: btnWave 1000ms linear infinite;
}
.popup-btn:hover {
  color: #fff;
}

@keyframes btnWave {
  0% {
    opacity: 1;
    transform: scale(0.9);
  }
  100% {
    opacity: 0;
    transform: scale(1.5);
  }
}
.pix-back-btn {
  position: relative;
  font-family: "Be Vietnam Pro", serif;
  display: inline-flex;
  font-size: 24px;
  font-weight: 600;
  color: #2C3539;
  align-items: center;
  gap: 10px;
}
.pix-back-btn:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 2px;
  width: 100%;
  background-color: #2C3539;
}
.pix-back-btn:hover {
  color: #F25B3D;
}
.pix-back-btn:hover svg path {
  stroke: #F25B3D;
}
.pix-back-btn:hover:after {
  background-color: #F25B3D;
}

.popup-video-section {
  min-height: 765px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-video-section.popup-video-border-radius {
  border-radius: 80px;
}
@media (max-width: 1600px) {
  .popup-video-section.popup-video-border-radius {
    border-radius: 60px;
  }
}
@media (max-width: 1366px) {
  .popup-video-section.popup-video-border-radius {
    border-radius: 40px;
  }
}
@media (max-width: 991px) {
  .popup-video-section.popup-video-border-radius {
    border-radius: 40px;
  }
}
@media (max-width: 1600px) {
  .popup-video-section {
    min-height: 600px;
    max-width: 900px;
    margin: 0 auto;
  }
}
@media (max-width: 1366px) {
  .popup-video-section {
    min-height: 450px;
    max-width: 800px;
    margin: 0 auto;
  }
}
@media (max-width: 991px) {
  .popup-video-section {
    min-height: 400px;
  }
}
@media (max-width: 767px) {
  .popup-video-section {
    min-height: 350px;
  }
}

a.popup-video {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  width: 128px;
  height: 100px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 35px;
  color: #fff;
}

/*--------------------------------------------------------------
## Section Heading
--------------------------------------------------------------*/
.section-heading .section-subtitle {
  color: #F25B3D;
  font-size: 18px;
  letter-spacing: 3px;
  font-weight: 700;
}
@media (max-width: 1440px) {
  .section-heading .section-subtitle {
    font-size: 16px;
    letter-spacing: 1px;
  }
}
.section-heading .section-title {
  margin-bottom: 15px;
  line-height: 1.2;
  color: #2C3539;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 34px;
}
@media (max-width: 1320px) {
  .section-heading .section-title {
    font-size: 30px;
  }
}
@media (max-width: 991px) {
  .section-heading .section-title {
    font-size: 32px;
  }
}
.section-heading .section-description {
  font-family: "Be Vietnam Pro", serif;
  font-size: 16px;
  line-height: 26px;
}
.section-heading .button-container {
  margin-top: 37px;
  display: flex;
  gap: 20px;
}
.section-heading.text-center .image-container {
  max-width: 360px;
  margin: 0 auto 30px;
}
.section-heading.text-center .button-container {
  justify-content: center;
}
.section-heading.text-center .description {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/*--------------------------------------------------------------
## Banner Hero
--------------------------------------------------------------*/
.pix-hero {
  background-color: #C4D4CB;
  padding-top: 40px;
}
@media (max-width: 991px) {
  .pix-hero {
    padding-bottom: 40px;
  }
}
.pix-hero .pix-hero__image {
  text-align: center;
}
.pix-hero__content-wrapper {
  padding-top: 150px;
}
@media (max-width: 1470px) {
  .pix-hero__content-wrapper {
    padding-top: 100px;
  }
}
@media (max-width: 1470px) {
  .pix-hero__content-wrapper {
    padding-top: 80px;
  }
}
@media (max-width: 1200px) {
  .pix-hero__content-wrapper {
    padding-top: 40px;
  }
}
@media (max-width: 991px) {
  .pix-hero__content-wrapper {
    padding-top: 0;
  }
}
.pix-hero__subtitle {
  font-size: 16px;
  text-transform: uppercase;
  color: #F25B3D;
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: 10px;
}
.pix-hero__title {
  color: #2C3539;
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 1470px) {
  .pix-hero__title {
    font-size: 60px;
  }
}
@media (max-width: 1320px) {
  .pix-hero__title {
    font-size: 54px;
  }
}
@media (max-width: 1320px) {
  .pix-hero__title {
    font-size: 44px;
  }
}
.pix-hero__title span {
  color: #F25B3D;
}
.pix-hero__description {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.75px;
  color: #2C3539;
  text-transform: uppercase;
  margin-bottom: 45px;
}
@media (max-width: 1320px) {
  .pix-hero__description {
    font-size: 18px;
  }
}
.pix-hero .pix-hero-button-container {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 576px) {
  .pix-hero .pix-hero-button-container {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}

.hero-container {
  padding-left: 120px;
}
@media (max-width: 1470px) {
  .hero-container {
    padding-left: 40px;
  }
}
@media (max-width: 991px) {
  .hero-container {
    padding-left: 15px;
    padding-right: 0;
  }
}

.blog-details-feature-image {
  text-align: right;
}
.blog-details-feature-image img {
  -webkit-mask-image: url(../images/hero-img-shape.png);
  mask-image: url(../images/hero-img-shape.png);
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
}

@media (max-width: 767px) {
  .pix-hero__content {
    margin-bottom: 50px;
  }
}
/*--------------------------------------------------------------
## Banner Hero Video
--------------------------------------------------------------*/
.hero-video {
  position: relative;
  min-height: 800px;
  display: flex;
  justify-content: center;
}
@media (max-width: 991px) {
  .hero-video {
    height: max-content;
  }
}
.hero-video .hero-video__video {
  min-height: 800px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 100px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 991px) {
  .hero-video .hero-video__video {
    height: max-content;
    min-height: 900px;
    padding: 30px;
  }
}
.hero-video .hero-video__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}
.hero-video .hero-video__content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  padding: 0 30px;
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .hero-video .hero-video__content-wrapper {
    flex-direction: column;
  }
}
.hero-video .hero-video__content {
  max-width: 800px;
  color: #fff;
  width: 100%;
}
@media (max-width: 991px) {
  .hero-video .hero-video__content {
    width: 100%;
    text-align: center;
  }
  .hero-video .hero-video__content .hero-video-button-container {
    justify-content: center;
  }
}
.hero-video .hero-video__form-title {
  color: #fff;
  font-size: 30px;
  text-align: center;
}
.hero-video .hero-video__title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #fff;
}
@media (max-width: 1440px) {
  .hero-video .hero-video__title {
    font-size: 44px;
  }
}
@media (max-width: 991px) {
  .hero-video .hero-video__title {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .hero-video .hero-video__title {
    font-size: 32px;
  }
}
.hero-video .hero-video__subtitle {
  font-size: 22px;
  color: #fff;
  font-family: "Be Vietnam Pro", serif;
}
@media (max-width: 1200px) {
  .hero-video .hero-video__subtitle {
    font-size: 26px;
  }
}
@media (max-width: 991px) {
  .hero-video .hero-video__subtitle {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .hero-video .hero-video__subtitle {
    font-size: 20px;
  }
}
.hero-video p.hero-video__description {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 30px;
}
.hero-video .hero-video-button-container {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
}
.hero-video .cus_gform .ginput_container:not(.ginput_container_checkbox):not(.ginput_recaptcha) {
  background: #fff;
}
.hero-video .cus_gform .ginput_container {
  border-radius: 30px;
  margin-top: 0 !important;
}
.hero-video .cus_gform .ginput_container textarea, .hero-video .cus_gform .ginput_container input {
  background: transparent !important;
  border-radius: 30px !important;
  padding: 10px 15px !important;
}
.hero-video .cus_gform .ginput_container textarea:focus, .hero-video .cus_gform .ginput_container input:focus {
  box-shadow: none !important;
}
.hero-video .cus_gform .ginput_container.ginput_container_textarea {
  border-radius: 20px;
}
.hero-video .gform_legacy_markup_wrapper .gfield_checkbox li label {
  margin: 0;
  color: #fff;
}
.hero-video .gform_legacy_markup_wrapper .gfield_checkbox li label a {
  color: #F25B3D;
}
.hero-video .gform_legacy_markup_wrapper ul.gfield_checkbox li label {
  vertical-align: top;
}
.hero-video input[type=submit]:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}
.hero-video .hero-video__form {
  padding: 15px 30px;
  border-radius: 30px;
  backdrop-filter: blur(12px);
  max-width: 550px;
}
.hero-video .hero-video__form .gform_legacy_markup_wrapper .gform_footer {
  margin-top: 0;
}

/*--------------------------------------------------------------
## Blog Post Grid
--------------------------------------------------------------*/
.pix__post-grid__blog-meta-category {
  color: #4d5afe;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 400;
}
.pix__post-grid .pix__feature-image {
  margin-bottom: 24px;
  transition: all 0.3s ease-in-out;
}
.pix__post-grid .pix__feature-image img {
  transition: all 0.3s ease-in-out;
}
.pix__post-grid .pix__feature-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 30px 0 rgba(242, 91, 61, 0.1);
}
.pix__post-grid .pix__entry-title {
  font-size: 20px;
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 600;
}
.pix__post-grid .posted-on a {
  color: #777f95;
  display: block;
  font-size: 16px;
}
.pix__post-grid .pix__blog-meta-category {
  color: #F25B3D;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 5px;
}
.pix__post-grid .pix__blog-meta-category:not(:first-child) {
  margin-left: 10px;
}
.pix__post-grid .pix__blog-meta-category:not(:first-child):before {
  content: "/";
  margin-right: 10px;
}

.blog-post-one {
  margin-bottom: 30px;
}
.blog-post-one .feature-image {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}
.blog-post-one .feature-image a:before {
  display: none;
}
.blog-post-one .feature-image img {
  border-radius: 6px;
  transition: all 0.3s ease-in-out;
}
.blog-post-one .feature-image .post-meta {
  margin-bottom: 40px;
  margin-left: 0;
}
.blog-post-one .feature-image .post-meta li {
  text-transform: uppercase;
  font-weight: 500;
  color: #797986;
  font-size: 13px;
  display: inline-block;
}
.blog-post-one .feature-image .post-meta li.post-category a {
  font-size: 12px !important;
  font-weight: 500;
  background: rgba(242, 91, 61, 0.102);
  color: #F25B3D;
  border-radius: 3px;
  text-transform: uppercase;
  padding: 6px 9px;
  line-height: 1.1;
  display: inline-block;
  margin-bottom: 5px;
}
.blog-post-one .feature-image .post-meta li.post-category a:not(:last-child) {
  margin-right: 7px;
}
.blog-post-one .feature-image .post-meta li.post-category a:hover {
  color: #fff;
  background: #F25B3D;
}
.blog-post-one .feature-image .post-meta li .posted-on a {
  text-transform: uppercase;
  font-weight: 500;
  color: #797986;
  font-size: 13px;
}
.blog-post-one .feature-image .post-meta li i {
  margin-right: 7px;
  font-size: 14px;
}
.blog-post-one .feature-image:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #f3f6f8;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
.blog-post-one .feature-image .entry-content {
  position: absolute;
  left: 0;
  top: 0;
  padding: 50px 40px;
  height: 100%;
  width: 100%;
  z-index: 2;
  transition: all 0.4s ease-in-out;
}
.blog-post-one .feature-image .entry-content .author {
  margin-bottom: 40px;
  transition: all 0.3s ease-in-out;
}
.blog-post-one .feature-image .entry-content .author a {
  color: #92929f;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
.blog-post-one .feature-image .entry-content .author .avatar {
  border-radius: 50%;
  margin-right: 15px;
}
.blog-post-one .feature-image .entry-content .entry-title {
  font-size: 20px;
  font-weight: 600;
}
.blog-post-one .feature-image .entry-content .entry-title a {
  color: #212d46;
  transition: all 0.3s ease-in-out;
}
.blog-post-one .feature-image .entry-content p {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.blog-post-one .feature-image:hover img {
  transform: scale(1.07);
}
.blog-post-one .feature-image:hover:before {
  background: rgba(1, 5, 14, 0.5);
}
.blog-post-one .feature-image:hover .entry-content {
  transform: translateY(-70px);
}
.blog-post-one .feature-image:hover .entry-content .author a {
  color: #fff;
}
.blog-post-one .feature-image:hover .author {
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.blog-post-one .feature-image:hover .post-meta li.post-category a {
  background-color: #F25B3D;
  color: #fff;
}
.blog-post-one .feature-image:hover .entry-title a {
  color: #fff;
}
.blog-post-one .feature-image:hover p {
  opacity: 1;
  visibility: visible;
}
.blog-post-one .feature-image:hover .post-meta li {
  color: #fff;
}
.blog-post-one .feature-image:hover .post-meta li .posted-on a {
  color: #fff;
}
.blog-post-one .feature-image:hover .post-meta li i {
  color: #fff;
}
.blog-post-one .feature-image:hover p {
  color: #fff;
}
.blog-post-one .feature-image:hover .read-more-btn {
  color: #fff;
}
.blog-post-one .feature-image .read-more-btn {
  text-transform: uppercase;
  color: #797986;
  font-weight: 500;
  font-size: 13px;
  position: absolute;
  bottom: 50px;
  left: 40px;
  z-index: 2;
}
.blog-post-one .feature-image .read-more-btn i {
  display: inline-block;
  vertical-align: middle;
  font-size: 18px;
}
.blog-post-one.color-two .entry-content .meta-cat a {
  background: rgba(255, 94, 133, 0.102);
  color: #ff5e85;
}
.blog-post-one.color-two .entry-content .meta-cat a:hover {
  background: #ff5e85;
  color: #fff;
}
.blog-post-one.color-three .entry-content .meta-cat a {
  background: rgba(120, 74, 252, 0.102);
  color: #784afc;
}
.blog-post-one.color-three .entry-content .meta-cat a:hover {
  background: #784afc;
  color: #fff;
}

/* Blog Slider */
.blog-slider-wrapper .blog-next,
.blog-slider-wrapper .blog-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.07);
  line-height: 40px;
  text-align: center;
  color: #ff6344;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
}
.blog-slider-wrapper .blog-prev {
  left: 0;
}
.blog-slider-wrapper .blog-next {
  right: 0;
}
.blog-slider-wrapper:hover .blog-next,
.blog-slider-wrapper:hover .blog-prev {
  opacity: 1;
  visibility: visible;
}
.blog-slider-wrapper .blog-pagination {
  margin-top: 40px;
  position: relative;
}

.pix-post-slider {
  padding: 0 20px;
}

.pix__post-slider {
  background: #fff;
  transition: all 0.3s ease-in-out;
  border-radius: 10px;
  overflow: hidden;
}
.pix__post-slider .pix__entry-title {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}
.pix__post-slider .pix__blog-content {
  padding: 25px 25px 30px;
}
.pix__post-slider .pix__entry-content {
  margin: 0;
  color: #626262;
}
.pix__post-slider a.read-more-btn {
  font-size: 14px;
  font-weight: 600;
  display: block;
  margin-top: 20px;
}
.pix__post-slider a.read-more-btn i {
  font-size: 15px;
  vertical-align: -1px;
  transition: all 0.3s ease-in-out;
  display: inline-block;
}
.pix__post-slider a.read-more-btn:hover {
  color: #F25B3D;
}
.pix__post-slider a.read-more-btn:hover i {
  color: #F25B3D;
  margin-left: 4px;
}
.pix__post-slider:hover {
  box-shadow: 0 5px 24px rgba(0, 0, 0, 0.1);
}

.pix__post-meta {
  margin: 0 0 10px;
  padding: 0;
  list-style: none;
  display: inline-block;
}
.pix__post-meta li {
  display: inline-block;
  font-size: 13px;
  color: #797986;
}
.pix__post-meta li:not(:last-child) {
  margin-right: 25px;
}
.pix__post-meta li i {
  color: #F25B3D;
  font-size: 14px;
  margin-right: 5px;
}
.pix__post-meta li a {
  color: #797986;
  font-weight: 500;
}
.pix__post-meta li a:hover {
  color: #F25B3D;
}

.pix-post__item {
  background-color: #fff;
  border: 1px solid #ecf0f9;
  box-shadow: 0px 29px 18px rgba(184, 201, 215, 0.15);
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 30px;
}
.pix-post__item .pix-post__feature-image {
  position: relative;
  overflow: hidden;
}
.pix-post__item .pix-post__feature-image img {
  width: 100%;
  transition: all 0.3s ease-in-out;
  min-height: 288px;
  object-fit: cover;
}
.pix-post__item .pix-post__feature-image img:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 30px 30px 0 rgba(242, 91, 61, 0.1);
}
.pix-post__item .pix-post__category {
  position: absolute;
  top: 22px;
  right: 22px;
  display: flex;
}
.pix-post__item .pix-post__category .category {
  color: #fff;
  padding: 9px 19px;
  display: inline-block;
  border-radius: 30px;
  line-height: 1;
  font-size: 12px;
  font-weight: 500;
}
.pix-post__item .pix-post__category .category:not(:last-child) {
  margin-right: 10px;
}
.pix-post__item .pix-post__blog-content {
  padding: 33px 40px 35px;
}
@media (max-width: 767px) {
  .pix-post__item .pix-post__blog-content {
    padding: 25px 15px 30px;
  }
}
.pix-post__item .pix-post__date-meta {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #5e6371;
  margin-bottom: 16px;
  display: inline-block;
}
.pix-post__item .pix-post__date-meta .posted-on {
  display: inline-block;
  vertical-align: middle;
  margin-left: 3px;
}
.pix-post__item .pix-post__date-meta .posted-on a {
  color: #5e6371;
}
.pix-post__item .pix-post__date-meta .posted-on a:hover {
  color: #F25B3D;
}
.pix-post__item .pix-post__date-meta i {
  margin-right: 5px;
  vertical-align: -1px;
}
.pix-post__item .pix-post__entry-title {
  font-size: 22px;
  font-weight: 500;
}
.pix-post__item p.pix-post__entry-content {
  margin: 0;
}
.pix-post__item .pix-post__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  border-top: 1px solid #ecf0f9;
}
.pix-post__item .pix-post__meta-right {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.pix-post__item .pix-post__author-avatar {
  font-size: 14px;
}
.pix-post__item .pix-post__author-avatar a {
  color: #2C3539;
  font-size: 14px;
}
.pix-post__item .pix-post__author-avatar a .by {
  color: #7A7E83;
}
.pix-post__item .pix-post__comments,
.pix-post__item .pix-post__views {
  font-size: 14px;
  color: #5e6371;
  display: inline-block;
  line-height: 1;
}
.pix-post__item .pix-post__comments .comment-text,
.pix-post__item .pix-post__views .comment-text {
  display: none;
}
.pix-post__item .pix-post__comments i,
.pix-post__item .pix-post__views i {
  margin-right: 3px;
  vertical-align: -2px;
  font-size: 16px;
}
.pix-post__item .post_view_count {
  display: inline-block;
  margin: 0;
}
.pix-post__item .post_view_count span {
  display: none;
}

.pix__post-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .pix__post-list {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .pix__post-list {
    margin-bottom: 30px;
  }
}
@media (min-width: 768px) {
  .pix__post-list:not(:last-child) .pix__feature-image {
    border-bottom: 1px solid #2d3741;
  }
}
.pix__post-list .pix__meta-category-wrapper {
  margin-bottom: 18px;
}
.pix__post-list .pix__blog-meta-category {
  padding: 10px 20px;
  color: #fff;
  display: inline-flex;
  background: #4D4D4D;
  border-radius: 30px;
  line-height: 1;
  font-size: 16px;
  font-weight: 500;
  align-items: center;
  gap: 8px;
  width: max-content;
}
.pix__post-list .pix__blog-meta-category:not(:last-child) {
  margin-right: 10px;
}
.pix__post-list .pix-post__entry-content {
  margin-bottom: 30px;
  font-size: 18px;
  color: #4e566d;
  line-height: 28px;
}
@media (max-width: 991px) {
  .pix__post-list .pix-post__entry-content {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 10px;
  }
}
.pix__post-list .pix__post-list--meta {
  display: flex;
  gap: 20px;
}
.pix__post-list .pix-post__date-meta .posted-on,
.pix__post-list .pix-post__author-meta .posted-on {
  vertical-align: middle;
}
.pix__post-list .pix__post-list--meta a {
  color: #8c96af;
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
}
.pix__post-list .pix__post-list--meta a:hover {
  color: #F25B3D;
}
.pix__post-list--one {
  padding: 0;
  margin-top: -1px;
  align-items: stretch;
}
.pix__post-list--one .pix__post-list-title-wrapper {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  padding: 30px;
  z-index: 2;
}
.pix__post-list--one .pix__entry-title {
  font-family: "Be Vietnam Pro", serif;
  font-size: 22px;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 0;
}
.pix__post-list--one .pix__entry-title a {
  color: #fff;
}
.pix__post-list--one .pix-post__entry-content {
  font-size: 18px;
  color: #4E566D;
}
.pix__post-list--one .pix__feature-image {
  max-width: 400px;
  width: 100%;
  position: relative;
}
@media (max-width: 991px) {
  .pix__post-list--one .pix__feature-image {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .pix__post-list--one .pix__feature-image {
    width: 100%;
    max-width: 100%;
    min-height: 215px;
  }
}
.pix__post-list--one .pix__feature-image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #202026;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
.pix__post-list--one .pix__feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pix__post-list--one .pix__blog-content {
  flex: 2;
  padding: 30px 9%;
  border: 1px dashed #cbd3e1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1200px) {
  .pix__post-list--one .pix__blog-content {
    padding: 30px 5%;
  }
}
@media (max-width: 1200px) {
  .pix__post-list--one .pix__blog-content {
    padding: 25px;
  }
}
@media (max-width: 767px) {
  .pix__post-list--one .pix__blog-content {
    width: 100%;
  }
}
.pix__post-list--two {
  display: block;
  border-bottom: 1px solid #262522;
  padding: 40px 0;
  background: #000;
}
.pix__post-list--two:first-child {
  border-top: 1px solid #262522;
}
.pix__post-list--two .pix__image-contentwrapper {
  display: flex;
  align-items: center;
  gap: 75px;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .pix__post-list--two .pix__image-contentwrapper {
    flex-direction: column;
    gap: 20px;
    align-items: start;
  }
}
@media (max-width: 767px) {
  .pix__post-list--two .pix__image-contentwrapper {
    align-items: center;
  }
}
.pix__post-list--two .pix__blog-content {
  max-width: 410px;
}
.pix__post-list--two .pix-post__entry-content {
  color: #B0B0B0;
}
.pix__post-list--two .pix__post-list__inner {
  display: flex;
  gap: 75px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 767px) {
  .pix__post-list--two .pix__post-list__inner {
    display: block;
    text-align: center;
  }
}
.pix__post-list--two .pix-post__date-meta {
  min-width: 110px;
}
@media (max-width: 767px) {
  .pix__post-list--two .pix-post__date-meta {
    margin-bottom: 20px;
  }
}
.pix__post-list--two .pix-post__date-meta .post-day {
  display: block;
  color: #00D565;
  font-size: 60px;
  font-family: "Be Vietnam Pro", serif;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
}
.pix__post-list--two .pix-post__date-meta span {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}
.pix__post-list--two .pix__feature-image {
  min-width: 300px;
  border-bottom: 0 !important;
  border-radius: 5px;
  overflow: hidden;
}
.pix__post-list--two .pix__entry-title a {
  color: #fff;
}
.pix__post-list--two .pix__blog-meta-category {
  background: transparent;
  padding: 0;
}
.pix__post-list--three {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  padding: 30px 13%;
  border-bottom: 1px solid #262522;
}
@media (max-width: 1200px) {
  .pix__post-list--three {
    padding: 30px 8%;
    text-align: center;
  }
}
@media (max-width: 991px) {
  .pix__post-list--three {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .pix__post-list--three {
    margin-bottom: 0;
  }
}
.pix__post-list--three .pix__feature-image {
  max-width: 300px;
  border-radius: 5px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .pix__post-list--three .pix__feature-image {
    width: auto;
  }
}
.pix__post-list--three .pix__blog-content {
  max-width: 420px;
}
@media (max-width: 1200px) {
  .pix__post-list--three .pix__blog-content {
    max-width: 300px;
  }
}
@media (max-width: 991px) {
  .pix__post-list--three .pix-post__date-meta {
    margin-bottom: 15px;
    margin-top: 24px;
  }
}
.pix__post-list--three span.post-day {
  font-family: "Be Vietnam Pro", serif;
  display: block;
  color: #D60058;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 90px;
  letter-spacing: -1.8px;
}
@media (max-width: 991px) {
  .pix__post-list--three span.post-day {
    display: inline-block;
    font-size: 20px;
    line-height: 1;
  }
}
.pix__post-list--three span.post-month-date {
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}
.pix__post-list--three h3.pix__entry-title {
  font-family: "Be Vietnam Pro", serif;
  color: #FFF;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.9px;
}
@media (max-width: 1200px) {
  .pix__post-list--three h3.pix__entry-title {
    font-size: 24px;
  }
}
.pix__post-list--three h3.pix__entry-title a {
  color: #fff;
}
.pix__post-list--three h3.pix__entry-title a:hover {
  color: #D60058;
}
.pix__post-list--three p.pix-post__entry-content {
  color: #B0B0B0;
}
.pix__post-list:hover .pix__feature-image:after {
  opacity: 1;
}
.pix__post-list:hover .pix__entry-title a {
  text-decoration: underline;
}

.blog-post-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #eee;
  margin-bottom: 30px;
}
.blog-post-item .blog-post-thumb {
  overflow: hidden;
}
.blog-post-item .blog-post-thumb a {
  display: block;
  transition: all 0.3s ease-in-out;
  position: relative;
}
.blog-post-item .blog-post-thumb a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 2;
}
.blog-post-item .blog-post-thumb img {
  width: 100%;
  height: auto;
  transition: all 0.3s ease-in-out;
}
.blog-post-item .blog-post-thumb:hover img {
  transform: scale(1.1);
}
.blog-post-item .blog-post-thumb:hover a:before {
  opacity: 1;
  visibility: visible;
}
.blog-post-item h2.blog-post-title {
  min-height: 220px;
  display: flex;
  align-items: center;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-post-item .blog-post-content {
  padding: 20px 20px 30px;
}
.blog-post-item .blog-post-excerpt {
  font-size: 18px;
  margin: 20px 0 30px;
}
.blog-post-item .blog-post-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-post-item a.blog-post-readmore {
  font-size: 18px;
  color: #F25B3D;
}
.blog-post-item a.blog-post-readmore:hover {
  color: #ec3410;
}

.blog-grid-pagination {
  text-align: center;
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
}
.blog-grid-pagination span, .blog-grid-pagination a {
  display: inline-flex;
  height: 45px;
  width: 45px;
  border-radius: 50%;
  border: 1px solid #a8a8a8;
  align-items: center;
  justify-content: center;
  color: #000;
  transition: all 0.3s ease-in-out;
}
.blog-grid-pagination span.current, .blog-grid-pagination span:hover, .blog-grid-pagination a.current, .blog-grid-pagination a:hover {
  background: #F25B3D;
  color: #fff;
  border-color: #F25B3D;
}

/*--------------------------------------------------------------
## Image Slider
--------------------------------------------------------------*/
.image-slider-wrapper {
  position: relative;
}
.image-slider-wrapper h3.customer-name {
  font-family: "Be Vietnam Pro", serif;
  font-size: 25px;
  text-align: center;
  margin-top: 35px;
  color: #fff;
}

.image-button-next, .image-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 22;
}

.image-button-next {
  right: 30px;
}

.image-button-prev {
  left: 30px;
}

.logo-carousel-wrapper {
  position: relative;
  overflow: hidden;
}
.logo-carousel-wrapper .slider-prev, .logo-carousel-wrapper .slider-next {
  top: 63px;
  transform: translateY(0);
}
.logo-carousel-wrapper .slider-prev {
  left: 0;
}
.logo-carousel-wrapper .slider-next {
  right: 0;
}

.cam-slider-image {
  background: #2C3539;
  border-radius: 16px;
}

.logo-button-prev, .logo-button-next {
  position: absolute;
  top: 60px;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F25B3D;
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  z-index: 33;
}

.logo-button-next {
  right: 0;
}

.logo-button-prev {
  left: 0;
}

.logo-carousel-pagination {
  position: static;
  margin-top: 20px;
}

.pix-logo-grid {
  display: grid;
  gap: 30px;
  align-items: center;
  justify-items: center;
}
.pix-logo-grid.pix-logo-grid-col-6 {
  grid-template-columns: repeat(6, 1fr);
}
@media (max-width: 1200px) {
  .pix-logo-grid.pix-logo-grid-col-6 {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 992px) {
  .pix-logo-grid.pix-logo-grid-col-6 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .pix-logo-grid.pix-logo-grid-col-6 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 420px) {
  .pix-logo-grid.pix-logo-grid-col-6 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.pix-logo-grid.pix-logo-grid-col-5 {
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 992px) {
  .pix-logo-grid.pix-logo-grid-col-5 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .pix-logo-grid.pix-logo-grid-col-5 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 420px) {
  .pix-logo-grid.pix-logo-grid-col-5 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.pix-logo-grid.pix-logo-grid-col-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 768px) {
  .pix-logo-grid.pix-logo-grid-col-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 420px) {
  .pix-logo-grid.pix-logo-grid-col-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.pix-logo-grid.pix-logo-grid-col-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 420px) {
  .pix-logo-grid.pix-logo-grid-col-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.pix-logo-grid.pix-logo-grid-col-2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 420px) {
  .pix-logo-grid.pix-logo-grid-col-2 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.pix-logo-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.pix-logo-slider .swiper-wrapper {
  align-items: center;
}
.pix-logo-slider .swiper-wrapper .cam-slider-image {
  text-align: center;
}

/*--------------------------------------------------------------
## Video Carousel
--------------------------------------------------------------*/
.pix-video-item__image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.pix-video-item .carouse-popup-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 70px;
  width: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(6.5px);
  border: 1px solid #fff;
  color: #F25B3D;
  font-size: 30px;
}

.pix-video-pagination {
  margin-top: 49px;
}

.video-carousel-button-next.slider-next {
  right: 0;
}

.video-carousel-button-prev.slider-prev {
  left: 0 !important;
}

/*--------------------------------------------------------------
## Team
--------------------------------------------------------------*/
.pix-team {
  text-align: center;
}
.pix-team.pix-team--style1 {
  padding: 30px;
  border-radius: 50px;
  background: #fff;
}
.pix-team.pix-team--style1 .pix-team__image {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
}
.pix-team.pix-team--style1 .pix-team__image.pix-team-popup-trigger {
  position: relative;
  cursor: pointer;
}
.pix-team.pix-team--style1 .pix-team__image.pix-team-popup-trigger:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: all 0.3s ease;
}
.pix-team.pix-team--style1 .pix-team__image.pix-team-popup-trigger::after {
  content: "\f002";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  transition: all 0.3s ease;
}
.pix-team.pix-team--style1 .pix-team__image.pix-team-popup-trigger:hover::after {
  opacity: 1;
}
.pix-team.pix-team--style1 .pix-team__image.pix-team-popup-trigger:hover:before {
  opacity: 1;
}
.pix-team.pix-team--style1 .pix-team__image img {
  border-radius: inherit;
}
.pix-team.pix-team--style2 .pix-team__image {
  width: 400px;
  height: 400px;
  margin: 0 auto 39px;
}
@media (max-width: 1200px) {
  .pix-team.pix-team--style2 .pix-team__image {
    width: 100%;
    height: auto;
  }
}
.pix-team.pix-team--style2 .pix-team__image img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pix-team .pix-team__image.pix-team-popup-trigger {
  position: relative;
  cursor: pointer;
}
.pix-team .pix-team__image.pix-team-popup-trigger:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: all 0.3s ease;
}
.pix-team .pix-team__image.pix-team-popup-trigger::after {
  content: "\f002";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  transition: all 0.3s ease;
}
.pix-team .pix-team__image.pix-team-popup-trigger:hover::after {
  opacity: 1;
}
.pix-team .pix-team__image.pix-team-popup-trigger:hover:before {
  opacity: 1;
}
.pix-team__name {
  text-transform: uppercase;
  font-size: 24px;
  letter-spacing: 0.75px;
  font-weight: 700;
  color: #2C3539;
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}
.pix-team__name.pix-team-popup-trigger {
  cursor: pointer;
}
.pix-team__name.pix-team-popup-trigger:hover {
  color: #F25B3D;
}
.pix-team__designation {
  font-size: 20px;
  color: #24232D;
  margin-bottom: 0;
}
.pix-team__social {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 16px;
  justify-content: center;
}
.pix-team__social li a {
  display: block;
  color: #2C3539;
  font-size: 20px;
}
.pix-team__social li a:hover {
  color: #F25B3D;
}

.pix-team-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.pix-team-popup.active {
  display: flex;
}

.pix-team-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.pix-team-popup__content {
  position: relative;
  background: #fff;
  border-radius: 10px;
  max-width: 800px;
  max-height: 80vh;
  width: 90%;
  margin: 20px;
  padding: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
  animation: popupSlideIn 0.3s ease-out;
}

@keyframes popupSlideIn {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(-50px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.pix-team-popup__close {
  position: absolute;
  top: 30px;
  right: 20px;
  background: none;
  border: none;
  font-size: 30px;
  color: #666;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
  padding: 0 !important;
}

.pix-team-popup__close:hover {
  background: #f0f0f0;
  color: #333;
}

.pix-team-popup__header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.pix-team-popup__image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 20px;
}

.pix-team-popup__info {
  flex: 1;
}

.pix-team-popup__name {
  margin: 0 0 5px 0;
  font-size: 24px;
  color: #333;
  font-weight: 600;
}

.pix-team-popup__designation {
  color: #666;
  font-size: 16px;
  font-weight: 500;
}

.pix-team-popup__description {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

.pix-team-popup__description p {
  margin-bottom: 15px;
}

.pix-team-popup__description p:last-child {
  margin-bottom: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .pix-team-popup__content {
    padding: 20px;
    margin: 10px;
  }
  .pix-team-popup__header {
    flex-direction: column;
    text-align: center;
  }
  .pix-team-popup__image {
    margin: 0 0 15px 0;
  }
  .pix-team-popup__name {
    font-size: 20px;
  }
  .pix-team-popup__close {
    top: 10px;
    right: 15px;
  }
}
/*--------------------------------------------------------------
## Card
--------------------------------------------------------------*/
.pix-card {
  padding: 12px 12px 30px 12px;
  border: 1px solid #dedede;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}
.pix-card__image {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}
.pix-card__image img {
  transition: all 0.3s ease-in-out;
}
.pix-card__content {
  text-align: center;
}
.pix-card__title {
  font-size: 24px;
}
.pix-card__title a {
  color: #2C3539;
}
.pix-card__title a:hover {
  color: #F25B3D;
}
.pix-card__description p {
  margin-bottom: 0;
}
.pix-card:hover {
  border-color: #F25B3D;
}
.pix-card:hover .pix-card__image img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
## Icon Box
--------------------------------------------------------------*/
.cam-feature-box {
  padding: 40px 32px;
  margin-bottom: 40px;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}
.cam-feature-box.style-one {
  background: #fff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-bottom: 5px solid #F25B3D;
}
.cam-feature-box.style-two {
  transition: all 0.3s ease-in-out;
  background-color: #F25B3D;
}
.cam-feature-box.style-two .cam-feature-box__title,
.cam-feature-box.style-two .cam-feature-box__text {
  color: #fff;
}
.cam-feature-box.style-two:hover {
  border-color: #F25B3D;
}
.cam-feature-box.style-three {
  background: #C4D4CB;
  border-bottom: 5px solid #F25B3D;
}
.cam-feature-box__image {
  margin-bottom: 30px;
}
.cam-feature-box__title {
  font-size: 23px;
  margin-bottom: 15px;
}
.cam-feature-box__description {
  font-family: "Be Vietnam Pro", serif;
  font-size: 18px;
  font-weight: 500;
  color: #000;
  margin-bottom: 30px;
}
.cam-feature-box__text p:last-child {
  margin-bottom: 0;
}
.cam-feature-box ul li {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 15px;
}
.cam-feature-box ul li:before {
  top: 7px;
}

/*--------------------------------------------------------------
## Contact Form
--------------------------------------------------------------*/
.contact-info-wrapper .contact-info:not(:last-child) {
  margin-bottom: 38px;
}
.contact-info-wrapper .contact-info .info-title {
  font-size: 16px;
  font-weight: 600;
  color: #2c2c51;
}
.contact-info-wrapper .contact-info .info-title.style-two {
  color: #F25B3D;
}
.contact-info-wrapper .contact-info p {
  margin-bottom: 0;
}
.contact-info-wrapper .phone {
  display: flex;
  margin-bottom: 21px;
}
.contact-info-wrapper .phone i {
  color: #F25B3D;
  margin-right: 12px;
  font-size: 25px;
}
@media (max-width: 480px) {
  .contact-info-wrapper .phone i {
    font-size: 20px;
  }
}
.contact-info-wrapper .phone .phone-number {
  font-size: 30px;
  font-weight: 600;
  margin: 0;
}
@media (max-width: 480px) {
  .contact-info-wrapper .phone .phone-number {
    font-size: 24px;
  }
}
.contact-info-wrapper .email {
  margin-bottom: 44px;
}
.contact-info-wrapper .email .email-id {
  font-family: "Be Vietnam Pro", serif;
  font-size: 20px;
  color: #4c4c4c;
  margin: 0;
}

/*--------------------------------------------------------------
## Overlay Box
--------------------------------------------------------------*/
.cam-image-overlay-box {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-bottom: 30px;
}
.cam-image-overlay-box__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.cam-image-overlay-box .cam-image-overlay-box-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 10px 13px;
}
.cam-image-overlay-box .cam-image-overlay-box-title {
  font-family: "Be Vietnam Pro", serif;
  font-size: 18px;
  color: #fff;
  text-align: center;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
## Events
--------------------------------------------------------------*/
.services-post-item {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .services-post-item {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.services-post-item .services-post-thumbnail {
  width: 180px;
}
.services-post-item .services-post-content {
  padding: 30px 30px 30px 0;
  border-width: 1px 1px 1px 0;
  border-style: solid;
  border-color: #F25B3D;
  border-radius: 0 150px 150px 0;
  flex: 2;
}
.services-post-item .services-post-content p {
  margin-bottom: 0;
  font-size: 22px;
}
.services-post-item .service-event-date {
  height: 200px;
  width: 200px;
  background: #F25B3D;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  margin-left: 50px;
  position: relative;
}
@media (max-width: 991px) {
  .services-post-item .service-event-date {
    margin-left: 0;
    margin-top: 50px;
  }
}
.services-post-item .service-event-date:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -25px;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 1px;
  background: #F25B3D;
  border-radius: 50%;
}
@media (max-width: 991px) {
  .services-post-item .service-event-date:before {
    left: 50%;
    top: -25px;
    width: 1px;
    height: 50px;
  }
}
.services-post-item .service-event-date span {
  display: block;
  color: #fff;
  font-size: 30px;
  line-height: 34px;
}
.services-post-item .service-event-date span.month, .services-post-item .service-event-date span.date {
  font-family: "Be Vietnam Pro", serif;
  font-weight: 700;
}
.services-post-item .service-event-date span.year {
  font-family: "Be Vietnam Pro", serif;
  font-weight: 400;
}

/*--------------------------------------------------------------
## Tabs
--------------------------------------------------------------*/
.pix-tab-nav {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
  gap: 5px;
  margin-left: 0;
  padding: 0;
  list-style: none;
  border-bottom: 0;
  flex-wrap: wrap;
}
.pix-tab-nav li {
  max-width: 163px;
}
.pix-tab-nav li a {
  font-family: "Be Vietnam Pro", serif;
  text-align: center;
  font-size: 20px;
  color: #fff;
  padding: 12px 30px;
  border: 0 !important;
  border-radius: 10px !important;
  border-right: 4px solid var(--Color-Neutral-white, #FFF);
  border-left: 4px solid var(--Color-Neutral-white, #FFF);
  background: linear-gradient(180deg, #111184 0%, #36C 100%) !important;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.pix-tab-nav li a:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 10px;
  background: #eee;
  opacity: 0;
}
@media (max-width: 992px) {
  .pix-tab-nav li a:after {
    display: none;
  }
}
@media (max-width: 1300px) {
  .pix-tab-nav li a {
    padding: 10px 20px;
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .pix-tab-nav li a {
    padding: 10px 15px;
    font-size: 16px;
  }
}
.pix-tab-nav li a:hover {
  color: #fff;
}
.pix-tab-nav li a.active {
  color: #000 !important;
  background: #EEE !important;
  border-radius: 10px 10px 0 0 !important;
}
@media (max-width: 991px) {
  .pix-tab-nav li a.active {
    border-radius: 10px !important;
  }
}
.pix-tab-nav li a.active:after {
  opacity: 1;
}

.tab-contents {
  background: #eee;
  padding: 50px;
  border-radius: 0px 0px 10px 10px;
  position: relative;
  display: flex;
  align-items: center;
}
.tab-contents > div {
  flex: 1;
  max-width: 50%;
  padding: 15px;
}
.tab-contents .button-wrapper {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 992px) {
  .tab-contents {
    flex-direction: column;
    padding: 50px 30px;
    gap: 30px;
  }
  .tab-contents .tab-content-left {
    text-align: center;
  }
  .tab-contents > div {
    flex: 1;
    max-width: 100%;
  }
  .tab-contents .button-wrapper {
    justify-content: center;
  }
}
.tab-contents .tab-title {
  font-family: "Be Vietnam Pro", serif;
  font-size: 40px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}
.tab-contents .tab-subtitle {
  font-family: "Be Vietnam Pro", serif;
  font-size: 16px;
  color: #000;
  margin-bottom: 15px;
}
.tab-contents p {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 30px;
}
.tab-contents .pix-btn-link {
  color: #062A77;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.tab-contents .tab-content-right img {
  border-radius: 25px;
  overflow: hidden;
}

/*--------------------------------------------------------------
## Counter Box
--------------------------------------------------------------*/
.cam-counters {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: minmax(100px, auto);
  gap: 30px;
}
@media (max-width: 1200px) {
  .cam-counters {
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
  }
}
@media (max-width: 767px) {
  .cam-counters {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .cam-counters {
    grid-template-columns: repeat(1, 1fr);
    justify-items: center;
  }
}

.cam-counter__item {
  height: 250px;
  width: 250px;
  text-align: center;
  border: 4px solid #D29B4C;
  border-radius: 50%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  justify-items: center;
  padding: 10px;
}
@media (max-width: 1600px) {
  .cam-counter__item {
    height: 200px;
    width: 200px;
  }
}
.cam-counter__item h2.cam-counter__number {
  font-family: "Be Vietnam Pro", serif;
  color: #fff;
  font-size: 48px;
  line-height: 1;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .cam-counter__item h2.cam-counter__number {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .cam-counter__item h2.cam-counter__number {
    font-size: 40px;
  }
}
.cam-counter__item h3.cam-counter__title {
  font-family: "Be Vietnam Pro", serif;
  color: #fff;
  margin-bottom: 0;
  font-size: 26px;
}
@media (max-width: 1600px) {
  .cam-counter__item h3.cam-counter__title {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
## Testimonials
--------------------------------------------------------------*/
.cam-testimonial {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 40px;
  border-radius: 50px;
  background-color: #fff;
}
.cam-testimonial--one {
  background: #C4D4CB;
}
.cam-testimonial--three {
  border-radius: 20px;
  background-color: #efefef;
  box-shadow: none !important;
  padding: 30px;
  align-items: flex-start;
}
.cam-testimonial--three .cam-testimonial__description {
  margin-bottom: 30px;
}
.cam-testimonial--three .cam-testimonial__name {
  text-transform: capitalize !important;
}
.cam-testimonial--three .cam-testimonial__bio .cam-testimonial__name {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  text-transform: capitalize !important;
}
.cam-testimonial--three .cam-testimonial__bio .cam-testimonial__name::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 2px;
  background-color: #F25B3D;
}
.cam-testimonial--three .cam-testimonial__content {
  text-align: left;
}
@media (max-width: 576px) {
  .cam-testimonial {
    flex-direction: column;
    padding: 24px;
    border-radius: 32px;
  }
}
.cam-testimonial__description {
  font-size: 20px;
  color: #2C3539;
  line-height: 30px;
}
.cam-testimonial__content {
  flex: 2;
  text-align: center;
}
.cam-testimonial__image {
  flex-basis: 300px;
  min-width: 300px;
  border-radius: 30px;
}
@media (max-width: 767px) {
  .cam-testimonial__image {
    flex-basis: 200px;
    min-width: 200px;
  }
}
@media (max-width: 576px) {
  .cam-testimonial__image {
    border-radius: 23px;
  }
}
.cam-testimonial__image img {
  width: 100%;
  border-radius: 30px;
}
@media (max-width: 576px) {
  .cam-testimonial__image img {
    border-radius: 23px;
  }
}
.cam-testimonial__user-info {
  text-align: right;
}
.cam-testimonial__name {
  font-family: "Be Vietnam Pro", serif;
  color: #3C525B;
  font-size: 24px;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 700;
}
.cam-testimonial__designation {
  font-family: "Be Vietnam Pro", serif;
  color: #3C525B;
  font-size: 20px;
  margin-bottom: 0;
  text-transform: uppercase;
}

.pix-col-2 {
  width: 50%;
  padding: 15px;
}
@media (max-width: 767px) {
  .pix-col-2 {
    width: 100%;
  }
}

.pix-col-3 {
  width: 33.3333%;
  padding: 15px;
}
@media (max-width: 991px) {
  .pix-col-3 {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .pix-col-3 {
    width: 100%;
  }
}

.pix-col-4 {
  width: 25%;
  padding: 15px;
}
@media (max-width: 1200px) {
  .pix-col-4 {
    width: 33.3333%;
  }
}
@media (max-width: 991px) {
  .pix-col-4 {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .pix-col-4 {
    width: 100%;
  }
}

.pix-testimonial-grid {
  display: flex;
  gap: 30px;
  width: calc(100% + 30px);
  margin-left: -15px;
}
.pix-testimonial-grid .cam-testimonial {
  padding: 40px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.04);
}
@media (max-width: 1200px) {
  .pix-testimonial-grid .cam-testimonial {
    flex-direction: column;
    border-radius: 20px;
    padding: 30px;
  }
}
.pix-testimonial-grid .cam-testimonial__image {
  height: 156px;
  min-width: 156px;
  flex-basis: auto;
}
.pix-testimonial-grid .cam-testimonial__name {
  margin-bottom: 20px;
}
.pix-testimonial-grid .cam-testimonial__description {
  order: 2;
  font-size: 18px;
}

.testimonial-slider-wrapper {
  position: relative;
  max-width: 1680px;
  margin: 0 auto;
  padding: 100px 0;
  background: rgba(44, 53, 57, 0.7882352941);
  border-radius: 50px;
}
.testimonial-slider-wrapper .section-title {
  padding: 0 120px;
  color: #FFF;
  font-weight: 700;
  margin-bottom: 50px;
  text-transform: uppercase;
}
.testimonial-slider-wrapper .swiper-slide {
  opacity: 0.5;
  transition: all 0.3s ease-in-out;
}
.testimonial-slider-wrapper .swiper-slide.swiper-slide-active {
  opacity: 1;
}

.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  background: #F25B3D;
  border: 2px solid #fff;
  border-radius: 30px;
  min-width: 54px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.slider-prev {
  left: 50px;
}

.slider-next {
  right: 50px;
}

.cam-testimonial-two__name {
  font-size: 16px;
  font-weight: 600;
  color: #283B41;
  margin-bottom: 0;
}

.testimonial-pagination {
  margin-top: 30px;
  text-align: center;
}

.cam-testimonial-two__bio {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  gap: 10px;
}
.cam-testimonial-two__bio .cam-testimonial-two__designation {
  margin-bottom: 0;
}

.cam-testimonial-two__image {
  max-width: 56px;
  overflow: hidden;
}
.cam-testimonial-two__image img {
  border-radius: 50%;
}

.pix-slider-pagination {
  text-align: center;
}
.pix-slider-pagination .swiper-pagination-bullet {
  background: #C4D4CB;
  opacity: 1;
  width: 55px;
  height: 7px;
  transition: all 0.3s ease-in-out;
  border-radius: 20px;
}
.pix-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #F25B3D;
  width: 110px;
}

.gpt-testimonial-single__rating {
  margin-bottom: 10px;
}
.gpt-testimonial-single__rating i {
  font-size: 16px;
  color: #F25B3D;
  margin: 0 1px;
}

.pix-video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.video-grid-columns--2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 767px) {
  .video-grid-columns--2 {
    grid-template-columns: 1fr;
  }
}

.video-grid-columns--3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 991px) {
  .video-grid-columns--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .video-grid-columns--3 {
    grid-template-columns: 1fr;
  }
}

.video-grid-columns--4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1200px) {
  .video-grid-columns--4 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 991px) {
  .video-grid-columns--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .video-grid-columns--4 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .slider-prev, .slider-next {
    display: none;
  }
}
.swiper-pagination {
  text-align: center;
}

.video-carousel-wrapper .pix-slider-pagination .swiper-pagination-bullet {
  margin: 0 5px;
}

@media (max-width: 991px) {
  .testimonial-slider-wrapper .section-title {
    padding: 0 50px;
    font-size: 44px;
  }
}
@media (max-width: 767px) {
  .testimonial-slider-wrapper .section-title {
    font-size: 32px;
  }
}

/*--------------------------------------------------------------
## Affiliate
--------------------------------------------------------------*/
.pix-advisor-slider-wrapper {
  max-width: 1680px;
  margin: 0 auto;
  padding: 100px 0;
  background: #2C3539;
  border-radius: 50px;
  position: relative;
}
.pix-advisor-slider-wrapper .pix-advisor-title {
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0 100px;
  margin-bottom: 30px;
}

.pix-advisor {
  background: #C4D4CB;
  padding: 40px;
  display: flex;
  gap: 50px;
  border-radius: 50px;
  align-items: center;
}
.pix-advisor__image {
  flex-basis: 380px;
  flex-shrink: 0;
  border-radius: 30px;
  overflow: hidden;
}
.pix-advisor__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pix-advisor__content {
  flex-grow: 1;
}
.pix-advisor__name {
  font-size: 24px;
  color: #3C525B;
  text-transform: uppercase;
  font-weight: 700;
}
.pix-advisor__designation {
  font-size: 20px;
  color: #3C525B;
  font-weight: 700;
}

/*--------------------------------------------------------------
## 404 Page
--------------------------------------------------------------*/
.error_page {
  position: relative;
  padding: 100px 0;
}
@media (max-width: 991px) {
  .error_page {
    padding: 120px 0 130px;
  }
}
.error_page .error-page-content {
  position: relative;
  z-index: 2;
  max-width: 990px;
  margin: 0 auto;
  padding: 0 15px;
}
@media (max-width: 991px) {
  .error_page .error-page-content {
    text-align: center;
    margin-bottom: 40px;
  }
}
.error_page .error-page-content .error-title {
  font-size: 40px;
  color: #2c2c51;
  font-weight: 700;
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .error_page .error-page-content .error-title {
    font-size: 32px;
  }
}
.error_page .error-page-content p {
  font-size: 18px;
  margin-bottom: 30px;
}
.error_page .error-page-content .pix-btn {
  padding: 12px 40px;
}
.error_page .error-info {
  max-width: 600px;
  margin: 0 auto;
}
.error_page .error-image {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}
.error_page .error-image img {
  max-width: 550px;
}
.error_page .animate-element {
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.error_page .animate-element li {
  position: absolute;
}
.error_page .animate-element li:nth-child(1) {
  top: 37%;
  left: 11%;
}
.error_page .animate-element li:nth-child(2) {
  bottom: 29%;
  left: 11%;
}
.error_page .animate-element li:nth-child(3) {
  top: 25%;
  right: 100px;
}
.error_page .animate-element li:nth-child(4) {
  bottom: 33%;
  right: 12%;
}
@media (max-width: 991px) {
  .error_page .animate-element li:nth-child(1) {
    top: 18%;
    left: 2%;
  }
  .error_page .animate-element li:nth-child(2) {
    bottom: 10%;
    left: 3%;
  }
  .error_page .animate-element li:nth-child(3) {
    top: 16%;
    right: 25px;
  }
  .error_page .animate-element li:nth-child(4) {
    bottom: 5%;
    right: 2%;
  }
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comments-rating {
  border: none;
  padding: 0;
  margin-left: 0;
}

.comments-rating label {
  display: inline-block;
}

.rating-container {
  /* remove inline-block whitespace */
  font-size: 0;
  /* flip the order so we can use the + and ~ combinators */
  unicode-bidi: bidi-override;
  direction: rtl;
}

.rating-container * {
  font-size: 1.4rem;
}

.rating-container > input {
  display: none;
}

.rating-container > input + label {
  /* only enough room for the star */
  font-family: "dashicons";
  display: inline-block;
  overflow: hidden;
  text-indent: 9999px;
  width: 1em;
  white-space: nowrap;
  cursor: pointer;
  margin: 0;
}

.rating-container > input + label:before {
  display: inline-block;
  text-indent: -9999px;
  content: "\f154";
  color: #888;
}

.rating-container > input:checked ~ label:before,
.rating-container > input + label:hover ~ label:before,
.rating-container > input + label:hover:before {
  content: "\f155";
  color: #f0ae0f;
  text-shadow: 0 0 1px #333;
}

.rating-container > .star-cb-clear + label {
  text-indent: -9999px;
  width: 0.5em;
  margin-left: -0.5em;
}

.rating-container > .star-cb-clear + label:before {
  width: 0.5em;
}

.rating-container:hover > input + label:before {
  content: "\f154";
  color: #888;
  text-shadow: none;
}

.rating-container:hover > input + label:hover ~ label:before,
.rating-container:hover > input + label:hover:before {
  content: "\f155";
  color: #f0ae0f;
  text-shadow: 0 0 1px #333;
}

.comment-respond .rating-container > .star-cb-clear + label, .comment-respond .rating-container > input + label:before {
  text-indent: 9999px;
}

.comment-respond .rating-container > input + label {
  text-indent: -9999px;
}

/*--------------------------------------------------------------
## Footer
--------------------------------------------------------------*/
.site-footer {
  position: relative;
  background: #D1D2D4;
}
.site-footer:before {
  content: "";
  position: absolute;
  max-width: 759px;
  width: 100%;
  height: 359px;
  clip-path: polygon(-738px 30px, -738px 30px, -737.607363px 25.1338545px, -736.470624px 20.517696px, -734.651541px 16.2132915px, -732.211872px 12.282408px, -729.213375px 8.7868125px, -725.717808px 5.788272px, -721.786929px 3.3485535px, -717.482496px 1.529424px, -712.866267px 0.3926505px, -708px 0px, 621.409px 0px, 621.409px 0px, 623.735266px 0.09026799px, 626.033728px 0.35850792px, 628.294882px 0.80087373px, 630.509224px 1.41351936px, 632.66725px 2.19259875px, 634.759456px 3.13426584px, 636.776338px 4.23467457px, 638.708392px 5.48997888px, 640.546114px 6.89633271px, 642.28px 8.44989px, 742.832px 105.832px, 742.832px 105.832px, 745.486491px 108.764094px, 747.696928px 111.961352px, 749.455757px 115.376338px, 750.755424px 118.961616px, 751.588375px 122.66975px, 751.947056px 126.453304px, 751.823913px 130.264842px, 751.211392px 134.056928px, 750.101939px 137.782126px, 748.488px 141.393px, 642px 343.011px, 642px 343.011px, 640.295423px 345.848597px, 638.314504px 348.450496px, 636.081861px 350.801859px, 633.622112px 352.887848px, 630.959875px 354.693625px, 628.119768px 356.204352px, 625.126409px 357.405191px, 622.004416px 358.281304px, 618.778407px 358.817853px, 615.473px 359px, -708px 359px, -708px 359px, -712.866267px 358.607363px, -717.482496px 357.470624px, -721.786929px 355.651541px, -725.717808px 353.211872px, -729.213375px 350.213375px, -732.211872px 346.717808px, -734.651541px 342.786929px, -736.470624px 338.482496px, -737.607363px 333.866267px, -738px 329px, -738px 30px);
  background-color: #fff;
}
@media (max-width: 1710px) {
  .site-footer:before {
    left: -150px !important;
  }
}
@media (max-width: 1320px) {
  .site-footer:before {
    left: -250px !important;
  }
}
@media (max-width: 1200px) {
  .site-footer:before {
    left: -310px !important;
  }
}
@media (max-width: 768px) {
  .site-footer:before {
    display: none !important;
  }
}
.site-footer .widget {
  position: relative;
  z-index: 2;
  padding: 0;
}
.site-footer .widget ul.footer-social-link {
  margin-top: 15px;
}
.site-footer .widget ul.footer-social-link li {
  display: inline-block;
}
.site-footer .widget ul.footer-social-link li:not(:last-child) {
  margin-right: 7px;
}
.site-footer .widget ul.footer-social-link li a {
  border: 2px solid rgba(255, 255, 255, 0.2);
  height: 44px;
  width: 44px;
  line-height: 41px;
  border-radius: 6px;
  color: #fff;
  text-align: center;
  font-size: 15px;
}
.site-footer .widget ul.footer-social-link li a:hover {
  background-color: #fff;
  border-color: #fff;
  color: #F25B3D;
}
.site-footer .tagcloud a {
  color: #2C3539;
  margin-bottom: 7px;
}
.site-footer .footer-wrapper {
  padding: 120px 0 60px;
}
.site-footer .site-info {
  position: relative;
  z-index: 22;
  padding: 10px 0;
}
@media (max-width: 767px) {
  .site-footer .site-info {
    background-color: #2c3539;
  }
}
.site-footer .site-info .site-info-inner {
  padding: 35px 0;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .site-footer .site-info .site-info-inner {
    display: block !important;
    text-align: center;
    padding: 20px 0;
  }
  .site-footer .site-info .site-info-inner .copyright {
    margin-bottom: 10px;
  }
}
.site-footer .site-info .copyright {
  text-align: center;
}
@media (max-width: 767px) {
  .site-footer .site-info .copyright {
    padding: 15px 0;
  }
}
.site-footer .site-info .copyright p {
  margin: 0;
  color: #FFF;
  font-size: 20px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .site-footer .site-info .copyright p {
    text-align: center !important;
    font-size: 16px;
  }
}
.site-footer .site-info .copyright p a {
  color: #fff;
}
.site-footer .site-info .copyright p a:hover {
  color: #F25B3D;
}
.site-footer .site-info-shape {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.site-footer.footer_light {
  background-color: #fff;
}
.site-footer.footer_light .logo-light {
  display: none;
}
.site-footer.footer_light p {
  color: #6d6d82;
}
.site-footer.footer_light .site-info {
  background-color: #FCFCFC;
  border-top: 0;
}
.site-footer.footer_light .site-info .copyright p {
  color: #000;
}
.site-footer.footer_light .site-info .copyright a {
  color: #F25B3D;
}
.site-footer.footer_light .site-info .copyright a:hover {
  color: #062A77;
}
.site-footer.footer_light .site-info-wrapper {
  padding: 20px 0 40px;
  border-top: 1px solid #062A77;
}
.site-footer.footer_light .widget .widget-title,
.site-footer.footer_light .widget h1, .site-footer.footer_light .widget h2, .site-footer.footer_light .widget h3, .site-footer.footer_light .widget h4, .site-footer.footer_light .widget h5, .site-footer.footer_light .widget h6 {
  color: #2C3539;
}
.site-footer.footer_light .widget ul:not(.footer-social-link) li a {
  color: #8A8A8A;
}
.site-footer.footer_light .widget ul:not(.footer-social-link) li a:hover {
  color: #F25B3D;
}
.site-footer.footer_light .widget-newsletter input#newsletter-form-email {
  background-color: transparent;
  border: 2px solid rgba(0, 0, 0, 0.12);
}
.site-footer.footer_light .widget-newsletter .newsletter-submit {
  box-shadow: 0 11px 18px -8px rgba(23, 92, 255, 0.6);
}
.site-footer.footer_light .widget-newsletter .newsletter-submit:hover {
  background-color: #F25B3D;
  border-color: #F25B3D;
  box-shadow: none;
}
.site-footer.footer_light .footer-social-link li a {
  border-color: rgba(0, 0, 0, 0.12);
  color: #65676d;
}
.site-footer.footer_light .footer-social-link li a:hover {
  background-color: #F25B3D;
  border-color: #F25B3D;
  color: #fff;
}
.site-footer .bottom-caminfo {
  background-color: #222;
}
.site-footer .bottom-caminfo p {
  margin: 0;
  color: #999aa8;
  font-size: 16px;
  text-align: center;
  padding: 10px 0;
}
.site-footer .bottom-caminfo p a {
  color: #F25B3D;
}
.site-footer .bottom-caminfo p a:hover {
  color: #F25B3D;
}

.footer-phone {
  position: absolute;
  right: 0;
  padding: 20px 50px 20px 30px;
  font-size: 34px;
  color: #fff;
  font-weight: 700;
  transform: translateY(-46px);
  background-image: url("../images/footer-phone-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  gap: 20px;
  height: 100px;
}
.footer-phone svg {
  width: 60px;
  height: 60px;
}
@media (max-width: 767px) {
  .footer-phone {
    padding: 12px 15px 12px 30px;
    font-size: 24px;
    color: #fff;
    height: 70px;
  }
  .footer-phone svg {
    width: 40px;
    height: 40px;
  }
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-description p {
  margin-bottom: 0;
}

ul.pix-social-icons {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px !important;
}
ul.pix-social-icons li a {
  font-size: 26px !important;
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px !important;
  margin-bottom: 10px;
}
.contact-info li i {
  color: #F25B3D;
  min-width: 20px;
}

#menu-footer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 32px;
}
#menu-footer-menu li {
  position: relative;
}
#menu-footer-menu li a {
  font-size: 14px;
  color: #000;
  font-weight: 600;
}
#menu-footer-menu li a:hover {
  color: #F25B3D;
}

ul#menu-privacy-policy-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
}
ul#menu-privacy-policy-menu a:hover {
  color: #F25B3D;
}

.copyright-text {
  margin-bottom: 0;
}

.widget-newsletter .form-result {
  margin: 10px 0 0;
  padding: 10px 15px;
  line-height: 22px;
}
.widget-newsletter .newsletter-inner {
  background-color: #f3f6f8;
  border-radius: 6px;
  overflow: hidden;
}
.widget-newsletter .form-control[type=email] {
  margin-bottom: 0 !important;
  height: 50px;
  padding: 0 15px !important;
  border-radius: 0;
  background-color: transparent !important;
  border: 0 !important;
  color: #2C3539;
}
.widget-newsletter .form-control[type=email]:focus {
  box-shadow: none;
  color: #2C3539;
}
.widget-newsletter .newsletter-submit {
  border-radius: 0;
  padding: 10px 25px;
  min-width: 60px;
  box-shadow: none !important;
}
.widget-newsletter .newsletter-submit i.fa-circle-o-notch {
  display: none;
}
.widget-newsletter .newsletter-submit:hover {
  background-color: #F25B3D;
  color: #fff;
}
.widget-newsletter .newsletter-submit.clicked i.fa-paper-plane {
  display: none;
}
.widget-newsletter .newsletter-submit.clicked i.fa-circle-o-notch {
  display: block;
}
.widget-newsletter .form-result .content {
  font-size: 14px;
}

.site-footer .widget .pix-block-social-link {
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer .widget .pix-block-social-link li {
  display: inline-block;
}
.site-footer .widget .pix-block-social-link li:not(:last-child) {
  margin-right: 7px !important;
}
.site-footer .widget .pix-block-social-link li a {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.302);
  border-radius: 30px;
  font-size: 14px;
}
.site-footer .widget .pix-block-social-link li a:hover {
  background-color: #fff;
  border-color: #fff;
  color: #F25B3D;
}

.footer-social-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .footer-social-wrap {
    display: block;
    text-align: center;
    padding: 20px 0;
  }
  .footer-social-wrap #menu-footer-menu {
    justify-content: center;
  }
  .footer-social-wrap .footer-social-wrapper {
    margin-bottom: 20px;
  }
  .footer-social-wrap .copyright {
    padding: 0 !important;
  }
}

.wp-widget-block-newsletter {
  max-width: 400px;
}

.single-post .footer_light, .blog .footer_light, .archive .footer_light, .search-results .footer_light, .single-pix_job .footer_light, .single-pix_support .footer_light {
  background-color: white;
}

.site-footer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer-menu li {
  display: inline-block;
  margin-right: 20px;
  position: relative;
}
.site-footer-menu li:not(:last-child) {
  margin-right: 15px;
  padding-right: 15px;
}
.site-footer-menu li:not(:last-child):after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 15px;
  background-color: rgba(255, 255, 255, 0.2);
}
.site-footer-menu li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  font-weight: 400;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type=button],
input[type=reset],
input[type=submit] {
  color: #fff;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  display: inline-block;
  padding: 11px 30px;
  height: auto;
  background-color: #F25B3D;
  border: 1px solid #F25B3D;
  border-radius: 30px;
  font-weight: 500;
}
button:hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover {
  background-color: transparent;
  color: #F25B3D;
}

.return-to-top {
  position: fixed;
  bottom: -30px;
  right: 20px;
  width: 42px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  cursor: pointer;
  z-index: 998;
  border-radius: 50%;
  opacity: 0;
  transition: bottom 0.5s ease, opacity 0.5s ease;
}
.return-to-top:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  opacity: 1;
  display: block;
  transform: scale(1);
  border-radius: inherit;
  transition: transform 0.5s ease, opacity 0.6s ease;
}
.return-to-top:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 0 0 transparent;
  transform: scale(1);
  transition: all 0.3s ease;
  border-radius: inherit;
}
.return-to-top > i {
  position: relative;
  overflow: hidden;
  font-size: 12px;
  width: inherit;
  height: inherit;
  line-height: inherit;
  display: block;
  color: transparent;
  text-shadow: 0 0 #fff, 0 50px #fff;
  -webkit-transition: text-shadow 0.2s ease;
  -moz-transition: text-shadow 0.2s ease;
  transition: text-shadow 0.2s ease;
  z-index: 1;
}
.return-to-top:hover:after {
  transform: scale(1.07);
  background: #F25B3D;
  box-shadow: 0 10px 20px 8px rgba(242, 91, 61, 0.15);
}
.home-analytics .return-to-top:hover:after {
  background: #F25B3D;
  box-shadow: 0 10px 20px 8px rgba(242, 91, 61, 0.15);
}
.return-to-top:hover > i {
  text-shadow: 0 -50px #fff, 0 0 #fff;
}
.return-to-top.back-top {
  bottom: 20px;
  opacity: 1;
}

input:not([type=checkbox]):not([type=submit]),
textarea {
  margin-bottom: 20px;
  width: 100%;
  padding: 10px 15px;
  font-weight: 400;
  outline: 0;
  transition: all 0.3s linear;
  font-size: 15px;
  border-radius: 5px;
  border: 1px solid #D3D3D3;
}
input:not([type=checkbox]):not([type=submit])::placeholder,
textarea::placeholder {
  color: #6A6A74;
}
input:not([type=checkbox]):not([type=submit]):focus,
textarea:focus {
  -webkit-box-shadow: -3.42px 9.397px 30px 0px rgba(17, 49, 81, 0.1294117647);
  box-shadow: -3.42px 9.397px 30px 0px rgba(17, 49, 81, 0.1294117647);
  background: #ffffff;
}

select {
  width: 100%;
  background-color: #fafafc;
  border: 1px solid #f1f1f6;
  font-size: 16px;
  display: inline-block;
  background-position: right 10px center;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  padding: 12px 20px;
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='iso-8859-1'%3F%3E%3C!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3Csvg version='1.1' id='Capa_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 490.656 490.656' style='enable-background:new 0 0 490.656 490.656;' xml:space='preserve'%3E%3Cg%3E%3Cg%3E%3Cpath d='M487.536,120.445c-4.16-4.16-10.923-4.16-15.083,0L245.317,347.581L18.203,120.445c-4.16-4.16-10.923-4.16-15.083,0 c-4.16,4.16-4.16,10.923,0,15.083l234.667,234.667c2.069,2.091,4.8,3.136,7.531,3.136s5.461-1.045,7.552-3.115l234.667-234.667 C491.696,131.368,491.696,124.627,487.536,120.445z'/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 12px;
  border-radius: 5px;
  margin-bottom: 20px;
}
select:focus {
  outline: 0;
}

.form-submit {
  margin: 0;
}

textarea {
  height: 160px;
  margin-bottom: 20px;
}

input[type=checkbox], input[type=radio] {
  height: 16px !important;
  width: 16px !important;
}

.cus_gform .ginput_container input, .cus_gform .ginput_container textarea, .cus_gform .ginput_container select {
  margin: 5px 0 !important;
  border: none !important;
  background: rgba(0, 64, 98, 0.031372549) !important;
  font-size: 15px !important;
  line-height: 1.2 !important;
  padding: 15px !important;
  color: #333333 !important;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  border-radius: 5px !important;
}

.cus_gform .ginput_container input:focus, .cus_gform .ginput_container textarea:focus {
  -webkit-box-shadow: -3.42px 9.397px 30px 0px rgba(17, 49, 81, 0.1294117647);
  box-shadow: -3.42px 9.397px 30px 0px rgba(17, 49, 81, 0.1294117647);
  background: #ffffff !important;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
  color: #2C3539;
  transition: all 0.3s ease-in-out;
}
a:hover, a:focus, a:active {
  color: #F25B3D;
  text-decoration: none;
}
a:hover, a:active {
  outline: 0;
}

/*--------------------------------------------------------------
## Primary Menu
--------------------------------------------------------------*/
.site-header {
  position: relative;
  z-index: 999;
  background: #2C3539;
  min-height: 161px;
}
.site-header:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 634px;
  height: 161px;
  clip-path: polygon(-0.5px 0px, 572.621px 0px, 572.621px 0px, 574.948136px 0.09033131px, 577.247408px 0.35875768px, 579.509312px 0.80142777px, 581.724344px 1.41449024px, 583.883px 2.19409375px, 585.975776px 3.13638696px, 587.993168px 4.23751853px, 589.925672px 5.49363712px, 591.763784px 6.90089139px, 593.498px 8.45543px, 624.844px 38.8298px, 624.844px 38.8298px, 627.496842px 41.7612481px, 629.705936px 44.9576208px, 631.463734px 48.3715307px, 632.762688px 51.9555904px, 633.59525px 55.6624125px, 633.953872px 59.4446096px, 633.831006px 63.2547943px, 633.219104px 67.0455792px, 632.110618px 70.7695769px, 630.498px 74.3794px, 593.215px 145.005px, 593.215px 145.005px, 591.510636px 147.843494px, 589.529768px 150.446272px, 587.297032px 152.798478px, 584.837064px 154.885256px, 582.1745px 156.69175px, 579.333976px 158.203104px, 576.340128px 159.404462px, 573.217592px 160.280968px, 569.991004px 160.817766px, 566.685px 161px, -0.5px 161px, -0.5px 0px);
  background-color: #fff;
  z-index: -1;
}
@media (max-width: 1470px) {
  .site-header:before {
    left: -10%;
  }
}
@media (max-width: 1470px) {
  .site-header:before {
    left: -17%;
  }
}
@media (max-width: 1320px) {
  .site-header:before {
    left: -18%;
  }
}
@media (max-width: 991px) {
  .site-header:before {
    display: none !important;
  }
}
.site-header:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 644px;
  height: 56px;
  clip-path: polygon(773px 16px, 773px 16px, 772.476457px 22.4882102px, 770.960736px 28.6430976px, 768.535199px 34.3823074px, 765.282208px 39.6234848px, 761.284125px 44.284275px, 756.623312px 48.2823232px, 751.382131px 51.5352746px, 745.642944px 53.9607744px, 739.488113px 55.4764678px, 733px 56px, 60.1428px 56px, 60.1428px 56px, 56.7094507px 55.8525333px, 53.3263616px 55.4152024px, 50.0103309px 54.6956111px, 46.7781568px 53.7013632px, 43.6466375px 52.4400625px, 40.6325712px 50.9193128px, 37.7527561px 49.1467179px, 35.0239904px 47.1298816px, 32.4630723px 44.8764077px, 30.0868px 42.3939px, 9.96991px 19.486px, 9.96991px 19.486px, 7.104569653px 15.81343408px, 4.715283664px 11.88810784px, 2.808711511px 7.75431856px, 1.391512672px 3.45636352px, 0.470346625px -0.96146px, 0.051872848px -5.45485472px, 0.142750819px -9.97952336px, 0.749640016px -14.49116864px, 1.879199917px -18.94549328px, 3.53809px -23.2982px, 31.4297px -85.3903px, 31.4297px -85.3903px, 33.5943548px -89.5425769px, 36.1906424px -93.3626752px, 39.1803776px -96.8258863px, 42.5253752px -99.9075016px, 46.18745px -102.5828125px, 50.1284168px -104.8271104px, 54.3100904px -106.6156867px, 58.6942856px -107.9238328px, 63.2428172px -108.7268401px, 67.9175px -109px, 733px -109px, 733px -109px, 739.488113px -108.4764678px, 745.642944px -106.9607744px, 751.382131px -104.5352746px, 756.623312px -101.2823232px, 761.284125px -97.284275px, 765.282208px -92.6234848px, 768.535199px -87.3823074px, 770.960736px -81.6430976px, 772.476457px -75.4882102px, 773px -69px, 773px 16px);
  background-color: #fff;
  z-index: -1;
}
@media (max-width: 1470px) {
  .site-header:after {
    max-width: 500px;
  }
}
.header-position .site-header {
  margin-top: 32px;
}
@media (max-width: 782px) {
  .header-position .site-header {
    margin-top: 46px;
  }
}
.site-header .container-fluid {
  padding-left: 100px;
  padding-right: 100px;
  margin: 0 auto;
}
@media (max-width: 1470px) {
  .site-header .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 1400px) {
  .site-header .container-fluid {
    max-width: 1310px;
  }
}
@media (max-width: 991px) {
  .site-header .container-fluid {
    max-width: 720px;
    padding-right: 15px;
    padding-left: 15px;
  }
}
.site-header .pix-btn.btn-outline {
  border: 2px solid #B9ADA2;
  color: #2C3539;
  font-size: 14px;
  padding: 5px 24px !important;
}
.site-header .pix-btn.btn-outline:hover {
  background: #F25B3D;
  border-color: #F25B3D;
  color: #fff;
}
.site-header .header-top-content {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: end;
  padding: 8px 0;
}
.site-header .header-top-content .topbar-text {
  color: #2C3539;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.25px;
}
.site-header .nav-right .pix-btn {
  box-shadow: none;
}
@media (max-width: 1710px) {
  .site-header .site-logo {
    max-width: 300px;
  }
}
.site-header .site-logo .site-title {
  font-size: 34px;
  font-weight: 500;
  padding: 8px 0;
  margin: 0;
  color: #fff;
}
.site-header .site-logo img {
  min-height: 40px;
}
@media (max-width: 1300px) {
  .site-header .site-logo img {
    max-width: 200px;
  }
}
.site-header .site-logo a {
  font-size: 30px;
  font-weight: 700;
  padding: 8px 0;
  display: block;
  color: #fff;
}
@media (max-width: 991px) {
  .site-header .site-logo a {
    padding: 13px 0;
  }
}
.site-header .site-logo a h3 {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
}
.site-header .site-logo .logo-sticky {
  display: none;
}
.site-header .add-menu {
  margin: 0;
  padding: 31px 0;
  list-style: none;
  font-weight: 500;
}
.site-header .add-menu li a {
  color: #fff;
}
.site-header .add-menu li a:hover {
  color: #F25B3D;
}
.site-header .nav-btn {
  padding: 11px 35px;
}
.site-header .rbt-hamburger {
  width: 24px;
  cursor: pointer;
}
.site-header .rbt-hamburger.active {
  opacity: 0;
  visibility: hidden;
}
@media (min-width: 992px) {
  .site-header .rbt-hamburger {
    display: none;
  }
}
.site-header .rbt-hamburger:focus {
  outline: 0;
}
.site-header .rbt-hamburger .bar {
  background: #2C3539;
  height: 2px;
  display: block;
}
.site-header .rbt-hamburger .bar:not(:last-child) {
  margin-bottom: 5px;
}
.site-header.header_light .rbt-hamburger .bar {
  background: #fff;
}
.site-header.header_transparent {
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.site-header.showed {
  width: 100%;
  position: fixed;
  background: #fff;
  z-index: 99999;
}
.site-header.showed .top-bar {
  display: none;
}
.header-position .site-header.showed {
  top: 32px;
}
@media (max-width: 782px) {
  .header-position .site-header.showed {
    top: 46px;
  }
}
.site-header.showed .site-logo .main-logo {
  display: none;
}
.site-header.showed .site-logo a {
  color: #2C3539;
  padding: 5px 0;
}
.site-header.showed .site-logo h3 {
  color: #2C3539;
}
.site-header.showed .add-menu li a {
  color: #2C3539;
}
.site-header.showed .rbt-hamburger .bar {
  background: #2C3539;
}
.site-header.header_dark .rbt-hamburger .bar {
  background: #2C3539;
}
.site-header.header_dark .add-menu li a {
  color: #2C3539;
}
.site-header.header_dark .site-logo a h3 {
  color: #2C3539;
}
.site-header ul.icon-menu:before {
  display: none;
}
.site-header .nav-right a.header-btn-link {
  background: #8E0003;
  color: #fff;
  display: block;
  text-align: right;
  padding: 10px 20px 13px 30px;
  font-size: 24px;
  border-radius: 50px 0 0 50px;
}
.site-header .menu-wrapper {
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 991px) {
  .site-header .menu-wrapper {
    display: block;
  }
}
.submenu-align-right .site-header {
  width: auto;
}
.site-header .site-main-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-header .site-main-menu > li {
  position: relative;
}
@media (min-width: 992px) {
  .site-header .site-main-menu > li {
    padding: 36px 0;
  }
}
.site-header .site-main-menu > li > a {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
}
@media (max-width: 1710px) {
  .site-header .site-main-menu > li > a {
    font-size: 16px;
  }
}
.site-header .site-main-menu > li > a:hover {
  color: #F25B3D;
}
.site-header .site-main-menu > li > a:hover {
  color: #F25B3D;
}
.site-header .site-main-menu > li.current-menu-item > a {
  color: #F25B3D;
}
.site-header .site-main-menu > li:not(.mega-menu) {
  position: relative;
}
.site-header .site-main-menu li {
  display: inline-block;
}
@media (max-width: 991px) {
  .site-header .site-main-menu li {
    display: block;
  }
}
.site-header .site-main-menu li:not(:last-child) {
  margin-right: 35px;
}
@media (max-width: 1710px) {
  .site-header .site-main-menu li:not(:last-child) {
    margin-right: 20px;
  }
}
@media (max-width: 1320px) {
  .site-header .site-main-menu li:not(:last-child) {
    margin-right: 15px;
  }
}
@media (max-width: 1200px) {
  .site-header .site-main-menu li:not(:last-child) {
    margin-right: 15px;
  }
}
@media (max-width: 991px) {
  .site-header .site-main-menu li:not(:last-child) {
    margin-right: 0;
  }
}
.site-header .site-main-menu li.menu-item-has-children > a {
  position: relative;
  padding-right: 24px;
}
@media (min-width: 992px) {
  .site-header .site-main-menu li.menu-item-has-children > a:after {
    position: absolute;
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    right: 0;
    font-size: 20px;
    top: 1px;
    line-height: 1;
    color: #fff;
    transition: all 0.3s ease-in-out;
  }
}
.site-header .site-main-menu li.menu-item-has-children > a:hover:after {
  color: #F25B3D;
}
.site-header .site-main-menu li.menu-item-has-children .sub-menu {
  margin: 0;
}
@media (min-width: 992px) {
  .site-header .site-main-menu li.menu-item-has-children .sub-menu {
    padding: 15px 0;
    display: block;
    position: absolute;
    top: 115%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 5px 10px rgba(20, 48, 58, 0.0823529412);
    min-width: 280px;
    z-index: 2222;
    background: #fff;
    transition: all 0.3s ease-in-out;
  }
}
.site-header .site-main-menu li.menu-item-has-children .sub-menu.sub-menu-wide {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 40px 80px 25px;
}
.site-header .site-main-menu li.menu-item-has-children .sub-menu.sub-menu-wide > .mega-menu-item > a.menu-link {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-block;
  color: #2C3539;
}
.site-header .site-main-menu li.menu-item-has-children .sub-menu.sub-menu-wide .sub-menu {
  position: unset;
  box-shadow: unset;
  visibility: unset;
  opacity: unset;
}
.site-header .site-main-menu li.menu-item-has-children .sub-menu li {
  display: block;
  position: relative;
  margin-right: 0;
  line-height: 36px;
}
.site-header .site-main-menu li.menu-item-has-children .sub-menu li a {
  font-size: 14px;
  padding: 10px 20px;
  display: block;
  line-height: 1.4;
  color: #464A56;
}
.site-header .site-main-menu li.menu-item-has-children .sub-menu li a:hover {
  color: #fff;
  background: #F25B3D;
}
.site-header .site-main-menu li.menu-item-has-children .sub-menu li a:hover:after {
  color: #fff;
}
.site-header .site-main-menu li.menu-item-has-children .sub-menu li.current-menu-item a {
  color: #fff;
  background: #F25B3D;
}
.site-header .site-main-menu li.menu-item-has-children .sub-menu li.has-submenu a:after {
  right: 20px;
  top: 12px;
}
.site-header .site-main-menu li.menu-item-has-children .sub-menu li .sub-menu {
  padding: 15px 0;
  position: absolute;
  left: 100%;
  top: 0;
  background: #fff;
  min-width: 230px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 5px 10px rgba(20, 48, 58, 0.0823529412);
}
@media (max-width: 991px) {
  .site-header .site-main-menu li.menu-item-has-children .sub-menu li .sub-menu {
    position: static;
    top: 0;
    left: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    padding: 0;
    transition: none;
  }
  .site-header .site-main-menu li.menu-item-has-children .sub-menu li .sub-menu li a {
    padding: 10px 30px;
  }
}
.site-header .site-main-menu li.menu-item-has-children .sub-menu li.menu-item-has-children:hover ul {
  opacity: 1;
  visibility: visible;
  top: -15px;
}
.site-header .site-main-menu li.menu-item-has-children:hover ul {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.site-header.submenu-align-right .menu-wrapper {
  width: auto;
}
.site-header.submenu-align-right .site-main-menu > li:nth-last-child(-n+3).menu-item-has-children .sub-menu {
  left: auto;
  right: 0;
}
.site-header.submenu-align-right .site-main-menu > li:nth-last-child(-n+3).menu-item-has-children .sub-menu li ul {
  right: 100%;
}
.site-header.header_transparent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.site-header.header_transparent.header_light:not(.showed):not(.mobile-header) .site-main-menu > li > a {
  color: #fff;
}
.site-header.header_transparent.header_light:not(.showed):not(.mobile-header) .site-main-menu > li.menu-item-has-children > a:after {
  color: #fff;
}
.site-header.header_transparent.header_light:not(.showed):not(.mobile-header) .nav-right .search-btn, .site-header.header_transparent.header_light:not(.showed):not(.mobile-header) .nav-right .canvas-btn {
  border: 1px solid #1A1A19;
  background: #141414;
  color: #fff;
}
.site-header.header_transparent.header_light:not(.showed):not(.mobile-header) .nav-right .nav-btn {
  background: #F25B3D;
  color: #fff;
  border-color: #F25B3D;
}
.site-header.header-fixed.showed:not(.mobile-header) .site-main-menu > li {
  padding: 27px 0;
}
.site-header.header-fixed.showed {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 9999;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  animation: stickySlideDown 0.65s cubic-bezier(0.23, 1, 0.32, 1) both;
}
.header-position .site-header.header-fixed.showed .fullscreen-menu {
  top: 0;
}
.site-header.header-fixed.showed .site-logo .main-logo {
  display: none;
}
.site-header.header-fixed.showed .site-logo .logo-sticky {
  display: block;
}
.site-header.header-fixed.showed .site-main-menu li a {
  color: #2C3539;
}
.site-header.header-fixed.showed .site-main-menu li a:hover {
  color: #F25B3D;
}

@keyframes stickySlideDown {
  from {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
#site-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 992px) {
  #site-navigation > div {
    min-width: 200px;
  }
}

@media (min-width: 992px) {
  .close-menu {
    display: none;
  }
}
.mobile-menu-header {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 20px 15px;
  border-bottom: 1px solid #eee;
}
.mobile-menu-header h3 {
  margin-bottom: 0;
}

.close-menu {
  height: 40px;
  width: 40px;
  background: rgba(136, 136, 136, 0.1);
  border-radius: 50%;
  text-align: center;
  line-height: 42px;
  color: #051441;
  font-size: 14px;
}

.site-main-menu {
  list-style: none;
}
.site-main-menu ul {
  list-style: none;
}

.mobile-header {
  display: block;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 992px) {
  .mobile-header {
    display: none;
  }
}

.mobile-menu-icon > span {
  display: block;
  width: 30px;
  height: 2px;
  background: #fff;
  margin-bottom: 5px;
}

/*--------------------------------------------------------------
### Main Nav Mobile
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .site-header {
    height: auto;
    min-height: auto;
    background-color: #fff;
    /*--------------------------------------------------------------
    ### Main Nav
    --------------------------------------------------------------*/
  }
  .site-header .mobile-menu-header {
    display: flex;
  }
  .site-header .site-logo .logo-sticky {
    display: none;
  }
  .site-header.showed .logo-sticky {
    display: block;
  }
  .site-header.showed .main-nav-container .menu-item-depth-0 > a.active {
    color: #fff;
  }
  .site-header .nav-right {
    display: none;
  }
  .site-header .main-nav-container {
    position: fixed;
    top: 0;
    height: 100vh;
    background: #fff;
    max-width: 400px;
    width: 100%;
    text-align: left;
    overflow-y: auto;
    padding-bottom: 50px;
    right: -100px;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: cubic-bezier(0.23, 1, 0.32, 1) all 0.3s;
  }
  .header-position .site-header .main-nav-container {
    top: 32px;
  }
}
@media (max-width: 991px) and (max-width: 780px) {
  .header-position .site-header .main-nav-container {
    top: 46px;
  }
}
@media (max-width: 991px) and (max-width: 420px) {
  .site-header .main-nav-container {
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  .site-header .main-nav-container.open {
    opacity: 1;
    right: 0;
    visibility: visible;
  }
  .site-header .main-nav-container li {
    position: relative;
  }
  .site-header .main-nav-container li a {
    font-size: 20px;
    color: #2C3539;
    position: relative;
    z-index: 1;
    padding: 10px 15px 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 400;
    border-bottom: 1px solid #eee;
  }
  .site-header .main-nav-container li a:hover {
    display: block;
    background-color: #f5f5f5;
  }
  .site-header .main-nav-container li.is-open > a {
    background-color: #F25B3D;
    color: #fff;
  }
  .site-header .main-nav-container li.is-open > i {
    color: #fff;
  }
  .site-header .main-nav-container li i.fa-angle-down {
    position: absolute;
    top: 0;
    height: 48px;
    width: 48px;
    right: 0;
    z-index: 2;
    text-align: center;
    line-height: 48px;
  }
  .site-header .main-nav-container li.menu-item-has-children > a {
    position: relative;
  }
  .site-header .main-nav-container li.menu-item-has-children > a.active:after {
    content: "\e622";
  }
  .site-header .main-nav-container li.menu-item-has-children li a {
    font-size: 14px;
    text-transform: capitalize;
  }
  .site-header .main-nav-container li.menu-item-has-children .sub-menu li.is-open > a {
    color: #fff;
  }
  .site-header .main-nav-container.current-menu-item.is-open > a {
    display: block;
    background-color: #f5f5f5;
  }
  .site-header .main-nav-container .menu-item-depth-0 > a.active {
    color: #fff;
    background: #F25B3D;
  }
  .site-header .main-nav-container .site-vertical-menu li a {
    padding: 12px 15px;
    margin-bottom: 0;
  }
  .header-position .site-header.showed .main-nav-container {
    top: 0;
  }
  .site-header .main-nav {
    position: static;
    z-index: 3333;
    line-height: 1.2;
  }
  .site-header .main-nav .site-main-menu {
    padding-left: 0;
  }
  .site-header .main-nav .sub-menu {
    padding-left: 15px;
    margin-left: 0;
    margin-bottom: 0;
    display: none;
  }
  .site-header .main-nav .sub-menu > li {
    padding: 0;
  }
  .site-header .main-nav .sub-menu.active .main-item > .menu-link {
    background: #f8f9fa;
  }
  .site-header .main-nav .sub-menu li a {
    border-top: 0;
  }
  .site-header .main-nav .sub-menu li.is-open a.is-open .fa-chevron-down {
    color: #F25B3D;
  }
  .site-header .main-nav .sub-menu li.current-menu-item a.active {
    color: #F25B3D;
  }
  .site-header .main-nav .nav-item.active-main-item > .menu-link {
    color: #F25B3D;
    background: #f8f9fa;
    border-color: #F25B3D;
  }
  .site-header .main-nav .sub-menu {
    padding-left: 10px;
    margin-bottom: 0;
  }
  .site-header.header_transparent.header_light .main-nav-container li a {
    color: #2C3539 !important;
  }
  .site-header.header_transparent.header_light .main-nav-container li a:hover {
    color: #F25B3D !important;
  }
  .site-header .main-nav {
    cursor: default;
    position: relative;
    z-index: 10;
    text-align: left;
    font-weight: 500;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .site-header .main-nav a:before,
  .site-header .main-nav .close-bar {
    display: none;
  }
  .site-header .main-nav .site-main-menu {
    margin-top: 20px;
  }
  .site-header .main-nav .site-main-menu,
  .site-header .main-nav .site-main-menu ul {
    list-style: none;
    margin-right: 0;
  }
  .site-header .main-nav .nav-item:before,
  .site-header .main-nav .nav-item.current-menu-item:before,
  .site-header .main-nav .nav-item.current-menu-ancestor:before {
    background-color: #F25B3D;
  }
  .site-header .main-nav .nav-item.active-main-item > .menu-link {
    color: #F25B3D;
  }
  .site-header .main-nav.hidden {
    display: none;
  }
}
@media screen and (max-width: 991px) and (max-width: 1024px) {
  .site-header .main-nav .close-menu {
    display: block;
  }
}
@media (max-width: 991px) {
  .site-header .elementor-column.elementor-col-50, .site-header .elementor-column[data-col="50"] {
    width: 100% !important;
  }
}

.mask-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 222;
}

.close-header {
  background-color: #f84258;
  color: #fff;
  justify-content: end;
  padding: 20px;
  display: none;
}
@media (max-width: 991px) {
  .close-header {
    display: flex;
  }
}
.close-header .button-close i {
  font-weight: 700;
}

@media (max-width: 991px) {
  .admin-bar .header-categories {
    margin-top: 32px;
  }
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 1em;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000; /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
  margin-bottom: 10px;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
  margin-bottom: 40px;
}
.alignright.size-full {
  margin-bottom: 60px;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}

.wp-block-image .alignright {
  float: right;
  margin: 0.5em 0 2em 1em;
}

.wp-block-media-text__media img {
  border-radius: 15px;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

/*--------------------------------------------------------------
# Layout
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Content
--------------------------------------------------------------*/
.blog-archive-wrapper {
  padding: 120px 0;
}
@media (max-width: 991px) {
  .blog-archive-wrapper {
    padding: 80px 0;
  }
}

.sidebar_left {
  flex-direction: row-reverse;
}

.page_404_wrapper .banner_404_text {
  max-width: 500px;
  margin: 0 auto 40px;
}
.page_404_wrapper .search_result_form {
  max-width: 400px;
  margin: 0 auto 30px;
}

/*--------------------------------------------------------------
## Page Header
--------------------------------------------------------------*/
.page-header {
  min-height: 400px;
  padding-top: 50px;
  height: auto;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #C4D4CB;
  z-index: 2;
}
.page-header svg {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.page-header .hero-container {
  width: 100%;
}
.page-header.blog-details-header {
  min-height: 100px;
  padding: 0;
  background-color: #C4D4CB;
}
.page-header.blog-details-header .container-fluid {
  padding-right: 0 !important;
  position: relative;
  z-index: 2;
}
.page-header.blog-details-header .page-header_title {
  color: #2C3539;
}
.page-header.blog-details-header .blog-details-category {
  margin-bottom: 10px;
}
.page-header.blog-details-header .blog-details-category a {
  color: #F25B3D;
  display: inline-block;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 3px;
}
@media (max-width: 991px) {
  .page-header {
    min-height: 360px !important;
  }
}
.page-header .page-header_wrapper {
  position: relative;
  z-index: 2;
  text-align: center;
}
.page-header .page-header_title {
  color: #2C3539;
  font-size: 50px !important;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  z-index: 2;
  line-height: 1.2;
  margin-bottom: 10px;
}
@media (max-width: 1280px) {
  .page-header .page-header_title {
    font-size: 40px !important;
  }
}
@media (max-width: 991px) {
  .page-header .page-header_title {
    font-size: 30px !important;
  }
}
@media (max-width: 767.98px) {
  .page-header .page-header_title {
    font-size: 28px !important;
  }
}
.page-header .breadcrumbs {
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
}
.page-header .breadcrumbs a {
  color: #ffffff;
}
.page-header .breadcrumbs a:hover {
  color: #ffffff;
}
.page-header .breadcrumbs .separator {
  display: inline-block;
  margin: 0 9px;
  height: 4px;
  width: 4px;
  border-radius: 20px;
  background-color: #ffffff;
}
.page-header.single-post-header-bg {
  background-color: #292a7f;
  min-height: 500px;
  background-size: cover;
  background-position: center center;
  text-align: left;
}
.page-header.single-post-header-bg .single-post-title {
  max-width: 700px;
  font-size: 40px;
  line-height: 50px;
  text-align: left;
  margin: 0 0 23px;
}
.page-header.single-post-header-bg .feature-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page-header.single-post-header-bg .feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-header.single-post-header-bg .overlay-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.page-header.single-post-header-bg .post-meta li {
  color: #fff;
}
.page-header.single-post-header-bg .post-meta li a {
  color: #fff;
}

.blog-details-header-content {
  padding: 100px 0;
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .blog-details-header-content {
    padding: 50px 0;
  }
}

/*--------------------------------------------------------------
## Middle Area
--------------------------------------------------------------*/
#header-middle-area > div {
  padding-top: 25px;
  padding-bottom: 25px;
}
@media (max-width: 991.98px) {
  #header-middle-area > div {
    padding: 10px 0;
  }
  #header-middle-area #middle-logo {
    margin-bottom: 15px;
    text-align: center;
  }
}

/*--------------------------------------------------------------
## Sideber Content
--------------------------------------------------------------*/
.sidebar_left .col-lg-4 {
  order: 1;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget:not(:last-child) {
  margin-bottom: 20px;
}
.sidebar .widget {
  padding: 30px;
  border-radius: 20px;
}
.widget.widget_tag_cloud {
  background: #C4D4CB !important;
}
.widget .widget-title {
  font-size: 24px;
  margin-bottom: 34px;
  font-weight: 600;
  position: relative;
  text-transform: uppercase;
}
.widget.pix-recent-posts .widget-title {
  margin-bottom: 25px;
}
.widget ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.widget ul li {
  position: relative;
}
.widget ul li a {
  font-size: 15px;
  color: #656575;
  font-weight: 400;
}
.widget ul li a .post_count {
  font-size: 14px;
  text-align: center;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}
.widget ul li a:hover {
  color: #F25B3D;
}

.site-footer .widget_nav_menu ul li a:hover {
  color: #F25B3D;
}

@media (max-width: 991px) {
  .sidebar {
    margin-top: 50px;
  }
}
.sidebar .widget {
  background: #2C3539;
}
.sidebar select {
  background-color: #fff;
}
.sidebar .widget-title, .sidebar h2, .sidebar h3, .sidebar h4, .sidebar h5, .sidebar h6 {
  font-family: "Be Vietnam Pro", serif;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  position: relative;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.sidebar .wp-block-latest-posts__list {
  margin-top: 7px;
}
.sidebar .widget_calendar caption {
  background-color: #f0f2f9;
}
.sidebar .wp-calendar-nav {
  background-color: #fff;
}
.sidebar .widget ul.wp-block-categories li, .sidebar .widget ul.wp-block-archives li, .sidebar .widget ul:not(.wp-block-latest-posts) li, .sidebar .widget.widget_archive ul.wp-block-categories li, .sidebar .widget.widget_archive ul.wp-block-archives li, .sidebar .widget.widget_archive ul:not(.wp-block-latest-posts) li {
  position: relative;
}
.sidebar .widget ul.wp-block-categories li a, .sidebar .widget ul.wp-block-archives li a, .sidebar .widget ul:not(.wp-block-latest-posts) li a, .sidebar .widget.widget_archive ul.wp-block-categories li a, .sidebar .widget.widget_archive ul.wp-block-archives li a, .sidebar .widget.widget_archive ul:not(.wp-block-latest-posts) li a {
  color: #C4D4CB;
  font-size: 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
  padding: 12px 0;
  border-bottom: 1px solid #C4D4CB;
  position: relative;
}
.sidebar .widget ul.wp-block-categories li a:after, .sidebar .widget ul.wp-block-archives li a:after, .sidebar .widget ul:not(.wp-block-latest-posts) li a:after, .sidebar .widget.widget_archive ul.wp-block-categories li a:after, .sidebar .widget.widget_archive ul.wp-block-archives li a:after, .sidebar .widget.widget_archive ul:not(.wp-block-latest-posts) li a:after {
  content: "\f178";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}
.sidebar .widget ul.wp-block-categories li a:hover, .sidebar .widget ul.wp-block-archives li a:hover, .sidebar .widget ul:not(.wp-block-latest-posts) li a:hover, .sidebar .widget.widget_archive ul.wp-block-categories li a:hover, .sidebar .widget.widget_archive ul.wp-block-archives li a:hover, .sidebar .widget.widget_archive ul:not(.wp-block-latest-posts) li a:hover {
  color: #F25B3D;
}

@media (max-width: 991px) {
  .sidebar-container {
    padding-left: 15px !important;
  }
}

.sidebar-widget-area .widget ul li:last-child a {
  border-bottom: 0;
}

.sidebar .widget-title {
  position: relative;
  display: inline-block;
}

.widget_recent_entries ul,
.widget_recent_comments ul,
.widget_archive ul,
.widget_categories ul,
.widget_meta ul,
.widget_product_categories ul,
.widget_rss ul,
.widget_pages ul,
.widget_nav_menu ul {
  margin: 0;
  padding: 0;
}
.widget_recent_entries li,
.widget_recent_comments li,
.widget_archive li,
.widget_categories li,
.widget_meta li,
.widget_product_categories li,
.widget_rss li,
.widget_pages li,
.widget_nav_menu li {
  transition: all 0.3s ease-in-out;
  display: block;
  margin: 0;
  list-style-type: none;
  position: relative;
}
.widget_recent_entries li:last-child,
.widget_recent_comments li:last-child,
.widget_archive li:last-child,
.widget_categories li:last-child,
.widget_meta li:last-child,
.widget_product_categories li:last-child,
.widget_rss li:last-child,
.widget_pages li:last-child,
.widget_nav_menu li:last-child {
  border-bottom: 0;
}
.widget_recent_entries li .children,
.widget_recent_comments li .children,
.widget_archive li .children,
.widget_categories li .children,
.widget_meta li .children,
.widget_product_categories li .children,
.widget_rss li .children,
.widget_pages li .children,
.widget_nav_menu li .children {
  margin-top: 5px;
  padding-left: 10px;
}
.widget_recent_entries li:last-child,
.widget_recent_comments li:last-child,
.widget_archive li:last-child,
.widget_categories li:last-child,
.widget_meta li:last-child,
.widget_product_categories li:last-child,
.widget_rss li:last-child,
.widget_pages li:last-child,
.widget_nav_menu li:last-child {
  margin-bottom: 0;
}
.widget_recent_entries a,
.widget_recent_comments a,
.widget_archive a,
.widget_categories a,
.widget_meta a,
.widget_product_categories a,
.widget_rss a,
.widget_pages a,
.widget_nav_menu a {
  display: block;
  font-size: inherit;
  font-family: inherit;
}
.widget_recent_entries a:hover,
.widget_recent_comments a:hover,
.widget_archive a:hover,
.widget_categories a:hover,
.widget_meta a:hover,
.widget_product_categories a:hover,
.widget_rss a:hover,
.widget_pages a:hover,
.widget_nav_menu a:hover {
  color: #F25B3D;
}

.widget_recent_comments ul {
  margin-top: 10px;
}

.widget_rss ul li {
  padding-left: 0 !important;
  margin-bottom: 25px;
}
.widget_rss ul li:before {
  display: none;
}
.widget_rss ul li .rsswidget {
  font-weight: 600;
  color: #051441;
  line-height: 1.4;
}
.widget_rss ul li .rssSummary {
  color: #051441;
  line-height: 1.4;
}
.widget_rss ul li .rss-date {
  margin-bottom: 5px;
  display: block;
}
.widget_rss ul li cite {
  font-weight: 500;
  margin-top: 6px;
  display: inline-block;
}
.widget_rss a {
  border-bottom: 0 !important;
  display: inline-block;
  border: 0 !important;
  padding: 0 !important;
}

.post-count {
  color: #6A6A74;
  transition: all 0.3s ease-in-out;
  margin-left: 3px;
}

.widget_archive .post-count {
  margin-left: 3px;
}

.widget_pages .sub-menu,
.widget_nav_menu .sub-menu {
  margin-top: 7px;
}
.widget_pages .sub-menu > li,
.widget_nav_menu .sub-menu > li {
  border-bottom: 0;
}
.widget_pages .sub-menu > li .sub-menu,
.widget_nav_menu .sub-menu > li .sub-menu {
  padding-left: 0;
}
.widget_pages .sub-menu > li .sub-menu > li > a,
.widget_nav_menu .sub-menu > li .sub-menu > li > a {
  padding-left: 5px;
}

.widget_pages .sub-menu > li .sub-menu > li > a,
.widget_nav_menu .sub-menu > li .sub-menu > li > a {
  padding: 0;
}

.widget_categories li,
.widget_product_categories li {
  margin: 0;
  padding: 0;
  position: relative;
}
.widget_categories a,
.widget_product_categories a {
  display: block;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}
.widget_recent_comments .recentcomments {
  padding-left: 35px;
  position: relative;
  margin-bottom: 20px;
  word-break: break-word;
  display: inline-block;
  border-top: 0 !important;
  width: 100%;
}
.widget_recent_comments .recentcomments a {
  line-height: 30px;
  border-bottom: 0 !important;
  padding-left: 0 !important;
  border: 0 !important;
  padding: 0 !important;
  display: inline-block !important;
}
.widget_recent_comments .recentcomments a:before {
  display: none;
}
.widget_recent_comments .recentcomments:before {
  position: absolute;
  top: 4px;
  left: 0;
  content: "\e645";
  font-family: "themify";
  color: #465675;
  font-size: 20px;
}
.widget_recent_comments .recentcomments:last-child {
  margin-bottom: 0;
}
.widget_recent_comments .recentcomments a {
  display: inline-block;
}

.widget_recent_entries .post-date {
  display: block;
  font-size: 14px;
}

.widget_calendar td,
.widget_calendar th {
  padding: 5px 0;
  text-align: center;
  min-width: auto;
  line-height: 1.8;
  font-size: 15px;
}

.widget_calendar td#today {
  background: #F25B3D;
  color: #fff;
  border-radius: 3px;
}
.widget_calendar td#today a {
  color: #fff;
}

@media (max-width: 991.98px) {
  .page-content .widget {
    margin: 0 0 52px;
  }
}
@media (max-width: 767.98px) {
  .page-content .widget {
    margin: 0 0 32px;
  }
  .page-sidebar {
    margin-bottom: 50px;
  }
  .page-sidebar .page-sidebar-inner .page-sidebar-content {
    padding-right: 30px;
    border: 1px solid #eee;
  }
  .page-sidebar .page-sidebar-inner .page-sidebar-content:after {
    display: none;
  }
  .single-post .page-main-content {
    padding-bottom: 20px;
  }
}
.tagcloud a {
  font-size: inherit !important;
  display: inline-block;
  line-height: 1.7;
}
.tagcloud a:hover {
  color: #F25B3D;
  border-color: #F25B3D;
}
.tagcloud .tagcloud {
  margin-top: 20px;
}

/* Recent Post */
.pix-widget-recent-posts {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.pix-widget-recent-posts .recent-posts-image_wrapper {
  width: 85px;
  margin-right: 20px;
  border-radius: 6px;
  overflow: hidden;
}
.pix-widget-recent-posts .recent-posts-image_wrapper img {
  border-radius: 6px;
}
.pix-widget-recent-posts .recent-posts-content_wrapper {
  flex: 1;
}
.pix-widget-recent-posts .post-title {
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 18px;
}
.pix-widget-recent-posts .post-title a {
  color: #2C3539;
  line-height: 1.2;
}
.pix-widget-recent-posts .post-title a:hover {
  color: #F25B3D;
}
.pix-widget-recent-posts .date {
  color: #71717c;
  font-size: 16px;
}
.pix-widget-recent-posts .date i {
  margin-right: 5px;
}
.pix-widget-recent-posts .date a {
  color: #758598;
}

.about-widget_wrapper {
  max-width: 260px;
}
.about-widget_wrapper p {
  color: #c8c9d1;
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 24px;
}
.about-widget_wrapper .footer-logo {
  margin-bottom: 28px;
}
.about-widget_wrapper .footer-logo a {
  display: block;
  max-width: 150px;
}
.about-widget_wrapper .footer-logo a img {
  height: 52px;
}

.pix-contact-widget .about_text {
  color: rgba(255, 255, 255, 0.702);
  margin-bottom: 20px;
}
.pix-contact-widget .footer-contact-info li {
  margin-bottom: 19px;
  display: flex;
  align-items: baseline;
  line-height: 26px;
}
.pix-contact-widget .footer-contact-info li i {
  margin-right: 10px;
}

.author-about-widget {
  text-align: center;
}
.author-about-widget .author-image {
  margin: 0 auto 23px;
  border: 3px solid rgba(240, 64, 55, 0.2);
  border-radius: 50%;
  max-width: 155px;
  height: 155px;
  padding: 8px;
}
.author-about-widget .author-image img {
  width: 100%;
  border-radius: 50%;
}
.author-about-widget .author_name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}
.author-about-widget .about_text {
  line-height: 1.3;
  margin-bottom: 27px;
}
.author-about-widget .author-social-link {
  margin: 0;
  padding: 0;
  list-style: none;
}
.author-about-widget .author-social-link li {
  display: inline-block;
}
.author-about-widget .author-social-link li:not(:last-child) {
  margin-right: 7px;
}
.author-about-widget .author-social-link li a {
  font-size: 15px;
  color: #fff;
  position: relative;
  height: 34px;
  width: 34px;
  line-height: 34px;
  text-align: center;
  display: block;
}
.author-about-widget .author-social-link li a i {
  display: block;
  line-height: 34px;
}
.author-about-widget .author-social-link li a i:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  background-color: #F25B3D;
}
.author-about-widget .author-social-link li a i.fa-facebook:after {
  background-color: #405fa4;
}
.author-about-widget .author-social-link li a i.fa-twitter:after {
  background-color: #16aefd;
}
.author-about-widget .author-social-link li a i.fa-pinterest-p:after {
  background-color: #e60023;
}
.author-about-widget .author-social-link li a i.fa-fa-vimeo:after {
  background-color: #0a66c2;
}
.author-about-widget .author-social-link li a i:hover:after {
  transform: scale(1.2);
}
.author-about-widget .author-social-link li a:hover {
  color: #fff;
}

/* Tags */
.tagcloud {
  color: #2b2350;
  display: inline-block;
  margin-right: 15px;
  font-size: 20px;
  font-weight: 500;
}
.tagcloud a {
  display: inline-block;
  font-size: 14px !important;
  font-weight: 400;
  background: #E6E6E6;
  color: #636363;
  padding: 9px 13px;
  border-radius: 4px;
  margin-bottom: 10px;
  margin-right: 5px;
  line-height: 1;
}
.tagcloud a:hover {
  background-color: #F25B3D;
  color: #fff;
  position: relative;
  z-index: 2;
}

.site-footer .widget-title, .site-footer h2, .site-footer h3, .site-footer h4, .site-footer h5, .site-footer h6 {
  font-family: "Be Vietnam Pro", serif;
  font-size: 26px;
  font-weight: 700;
  color: #2C3539;
  margin-bottom: 32px;
}
.site-footer .cam-about-widget {
  max-width: 345px;
}
.site-footer .cam-footer-social-widget {
  display: flex;
  align-items: center;
  gap: 30px;
}
.site-footer .cam-footer-social-widget .widget-title {
  margin-bottom: 0 !important;
  font-size: 20px;
  font-weight: 300;
}
.site-footer .cam-social-icons {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer .cam-social-icons li {
  margin-bottom: 0 !important;
}
.site-footer .cam-social-icons li a {
  font-size: 16px !important;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center !important;
  justify-content: center !important;
  color: #fff !important;
  background: #000;
  border-radius: 50%;
}
.site-footer .widget {
  margin-bottom: 30px;
  border: 0;
}
.site-footer .widget.widget_media_image {
  margin-bottom: 0;
}
.site-footer .widget ul li {
  color: #2C3539;
  font-size: 15px;
}
.site-footer .widget ul li a {
  color: #2C3539;
  font-size: 18px;
  position: relative;
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  text-transform: uppercase;
}
.site-footer .widget ul li a .post-count {
  color: #fff;
}
.site-footer .widget ul li a:hover {
  color: #F25B3D;
}
.site-footer .widget ul li a:hover .post-count {
  color: #F25B3D;
}
.site-footer .widget ul li .rsswidget {
  color: #fff;
}
.site-footer .widget ul.menu li:not(:last-child) {
  margin-bottom: 28px;
}
.site-footer .widget ul.menu li .sub-menu {
  padding-left: 15px;
}
.site-footer .widget ul.menu li .sub-menu li:not(:last-child) {
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .site-footer .widget {
    margin-bottom: 60px;
  }
}
@media (max-width: 992px) {
  .site-footer .footer-wrapper {
    padding: 80px 0 0 !important;
  }
}
.site-footer .pix-newsletter-widget .newsletter-inner input {
  border: 0;
  border-radius: 4px;
  height: 46px;
  padding: 10px 15px;
  margin-bottom: 8px;
}
.site-footer .pix-newsletter-widget .newsletter-inner input::placeholder {
  color: #adadad;
}
.site-footer .pix-newsletter-widget .newsletter-inner .newsletter-submit {
  font-family: "Be Vietnam Pro", serif;
  font-size: 18px;
  font-weight: 700;
  padding: 11px 33px 6px;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  letter-spacing: 1px;
  height: 46px;
  outline: 0;
  border: 1px solid #F25B3D;
}
.site-footer .pix-newsletter-widget .newsletter-inner .newsletter-submit .fa-spin {
  display: none;
}
.site-footer .pix-newsletter-widget .newsletter-inner .newsletter-submit.clicked .fa-spin {
  display: block;
}
.site-footer .pix-newsletter-widget .newsletter-inner .newsletter-submit.clicked span {
  display: none;
}
.site-footer .pix-newsletter-widget .form-result {
  margin: 10px 0;
}

/* Widget Block */
.wp-block-latest-comments__comment-meta {
  line-height: 1.4;
}
.wp-block-latest-comments__comment-meta a {
  font-weight: 400;
}

.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {
  padding: 0;
  position: relative;
  background: #D1D2D4;
  border-radius: 40px;
}
.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input {
  margin-bottom: 0;
  background-color: transparent;
  padding: 0 15px;
  border: 0;
}
.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input:focus {
  border-color: transparent;
}
.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button.has-icon {
  background-color: transparent;
  margin-left: 0;
}
.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button.has-icon svg {
  font-size: 20px;
  transform: rotate(-90deg);
  fill: #2C3539;
}
.wp-block-search.wp-block-search__button-inside.wp-block-search__text-button .wp-block-search__inside-wrapper {
  padding: 5px;
}
.wp-block-search.wp-block-search__button-inside.wp-block-search__text-button .wp-block-search__input {
  height: 46px;
}
.wp-block-search.wp-block-search__button-inside.wp-block-search__text-button .wp-block-search__button {
  height: 46px;
  padding: 10px 20px;
  margin-left: 0;
}
.wp-block-search.wp-block-search__button-outside.wp-block-search__icon-button .wp-block-search__button {
  padding: 0 12px;
}
.wp-block-search.wp-block-search__button-outside.wp-block-search__icon-button svg {
  fill: #fff;
  font-size: 20px;
  transform: rotate(-90deg);
}

/* Recent Post */
.widget .wp-block-latest-posts li > a {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
  display: block;
  margin-bottom: 4px;
  color: #fff;
}
.widget .wp-block-latest-posts li > a:hover {
  color: #F25B3D;
}

.wp-block-latest-posts__featured-image img {
  border-radius: 6px;
}

.wp-block-latest-posts.wp-block-latest-posts__list li:not(:last-child) {
  margin-bottom: 20px;
}

.wp-block-latest-posts__post-author, .wp-block-latest-posts__post-date {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
}

.wp-block-latest-posts__post-author {
  margin-right: 10px;
}

.wp-block-tag-cloud {
  margin-bottom: 0 !important;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.wp-block-tag-cloud a {
  display: inline-block;
  font-size: 20px !important;
  font-weight: 400;
  color: #2C3539;
  background: rgba(10, 76, 129, 0.22);
  padding: 17px 21px;
  line-height: 1;
  border-radius: 30px;
  margin-right: 0 !important;
}
.wp-block-tag-cloud a:hover {
  color: #fff;
  background-color: #F25B3D;
  border-color: #F25B3D;
}

.pix-block-social-link {
  margin: 0;
  padding: 0;
  list-style: none;
}
.pix-block-social-link li {
  display: inline-block;
}
.pix-block-social-link li:not(:last-child) {
  margin-right: 10px;
}
.pix-block-social-link li a {
  height: 40px;
  width: 40px;
  line-height: 39px;
  font-size: 14px;
  border: 1px solid #d5dde8;
  display: block;
  border-radius: 50%;
  color: #9090a3;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.pix-block-social-link li a:hover {
  background: #F25B3D;
  border-color: #F25B3D;
  box-shadow: 0 20px 30px 0 rgba(242, 91, 61, 0.34);
  color: #fff;
}

.widget ~ .wp-block-spacer {
  margin-bottom: 0 !important;
}

.widget:has(.wp-block-spacer) {
  margin-bottom: 0 !important;
}

.pix-block-contact-info li {
  display: flex;
  align-items: baseline;
  margin-bottom: 16px !important;
  position: relative;
  padding-left: 25px;
}
.pix-block-contact-info li span {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.8);
}
.pix-block-contact-info li svg {
  position: absolute;
  left: 0;
  top: 2px;
  margin-right: 10px;
  width: 15px;
}

.pix_block_contact_info_widget .pix-block-social-title {
  margin-bottom: 15px;
  font-size: 20px;
}

.site-footer .pix_block_contact_info_widget li:not(:last-child) {
  margin-right: 20px !important;
}
.site-footer .pix_block_contact_info_widget li a {
  height: auto;
  width: auto;
  border: 0;
}
.site-footer .pix_block_contact_info_widget li a:hover {
  background: transparent;
  border: 0;
  box-shadow: none;
  color: #0987F8;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.blog-list .post.sticky {
  display: block;
  border-color: #F25B3D;
}
.blog-list .post.sticky .blog-content .entry-title a {
  color: #F25B3D;
}

.updated:not(.published) {
  display: none;
}

.no-results .page-content {
  padding: 50px 0 120px;
  text-align: left;
}
@media (max-width: 991px) {
  .no-results .page-content {
    padding: 50px 0 80px;
  }
}

.page-content,
.entry-content,
.entry-summary {
  word-break: break-word;
}
.page-content:after,
.entry-content:after,
.entry-summary:after {
  content: "";
  clear: both;
  display: block;
}

.page-header .page-title {
  font-size: 40px;
  margin-top: 0;
  margin-bottom: 50px;
}

.page-content {
  padding: 120px 0;
}

.page-template-default .page-content {
  padding: 114px 0 97px;
}
.page-template-default .page-content .comments-area {
  padding: 34px 0 23px;
}
.page-template-default .page-content .page-links {
  margin-bottom: 20px;
}

.blog-post-archive {
  padding: 120px 0;
}

.search-no-results .page-content .page-content {
  padding: 20px 0 0;
}

.post-author {
  display: inline-block;
  color: #9A9A9A;
}
.post-author img {
  border-radius: 50% !important;
  margin-right: 10px;
}
.post-author:hover {
  color: #F25B3D;
}

.post-wrapper .blog-post-list,
.blog-posts .blog-post-list {
  margin-bottom: 90px;
}

.post-wrapper.blog-masonry {
  width: calc(100% + 30px);
}
.post-wrapper.blog-masonry .post-item {
  width: calc(50% - 30px);
  margin-right: 30px;
  margin-bottom: 50px;
}
.post-wrapper.blog-masonry.column-3 .post-item {
  width: calc(33.33% - 30px);
}
.post-wrapper .post-item {
  margin-bottom: 60px;
}

.post-meta {
  margin-bottom: 32px;
  padding: 5px 0 0;
  line-height: 1;
}
.post-meta li {
  display: inline-block;
  position: relative;
  font-size: 14px;
  color: #696969;
}
.post-meta li i {
  margin-right: 4px;
  font-size: 16px;
  color: #F25B3D;
  line-height: 0.9;
}
.post-meta li:not(:last-child) {
  margin-right: 20px;
}
@media (max-width: 480px) {
  .post-meta li:not(:last-child) {
    margin-bottom: 15px;
  }
}
.post-meta li .author a {
  color: #5c5c60;
  font-weight: 400;
  font-size: 15px;
}
.post-meta li .author a:hover {
  color: #F25B3D;
}
.post-meta li a {
  margin: 0;
  color: #8D8D95;
  line-height: normal;
  font-size: 14px;
  font-weight: 500;
}
.post-meta li a:hover {
  color: #F25B3D;
}

.post-categories {
  margin: 0;
  padding: 0;
  list-style: none;
}
.post-categories li {
  display: inline-block;
  position: relative;
}
.post-categories li:not(:last-child) a:after {
  content: "/";
  position: absolute;
  right: -15px;
  top: 0;
}

.entry-meta a,
.post-categories a {
  color: #F25B3D;
  font-size: 12px;
  display: inline-block;
  text-transform: uppercase;
  margin-right: 20px;
  position: relative;
  line-height: 1.2;
  font-weight: 400;
}
.entry-meta a:not(:last-child):after,
.post-categories a:not(:last-child):after {
  content: "/";
  position: absolute;
  right: -15px;
  top: 0;
}

ul.category-filter-lists {
  margin: 0 0 60px 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  column-gap: 10px;
  row-gap: 10px;
  flex-wrap: wrap;
}
ul.category-filter-lists li a {
  position: relative;
  font-size: 16px;
  padding: 6px 15px;
  border: 1px solid #c1c1c1;
  border-radius: 30px;
  text-transform: capitalize;
}
ul.category-filter-lists li a.active {
  color: #fff;
  background: #F25B3D;
  border-color: #F25B3D;
}
ul.category-filter-lists li a.active:after {
  width: 100%;
}

#tag-filter ul li a {
  font-size: 18px;
  color: #2C3539;
  position: relative;
  display: inline-block;
}
#tag-filter ul li a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  background: #F25B3D;
  height: 2px;
  transition: all 0.3s ease-in-out;
}
#tag-filter ul li a.active {
  color: #F25B3D;
}
#tag-filter ul li a.active:after {
  width: 100%;
}

#main-content {
  position: relative;
}
#main-content .loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
}

.search-filter-wrapper {
  position: relative;
}
.search-filter-wrapper #search-filter {
  border: 0;
  background: #fff;
  margin-bottom: 0;
}
.search-filter-wrapper #search-filter:focus {
  box-shadow: none;
}
.search-filter-wrapper i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
}

.blog-page-header {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
}
.blog-page-header p {
  font-size: 20px;
  line-height: 30px;
  margin-top: 34px;
}

.blog-posts-grid {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  border: 1px solid #D3D3D3;
}
.blog-posts-grid .post-title {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}
.blog-posts-grid .post-content {
  padding: 30px;
}
.blog-posts-grid .post-content p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #9A9A9A;
}
.blog-posts-grid .post-content a.read-more-btn {
  font-size: 18px;
  color: #F25B3D;
  font-weight: 600;
  text-transform: uppercase;
}
.blog-posts-grid .post-content a.read-more-btn i {
  font-size: 20px;
}

.post-meta-date {
  display: flex;
  align-items: center;
  gap: 7px;
}

.blog-details-header-content .page-header_title {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000 !important;
  margin-bottom: 15px;
}
.blog-details-header-content .post-meta {
  position: relative;
  z-index: 2;
}
.blog-details-header-content .post-meta i {
  color: #F25B3D;
}
.blog-details-header-content .post-meta a {
  color: #3C525B;
}

/** Blog List */
.blog-post-list {
  overflow: hidden;
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 5px;
}
.blog-post-list .blog-content-wrapper {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .blog-post-list .blog-content-wrapper {
    flex-direction: column;
  }
}
.blog-post-list.sticky {
  box-shadow: none;
}
.blog-post-list.sticky .entry-title a {
  color: #F25B3D;
}
.blog-post-list .post-thumbnail-wrapper {
  position: relative;
}
.blog-post-list .post-thumbnail {
  position: relative;
  display: block;
  overflow: hidden;
}
.blog-post-list .post-thumbnail img {
  width: 100%;
}
.blog-post-list .entry-header {
  padding: 50px 50px 0;
}
.blog-post-list .entry-header .entry-title {
  font-size: 24px;
  font-weight: 700;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}
.blog-post-list .entry-title {
  font-size: 30px;
  line-height: 1.3;
  font-weight: 700;
  word-wrap: break-word;
  word-break: break-all;
  margin-bottom: 15px;
}
.blog-post-list .entry-title a {
  color: #2C3539;
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}
.blog-post-list .entry-title a:hover {
  color: #F25B3D;
}
.blog-post-list .post-thumbnail-wrapper {
  max-width: 360px;
  width: 100%;
}
.blog-post-list .blog-content {
  flex: 2;
  padding: 30px;
}
.blog-post-list .blog-content p {
  margin-bottom: 0;
  color: #52525C;
  font-size: 20px;
}
.blog-post-list .post-tags {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-post-list .post-tags i {
  font-size: 16px;
}
.blog-post-list .blog-tag-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.blog-post-list .blog-tag-list li {
  display: inline-block;
  margin-right: 5px;
}
.blog-post-list .blog-tag-list li a {
  font-size: 16px;
}
.blog-post-list .read-more-btn {
  padding: 16px 30px;
  font-size: 16px;
}
.blog-post-list.sticky .post-thumbnail {
  margin-bottom: 0;
}
.blog-post-list.sticky .entry-header .entry-title a {
  color: #F25B3D;
}
.blog-post-list.sticky .entry-header .entry-title a:hover {
  color: #F25B3D;
}
.blog-post-list .blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.blog-post-list .blog-footer .pix-btn {
  padding: 6px 27px;
}
.blog-post-list .blog-footer .pix-btn i {
  margin-left: 7px;
  font-size: 13px;
  line-height: 1;
  margin-top: 1px;
}
.blog-post-list .post-meta-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.post-meta {
  color: #696969;
  font-size: 16px;
  line-height: 1;
  padding: 0;
  list-style: none;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 991px) {
  .post-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}
.post-meta .post-meta-author {
  display: flex;
  align-items: center;
  gap: 9px;
  text-transform: capitalize;
}
.post-meta li {
  font-size: 14px;
  font-weight: 500;
  color: #8D8D95;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.post-meta li svg {
  margin-right: 3px;
}
.post-meta li .post_view_count, .post-meta li .posted-on {
  display: inline-block;
  margin-bottom: 0;
  font-size: 14px;
  vertical-align: middle;
  font-weight: 500;
  color: #8D8D95;
}
.post-meta li .author {
  margin-left: 0;
}
.post-meta i {
  display: inline-block;
  line-height: 1;
  color: #9A9A9A;
}
.post-meta a {
  color: #9A9A9A;
  display: inline-block;
  vertical-align: middle;
}
.post-meta a:hover {
  color: #F25B3D;
}
.post-meta .meta-category-wrapper a {
  font-size: 14px;
  display: inline-block;
  color: #71717c;
  position: relative;
  border: 0;
}
.post-meta .meta-category-wrapper a:not(:last-child) {
  margin-right: 7px;
}
.post-meta .meta-category-wrapper a:hover {
  color: #F25B3D;
}

ul.category-list {
  margin: 0 0 40px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 10px;
}
ul.category-list li a {
  display: inline-block;
  padding: 14px 24px;
  background: #D1D2D4;
  border-radius: 30px;
}
ul.category-list li a.active {
  background: #F25B3D;
  color: #fff;
}

.blog-posts-grid .post-item {
  justify-content: space-between;
}
.blog-posts-grid .post-thumbnail-wrapper img {
  width: 100%;
}

.post-meta-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.post-meta-list li {
  display: inline-block;
  margin-right: 20px;
  font-size: 16px;
  color: #696969;
  font-weight: 400;
}
.post-meta-list li i {
  margin-right: 10px;
  color: #5c6f96;
  font-size: 14px;
}
.post-meta-list li a {
  color: #696969;
  font-weight: 400;
  font-size: 16px;
}
.post-meta-list li a:hover {
  color: #F25B3D;
}

.single-post .container.no-sidebar {
  max-width: 970px !important;
}

.blog-single-wrapper {
  position: relative;
}
.blog-single-wrapper h2 {
  font-size: 32px;
  color: #F25B3D;
  font-weight: 700;
}

.share_social-wpapper {
  display: flex;
  padding: 0;
  align-items: center;
}
.share_social-wpapper .share-text {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #2C3539;
  font-weight: 600;
}

.social-share-link {
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  left: 0;
  top: 0;
}
.social-share-link li {
  display: block;
}
.social-share-link li:not(:last-child) {
  margin-bottom: 7px;
}
.social-share-link li a {
  font-size: 15px;
  color: #fff;
  position: relative;
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  display: block;
  border: 1px solid #E4E4E4;
  border-radius: 50%;
  color: #2C3539;
}
.social-share-link li a:hover {
  color: #fff;
  background-color: #F25B3D;
  border-color: #F25B3D;
}

.pix-btn-link {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: #2C3539;
}
.pix-btn-link i {
  font-size: 80%;
  margin-left: 7px;
}

.tag_list {
  margin-top: 30px;
}
.tag_list .tags {
  color: #051441;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 10px;
  font-weight: 600;
}

.single-post-navigation {
  margin-top: 70px;
  border-top: 1px solid #D3D3D3;
  border-bottom: 1px solid #D3D3D3;
  padding: 25px 0;
}

.single-post-nav {
  max-width: 90%;
  display: flex;
  align-items: center;
}
@media (max-width: 576px) {
  .single-post-nav {
    width: 100%;
  }
}
.single-post-nav i {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 16px;
  color: #2C3539;
  margin-right: 15px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s ease-in-out;
  border: 2px solid #D3D3D3;
}
.single-post-nav .post-nav-thumbnail {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
  margin-right: 20px;
}
.single-post-nav .post-nav-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-post-nav .post-nav-wrapper {
  flex: 2;
}
.single-post-nav .post-nav-title {
  font-size: 14px;
  font-weight: 400;
  color: #999999;
  margin-bottom: 5px;
  line-height: 1;
}
.single-post-nav .post-title {
  font-family: "Be Vietnam Pro", serif;
  font-size: 18px;
  transition: all 0.3s ease-in-out;
  margin: 0;
  font-weight: 400;
  line-height: 1.4;
}
.single-post-nav:hover i {
  background-color: #F25B3D;
  color: #fff;
  border-color: #F25B3D;
}
.single-post-nav:hover .post-title {
  color: #F25B3D;
}

@media (max-width: 767px) {
  .post-next {
    margin-top: 30px;
  }
}
.post-next .single-post-nav {
  margin-left: auto;
}
.post-next .single-post-nav i {
  margin: 0 0 0 15px;
}
.post-next .post-nav-thumbnail {
  margin: 0 0 0 20px;
}
.post-next .post-nav-wrapper {
  text-align: right;
}

blockquote, .wp-block-quote {
  padding: 55px 0 50px 80px;
  border-left: 0;
  background: transparent;
  border-top: 1px solid #D3D3D3;
  border-bottom: 1px solid #D3D3D3;
  overflow: hidden;
  position: relative;
}
blockquote:before, .wp-block-quote:before {
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 55px;
  left: 0;
  margin-bottom: 10px;
  height: 60px;
  width: 60px;
  line-height: 60px;
  background-color: #F25B3D;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 24px;
}
blockquote p, .wp-block-quote p {
  font-family: "Be Vietnam Pro", serif;
  font-size: 30px !important;
  line-height: 1.4;
  color: #141416;
  font-style: normal;
  margin-bottom: 4px;
  font-weight: 600;
  position: relative;
}
blockquote p cite, .wp-block-quote p cite {
  margin-left: 0;
}
@media (max-width: 767px) {
  blockquote p, .wp-block-quote p {
    font-size: 24px !important;
  }
}
blockquote cite, .wp-block-quote cite {
  font-family: "Be Vietnam Pro", serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  color: #2C3539;
  padding-top: 23px;
  display: inline-block;
  position: relative;
}

.blog-single-content-area {
  padding: 120px 0;
}
@media (max-width: 991px) {
  .blog-single-content-area {
    padding: 80px 0;
  }
}

.no-sidebar.single-post #comments {
  margin: 93px auto 0;
}

.post-single {
  margin-bottom: 0;
}
.post-single .feature-image {
  margin-bottom: 45px;
}
.post-single .entry-header {
  padding-bottom: 25px;
}
.post-single .entry-title {
  font-size: 36px;
  margin: 10px 0 25px;
}
.post-single .wp-block-image {
  margin-top: 30px;
}
.post-single .blocks-gallery-grid li img {
  border-radius: 10px;
}
.post-single blockquote p {
  margin: 0;
}
.post-single .wp-block-image {
  text-align: center;
}
.post-single .wp-block-image {
  margin-bottom: 39px;
}
.post-single .edit-link {
  margin-left: 15px;
}
.post-single .single-post-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 32px;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  line-height: 1.3;
}
.post-single .post-meta-cat {
  margin-bottom: 20px;
}
.post-single .post-meta-cat a {
  height: 30px;
  line-height: 30px;
  padding: 0 30px;
  font-size: 18px;
  text-transform: capitalize;
  color: #fff;
  border-radius: 5px;
  background-color: #37a45d;
  min-width: auto;
  font-weight: 400;
  margin: 0 5px;
  border: 0 solid transparent;
  display: inline-block;
}
.post-single .post-meta-cat a:first-child {
  background-color: #e9683e;
}
.post-single .meta-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.post-single .feature-image {
  text-align: center;
}
.post-single .feature-image img {
  border-radius: 20px;
}
.post-single .entry-footer {
  margin-top: 50px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #D3D3D3;
  border-bottom: 1px solid #D3D3D3;
  align-items: center;
  padding: 30px 0;
}
.post-single .entry-footer .tag_list {
  padding-bottom: 10px;
  border-bottom: 1px solid #e8ebf4;
}
.post-single .tag-title {
  display: inline-block;
  margin-right: 10px;
}
.post-single .single-tagcloud a {
  color: #777;
  font-size: 16px;
  font-weight: 400;
}
.post-single .single-tagcloud a:hover {
  color: #F25B3D;
}

.single-post-header-bg {
  min-height: 550px;
}
@media (max-width: 767px) {
  .single-post-header-bg {
    min-height: 350px;
  }
}
.single-post-header-bg .single-post-header {
  position: relative;
  z-index: 2;
}
.single-post-header-bg .pix-blog-meta-category {
  font-size: 12px;
  font-weight: 500;
  background: #32ba13;
  color: #fff;
  border-radius: 3px;
  text-transform: uppercase;
  padding: 6px 9px;
  line-height: 1.1;
  display: inline-block;
  margin-bottom: 10px;
  border: 2px solid transparent;
}
.single-post-header-bg .pix-blog-meta-category:not(:last-child) {
  margin-right: 10px;
}
.single-post-header-bg .pix-blog-meta-category:hover {
  color: #fff;
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.5);
}
.single-post-header-bg .single-post-title {
  font-size: 45px;
  line-height: 1.2;
  max-width: 700px;
  margin: 20px auto 13px;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  color: #fff;
}
@media (max-width: 767px) {
  .single-post-header-bg .single-post-title {
    font-size: 30px;
  }
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
  padding-top: 20px;
}
.page-links a,
.page-links .current {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background: #f8f6f2;
  color: #2C3539;
  display: inline-block;
  text-align: center;
  line-height: 31px;
  font-size: 16px;
  margin-left: 5px;
}
.page-links a:hover,
.page-links .current:hover {
  background: #F25B3D;
  color: #fff;
}
.page-links .current {
  background: #F25B3D;
  color: #fff;
}

.post-navigation {
  margin-bottom: 50px;
}
.post-navigation .nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  position: relative;
  width: 102%;
}
.post-navigation .nav-links .nav-previous,
.post-navigation .nav-links .nav-next {
  width: 48%;
  height: 50px;
  line-height: 50px;
  padding: 0 15px;
  background: #333;
  margin-right: 2%;
  flex: 1;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.post-navigation .nav-links .nav-previous a,
.post-navigation .nav-links .nav-next a {
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  display: block;
  outline: 0;
}
.post-navigation .nav-links .nav-previous a:hover,
.post-navigation .nav-links .nav-next a:hover {
  color: #fff;
}
.post-navigation .nav-links .nav-previous:hover,
.post-navigation .nav-links .nav-next:hover {
  background: #F25B3D;
}
.post-navigation .nav-links .nav-previous {
  padding-right: 30px;
}
.post-navigation .nav-links .nav-next {
  padding-left: 30px;
}

@media (max-width: 991px) {
  .blog-container {
    padding: 80px 0;
  }
}
@media (max-width: 768px) {
  .blog-container {
    padding: 50px 0;
  }
}
.search-header {
  margin-bottom: 30px;
}

.search_page_404_wrapper {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}
.search_page_404_wrapper .page-title {
  margin-bottom: 14px;
}
.search_page_404_wrapper .banner_404_text {
  margin-bottom: 30px;
}

.search_result_form .search-form {
  display: flex;
  border: 0;
  margin-bottom: 20px;
  background-color: #eff1f5;
  border-radius: 6px;
  height: 60px;
}
.search_result_form .search-form input {
  border: none;
  border-radius: 0;
  padding: 20px;
  margin: 0;
  background: transparent;
}
.search_result_form .search-form input::placeholder {
  color: #878793;
}
.search_result_form .search-form .search-submit {
  border: 0;
  background: transparent;
  padding: 10px 20px;
  color: #F25B3D;
  font-size: 22px;
}

.no-results .page-content {
  padding: 0 0 120px;
}
@media (max-width: 991px) {
  .no-results .page-content {
    padding: 0 0 80px;
  }
}

.pagination-wrapper ~ .sidebar {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
## Pagination
--------------------------------------------------------------*/
.pagination-wrapper {
  margin-top: 30px;
}

.blog-archive-wrapper #post-pagination {
  margin-top: 80px;
  text-align: center;
}
#post-pagination .page-numbers {
  margin: 0;
  padding: 0;
  list-style: none;
}
#post-pagination .page-numbers li {
  display: inline-block;
}
#post-pagination .page-numbers li a,
#post-pagination .page-numbers li span {
  display: inline-block;
  height: 45px;
  width: 45px;
  line-height: 42px;
  border: 1px solid #d1d1d1;
  text-align: center;
  color: #3d3f41;
  border-radius: 4px;
  margin-right: 10px;
  font-size: 18px;
}
#post-pagination .page-numbers li a:hover,
#post-pagination .page-numbers li a .current,
#post-pagination .page-numbers li span:hover,
#post-pagination .page-numbers li span .current {
  background: #F25B3D;
  border-color: #F25B3D;
  color: #fff;
}
#post-pagination .page-numbers li a:hover a,
#post-pagination .page-numbers li a .current a,
#post-pagination .page-numbers li span:hover a,
#post-pagination .page-numbers li span .current a {
  color: #fff;
}
#post-pagination .page-numbers li a.current,
#post-pagination .page-numbers li span.current {
  background: #F25B3D;
  color: #fff;
  border-color: #F25B3D;
}
#post-pagination .page-numbers li i {
  font-size: 20px;
}
#post-pagination .page-numbers li.next, #post-pagination .page-numbers li.prev {
  line-height: 55px;
}

.woocommerce nav.woocommerce-pagination {
  margin-top: 30px;
}
.woocommerce nav.woocommerce-pagination .page-numbers {
  margin: 0;
  padding: 0;
  list-style: none;
  border: 0;
  text-align: center;
}
.woocommerce nav.woocommerce-pagination .page-numbers li {
  display: inline-block;
  height: 40px;
  width: 40px;
  line-height: 40px;
  font-size: 16px;
  margin-right: 10px !important;
  text-align: center;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  border: 1px solid #e7e7f6;
  border-radius: 50%;
}
.woocommerce nav.woocommerce-pagination .page-numbers li a,
.woocommerce nav.woocommerce-pagination .page-numbers li span {
  display: block;
  line-height: 39px;
  font-size: 16px;
}
.woocommerce nav.woocommerce-pagination .page-numbers li a i,
.woocommerce nav.woocommerce-pagination .page-numbers li span i {
  font-size: 18px;
}
.woocommerce nav.woocommerce-pagination .page-numbers li a.current, .woocommerce nav.woocommerce-pagination .page-numbers li a:hover,
.woocommerce nav.woocommerce-pagination .page-numbers li span.current,
.woocommerce nav.woocommerce-pagination .page-numbers li span:hover {
  background: #F25B3D;
  border-color: #F25B3D;
}
.woocommerce nav.woocommerce-pagination .page-numbers li i {
  font-size: 14px;
}
.woocommerce nav.woocommerce-pagination .page-numbers li svg {
  height: 20px;
  width: 20px;
  transition: all 0.3s ease-in-out;
}
.woocommerce nav.woocommerce-pagination .page-numbers li.next, .woocommerce nav.woocommerce-pagination .page-numbers li.prev {
  line-height: 45px;
}
.woocommerce nav.woocommerce-pagination .page-numbers li a.prev, .woocommerce nav.woocommerce-pagination .page-numbers li a.next {
  line-height: 42px;
}
.woocommerce nav.woocommerce-pagination .page-numbers li a.prev:hover svg path, .woocommerce nav.woocommerce-pagination .page-numbers li a.next:hover svg path {
  fill: #fff !important;
}
.woocommerce nav.woocommerce-pagination .page-numbers li:hover,
.woocommerce nav.woocommerce-pagination .page-numbers li .current {
  background: #F25B3D;
  color: #fff;
}
.woocommerce nav.woocommerce-pagination .page-numbers li:hover a,
.woocommerce nav.woocommerce-pagination .page-numbers li .current a {
  color: #fff;
}
.woocommerce nav.woocommerce-pagination .page-numbers li.current {
  background: #F25B3D;
  color: #fff;
}
.woocommerce .pprefix-post-navigation {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
  align-items: center;
  padding: 20px;
  border: 1px solid #eee;
}
.woocommerce .pprefix-post-navigation .prev-link_wrapper, .woocommerce .pprefix-post-navigation .next-link_wrapper {
  width: 50%;
}
.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper, .woocommerce .pprefix-post-navigation .prev-link_wrapper .info_next-link_wrapper, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_prev-link_wrapper, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper a, .woocommerce .pprefix-post-navigation .prev-link_wrapper .info_next-link_wrapper a, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_prev-link_wrapper a, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper a .next_title, .woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper a .prev_title, .woocommerce .pprefix-post-navigation .prev-link_wrapper .info_next-link_wrapper a .next_title, .woocommerce .pprefix-post-navigation .prev-link_wrapper .info_next-link_wrapper a .prev_title, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_prev-link_wrapper a .next_title, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_prev-link_wrapper a .prev_title, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper a .next_title, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper a .prev_title {
  font-size: 16px;
  font-weight: 600;
}
.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper a .date_post, .woocommerce .pprefix-post-navigation .prev-link_wrapper .info_next-link_wrapper a .date_post, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_prev-link_wrapper a .date_post, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper a .date_post {
  font-size: 14px;
  font-weight: 500;
}
.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper .meta-wrapper, .woocommerce .pprefix-post-navigation .prev-link_wrapper .info_next-link_wrapper .meta-wrapper, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_prev-link_wrapper .meta-wrapper, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper .meta-wrapper {
  display: block;
}
.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper .image_exist, .woocommerce .pprefix-post-navigation .prev-link_wrapper .info_next-link_wrapper .image_exist, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_prev-link_wrapper .image_exist, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper .image_exist {
  display: block;
  width: 100px;
  position: relative;
  overflow: hidden;
}
.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper .image_exist i, .woocommerce .pprefix-post-navigation .prev-link_wrapper .info_next-link_wrapper .image_exist i, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_prev-link_wrapper .image_exist i, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper .image_exist i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper .image_exist:before, .woocommerce .pprefix-post-navigation .prev-link_wrapper .info_next-link_wrapper .image_exist:before, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_prev-link_wrapper .image_exist:before, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper .image_exist:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(242, 91, 61, 0.8);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper .image_exist:hover:before, .woocommerce .pprefix-post-navigation .prev-link_wrapper .info_next-link_wrapper .image_exist:hover:before, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_prev-link_wrapper .image_exist:hover:before, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper .image_exist:hover:before {
  opacity: 1;
}
.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper .image_exist:hover i, .woocommerce .pprefix-post-navigation .prev-link_wrapper .info_next-link_wrapper .image_exist:hover i, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_prev-link_wrapper .image_exist:hover i, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper .image_exist:hover i {
  opacity: 1;
  visibility: visible;
}
.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper .prev-link-info_wrapper, .woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper .next-link-info_wrapper, .woocommerce .pprefix-post-navigation .prev-link_wrapper .info_next-link_wrapper .prev-link-info_wrapper, .woocommerce .pprefix-post-navigation .prev-link_wrapper .info_next-link_wrapper .next-link-info_wrapper, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_prev-link_wrapper .prev-link-info_wrapper, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_prev-link_wrapper .next-link-info_wrapper, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper .prev-link-info_wrapper, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper .next-link-info_wrapper {
  flex: 2;
}
.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper .image_prev {
  margin-right: 20px;
}
.woocommerce .pprefix-post-navigation .next-link_wrapper {
  width: 50%;
}
.woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper {
  justify-content: flex-end;
  text-align: right;
}
.woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper .image_next {
  margin-left: 20px;
}
.woocommerce .gp-slider-nav-wrapper {
  position: absolute;
  width: 100%;
  height: 50px;
  z-index: 22;
  top: 50%;
  transform: translateY(-50%);
}
.woocommerce .gp-slider-nav-wrapper .gp-slider-prev,
.woocommerce .gp-slider-nav-wrapper .gp-slider-next {
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  background: #fff;
  color: #F25B3D;
  cursor: pointer;
  outline: 0;
  border-radius: 50%;
}
.woocommerce .gp-slider-nav-wrapper .gp-slider-next {
  position: absolute;
  right: 0;
}
.woocommerce .format-gallery .gp-slider-nav-wrapper {
  position: absolute;
  width: 100%;
  height: 50px;
  z-index: 22;
  top: 50%;
  transform: translateY(-50%);
}
.woocommerce .format-gallery .gp-slider-nav-wrapper .gp-slider-prev,
.woocommerce .format-gallery .gp-slider-nav-wrapper .gp-slider-next {
  height: 80px;
  width: 80px;
  line-height: 80px;
  text-align: left;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.woocommerce .format-gallery .gp-slider-nav-wrapper .gp-slider-prev {
  left: -80px;
  text-align: right;
}
.woocommerce .format-gallery .gp-slider-nav-wrapper .gp-slider-prev i {
  margin-right: 20px;
}
.woocommerce .format-gallery .gp-slider-nav-wrapper .gp-slider-next {
  right: -80px;
  text-align: left;
}
.woocommerce .format-gallery .gp-slider-nav-wrapper .gp-slider-next i {
  margin-left: 20px;
}
.woocommerce .format-gallery:hover .gp-slider-prev,
.woocommerce .format-gallery:hover .gp-slider-next {
  opacity: 1;
  visibility: visible;
}
.woocommerce .format-gallery:hover .gp-slider-prev {
  left: -40px;
  text-align: right;
}
.woocommerce .format-gallery:hover .gp-slider-next {
  right: -40px;
}

/*--------------------------------------------------------------
## Search Form
--------------------------------------------------------------*/
.widget_search .search-form {
  border-radius: 6px;
  position: relative;
  background-color: #eff1f5;
  display: flex;
  overflow: hidden;
}
.widget_search .search-form label {
  margin: 0;
  width: 100%;
}
.widget_search .search-form input {
  padding: 11px 20px;
  border-radius: 0;
  border: 0;
  width: 100%;
  color: #696969;
  height: 54px;
  margin: 0;
  background: transparent;
}
.widget_search .search-form input::placeholder {
  color: #878793;
}
.widget_search .search-form input:focus {
  border-color: #F25B3D;
}
.widget_search .search-form .search-submit {
  background-color: #F25B3D;
  border: 0;
  padding: 12px 18px 10px 20px;
  color: #fff;
  font-size: 22px;
  border-radius: 0;
}
.widget_search .search-form .search-submit:focus {
  outline: 0;
}
.widget_search .search-form .search-submit:hover {
  background-color: #D29B4C;
}

#search-menu-wrapper {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  background: #fff;
}
#search-menu-wrapper .close-search {
  height: 60px;
  width: 60px;
  line-height: 65px;
  border-radius: 50%;
  background-color: #F25B3D;
  color: #fff;
  z-index: 9999999;
  opacity: 5;
  position: absolute;
  right: 15px;
  top: 40px;
  font-size: 26px;
  cursor: pointer;
  text-align: center;
}
@media (max-width: 576px) {
  #search-menu-wrapper .close-search {
    height: 50px;
    width: 50px;
    line-height: 50px;
  }
}
#search-menu-wrapper .overlay-bg {
  transition: -webkit-filter 0.2s;
  transition: filter 0.2s;
  -webkit-filter: blur(4px);
  filter: blur(4px);
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#search-menu-wrapper.toggled {
  opacity: 1;
  visibility: visible;
}
#search-menu-wrapper .wrapper {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
#search-menu-wrapper .search-form {
  width: 100%;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #b9b8b8;
}
#search-menu-wrapper .search-form input {
  font-family: "Be Vietnam Pro", serif;
  border-radius: 0;
  border: 0;
  background: transparent;
  height: 100px;
  padding: 0;
  color: #000;
  font-size: 60px;
  font-weight: 600;
  margin: 0;
  line-height: 2.5;
}
@media (max-width: 991px) {
  #search-menu-wrapper .search-form input {
    height: 60px;
    font-size: 40px;
  }
}
#search-menu-wrapper .search-form input::placeholder {
  color: #b1b1b1;
}
#search-menu-wrapper .search-form button {
  background-color: #fff;
  color: #b1b1b1;
  border: 0;
  padding: 0;
  height: 80px;
  transition: all 0.3s ease-in-out;
  font-size: 40px;
}
@media (max-width: 991px) {
  #search-menu-wrapper .search-form button {
    font-size: 32px;
  }
}
#search-menu-wrapper .search-form button:hover {
  color: #F25B3D;
}

.sea-wrapper .search-form {
  display: flex;
  align-items: center;
}
.sea-wrapper .search-form label {
  margin: 0;
  width: 100%;
}
.sea-wrapper .search-form input {
  margin: 0;
}
.sea-wrapper .search-form .search-submit {
  background: #F25B3D;
  color: #fff;
  border: 0;
  height: 54px;
  border-radius: 4px;
  margin-left: 20px;
}
.sea-wrapper .search-form .search-submit:hover {
  background: #004ce5;
  color: #fff;
}

/*--------------------------------------------------------------
## Author Box
--------------------------------------------------------------*/
.author-info_wrapper {
  display: flex;
  padding: 37px 0;
  border-top: 1px solid #D3D3D3;
  border-bottom: 1px solid #D3D3D3;
  align-items: center;
}
.author-info_wrapper .author {
  color: #F25B3D;
  margin-bottom: 3px;
}
@media (max-width: 480px) {
  .author-info_wrapper {
    padding: 20px 15px;
  }
}

.author-info_avatar {
  margin-right: 30px;
}
@media (max-width: 480px) {
  .author-info_avatar {
    width: 80px;
  }
}

.author-info_avatar img {
  border-radius: 50%;
}

.author-info_content {
  flex: 2;
}

.author-info_name {
  color: #2C3539;
  font-size: 20px;
  line-height: 26px;
  font-weight: 500;
  margin-bottom: 6px;
}

.author-info {
  padding-right: 65px;
}

.author-info_name span {
  margin-right: 7px;
  font-size: 14px;
  display: block;
}

.author-info_description {
  border-left: 1px solid #D3D3D3;
  padding-left: 45px;
}
.author-info_description p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 0;
}

.author-info_social-wrapper {
  line-height: 1;
  margin-top: 20px;
}

.author-info_wrapper .title_soc_share {
  font-size: 14px;
  font-weight: bold;
  margin-right: 20px;
}

.author-info_social-link {
  display: inline-block;
  margin-right: 13px;
  color: #CFCFCF;
  font-size: 15px;
}

.author-info_social-wrapper a {
  color: #6d6d6d;
}
.author-info_social-wrapper a:hover {
  color: #F25B3D;
}

.author-info_title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 14px;
  margin-top: 50px;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comments-section {
  padding: 80px 0;
}

.comment-wrapper {
  margin-top: 60px;
}

.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

#comments {
  margin-top: 93px;
}
#comments .comments-title {
  font-size: 24px;
  margin-bottom: 26px;
  font-weight: 600;
}

.comments-area .comment-inner {
  margin-bottom: 50px;
}
.comments-area .reply-title {
  font-size: 24px;
  font-weight: 600;
  color: #2C3539;
  margin-bottom: 30px;
}
.comments-area .no-comments {
  margin: 0;
  line-height: 11px;
}

.page .comment-list-wrapper {
  margin-top: 40px;
}
.page .comment-respond .comment-reply-title,
.page .comment-respond .comment-notes, .page .comment-respond .logged-in-as {
  text-align: left;
}
.page .comment-list {
  margin-bottom: 0;
}
.page .comment-respond {
  margin-top: 60px;
}
.page .comment-list .comment .comment-body .comment_info .meta-wrapper {
  color: #bbb;
}

.comments-section .comment-list-wrapper {
  padding-top: 0;
  border: 0;
}

.comment-list {
  list-style: none;
  overflow: auto;
  margin-bottom: 0;
  padding-left: 0;
}
.comment-list > li {
  border: 1px solid #d5d7e1;
  padding: 30px;
  border-radius: 10px;
}
.comment-list .comment .comment-body {
  overflow: auto;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.comment-list .comment .comment-body:not(:last-child) {
  margin-bottom: 20px;
}
.comment-list .comment .comment-body .comment-avatar {
  margin-right: 25px;
  border-radius: 50%;
  height: 60px;
  width: 60px;
}
.comment-list .comment .comment-body .comment-avatar img {
  border-radius: 50%;
}
.comment-list .comment .comment-body .comment_content {
  margin-top: 7px;
  color: #777777;
  font-size: 16px;
  line-height: 28px;
}
.comment-list .comment .comment-body .comment_info {
  position: relative;
  overflow: auto;
  flex: 2;
}
.comment-list .comment .comment-body .comment_info .comment_author_says {
  font-family: "Be Vietnam Pro", serif;
  color: #2C3539;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}
.comment-list .comment .comment-body .comment_info .meta-wrapper {
  font-family: "Be Vietnam Pro", serif;
  font-size: 14px;
  color: #777777;
  display: block;
  font-weight: 400;
  margin-bottom: 15px;
}
.comment-list .comment .comment-body .comment_info .comment-reply-wrapper {
  position: absolute;
  right: 0;
  top: 0;
}
.comment-list .comment .comment-body .comment_info p img {
  margin: 15px 0 5px;
}
.comment-list .comment .comment-body .comment-reply-link {
  font-size: 15px;
  font-weight: 400;
  color: #999999;
}
.comment-list .comment .comment-body .comment-reply-link i {
  font-size: 15px;
  margin-right: 5px;
}
.comment-list .comment .comment-body .comment-reply-link:hover {
  color: #F25B3D;
}
.comment-list .comment .children {
  margin: 0;
  padding-left: 70px;
  list-style: none;
}
.comment-list .comment .children .comment {
  margin-bottom: 20px;
}
.comment-list .comment .children .comment-avatar {
  height: 60px;
  width: 60px;
}
.comment-list .comment .children .comment-body {
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
}

#comments .comment-list .comment-respond {
  margin: 20px 0 40px;
  max-width: 100%;
}
#comments .comment-list .comment-respond #cancel-comment-reply-link {
  font-size: 15px;
  color: #F25B3D;
  margin-left: 10px;
  font-weight: 600;
}

.children .comment-respond {
  margin-left: 80px !important;
}

.comment-respond .comment-reply-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 25px;
  line-height: 20px;
}
.comment-respond .comment-notes,
.comment-respond .logged-in-as {
  margin-bottom: 30px;
}
#review_form .comment-respond .comment-notes,
#review_form .comment-respond .logged-in-as {
  text-align: left;
}

.comment-form .comment-form-author,
.comment-form .comment-form-email {
  width: 50%;
  display: inline-block;
  margin-bottom: 0;
}
.comment-form .comment-form-author {
  padding-right: 15px;
}
.comment-form .comment-form-email {
  padding-left: 15px;
  float: right;
}
.comment-form textarea {
  height: 150px;
  margin-bottom: 20px;
}
.comment-form #submit {
  margin-bottom: 0;
  background-color: #F25B3D;
  color: #fff;
  border: 2px solid #F25B3D;
  padding: 11px 20px;
  width: 100%;
  max-width: 200px;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  border-radius: 6px;
}
.comment-form #submit:hover {
  color: #F25B3D;
  border-color: #F25B3D;
  background: transparent;
}
.comment-form .comment-form-cookies-consent {
  margin-bottom: 20px !important;
  font-size: 18px;
  color: #797986;
  position: relative;
}
.comment-form .comment-form-cookies-consent:after {
  content: "";
  display: block;
  clear: both;
}
.comment-form .comment-form-cookies-consent #wp-comment-cookies-consent {
  width: auto;
  height: auto;
}
.comment-form .comment-form-cookies-consent label {
  cursor: pointer;
  display: inline;
  line-height: 1.25em;
  vertical-align: top;
  clear: both;
  padding-left: 1px;
  font-size: 16px;
}
.comment-form .comment-form-cookies-consent label:not(:empty) {
  padding-left: 0.75em;
}
.comment-form .comment-form-cookies-consent label:before, .comment-form .comment-form-cookies-consent label:after {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
}
.comment-form .comment-form-cookies-consent label:before {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(5, 20, 65, 0.2);
  cursor: pointer;
  transition: background 0.3s;
}
.comment-form .comment-form-cookies-consent input[type=checkbox] {
  outline: 0;
  visibility: hidden;
  width: 1.25em;
  margin: 0;
  display: block;
  float: left;
  font-size: inherit;
}
.comment-form .comment-form-cookies-consent input[type=checkbox]:checked + label:before {
  background: #F25B3D;
  border: none;
}
.comment-form .comment-form-cookies-consent input[type=checkbox]:checked + label:after {
  transform: translate(0.17em, 0.25em) rotate(-45deg);
  width: 0.6em;
  height: 0.25em;
  border: 0.125em solid #fff;
  border-top-style: none;
  border-right-style: none;
}

#review_form input[type=text],
#review_form textarea {
  border: 1px solid rgba(5, 20, 65, 0.2);
}
#review_form input[type=text]::placeholder,
#review_form textarea::placeholder {
  color: #75757d;
}
#review_form input[type=text]:focus,
#review_form textarea:focus {
  border-color: rgba(242, 91, 61, 0.5);
}

@media (max-width: 991px) {
  .comment-list .comment .children {
    padding-left: 50px;
  }
}
@media (max-width: 576px) {
  .comment-list .comment .comment-body .comment-avatar {
    width: 55px;
    height: 55px;
  }
  .comment-list .comment .children {
    padding-left: 20px;
  }
  .comment-list .comment .children .comment .comment-body .comment-avatar {
    width: 40px;
    height: 40px;
  }
}
/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
  display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
  display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

iframe {
  border-width: 0;
}

.entry-content iframe {
  max-height: 500px;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}
.wp-caption img[class*=wp-image-] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.wp-caption-text {
  text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}
.gallery-columns-2 .gallery-item {
  max-width: 50%;
}
.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}
.gallery-columns-4 .gallery-item {
  max-width: 25%;
}
.gallery-columns-5 .gallery-item {
  max-width: 20%;
}
.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}
.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}
.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}
.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

.gallery-caption {
  display: block;
}

.blog-content .gallery {
  padding: 0;
  margin: 0;
}

/*--------------------------------------------------------------
## Block
--------------------------------------------------------------*/
.wp-block-button .wp-block-button__link {
  background: #2C3539;
  border-radius: 5px;
  margin-bottom: 10px;
  color: #fff;
  line-height: 1.2;
}
.wp-block-button .wp-block-button__link:hover {
  background: #F25B3D;
  color: #fff;
}
.wp-block-button .wp-block-button__link br {
  display: none;
}
.wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent;
  color: #2C3539;
  border-color: #2C3539;
}
.wp-block-button.is-style-outline .wp-block-button__link:hover {
  border-color: #F25B3D;
  color: #F25B3D;
}
.wp-block-button.is-style-squared .wp-block-button__link {
  border-radius: 0;
}

.blocks-gallery-grid .blocks-gallery-image, .blocks-gallery-grid .blocks-gallery-item, .wp-block-gallery .blocks-gallery-image, .wp-block-gallery .blocks-gallery-item {
  width: calc(50% - 30px);
}

.blocks-gallery-grid .blocks-gallery-image, .blocks-gallery-grid .blocks-gallery-item, .wp-block-gallery .blocks-gallery-image, .wp-block-gallery .blocks-gallery-item {
  margin: 0 30px 16px 0;
}

.wp-block-cover .wp-block-cover-text {
  padding: 30px;
}

.wp-block-gallery .blocks-gallery-image,
.wp-block-gallery .blocks-gallery-item {
  padding-left: 0;
}
.wp-block-gallery .blocks-gallery-image:before,
.wp-block-gallery .blocks-gallery-item:before {
  display: none;
}

.wp-block-cover p:not(.has-text-color) {
  color: #fff !important;
  line-height: 1.8;
}

.wp-block-quote.is-large, .wp-block-quote.is-style-large {
  background-color: transparent;
}
.wp-block-quote.is-large p, .wp-block-quote.is-style-large p {
  font-size: 1.6em;
  font-weight: 300;
}
.wp-block-quote.is-large:before, .wp-block-quote.is-large:after, .wp-block-quote.is-style-large:before, .wp-block-quote.is-style-large:after {
  display: none;
}

.wp-block-pullquote {
  border-top: 4px solid #F3F3F3;
  border-bottom: 4px solid #F3F3F3;
  color: #40464d;
}

.entry .entry-content .wp-block-pullquote.is-style-solid-color {
  background-color: #0073aa;
  padding-left: 0;
  padding-right: 0;
}

.entry .entry-content .wp-block-pullquote {
  border-color: transparent;
  border-width: 2px;
  padding: 1rem;
}
.entry .entry-content .wp-block-pullquote blockquote {
  background-color: transparent;
}
.entry .entry-content .wp-block-pullquote blockquote:before, .entry .entry-content .wp-block-pullquote blockquote:after {
  display: none;
}

.wp-block-pullquote.is-style-solid-color blockquote p {
  line-height: 1;
}

.entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote {
  max-width: 100%;
  color: #fff;
  padding-left: 0;
  margin-left: 1rem;
  margin-right: 1rem;
}

.entry .entry-content .wp-block-pullquote blockquote {
  color: #111;
  border: none;
  margin-top: 4rem;
  margin-bottom: 4.33rem;
  margin-right: 0;
  padding-left: 0;
}

.entry .entry-content .wp-block-pullquote.is-style-solid-color p {
  font-size: 1.6875em;
  line-height: 1.3;
  margin-bottom: 0.5em;
  margin-top: 0.5em;
}

.entry .entry-content .wp-block-pullquote p {
  font-size: 1.6875em;
  font-style: italic;
  line-height: 1.3;
  margin-bottom: 0.5em;
  margin-top: 0.5em;
}

.entry .entry-content .wp-block-archives li,
.entry .entry-content .wp-block-categories li,
.entry .entry-content .wp-block-latest-posts li {
  margin-bottom: 7px;
  padding-left: 15px;
  position: relative;
}
.entry .entry-content .wp-block-archives li time,
.entry .entry-content .wp-block-categories li time,
.entry .entry-content .wp-block-latest-posts li time {
  line-height: 1;
}
.entry .entry-content .wp-block-archives li:before,
.entry .entry-content .wp-block-categories li:before,
.entry .entry-content .wp-block-latest-posts li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background: #7d92bb;
}
.entry .entry-content .wp-block-archives li a,
.entry .entry-content .wp-block-categories li a,
.entry .entry-content .wp-block-latest-posts li a {
  font-size: 16px;
  color: #465675;
}
.entry .entry-content .wp-block-archives li a:hover,
.entry .entry-content .wp-block-categories li a:hover,
.entry .entry-content .wp-block-latest-posts li a:hover {
  color: #F25B3D;
}
.entry .entry-content .wp-block-archives li .children,
.entry .entry-content .wp-block-categories li .children,
.entry .entry-content .wp-block-latest-posts li .children {
  padding-left: 30px;
}

.entry .entry-content .wp-block-categories-list .children li {
  padding-left: 0;
}
.entry .entry-content .wp-block-categories-list .children li:before {
  display: none;
}

.wp-block-latest-posts.wp-block-latest-posts__list,
.wp-block-latest-comments {
  padding-left: 0;
  margin-bottom: 0;
}

.wp-block-media-text.alignfull.has-media-on-the-right.has-background.is-stacked-on-mobile {
  margin-bottom: 15px;
}

pre.wp-block-preformatted {
  margin-top: 20px;
}

.post_format-post-format-quote blockquote {
  margin-top: 0;
}

.wp-block-archives,
.wp-block-categories-list {
  padding: 0;
  list-style: none;
}
.wp-block-archives li:not(:last-clild),
.wp-block-categories-list li:not(:last-clild) {
  margin-bottom: 10px;
}

.wp-block-archives-dropdown select {
  height: 50px;
  width: 100%;
  padding: 7px 10px;
  margin-bottom: 20px;
}

.wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta a {
  color: #656575;
  font-weight: 400;
  font-size: 16px;
  display: inline-block;
}
.wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta a:hover {
  color: #F25B3D;
}

.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
  max-width: 100px;
}

.entry .entry-content .wp-block-separator, .entry .entry-content hr {
  background-color: #767676;
  border: 0;
  height: 2px;
  margin-bottom: 2rem;
  margin-top: 2rem;
  max-width: 2.25em;
  text-align: left;
  margin-left: 0;
}

.wp-block-calendar .wp-calendar-nav {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
}

.wp-block-categories-dropdown .postform {
  margin-bottom: 20px;
}

.wp-block-search .wp-block-search__label {
  font-family: "Be Vietnam Pro", serif;
  display: block;
  font-size: 24px !important;
  font-weight: 600;
  position: relative;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.wp-block-search input[type=search] {
  margin-bottom: 0;
  background: #D1D2D4;
  box-shadow: none;
  height: 56px;
  border-radius: 40px;
}
.wp-block-search input[type=search]:focus {
  box-shadow: none;
  background: #F1F6FE;
}
.wp-block-search .wp-block-search__button {
  height: 56px;
  border-radius: 5px;
  border: 0;
  font-weight: 500;
  padding: 0 15px;
  background: #D1D2D4;
}
.wp-block-search .wp-block-search__button:hover {
  background: #F25B3D;
  color: #fff;
}

.wp-block-gallery.is-cropped .blocks-gallery-caption:last-child,
.wp-block-gallery.is-cropped {
  margin-bottom: 1rem;
}

@media only screen and (min-width: 768px) {
  .entry .entry-content .wp-block-pullquote.is-style-solid-color {
    padding-left: 10%;
    padding-right: 10%;
  }
  .entry .entry-content .wp-block-pullquote.is-style-solid-color p {
    font-size: 2.22em;
    color: #fff;
  }
  .entry .entry-content .wp-block-pullquote p {
    font-size: 2.25em;
  }
  .entry .entry-content .wp-block-separator.is-style-wide, .entry .entry-content hr.is-style-wide {
    max-width: calc(66.6666666667vw - 28px);
  }
  .entry .entry-content .wp-block-separator.is-style-dots, .entry .entry-content hr.is-style-dots {
    max-width: calc(66.6666666667vw - 28px);
  }
}
@media only screen and (min-width: 1168px) {
  .entry .entry-content .wp-block-separator.is-style-wide, .entry .entry-content hr.is-style-wide {
    max-width: calc(50vw - 28px);
  }
  .entry .entry-content .wp-block-separator.is-style-dots, .entry .entry-content hr.is-style-dots {
    max-width: calc(50vw - 28px);
  }
}
.entry .entry-content .wp-block-separator.is-style-dots, .entry .entry-content hr.is-style-dots {
  max-width: 100%;
  background-color: inherit;
  border: inherit;
  height: inherit;
  text-align: center;
}

.entry .entry-content .wp-block-separator.is-style-dots:before, .entry .entry-content hr.is-style-dots:before {
  color: #767676;
  font-size: 1.6875em;
  letter-spacing: 0.88889em;
  padding-left: 0.88889em;
}

.wp-block-separator.is-style-dots:before {
  content: "···";
  color: #191e23;
  font-size: 20px;
  letter-spacing: 2em;
  padding-left: 2em;
  font-family: serif;
}

.wp-block-table.is-style-stripes {
  border-collapse: collapse;
}
.wp-block-table.is-style-stripes td {
  border-color: #F3F3F3;
  border-bottom-width: 1px;
}
.wp-block-table.is-style-stripes td:not(:first-child) {
  border-left-width: 1px;
}
.wp-block-table.is-style-stripes tr {
  border-top: 1px solid #F3F3F3;
}
.wp-block-table.is-style-stripes tr:last-child td {
  border-bottom-width: 1px;
}

.wp-block-calendar a {
  text-decoration: none;
}

.wp-block-archives-list li {
  margin-bottom: 8px;
}

.wp-block-read-more {
  background: #F25B3D;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  position: relative;
}
.wp-block-read-more:after {
  content: "\e628";
  font-family: themify;
  font-size: 14px;
  line-height: 1;
  display: inline-block;
  margin-left: 5px;
}

/*--------------------------------------------------------------
# Media Mentions
--------------------------------------------------------------*/
.archive-description {
  font-size: 20px;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .archive-description {
    font-size: 16px;
  }
}

.media-mention-categories {
  margin-bottom: 15px;
}
.media-mention-categories .category-tag {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 5px;
}
.media-mention-categories .category-tag a {
  background: #F25B3D;
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}
.media-mention-categories .category-tag a:hover {
  background: #ec3410;
  transform: translateY(-2px);
}

.media-mention-item .media-mention-categories {
  margin-bottom: 0;
}

.entry-header .entry-title {
  font-size: 24px;
  font-weight: 700;
  color: #2C3539;
  margin-bottom: 15px;
  line-height: 1.4;
}
.entry-header .entry-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.entry-header .entry-title a:hover {
  color: #F25B3D;
}
.entry-header .entry-meta {
  color: #666;
  font-size: 14px;
  margin-bottom: 20px;
}
.entry-header .entry-meta .posted-on {
  display: inline-flex;
  align-items: center;
}
.entry-header .entry-meta .posted-on:before {
  content: "\f017";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 8px;
  color: #F25B3D;
}

.single-media-mention .entry-content p {
  font-size: 20px;
}
@media (max-width: 768px) {
  .single-media-mention .entry-content p {
    font-size: 16px;
  }
}

.entry-content {
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}
.entry-content p {
  margin-bottom: 15px;
}

.read-more-link {
  color: #F25B3D;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}
.read-more-link i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}
.read-more-link:hover {
  color: #ec3410;
}
.read-more-link:hover i {
  transform: translateX(5px);
}

.single-media-mention-area {
  padding: 80px 0;
}

.single-media-mention {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.single-media-mention .entry-header {
  padding: 40px 40px 0;
}
@media (max-width: 768px) {
  .single-media-mention .entry-header {
    padding: 30px 20px 0;
  }
}
.single-media-mention .entry-header .entry-title {
  font-size: 32px;
  font-weight: 700;
  color: #2C3539;
  margin-bottom: 20px;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .single-media-mention .entry-header .entry-title {
    font-size: 24px;
  }
}
.single-media-mention .entry-header .entry-meta {
  margin-bottom: 30px;
}
.single-media-mention .entry-featured-image {
  margin: 0 0 40px;
}
.single-media-mention .entry-featured-image img {
  width: 100%;
  height: auto;
}
.single-media-mention .entry-content {
  padding: 0 40px;
}
@media (max-width: 768px) {
  .single-media-mention .entry-content {
    padding: 0 20px;
  }
}
.single-media-mention .entry-content h1, .single-media-mention .entry-content h2, .single-media-mention .entry-content h3, .single-media-mention .entry-content h4, .single-media-mention .entry-content h5, .single-media-mention .entry-content h6 {
  color: #2C3539;
  margin-bottom: 20px;
}
.single-media-mention .entry-content p {
  margin-bottom: 20px;
}
.single-media-mention .entry-content ul, .single-media-mention .entry-content ol {
  margin-bottom: 20px;
  padding-left: 20px;
}
.single-media-mention .entry-content blockquote {
  background: #f8f9fa;
  border-left: 4px solid #F25B3D;
  padding: 20px;
  margin: 30px 0;
  font-style: italic;
}
.single-media-mention .entry-footer {
  padding: 40px;
  border-top: 1px solid #eee;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .single-media-mention .entry-footer {
    padding: 30px 20px;
    margin-top: 30px;
  }
}

.post-navigation {
  margin-bottom: 30px;
}
.post-navigation .nav-links {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 768px) {
  .post-navigation .nav-links {
    flex-direction: column;
  }
}
.post-navigation .nav-links .nav-previous,
.post-navigation .nav-links .nav-next {
  flex: 1;
  max-width: 48%;
}
@media (max-width: 768px) {
  .post-navigation .nav-links .nav-previous,
  .post-navigation .nav-links .nav-next {
    max-width: 100%;
  }
}
.post-navigation .nav-links .nav-previous a,
.post-navigation .nav-links .nav-next a {
  display: block;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.post-navigation .nav-links .nav-previous a:hover,
.post-navigation .nav-links .nav-next a:hover {
  background: #e9ecef;
  transform: translateY(-2px);
}
.post-navigation .nav-links .nav-previous a .nav-subtitle,
.post-navigation .nav-links .nav-next a .nav-subtitle {
  display: block;
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 5px;
}
.post-navigation .nav-links .nav-previous a .nav-title,
.post-navigation .nav-links .nav-next a .nav-title {
  display: block;
  color: #2C3539;
  font-weight: 600;
  line-height: 1.4;
}
.post-navigation .nav-links .nav-next {
  text-align: right;
}
@media (max-width: 768px) {
  .post-navigation .nav-links .nav-next {
    text-align: left;
  }
}

.back-to-archive {
  text-align: center;
}
.back-to-archive .btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: transparent;
  border: 2px solid #F25B3D;
  color: #F25B3D;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.back-to-archive .btn i {
  margin-right: 8px;
}
.back-to-archive .btn:hover {
  background: #F25B3D;
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .blog-content-area {
    padding: 60px 0;
  }
  .archive-header {
    margin-bottom: 40px;
  }
  .archive-header .archive-title {
    font-size: 28px;
  }
  .archive-header .archive-description {
    font-size: 16px;
  }
  .media-mentions-list .media-mention-item {
    margin-bottom: 30px;
  }
  .single-media-mention-area {
    padding: 60px 0;
  }
}
/*# sourceMappingURL=app.css.map */
