@charset "UTF-8";
/*
@File: Puva Theme Styles

* This file contains the styling for the actual template, this
is the file you need to edit to change the look of the
template.

This files table contents are outlined below>>>>>

*******************************************
*******************************************

** - Default CSS
** - Top Header Area CSS
** - Navbar Area CSS
** - Search Overlay CSS
** - Main Banner Area CSS
** - About Area CSS
** - Products Review Area CSS
** - Products Review Details Area CSS
** - Video Review Area CSS
** - Widget Sidebar Area CSS
** - Categories Area CSS
** - Products Area CSS
** - Products Details Area CSS
** - Cart Area CSS
** - Checkout Area CSS
** - Gallery Area CSS
** - Subscribe Area CSS
** - Blog Area CSS
** - Blog Details Area CSS
** - Members Area CSS
** - Submit Review Area CSS
** - Membership Levels Area CSS
** - Pagination CSS
** - Page Title Area CSS
** - User Profile Area CSS
** - Coming Soon Area CSS
** - FAQ Area CSS
** - 404 Error Area CSS
** - Contact Area CSS
** - Footer Area CSS
** - Go Top CSS
** - All Modal CSS
*/
/*================================================
Default CSS
=================================================*/
@import url("https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --fontFamily: "DM Sans", sans-serif;
  --mainColor: #473bf0;
  --optionalColor: #a0aec0;
  --whiteColor: #ffffff;
  --blackColor: #161c2d;
  --fontSize: 14px;
  --transition: .5s;
  --optionalColor2: #67656E;
  --blackColor2: #190D39;
  --f3e8de: #f3e8de;
}

.bg_f1ede9 {
  background-color: #f1ede9;
}

body {
  padding: 0;
  margin: 0;
  font-size: var(--fontSize);
  font-family: var(--fontFamily);
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

a {
  color: var(--blackColor);
  transition: var(--transition);
  text-decoration: none;
  outline: 0 !important;
}
a:hover {
  text-decoration: none;
}

:focus {
  outline: 0 !important;
}

.d-table {
  width: 100%;
  height: 100%;
}
.d-table-cell {
  vertical-align: middle;
}

img {
  max-width: 100%;
  height: auto;
}

p {
  color: #585d81;
  font-size: 15.5px;
  margin-bottom: 15px;
  line-height: 1.7;
}
p:last-child {
  margin-bottom: 0;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.pt-100 {
  padding-top: 100px;
}

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

.ptb-70 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.pt-70 {
  padding-top: 70px;
}

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

.container {
  max-width: 1230px;
}

.bg-f5f5f5 {
  background-color: #f5f5f5;
}

.author-desc .user-profile .title.m-left-0 {
  margin-left: 0;
}

/*section-title*/
.section-title {
  position: relative;
  border-radius: 12px;
  margin-bottom: 40px;
  border-left: 3px solid;
  padding-left: 15px;
  padding-top: 5px;
  padding-bottom: 5px;
}
.section-title h2 {
  margin-bottom: 0;
  font-size: 35px;
  margin-top: -5px;
}
.section-title .link-btn {
  top: 10px;
  right: 0;
  display: block;
  line-height: 1.4;
  position: absolute;
  font-size: 17px;
  font-weight: 500;
}
.section-title .link-btn::before {
  right: 0;
  left: 0;
  bottom: 0;
  content: "";
  height: 1px;
  position: absolute;
}

/*default-btn*/
.default-btn {
  position: relative;
  border: none;
  border-radius: 5px;
  transition: var(--transition);
  display: inline-block;
  padding: 11px 30px 10px;
  transition: var(--transition);
  text-align: center;
  color: var(--whiteColor);
  z-index: 1;
  background-color: transparent;
  font-size: 15px;
  font-weight: 500;
}
.default-btn::before {
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  position: absolute;
  border-radius: 5px;
  transition: var(--transition);
}
.default-btn:hover {
  color: var(--whiteColor);
  background-color: transparent;
}
.default-btn:hover::before {
  opacity: 0.85;
}

/*form-control*/
.form-control {
  border-radius: 0;
  background-color: #f5f5f5 !important;
  box-shadow: unset !important;
  transition: var(--transition);
  border: none !important;
  height: 50px;
  padding-left: 15px;
  color: var(--blackColor);
  font-size: 14.5px;
  font-weight: 400;
}
.form-control::-moz-placeholder {
  color: #999999;
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.form-control::placeholder {
  color: #999999;
  transition: var(--transition);
}
.form-control:focus::-moz-placeholder {
  color: transparent;
}
.form-control:focus::placeholder {
  color: transparent;
}

textarea.form-control {
  padding-top: 15px;
  height: auto;
}

/*================================================
Top Header Area CSS
=================================================*/
.top-header {
  background-color: var(--blackColor);
  padding-top: 12px;
  padding-bottom: 12px;
}
.top-header .top-header-info {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.top-header .top-header-info li {
  display: inline-block;
  margin-right: 20px;
}
.top-header .top-header-info li a {
  color: var(--whiteColor);
  display: block;
  font-weight: 500;
}
.top-header .top-header-info li a:hover {
  color: var(--whiteColor);
  opacity: 0.8;
}
.top-header .top-header-info li:last-child {
  margin-right: 0;
}
.top-header .top-header-right {
  text-align: right;
}
.top-header .top-header-right span {
  display: inline-block;
  cursor: pointer;
  color: var(--whiteColor);
  transition: var(--transition);
  font-weight: 500;
  position: relative;
  padding-left: 23px;
}
.top-header .top-header-right span a {
  color: var(--whiteColor);
}
.top-header .top-header-right span i {
  color: var(--whiteColor);
  position: absolute;
  top: 1px;
  left: 0;
  font-size: 18px;
}
.top-header .top-header-right span::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--whiteColor);
  transition: var(--transition);
  transform: scaleX(0);
}
.top-header .top-header-right span:hover {
  color: var(--whiteColor);
}
.top-header .top-header-right span:hover::before {
  transform: scaleX(1);
}

/*================================================
Navbar Area CSS
=================================================*/
.navbar-area {
  position: relative;
  padding: 0;
}
.navbar-area.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  background-color: var(--whiteColor) !important;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}
.navbar-area.is-sticky.navbar-style-two .navbar-top-area {
  display: none;
}

.puva-responsive-nav {
  display: none;
}

.puva-nav .container-fluid {
  padding-left: 20px;
  padding-right: 20px;
}
.puva-nav .navbar {
  position: inherit;
  padding: 0;
}
.puva-nav .navbar .navbar-brand {
  font-size: inherit;
  line-height: 1;
  padding: 0;
}
.puva-nav .navbar ul {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
}
.puva-nav .navbar .navbar-nav {
  margin-left: auto;
  margin-right: auto;
}
.puva-nav .navbar .navbar-nav .nav-item {
  position: relative;
  text-transform: capitalize;
  margin-left: 10px;
  margin-right: 10px;
}
.puva-nav .navbar .navbar-nav .nav-item a {
  color: var(--blackColor);
  font-size: 16px;
  font-weight: 700;
  padding-left: 0;
  padding-right: 0;
  padding-top: 30px;
  padding-bottom: 30px;
}
.puva-nav .navbar .navbar-nav .nav-item .dropdown-toggle {
  padding-right: 18px;
}
.puva-nav .navbar .navbar-nav .nav-item .dropdown-toggle::after {
  display: none;
}
.puva-nav .navbar .navbar-nav .nav-item .dropdown-toggle::before {
  content: "\ea17";
  position: absolute;
  right: 0;
  top: 30px;
  font-weight: 300;
  font-size: 17px;
  font-family: "boxicons";
}
.puva-nav .navbar .navbar-nav .nav-item:last-child {
  margin-right: 0;
}
.puva-nav .navbar .navbar-nav .nav-item:first-child {
  margin-left: 0;
}
.puva-nav .navbar .navbar-nav .nav-item .dropdown-menu {
  border: none;
  top: 84px;
  left: 0;
  z-index: 99;
  opacity: 0;
  width: 250px;
  display: block;
  border-radius: 0;
  padding: 10px 0;
  margin-top: 15px;
  position: absolute;
  visibility: hidden;
  background: var(--whiteColor);
  transition: all 0.2s ease-in-out;
  border-top: 3px solid;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}
.puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li {
  margin: 0;
}
.puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li.menu-item-has-children .dropdown-item {
  position: relative;
}
.puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li.menu-item-has-children .dropdown-item::before {
  content: "\ea17";
  position: absolute;
  right: 12px;
  top: 6px;
  font-weight: 300;
  font-size: 17px;
  font-family: "boxicons";
}
.puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li a {
  padding: 8px 20px;
  position: relative;
  display: block;
  color: var(--blackColor);
  white-space: inherit;
  font-size: 14px;
  font-weight: 600;
}
.puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li a i {
  margin: 0;
  position: absolute;
  top: 50%;
  font-size: 20px;
  transform: translateY(-50%);
  right: 15px;
}
.puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:hover, .puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:focus, .puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
  background-color: transparent;
}
.puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
  top: 0;
  opacity: 0;
  left: -250px;
  margin-top: 15px;
  visibility: hidden;
}
.puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a {
  color: var(--blackColor);
}
.puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:hover, .puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:focus, .puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.active {
  background-color: transparent;
}
.puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a::before {
  display: none !important;
}
.puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu {
  top: 0;
  opacity: 0;
  left: 250px;
  visibility: hidden;
}
.puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: var(--blackColor);
}
.puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  background-color: transparent;
}
.puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  top: 0;
  opacity: 0;
  left: -250px;
  visibility: hidden;
}
.puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: var(--blackColor);
}
.puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  background-color: transparent;
}
.puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  top: 0;
  opacity: 0;
  left: 250px;
  visibility: hidden;
}
.puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: var(--blackColor);
}
.puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  background-color: transparent;
}
.puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  top: 0;
  opacity: 0;
  left: -250px;
  visibility: hidden;
}
.puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: var(--blackColor);
}
.puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  background-color: transparent;
}
.puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  top: 0;
  opacity: 0;
  left: 250px;
  visibility: hidden;
}
.puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: var(--blackColor);
}
.puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  background-color: transparent;
}
.puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.puva-nav .navbar .navbar-nav .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.puva-nav .navbar .navbar-search-box {
  margin-left: 30px;
  position: relative;
  width: 210px;
}
.puva-nav .navbar .navbar-search-box label {
  margin-bottom: 0;
  position: absolute;
  left: 0;
  top: 4.5px;
  font-size: 18px;
}
.puva-nav .navbar .navbar-search-box .input-search {
  border: none;
  border-bottom: 1px solid #e0e0e0;
  display: block;
  width: 100%;
  height: 33px;
  line-height: 33px;
  font-size: 14px;
  background-color: transparent;
  color: var(--blackColor);
  padding: 0 0 0 25px;
}
.puva-nav .navbar .navbar-search-box .input-search::-moz-placeholder {
  color: #51668a;
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.puva-nav .navbar .navbar-search-box .input-search::placeholder {
  color: #51668a;
  transition: var(--transition);
}
.puva-nav .navbar .navbar-search-box .input-search:focus::-moz-placeholder {
  color: transparent;
}
.puva-nav .navbar .navbar-search-box .input-search:focus::placeholder {
  color: transparent;
}
.puva-nav .navbar .others-option .option-item {
  margin-left: 35px;
}
.puva-nav .navbar .others-option .option-item:first-child {
  margin-left: 0;
}
.puva-nav .navbar .others-option .option-item span {
  display: inline-block;
  cursor: pointer;
  color: #221638;
  transition: var(--transition);
  font-weight: 600;
  position: relative;
  padding-left: 23px;
}
.puva-nav .navbar .others-option .option-item span i {
  position: absolute;
  top: 1px;
  left: 0;
  font-size: 18px;
}
.puva-nav .navbar .others-option .option-item span::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  transition: var(--transition);
  transform: scaleX(0);
}
.puva-nav .navbar .others-option .option-item span:hover::before {
  transform: scaleX(1);
}
.puva-nav .navbar .others-option .option-item .default-btn {
  padding-left: 50px;
  border: 1px solid;
  border-radius: 30px;
  color: var(--whiteColor);
}
.puva-nav .navbar .others-option .option-item .default-btn::before {
  display: none;
}
.puva-nav .navbar .others-option .option-item .default-btn i {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 25px;
  line-height: 1;
  margin-top: -0.5px;
}
.puva-nav .navbar .others-option .option-item .default-btn:hover {
  color: var(--whiteColor);
  background-color: #13099c;
}
.puva-nav .navbar .others-option .option-item .cart-btn {
  line-height: 1;
  display: inline-block;
  font-size: 22px;
}
.puva-nav .navbar .others-option .option-item .cart-btn:hover {
  opacity: 0.8;
}
.puva-nav .navbar .others-option .option-item .search-box {
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
  display: inline-block;
  font-size: 22px;
  margin-left: -10px;
  position: relative;
  top: 1px;
}
.puva-nav .navbar .others-option .option-item .search-box:hover {
  opacity: 0.8;
}
.puva-nav .navbar .others-option .option-item .side-menu-btn {
  margin-left: -10px;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
  display: inline-block;
  font-size: 25px;
}
.puva-nav .navbar .others-option .option-item .side-menu-btn:hover {
  opacity: 0.8;
}

.navbar-top-area {
  border-bottom: 1px solid #eeeeee;
  padding-top: 20px;
  padding-bottom: 20px;
}
.navbar-top-area .top-logo .logo {
  display: inline-block;
}
.navbar-top-area .top-logo .navbar-search-box {
  margin-left: 50px;
  position: relative;
  width: 300px;
}
.navbar-top-area .top-logo .navbar-search-box label {
  margin-bottom: 0;
  position: absolute;
  left: 15px;
  top: 14px;
  font-size: 18px;
}
.navbar-top-area .top-logo .navbar-search-box .input-search {
  border: 1px solid #eeeeee;
  display: block;
  width: 100%;
  border-radius: 4px;
  height: 48px;
  font-size: 14px;
  background-color: transparent;
  color: var(--blackColor);
  padding: 1px 0 0 40px;
}
.navbar-top-area .top-logo .navbar-search-box .input-search::-moz-placeholder {
  color: #51668a;
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.navbar-top-area .top-logo .navbar-search-box .input-search::placeholder {
  color: #51668a;
  transition: var(--transition);
}
.navbar-top-area .top-logo .navbar-search-box .input-search:focus::-moz-placeholder {
  color: transparent;
}
.navbar-top-area .top-logo .navbar-search-box .input-search:focus::placeholder {
  color: transparent;
}
.navbar-top-area .top-others-option {
  text-align: right;
}
.navbar-top-area .top-others-option .others-option .option-item {
  margin-left: 35px;
  display: inline-block;
}
.navbar-top-area .top-others-option .others-option .option-item:first-child {
  margin-left: 0;
}
.navbar-top-area .top-others-option .others-option .option-item span {
  display: inline-block;
  cursor: pointer;
  color: #221638;
  transition: var(--transition);
  font-weight: 600;
  position: relative;
  padding-left: 23px;
}
.navbar-top-area .top-others-option .others-option .option-item span i {
  position: absolute;
  top: 1px;
  left: 0;
  font-size: 18px;
}
.navbar-top-area .top-others-option .others-option .option-item span::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  transition: var(--transition);
  transform: scaleX(0);
}
.navbar-top-area .top-others-option .others-option .option-item span:hover::before {
  transform: scaleX(1);
}
.navbar-top-area .top-others-option .others-option .option-item .default-btn {
  padding-left: 50px;
  background-color: transparent;
  border: 1px solid;
  border-radius: 30px;
}
.navbar-top-area .top-others-option .others-option .option-item .default-btn::before {
  display: none;
}
.navbar-top-area .top-others-option .others-option .option-item .default-btn i {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 25px;
  line-height: 1;
  margin-top: -0.5px;
}
.navbar-top-area .top-others-option .others-option .option-item .default-btn:hover {
  color: var(--whiteColor);
}

.navbar-style-three .navbar .navbar-nav {
  margin-left: auto;
  margin-right: 0;
}
.navbar-style-three .navbar .others-option {
  margin-left: 25px;
}
.navbar-style-three .others-option-for-responsive .container .container {
  max-width: 170px;
}
.navbar-style-three .others-option-for-responsive .option-inner .others-option .option-item {
  margin-top: 0;
  margin-left: 15px;
}
.navbar-style-three .others-option-for-responsive .option-inner .others-option .option-item:first-child {
  margin-left: 0;
}

.others-option-for-responsive {
  display: none;
}
.others-option-for-responsive .dot-menu {
  padding: 0 10px;
  height: 30px;
  cursor: pointer;
  z-index: 999;
  position: absolute;
  right: 65px;
  top: -28px;
}
.others-option-for-responsive .dot-menu .inner {
  display: flex;
  align-items: center;
  height: 30px;
}
.others-option-for-responsive .dot-menu .inner .circle {
  height: 5px;
  width: 5px;
  border-radius: 100%;
  margin: 0 2px;
  transition: var(--transition);
  background-color: var(--blackColor);
}
.others-option-for-responsive .container {
  position: relative;
}
.others-option-for-responsive .container .container {
  position: absolute;
  right: 0;
  top: 15px;
  max-width: 100%;
  margin-left: auto;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  transform: scaleX(0);
  z-index: 1010;
  padding-left: 15px;
  padding-right: 15px;
}
.others-option-for-responsive .container .container.active {
  opacity: 1;
  visibility: visible;
  transform: scaleX(1);
}
.others-option-for-responsive .option-inner {
  padding: 15px 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.09);
  background-color: var(--whiteColor);
}
.others-option-for-responsive .option-inner .others-option {
  text-align: center;
}
.others-option-for-responsive .option-inner .others-option .option-item {
  display: block;
  margin-top: 20px;
}
.others-option-for-responsive .option-inner .others-option .option-item:first-child {
  margin-top: 0;
}
.others-option-for-responsive .option-inner .others-option .option-item span {
  display: inline-block;
  cursor: pointer;
  color: #221638;
  transition: var(--transition);
  font-weight: 600;
  position: relative;
  padding-left: 23px;
}
.others-option-for-responsive .option-inner .others-option .option-item span i {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 18px;
}
.others-option-for-responsive .option-inner .others-option .option-item span::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  transition: var(--transition);
  transform: scaleX(0);
}
.others-option-for-responsive .option-inner .others-option .option-item span:hover::before {
  transform: scaleX(1);
}
.others-option-for-responsive .option-inner .others-option .option-item .default-btn {
  padding-left: 50px;
  background-color: transparent;
  border: 1px solid;
  border-radius: 30px;
}
.others-option-for-responsive .option-inner .others-option .option-item .default-btn::before {
  display: none;
}
.others-option-for-responsive .option-inner .others-option .option-item .default-btn i {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 25px;
  line-height: 1;
  margin-top: -0.5px;
}
.others-option-for-responsive .option-inner .others-option .option-item .default-btn:hover {
  color: var(--whiteColor);
}
.others-option-for-responsive .option-inner .others-option .option-item .navbar-search-box {
  position: relative;
}
.others-option-for-responsive .option-inner .others-option .option-item .navbar-search-box label {
  margin-bottom: 0;
  position: absolute;
  left: 0;
  top: 4.5px;
  font-size: 18px;
}
.others-option-for-responsive .option-inner .others-option .option-item .navbar-search-box .input-search {
  border: none;
  border-bottom: 1px solid #e0e0e0;
  display: block;
  width: 100%;
  height: 33px;
  line-height: 33px;
  font-size: 14px;
  background-color: transparent;
  color: var(--blackColor);
  padding: 0 0 0 25px;
}
.others-option-for-responsive .option-inner .others-option .option-item .navbar-search-box .input-search::-moz-placeholder {
  color: #51668a;
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.others-option-for-responsive .option-inner .others-option .option-item .navbar-search-box .input-search::placeholder {
  color: #51668a;
  transition: var(--transition);
}
.others-option-for-responsive .option-inner .others-option .option-item .navbar-search-box .input-search:focus::-moz-placeholder {
  color: transparent;
}
.others-option-for-responsive .option-inner .others-option .option-item .navbar-search-box .input-search:focus::placeholder {
  color: transparent;
}
.others-option-for-responsive .option-inner .others-option .option-item .cart-btn {
  line-height: 1;
  display: inline-block;
  font-size: 22px;
}
.others-option-for-responsive .option-inner .others-option .option-item .cart-btn:hover {
  opacity: 0.8;
}
.others-option-for-responsive .option-inner .others-option .option-item .search-box {
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
  display: inline-block;
  font-size: 22px;
  position: relative;
  top: 1px;
}
.others-option-for-responsive .option-inner .others-option .option-item .search-box:hover {
  opacity: 0.8;
}
.others-option-for-responsive .option-inner .others-option .option-item .side-menu-btn {
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
  display: inline-block;
  font-size: 25px;
}
.others-option-for-responsive .option-inner .others-option .option-item .side-menu-btn:hover {
  opacity: 0.8;
}

@media only screen and (max-width: 1199px) {
  .navbar-area {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .navbar-area.is-sticky {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .navbar-style-two .puva-responsive-nav .puva-responsive-menu.mean-container .navbar-nav {
    height: 458px;
  }
  .puva-responsive-nav {
    display: block;
  }
  .puva-responsive-nav .puva-responsive-menu {
    position: relative;
  }
  .puva-responsive-nav .puva-responsive-menu.mean-container .mean-nav {
    margin-top: 41px;
  }
  .puva-responsive-nav .puva-responsive-menu.mean-container .mean-nav ul {
    font-size: 15px;
  }
  .puva-responsive-nav .puva-responsive-menu.mean-container .mean-nav ul li li a {
    font-size: 14.5px;
  }
  .puva-responsive-nav .puva-responsive-menu.mean-container .navbar-nav {
    overflow-y: scroll;
    height: 306px;
    box-shadow: 0 7px 13px 0 rgba(0, 0, 0, 0.1);
  }
  .puva-responsive-nav .mean-container a.meanmenu-reveal {
    color: var(--blackColor);
  }
  .puva-responsive-nav .mean-container a.meanmenu-reveal span {
    background: var(--blackColor);
  }
  .puva-responsive-nav .dropdown-toggle::after {
    display: none !important;
  }
  .puva-responsive-nav .others-option {
    display: none !important;
  }
  .puva-responsive-nav .others-option .option-item {
    margin-left: 25px;
  }
  .puva-responsive-nav .others-option .option-item:first-child {
    margin-left: 0;
  }
  .puva-responsive-nav .others-option .option-item span {
    display: inline-block;
    cursor: pointer;
    color: #221638;
    transition: var(--transition);
    font-weight: 600;
    position: relative;
    padding-left: 23px;
  }
  .puva-responsive-nav .others-option .option-item span i {
    position: absolute;
    top: 1px;
    left: 0;
    font-size: 18px;
  }
  .puva-responsive-nav .others-option .option-item span::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    transition: var(--transition);
    transform: scaleX(0);
  }
  .puva-responsive-nav .others-option .option-item span:hover::before {
    transform: scaleX(1);
  }
  .puva-responsive-nav .others-option .option-item .default-btn {
    padding-left: 60px;
    background-color: transparent;
    border: 1px solid;
    border-radius: 30px;
  }
  .puva-responsive-nav .others-option .option-item .default-btn::before {
    display: none;
  }
  .puva-responsive-nav .others-option .option-item .default-btn i {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 25px;
    line-height: 1;
    margin-top: -0.5px;
  }
  .puva-responsive-nav .others-option .option-item .default-btn:hover {
    color: var(--whiteColor);
  }
  .puva-responsive-nav .others-option .option-item .cart-btn {
    line-height: 1;
    display: inline-block;
    font-size: 22px;
  }
  .puva-responsive-nav .others-option .option-item .cart-btn:hover {
    opacity: 0.8;
  }
  .puva-responsive-nav .others-option .option-item .search-box {
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
    display: inline-block;
    font-size: 22px;
    margin-left: -10px;
    position: relative;
    top: 1px;
  }
  .puva-responsive-nav .others-option .option-item .search-box:hover {
    opacity: 0.8;
  }
  .puva-responsive-nav .others-option .option-item .side-menu-btn {
    margin-left: -10px;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
    display: inline-block;
    font-size: 25px;
  }
  .puva-responsive-nav .others-option .option-item .side-menu-btn:hover {
    opacity: 0.8;
  }
  .puva-responsive-nav .navbar-search-box {
    position: absolute;
    top: 0;
    right: 0;
    display: none;
  }
  .puva-responsive-nav .navbar-search-box label {
    margin-bottom: 0;
    position: absolute;
    left: 0;
    top: 4.5px;
    font-size: 18px;
  }
  .puva-responsive-nav .navbar-search-box .input-search {
    border: none;
    border-bottom: 1px solid #e0e0e0;
    display: block;
    width: 100%;
    height: 33px;
    line-height: 33px;
    font-size: 14px;
    background-color: transparent;
    color: var(--blackColor);
    padding: 0 0 0 25px;
  }
  .puva-responsive-nav .navbar-search-box .input-search::-moz-placeholder {
    color: #51668a;
    -moz-transition: var(--transition);
    transition: var(--transition);
  }
  .puva-responsive-nav .navbar-search-box .input-search::placeholder {
    color: #51668a;
    transition: var(--transition);
  }
  .puva-responsive-nav .navbar-search-box .input-search:focus::-moz-placeholder {
    color: transparent;
  }
  .puva-responsive-nav .navbar-search-box .input-search:focus::placeholder {
    color: transparent;
  }
  .puva-responsive-nav .logo {
    position: relative;
    width: 60%;
    z-index: 999;
  }
  .puva-nav {
    display: none;
  }
  .others-option-for-responsive {
    display: block;
  }
  .navbar-top-area {
    display: none;
  }
}
/*================================================
Search Overlay CSS
=================================================*/
.search-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}
.search-overlay .search-overlay-layer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  transform: translateX(100%);
}
.search-overlay .search-overlay-layer:nth-child(1) {
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease-in-out 0s;
}
.search-overlay .search-overlay-layer:nth-child(2) {
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease-in-out 0.3s;
}
.search-overlay .search-overlay-layer:nth-child(3) {
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  transition: all 0.9s ease-in-out 0.6s;
}
.search-overlay .search-overlay-close {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 50px;
  z-index: 2;
  text-align: center;
  cursor: pointer;
  padding: 10px;
  transition: all 0.9s ease-in-out 1.5s;
  opacity: 0;
  visibility: hidden;
}
.search-overlay .search-overlay-close .search-overlay-close-line {
  width: 100%;
  height: 3px;
  float: left;
  margin-bottom: 5px;
  background-color: var(--whiteColor);
  transition: all 500ms ease;
}
.search-overlay .search-overlay-close .search-overlay-close-line:nth-child(1) {
  transform: rotate(45deg);
}
.search-overlay .search-overlay-close .search-overlay-close-line:nth-child(2) {
  margin-top: -7px;
  transform: rotate(-45deg);
}
.search-overlay .search-overlay-close:hover .search-overlay-close-line {
  transform: rotate(180deg);
}
.search-overlay .search-overlay-form {
  transition: all 0.9s ease-in-out 1.4s;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 2;
  max-width: 500px;
  width: 500px;
}
.search-overlay .search-overlay-form form {
  position: relative;
}
.search-overlay .search-overlay-form form .input-search {
  display: block;
  width: 100%;
  height: 60px;
  border: none;
  border-radius: 30px;
  color: var(--blackColor);
  padding: 3px 0 0 25px;
  font-size: 15px;
}
.search-overlay .search-overlay-form form .input-search::-moz-placeholder {
  -moz-transition: var(--transition);
  transition: var(--transition);
  letter-spacing: 0.5px;
  color: var(--blackColor);
}
.search-overlay .search-overlay-form form .input-search::placeholder {
  transition: var(--transition);
  letter-spacing: 0.5px;
  color: var(--blackColor);
}
.search-overlay .search-overlay-form form .input-search:focus::-moz-placeholder {
  color: transparent;
}
.search-overlay .search-overlay-form form .input-search:focus::placeholder {
  color: transparent;
}
.search-overlay .search-overlay-form form button {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 50px;
  color: var(--whiteColor);
  height: 50px;
  border-radius: 50%;
  transition: var(--transition);
  border: none;
  font-size: 20px;
  line-height: 50px;
}
.search-overlay .search-overlay-form form button:hover {
  background-color: var(--blackColor);
  color: var(--whiteColor);
}
.search-overlay.search-overlay-active.search-overlay {
  opacity: 1;
  visibility: visible;
}
.search-overlay.search-overlay-active.search-overlay .search-overlay-layer {
  transform: translateX(0);
}
.search-overlay.search-overlay-active.search-overlay .search-overlay-close {
  opacity: 1;
  visibility: visible;
}
.search-overlay.search-overlay-active.search-overlay .search-overlay-form {
  opacity: 1;
  visibility: visible;
}

/*================================================
Main Banner Area CSS
=================================================*/
.single-banner-box {
  margin-bottom: 30px;
  border-radius: 0 0 15px 15px;
  background-color: var(--whiteColor);
  border-bottom: 3px solid;
  transition: var(--transition);
}
.single-banner-box .image a img {
  transition: var(--transition);
}
.single-banner-box .image:hover a img {
  opacity: 0.7;
}
.single-banner-box .content {
  padding: 30px 25px;
}
.single-banner-box .content .category {
  display: inline-block;
  margin-bottom: 15px;
  background-color: #f5f5f5;
  border-radius: 30px;
  padding: 4px 15px;
  font-weight: 500;
  font-size: 13px;
}
.single-banner-box .content h3 {
  font-size: 32px;
  margin-bottom: 15px;
}
.single-banner-box .content h3 a {
  display: inline-block;
}
.single-banner-box .content .meta {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.single-banner-box .content .meta li {
  display: inline-block;
  margin-right: 15px;
  color: var(--optionalColor);
  position: relative;
  padding-left: 18px;
}
.single-banner-box .content .meta li i {
  position: absolute;
  left: 0;
  top: 3px;
}
.single-banner-box .content .meta li a {
  display: inline-block;
  color: var(--optionalColor);
}
.single-banner-box .content .meta li:last-child {
  margin-right: 0;
}
.single-banner-box:hover {
  border-radius: 0;
}

.banner-item-list {
  margin-bottom: 30px;
}
.banner-item-list .banner-item {
  margin-bottom: 30px;
  border-radius: 0 0 15px 15px;
  background-color: var(--whiteColor);
  border-bottom: 3px solid #d6d6d6;
  transition: var(--transition);
}
.banner-item-list .banner-item .image {
  position: relative;
  border-radius: 0 0 0 15px;
  transition: var(--transition);
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.banner-item-list .banner-item .image img {
  display: none;
}
.banner-item-list .banner-item .image .link-btn {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: block;
  z-index: 1;
  border-radius: 0 0 0 10px;
}
.banner-item-list .banner-item .content {
  padding-top: 21.3px;
  padding-bottom: 21.3px;
  padding-right: 20px;
  padding-left: 20px;
}
.banner-item-list .banner-item .content .category {
  display: inline-block;
  margin-bottom: 12px;
  background-color: #f5f5f5;
  border-radius: 30px;
  padding: 4px 15px;
  font-weight: 500;
  font-size: 13px;
}
.banner-item-list .banner-item .content h3 {
  font-size: 20px;
  margin-bottom: 12px;
}
.banner-item-list .banner-item .content h3 a {
  display: inline-block;
}
.banner-item-list .banner-item .content .meta {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.banner-item-list .banner-item .content .meta li {
  display: inline-block;
  margin-right: 15px;
  color: var(--optionalColor);
  position: relative;
  padding-left: 18px;
}
.banner-item-list .banner-item .content .meta li i {
  position: absolute;
  left: 0;
  top: 3px;
}
.banner-item-list .banner-item .content .meta li a {
  display: inline-block;
  color: var(--optionalColor);
}
.banner-item-list .banner-item .content .meta li:last-child {
  margin-right: 0;
}
.banner-item-list .banner-item:last-child {
  margin-bottom: 0;
}
.banner-item-list .banner-item:hover {
  border-radius: 0;
}
.banner-item-list .banner-item:hover .image {
  border-radius: 0;
}

.banner-area {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 150px;
  padding-bottom: 120px;
}

.banner-content h1 {
  font-size: 40px;
  margin-bottom: 40px;
  color: var(--whiteColor);
  text-align: center;
}
.banner-content .products-review-item {
  border-color: #d6d6d6;
}
.banner-content .products-review-item .image {
  border-radius: 0;
}
.banner-content .products-review-item .image a {
  border-radius: 0;
}
.banner-content .products-review-item .image a img {
  border-radius: 0;
}
.banner-content .nav-tabs {
  border-bottom: none;
  margin-bottom: 40px;
  text-align: center;
  display: block;
  flex-wrap: unset;
}
.banner-content .nav-tabs .nav-item {
  display: inline-block;
  margin-left: 2px;
  margin-right: 2px;
  margin-bottom: 0;
}
.banner-content .nav-tabs .nav-item .nav-link {
  background-color: transparent;
  position: relative;
  z-index: 1;
  border-radius: 30px;
  color: #dad3d3;
  border: none;
  font-size: 15px;
  font-weight: 500;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.banner-content .nav-tabs .nav-item .nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  border-radius: 30px;
  background-color: var(--blackColor);
  opacity: 0.45;
  transition: var(--transition);
}
.banner-content .nav-tabs .nav-item .nav-link:hover, .banner-content .nav-tabs .nav-item .nav-link.active {
  color: var(--whiteColor);
}
.banner-content .nav-tabs .nav-item .nav-link:hover::before, .banner-content .nav-tabs .nav-item .nav-link.active::before {
  opacity: 1;
}

.banner-wrapper-inner .review-thumbnail-box {
  border-radius: 0;
  margin-bottom: 0;
  border: none;
}
.banner-wrapper-inner .review-thumbnail-box img {
  border-radius: 0;
}
.banner-wrapper-inner .review-thumbnail-box .content {
  border-radius: 0;
}

.banner-wrapper-item-list {
  padding-left: 25px;
  padding-top: 25px;
  padding-bottom: 25px;
  padding-right: 25px;
}
.banner-wrapper-item-list .widget-review-box {
  margin-bottom: 30px;
}
.banner-wrapper-item-list .widget-review-box .image {
  position: relative;
  border-radius: 0 0 15px 15px;
  transition: var(--transition);
  border-bottom: 3px solid #d6d6d6;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.banner-wrapper-item-list .widget-review-box .image img {
  display: none;
}
.banner-wrapper-item-list .widget-review-box .image .link-btn {
  position: absolute;
  left: 0;
  right: 0;
  border-radius: 0 0 15px 15px;
  top: 0;
  bottom: 0;
  display: block;
  z-index: 1;
}
.banner-wrapper-item-list .widget-review-box .content {
  padding: 10px 0 13px 20px;
}
.banner-wrapper-item-list .widget-review-box .content .category {
  display: inline-block;
  margin-bottom: 12px;
  background-color: #f5f5f5;
  border-radius: 30px;
  padding: 4px 15px;
  font-weight: 600;
}
.banner-wrapper-item-list .widget-review-box .content h3 {
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1.4;
}
.banner-wrapper-item-list .widget-review-box .content h3 a {
  display: inline-block;
  color: var(--whiteColor);
}
.banner-wrapper-item-list .widget-review-box .content .meta {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.banner-wrapper-item-list .widget-review-box .content .meta li {
  display: inline-block;
  margin-right: 15px;
  color: #ede4e4;
  position: relative;
  padding-left: 18px;
}
.banner-wrapper-item-list .widget-review-box .content .meta li i {
  position: absolute;
  left: 0;
  top: 3.5px;
}
.banner-wrapper-item-list .widget-review-box .content .meta li a {
  display: inline-block;
  color: var(--optionalColor);
}
.banner-wrapper-item-list .widget-review-box .content .meta li:last-child {
  margin-right: 0;
}
.banner-wrapper-item-list .widget-review-box:last-child {
  margin-bottom: 0;
}

/*================================================
About Area CSS
=================================================*/
.about-content h2 {
  font-size: 28px;
  margin-top: 25px;
  margin-bottom: 15px;
}
.about-content h2:first-child {
  margin-top: 0;
}
.about-content h3 {
  font-size: 20px;
  margin-top: 25px;
  margin-bottom: 15px;
}
.about-content h3:first-child {
  margin-top: 0;
}
.about-content p a:hover {
  color: var(--blackColor);
}
.about-content p strong {
  color: var(--blackColor);
}
.about-content ul li {
  margin-bottom: 12px;
  color: #585d81;
  font-size: 15.5px;
}
.about-content ul li:last-child {
  margin-bottom: 0;
}

/*================================================
Products Review Area CSS
=================================================*/
.products-review-area .col-lg-8 .section-title {
  margin-bottom: 30px;
}
.products-review-area.bg-main-color .section-title {
  border-color: var(--whiteColor);
}
.products-review-area.bg-main-color .section-title h2 {
  color: var(--whiteColor);
}
.products-review-area.bg-main-color .section-title .link-btn {
  color: var(--whiteColor);
}
.products-review-area.bg-main-color .section-title .link-btn::before {
  background-color: var(--whiteColor);
}

.review-thumbnail-box {
  position: relative;
  border-radius: 0 0 15px 15px;
  border-bottom: 3px solid #d6d6d6;
  transition: var(--transition);
  overflow: hidden;
  margin-bottom: 30px;
}
.review-thumbnail-box img {
  border-radius: 0 0 15px 15px;
  transition: var(--transition);
}
.review-thumbnail-box .content {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  bottom: 0;
  height: auto;
  border-radius: 0 0 15px 15px;
  padding: 0 30px 30px;
}
.review-thumbnail-box .content .category {
  display: inline-block;
  margin-bottom: 15px;
  background-color: #f5f5f5;
  border-radius: 30px;
  padding: 4px 15px;
  font-weight: 500;
  font-size: 13px;
}
.review-thumbnail-box .content h3 {
  font-size: 32px;
  margin-bottom: 15px;
  color: var(--whiteColor);
}
.review-thumbnail-box .content h3 a {
  display: inline-block;
  color: var(--whiteColor);
}
.review-thumbnail-box .content .meta {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.review-thumbnail-box .content .meta li {
  display: inline-block;
  margin-right: 15px;
  color: var(--optionalColor);
  position: relative;
  padding-left: 18px;
}
.review-thumbnail-box .content .meta li i {
  position: absolute;
  left: 0;
  top: 3px;
}
.review-thumbnail-box .content .meta li a {
  display: inline-block;
  color: var(--optionalColor);
}
.review-thumbnail-box .content .meta li:last-child {
  margin-right: 0;
}
.review-thumbnail-box .link-btn {
  display: block;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 2;
  border-radius: 0 0 15px 15px;
}
.review-thumbnail-box:hover {
  border-radius: 0;
}
.review-thumbnail-box:hover img {
  border-radius: 0;
  transform: scale(1.03);
}

.products-review-list {
  margin-bottom: 30px;
}
.products-review-list .single-products-review-box {
  margin-bottom: 33px;
}
.products-review-list .col-lg-12:last-child .single-products-review-box {
  margin-bottom: 0;
}

.single-products-review-box {
  position: relative;
  border-radius: 0 0 15px 15px;
  border-bottom: 3px solid #d6d6d6;
  transition: var(--transition);
  overflow: hidden;
  margin-bottom: 30px;
}
.single-products-review-box img {
  border-radius: 0 0 15px 15px;
  transition: var(--transition);
}
.single-products-review-box .content {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  bottom: 0;
  height: auto;
  border-radius: 0 0 15px 15px;
  padding: 0 25px 25px;
}
.single-products-review-box .content .category {
  display: inline-block;
  margin-bottom: 15px;
  background-color: #f5f5f5;
  border-radius: 30px;
  padding: 4px 15px;
  font-weight: 500;
  font-size: 13px;
}
.single-products-review-box .content h3 {
  font-size: 20px;
  margin-bottom: 15px;
  line-height: 1.3;
}
.single-products-review-box .content h3 a {
  display: inline-block;
  color: var(--whiteColor);
}
.single-products-review-box .content .meta {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.single-products-review-box .content .meta li {
  display: inline-block;
  margin-right: 15px;
  color: var(--optionalColor);
  position: relative;
  padding-left: 18px;
}
.single-products-review-box .content .meta li i {
  position: absolute;
  left: 0;
  top: 3px;
}
.single-products-review-box .content .meta li a {
  display: inline-block;
  color: var(--optionalColor);
}
.single-products-review-box .content .meta li:last-child {
  margin-right: 0;
}
.single-products-review-box .link-btn {
  display: block;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 2;
  border-radius: 0 0 15px 15px;
}
.single-products-review-box:hover {
  border-radius: 0;
}
.single-products-review-box:hover img {
  border-radius: 0;
  transform: scale(1.03);
}

.single-products-review-item {
  margin-bottom: 30px;
  border-radius: 0 0 15px 15px;
  background-color: var(--whiteColor);
  border-bottom: 3px solid #d6d6d6;
  transition: var(--transition);
}
.single-products-review-item .image {
  position: relative;
  border-radius: 0 0 0 15px;
  transition: var(--transition);
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.single-products-review-item .image img {
  display: none;
}
.single-products-review-item .image .link-btn {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: block;
  z-index: 1;
  border-radius: 0 0 0 10px;
}
.single-products-review-item .content {
  padding: 25px 20px;
}
.single-products-review-item .content .category {
  display: inline-block;
  margin-bottom: 12px;
  background-color: #f5f5f5;
  border-radius: 30px;
  padding: 4px 15px;
  font-weight: 500;
  font-size: 13px;
}
.single-products-review-item .content h3 {
  font-size: 20px;
  margin-bottom: 12px;
  line-height: 1.3;
}
.single-products-review-item .content h3 a {
  display: inline-block;
}
.single-products-review-item .content .meta {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.single-products-review-item .content .meta li {
  display: inline-block;
  margin-right: 15px;
  color: var(--optionalColor);
  position: relative;
  padding-left: 18px;
}
.single-products-review-item .content .meta li i {
  position: absolute;
  left: 0;
  top: 3px;
}
.single-products-review-item .content .meta li a {
  display: inline-block;
  color: var(--optionalColor);
}
.single-products-review-item .content .meta li:last-child {
  margin-right: 0;
}
.single-products-review-item.bg-f9f9ff {
  background-color: #f9f9ff;
}
.single-products-review-item:hover {
  border-radius: 0;
}
.single-products-review-item:hover .image {
  border-radius: 0;
}

.card-bg-f9f9ff .single-products-review-item {
  background-color: #f9f9ff;
}

.products-review-box {
  margin-bottom: 30px;
}
.products-review-box .image {
  border-radius: 0 0 15px 15px;
  border-bottom: 3px solid #d6d6d6;
  overflow: hidden;
  transition: var(--transition);
}
.products-review-box .image img {
  border-radius: 0 0 15px 15px;
  transition: var(--transition);
}
.products-review-box .image:hover {
  border-radius: 0;
}
.products-review-box .image:hover img {
  border-radius: 0;
}
.products-review-box .content {
  margin-top: 22px;
}
.products-review-box .content .category {
  display: inline-block;
  margin-bottom: 13px;
  background-color: #f5f5f5;
  border-radius: 30px;
  padding: 4px 15px;
  font-weight: 500;
  font-size: 13px;
  text-transform: capitalize;
}
.products-review-box .content h3 {
  font-size: 20px;
  margin-bottom: 13px;
  line-height: 1.3;
}
.products-review-box .content h3 a {
  display: inline-block;
}
.products-review-box .content .meta {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.products-review-box .content .meta li {
  display: inline-block;
  margin-right: 15px;
  color: var(--optionalColor);
  position: relative;
  padding-left: 18px;
}
.products-review-box .content .meta li i {
  position: absolute;
  left: 0;
  top: 3px;
}
.products-review-box .content .meta li a {
  display: inline-block;
  color: var(--optionalColor);
}
.products-review-box .content .meta li:last-child {
  margin-right: 0;
}

.products-review-item {
  margin-bottom: 30px;
  border-radius: 0 0 15px 15px;
  background-color: var(--whiteColor);
  border-bottom: 3px solid;
  transition: var(--transition);
}
.products-review-item .image {
  border-radius: 0 0 15px 15px;
}
.products-review-item .image a {
  border-radius: 0 0 15px 15px;
}
.products-review-item .image a img {
  border-radius: 0 0 15px 15px;
  transition: var(--transition);
}
.products-review-item .image:hover a img {
  opacity: 0.7;
}
.products-review-item .content {
  padding: 25px 20px 20px 20px;
}
.products-review-item .content .category {
  display: inline-block;
  margin-bottom: 15px;
  background-color: #f5f5f5;
  border-radius: 30px;
  padding: 4px 15px;
  font-weight: 500;
  font-size: 13px;
}
.products-review-item .content h3 {
  font-size: 22px;
  margin-bottom: 15px;
  line-height: 1.3;
}
.products-review-item .content h3 a {
  display: inline-block;
}
.products-review-item .content .meta {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.products-review-item .content .meta li {
  display: inline-block;
  margin-right: 15px;
  color: var(--optionalColor);
  position: relative;
  padding-left: 18px;
}
.products-review-item .content .meta li i {
  position: absolute;
  left: 0;
  top: 3px;
}
.products-review-item .content .meta li a {
  display: inline-block;
  color: var(--optionalColor);
}
.products-review-item .content .meta li:last-child {
  margin-right: 0;
}
.products-review-item:hover {
  border-radius: 0;
}

.single-latest-reviews-box {
  margin-bottom: 30px;
}
.single-latest-reviews-box .image {
  position: relative;
  border-radius: 0 0 15px 15px;
  transition: var(--transition);
  border-bottom: 3px solid #d6d6d6;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.single-latest-reviews-box .image img {
  border-radius: 0 0 15px 15px;
  display: none;
}
.single-latest-reviews-box .image .link-btn {
  position: absolute;
  left: 0;
  right: 0;
  border-radius: 0 0 15px 15px;
  top: 0;
  bottom: 0;
  display: block;
  z-index: 1;
}
.single-latest-reviews-box .content {
  padding-left: 25px;
  padding-right: 15px;
  padding-top: 20px;
  padding-bottom: 25px;
}
.single-latest-reviews-box .content .category {
  display: inline-block;
  margin-bottom: 15px;
  background-color: #f5f5f5;
  border-radius: 30px;
  padding: 4px 15px;
  font-weight: 500;
  font-size: 13px;
}
.single-latest-reviews-box .content h3 {
  font-size: 22px;
  margin-bottom: 15px;
  line-height: 1.3;
}
.single-latest-reviews-box .content h3 a {
  display: inline-block;
}
.single-latest-reviews-box .content p {
  margin-bottom: 10px;
}
.single-latest-reviews-box .content .meta {
  padding-left: 0;
  margin-bottom: 12px;
  list-style-type: none;
}
.single-latest-reviews-box .content .meta li {
  display: inline-block;
  margin-right: 15px;
  color: var(--optionalColor);
  position: relative;
  padding-left: 18px;
}
.single-latest-reviews-box .content .meta li i {
  position: absolute;
  left: 0;
  top: 3px;
}
.single-latest-reviews-box .content .meta li a {
  display: inline-block;
  color: var(--optionalColor);
}
.single-latest-reviews-box .content .meta li:last-child {
  margin-right: 0;
}
.single-latest-reviews-box:hover .image {
  border-radius: 0;
}
.single-latest-reviews-box:last-child {
  margin-bottom: 0;
}

.tech-gadgets-reviews-list {
  padding-right: 15px;
}
.tech-gadgets-reviews-list .review-thumbnail-box .content {
  padding: 0 20px 20px;
}
.tech-gadgets-reviews-list .review-thumbnail-box .content h3 {
  font-size: 22px;
  margin-bottom: 13px;
  line-height: 1.3;
}
.tech-gadgets-reviews-list .tech-gadgets-ads {
  margin-top: 10px;
}

.products-reviews-list {
  margin-bottom: 30px;
}
.products-reviews-list .widget-review-box {
  margin-bottom: 30px;
}
.products-reviews-list .widget-review-box .image {
  position: relative;
  border-radius: 0 0 15px 15px;
  transition: var(--transition);
  border-bottom: 3px solid #d6d6d6;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.products-reviews-list .widget-review-box .image img {
  display: none;
}
.products-reviews-list .widget-review-box .image .link-btn {
  position: absolute;
  left: 0;
  right: 0;
  border-radius: 0 0 15px 15px;
  top: 0;
  bottom: 0;
  display: block;
  z-index: 1;
}
.products-reviews-list .widget-review-box .content {
  padding: 8px 0 7px 20px;
}
.products-reviews-list .widget-review-box .content .category {
  display: inline-block;
  margin-bottom: 12px;
  background-color: #f5f5f5;
  border-radius: 30px;
  padding: 4px 15px;
  font-weight: 500;
  font-size: 13px;
}
.products-reviews-list .widget-review-box .content h3 {
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1.4;
}
.products-reviews-list .widget-review-box .content h3 a {
  display: inline-block;
}
.products-reviews-list .widget-review-box .content .meta {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.products-reviews-list .widget-review-box .content .meta li {
  display: inline-block;
  margin-right: 15px;
  color: var(--optionalColor);
  position: relative;
  padding-left: 18px;
}
.products-reviews-list .widget-review-box .content .meta li i {
  position: absolute;
  left: 0;
  top: 3px;
}
.products-reviews-list .widget-review-box .content .meta li a {
  display: inline-block;
  color: var(--optionalColor);
}
.products-reviews-list .widget-review-box .content .meta li:last-child {
  margin-right: 0;
}
.products-reviews-list .widget-review-box:last-child {
  margin-bottom: 0;
}

.products-reviews-slides.owl-theme .owl-nav {
  margin-top: 0;
}
.products-reviews-slides.owl-theme .owl-nav [class*=owl-] {
  color: var(--whiteColor);
  font-size: 25px;
  margin: 0;
  padding: 0;
  background: rgba(22, 28, 45, 0.45);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  transition: var(--transition);
  position: absolute;
  left: -60px;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}
.products-reviews-slides.owl-theme .owl-nav [class*=owl-] i {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.products-reviews-slides.owl-theme .owl-nav [class*=owl-].owl-next {
  left: auto;
  right: -60px;
}
.products-reviews-slides.owl-theme .owl-nav [class*=owl-]:hover {
  background-color: var(--whiteColor);
  color: var(--blackColor);
}
.products-reviews-slides.owl-theme .owl-nav [class*=owl-].disabled {
  background: rgba(22, 28, 45, 0.45);
  cursor: not-allowed;
  color: var(--whiteColor);
}

.products-reviews-slides2.owl-theme .owl-nav {
  margin-top: 0;
}
.products-reviews-slides2.owl-theme .owl-nav [class*=owl-] {
  color: var(--whiteColor);
  font-size: 25px;
  margin: 0;
  padding: 0;
  background: rgba(22, 28, 45, 0.45);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  transition: var(--transition);
  position: absolute;
  left: -60px;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}
.products-reviews-slides2.owl-theme .owl-nav [class*=owl-] i {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.products-reviews-slides2.owl-theme .owl-nav [class*=owl-].owl-next {
  left: auto;
  right: -60px;
}
.products-reviews-slides2.owl-theme .owl-nav [class*=owl-]:hover {
  background-color: var(--whiteColor);
  color: var(--blackColor);
}
.products-reviews-slides2.owl-theme .owl-nav [class*=owl-].disabled {
  background: rgba(22, 28, 45, 0.45);
  cursor: not-allowed;
  color: var(--whiteColor);
}

/*================================================
Products Review Details Area CSS
=================================================*/
.article-details-desc .article-image img {
  width: 100%;
}
.article-details-desc .article-image-slides.owl-theme .owl-nav {
  margin-top: 0;
}
.article-details-desc .article-image-slides.owl-theme .owl-nav [class*=owl-] {
  top: 50%;
  margin: 0;
  padding: 0;
  left: 20px;
  width: 45px;
  height: 45px;
  font-size: 30px;
  color: #87a1c1;
  line-height: 45px;
  position: absolute;
  transform: translateY(-50%);
  background: var(--whiteColor);
  transition: var(--transition);
  border-radius: 50%;
  border-style: solid;
  border-color: var(--whiteColor);
  border-width: 1.5px;
}
.article-details-desc .article-image-slides.owl-theme .owl-nav [class*=owl-].owl-next {
  left: auto;
  right: 20px;
}
.article-details-desc .article-image-slides.owl-theme .owl-nav [class*=owl-]:hover {
  color: var(--whiteColor);
}
.article-details-desc .article-video iframe {
  width: 100%;
  height: 400px;
  border: none !important;
}
.article-details-desc .puva-article-content .features-list {
  padding-left: 0;
  list-style-type: none;
  margin-top: 25px;
  margin-bottom: 30px;
}
.article-details-desc .puva-article-content .features-list li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 26px;
  color: #585d81;
  font-size: 15.5px;
}
.article-details-desc .puva-article-content .features-list li i {
  display: inline-block;
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 0;
}
.article-details-desc .puva-article-content .features-list li:last-child {
  margin-bottom: 0;
}
.article-details-desc .article-footer {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #eeeeee;
  padding-top: 30px;
  margin-top: 30px;
}
.article-details-desc .article-footer .article-tags {
  flex: 0 0 50%;
  max-width: 50%;
  color: var(--optionalColor);
}
.article-details-desc .article-footer .article-tags span {
  display: inline-block;
  color: var(--blackColor);
  margin-right: 3px;
  position: relative;
  top: 3px;
  font-size: 18px;
}
.article-details-desc .article-footer .article-tags a {
  display: inline-block;
  font-weight: 600;
}
.article-details-desc .article-footer .article-share {
  flex: 0 0 50%;
  max-width: 50%;
}
.article-details-desc .article-footer .article-share .social {
  padding-left: 0;
  list-style-type: none;
  text-align: right;
  margin-bottom: 0;
}
.article-details-desc .article-footer .article-share .social li {
  display: inline-block;
}
.article-details-desc .article-footer .article-share .social li span {
  display: inline-block;
  margin-right: 3px;
  font-weight: 600;
  position: relative;
  top: -1px;
}
.article-details-desc .article-footer .article-share .social li a {
  display: block;
  width: 32px;
  height: 32px;
  line-height: 33px;
  border-radius: 50%;
  color: var(--whiteColor);
  border: 1px solid;
  text-align: center;
  font-size: 17px;
  margin-left: 2px;
}
.article-details-desc .article-footer .article-share .social li a:hover, .article-details-desc .article-footer .article-share .social li a:focus {
  background-color: transparent;
}
.article-details-desc .article-footer .article-share .social li a.facebook {
  background-color: #3b5998;
  border-color: #3b5998;
  color: var(--whiteColor);
}
.article-details-desc .article-footer .article-share .social li a.facebook:hover, .article-details-desc .article-footer .article-share .social li a.facebook:focus {
  color: #3b5998;
  background-color: transparent;
}
.article-details-desc .article-footer .article-share .social li a.twitter {
  background-color: #1da1f2;
  border-color: #1da1f2;
  color: var(--whiteColor);
}
.article-details-desc .article-footer .article-share .social li a.twitter:hover, .article-details-desc .article-footer .article-share .social li a.twitter:focus {
  color: #1da1f2;
  background-color: transparent;
}
.article-details-desc .article-footer .article-share .social li a.linkedin {
  background-color: #007bb5;
  border-color: #007bb5;
  color: var(--whiteColor);
}
.article-details-desc .article-footer .article-share .social li a.linkedin:hover, .article-details-desc .article-footer .article-share .social li a.linkedin:focus {
  color: #007bb5;
  background-color: transparent;
}
.article-details-desc .article-footer .article-share .social li a.instagram {
  background-color: #c13584;
  border-color: #c13584;
  color: var(--whiteColor);
}
.article-details-desc .article-footer .article-share .social li a.instagram:hover, .article-details-desc .article-footer .article-share .social li a.instagram:focus {
  color: #c13584;
  background-color: transparent;
}
.article-details-desc .article-author {
  margin-top: 30px;
  border-radius: 5px;
  background: #f9f9f9;
}
.article-details-desc .article-author .author-profile-header {
  height: 115px;
  border-radius: 5px 5px 0 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../../assets/img/bg.jpg);
}
.article-details-desc .article-author .author-profile {
  padding: 0 25px 25px;
}
.article-details-desc .article-author .author-profile .author-profile-title {
  position: relative;
  z-index: 1;
  margin-top: -45px;
}
.article-details-desc .article-author .author-profile .author-profile-title img {
  display: inline-block;
  border: 3px solid var(--whiteColor);
  width: 100px;
  height: 100px;
  margin-bottom: 25px;
}
.article-details-desc .article-author .author-profile .author-profile-title h4 {
  margin-bottom: 8px;
  font-size: 20px;
}
.article-details-desc .article-author .author-profile .author-profile-title span {
  display: block;
  margin-bottom: 12px;
  font-size: 15px;
  color: #585d81;
}

.cons-list h4 {
  background-color: #bf000a !important;
}
.cons-list i {
  color: #bf000a !important;
}

.fullwidth-article-image {
  position: relative;
  z-index: 1;
  text-align: center;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 150px;
  padding-bottom: 150px;
  margin-bottom: 30px;
}
.fullwidth-article-image .content .category {
  display: inline-block;
  margin-bottom: 17px;
  background-color: #f5f5f5;
  border-radius: 30px;
  padding: 4px 15px;
  font-weight: 600;
}
.fullwidth-article-image .content h3, .fullwidth-article-image .content h1, .fullwidth-article-image .content h2, .fullwidth-article-image .content h4, .fullwidth-article-image .content h5, .fullwidth-article-image .content h6 {
  font-size: 40px;
  margin-bottom: 15px;
  color: var(--whiteColor);
}
.fullwidth-article-image .content h3 a, .fullwidth-article-image .content h1 a, .fullwidth-article-image .content h2 a, .fullwidth-article-image .content h4 a, .fullwidth-article-image .content h5 a, .fullwidth-article-image .content h6 a {
  display: inline-block;
  color: var(--whiteColor);
}
.fullwidth-article-image .content .meta {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.fullwidth-article-image .content .meta li {
  display: inline-block;
  color: var(--whiteColor);
  position: relative;
  padding-left: 18px;
  margin-left: 8px;
  margin-right: 8px;
}
.fullwidth-article-image .content .meta li i {
  position: absolute;
  left: 0;
  top: 3.5px;
}
.fullwidth-article-image .content .meta li a {
  display: inline-block;
  color: var(--whiteColor);
}
.fullwidth-article-image .content .meta li a:hover {
  color: var(--whiteColor);
}
.fullwidth-article-image .content .meta li:last-child {
  margin-right: 0;
}
.fullwidth-article-image .content .meta li:first-child {
  margin-left: 0;
}
.fullwidth-article-image::before {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0.6;
  content: "";
  position: absolute;
  background-color: #000000;
}

/*================================================
Video Review Area CSS
=================================================*/
.video-review-area {
  background-color: var(--blackColor);
}
.video-review-area .section-title h2 {
  color: var(--whiteColor);
}
.video-review-area .section-title .link-btn {
  color: var(--whiteColor);
}

.review-video-box {
  position: relative;
  border-radius: 0 0 15px 15px;
  border-bottom: 3px solid #d6d6d6;
  transition: var(--transition);
  overflow: hidden;
  margin-bottom: 30px;
}
.review-video-box img {
  border-radius: 0 0 15px 15px;
  transition: var(--transition);
}
.review-video-box .video-btn {
  position: absolute;
  left: 50%;
  top: 40%;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  font-size: 60px;
  display: inline-block;
  text-align: center;
  transform: translateX(-50%) translateY(-40%);
  background-color: rgba(255, 255, 255, 0.85);
  z-index: 3;
}
.review-video-box .video-btn i {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  padding-left: 5px;
}
.review-video-box .video-btn:hover {
  color: var(--whiteColor);
}
.review-video-box .content {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  bottom: 0;
  height: auto;
  border-radius: 0 0 15px 15px;
  padding: 0 30px 30px;
}
.review-video-box .content h3 {
  font-size: 32px;
  margin-bottom: 15px;
}
.review-video-box .content h3 a {
  display: inline-block;
  color: var(--whiteColor);
}
.review-video-box .content .meta {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.review-video-box .content .meta li {
  display: inline-block;
  margin-right: 15px;
  color: var(--optionalColor);
  position: relative;
  padding-left: 18px;
}
.review-video-box .content .meta li i {
  position: absolute;
  left: 0;
  top: 3px;
}
.review-video-box .content .meta li a {
  display: inline-block;
  color: var(--optionalColor);
}
.review-video-box .content .meta li:last-child {
  margin-right: 0;
}
.review-video-box .link-btn {
  display: block;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 2;
  border-radius: 0 0 15px 15px;
}
.review-video-box:hover {
  border-radius: 0;
}
.review-video-box:hover img {
  border-radius: 0;
  transform: scale(1.03);
}

.review-video-list {
  margin-bottom: 30px;
}

.single-video-review-box {
  margin-bottom: 30px;
}
.single-video-review-box .image {
  position: relative;
  border-radius: 0 0 15px 15px;
  transition: var(--transition);
  border-bottom: 3px solid #d6d6d6;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.single-video-review-box .image img {
  border-radius: 0 0 15px 15px;
  display: none;
}
.single-video-review-box .image .video-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 32px;
  display: inline-block;
  text-align: center;
  transform: translateX(-50%) translateY(-50%);
  background-color: rgba(255, 255, 255, 0.85);
}
.single-video-review-box .image .video-btn i {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  padding-left: 3px;
}
.single-video-review-box .image .video-btn:hover {
  color: var(--whiteColor);
}
.single-video-review-box .content {
  padding: 11px 0 11px 20px;
}
.single-video-review-box .content .category {
  display: inline-block;
  margin-bottom: 12px;
  background-color: #f5f5f5;
  border-radius: 30px;
  padding: 4px 15px;
  font-weight: 600;
}
.single-video-review-box .content h3 {
  font-size: 18px;
  margin-bottom: 12px;
  line-height: 1.3;
}
.single-video-review-box .content h3 a {
  display: inline-block;
  color: var(--whiteColor);
}
.single-video-review-box .content .meta {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.single-video-review-box .content .meta li {
  display: inline-block;
  margin-right: 15px;
  color: var(--optionalColor);
  position: relative;
  padding-left: 18px;
}
.single-video-review-box .content .meta li i {
  position: absolute;
  left: 0;
  top: 3px;
}
.single-video-review-box .content .meta li a {
  display: inline-block;
  color: var(--optionalColor);
}
.single-video-review-box .content .meta li:last-child {
  margin-right: 0;
}
.single-video-review-box:last-child {
  margin-bottom: 0;
}

/*================================================
Widget Sidebar Area CSS
=================================================*/
.page-widget-area {
  padding-left: 15px;
}
.page-widget-area .widget {
  margin-bottom: 40px;
}
.page-widget-area .widget .widget-title {
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 12px;
  border-bottom: 1px solid #d6d6d6;
  font-size: 24px;
}
.page-widget-area .widget .widget-title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 1px;
  bottom: -1px;
}
.page-widget-area .widget_search form {
  position: relative;
}
.page-widget-area .widget_search form label {
  display: block;
  margin-bottom: 0;
}
.page-widget-area .widget_search form .screen-reader-text {
  display: none;
}
.page-widget-area .widget_search form .search-field {
  height: 50px;
  display: block;
  width: 100%;
  border: none;
  border-radius: 5px;
  padding: 2px 0 0 15px;
  color: var(--blackColor);
  background-color: #f2f4f5;
  transition: var(--transition);
  font-size: 15px;
  font-weight: 400;
}
.page-widget-area .widget_search form .search-field::-moz-placeholder {
  -moz-transition: var(--transition);
  transition: var(--transition);
  color: var(--optionalColor);
}
.page-widget-area .widget_search form .search-field::placeholder {
  transition: var(--transition);
  color: var(--optionalColor);
}
.page-widget-area .widget_search form .search-field:focus::-moz-placeholder {
  color: transparent;
}
.page-widget-area .widget_search form .search-field:focus::placeholder {
  color: transparent;
}
.page-widget-area .widget_search form button {
  top: 5px;
  right: 5px;
  padding: 0;
  width: 40px;
  border: none;
  height: 40px;
  font-size: 20px;
  position: absolute;
  transition: var(--transition);
  background-color: var(--whiteColor);
}
.page-widget-area .widget_search form button i {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.page-widget-area .widget_search form button:hover {
  border-radius: 5px;
  color: var(--whiteColor);
}
.page-widget-area .widget_puva_posts_thumb {
  position: relative;
  overflow: hidden;
}
.page-widget-area .widget_puva_posts_thumb .item {
  margin-bottom: 30px;
  position: relative;
  padding-left: 95px;
}
.page-widget-area .widget_puva_posts_thumb .item .thumb {
  top: 0;
  left: 0;
  width: 80px;
  float: unset;
  height: 100%;
  display: block;
  position: absolute;
  border-radius: 0 0 15px 15px;
  border-bottom: 3px solid #d6d6d6;
}
.page-widget-area .widget_puva_posts_thumb .item .thumb .fullimage {
  width: 80px;
  height: 100%;
  display: inline-block;
  border-radius: 0 0 15px 15px;
  background-size: cover !important;
  background-repeat: no-repeat;
  background-position: center center !important;
}
.page-widget-area .widget_puva_posts_thumb .item .thumb::before, .page-widget-area .widget_puva_posts_thumb .item .thumb::after {
  transition: all 0.8s cubic-bezier(0.2, 1, 0.22, 1);
  content: "";
  background-color: var(--whiteColor);
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
}
.page-widget-area .widget_puva_posts_thumb .item .thumb::before {
  width: 40px;
  height: 1px;
  left: 100%;
}
.page-widget-area .widget_puva_posts_thumb .item .thumb::after {
  height: 40px;
  width: 1px;
  top: 0;
}
.page-widget-area .widget_puva_posts_thumb .item .info .title {
  margin-bottom: 10px;
  line-height: 1.3;
  font-size: 16px;
  font-weight: 600;
}
.page-widget-area .widget_puva_posts_thumb .item .info .title a {
  display: inline-block;
}
.page-widget-area .widget_puva_posts_thumb .item .info .meta {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.page-widget-area .widget_puva_posts_thumb .item .info .meta li {
  display: inline-block;
  margin-right: 15px;
  color: var(--optionalColor);
  position: relative;
  padding-left: 18px;
}
.page-widget-area .widget_puva_posts_thumb .item .info .meta li i {
  position: absolute;
  left: 0;
  top: 3px;
}
.page-widget-area .widget_puva_posts_thumb .item .info .meta li a {
  display: inline-block;
  color: var(--optionalColor);
}
.page-widget-area .widget_puva_posts_thumb .item .info .meta li:last-child {
  margin-right: 0;
}
.page-widget-area .widget_puva_posts_thumb .item:last-child {
  margin-bottom: 0;
}
.page-widget-area .widget_puva_posts_thumb .item:hover .thumb::before, .page-widget-area .widget_puva_posts_thumb .item:hover .thumb::after {
  opacity: 1;
  top: 50%;
  left: 50%;
}
.page-widget-area .widget_socials_link ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.page-widget-area .widget_socials_link ul li {
  margin-bottom: 15px;
}
.page-widget-area .widget_socials_link ul li a {
  display: block;
  background-color: #f5f5f5;
  border-radius: 0 0 15px 15px;
  border-bottom: 3px solid #d6d6d6;
  position: relative;
  color: var(--blackColor);
  padding-top: 15px;
  padding-bottom: 12px;
  padding-right: 15px;
  padding-left: 90px;
  font-size: 16px;
  font-weight: 500;
}
.page-widget-area .widget_socials_link ul li a i {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 70px;
  color: var(--whiteColor);
  border-radius: 0 0 0 15px;
  font-size: 22px;
  text-align: center;
  transition: var(--transition);
}
.page-widget-area .widget_socials_link ul li a i::before {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.page-widget-area .widget_socials_link ul li a i.fa-facebook {
  background-color: #485fb3;
}
.page-widget-area .widget_socials_link ul li a i.fa-twitter {
  background-color: #00afe1;
}
.page-widget-area .widget_socials_link ul li a i.fa-linkedin {
  background-color: #0e76a8;
}
.page-widget-area .widget_socials_link ul li a:hover {
  border-radius: 0;
}
.page-widget-area .widget_socials_link ul li a:hover i {
  border-radius: 0;
}
.page-widget-area .widget_socials_link ul li:last-child {
  margin-bottom: 0;
}
.page-widget-area .widget_buy_now {
  position: relative;
  text-align: center;
  border-radius: 0 0 15px 15px;
  border-bottom: 3px solid #d6d6d6;
}
.page-widget-area .widget_buy_now img {
  border-radius: 0 0 15px 15px;
}
.page-widget-area .widget_buy_now .content {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--whiteColor);
  padding: 30px 25px;
  max-width: 230px;
  margin-left: auto;
  margin-right: auto;
}
.page-widget-area .widget_buy_now .content img {
  border-radius: 0;
}
.page-widget-area .widget_buy_now .content p {
  line-height: 1.6;
  margin-top: 15px;
  margin-bottom: 15px;
}
.page-widget-area .widget_buy_now .content .buy-now-btn {
  border: none;
  color: var(--whiteColor);
  border-radius: 5px;
  transition: var(--transition);
  display: inline-block;
  padding: 10px 35px;
  background-color: var(--blackColor);
  font-size: 16px;
  font-weight: 500;
}
.page-widget-area .widget_buy_now .content .buy-now-btn:hover {
  color: var(--whiteColor);
}
.page-widget-area .widget_buy_now .content::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border: 1px solid var(--whiteColor);
  margin: -15px;
  z-index: -1;
}
.page-widget-area .widget_categories .row {
  margin-left: -8px;
  margin-right: -8px;
}
.page-widget-area .widget_categories .row .col-lg-6 {
  padding-left: 8px;
  padding-right: 8px;
}
.page-widget-area .widget_categories .single-categories-box {
  margin-bottom: 16px;
}
.page-widget-area .widget_categories .categories-slides.owl-theme {
  margin-bottom: -16px;
}
.page-widget-area .widget_categories .categories-slides.owl-theme .owl-nav {
  position: absolute;
  right: 0;
  top: -71px;
}
.page-widget-area .widget_latest_review {
  position: relative;
  overflow: hidden;
}
.page-widget-area .widget_latest_review .item {
  margin-bottom: 30px;
  position: relative;
  padding-left: 95px;
}
.page-widget-area .widget_latest_review .item .thumb {
  top: 0;
  left: 0;
  width: 80px;
  float: unset;
  height: 100%;
  display: block;
  position: absolute;
  border-radius: 0 0 15px 15px;
  border-bottom: 3px solid #d6d6d6;
}
.page-widget-area .widget_latest_review .item .thumb .fullimage {
  width: 80px;
  height: 100%;
  display: inline-block;
  border-radius: 0 0 15px 15px;
  background-size: cover !important;
  background-repeat: no-repeat;
  background-position: center center !important;
}
.page-widget-area .widget_latest_review .item .thumb::before, .page-widget-area .widget_latest_review .item .thumb::after {
  transition: all 0.8s cubic-bezier(0.2, 1, 0.22, 1);
  content: "";
  background-color: var(--whiteColor);
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
}
.page-widget-area .widget_latest_review .item .thumb::before {
  width: 40px;
  height: 1px;
  left: 100%;
}
.page-widget-area .widget_latest_review .item .thumb::after {
  height: 40px;
  width: 1px;
  top: 0;
}
.page-widget-area .widget_latest_review .item .info .title {
  margin-bottom: 10px;
  line-height: 1.3;
  font-size: 16px;
  font-weight: 600;
}
.page-widget-area .widget_latest_review .item .info .title a {
  display: inline-block;
}
.page-widget-area .widget_latest_review .item .info .meta {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.page-widget-area .widget_latest_review .item .info .meta li {
  display: inline-block;
  margin-right: 15px;
  color: var(--optionalColor);
  position: relative;
  padding-left: 18px;
}
.page-widget-area .widget_latest_review .item .info .meta li i {
  position: absolute;
  left: 0;
  top: 3px;
}
.page-widget-area .widget_latest_review .item .info .meta li a {
  display: inline-block;
  color: var(--optionalColor);
}
.page-widget-area .widget_latest_review .item .info .meta li:last-child {
  margin-right: 0;
}
.page-widget-area .widget_latest_review .item:last-child {
  margin-bottom: 0;
}
.page-widget-area .widget_latest_review .item:hover .thumb::before, .page-widget-area .widget_latest_review .item:hover .thumb::after {
  opacity: 1;
  top: 50%;
  left: 50%;
}
.page-widget-area .widget_latest_review .thumbnail-item {
  position: relative;
  border-radius: 0 0 15px 15px;
  border-bottom: 3px solid #d6d6d6;
  transition: var(--transition);
  overflow: hidden;
  margin-bottom: 30px;
}
.page-widget-area .widget_latest_review .thumbnail-item img {
  border-radius: 0 0 15px 15px;
  transition: var(--transition);
}
.page-widget-area .widget_latest_review .thumbnail-item .content {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  bottom: 0;
  height: auto;
  border-radius: 0 0 15px 15px;
  padding: 0 20px 20px;
}
.page-widget-area .widget_latest_review .thumbnail-item .content h3 {
  font-size: 18px;
  margin-bottom: 12px;
  line-height: 1.3;
}
.page-widget-area .widget_latest_review .thumbnail-item .content h3 a {
  display: inline-block;
  color: var(--whiteColor);
}
.page-widget-area .widget_latest_review .thumbnail-item .content .meta {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.page-widget-area .widget_latest_review .thumbnail-item .content .meta li {
  display: inline-block;
  margin-right: 15px;
  color: var(--optionalColor);
  position: relative;
  padding-left: 18px;
}
.page-widget-area .widget_latest_review .thumbnail-item .content .meta li i {
  position: absolute;
  left: 0;
  top: 3px;
}
.page-widget-area .widget_latest_review .thumbnail-item .content .meta li a {
  display: inline-block;
  color: var(--optionalColor);
}
.page-widget-area .widget_latest_review .thumbnail-item .content .meta li:last-child {
  margin-right: 0;
}
.page-widget-area .widget_latest_review .thumbnail-item .link-btn {
  display: block;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 2;
  border-radius: 0 0 15px 15px;
}
.page-widget-area .widget_latest_review .thumbnail-item:hover {
  border-radius: 0;
}
.page-widget-area .widget_latest_review .thumbnail-item:hover img {
  border-radius: 0;
  transform: scale(1.03);
}
.page-widget-area .tagcloud {
  margin-top: -8px;
}
.page-widget-area .tagcloud a {
  display: inline-block;
  background: #f5f5f5;
  color: var(--blackColor);
  padding: 7px 15px 6px;
  border: none;
  border-radius: 3px;
  font-weight: 600;
  font-size: 14px !important;
  margin-top: 8px;
  margin-right: 4px;
}
.page-widget-area .tagcloud a:hover {
  color: var(--whiteColor);
}
.page-widget-area.widget-left-sidebar {
  padding-left: 0;
  padding-right: 15px;
}

/*================================================
Categories Area CSS
=================================================*/
.single-categories-box {
  margin-bottom: 30px;
  position: relative;
  border-radius: 0 0 15px 15px;
  border-bottom: 3px solid #d6d6d6;
  text-align: center;
  transition: var(--transition);
}
.single-categories-box img {
  border-radius: 0 0 15px 15px !important;
  transition: var(--transition);
}
.single-categories-box::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  border-radius: 0 0 15px 15px;
  background-color: var(--blackColor);
  opacity: 0.65;
  transition: var(--transition);
}
.single-categories-box .link-btn {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: block;
  z-index: 3;
  border-radius: 0 0 15px 15px;
}
.single-categories-box h4 {
  margin-bottom: 0;
  color: var(--whiteColor);
  font-size: 15px;
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 0;
  left: 0;
  transform: translateY(-50%);
}
.single-categories-box:hover {
  border-radius: 0;
}
.single-categories-box:hover img {
  border-radius: 0;
}
.single-categories-box:hover::before {
  border-radius: 0;
}
.single-categories-box:hover .link-btn {
  border-radius: 0;
}

.single-categories-item {
  position: relative;
  z-index: 1;
  text-align: center;
  border-radius: 8px;
  overflow: hidden;
  padding: 40px 20px;
  margin-bottom: 30px;
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}
.single-categories-item::before {
  left: 0;
  right: 0;
  top: 0;
  content: "";
  bottom: 0;
  z-index: -1;
  opacity: 0.6;
  position: absolute;
  background-color: #000000;
}
.single-categories-item .icon {
  width: 100px;
  height: 100px;
  position: relative;
  background: rgba(255, 255, 255, 0.2);
  margin-bottom: 30px;
  font-size: 60px;
  color: var(--whiteColor);
  transition: all 0.2s ease-in-out 0s;
  animation: border-transform 10s linear infinite alternate forwards;
  border-width: 2px;
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
}
.single-categories-item .icon i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
}
.single-categories-item h3 {
  color: var(--whiteColor);
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out 0s;
  font-size: 22px;
}
.single-categories-item span {
  transition: all 0.4s ease-in-out 0s;
  display: block;
  color: var(--whiteColor);
  font-weight: 500;
  font-size: var(--fontSize);
}
.single-categories-item .link-btn {
  display: block;
  width: 100%;
  height: 100%;
  z-index: 2;
  position: absolute;
  left: 0;
  top: 0;
}
.single-categories-item .learn-more-btn-cat {
  display: inline-block;
  position: absolute;
  color: var(--whiteColor);
  z-index: 1;
  padding-right: 22px;
  transition: all 0.5s ease-in-out 0s;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  font-size: var(--fontSize);
  font-weight: 500;
}
.single-categories-item .learn-more-btn-cat i {
  font-size: 20px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.single-categories-item .learn-more-btn-cat::before {
  content: "";
  position: absolute;
  background-color: var(--whiteColor);
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  z-index: -1;
  transition: var(--transition);
}
.single-categories-item:hover .icon {
  border-color: var(--whiteColor);
  transform: translateY(-18px);
}
.single-categories-item:hover h3 {
  transform: translateY(-18px);
}
.single-categories-item:hover span {
  transform: translateY(-18px);
}
.single-categories-item:hover .learn-more-btn-cat {
  opacity: 1;
  visibility: visible;
  bottom: 18px;
}

.categories-slides.owl-theme .owl-nav {
  margin-top: 0;
}
.categories-slides.owl-theme .owl-nav [class*=owl-] {
  color: var(--blackColor);
  margin: 0 3px;
  background: #ececec;
  width: 30px;
  height: 30px;
  border-radius: 0;
  font-size: 25px;
  position: relative;
  text-align: center;
  transition: var(--transition);
}
.categories-slides.owl-theme .owl-nav [class*=owl-] i {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.categories-slides.owl-theme .owl-nav [class*=owl-].owl-next {
  margin-right: 0;
}
.categories-slides.owl-theme .owl-nav [class*=owl-].owl-prev {
  margin-left: 0;
}
.categories-slides.owl-theme .owl-nav [class*=owl-]:hover {
  color: var(--whiteColor);
}

@keyframes border-transform {
  0%, 100% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
}
/*================================================
Products Area CSS
=================================================*/
.products-area .pagination-area {
  margin-top: 30px;
}

.single-products-box {
  position: relative;
  margin-bottom: 30px;
}
.single-products-box .products-image {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.single-products-box .products-image a {
  position: relative;
  display: block;
}
.single-products-box .products-image a img {
  transition: all 1.5s cubic-bezier(0, 0, 0.2, 1);
}
.single-products-box .products-image .sale-tag {
  position: absolute;
  left: 20px;
  top: 20px;
  background-color: red;
  color: var(--whiteColor);
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  border-radius: 50%;
  z-index: 2;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
}
.single-products-box .products-image .new-tag {
  position: absolute;
  right: 20px;
  top: 20px;
  background-color: green;
  color: var(--whiteColor);
  text-align: center;
  z-index: 2;
  padding: 1px 7px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
}
.single-products-box .products-content {
  margin-top: 25px;
  position: relative;
}
.single-products-box .products-content h3 {
  margin-bottom: 0;
  font-size: 20px;
}
.single-products-box .products-content .price {
  margin-top: 13px;
  font-size: 15px;
  font-weight: 600;
}
.single-products-box .products-content .price .old-price {
  text-decoration: line-through;
  color: #999999;
  font-weight: 600;
}
.single-products-box .products-content .add-to-cart-btn {
  position: absolute;
  right: 0;
  bottom: 0;
  color: #585d81;
  text-transform: uppercase;
  transition: var(--transition);
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  background-color: transparent;
  margin: 0;
  padding: 0;
}
.single-products-box .products-content .add-to-cart-btn:hover {
  background-color: transparent;
}
.single-products-box:hover .products-image a img {
  transform: scale3d(1.1, 1.1, 1.1) translateZ(0);
}

.puva-grid-sorting {
  margin-bottom: 40px;
}
.puva-grid-sorting .result-count p .count {
  font-weight: 500;
  color: var(--blackColor);
}
.puva-grid-sorting .ordering {
  text-align: right;
}
.puva-grid-sorting .ordering label {
  display: inline-block;
  margin-bottom: 0;
  color: var(--optionalColor);
  margin-right: 5px;
  font-weight: 500;
}
.puva-grid-sorting .ordering .nice-select {
  display: inline-block;
  width: 215px;
  float: unset;
  background: #f8f8f8;
  border-color: #eeeeee;
  color: var(--blackColor);
  transition: var(--transition);
  padding: 0 0 0 12px;
  height: 45px;
  line-height: 45px;
  font-size: var(--fontSize);
  font-weight: 600;
}
.puva-grid-sorting .ordering .nice-select .list {
  background-color: var(--whiteColor);
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  list-style-type: none;
  border: none;
  width: 100%;
  margin-bottom: 0;
  margin-top: 0;
  padding-left: 0;
  padding-top: 10px;
  padding-bottom: 10px;
}
.puva-grid-sorting .ordering .nice-select .list .option {
  line-height: 38px;
  min-height: 38px;
  color: var(--blackColor);
  position: relative;
  transition: var(--transition);
  padding-left: 32px;
  padding-right: 25px;
  font-size: var(--fontSize);
  font-weight: 600;
}
.puva-grid-sorting .ordering .nice-select .list .option:hover {
  color: var(--whiteColor);
}
.puva-grid-sorting .ordering .nice-select .list .option:hover::before {
  color: var(--whiteColor);
}
.puva-grid-sorting .ordering .nice-select .list .option.focus, .puva-grid-sorting .ordering .nice-select .list .option.selected.focus {
  background-color: transparent !important;
  color: var(--blackColor);
}
.puva-grid-sorting .ordering .nice-select .list .option::before {
  content: "\ea0f";
  position: absolute;
  left: 10px;
  top: -3px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  font-family: "boxicons";
  font-size: 20px;
}
.puva-grid-sorting .ordering .nice-select .list .option.selected::before {
  opacity: 1;
  visibility: visible;
}
.puva-grid-sorting .ordering .nice-select .list .option.selected:hover {
  color: var(--whiteColor);
}
.puva-grid-sorting .ordering .nice-select .list .option.selected:hover::before {
  color: var(--whiteColor);
}
.puva-grid-sorting .ordering .nice-select:after {
  border-color: var(--blackColor);
  height: 8px;
  width: 8px;
  margin-top: -5px;
}
.puva-grid-sorting .ordering .nice-select:hover {
  background-color: transparent;
}

/*================================================
Products Details Area CSS
=================================================*/
.products-details-image {
  border-radius: 5px;
}
.products-details-image a {
  display: block;
  border-radius: 5px;
}
.products-details-image a img {
  border-radius: 5px;
}

.products-details-desc {
  padding-left: 30px;
}
.products-details-desc h3 {
  margin-bottom: 15px;
  font-size: 22px;
}
.products-details-desc .price {
  margin-bottom: 15px;
  font-size: var(--fontSize);
  font-weight: 600;
}
.products-details-desc .price .old-price {
  text-decoration: line-through;
  color: #828893;
  font-weight: normal;
}
.products-details-desc .products-review {
  margin-bottom: 18px;
}
.products-details-desc .products-review .rating {
  display: inline-block;
  padding-right: 5px;
  font-size: 16px;
}
.products-details-desc .products-review .rating i {
  color: #ffba0a;
  display: inline-block;
  margin-right: -2px;
}
.products-details-desc .products-review .rating-count {
  display: inline-block;
  color: var(--blackColor);
  border-bottom: 1px solid var(--blackColor);
  line-height: initial;
  position: relative;
  top: -3px;
  font-weight: 600;
}
.products-details-desc .products-meta {
  margin-top: 20px;
}
.products-details-desc .products-meta span {
  display: block;
  color: var(--blackColor);
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 14.5px;
}
.products-details-desc .products-meta span span {
  display: inline-block;
  margin-bottom: 0;
  font-weight: 500;
}
.products-details-desc .products-meta span span.sku {
  color: var(--mainColor);
}
.products-details-desc .products-meta span span.in-stock {
  color: #585d81;
}
.products-details-desc .products-meta span a {
  display: inline-block;
  color: #585d81;
  font-weight: 500;
}
.products-details-desc .products-meta span a:hover, .products-details-desc .products-meta span a:focus {
  color: var(--mainColor);
}
.products-details-desc .products-meta span:last-child {
  margin-bottom: 0;
}
.products-details-desc .products-add-to-cart {
  margin-top: 25px;
}
.products-details-desc .products-add-to-cart .input-counter {
  max-width: 130px;
  min-width: 130px;
  margin-right: 10px;
  text-align: center;
  display: inline-block;
  position: relative;
}
.products-details-desc .products-add-to-cart .input-counter span {
  position: absolute;
  top: 0;
  background-color: transparent;
  cursor: pointer;
  color: #d0d0d0;
  width: 50px;
  height: 100%;
  line-height: 55px;
  transition: var(--transition);
  font-size: 25px;
}
.products-details-desc .products-add-to-cart .input-counter span.minus-btn {
  left: 0;
}
.products-details-desc .products-add-to-cart .input-counter span.plus-btn {
  right: 0;
}
.products-details-desc .products-add-to-cart .input-counter span:hover {
  color: var(--mainColor);
}
.products-details-desc .products-add-to-cart .input-counter input {
  height: 50px;
  color: var(--blackColor);
  outline: 0;
  display: block;
  border: none;
  background-color: #f8f8f8;
  text-align: center;
  width: 100%;
  font-size: 17px;
  font-weight: 600;
}
.products-details-desc .products-add-to-cart .input-counter input::-moz-placeholder {
  color: var(--blackColor);
}
.products-details-desc .products-add-to-cart .input-counter input::placeholder {
  color: var(--blackColor);
}
.products-details-desc .products-add-to-cart .default-btn {
  position: relative;
  top: -2px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.products-details-desc .products-share {
  margin-top: 30px;
}
.products-details-desc .products-share .social {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
}
.products-details-desc .products-share .social li {
  display: inline-block;
}
.products-details-desc .products-share .social li span {
  display: inline-block;
  margin-right: 3px;
  font-weight: 700;
  position: relative;
  top: -2px;
}
.products-details-desc .products-share .social li a {
  display: block;
  width: 32px;
  height: 32px;
  line-height: 34px;
  border-radius: 50%;
  background-color: var(--mainColor);
  color: var(--whiteColor);
  border: 1px solid var(--mainColor);
  text-align: center;
  font-size: 17px;
  margin-left: 2px;
}
.products-details-desc .products-share .social li a:hover, .products-details-desc .products-share .social li a:focus {
  color: var(--mainColor);
  background-color: transparent;
}
.products-details-desc .products-share .social li a.facebook {
  background-color: #3b5998;
  border-color: #3b5998;
  color: var(--whiteColor);
}
.products-details-desc .products-share .social li a.facebook:hover, .products-details-desc .products-share .social li a.facebook:focus {
  color: #3b5998;
  background-color: transparent;
}
.products-details-desc .products-share .social li a.twitter {
  background-color: #1da1f2;
  border-color: #1da1f2;
  color: var(--whiteColor);
}
.products-details-desc .products-share .social li a.twitter:hover, .products-details-desc .products-share .social li a.twitter:focus {
  color: #1da1f2;
  background-color: transparent;
}
.products-details-desc .products-share .social li a.linkedin {
  background-color: #007bb5;
  border-color: #007bb5;
  color: var(--whiteColor);
}
.products-details-desc .products-share .social li a.linkedin:hover, .products-details-desc .products-share .social li a.linkedin:focus {
  color: #007bb5;
  background-color: transparent;
}
.products-details-desc .products-share .social li a.instagram {
  background-color: #c13584;
  border-color: #c13584;
  color: var(--whiteColor);
}
.products-details-desc .products-share .social li a.instagram:hover, .products-details-desc .products-share .social li a.instagram:focus {
  color: #c13584;
  background-color: transparent;
}

.products-details-tabs {
  margin-top: 50px;
}
.products-details-tabs .nav {
  text-align: center;
  padding-left: 0;
  margin-bottom: 40px;
  list-style-type: none;
  display: block;
}
.products-details-tabs .nav .nav-item {
  display: inline-block;
  margin-left: 15px;
  margin-right: 15px;
}
.products-details-tabs .nav .nav-item .nav-link {
  color: #cccccc;
  border: none;
  border-bottom: 1px solid #eeeeee;
  padding: 0;
  background-color: transparent;
  position: relative;
  padding-bottom: 8px;
  font-size: 18px;
  font-weight: 700;
}
.products-details-tabs .nav .nav-item .nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--mainColor);
  transition: var(--transition);
  bottom: -2px;
}
.products-details-tabs .nav .nav-item .nav-link:hover, .products-details-tabs .nav .nav-item .nav-link.active {
  color: var(--blackColor);
}
.products-details-tabs .nav .nav-item .nav-link:hover::before, .products-details-tabs .nav .nav-item .nav-link.active::before {
  width: 100%;
}
.products-details-tabs .tab-content .tab-pane {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.products-details-tabs .tab-content .tab-pane ul {
  padding-left: 0;
  list-style-type: none;
  margin-top: 20px;
  margin-bottom: 0;
}
.products-details-tabs .tab-content .tab-pane ul li {
  margin-bottom: 12px;
  position: relative;
  color: #585d81;
  padding-left: 15px;
  font-size: 15px;
}
.products-details-tabs .tab-content .tab-pane ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--blackColor);
}
.products-details-tabs .tab-content .tab-pane ul li:last-child {
  margin-bottom: 0;
}
.products-details-tabs .tab-content .tab-pane .products-reviews h3 {
  margin-bottom: 0;
  display: inline-block;
  margin-right: 15px;
  font-size: 20px;
}
.products-details-tabs .tab-content .tab-pane .products-reviews .rating {
  display: inline-block;
}
.products-details-tabs .tab-content .tab-pane .products-reviews .rating span {
  font-size: 16px;
  color: #cecfd2;
  margin-right: -2px;
}
.products-details-tabs .tab-content .tab-pane .products-reviews .rating span.checked {
  color: orange;
}
.products-details-tabs .tab-content .tab-pane .products-reviews .rating-count {
  font-size: 15px;
  margin-top: 10px;
  margin-bottom: 20px;
}
.products-details-tabs .tab-content .tab-pane .products-reviews .rating-count span {
  display: block;
  color: #585d81;
}
.products-details-tabs .tab-content .tab-pane .products-reviews .row {
  overflow: hidden;
  margin-left: 0;
  margin-right: 0;
}
.products-details-tabs .tab-content .tab-pane .products-reviews .side {
  float: left;
  width: 9%;
  margin-top: 10px;
  font-size: 15px;
}
.products-details-tabs .tab-content .tab-pane .products-reviews .side div {
  font-weight: 600;
}
.products-details-tabs .tab-content .tab-pane .products-reviews .middle {
  margin-top: 14px;
  float: left;
  width: 82%;
}
.products-details-tabs .tab-content .tab-pane .products-reviews .right {
  text-align: right;
}
.products-details-tabs .tab-content .tab-pane .products-reviews .bar-container {
  width: 100%;
  background-color: #f1f1f1;
  text-align: center;
  color: var(--whiteColor);
  border-radius: 5px;
}
.products-details-tabs .tab-content .tab-pane .products-reviews .bar-5 {
  width: 100%;
  height: 18px;
  background-color: #4CAF50;
  border-radius: 5px;
}
.products-details-tabs .tab-content .tab-pane .products-reviews .bar-4 {
  width: 75%;
  height: 18px;
  background-color: #2196F3;
  border-radius: 5px;
  border-radius: 5px;
}
.products-details-tabs .tab-content .tab-pane .products-reviews .bar-3 {
  width: 50%;
  height: 18px;
  background-color: #00bcd4;
  border-radius: 5px;
}
.products-details-tabs .tab-content .tab-pane .products-reviews .bar-2 {
  width: 25%;
  height: 18px;
  background-color: #ff9800;
  border-radius: 5px;
}
.products-details-tabs .tab-content .tab-pane .products-reviews .bar-1 {
  width: 0;
  height: 18px;
  background-color: #f44336;
  border-radius: 5px;
}
.products-details-tabs .tab-content .tab-pane .products-review-comments {
  margin-top: 40px;
}
.products-details-tabs .tab-content .tab-pane .products-review-comments h3 {
  border-bottom: 1px solid #f3f3f3;
  padding-bottom: 10px;
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 10px;
}
.products-details-tabs .tab-content .tab-pane .products-review-comments .user-review {
  border-bottom: 1px solid #f3f3f3;
  padding: 20px 0 20px 110px;
  position: relative;
}
.products-details-tabs .tab-content .tab-pane .products-review-comments .user-review img {
  position: absolute;
  left: 0;
  top: 20px;
  width: 90px;
  height: 90px;
  border-radius: 5px;
}
.products-details-tabs .tab-content .tab-pane .products-review-comments .user-review .sub-comment {
  margin-bottom: 8px;
  font-weight: 600;
}
.products-details-tabs .tab-content .tab-pane .products-review-comments .user-review .review-rating {
  display: block;
  margin-bottom: 8px;
}
.products-details-tabs .tab-content .tab-pane .products-review-comments .user-review .review-rating .review-stars {
  display: inline-block;
}
.products-details-tabs .tab-content .tab-pane .products-review-comments .user-review .review-rating .review-stars i {
  color: #cecfd2;
  font-size: 18px;
  display: inline-block;
  margin-right: -3px;
}
.products-details-tabs .tab-content .tab-pane .products-review-comments .user-review .review-rating .review-stars i.checked {
  color: orange;
}
.products-details-tabs .tab-content .tab-pane .products-review-comments .user-review .review-rating span {
  color: var(--blackColor);
  position: relative;
  top: -2px;
  font-weight: 600;
  margin-left: 5px;
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper {
  margin-top: 30px;
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper h3 {
  margin-bottom: 10px;
  font-size: 20px;
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper .comment-notes span {
  color: red;
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper form {
  margin-top: 20px;
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper form .form-group {
  margin-bottom: 25px;
  text-align: left;
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper form .rating {
  text-align: left;
  overflow: hidden;
  max-width: 115px;
  margin-top: -5px;
  margin-bottom: 20px;
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper form .rating label {
  float: right;
  position: relative;
  width: 23px;
  height: 23px;
  cursor: pointer;
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper form .rating label:not(:first-of-type) {
  padding-right: 5px;
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper form .rating label:before {
  content: "★";
  transition: var(--transition);
  font-size: 27px;
  color: #CCCCCC;
  line-height: 1;
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper form .rating input {
  display: none;
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper form .rating input:checked ~ label:before, .products-details-tabs .tab-content .tab-pane .review-form-wrapper form .rating:not(:checked) > label:hover:before, .products-details-tabs .tab-content .tab-pane .review-form-wrapper form .rating:not(:checked) > label:hover ~ label:before {
  color: #f6b500;
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper form .comment-form-cookies-consent {
  text-align: left;
  margin-bottom: 0;
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper form .comment-form-cookies-consent [type=checkbox]:checked, .products-details-tabs .tab-content .tab-pane .review-form-wrapper form .comment-form-cookies-consent [type=checkbox]:not(:checked) {
  display: none;
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper form .comment-form-cookies-consent [type=checkbox]:checked + label, .products-details-tabs .tab-content .tab-pane .review-form-wrapper form .comment-form-cookies-consent [type=checkbox]:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  margin-bottom: 0;
  color: var(--optionalColor);
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper form .comment-form-cookies-consent [type=checkbox]:checked + label:before, .products-details-tabs .tab-content .tab-pane .review-form-wrapper form .comment-form-cookies-consent [type=checkbox]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 19px;
  height: 19px;
  transition: all 0.2s ease;
  border: 1px solid #f5f5f5;
  border-radius: 3px;
  background: #f5f5f5;
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper form .comment-form-cookies-consent [type=checkbox]:checked + label:after, .products-details-tabs .tab-content .tab-pane .review-form-wrapper form .comment-form-cookies-consent [type=checkbox]:not(:checked) + label:after {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--mainColor);
  position: absolute;
  top: 5.5px;
  left: 6px;
  transition: all 0.2s ease;
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper form .comment-form-cookies-consent [type=checkbox]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper form .comment-form-cookies-consent [type=checkbox]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper form .comment-form-cookies-consent [type=checkbox]:hover + label:before {
  border-color: var(--mainColor);
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper form .comment-form-cookies-consent [type=checkbox]:checked + label:before {
  border-color: var(--mainColor);
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper form button {
  margin-top: 22px;
  border: none;
  display: inline-block;
  text-align: center;
  overflow: hidden;
  color: var(--whiteColor);
  background-color: var(--mainColor);
  transition: var(--transition);
  border-radius: 5px;
  padding: 11px 40px;
  font-weight: 700;
  font-size: var(--fontSize);
}
.products-details-tabs .tab-content .tab-pane .review-form-wrapper form button:hover {
  background-color: var(--blackColor);
  color: var(--whiteColor);
}

/*================================================
Cart Area CSS
=================================================*/
.cart-table table {
  margin-bottom: 0;
}
.cart-table table thead tr th {
  border-bottom-width: 0px;
  vertical-align: middle;
  padding: 0 0 15px;
  text-transform: uppercase;
  border: none;
  white-space: nowrap;
  font-size: 17px;
  font-weight: 700;
}
.cart-table table tbody tr td {
  vertical-align: middle;
  color: #585d81;
  white-space: nowrap;
  font-weight: 600;
  font-size: 15px;
  padding-left: 0;
  padding-right: 0;
  border-color: #eaedff;
  border-left: none;
  border-right: none;
}
.cart-table table tbody tr td.product-thumbnail a {
  display: block;
}
.cart-table table tbody tr td.product-thumbnail a img {
  width: 80px;
}
.cart-table table tbody tr td.product-name a {
  display: inline-block;
}
.cart-table table tbody tr td.product-subtotal .remove {
  color: red;
  float: right;
  position: relative;
  top: -1px;
  font-size: 18px;
}
.cart-table table tbody tr td.product-quantity .input-counter {
  max-width: 130px;
  min-width: 130px;
  text-align: center;
  display: inline-block;
  position: relative;
}
.cart-table table tbody tr td.product-quantity .input-counter span {
  position: absolute;
  top: 0;
  background-color: transparent;
  cursor: pointer;
  color: #d0d0d0;
  width: 40px;
  height: 100%;
  line-height: 50px;
  transition: var(--transition);
  font-size: 22px;
}
.cart-table table tbody tr td.product-quantity .input-counter span.minus-btn {
  left: 0;
}
.cart-table table tbody tr td.product-quantity .input-counter span.plus-btn {
  right: 0;
}
.cart-table table tbody tr td.product-quantity .input-counter span:hover {
  color: var(--mainColor);
}
.cart-table table tbody tr td.product-quantity .input-counter input {
  height: 45px;
  color: var(--blackColor);
  outline: 0;
  display: block;
  border: none;
  background-color: #f8f8f8;
  text-align: center;
  width: 100%;
  font-size: 17px;
  font-weight: 600;
}
.cart-table table tbody tr td.product-quantity .input-counter input::-moz-placeholder {
  color: var(--blackColor);
}
.cart-table table tbody tr td.product-quantity .input-counter input::placeholder {
  color: var(--blackColor);
}
.cart-table table tbody tr td.product-subtotal {
  overflow: hidden;
}

.cart-buttons {
  margin-top: 30px;
}
.cart-buttons .shopping-coupon-code {
  position: relative;
  max-width: 530px;
}
.cart-buttons .shopping-coupon-code .form-control {
  height: 50px;
}
.cart-buttons .shopping-coupon-code button {
  position: absolute;
  right: 0;
  top: 0;
  height: 50px;
  background: var(--blackColor);
  color: var(--whiteColor);
  border: none;
  padding: 0 25px;
  line-height: 48px;
  outline: 0;
  transition: var(--transition);
  font-size: 15px;
  font-weight: 600;
}
.cart-buttons .shopping-coupon-code button:hover {
  background-color: var(--mainColor);
}
.cart-buttons .default-btn {
  padding-top: 13px;
  padding-bottom: 13px;
}

.cart-totals {
  background: var(--whiteColor);
  padding: 40px;
  max-width: 500px;
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
  border-radius: 5px;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
}
.cart-totals h3 {
  margin-bottom: 25px;
  font-size: 22px;
}
.cart-totals ul {
  padding-left: 0;
  margin: 0 0 25px;
  list-style-type: none;
}
.cart-totals ul li {
  border: 1px solid #eaedff;
  padding: 10px 15px;
  color: var(--blackColor);
  overflow: hidden;
  font-weight: 600;
  font-size: 15px;
}
.cart-totals ul li:first-child {
  border-bottom: none;
}
.cart-totals ul li:last-child {
  font-size: 18px;
  border-top: none;
}
.cart-totals ul li:last-child span {
  color: var(--blackColor);
  font-weight: 700;
}
.cart-totals ul li span {
  float: right;
  color: #585d81;
  font-weight: normal;
}

/*================================================
Checkout Area CSS
=================================================*/
.user-actions {
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
  background: var(--whiteColor);
  padding: 15px 20px;
  border-top: 3px solid var(--mainColor);
  position: relative;
  margin-bottom: 40px;
}
.user-actions i {
  color: var(--mainColor);
  margin-right: 2px;
  font-size: 19px;
  position: relative;
  top: 3px;
}
.user-actions span {
  display: inline-block;
  color: var(--mainColor);
  font-weight: 600;
  font-size: 15px;
}
.user-actions span a {
  display: inline-block;
}

.billing-details .title {
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid #eeeeee;
  font-size: 22px;
}
.billing-details .title::before {
  content: "";
  position: absolute;
  background: var(--mainColor);
  bottom: -1px;
  left: 0;
  width: 50px;
  height: 1px;
}
.billing-details .form-group {
  margin-bottom: 25px;
}
.billing-details .form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 14px;
}
.billing-details .form-group label .required {
  color: red;
}
.billing-details .form-group .nice-select {
  display: block;
  float: unset;
  background: #f8f8f8;
  border-color: #eeeeee;
  color: var(--blackColor);
  transition: var(--transition);
  padding: 0 0 0 12px;
  height: 45px;
  line-height: 45px;
  width: 100%;
  font-size: var(--fontSize);
  font-weight: 600;
}
.billing-details .form-group .nice-select .list {
  background-color: var(--whiteColor);
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  list-style-type: none;
  border: none;
  width: 100%;
  margin-bottom: 0;
  margin-top: 0;
  padding-left: 0;
  padding-top: 10px;
  padding-bottom: 10px;
}
.billing-details .form-group .nice-select .list .option {
  line-height: 38px;
  min-height: 38px;
  color: var(--blackColor);
  position: relative;
  transition: var(--transition);
  padding-left: 32px;
  padding-right: 25px;
  font-size: var(--fontSize);
  font-weight: 600;
}
.billing-details .form-group .nice-select .list .option:hover {
  background-color: var(--mainColor) !important;
  color: var(--whiteColor);
}
.billing-details .form-group .nice-select .list .option:hover::before {
  color: var(--whiteColor);
}
.billing-details .form-group .nice-select .list .option.focus, .billing-details .form-group .nice-select .list .option.selected.focus {
  background-color: transparent !important;
  color: var(--blackColor);
}
.billing-details .form-group .nice-select .list .option::before {
  content: "\ea0f";
  position: absolute;
  left: 10px;
  top: -3px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  color: var(--mainColor);
  font-family: "boxicons";
  font-size: 20px;
}
.billing-details .form-group .nice-select .list .option.selected::before {
  opacity: 1;
  visibility: visible;
}
.billing-details .form-group .nice-select .list .option.selected:hover {
  background-color: var(--mainColor) !important;
  color: var(--whiteColor);
}
.billing-details .form-group .nice-select .list .option.selected:hover::before {
  color: var(--whiteColor);
}
.billing-details .form-group .nice-select:after {
  border-color: var(--blackColor);
  height: 8px;
  width: 8px;
  margin-top: -5px;
}
.billing-details .form-group .nice-select:hover {
  border-color: var(--mainColor);
  background-color: transparent;
}
.billing-details .form-check {
  margin-bottom: 20px;
}
.billing-details .form-check .form-check-label {
  color: var(--blackColor);
  font-weight: 600;
}
.billing-details .form-check label {
  position: relative;
  left: -3px;
  top: 0;
  font-weight: 600;
}
.billing-details .form-check .form-check-input {
  margin-top: 0.2rem;
}
.billing-details .col-lg-12:last-child .form-group {
  margin-bottom: 0;
}

.order-details .title {
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid #eeeeee;
  font-size: 22px;
}
.order-details .title::before {
  content: "";
  position: absolute;
  background: var(--mainColor);
  bottom: -1px;
  left: 0;
  width: 50px;
  height: 1px;
}
.order-details .order-table table {
  margin-bottom: 0;
}
.order-details .order-table table thead tr th {
  border-bottom-width: 0;
  vertical-align: middle;
  border-color: #eaedff;
  padding: 12px 20px 10px;
  white-space: nowrap;
  text-transform: uppercase;
  font-weight: 700;
  font-size: var(--fontSize);
}
.order-details .order-table table tbody tr td {
  vertical-align: middle;
  color: #585d81;
  white-space: nowrap;
  border-color: #eaedff;
  font-size: 15px;
  font-weight: 500;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 15px;
  padding-bottom: 13px;
}
.order-details .order-table table tbody tr td.product-name {
  color: #585d81;
}
.order-details .order-table table tbody tr td.product-name a {
  display: inline-block;
  color: #585d81;
}
.order-details .order-table table tbody tr td.product-name a:hover {
  color: var(--mainColor);
}
.order-details .order-table table tbody tr td.order-subtotal span, .order-details .order-table table tbody tr td.order-shipping span, .order-details .order-table table tbody tr td.total-price span {
  color: var(--blackColor);
  font-weight: 600;
}
.order-details .order-table table tbody tr td.shipping-price, .order-details .order-table table tbody tr td.order-subtotal-price, .order-details .order-table table tbody tr td.product-subtotal {
  color: var(--blackColor);
  font-weight: 600;
}
.order-details .payment-box {
  background-color: var(--whiteColor);
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
  margin-top: 30px;
  padding: 30px;
}
.order-details .payment-box .payment-method p [type=radio]:checked, .order-details .payment-box .payment-method p [type=radio]:not(:checked) {
  display: none;
}
.order-details .payment-box .payment-method p [type=radio]:checked + label, .order-details .payment-box .payment-method p [type=radio]:not(:checked) + label {
  padding-left: 27px;
  cursor: pointer;
  display: block;
  color: var(--blackColor);
  position: relative;
  margin-bottom: 8px;
  font-weight: 700;
}
.order-details .payment-box .payment-method p [type=radio]:checked + label::before, .order-details .payment-box .payment-method p [type=radio]:not(:checked) + label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border: 1px solid #dddddd;
  border-radius: 50%;
  background: var(--whiteColor);
}
.order-details .payment-box .payment-method p [type=radio]:checked + label::after, .order-details .payment-box .payment-method p [type=radio]:not(:checked) + label::after {
  content: "";
  width: 12px;
  height: 12px;
  background: var(--mainColor);
  position: absolute;
  top: 7px;
  left: 3px;
  border-radius: 50%;
  transition: var(--transition);
}
.order-details .payment-box .payment-method p [type=radio]:not(:checked) + label::after {
  opacity: 0;
  visibility: hidden;
  transform: scale(0);
}
.order-details .payment-box .payment-method p [type=radio]:checked + label::after {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.order-details .payment-box .default-btn {
  margin-top: 15px;
}
.order-details .payment-box .default-btn i {
  margin-right: 8px;
}

/*================================================
Gallery Area CSS
=================================================*/
.single-gallery-item {
  position: relative;
  margin-bottom: 30px;
  z-index: 1;
  border-radius: 5px;
  overflow: hidden;
  cursor: zoom-in;
}
.single-gallery-item a {
  display: block;
  border-radius: 5px;
}
.single-gallery-item a img {
  transition: var(--transition);
}
.single-gallery-item:hover a img {
  transform: scale(1.1);
}

/*================================================
Subscribe Area CSS
=================================================*/
.subscribe-inner-area {
  border-radius: 0 0 15px 15px;
  border-bottom: 3px solid #d6d6d6;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.subscribe-inner-area .content {
  text-align: center;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}
.subscribe-inner-area .content h2 {
  margin-bottom: 30px;
  color: var(--whiteColor);
  font-size: 35px;
}
.subscribe-inner-area .content .newsletter-form {
  margin-bottom: 25px;
  position: relative;
  padding-right: 185px;
}
.subscribe-inner-area .content .newsletter-form .input-newsletter {
  height: 50px;
  font-size: 15px;
  border-radius: 5px;
  border: none;
  display: block;
  width: 100%;
  color: var(--blackColor);
  background-color: var(--whiteColor);
  padding-left: 15px;
}
.subscribe-inner-area .content .newsletter-form .input-newsletter::-moz-placeholder {
  color: #999999;
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.subscribe-inner-area .content .newsletter-form .input-newsletter::placeholder {
  color: #999999;
  transition: var(--transition);
}
.subscribe-inner-area .content .newsletter-form .input-newsletter:focus::-moz-placeholder {
  color: transparent;
}
.subscribe-inner-area .content .newsletter-form .input-newsletter:focus::placeholder {
  color: transparent;
}
.subscribe-inner-area .content .newsletter-form button {
  position: absolute;
  right: 0;
  top: 0;
  height: 50px;
  border: none;
  color: var(--whiteColor);
  border-radius: 5px;
  transition: var(--transition);
  padding: 0 30px;
  background-color: var(--blackColor);
  font-size: 16px;
  font-weight: 500;
}
.subscribe-inner-area .content .newsletter-form button:hover {
  background-color: var(--whiteColor);
}
.subscribe-inner-area .content .newsletter-form #validator-newsletter {
  color: var(--whiteColor);
}
.subscribe-inner-area .content .newsletter-form .validation-danger {
  margin-top: 15px;
}
.subscribe-inner-area .content p {
  line-height: initial;
  color: var(--whiteColor);
  font-size: 15px;
}

/*================================================
Blog Area CSS
=================================================*/
.single-blog-post {
  margin-bottom: 30px;
  border-radius: 0 0 15px 15px;
  background-color: var(--whiteColor);
  border-bottom: 3px solid;
  transition: var(--transition);
  box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.04);
}
.single-blog-post .entry-thumbnail a img {
  transition: 0.5s;
  border-radius: 5px;
}
.single-blog-post .post-content {
  padding: 30px 30px;
  position: relative;
}
.single-blog-post .post-content .blog-btn {
  margin-top: 20px;
}
.single-blog-post .post-content .entry-meta {
  padding-left: 0;
  margin-bottom: 12px;
  list-style-type: none;
  margin-top: -5px;
}
.single-blog-post .post-content .entry-meta li {
  display: inline-block;
  position: relative;
  margin-right: 12px;
  color: var(--optionalColor);
  font-size: 14px;
}
.single-blog-post .post-content .entry-meta li::before {
  content: "";
  position: absolute;
  right: -7px;
  top: 50%;
  transform: rotate(14deg) translateY(-50%);
  width: 1px;
  height: 13px;
}
.single-blog-post .post-content .entry-meta li:last-child {
  margin-right: 0;
}
.single-blog-post .post-content .entry-meta li:last-child::before {
  display: none;
}
.single-blog-post .post-content .entry-meta li a {
  display: inline-block;
  color: var(--optionalColor);
}
.single-blog-post .post-content h3 {
  margin-bottom: 0;
  line-height: 1.4;
  position: relative;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  font-size: 25px;
}
.single-blog-post .post-content p {
  margin-top: 12px;
  margin-bottom: 0;
}
.single-blog-post:hover {
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.05);
  transform: translateY(-5px);
}
.single-blog-post:hover .entry-thumbnail a img {
  opacity: 0.7;
}

/*================================================
Members Area CSS
=================================================*/
.single-members-box {
  margin-bottom: 30px;
  text-align: center;
  padding: 30px;
  border-radius: 5px;
  background-color: #f9f9f9;
}
.single-members-box img {
  border-bottom: 3px solid #d6d6d6;
  border-radius: 0 0 15px 15px;
}
.single-members-box h3 {
  font-size: 20px;
  margin-top: 22px;
  margin-bottom: 8px;
}
.single-members-box .rating {
  color: #f6a123;
  font-size: 18px;
}
.single-members-box .rating i {
  line-height: 1;
  margin-left: -1px;
  margin-right: -1px;
}
.single-members-box .activity {
  display: block;
  color: var(--optionalColor);
  margin-top: 5px;
}
.single-members-box .socials-links {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
  margin-top: 17px;
}
.single-members-box .socials-links li {
  display: inline-block;
  margin-left: 3px;
  margin-right: 3px;
}
.single-members-box .socials-links li a {
  display: block;
  background-color: #ebecf1;
  color: var(--blackColor);
  width: 35px;
  height: 35px;
  line-height: 38px;
  text-align: center;
  border-radius: 3px;
  font-size: 20px;
}
.single-members-box .socials-links li a:hover {
  color: var(--whiteColor);
}
.single-members-box .socials-links li:last-child {
  margin-right: 0;
}
.single-members-box .socials-links li:first-child {
  margin-left: 0;
}

.single-team-member {
  display: flex;
  flex-wrap: wrap;
  align-items: center !important;
  margin-top: 30px;
  border: 1px solid #eeeeee;
}
.single-team-member .member-image {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  position: relative;
  padding-right: 10px;
}
.single-team-member .member-image img {
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
  border-radius: 3px;
}
.single-team-member .member-image .social {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  margin: 0 auto;
  bottom: 0;
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.single-team-member .member-image .social li {
  display: inline-block;
  margin: 0 3px;
}
.single-team-member .member-image .social li a {
  display: block;
}
.single-team-member .member-image .social li a i {
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50%;
  display: inline-block;
  font-size: 18px;
  color: var(--whiteColor);
}
.single-team-member .member-image .social li a i.fa-facebook {
  background: #3b5998;
}
.single-team-member .member-image .social li a i.fa-linkedin {
  background: #0077b5;
}
.single-team-member .member-content {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
  padding-left: 15px;
  padding-right: 25px;
}
.single-team-member .member-content h4 {
  margin-bottom: 0;
  font-size: 22px;
}
.single-team-member .member-content span {
  display: block;
  margin-top: 10px;
  font-weight: 500;
}
.single-team-member .member-content p {
  margin-bottom: 0;
  margin-top: 10px;
}
.single-team-member:hover .member-image .social {
  bottom: 15px;
  opacity: 1;
  visibility: visible;
}

/*================================================
Submit Review Area CSS
=================================================*/
.submit-review-form h3 {
  margin-bottom: 25px;
  font-size: 30px;
}
.submit-review-form .info-box {
  margin-bottom: 30px;
  background-color: #f1f0ff;
  padding: 16px 15px 15px;
  border-radius: 5px;
}
.submit-review-form .info-box a {
  font-weight: 600;
}
.submit-review-form .info-box a:hover {
  color-interpolation-filters: var(--blackColor);
}
.submit-review-form form .form-group {
  margin-bottom: 30px;
}
.submit-review-form form .form-group label {
  display: block;
  margin-bottom: 13px;
  font-size: 18px;
  font-weight: 600;
}
.submit-review-form form .form-group label .required {
  color: red;
}
.submit-review-form form .form-group .form-control {
  background-color: var(--whiteColor) !important;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12) !important;
}
.submit-review-form form .form-group .nice-select {
  border-radius: 0;
  border: none;
  float: unset;
  height: 52px;
  line-height: 52px;
  background-color: var(--whiteColor) !important;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12) !important;
  font-size: 15px;
  font-weight: 600;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 0;
  padding-top: 1px;
}
.submit-review-form form .form-group .nice-select:after {
  height: 8px;
  margin-top: -5px;
  right: 15px;
  width: 8px;
}
.submit-review-form form .form-group .nice-select .list {
  background-color: var(--whiteColor);
  border-radius: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  list-style-type: none;
  border: none;
  width: 100%;
  height: 210px;
  overflow-y: scroll;
  margin-bottom: 0;
  margin-top: 0;
  padding-left: 0;
  padding-top: 10px;
  padding-bottom: 10px;
}
.submit-review-form form .form-group .nice-select .list .option {
  line-height: 38px;
  min-height: 38px;
  color: var(--blackColor);
  position: relative;
  transition: var(--transition);
  padding-left: 38px;
  padding-right: 15px;
  font-size: var(--fontSize);
  font-weight: 700;
}
.submit-review-form form .form-group .nice-select .list .option:hover {
  color: var(--whiteColor);
}
.submit-review-form form .form-group .nice-select .list .option:hover::before {
  color: var(--whiteColor);
}
.submit-review-form form .form-group .nice-select .list .option.focus, .submit-review-form form .form-group .nice-select .list .option.selected.focus {
  background-color: transparent !important;
  color: var(--blackColor);
}
.submit-review-form form .form-group .nice-select .list .option::before {
  content: "\ea0f";
  position: absolute;
  left: 12px;
  top: -1px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  font-family: "boxicons";
  font-size: 20px;
}
.submit-review-form form .form-group .nice-select .list .option.selected::before {
  opacity: 1;
  visibility: visible;
}
.submit-review-form form .form-group .nice-select .list .option.selected:hover {
  color: var(--whiteColor);
}
.submit-review-form form .form-group .nice-select .list .option.selected:hover::before {
  color: var(--whiteColor);
}
.submit-review-form form .form-group .dropzone {
  position: relative;
  border: 2px dashed #eeeeee;
  border-radius: 3px;
  background: rgba(14, 198, 198, 0.03);
  transition: all 0.3s linear;
  display: inline-block;
  width: 100%;
  margin: 0;
}
.submit-review-form form .form-group .dropzone button {
  color: var(--blackColor);
  position: relative;
  padding-top: 52px;
  font-size: 16px;
  font-weight: 500;
}
.submit-review-form form .form-group .dropzone button::before {
  content: "\eb8a";
  font-family: "boxicons";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  font-size: 35px;
}
.submit-review-form form .btn-box .default-btn {
  padding: 12px 30px 11px;
}
.submit-review-form form .btn-box .default-btn:nth-child(2) {
  margin-left: 10px;
}
.submit-review-form form .btn-box .default-btn:nth-child(2)::before {
  background-color: var(--blackColor);
}

/*================================================
Membership Levels Area CSS
=================================================*/
.membership-levels-table .table {
  margin-bottom: 0;
}
.membership-levels-table .table thead th {
  vertical-align: middle;
  white-space: nowrap;
  padding: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  border-left: none;
  border-bottom: none;
  border-top: none;
  border-right: 1px solid #7e77e3;
}
.membership-levels-table .table thead th h2 {
  color: var(--whiteColor);
  margin-bottom: 0;
  font-size: 40px;
}
.membership-levels-table .table thead th h3 {
  color: var(--whiteColor);
  font-size: 15px;
  margin-top: 10px;
  margin-bottom: 0;
}
.membership-levels-table .table thead th:first-child {
  border-left: none;
}
.membership-levels-table .table thead th:last-child {
  border-right: none;
}
.membership-levels-table .table tbody tr td {
  padding: 15px 20px;
  white-space: nowrap;
  vertical-align: middle;
  border: none;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
}
.membership-levels-table .table tbody tr td:first-child {
  text-align: left;
}
.membership-levels-table .table tbody tr td.item-check i {
  width: 20px;
  height: 20px;
  line-height: 20px;
  border-radius: 100%;
  background-color: #0eb582;
  color: var(--whiteColor);
  display: block;
  margin: 0 auto;
}
.membership-levels-table .table tbody tr td.item-none i {
  width: 20px;
  height: 20px;
  line-height: 20px;
  border-radius: 100%;
  background-color: #d85554;
  color: var(--whiteColor);
  display: block;
  margin: 0 auto;
}
.membership-levels-table .table tbody tr td .select-btn {
  display: inline-block;
  color: var(--blackColor);
  background-color: #efefef;
  padding: 13px 30px;
  border-radius: 5px;
  margin-top: 10px;
  font-size: 15px;
  font-weight: 700;
}
.membership-levels-table .table tbody tr td .select-btn:hover {
  color: var(--whiteColor);
}
.membership-levels-table .table tbody tr:last-child td {
  padding-bottom: 0;
}

/*================================================
Pagination CSS
=================================================*/
.pagination-area {
  margin-top: 20px;
}
.pagination-area .page-numbers {
  width: 40px;
  height: 40px;
  background-color: var(--whiteColor);
  box-shadow: 0 0 15px 2px #e4e4ee;
  color: var(--blackColor);
  text-align: center;
  display: inline-block;
  border-radius: 0;
  line-height: 42px;
  position: relative;
  margin-left: 3px;
  margin-right: 3px;
  font-weight: 700;
  font-size: 18px;
}
.pagination-area .page-numbers:hover, .pagination-area .page-numbers.current {
  color: var(--whiteColor);
}
.pagination-area .page-numbers i {
  position: relative;
  top: 1.5px;
}

/*================================================
Page Title Area CSS
=================================================*/
.page-title-area {
  background-color: #f5f5f5;
  padding-top: 70px;
  padding-bottom: 70px;
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
}
.page-title-area.bg-main-color .page-title-content h2, .page-title-area.bg-main-color .page-title-content h1, .page-title-area.bg-main-color .page-title-content h3, .page-title-area.bg-main-color .page-title-content h4, .page-title-area.bg-main-color .page-title-content h5, .page-title-area.bg-main-color .page-title-content h6 {
  border-color: var(--whiteColor);
  color: var(--whiteColor);
}
.page-title-area.bg-main-color .page-title-content ul li {
  color: var(--whiteColor);
}
.page-title-area.bg-main-color .page-title-content ul li::before {
  background-color: #fcfcfc;
}
.page-title-area.bg-main-color .page-title-content ul li a {
  color: var(--whiteColor);
}
.page-title-area.bg-main-color .page-title-content ul li a:hover {
  color: var(--whiteColor);
}

.page-title-content h2, .page-title-content h1, .page-title-content h3, .page-title-content h4, .page-title-content h5, .page-title-content h6 {
  margin-bottom: 0;
  font-size: 35px;
  position: relative;
  border-radius: 12px;
  border-left: 3px solid;
  padding-left: 15px;
  padding-top: 5px;
  padding-bottom: 5px;
}
.page-title-content ul {
  text-align: right;
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.page-title-content ul li {
  margin-right: 20px;
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
}
.page-title-content ul li::before {
  right: -12px;
  top: 6px;
  height: 13px;
  width: 1px;
  content: "";
  background-color: #b0aaaa;
  position: absolute;
}
.page-title-content ul li a {
  color: var(--blackColor);
  display: block;
}
.page-title-content ul li:last-child {
  margin-right: 0;
}
.page-title-content ul li:last-child::before {
  display: none;
}

/*================================================
User Profile Area CSS
=================================================*/
.author-desc .user-profile {
  margin-bottom: 25px;
}
.author-desc .user-profile img {
  width: 100px;
  height: 100px;
  border-bottom: 3px solid #d6d6d6;
  border-radius: 0 0 15px 15px;
}
.author-desc .user-profile .title {
  margin-left: 20px;
}
.author-desc .user-profile .title h4 {
  font-size: 22px;
  margin-bottom: 7px;
}
.author-desc .user-profile .title .sub-title {
  display: block;
  font-weight: 500;
}
.author-desc .profile-stats {
  padding-left: 0;
  list-style-type: none;
  border-top: 1px solid #eeeeee;
  padding-top: 25px;
  margin-top: 25px;
  margin-bottom: 0;
}
.author-desc .profile-stats li {
  margin-bottom: 12px;
  max-width: 350px;
  font-size: 15.5px;
  color: #585d81;
  overflow: hidden;
}
.author-desc .profile-stats li span {
  float: right;
  color: var(--blackColor);
  font-weight: 600;
}
.author-desc .profile-stats li:last-child {
  margin-bottom: 0;
}
.author-desc .profile-stats li .rating {
  color: #f6a123;
  font-size: 20px;
}
.author-desc .profile-stats li .rating i {
  line-height: 1;
  margin-right: -3px;
}

.user-contact-info {
  background-color: #f9f9f9;
  border-radius: 3px;
  padding: 25px;
}
.user-contact-info h3 {
  font-size: 20px;
  margin-bottom: 25px;
  margin-top: -5px;
  border-bottom: 1px solid #e8e8e8;
  padding-bottom: 10px;
}
.user-contact-info .user-contact {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.user-contact-info .user-contact li {
  margin-bottom: 9px;
  font-weight: 500;
}
.user-contact-info .user-contact li a {
  display: inline-block;
  position: relative;
  color: #666666;
  padding-left: 25px;
}
.user-contact-info .user-contact li a i {
  position: absolute;
  left: 0;
  top: 1.8px;
  font-size: 17px;
}
.user-contact-info .user-contact li:last-child {
  margin-bottom: 0;
}
.user-contact-info .social-profiles {
  padding-left: 0;
  list-style-type: none;
  margin-top: 20px;
  margin-bottom: 0;
}
.user-contact-info .social-profiles li {
  margin-bottom: 9px;
  font-weight: 500;
}
.user-contact-info .social-profiles li a {
  display: inline-block;
  position: relative;
  color: #666666;
  padding-left: 25px;
}
.user-contact-info .social-profiles li a i {
  position: absolute;
  left: 0;
  top: 1.8px;
  font-size: 17px;
}
.user-contact-info .social-profiles li a.facebook {
  color: #3b5998;
}
.user-contact-info .social-profiles li a.twitter {
  color: #1da1f2;
}
.user-contact-info .social-profiles li:last-child {
  margin-bottom: 0;
}
.user-contact-info form {
  margin-top: 25px;
}
.user-contact-info form .form-control {
  background-color: var(--whiteColor) !important;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12) !important;
}
.user-contact-info span.wpcf7-list-item label {
  margin-bottom: 10px;
}

/*================================================
Coming Soon Area CSS
=================================================*/
.coming-soon-area {
  height: 100vh;
  position: relative;
  z-index: 1;
  background: #f6f7fb;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
}

.coming-soon-content {
  max-width: 700px;
  background: var(--whiteColor);
  border-radius: 5px;
  overflow: hidden;
  text-align: center;
  padding: 40px 60px;
  box-shadow: 1px 5px 24px 0 rgba(68, 102, 242, 0.05);
  margin-left: auto;
  margin-right: auto;
}
.coming-soon-content .logo {
  display: inline-block;
}
.coming-soon-content h2 {
  font-size: 40px;
  margin-top: 30px;
  margin-bottom: 0;
}
.coming-soon-content #timer {
  margin-top: 40px;
}
.coming-soon-content #timer div {
  background-color: var(--blackColor);
  color: var(--whiteColor);
  width: 100px;
  height: 105px;
  border-radius: 5px;
  font-size: 35px;
  font-weight: 700;
  margin-left: 10px;
  margin-right: 10px;
}
.coming-soon-content #timer div span {
  display: block;
  margin-top: -2px;
  font-size: 15px;
  font-weight: 500;
}
.coming-soon-content form {
  position: relative;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
}
.coming-soon-content form .form-group {
  margin-bottom: 25px;
  width: 100%;
  position: relative;
}
.coming-soon-content form .form-group .label-title {
  margin-bottom: 0;
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
}
.coming-soon-content form .form-group .label-title i {
  position: absolute;
  left: 0;
  transition: var(--transition);
  top: 11px;
  font-size: 22px;
}
.coming-soon-content form .form-group .label-title::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  transition: var(--transition);
}
.coming-soon-content form .form-group .input-newsletter {
  border-radius: 0;
  border: none;
  border-bottom: 2px solid #eeeeee;
  padding: 0 0 0 32px;
  color: var(--blackColor);
  height: 45px;
  display: block;
  width: 100%;
  transition: var(--transition);
  font-size: 16px;
  font-weight: 400;
}
.coming-soon-content form .form-group .input-newsletter::-moz-placeholder {
  color: #A1A1A1;
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.coming-soon-content form .form-group .input-newsletter::placeholder {
  color: #A1A1A1;
  transition: var(--transition);
}
.coming-soon-content form .form-group .input-newsletter:focus::-moz-placeholder {
  color: transparent;
}
.coming-soon-content form .form-group .input-newsletter:focus::placeholder {
  color: transparent;
}
.coming-soon-content form .default-btn {
  border-radius: 0;
}
.coming-soon-content form .default-btn::before {
  border-radius: 0;
}
.coming-soon-content form .validation-danger {
  margin-top: 15px;
  color: red;
}
.coming-soon-content form .validation-success {
  margin-top: 15px;
}

/*================================================
FAQ Area CSS
=================================================*/
.faq-accordion .card {
  margin-bottom: 15px;
  border-radius: 0 !important;
  border: none;
  display: block;
  flex-direction: unset;
  text-align: left;
  box-shadow: 2px 8px 20px 0 rgba(25, 42, 70, 0.13) !important;
  padding-left: 5px;
  padding-right: 5px;
}
.faq-accordion .card .card-header {
  padding: 0;
  border: none;
  text-align: left;
  background-color: var(--whiteColor);
}
.faq-accordion .card .card-header button {
  display: block;
  background-color: transparent;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
  position: relative;
  border-bottom: 1px solid #eeeeee;
  transition: var(--transition);
  font-size: 18px;
  font-weight: 700;
  padding-top: 20px;
  padding-bottom: 18px;
  padding-left: 20px;
  padding-right: 20px;
}
.faq-accordion .card .card-header button::before {
  content: "\ea17";
  position: absolute;
  right: 20px;
  transition: var(--transition);
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  font-family: "boxicons";
  font-size: 20px;
}
.faq-accordion .card .card-header button.collapsed {
  border-bottom-width: 0;
}
.faq-accordion .card .card-header button.collapsed::before {
  transform: translateY(-50%) rotate(0);
}
.faq-accordion .card .card-body ul {
  margin-bottom: 15px;
}
.faq-accordion .card .card-body ul:last-child {
  margin-bottom: 0;
}
.faq-accordion .card .card-body ul li {
  margin-bottom: 12px;
  color: #585d81;
  font-size: 15.5px;
}
.faq-accordion .card .card-body ul li:last-child {
  margin-bottom: 0;
}
.faq-accordion .card:last-child {
  margin-bottom: 0;
}

/*================================================
404 Error Area CSS
=================================================*/
.error-area {
  border-top: 1px dashed #eeeeee;
}

.error-content {
  text-align: center;
}
.error-content h3 {
  font-size: 35px;
  margin-bottom: 20px;
  margin-top: 45px;
}
.error-content p {
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}
.error-content .default-btn {
  margin-top: 30px;
}

/*================================================
Contact Area CSS
=================================================*/
.contact-info-box {
  margin-bottom: 30px;
  position: relative;
  padding-left: 100px;
  z-index: 1;
}
.contact-info-box .icon {
  width: 75px;
  height: 85px;
  background-color: #f7f7f7;
  border-radius: 3px;
  position: absolute;
  text-align: center;
  left: 0;
  font-size: 40px;
  transition: var(--transition);
  top: 50%;
  transform: translateY(-50%);
}
.contact-info-box .icon i {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.contact-info-box h3 {
  margin-bottom: 10px;
  font-size: 20px;
}
.contact-info-box p {
  margin-bottom: 2px;
  font-weight: 500;
}
.contact-info-box p:last-child {
  margin-bottom: 0;
}
.contact-info-box .back-icon {
  position: absolute;
  right: 0;
  bottom: -15px;
  z-index: -1;
  color: var(--blackColor);
  line-height: 1;
  opacity: 0.04;
  font-size: 100px;
  transform: rotate(-5deg);
}
.contact-info-box:hover .icon {
  color: var(--whiteColor);
}

.contact-image {
  text-align: center;
}

.contact-form {
  padding: 40px;
  margin-left: 15px;
  box-shadow: 0 0 20px rgba(158, 158, 158, 0.16);
  background-color: var(--whiteColor);
}
.contact-form form .form-group textarea.form-control {
  height: auto;
}
.contact-form form .help-block ul {
  margin-bottom: 0;
  margin-top: 12px;
}
.contact-form form .help-block ul li {
  color: red;
}
.contact-form form .default-btn {
  margin-top: 5px;
}
.contact-form form #msgSubmit {
  margin: 0 !important;
}
.contact-form form #msgSubmit.text-danger, .contact-form form #msgSubmit.text-success {
  margin-top: 15px !important;
}

#map iframe {
  width: 100%;
  height: 500px;
  margin-bottom: -7px;
  border: none;
}

/*================================================
Footer Area CSS
=================================================*/
.footer-area {
  background-color: var(--blackColor);
}

.single-footer-widget {
  margin-bottom: 30px;
}
.single-footer-widget h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: var(--whiteColor);
  border-bottom: 1px solid #2c2929;
  padding-bottom: 10px;
}
.single-footer-widget .widget-review-box {
  margin-bottom: 30px;
}
.single-footer-widget .widget-review-box .image {
  position: relative;
  border-radius: 0 0 15px 15px;
  transition: var(--transition);
  border-bottom: 3px solid #d6d6d6;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.single-footer-widget .widget-review-box .image img {
  display: none;
  border-radius: 0 0 15px 15px;
}
.single-footer-widget .widget-review-box .image .link-btn {
  position: absolute;
  left: 0;
  right: 0;
  border-radius: 0 0 15px 15px;
  top: 0;
  bottom: 0;
  display: block;
  z-index: 1;
}
.single-footer-widget .widget-review-box .content {
  padding: 7px 0 7px 20px;
}
.single-footer-widget .widget-review-box .content .category {
  display: inline-block;
  margin-bottom: 12px;
  background-color: #f5f5f5;
  border-radius: 30px;
  padding: 4px 15px;
  font-weight: 600;
}
.single-footer-widget .widget-review-box .content h3 {
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1.4;
}
.single-footer-widget .widget-review-box .content h3 a {
  display: inline-block;
  color: var(--whiteColor);
}
.single-footer-widget .widget-review-box .content .meta {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.single-footer-widget .widget-review-box .content .meta li {
  display: inline-block;
  margin-right: 15px;
  color: var(--optionalColor);
  position: relative;
  padding-left: 18px;
}
.single-footer-widget .widget-review-box .content .meta li i {
  position: absolute;
  left: 0;
  top: 3.5px;
}
.single-footer-widget .widget-review-box .content .meta li a {
  display: inline-block;
  color: var(--optionalColor);
}
.single-footer-widget .widget-review-box .content .meta li:last-child {
  margin-right: 0;
}
.single-footer-widget .widget-review-box:last-child {
  margin-bottom: 0;
}
.single-footer-widget .helpful-links {
  padding-left: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0;
  margin-left: -5px;
  margin-right: -5px;
  margin-top: -10px;
}
.single-footer-widget .helpful-links li {
  color: #dcdcdc;
  font-size: 15px;
  flex: 0 0 50%;
  max-width: 50%;
  margin-bottom: 7px;
  padding-left: 5px;
  padding-right: 5px;
  padding-top: 0px;
}
.single-footer-widget .helpful-links li a {
  display: inline-block;
  color: #dcdcdc;
}
.single-footer-widget .helpful-links li::before {
  display: none;
}
.single-footer-widget .download-app {
  margin-top: 30px;
}
.single-footer-widget .download-app h3 {
  margin-bottom: 20px;
}
.single-footer-widget .download-app .btn-box .play-store-btn {
  display: inline-block;
  position: relative;
  background-color: var(--whiteColor);
  border-radius: 5px;
  color: var(--blackColor);
  margin-right: 15px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 8px;
  padding-left: 50px;
  font-size: 13px;
  font-weight: 300;
}
.single-footer-widget .download-app .btn-box .play-store-btn img {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.single-footer-widget .download-app .btn-box .play-store-btn span {
  display: block;
  transition: var(--transition);
  color: var(--blackColor);
  font-size: 16px;
  font-weight: 700;
}
.single-footer-widget .download-app .btn-box .play-store-btn:hover {
  color: var(--whiteColor);
}
.single-footer-widget .download-app .btn-box .play-store-btn:hover span {
  color: var(--whiteColor);
}
.single-footer-widget .download-app .btn-box .apple-store-btn {
  display: inline-block;
  position: relative;
  background-color: var(--whiteColor);
  border-radius: 5px;
  color: var(--blackColor);
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 8px;
  padding-left: 55px;
  font-size: 13px;
  font-weight: 300;
}
.single-footer-widget .download-app .btn-box .apple-store-btn img {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.single-footer-widget .download-app .btn-box .apple-store-btn span {
  display: block;
  transition: var(--transition);
  color: var(--blackColor);
  font-size: 16px;
  font-weight: 700;
}
.single-footer-widget .download-app .btn-box .apple-store-btn:hover {
  color: var(--whiteColor);
}
.single-footer-widget .download-app .btn-box .apple-store-btn:hover span {
  color: var(--whiteColor);
}
.single-footer-widget ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.single-footer-widget ul li {
  margin-bottom: 10px;
  color: #dcdcdc;
  font-size: 15px;
  position: relative;
  padding-left: 17px;
}
.single-footer-widget ul li a {
  display: inline-block;
  color: #ffffff;
  font-weight: 400;
  position: relative;
  font-family: var(--optionalfontFamily);
}
.single-footer-widget ul li a:hover::before {
  width: 100%;
}
.single-footer-widget ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  transition: var(--transition);
}
.single-footer-widget ul li:last-child {
  margin-bottom: 0;
}
.single-footer-widget ul li::before {
  height: 7px;
  width: 7px;
  content: "";
  left: 0;
  top: 9px;
  position: absolute;
  background-color: aqua;
}

.footer-bottom-area {
  border-top: 1px solid #303544;
  padding-top: 30px;
  margin-top: 40px;
}
.footer-bottom-area .socials-links {
  text-align: right;
  color: var(--whiteColor);
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.footer-bottom-area .socials-links li {
  display: inline-block;
  margin-right: 5px;
}
.footer-bottom-area .socials-links li span {
  display: block;
  margin-right: 25px;
  font-size: 20px;
  font-weight: 700;
}
.footer-bottom-area .socials-links li a {
  display: block;
  background-color: #212737;
  color: var(--whiteColor);
  width: 38px;
  height: 38px;
  line-height: 40px;
  text-align: center;
  border-radius: 3px;
  font-size: 20px;
}
.footer-bottom-area .socials-links li a:hover {
  color: var(--whiteColor);
}
.footer-bottom-area .socials-links li:last-child {
  margin-right: 0;
}

.copyright-area {
  background-color: #121625;
  padding-top: 20px;
  padding-bottom: 20px;
}
.copyright-area p {
  line-height: initial;
  color: #c1c1c1;
}
.copyright-area p span {
  color: var(--whiteColor);
  font-weight: 600;
}
.copyright-area p a {
  color: var(--whiteColor);
  font-weight: 600;
}
.copyright-area ul {
  text-align: right;
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.copyright-area ul li {
  color: #c1c1c1;
  margin-right: 20px;
  position: relative;
  display: inline-block;
}
.copyright-area ul li a {
  display: block;
  color: #c1c1c1;
}
.copyright-area ul li a:hover {
  color: var(--whiteColor);
}
.copyright-area ul li::before {
  right: -12px;
  top: 4.5px;
  height: 12px;
  width: 1px;
  content: "";
  background-color: #c1c1c1;
  position: absolute;
}
.copyright-area ul li:last-child {
  margin-right: 0;
}
.copyright-area ul li:last-child::before {
  display: none;
}

/*================================================
Go Top CSS
=================================================*/
.go-top {
  position: fixed;
  cursor: pointer;
  bottom: 20px;
  right: 20px;
  color: var(--whiteColor);
  z-index: 4;
  width: 43px;
  text-align: center;
  height: 45px;
  opacity: 0;
  visibility: hidden;
  font-size: 27px;
  transition: var(--transition);
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
}
.go-top i {
  position: absolute;
  right: 0;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.go-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 20px;
}
.go-top:hover {
  background-color: var(--whiteColor);
  color: var(--blackColor);
}

/*================================================
All Modal CSS
=================================================*/
.loginRegisterModal .modal-dialog {
  max-width: 500px;
  margin-top: 0;
  margin-bottom: 0;
}
.loginRegisterModal .modal-dialog .modal-content {
  background-color: var(--whiteColor);
  border: none;
  border-bottom: 3px solid #d6d6d6;
  border-radius: 0 0 15px 15px;
  padding: 40px;
  position: relative;
}
.loginRegisterModal .modal-dialog .modal-content button.close {
  position: absolute;
  right: -22px;
  top: -22px;
  opacity: 1 !important;
  visibility: visible !important;
  background-color: red;
  width: 32px;
  height: 32px;
  text-align: center;
  text-shadow: unset;
  border-radius: 50%;
  line-height: 32px;
  color: var(--whiteColor);
  padding: 3px 0 0;
}
.loginRegisterModal .modal-dialog .modal-content .nav-tabs {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
  border-bottom: 1px solid #f0f0f0;
}
.loginRegisterModal .modal-dialog .modal-content .nav-tabs .nav-item {
  margin-bottom: 0;
  margin-right: 30px;
}
.loginRegisterModal .modal-dialog .modal-content .nav-tabs .nav-item .nav-link {
  padding: 0 0 8px;
  border: none;
  color: #666666;
  transition: var(--transition);
  position: relative;
  font-size: 18px;
  font-weight: 600;
}
.loginRegisterModal .modal-dialog .modal-content .nav-tabs .nav-item .nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 3px;
  transition: var(--transition);
  transform: scaleX(0);
}
.loginRegisterModal .modal-dialog .modal-content .nav-tabs .nav-item .nav-link:hover, .loginRegisterModal .modal-dialog .modal-content .nav-tabs .nav-item .nav-link.active {
  color: var(--blackColor);
}
.loginRegisterModal .modal-dialog .modal-content .nav-tabs .nav-item .nav-link:hover::before, .loginRegisterModal .modal-dialog .modal-content .nav-tabs .nav-item .nav-link.active::before {
  transform: scaleX(1);
}
.loginRegisterModal .modal-dialog .modal-content .tab-content {
  margin-top: 30px;
}
.loginRegisterModal .modal-dialog .modal-content .tab-content .puva-login .login-with-account {
  margin-bottom: 30px;
}
.loginRegisterModal .modal-dialog .modal-content .tab-content .puva-login .login-with-account span {
  display: block;
  color: #666666;
  font-weight: 500;
}
.loginRegisterModal .modal-dialog .modal-content .tab-content .puva-login .login-with-account ul {
  padding-left: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0;
  margin-top: 15px;
  margin-left: -7px;
  margin-right: -7px;
}
.loginRegisterModal .modal-dialog .modal-content .tab-content .puva-login .login-with-account ul li {
  flex: 0 0 50%;
  max-width: 50%;
  padding-left: 7px;
  padding-right: 7px;
}
.loginRegisterModal .modal-dialog .modal-content .tab-content .puva-login .login-with-account ul li a {
  display: block;
  text-align: center;
  background-color: var(--blackColor);
  color: var(--whiteColor);
  border-radius: 5px;
  font-weight: 600;
  padding-top: 8px;
  padding-bottom: 11px;
  padding-left: 25px;
  padding-right: 25px;
}
.loginRegisterModal .modal-dialog .modal-content .tab-content .puva-login .login-with-account ul li a i {
  font-size: 22px;
  line-height: 1;
  position: relative;
  top: 4px;
  margin-right: 2px;
}
.loginRegisterModal .modal-dialog .modal-content .tab-content .puva-login .login-with-account ul li a.facebook {
  background-color: #4267b2;
  color: var(--whiteColor);
}
.loginRegisterModal .modal-dialog .modal-content .tab-content .puva-login .login-with-account ul li a.facebook:hover {
  background-color: #6d8bc8;
  color: var(--whiteColor);
}
.loginRegisterModal .modal-dialog .modal-content .tab-content .puva-login .login-with-account ul li a.twitter {
  background-color: #1da1f2;
  color: var(--whiteColor);
}
.loginRegisterModal .modal-dialog .modal-content .tab-content .puva-login .login-with-account ul li a.twitter:hover {
  background-color: #0982cc;
  color: var(--whiteColor);
}
.loginRegisterModal .modal-dialog .modal-content .tab-content .puva-login .sub-title {
  display: block;
  color: #666666;
  font-weight: 500;
  margin-bottom: 20px;
  z-index: 1;
  position: relative;
}
.loginRegisterModal .modal-dialog .modal-content .tab-content .puva-login .sub-title::before {
  content: "";
  position: absolute;
  right: 0;
  top: 11px;
  height: 1px;
  width: 100%;
  z-index: -1;
  background: #f0f0f0;
}
.loginRegisterModal .modal-dialog .modal-content .tab-content .puva-login .sub-title span {
  background-color: var(--whiteColor);
  padding-right: 15px;
}
.loginRegisterModal .modal-dialog .modal-content .tab-content .puva-login form .form-group {
  margin-bottom: 15px;
}
.loginRegisterModal .modal-dialog .modal-content .tab-content .puva-login form .form-group .form-control {
  border: 1px solid #eeeeee !important;
  border-radius: 5px;
  background-color: var(--whiteColor) !important;
  padding-top: 6px;
}
.loginRegisterModal .modal-dialog .modal-content .tab-content .puva-login form button {
  display: block;
  color: var(--whiteColor);
  border: none;
  font-weight: 600;
  display: block;
  width: 100%;
  border-radius: 5px;
  padding: 14px 30px 13px;
  transition: var(--transition);
}
.loginRegisterModal .modal-dialog .modal-content .tab-content .puva-login form button:hover {
  background-color: var(--blackColor);
  color: var(--whiteColor);
}
.loginRegisterModal .modal-dialog .modal-content .tab-content .puva-login .dont-account {
  display: block;
  color: #666666;
  margin-top: 20px;
}
.loginRegisterModal .modal-dialog .modal-content .tab-content .puva-login .dont-account a {
  font-weight: 500;
}
.loginRegisterModal .modal-dialog .modal-content .tab-content .puva-login .dont-account a:hover {
  color: var(--blackColor);
}
.loginRegisterModal .modal-dialog .modal-content .tab-content .puva-register .register-with-account {
  margin-bottom: 30px;
}
.loginRegisterModal .modal-dialog .modal-content .tab-content .puva-register .register-with-account span {
  display: block;
  color: #666666;
  font-weight: 500;
}
.loginRegisterModal .modal-dialog .modal-content .tab-content .puva-register .register-with-account ul {
  padding-left: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0;
  margin-top: 15px;
  margin-left: -7px;
  margin-right: -7px;
}
.loginRegisterModal .modal-dialog .modal-content .tab-content .puva-register .register-with-account ul li {
  flex: 0 0 50%;
  max-width: 50%;
  padding-left: 7px;
  padding-right: 7px;
}
.loginRegisterModal .modal-dialog .modal-content .tab-content .puva-register .register-with-account ul li a {
  display: block;
  text-align: center;
  background-color: var(--blackColor);
  color: var(--whiteColor);
  border-radius: 5px;
  font-weight: 600;
  padding-top: 8px;
  padding-bottom: 11px;
  padding-left: 25px;
  padding-right: 25px;
}
.loginRegisterModal .modal-dialog .modal-content .tab-content .puva-register .register-with-account ul li a i {
  font-size: 22px;
  line-height: 1;
  position: relative;
  top: 4px;
  margin-right: 2px;
}
.loginRegisterModal .modal-dialog .modal-content .tab-content .puva-register .register-with-account ul li a.facebook {
  background-color: #4267b2;
  color: var(--whiteColor);
}
.loginRegisterModal .modal-dialog .modal-content .tab-content .puva-register .register-with-account ul li a.facebook:hover {
  background-color: #6d8bc8;
  color: var(--whiteColor);
}
.loginRegisterModal .modal-dialog .modal-content .tab-content .puva-register .register-with-account ul li a.twitter {
  background-color: #1da1f2;
  color: var(--whiteColor);
}
.loginRegisterModal .modal-dialog .modal-content .tab-content .puva-register .register-with-account ul li a.twitter:hover {
  background-color: #0982cc;
  color: var(--whiteColor);
}
.loginRegisterModal .modal-dialog .modal-content .tab-content .puva-register .sub-title {
  display: block;
  color: #666666;
  font-weight: 500;
  margin-bottom: 20px;
  z-index: 1;
  position: relative;
}
.loginRegisterModal .modal-dialog .modal-content .tab-content .puva-register .sub-title::before {
  content: "";
  position: absolute;
  right: 0;
  top: 11px;
  height: 1px;
  width: 100%;
  z-index: -1;
  background: #f0f0f0;
}
.loginRegisterModal .modal-dialog .modal-content .tab-content .puva-register .sub-title span {
  background-color: var(--whiteColor);
  padding-right: 15px;
}
.loginRegisterModal .modal-dialog .modal-content .tab-content .puva-register form .form-group {
  margin-bottom: 15px;
}
.loginRegisterModal .modal-dialog .modal-content .tab-content .puva-register form .form-group .form-control {
  border: 1px solid #eeeeee !important;
  border-radius: 5px;
  background-color: var(--whiteColor) !important;
  padding-top: 6px;
}
.loginRegisterModal .modal-dialog .modal-content .tab-content .puva-register form button {
  display: block;
  color: var(--whiteColor);
  border: none;
  font-weight: 600;
  display: block;
  width: 100%;
  border-radius: 5px;
  padding: 14px 30px 13px;
  transition: var(--transition);
}
.loginRegisterModal .modal-dialog .modal-content .tab-content .puva-register form button:hover {
  background-color: var(--blackColor);
  color: var(--whiteColor);
}
.loginRegisterModal .modal-dialog .modal-content .tab-content .puva-register .already-account {
  display: block;
  color: #666666;
  margin-top: 20px;
}
.loginRegisterModal .modal-dialog .modal-content .tab-content .puva-register .already-account a {
  font-weight: 500;
}
.loginRegisterModal .modal-dialog .modal-content .tab-content .puva-register .already-account a:hover {
  color: var(--blackColor);
}

.sidebarModal.modal {
  z-index: 9992;
}
.sidebarModal.modal.right .modal-dialog {
  position: fixed;
  margin: auto;
  width: 420px;
  height: 100%;
  transform: translate3d(0%, 0, 0);
}
.sidebarModal.modal.right .modal-content {
  height: 100%;
  overflow-y: auto;
  background-color: var(--whiteColor);
  border: none;
  border-radius: 0;
}
.sidebarModal.modal.right .modal-content button.close {
  float: unset;
  position: absolute;
  right: 20px;
  top: 15px;
  color: var(--blackColor);
  z-index: 2;
  opacity: 1;
  border: none;
  text-shadow: unset;
  box-shadow: unset;
  font-size: 40px;
  transition: var(--transition);
}
.sidebarModal.modal.right .modal-content button.close:hover {
  color: red;
}
.sidebarModal.modal.right.fade .modal-dialog {
  right: -320px;
  transition: opacity 0.3s linear, right 0.3s ease-out;
}
.sidebarModal.modal.right.fade.show .modal-dialog {
  right: 0;
}
.sidebarModal.modal .modal-body {
  text-align: center;
  padding: 80px 30px;
}
.sidebarModal.modal .modal-body .instagram-list {
  margin-top: 70px;
}
.sidebarModal.modal .modal-body .instagram-list .row {
  margin-left: -5px;
  margin-right: -5px;
}
.sidebarModal.modal .modal-body .instagram-list .row .col-lg-4 {
  padding-left: 5px;
  padding-right: 5px;
}
.sidebarModal.modal .modal-body .instagram-list .box {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 10px;
}
.sidebarModal.modal .modal-body .instagram-list .box .link-btn {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 3;
}
.sidebarModal.modal .modal-body .instagram-list .box i {
  position: absolute;
  left: 0;
  right: 0;
  color: var(--whiteColor);
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 2;
}
.sidebarModal.modal .modal-body .instagram-list .box img {
  transition: var(--transition);
}
.sidebarModal.modal .modal-body .instagram-list .box::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
}
.sidebarModal.modal .modal-body .instagram-list .box:hover::before {
  opacity: 0.5;
  visibility: visible;
}
.sidebarModal.modal .modal-body .instagram-list .box:hover img {
  transform: scale(1.3);
}
.sidebarModal.modal .modal-body .instagram-list .box:hover i {
  opacity: 1;
  visibility: visible;
}
.sidebarModal.modal .modal-body .sidebar-contact-info {
  margin-top: 80px;
}
.sidebarModal.modal .modal-body .sidebar-contact-info h2 {
  margin-bottom: 0;
  font-size: 25px;
}
.sidebarModal.modal .modal-body .sidebar-contact-info h2 span {
  display: block;
  color: var(--optionalColor);
  font-size: var(--fontSize);
  margin-top: 8px;
  margin-bottom: 8px;
}
.sidebarModal.modal .modal-body .social-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 15px;
}
.sidebarModal.modal .modal-body .social-list li {
  display: inline-block;
  margin-right: 8px;
}
.sidebarModal.modal .modal-body .social-list li span {
  display: block;
  font-weight: 600;
}
.sidebarModal.modal .modal-body .social-list li a {
  position: relative;
  top: 3px;
  font-size: 20px;
}
.sidebarModal.modal .modal-body .social-list li:last-child {
  margin-right: 0;
}

.wpcf7-list-item-label {
  position: relative;
  top: -2px;
  font-size: 13px;
}
.wpcf7-list-item-label a {
  display: inline-block;
}
.wpcf7-list-item-label a:hover {
  text-decoration: underline;
}

span.wpcf7-list-item {
  margin-left: 0;
}
span.wpcf7-list-item label {
  margin-bottom: 6px;
}

.contact-section span.wpcf7-list-item {
  margin-left: -15px;
}

span.wpcf7-not-valid-tip {
  font-size: 13px;
  margin-top: 10px;
}

div.wpcf7-mail-sent-ok {
  border: 2px solid #398f14 !important;
}

div.wpcf7-response-output {
  margin: 30px 0 0;
  padding: 15px;
  text-align: center;
}

/* Single Blank Page */
.puva-single-blank-page {
  height: 600px;
}

.all-single-video-box {
  margin-bottom: 30px;
}
.all-single-video-box .image {
  position: relative;
  border-radius: 0 0 15px 15px;
  transition: var(--transition);
  border-bottom: 3px solid #d6d6d6;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.all-single-video-box .image img {
  border-radius: 0 0 15px 15px;
  display: none;
}
.all-single-video-box .image .video-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 32px;
  display: inline-block;
  text-align: center;
  transform: translateX(-50%) translateY(-50%);
  background-color: rgba(255, 255, 255, 0.85);
}
.all-single-video-box .image .video-btn i {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  padding-left: 2px;
}
.all-single-video-box .image .video-btn:hover {
  color: var(--whiteColor);
}
.all-single-video-box .content {
  padding-left: 25px;
  padding-right: 15px;
  padding-top: 20px;
  padding-bottom: 25px;
}
.all-single-video-box .content .category {
  display: inline-block;
  margin-bottom: 15px;
  background-color: #f5f5f5;
  border-radius: 30px;
  padding: 4px 15px;
  font-weight: 500;
  font-size: 13px;
}
.all-single-video-box .content h3 {
  font-size: 22px;
  margin-bottom: 15px;
  line-height: 1.3;
}
.all-single-video-box .content h3 a {
  display: inline-block;
}
.all-single-video-box .content .meta {
  padding-left: 0;
  margin-bottom: 12px;
  list-style-type: none;
}
.all-single-video-box .content .meta li {
  display: inline-block;
  margin-right: 15px;
  color: var(--optionalColor);
  position: relative;
  padding-left: 18px;
}
.all-single-video-box .content .meta li i {
  position: absolute;
  left: 0;
  top: 3px;
}
.all-single-video-box .content .meta li a {
  display: inline-block;
  color: var(--optionalColor);
}
.all-single-video-box .content .meta li:last-child {
  margin-right: 0;
}
.all-single-video-box:hover .image {
  border-radius: 0;
}
.all-single-video-box:last-child {
  margin-bottom: 0;
}

.blog-area {
  position: relative;
  z-index: 1;
  padding-bottom: 80px;
}
.blog-area .pagination-area {
  margin-bottom: 30px;
}

/* Blog Unit test all */
/*================================================
Sidebar Area CSS
=================================================*/
/* Widget sidebar */
.blog-sidebar {
  padding-left: 15px;
}
.blog-sidebar .widget {
  margin-top: 30px;
}
.blog-sidebar .widget:first-child {
  margin-top: 0;
}
.blog-sidebar .widget {
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.05);
  padding: 30px;
  background-color: #ffffff;
}
.blog-sidebar .widget .widget-title {
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 10px;
  margin-bottom: 20px;
  text-transform: capitalize;
  position: relative;
  font-weight: 700;
  font-size: 20px;
}
.blog-sidebar .widget .widget-title::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 50px;
  height: 1px;
}
.blog-sidebar .widget.widget_tag_cloud .widget-title {
  margin-bottom: 12px;
}
.blog-sidebar .widget ul {
  padding: 0;
  list-style-type: none;
  margin: 0;
}
.blog-sidebar .widget ul li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 14px;
  font-size: 14px;
  font-weight: 600;
}
.blog-sidebar .widget ul li:last-child {
  margin-bottom: 0;
}
.blog-sidebar .widget ul li::before {
  height: 7px;
  width: 7px;
  content: "";
  left: 0;
  top: 6px;
  position: absolute;
}
.blog-sidebar .widget ul li span {
  display: inline-block;
}
.blog-sidebar .widget ul li a {
  display: inline;
  color: #212121;
}
.blog-sidebar .widget ul li a:hover .post_count {
  border: 1px solid;
}
.blog-sidebar .widget ul li a .post_count {
  position: absolute;
  right: 0;
  border: 1px solid #eee;
  width: 25px;
  text-align: center;
  height: 25px;
  line-height: 25px;
  font-size: 13px;
  color: #212121;
}
.blog-sidebar .widget_search form {
  position: relative;
}
.blog-sidebar .widget_search form label {
  display: block;
  margin-bottom: 0;
}
.blog-sidebar .widget_search form .screen-reader-text {
  display: none;
}
.blog-sidebar .widget_search form .search-field {
  background-color: #ffffff;
  height: 50px;
  padding: 6px 15px;
  border: 1px solid #eeeeee;
  width: 100%;
  display: block;
  outline: 0;
  transition: var(--transition);
}
.blog-sidebar .widget_search form button {
  position: absolute;
  right: 0;
  outline: 0;
  bottom: 0;
  height: 50px;
  width: 50px;
  z-index: 1;
  border: none;
  color: #ffffff;
  background-color: transparent;
}
.blog-sidebar .widget_search form button::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  transition: var(--transition);
}
.blog-sidebar .widget_search form button::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
}
.blog-sidebar .widget_search form button:hover::before {
  opacity: 0;
  visibility: hidden;
}
.blog-sidebar .widget_search form button:hover::after {
  opacity: 1;
  visibility: visible;
}
.blog-sidebar select {
  height: 45px;
  border: 1px solid #eee;
  width: 100%;
  color: #555;
  font-size: 13.5px;
  padding: 8px 15px;
}
.blog-sidebar .widget_categories ul li a {
  text-transform: capitalize;
}
.blog-sidebar .widget_categories ul li .children {
  margin-top: 10px;
}
.blog-sidebar .widget_pages ul li.page_item_has_children > a {
  margin-bottom: 10px;
  display: inline-block;
}
.blog-sidebar .widget_pages ul li a {
  text-transform: capitalize;
}
.blog-sidebar .widget_rss ul li {
  margin-bottom: 20px;
}
.blog-sidebar .widget_rss ul li::before {
  top: 10px;
}
.blog-sidebar .widget_rss ul li:last-child {
  margin-bottom: 0;
}
.blog-sidebar .widget_rss ul li .rsswidget {
  display: block;
  color: #222222;
  font-weight: bold;
  font-size: 15px;
}
.blog-sidebar .widget_rss ul li .rss-date {
  font-size: 13px;
  margin: 3px 0 10px;
  display: block;
}
.blog-sidebar .widget_rss ul li .rssSummary {
  color: #555;
  line-height: 25px;
  font-size: 14px;
}
.blog-sidebar .widget_rss ul li cite {
  font-weight: bold;
  display: block;
  margin-top: 10px;
  font-style: normal;
  color: #222;
  font-size: 13.5px;
}
.blog-sidebar .widget_rss .widget-title .rsswidget {
  display: inline-block;
}
.blog-sidebar .tagcloud a {
  display: inline-block;
  font-weight: 600;
  font-size: 14px !important;
  padding: 6px 13px;
  border: 1px dashed #eeeeee;
  position: relative;
  background: #f5f5f5;
  color: var(--blackColor);
  margin-top: 8px;
  margin-right: 4px;
}
.blog-sidebar .tagcloud a:hover, .blog-sidebar .tagcloud a:focus {
  color: #ffffff;
}
.blog-sidebar .widget_text p img {
  margin: 10px 0;
}
.blog-sidebar .widget_text .wp-caption-text {
  border: none;
  text-align: center;
  font-size: 14px;
}
.blog-sidebar .calendar_wrap table {
  text-align: center;
  margin-bottom: 0;
}
.blog-sidebar .calendar_wrap table #prev a, .blog-sidebar .calendar_wrap table #next a {
  text-decoration: underline;
}
.blog-sidebar .calendar_wrap table #prev a:hover, .blog-sidebar .calendar_wrap table #next a:hover {
  text-decoration: none;
}
.blog-sidebar .calendar_wrap table td, .blog-sidebar .calendar_wrap table th {
  padding: 8px 5px;
}
.blog-sidebar .calendar_wrap caption {
  padding-top: 0;
  caption-side: top;
  font-weight: 600;
}
.blog-sidebar .widget_nav_menu .sub-menu {
  margin-top: 8px;
}
.blog-sidebar .widget_recent_comments .recentcomments {
  color: #484848;
}
.blog-sidebar .widget_recent_comments .recentcomments .comment-author-link {
  font-weight: bold;
  font-size: 14px;
}
.blog-sidebar .widget_media_gallery .gallery {
  margin: 0;
}
.blog-sidebar .widget_media_gallery .gallery .gallery-item {
  margin: 0;
}
.blog-sidebar .widget_recent_entries ul li .post-date {
  display: block;
  font-size: 12px;
  color: #767676;
}
.blog-sidebar p {
  font-size: 15px;
}
.blog-sidebar span.post-count {
  float: right;
  font-size: 15px;
  color: #212121;
}

.nice-select {
  height: 45px;
  border: 1px solid #eee;
  width: 100%;
  color: #555;
  font-size: 13.5px;
  float: none;
  white-space: normal;
}
.nice-select span.current {
  display: block;
  margin-top: 3px;
  font-size: 15px;
}
.nice-select ul.list {
  padding: 0 !important;
  margin: 0 !important;
  list-style-type: none !important;
  border-radius: 0;
  width: 100%;
  overflow-y: auto;
}
.nice-select ul.list li {
  list-style-type: none !important;
  font-size: 14px;
  padding: 8px 15px !important;
  line-height: 1 !important;
  margin: 0 !important;
  min-height: auto;
  text-transform: capitalize;
}
.nice-select ul.list li::before {
  display: none;
}

.widget_text form br {
  display: none;
}

/* End Widget sidebar */
/* WP core style */
.alignnone {
  display: block;
  margin-bottom: 15px;
}

.aligncenter, div.aligncenter {
  display: block;
  margin: 15px auto 15px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption.alignnone {
  margin: 15px auto 10px;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 100%;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text {
  font-size: 14px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  -webkit-clip-path: none;
          clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

.screen-reader-text {
  display: none;
}

.gallery-caption {
  z-index: 100000;
}

.bypostauthor {
  z-index: 100000;
}

/* End WP core style */
/*================================================
Blog Details Area CSS
=================================================*/
.blog-details-area {
  position: relative;
  z-index: 1;
}

.blog-details .blog-details-content {
  padding: 30px;
  background-color: #ffffff;
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.05);
  border-top: none;
  overflow: hidden;
}
.blog-details .blog-details-content .entry-meta li span a {
  font-weight: 400;
}
.blog-details .blog-details-content .entry-meta li i {
  font-style: normal;
  font-size: 20px;
  position: relative;
  top: 4px;
}
.blog-details .blog-details-content .entry-meta li a {
  text-decoration: none;
}
.blog-details .blog-details-content h3 {
  margin-bottom: 15px;
  font-size: 23px;
  font-weight: 700;
}
.blog-details .blog-details-content .category {
  padding: 0;
  margin: 20px 0 0;
  border-top: 1px solid #eee;
  list-style-type: none;
  clear: both;
}
.blog-details .blog-details-content .category li {
  display: inline-block;
  margin-bottom: 0;
  margin-top: 10px;
}
.blog-details .blog-details-content .category li span.icon-book {
  font-weight: 600;
  color: #323232;
  font-size: 20px;
  margin-right: 5px;
  position: relative;
  top: 2px;
}
.blog-details .blog-details-content .category li span.icon-book i {
  font-style: normal;
  font-size: 16px;
}
.blog-details .blog-details-content .category li:last-child span {
  display: none;
}
.blog-details .blog-details-content .category li a {
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  text-transform: capitalize;
  color: #666666;
}

.entry-meta {
  padding-left: 0;
  margin-bottom: 17px;
  list-style-type: none;
  text-transform: capitalize;
}
.entry-meta li {
  position: relative;
  display: inline-block;
  margin-right: 21px;
}
.entry-meta li a {
  display: inline-block;
}
.entry-meta li i {
  margin-right: 2px;
}
.entry-meta li::before {
  content: "";
  position: absolute;
  top: 8px;
  right: -12px;
  width: 1px;
  height: 13px;
  background-color: #d4c7c7;
}
.entry-meta li:last-child {
  margin-right: 0;
}
.entry-meta li:last-child::before {
  display: none;
}

blockquote, .blockquote {
  background-color: #fafafa;
  padding: 30px !important;
  line-height: 25px;
  font-weight: 500;
  position: relative;
  margin: 25px 0;
  border-left: 3px solid;
}
blockquote p, .blockquote p {
  line-height: 1.4 !important;
  margin-bottom: 0;
  color: #161c2d;
  font-style: italic;
  font-weight: 700;
  font-size: 20px;
}
blockquote p:last-child, .blockquote p:last-child {
  margin-bottom: 0 !important;
}
blockquote cite, .blockquote cite {
  color: #212529;
  font-size: 14px;
  font-style: normal !important;
}

/*================================================
Pagination Area CSS
=================================================*/
.pagination-area {
  margin-top: 20px;
  text-align: center;
}
.pagination-area .page-numbers {
  width: 45px;
  height: 45px;
  margin: 0 3px;
  display: inline-block;
  background-color: #ffffff;
  line-height: 48px;
  box-shadow: 0 2px 10px 0 #d8dde6;
  font-size: 18px;
  font-weight: 700;
}
.pagination-area .page-numbers.current, .pagination-area .page-numbers:hover, .pagination-area .page-numbers:focus {
  color: #ffffff;
  box-shadow: 0 2px 10px 0 #d8dde6;
}

.pages-links {
  margin: 15px 0;
}
.pages-links .page-links-title {
  padding-right: 5px;
  font-weight: 500;
}
.pages-links .post-page-numbers {
  width: 45px;
  height: 45px;
  margin: 0 3px;
  display: inline-block;
  background-color: #ffffff;
  line-height: 48px;
  box-shadow: 0 2px 10px 0 #d8dde6;
  font-size: 18px;
  font-weight: 700;
}
.pages-links .post-page-numbers.current, .pages-links .post-page-numbers:hover, .pages-links .post-page-numbers:focus {
  color: #ffffff;
  box-shadow: 0 2px 10px 0 #d8dde6;
}

/* Unit test pages style 
====================================================================*/
/* Sticky Post */
.sticky .single-blog-post {
  background: #212529;
}
.sticky .single-blog-post .post-content h3 a {
  color: #fff;
}
.sticky .single-blog-post .post-content p {
  color: #fff;
}
.sticky .single-blog-post .post-content ul li {
  color: #fff;
}
.sticky .single-blog-post .post-content ul li a {
  color: #fff;
  position: relative;
  text-transform: capitalize;
  font-weight: 600;
}

/* End Sticky Post */
/* Page Markup And Formatting */
.page-main-content {
  padding-top: 100px;
  padding-bottom: 100px;
  overflow: hidden;
}
.page-main-content h1 {
  font-size: 35px;
  margin-bottom: 15px;
  font-weight: 800;
}
.page-main-content h2 {
  font-size: 30px;
  margin-bottom: 15px;
  font-weight: 800;
}
.page-main-content h3 {
  font-size: 25px;
  margin-bottom: 15px;
  font-weight: 800;
}
.page-main-content h4 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 800;
}
.page-main-content h5 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 800;
}
.page-main-content h6 {
  font-size: 15px;
  margin-bottom: 15px;
  font-weight: 800;
}
.page-main-content p {
  margin-top: 18px;
  margin-bottom: 18px;
}
.page-main-content p:first-child {
  margin-top: 0;
}
.page-main-content .entry-content a {
  text-decoration: underline;
  display: inline-block;
}
.page-main-content .entry-content a:hover {
  text-decoration: none;
}
.page-main-content footer.entry-footer {
  clear: both;
}
.page-main-content footer.entry-footer .edit-link {
  margin-top: 10px;
  margin-bottom: 10px;
  display: block;
}
.page-main-content dl, .page-main-content ol, .page-main-content ul {
  margin-top: 20px;
  margin-bottom: 20px;
}
.page-main-content dt {
  margin-bottom: 5px;
  color: #0d1028;
}
.page-main-content dd {
  margin: 0 1rem 1rem;
  line-height: 1.8;
}
.page-main-content ul {
  list-style: disc;
  padding-left: 20px;
}
.page-main-content ul li {
  list-style: disc;
  line-height: 1.8;
  margin-bottom: 5px;
}
.page-main-content ul li ul {
  margin: 5px 0 0;
  list-style-type: circle;
}
.page-main-content ul li ul li {
  list-style-type: circle;
}
.page-main-content ol {
  padding-left: 20px;
}
.page-main-content ol li {
  line-height: 1.8;
  margin-bottom: 5px;
}
.page-main-content ol li ol {
  margin: 5px 0 0;
}
.page-main-content b, .page-main-content strong {
  color: #212529;
}
.page-main-content dfn, .page-main-content cite, .page-main-content em, .page-main-content i {
  font-style: italic;
}
.page-main-content code, .page-main-content kbd, .page-main-content tt, .page-main-content var {
  font-size: 0.88889em;
  font-family: Menlo, monaco, Consolas, Lucida Console, monospace;
}
.page-main-content kbd {
  background-color: #f1f0f0;
}
.page-main-content mark, .page-main-content ins {
  background: #fff9c0;
  text-decoration: none;
}
.page-main-content pre {
  font-size: 0.88889em;
  font-family: "Courier 10 Pitch", Courier, monospace;
  line-height: 1.8;
  overflow: auto;
}
.page-main-content abbr, .page-main-content acronym {
  border-bottom: 1px dotted #484848;
  cursor: help;
}

address {
  margin: 20px 0;
  font-style: italic;
  line-height: 30px;
}

table {
  margin: 0 0 2rem;
  border-collapse: collapse;
  width: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  background: #ffffff;
}
table td, table th {
  padding: 10px 15px;
  border: 1px solid #d3dbe2;
  font-size: 13px;
}
table td a {
  font-weight: 600;
}
table th a {
  text-decoration: underline;
}
table th a:hover {
  text-decoration: none;
}

/* End Page Markup And Formatting */
/* Puva posts thumb */
.widget_puva_posts_thumbs, .widget_puva_custom_posts_thumbs {
  position: relative;
  overflow: hidden;
}
.widget_puva_posts_thumbs .item, .widget_puva_custom_posts_thumbs .item {
  overflow: hidden;
  margin-bottom: 20px;
}
.widget_puva_posts_thumbs .item:last-child, .widget_puva_custom_posts_thumbs .item:last-child {
  margin-bottom: 0;
}
.widget_puva_posts_thumbs .item .thumb, .widget_puva_custom_posts_thumbs .item .thumb {
  float: left;
  height: 80px;
  overflow: hidden;
  position: relative;
  width: 80px;
  margin-right: 15px;
}
.widget_puva_posts_thumbs .item .thumb .fullimage, .widget_puva_custom_posts_thumbs .item .thumb .fullimage {
  width: 80px;
  height: 80px;
  display: inline-block;
  background-size: cover !important;
  background-repeat: no-repeat;
  background-position: center center !important;
}
.widget_puva_posts_thumbs .item .info, .widget_puva_custom_posts_thumbs .item .info {
  overflow: hidden;
}
.widget_puva_posts_thumbs .item .info time, .widget_puva_custom_posts_thumbs .item .info time {
  display: block;
  text-transform: capitalize;
  color: var(--optionalColor);
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 500;
}
.widget_puva_posts_thumbs .item .info .title, .widget_puva_custom_posts_thumbs .item .info .title {
  margin-bottom: 0;
  line-height: 1.5;
  font-size: 14px;
  font-weight: 600;
}
.widget_puva_posts_thumbs .item .info .title a, .widget_puva_custom_posts_thumbs .item .info .title a {
  color: #161c2d;
}

/* End puva posts thumb */
/* HTML Tags and Formatting */
.blog-details .blog-details-content .entry-meta {
  margin-top: 10px;
}
.blog-details .blog-details-content h1 {
  font-size: 30px;
  margin-bottom: 15px;
}
.blog-details .blog-details-content h2 {
  font-size: 25px;
  margin-bottom: 15px;
}
.blog-details .blog-details-content h3 {
  font-size: 20px;
  margin-bottom: 15px;
}
.blog-details .blog-details-content h4 {
  font-size: 18px;
  margin-bottom: 15px;
}
.blog-details .blog-details-content h5 {
  font-size: 16px;
  margin-bottom: 15px;
}
.blog-details .blog-details-content h6 {
  font-size: 14px;
  margin-bottom: 15px;
}
.blog-details .blog-details-content p {
  line-height: 1.8;
}
.blog-details .blog-details-content p a {
  text-decoration: underline;
  display: inline-block;
}
.blog-details .blog-details-content p a:hover {
  text-decoration: none;
}
.blog-details .blog-details-content .entry-content a {
  text-decoration: underline;
}
.blog-details .blog-details-content .entry-content a:hover {
  text-decoration: none;
}
.blog-details .blog-details-content dl, .blog-details .blog-details-content ol, .blog-details .blog-details-content ul {
  margin-top: 20px;
  margin-bottom: 20px;
}
.blog-details .blog-details-content dl a, .blog-details .blog-details-content ol a, .blog-details .blog-details-content ul a {
  text-decoration: underline;
  display: inline-block;
}
.blog-details .blog-details-content dl a:hover, .blog-details .blog-details-content ol a:hover, .blog-details .blog-details-content ul a:hover {
  text-decoration: none;
}
.blog-details .blog-details-content dt {
  margin-bottom: 5px;
  color: var(--blackColor);
}
.blog-details .blog-details-content dd {
  margin: 0 1rem 1rem;
  font-size: 15px;
  line-height: 26px;
}
.blog-details .blog-details-content dd a {
  text-decoration: underline;
  display: inline-block;
}
.blog-details .blog-details-content dd a:hover {
  text-decoration: none;
}
.blog-details .blog-details-content ul {
  list-style: disc;
  padding-left: 20px;
}
.blog-details .blog-details-content ul li {
  list-style: disc;
  line-height: 1.8;
  margin-bottom: 10px;
  color: #666666;
  font-size: 15.5px;
}
.blog-details .blog-details-content ul li ul {
  margin: 10px 0 0;
  list-style-type: circle;
}
.blog-details .blog-details-content ul li ul li {
  list-style-type: circle;
}
.blog-details .blog-details-content ul li ol {
  margin: 10px 0 0;
  list-style-type: circle;
}
.blog-details .blog-details-content ul li ol li {
  list-style-type: decimal;
}
.blog-details .blog-details-content ul li ol li ul li {
  list-style-type: circle;
}
.blog-details .blog-details-content ol {
  padding-left: 20px;
}
.blog-details .blog-details-content ol li {
  line-height: 1.8;
  margin-bottom: 10px;
  color: #666666;
}
.blog-details .blog-details-content ol li ol, .blog-details .blog-details-content ol li ul {
  margin: 10px 0 0;
}
.blog-details .blog-details-content b, .blog-details .blog-details-content strong {
  font-weight: 600;
  color: #212529;
}
.blog-details .blog-details-content dfn, .blog-details .blog-details-content cite, .blog-details .blog-details-content em, .blog-details .blog-details-content i {
  font-style: italic;
}
.blog-details .blog-details-content code, .blog-details .blog-details-content kbd, .blog-details .blog-details-content tt, .blog-details .blog-details-content var {
  font-size: 0.88889em;
  font-family: Menlo, monaco, Consolas, Lucida Console, monospace;
}
.blog-details .blog-details-content kbd {
  background-color: #eee;
}
.blog-details .blog-details-content mark, .blog-details .blog-details-content ins {
  background: #fff9c0;
  text-decoration: none;
  color: #000;
  padding: 0 5px;
}
.blog-details .blog-details-content pre {
  font-size: 0.88889em;
  font-family: "Courier 10 Pitch", Courier, monospace;
  line-height: 1.8;
  overflow: auto;
}
.blog-details .blog-details-content abbr, .blog-details .blog-details-content acronym {
  border-bottom: 1px dotted #484848;
  cursor: help;
}
.blog-details .blog-details-content i.fa {
  font-style: normal;
}
.blog-details .blog-details-content ul.entry-meta {
  margin: 0 0 20px;
  padding: 0;
  border-bottom: 1px solid #eeeeee;
}
.blog-details .blog-details-content ul.entry-meta li a {
  text-transform: capitalize;
  color: #666666;
}
.blog-details .blog-details-content ul.entry-meta li span a {
  text-decoration: none;
}
.blog-details .blog-details-content iframe, .blog-details .blog-details-content video {
  width: 100%;
}

/* End HTML Tags and Formatting */
/* main page: Comments */
.comments-area .comment-content h1 {
  font-size: 30px;
  margin-bottom: 15px;
}
.comments-area .comment-content h2 {
  font-size: 25px;
  margin-bottom: 15px;
}
.comments-area .comment-content h3 {
  font-size: 20px;
  margin-bottom: 15px;
}
.comments-area .comment-content h4 {
  font-size: 18px;
  margin-bottom: 15px;
}
.comments-area .comment-content h5 {
  font-size: 16px;
  margin-bottom: 15px;
}
.comments-area .comment-content h6 {
  font-size: 14px;
  margin-bottom: 15px;
}
.comments-area .comment-content p {
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 14px;
}
.comments-area .comment-content p:last-child {
  margin-bottom: 0;
}
.comments-area .comment-content .entry-content a {
  text-decoration: underline;
}
.comments-area .comment-content .entry-content a:hover {
  text-decoration: none;
}
.comments-area .comment-content dl, .comments-area .comment-content ol, .comments-area .comment-content ul {
  margin-top: 20px;
  margin-bottom: 20px;
}
.comments-area .comment-content dt {
  margin-bottom: 5px;
}
.comments-area .comment-content dd {
  margin: 0 1rem 1rem;
  font-size: 15px;
  line-height: 26px;
}
.comments-area .comment-content ul {
  list-style: disc;
  padding-left: 20px;
}
.comments-area .comment-content ul li {
  list-style: disc;
  line-height: 1.8;
  margin-bottom: 10px;
}
.comments-area .comment-content ul li ul {
  margin: 10px 0 0;
  list-style-type: circle;
}
.comments-area .comment-content ul li ul li {
  list-style-type: circle;
}
.comments-area .comment-content ol {
  padding-left: 20px;
}
.comments-area .comment-content ol li {
  line-height: 1.8;
  margin-bottom: 10px;
  list-style-type: decimal;
}
.comments-area .comment-content ol li ol {
  margin: 10px 0 0;
}
.comments-area .comment-content b, .comments-area .comment-content strong {
  font-weight: 600;
  color: #212529;
}
.comments-area .comment-content dfn, .comments-area .comment-content cite, .comments-area .comment-content em, .comments-area .comment-content i {
  font-style: italic;
}
.comments-area .comment-content code, .comments-area .comment-content kbd, .comments-area .comment-content tt, .comments-area .comment-content var {
  font-size: 0.88889em;
  font-family: Menlo, monaco, Consolas, Lucida Console, monospace;
}
.comments-area .comment-content kbd {
  background-color: #fafafa;
}
.comments-area .comment-content mark, .comments-area .comment-content ins {
  background: #fff9c0;
  text-decoration: none;
  color: #000;
  padding: 0 6px;
}
.comments-area .comment-content pre {
  font-size: 0.88889em;
  font-family: "Courier 10 Pitch", Courier, monospace;
  line-height: 1.8;
  overflow: auto;
  background: #fafafa;
  color: var(--blackColor);
}
.comments-area .comment-content abbr, .comments-area .comment-content acronym {
  border-bottom: 1px dotted #484848;
  cursor: help;
}

/* End main page: Comments */
/* Comments list style */
#comments {
  clear: both;
  overflow: hidden;
  list-style: none;
  padding: 30px;
  background-color: #ffffff;
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.05);
  margin-top: 30px;
}
#comments .comment-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
#comments .comment-list .children {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
#comments .comment-list:before {
  display: none;
}
#comments .comment-list .comment-body {
  border-bottom: 1px solid #eeeeee;
  margin-left: 65px;
  font-size: 14px;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
#comments .comment-list .comment-body a {
  text-decoration: underline;
  display: inline-block;
}
#comments .comment-list .comment-body a:hover {
  text-decoration: none;
}
#comments .comment-list .comment-body .comment-content img {
  margin: 5px 0;
}
#comments .comment-list .comment-body .reply {
  margin-top: 20px;
}
#comments .comment-list .comment-body .reply a {
  border: 1px solid #ded9d9;
  background: #ffffff;
  display: inline-flex;
  padding: 10px 20px;
  line-height: 1;
  border-radius: 30px;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
}
#comments .comment-list .comment-body .reply a:hover {
  color: #ffffff;
}
#comments .comment-author {
  font-size: 15px;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
  clear: both;
}
#comments .comment-author .avatar {
  height: 50px;
  left: -65px;
  position: absolute;
  width: 50px;
}
#comments .comment-author .says {
  display: none;
}
#comments .comment-author b.fn {
  font-weight: 600;
  color: var(--blackColor);
}
#comments .comment-author b.fn a {
  color: var(--blackColor);
  text-decoration: none;
}
#comments .comment-meta {
  margin-bottom: 1em;
}
#comments .comment-metadata {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1818em;
  text-transform: uppercase;
}
#comments .comment-metadata a {
  text-decoration: none !important;
  display: inline-block;
}
#comments .comment-metadata a.comment-edit-link {
  color: #222;
  margin-left: 1em;
}
#comments .comment-reply-link {
  font-weight: 600;
  position: relative;
}
#comments .comment-reply-link .icon {
  color: #222;
  left: -2em;
  height: 1em;
  position: absolute;
  top: 0;
  width: 1em;
}
#comments .children {
  padding-left: 10px !important;
}
#comments .children .comment-author .avatar {
  height: 30px;
  left: -45px;
  width: 30px;
}
#comments .bypostauthor > .comment-body > .comment-meta > .comment-author .avatar {
  border: 1px solid #575757;
  padding: 2px;
}
#comments .no-comments,
#comments .comment-awaiting-moderation {
  color: #767676;
  font-size: 14px;
  font-size: 0.875rem;
  font-style: italic;
}
#comments .comments-pagination {
  margin: 2em 0 3em;
}

.comments-area .comment-list .comment .comment-respond {
  margin-bottom: 30px;
}

.comments-title {
  position: relative;
  margin-bottom: 25px !important;
  font-size: 20px !important;
  line-height: 1.5;
  font-weight: 700;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 10px;
}
.comments-title::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 13px;
  height: 25px;
  width: 3px;
  transform: translateY(-50%);
}

/* End Comments list style */
/* Comment form */
.comment-respond {
  background: #ffffff;
  padding: 0;
  clear: both;
}
.comment-respond .comment-reply-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 10px;
  margin-bottom: 15px;
  position: relative;
  text-transform: capitalize;
}
.comment-respond .comment-reply-title::before {
  content: "";
  height: 25px;
  width: 3px;
  left: -30px;
  position: absolute;
  top: 13px;
  transform: translateY(-50%);
}
.comment-respond .comment-reply-title #cancel-comment-reply-link {
  font-size: 14px;
  color: red;
  display: inline-block;
  margin-left: 10px;
}
.comment-respond label {
  display: block;
  margin-bottom: 8px;
  color: var(--blackColor);
  font-weight: 600;
  font-size: 13px;
}
.comment-respond input[type=date], .comment-respond input[type=time], .comment-respond input[type=datetime-local], .comment-respond input[type=week], .comment-respond input[type=month], .comment-respond input[type=text], .comment-respond input[type=email], .comment-respond input[type=url], .comment-respond input[type=password], .comment-respond input[type=search], .comment-respond input[type=tel], .comment-respond input[type=number], .comment-respond textarea {
  background-image: none;
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 5px;
  color: #000;
  padding: 0.625em 15px;
  width: 100%;
  height: 45px;
  font-size: 14px;
}
.comment-respond textarea {
  height: auto !important;
}
.comment-respond .form-submit {
  text-align: left;
}
.comment-respond .form-submit input {
  border: none;
  color: #ffffff;
  padding: 15px 25px;
  display: inline-block;
  cursor: pointer;
  outline: 0;
  border-radius: 0;
  transition: 0.5s;
  text-transform: capitalize;
  font-weight: 700;
  font-size: 14px;
}
.comment-respond .form-submit input:hover, .comment-respond .form-submit input:focus {
  color: #ffffff;
  background: #393953;
}
.comment-respond input:focus, .comment-respond textarea:focus {
  outline: 0;
}
.comment-respond p {
  line-height: 1;
  margin-bottom: 0;
  margin-top: 25px;
}
.comment-respond .comment-form-cookies-consent label {
  display: inline-block;
  margin: 0;
  line-height: 20px;
  font-weight: normal;
  font-size: 13.4px;
}
.comment-respond p.comment-notes {
  line-height: 26px;
  font-size: 14px;
  margin-top: 5px;
}
.comment-respond p.comment-form-comment {
  float: left;
  width: 100%;
}
.comment-respond p.comment-form-author {
  width: 50%;
  float: left;
  padding-right: 12px;
}
.comment-respond p.comment-form-email {
  width: 50%;
  float: left;
  padding-left: 12px;
}
.comment-respond p.comment-form-url {
  float: left;
  width: 100%;
}
.comment-respond p.comment-form-cookies-consent {
  width: 100%;
  float: left;
  position: relative;
  padding-left: 20px;
}
.comment-respond p.comment-form-cookies-consent input {
  position: absolute;
  left: 0;
  top: 3px;
}
.comment-respond p.form-submit {
  float: left;
  width: 100%;
}
.comment-respond p.logged-in-as {
  line-height: 26px;
  font-size: 15px;
  margin-top: 5px;
}
.comment-respond p.logged-in-as a {
  display: inline-block;
  text-decoration: underline;
  font-size: 13.5px;
}
.comment-respond p.logged-in-as a:hover {
  text-decoration: none;
}

.parent .comment-respond p.form-submit, .depth-1 .comment-respond p.form-submit {
  margin-bottom: 30px;
}

/* End Comment form */
/* Unit test all post style */
.wp-block-image {
  margin-bottom: 20px;
}
.wp-block-image figcaption {
  font-size: 14px;
  margin-top: 12px;
  text-align: center;
}
.wp-block-image figcaption a {
  text-decoration: underline;
  display: inline-block;
}
.wp-block-image figcaption a:hover {
  text-decoration: none;
}

.wp-block-button {
  margin-bottom: 1.5em;
}
.wp-block-button .wp-block-button__link {
  font-size: 16px;
  border-radius: 5px;
  color: #fff !important;
}
.wp-block-button .wp-block-button__link br {
  display: none;
}
.wp-block-button .wp-block-button__link:hover {
  background-color: #222;
  color: #fff;
}

.wp-block-cover .wp-block-cover-text {
  color: #fff !important;
}

.is-style-outline .wp-block-button__link {
  background-color: transparent !important;
  font-size: 16px;
  border-radius: 5px;
}
.is-style-outline .wp-block-button__link:hover {
  background-color: transparent;
  color: #222 !important;
  border-color: #222;
}

pre.wp-block-code {
  border: 1px solid #eee;
  padding: 10px 15px;
}

pre.wp-block-preformatted {
  background-color: #fafafa;
  padding: 20px;
  margin: 20px 0;
}

.wp-block-pullquote {
  border-top: 4px solid #555d66;
  border-bottom: 4px solid #555d66;
  color: #40464d;
  border-color: transparent;
  border-width: 2px;
  padding: 0;
}
.wp-block-pullquote blockquote {
  color: #111;
  border: none;
  margin-right: 0;
  padding-left: 0;
}
.wp-block-pullquote blockquote p {
  font-size: 2.25em;
  font-style: italic;
}
.wp-block-pullquote blockquote cite {
  display: inline-block;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  line-height: 1.6;
  text-transform: none;
  color: #767676;
  font-size: 15px;
  font-style: normal;
}

.wp-block-table.is-style-stripes td {
  border-color: #767676;
}

.wp-block-verse {
  font-family: "Poppins", sans-serif !important;
  font-size: 16px !important;
}

.wp-block-columns {
  margin-top: 20px;
  margin-bottom: 20px;
}

.wp-block-media-text {
  margin-top: 30px;
  margin-bottom: 30px;
}
.wp-block-media-text .has-large-font-size {
  font-size: 25px;
  margin-top: 0 !important;
}

.page-links {
  margin-top: 20px;
  margin-bottom: 20px;
  clear: both;
}
.page-links span.page-links-title {
  font-weight: 500;
  font-size: 20px;
  padding-right: 10px;
}
.page-links .post-page-numbers {
  width: 35px;
  height: 35px;
  border-radius: 25px;
  background-color: #ffffff;
  border: 1px solid #eee;
  font-size: 15px;
  line-height: 35px;
  color: #0a0c19;
  text-align: center;
  display: inline-block;
  margin-left: 5px;
  text-decoration: none !important;
}
.page-links .post-page-numbers:hover {
  color: #ffffff;
}
.page-links .current {
  color: #ffffff;
}

.wp-block-archives-list {
  padding: 0 !important;
}
.wp-block-archives-list li {
  list-style: none !important;
}
.wp-block-archives-list li a:hover {
  text-decoration: underline;
}

.wp-block-categories-list {
  padding: 0 !important;
}
.wp-block-categories-list li {
  list-style: none !important;
}
.wp-block-categories-list li a {
  text-transform: capitalize;
}
.wp-block-categories-list li a:hover {
  text-decoration: underline;
}
.wp-block-categories-list li span.post-count {
  padding-left: 8px;
  float: right;
}
.wp-block-categories-list li .children li a {
  position: relative;
}
.wp-block-categories-list li .children li a::before {
  content: "-";
  position: absolute;
  left: -13px;
  top: -2px;
}

.wp-block-archives-dropdown {
  margin-bottom: 20px;
}
.wp-block-archives-dropdown select {
  height: 45px;
  border: 1px solid #eee;
  width: 100%;
  font-size: 14px;
  padding: 8px 15px;
  color: #555;
}

.wp-block-latest-comments {
  padding: 0 !important;
}
.wp-block-latest-comments .wp-block-latest-comments__comment-meta a {
  font-weight: 600;
  text-decoration: underline;
}
.wp-block-latest-comments .wp-block-latest-comments__comment-meta a:hover {
  text-decoration: none;
}

.wp-block-latest-posts li a {
  font-weight: 600;
}

.wp-block-gallery {
  padding: 0 !important;
  margin-top: -3px !important;
  margin-bottom: 0 !important;
}
.wp-block-gallery .blocks-gallery-item {
  margin-bottom: 15px !important;
}
.wp-block-gallery .blocks-gallery-grid {
  padding: 0 !important;
  margin-top: 3px !important;
  margin-bottom: 5px !important;
}

.wp-block-cover {
  margin-top: 30px;
  margin-bottom: 30px;
}
.wp-block-cover p.wp-block-cover-text {
  font-weight: bold;
  margin-bottom: 20px !important;
  font-size: 30px !important;
  line-height: 1.5;
}
.wp-block-cover p.wp-block-cover-text strong {
  color: #fff;
}

.wp-block-cover.has-background-dim.alignleft {
  margin-top: 0;
}

.wp-block-cover.has-background-dim-60.has-background-dim .wp-block-cover-text a {
  color: #fff;
}

.wp-block-file a {
  text-decoration: underline;
  font-size: 15px;
}
.wp-block-file a:hover {
  text-decoration: none;
}
.wp-block-file .wp-block-file__button {
  border-radius: 4px !important;
  font-size: 14px !important;
  font-weight: 500;
  display: table;
  margin: 10px 0 0;
}
.wp-block-file .wp-block-file__button:hover {
  background-color: #000 !important;
  color: #fff;
}

.wp-block-quote.is-style-large {
  border: none;
  padding-left: 0;
  margin: 20px 0;
}

.has-cyan-bluish-gray-background-color.has-cyan-bluish-gray-background-color p {
  color: #ffffff;
}
.has-cyan-bluish-gray-background-color.has-cyan-bluish-gray-background-color cite {
  display: none;
}
.has-cyan-bluish-gray-background-color.has-cyan-bluish-gray-background-color blockquote {
  max-width: 80%;
  background: transparent;
}

.wp-block-gallery.alignwide {
  width: 100%;
}

.wp-caption .wp-caption-text {
  font-size: 15px;
  line-height: 20px;
  margin: 0;
  text-align: center;
  padding: 12px 0 0;
}
.wp-caption .wp-caption-text a {
  text-decoration: underline;
  display: inline-block;
}
.wp-caption .wp-caption-text a:hover {
  text-decoration: none;
}

.has-very-light-gray-color.has-very-light-gray-color {
  color: #fff;
}

.is-style-squared .wp-block-button__link {
  border-radius: 0 !important;
}

/* End Unit test all post style */
/* Post Format: Gallery */
.gallery {
  margin: 30px -1.1666667% 0;
}

.gallery-item {
  display: inline-block;
  max-width: 33.33%;
  padding: 0 1.1400652% 2.2801304%;
  text-align: center;
  vertical-align: top;
  width: 100%;
}

.gallery-columns-1 .gallery-item {
  max-width: 100%;
}

.gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.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-icon img {
  margin: 0 auto;
}

.gallery-caption {
  display: block;
  font-size: 14px;
  font-style: italic;
  line-height: 1.6153846154;
  padding-top: 0.5384615385em;
}

.gallery-columns-6 .gallery-caption,
.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
  display: none;
}

/* End Post Format: Gallery */
/* Post password form style */
.post-password-form label {
  font-weight: 600;
}
.post-password-form label input {
  border: 1px solid #ccc;
  height: 45px;
  margin: 0 10px;
  padding: 5px 15px;
}
.post-password-form input[type=submit] {
  border: 1px solid;
  color: #fff;
  height: 45px;
  padding: 5px 20px;
  font-weight: 600;
  cursor: pointer;
}
.post-password-form input[type=submit]:hover {
  background-color: #000;
  border: 1px solid #000;
  color: #fff;
}

/* End Post password form style */
/* Pingback style */
.comments-area .comment-list .trackback .comment-body {
  margin-left: 0 !important;
}
.comments-area .comment-list .trackback .comment-body a {
  text-decoration: underline;
}
.comments-area .comment-list .trackback .comment-body a:hover {
  text-decoration: none;
}
.comments-area .comment-list .pingback .comment-body {
  margin-left: 0 !important;
}

/* End Pingback style */
/* Comment navigation */
.comment-navigation .nav-links {
  overflow: hidden;
  margin-bottom: 25px;
}
.comment-navigation .nav-links .nav-previous {
  float: left;
}
.comment-navigation .nav-links .nav-previous a {
  border: 1px solid #eee;
  padding: 7px 18px;
  font-size: 14px;
  text-transform: capitalize;
  background: #fff;
  display: block;
}
.comment-navigation .nav-links .nav-previous a:hover {
  color: #fff;
}
.comment-navigation .nav-links .nav-next {
  float: right;
}
.comment-navigation .nav-links .nav-next a {
  border: 1px solid #eee;
  background: #fff;
  padding: 7px 18px;
  font-size: 14px;
  text-transform: capitalize;
  display: block;
}
.comment-navigation .nav-links .nav-next a:hover {
  color: #fff;
}

/* End Comment navigation */
/* Post search not found form */
.no-results .alert .page-title {
  margin: 0;
  font-size: 20px;
}
.no-results h1.page-title {
  font-size: 22px;
  font-weight: 600;
}

.search-form {
  position: relative;
}
.search-form label {
  display: block;
}
.search-form .search-field {
  background-color: #ffffff;
  height: 50px;
  padding: 6px 15px;
  border: 1px solid #eeeeee;
  width: 100%;
  display: block;
  outline: 0;
  transition: var(--transition);
}
.search-form .search-submit {
  position: absolute;
  cursor: pointer;
  top: 0;
  right: 0;
  outline: 0;
  border: none;
  color: #ffffff;
  height: 50px;
  padding: 0 20px;
  transition: var(--transition);
  text-transform: capitalize;
  font-weight: 600;
  font-size: 15px;
}
.search-form .search-submit:hover {
  color: #ffffff;
  background: var(--blackColor);
}

/* End Post search not found form */
/*learn-more-btn*/
.learn-more-btn {
  display: inline-block;
  position: relative;
  color: #666666;
  font-size: 15px;
  font-weight: 600;
}
.learn-more-btn i {
  margin-left: 2px;
  position: relative;
  top: -0.6px;
}
.learn-more-btn i::before {
  font-size: 11px;
}
.learn-more-btn::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.learn-more-btn:hover::before {
  width: 100%;
  opacity: 1;
  visibility: visible;
}

.archive-description p {
  color: #ffffff;
}

.blocks-gallery-caption {
  margin-bottom: 12px;
}

.wp-block-group__inner-container {
  padding: 30px;
}

.wp-block-archives-list li span.post-count {
  padding-left: 8px;
  float: right;
}

.wp-block-categories-dropdown {
  margin-bottom: 20px;
}
.wp-block-categories-dropdown select {
  height: 45px;
  border: 1px solid #eee;
  width: 100%;
  font-size: 14px;
  padding: 8px 15px;
  color: #555;
}

.wp-block-tag-cloud a {
  display: inline-block;
  font-weight: 600;
  font-size: 12.5px !important;
  padding: 6px 13px;
  border: 1px dashed #eeeeee;
  position: relative;
  color: #393953 !important;
  text-decoration: none !important;
  margin-top: 8px;
  margin-right: 4px;
}
.wp-block-tag-cloud a:hover, .wp-block-tag-cloud a:focus {
  color: #ffffff !important;
}

.wp-block-search {
  margin-bottom: 30px;
  position: relative;
}
.wp-block-search label {
  display: block;
  margin-bottom: 10px;
}
.wp-block-search .screen-reader-text {
  display: none;
}
.wp-block-search .wp-block-search__input {
  background-color: #ffffff;
  height: 50px;
  padding: 6px 15px;
  border: 1px solid #eeeeee;
  max-width: 100%;
  display: block;
  outline: 0;
  transition: var(--transition);
}
.wp-block-search button {
  position: absolute;
  right: 0;
  outline: 0;
  bottom: 0;
  height: 50px;
  width: 80px;
  z-index: 1;
  border: none;
  color: #ffffff;
}
.wp-block-search button:hover {
  color: #ffffff;
  background: #393953 !important;
}

.post-tag-media {
  background-color: #fafafa;
  clear: both;
  margin-top: 20px;
  padding: 10px 25px;
}
.post-tag-media ul {
  padding: 0 !important;
  margin: 0 !important;
}
.post-tag-media ul li {
  display: inline-block;
  margin: 5px 0;
}
.post-tag-media ul li span {
  font-weight: 600;
  margin-right: 5px;
  display: inline-block;
}
.post-tag-media ul li a {
  margin-left: 5px;
  text-transform: capitalize;
  font-size: 13px;
  border: 1px solid #ececec;
  padding: 3px 15px;
  display: inline-block;
  text-decoration: none !important;
  background-color: #fff;
  border-radius: 10px;
}
.post-tag-media ul li a:hover {
  color: #fff !important;
}
.post-tag-media ul.social-share {
  text-align: right;
}

/* New Css */
#comments .comment-list .children .comment-respond {
  background: #fafafa;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 20px;
  margin-left: 65px;
}
#comments .comment-list .children .comment-respond input[type=date], #comments .comment-list .children .comment-respond #comments .comment-list .children .comment-respond input[type=time], #comments .comment-list .children .comment-respond #comments .comment-list .children .comment-respond input[type=datetime-local], #comments .comment-list .children .comment-respond #comments .comment-list .children .comment-respond input[type=week], #comments .comment-list .children .comment-respond #comments .comment-list .children .comment-respond input[type=month], #comments .comment-list .children .comment-respond #comments .comment-list .children .comment-respond input[type=text], #comments .comment-list .children .comment-respond #comments .comment-list .children .comment-respond input[type=email], #comments .comment-list .children .comment-respond #comments .comment-list .children .comment-respond input[type=url], #comments .comment-list .children .comment-respond #comments .comment-list .children .comment-respond input[type=password], #comments .comment-list .children .comment-respond #comments .comment-list .children .comment-respond input[type=search], #comments .comment-list .children .comment-respond #comments .comment-list .children .comment-respond input[type=tel], #comments .comment-list .children .comment-respond #comments .comment-list .children .comment-respond input[type=number], #comments .comment-list .children .comment-respond #comments .comment-list .children .comment-respond textarea {
  background-color: #ffffff;
}
#comments .comment-list .children .comment-respond p {
  margin-top: 20px;
}
#comments .comment-list .children .comment-respond .logged-in-as {
  margin-top: 5px;
}
#comments .comment-list .children .comment-respond .comment-reply-title {
  border-bottom: none;
  margin-bottom: 0;
  margin-top: -6px;
  padding-bottom: 0;
}
#comments .comment-list .children .comment-respond .comment-reply-title::before {
  display: none;
}
#comments .comment-list .children .comment-respond .form-submit {
  float: unset;
  margin-bottom: 0;
}
#comments .comment-list .children .comment-respond .comment-form-comment {
  background: #fafafa;
  float: unset;
}

.comment-list .depth-1:last-child .comment-respond p.form-submit {
  margin-bottom: 0;
}

.single-footer-widget.widget_puva_posts_thumbs .item .thumb .fullimage, .single-footer-widget.widget_puva_custom_posts_thumbs .item .thumb .fullimage {
  border-radius: 0 0 15px 15px;
  border-bottom: 3px solid #d6d6d6;
}
.single-footer-widget.widget_puva_posts_thumbs .item .info .title a, .single-footer-widget.widget_puva_custom_posts_thumbs .item .info .title a {
  color: #fff;
}
.single-footer-widget.widget_puva_posts_thumbs .item .info time, .single-footer-widget.widget_puva_custom_posts_thumbs .item .info time {
  color: #a0aec0;
}

/* Monster Footer */
.footer-area table {
  background: transparent;
}
.footer-area .calendar_wrap table {
  text-align: center;
  margin-bottom: 0;
}
.footer-area .single-footer-widget {
  margin-bottom: 30px;
}
.footer-area .single-footer-widget ul li {
  color: #dcdcdc;
}
.footer-area .single-footer-widget ul li ul {
  margin-top: 10px;
  padding-left: 10px;
}
.footer-area .single-footer-widget .recentcomments .comment-author-link {
  font-weight: 600;
  font-size: 14px;
  text-transform: capitalize;
}
.footer-area .single-footer-widget .recentcomments a {
  font-weight: 500;
  display: inline;
}
.footer-area .widget_rss ul li {
  margin-bottom: 20px;
}
.footer-area .widget_rss ul li::before {
  top: 10px;
}
.footer-area .widget_rss ul li:last-child {
  margin-bottom: 0;
}
.footer-area .widget_rss ul li .rsswidget {
  display: block;
  font-weight: 600;
  font-size: 15px;
}
.footer-area .widget_rss ul li .rss-date {
  font-size: 13px;
  margin: 10px 0 10px;
  display: block;
  text-transform: uppercase;
}
.footer-area .widget_rss ul li .rssSummary {
  line-height: 25px;
  font-size: 14px;
}
.footer-area .widget_rss ul li cite {
  font-weight: 500;
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-size: 14px;
}
.footer-area .widget_rss p {
  color: #cecece;
}
.footer-area .widget_text p {
  color: #cecece;
}
.footer-area .widget_text p img {
  margin: 10px 0;
}
.footer-area .widget_text .wp-caption-text {
  border: none;
  text-align: center;
  font-size: 14px;
}
.footer-area select {
  border: 1px solid #eee;
  width: 100%;
  height: 45px;
  padding: 5px 15px;
  color: #141414;
  font-weight: 600;
}
.footer-area .widget_tag_cloud .tagcloud a {
  display: inline-block;
  font-size: 14px !important;
  padding: 5px 10px;
  border: 1px solid #2c2929;
  margin-top: 8px;
  margin-right: 4px;
  text-transform: capitalize;
  color: #fff;
}
.footer-area ul li {
  margin-bottom: 8px;
  line-height: 1.8;
}
.footer-area ul li:last-child {
  margin-bottom: 0;
}
.footer-area table td, .footer-area table th {
  padding: 6px 5px;
  font-size: 13px;
  text-align: center;
  color: #ffffff;
}
.footer-area table caption {
  caption-side: top;
  font-weight: bold;
  padding-top: 0;
  color: #fafafa;
}
.footer-area .select {
  color: #333;
  margin-bottom: 0;
}
.footer-area span.post-count {
  float: right;
  font-size: 14px;
  color: #ffffff;
}
.footer-area .rsswidget {
  display: inline-block;
  color: #ffffff;
}
.footer-area .nice-select ul.list li {
  color: #555;
}
.footer-area .wp-calendar-nav a {
  color: #ffffff;
}

.footer-logo .main-title {
  margin: 0;
  color: #ffffff;
}

.hide-wp-nav.is-sticky {
  top: 32px;
}

.logo .main-title {
  font-size: 25px;
  margin: 0;
}

.register-message {
  display: none;
}

.about-area .elementor-column-gap-extended > .elementor-row > .elementor-column > .elementor-element-populated {
  padding: 0 15px !important;
}

.widget_puva_socials_link ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.widget_puva_socials_link ul li {
  margin-bottom: 15px;
  padding-left: 0 !important;
}
.widget_puva_socials_link ul li a {
  display: block !important;
  background-color: #f5f5f5;
  border-radius: 0 0 15px 15px;
  border-bottom: 3px solid #d6d6d6;
  position: relative;
  color: var(--blackColor);
  padding-top: 15px;
  padding-bottom: 12px;
  padding-right: 15px;
  padding-left: 90px;
  font-size: 16px;
  font-weight: 500;
}
.widget_puva_socials_link ul li a i {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 70px;
  color: var(--whiteColor);
  border-radius: 0 0 0 15px;
  font-size: 22px;
  text-align: center;
  transition: var(--transition);
}
.widget_puva_socials_link ul li a i::before {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.widget_puva_socials_link ul li a i.bxl-facebook {
  background-color: #485fb3;
}
.widget_puva_socials_link ul li a i.bxl-twitter {
  background-color: #00afe1;
}
.widget_puva_socials_link ul li a i.bxl-linkedin {
  background-color: #0e76a8;
}
.widget_puva_socials_link ul li a i.bxl-instagram {
  background-color: #0e76a8;
}
.widget_puva_socials_link ul li a:hover {
  border-radius: 0;
}
.widget_puva_socials_link ul li a:hover i {
  border-radius: 0;
}
.widget_puva_socials_link ul li:last-child {
  margin-bottom: 0;
}
.widget_puva_socials_link ul li::before {
  display: none;
}

.widget_buy_now {
  position: relative;
  text-align: center;
  border-radius: 0 0 15px 15px;
  border-bottom: 3px solid #d6d6d6;
}
.widget_buy_now img {
  border-radius: 0 0 15px 15px;
}
.widget_buy_now .content {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--whiteColor);
  padding: 30px 25px;
  max-width: 250px;
  margin-left: auto;
  margin-right: auto;
}
.widget_buy_now .content img {
  border-radius: 0;
}
.widget_buy_now .content p {
  line-height: 1.6;
  margin-top: 15px;
  margin-bottom: 15px;
}
.widget_buy_now .content .buy-now-btn {
  border: none;
  color: var(--whiteColor);
  border-radius: 5px;
  transition: var(--transition);
  display: inline-block;
  padding: 10px 35px;
  background-color: var(--blackColor);
  font-size: 16px;
  font-weight: 500;
}
.widget_buy_now .content .buy-now-btn:hover {
  color: var(--whiteColor);
}
.widget_buy_now .content::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border: 1px solid var(--whiteColor);
  margin: -15px;
  z-index: -1;
}

.article-details-desc .review-thumbnail-box {
  margin-bottom: 0;
}
.article-details-desc .review-video-box {
  margin-bottom: 0;
}
.article-details-desc .review-video-box .video-btn {
  top: 50%;
}

.modal.hide-wp-nav {
  margin-top: 32px;
}

.bfe-editor .nice-select {
  display: none;
}

.bfe-editor #bfe-editor-block-header .sub-header .image_loader {
  height: 100% !important;
  width: 100% !important;
  margin-right: 0 !important;
  background-color: #ffffff !important;
}

.bfe-editor #bfe-editor-block-header .sub-header .select-wrap {
  margin-right: 0 !important;
  width: 100% !important;
  margin-top: 30px;
}

.bfe-editor #bfe-editor-block-header .sub-header label {
  font-size: 20px;
  font-weight: bold;
}

.ss-main .ss-single-selected {
  height: 50px;
}

.bfe-editor #bfe-editor-block-header .sub-header #post_title {
  font-size: 30px;
  font-weight: 500;
  border: 1px solid #eee;
  padding: 20px;
}

.bfe-editor #bfe-editor-block-header .sub-header .image_loader label.thumbnail .button-icon {
  width: 100%;
}

.ss-main .ss-multi-selected .ss-values .ss-disabled {
  height: 50px;
}

.ss-main .ss-multi-selected .ss-add {
  margin: 20px 12px 0 5px;
}

.bfe-editor #bfe-editor-block-header .sub-header .select-wrap .ss-main .ss-multi-selected .ss-values .ss-value {
  height: 50px;
}

.bfe-editor #bfe-editor-block-header .sub-header:not(:first-child) {
  margin-top: 30px;
}

.bfe-editor #bfe-editor-block-header .sub-header {
  padding-right: 0;
  padding-left: 0;
}

.bfe-editor #bfe-editor-block {
  border: 1px solid #eee;
}

.bfe-editor #bfe-editor-block-header .sub-header .image_loader.chosen #post_thumbnail_image {
  width: 100% !important;
  margin-right: 0 !important;
  height: 100%;
}

.bfe-editor #bfe-editor-block-header .sub-header .editor-button {
  background-color: #473bf0;
  color: #ffffff;
}

.bfe-editor #bfe-editor-block-header .sub-header .image_loader.chosen label.thumbnail {
  max-width: 100% !important;
  width: unset !important;
}

.bfe-editor #bfe-editor-block-header .sub-header .image_loader #post_thumbnail_image {
  position: relative !important;
  margin: auto !important;
}

.sub-header.top.sticky .editor-button.big {
  display: none !important;
}
.sub-header.top.sticky .editor-button.view-page {
  display: none !important;
}

.gallery-area .elementor-column-gap-extended > .elementor-row > .elementor-column > .elementor-element-populated {
  padding: 0 15px !important;
}

.products-review-area .elementor-column-gap-extended > .elementor-row > .elementor-column > .elementor-element-populated {
  padding: 0 15px !important;
}

.bfe-editor #bfe-editor-block-header .sub-header.top {
  box-shadow: none !important;
}

.footer-no-padding {
  padding-top: 0 !important;
}

.footer-no-margin {
  margin-top: 0 !important;
}

span.wp-calendar-nav-prev, span.wp-calendar-nav-next {
  margin-top: 5px;
  display: inline-block;
}

.wp-block-image .alignright {
  margin: 5px 0 20px 20px;
}

.review-read-more {
  font-weight: 500;
  font-size: 16px;
  position: relative;
  display: inline-block;
}
.review-read-more::before {
  right: 0;
  left: 0;
  bottom: 0;
  content: "";
  height: 1px;
  position: absolute;
}

.wid-margin-b0 .widget {
  margin-bottom: 0;
}

.iconcls {
  position: relative;
}

.bfe-edit-post-button.right_bottom {
  display: none;
}

.review-submit .nice-select {
  display: none;
}

.acf-button.disabled {
  pointer-events: none;
}

.acf-loading, .acf-spinner {
  height: 20px;
  width: 20px;
  vertical-align: text-top;
  background: transparent url(/wp-admin/images/spinner.gif) no-repeat 50% 50%;
  display: none;
}

.submit-review-form .acf-input-wrap {
  overflow: visible !important;
}
.submit-review-form .categorychecklist-holder .acf-checkbox-list li span {
  font-size: 15px;
}
.submit-review-form .select2-container.-acf .select2-selection {
  border-radius: 0;
  border: none;
  float: unset;
  height: 52px;
  line-height: 52px;
  color: var(--mainColor);
  background-color: var(--whiteColor) !important;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12) !important;
  font-size: 15px;
  font-weight: 600;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 0;
  padding-top: 1px;
}
.submit-review-form .select2-container .select2-search--inline .select2-search__field {
  margin-top: 15px;
}
.submit-review-form .select2-container--default .select2-selection--multiple .select2-selection__choice {
  margin-right: 5px;
  margin-top: 15px;
  padding: 0 5px;
}
.submit-review-form .acf-actions.-hover {
  top: 0;
}
.submit-review-form .acf-image-uploader .hide-if-value .acf-button.button {
  font-weight: bold;
  text-decoration: underline;
}
.submit-review-form .alert-success button.close {
  position: relative;
  top: -4px;
}
.submit-review-form .acf-notice p {
  margin-top: 10px;
  margin-bottom: 10px;
}

.preview-post {
  margin-bottom: 30px;
}

.guest-account {
  display: inline-block;
  cursor: pointer;
  color: #221638;
  transition: var(--transition);
  font-weight: 600;
  position: relative;
  padding-left: 23px;
}
.guest-account i {
  position: absolute;
  top: 1px;
  left: 0;
  font-size: 18px;
}
.guest-account .dropdown-toggle i {
  font-size: 18px;
  position: absolute;
  left: auto !important;
  right: -14px;
  top: 49% !important;
  transform: translateY(-47%);
}
.guest-account .dropdown-toggle:after {
  display: none;
}
.guest-account .dropdown-menu {
  padding: 15px;
  float: unset;
  border: none;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  display: block;
  margin-top: 5px;
  opacity: 0;
  border-radius: 5px;
  visibility: visible;
  transition: 0.4s;
  transform: scaleX(0);
  min-width: 100%;
}
.guest-account .dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: scaleX(1);
}
.guest-account .dropdown-menu .dropdown-item {
  padding: 0;
  color: #000000;
  margin-bottom: 12px;
  font-weight: 400;
  font-size: 16px;
}
.guest-account .dropdown-menu .dropdown-item:hover, .guest-account .dropdown-menu .dropdown-item:focus {
  background-color: transparent !important;
}
.guest-account .dropdown-menu .dropdown-item:last-child {
  margin-bottom: 0;
}

.top-header-right .guest-account {
  color: #ffffff;
}
.top-header-right .guest-account .dropdown-toggle {
  color: #ffffff;
}

/*================================================
Membership Levels Area CSS
=================================================*/
.user-posts-table .table {
  margin-bottom: 0;
}
.user-posts-table .table thead th {
  vertical-align: middle;
  white-space: nowrap;
  padding: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  border-left: none;
  border-bottom: none;
  border-top: none;
  border-right: 1px solid #7e77e3;
}
.user-posts-table .table thead th h2 {
  color: var(--whiteColor);
  margin-bottom: 0;
  font-size: 25px;
}
.user-posts-table .table thead th h3 {
  color: var(--whiteColor);
  font-size: 15px;
  margin-top: 10px;
  margin-bottom: 0;
}
.user-posts-table .table thead th:first-child {
  border-left: none;
}
.user-posts-table .table thead th:last-child {
  border-right: none;
}
.user-posts-table .table tbody tr td {
  padding: 15px 20px;
  white-space: nowrap;
  vertical-align: middle;
  border: none;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
}
.user-posts-table .table tbody tr td:first-child {
  text-align: left;
}
.user-posts-table .table tbody tr td.item-check i {
  width: 20px;
  height: 20px;
  line-height: 20px;
  border-radius: 100%;
  background-color: #0eb582;
  color: var(--whiteColor);
  display: block;
  margin: 0 auto;
}
.user-posts-table .table tbody tr td.item-none i {
  width: 20px;
  height: 20px;
  line-height: 20px;
  border-radius: 100%;
  background-color: #d85554;
  color: var(--whiteColor);
  display: block;
  margin: 0 auto;
}
.user-posts-table .table tbody tr td .select-btn {
  display: inline-block;
  color: var(--blackColor);
  background-color: #efefef;
  padding: 13px 30px;
  border-radius: 5px;
  margin-top: 10px;
  font-size: 15px;
  font-weight: 700;
}
.user-posts-table .table tbody tr td .select-btn:hover {
  color: var(--whiteColor);
}
.user-posts-table .table tbody tr:last-child td {
  padding-bottom: 0;
}
.user-posts-table .table tbody tr:first-child td {
  padding-bottom: 20px;
}

.pending-article-area .pagination-area {
  margin-top: 40px;
}

.sidebar-buttons {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sidebar-buttons li a {
  border: 1px solid #eee;
  color: #161c2d;
  display: block;
  padding: 15px 20px;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  text-transform: capitalize;
  font-weight: 600;
  font-size: 21px;
  margin-bottom: 20px;
}
.sidebar-buttons li a .fa.fa-arrow-circle-right {
  font-size: 17px;
  line-height: 27px;
}
.sidebar-buttons li.active a {
  color: #fff;
}

.optional-title {
  font-size: 25px;
}

.review-heading {
  margin-bottom: 15px;
  background-color: #fafafa;
  padding: 10px 25px;
}

.warning-class {
  margin-top: 30px;
  margin-bottom: 0;
  width: 480px;
}

.login-form-widget .puva-login form .form-group {
  margin-bottom: 15px;
}
.login-form-widget .puva-login form .form-group .form-control {
  border: 1px solid #eeeeee !important;
  border-radius: 5px;
  background-color: var(--whiteColor) !important;
  padding-top: 6px;
}
.login-form-widget .puva-login form button {
  display: block;
  color: var(--whiteColor);
  border: none;
  font-weight: 600;
  display: block;
  width: 10%;
  border-radius: 5px;
  padding: 14px 30px 13px;
  transition: var(--transition);
}
.login-form-widget .puva-login form button:hover {
  background-color: var(--blackColor);
  color: var(--whiteColor);
}

.hidewarning {
  display: none;
}

.cart-btn {
  position: relative;
  line-height: 1;
  display: inline-block;
  font-size: 22px;
}
.cart-btn span {
  position: absolute !important;
  right: -12px;
  top: -3px;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  border-radius: 50%;
  background-color: var(--blackColor);
  font-size: 13px;
  font-weight: 600;
  padding-left: 0 !important;
  color: #fff !important;
}
.cart-btn span::before {
  display: none;
}

.top-others-option .cart-btn {
  top: 5px;
}

.puva-seo-breadcrumbs {
  text-align: right;
}

.et-demo-options-toolbar {
  position: fixed;
  top: 50%;
  width: 40px;
  right: 0;
  line-height: 60px;
  border: 1px solid #eee;
  border-right: 0;
  border-radius: 5px 0 0 5px;
  z-index: 99999;
  background: #fff;
  text-align: center;
  box-shadow: -3px 0 10px -2px rgba(0, 0, 0, 0.1);
}

.et-demo-options-toolbar a {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: #111;
}

.et-demo-options-toolbar a:focus, .et-demo-options-toolbar a:hover {
  color: #111 !important;
}

[class*=hint--] {
  position: relative;
  display: inline-block;
}

[class*=hint--]:before,
[class*=hint--]:after {
  position: absolute;
  transform: translate3d(0, 0, 0);
  visibility: hidden;
  opacity: 0;
  z-index: 1000000;
  pointer-events: none;
  transition: 0.3s ease;
  transition-delay: 0ms;
}

[class*=hint--]:hover:before,
[class*=hint--]:hover:after {
  visibility: visible;
  opacity: 1;
}

[class*=hint--]:hover:before,
[class*=hint--]:hover:after {
  transition-delay: 0.1s;
}

[class*=hint--]:before {
  content: "";
  position: absolute;
  background: 0 0;
  border: 7px solid transparent;
  z-index: 1000001;
}

[class*=hint--]:after {
  background: #000;
  color: #fff;
  padding: 8px 10px;
  font-size: 14px;
  line-height: 15px;
  white-space: nowrap;
  border-radius: 5px;
}

[class*=hint--][aria-label]:after {
  content: attr(aria-label);
}

[class*=hint--][data-hint]:after {
  content: attr(data-hint);
}

[aria-label=""]:before,
[aria-label=""]:after,
[data-hint=""]:before,
[data-hint=""]:after {
  display: none !important;
}

.hint--top-left:before {
  border-top-color: #000;
}

.hint--top-right:before {
  border-top-color: #000;
}

.hint--top:before {
  border-top-color: #000;
}

.hint--bottom-left:before {
  border-bottom-color: #000;
}

.hint--bottom-right:before {
  border-bottom-color: #000;
}

.hint--bottom:before {
  border-bottom-color: #000;
}

.hint--left:before {
  border-left-color: #000;
}

.hint--right:before {
  border-right-color: #000;
}

.hint--top:before {
  margin-bottom: -13px;
}

.hint--top:before,
.hint--top:after {
  bottom: 100%;
  left: 50%;
}

.hint--top:before {
  left: calc(50% - 7px);
}

.hint--top:after {
  transform: translateX(-50%);
}

.hint--top:hover:before {
  transform: translateY(-8px);
}

.hint--top:hover:after {
  transform: translateX(-50%) translateY(-8px);
}

.hint--bottom:before {
  margin-top: -13px;
}

.hint--bottom:before,
.hint--bottom:after {
  top: 100%;
  left: 50%;
}

.hint--bottom:before {
  left: calc(50% - 7px);
}

.hint--bottom:after {
  transform: translateX(-50%);
}

.hint--bottom:hover:before {
  transform: translateY(8px);
}

.hint--bottom:hover:after {
  transform: translateX(-50%) translateY(8px);
}

.hint--right:before {
  margin-left: -13px;
  margin-bottom: -7px;
}

.hint--right:after {
  margin-bottom: -15px;
}

.hint--right:before,
.hint--right:after {
  left: 100%;
  bottom: 50%;
}

.hint--right:hover:before {
  transform: translateX(8px);
}

.hint--right:hover:after {
  transform: translateX(8px);
}

.hint--left:before {
  margin-right: -13px;
  margin-bottom: -7px;
}

.hint--left:after {
  margin-bottom: -15px;
}

.hint--left:before,
.hint--left:after {
  right: 100%;
  bottom: 50%;
}

.hint--left:hover:before {
  transform: translateX(-8px);
}

.hint--left:hover:after {
  transform: translateX(-8px);
}

.hint--top-left:before {
  margin-bottom: -13px;
}

.hint--top-left:before,
.hint--top-left:after {
  bottom: 100%;
  left: 50%;
}

.hint--top-left:before {
  left: calc(50% - 7px);
}

.hint--top-left:after {
  transform: translateX(-100%);
}

.hint--top-left:after {
  margin-left: 14px;
}

.hint--top-left:hover:before {
  transform: translateY(-8px);
}

.hint--top-left:hover:after {
  transform: translateX(-100%) translateY(-8px);
}

.hint--top-right:before {
  margin-bottom: -13px;
}

.hint--top-right:before,
.hint--top-right:after {
  bottom: 100%;
  left: 50%;
}

.hint--top-right:before {
  left: calc(50% - 7px);
}

.hint--top-right:after {
  transform: translateX(0);
}

.hint--top-right:after {
  margin-left: -14px;
}

.hint--top-right:hover:before {
  transform: translateY(-8px);
}

.hint--top-right:hover:after {
  transform: translateY(-8px);
}

.hint--bottom-left:before {
  margin-top: -13px;
}

.hint--bottom-left:before,
.hint--bottom-left:after {
  top: 100%;
  left: 50%;
}

.hint--bottom-left:before {
  left: calc(50% - 7px);
}

.hint--bottom-left:after {
  transform: translateX(-100%);
}

.hint--bottom-left:after {
  margin-left: 14px;
}

.hint--bottom-left:hover:before {
  transform: translateY(8px);
}

.hint--bottom-left:hover:after {
  transform: translateX(-100%) translateY(8px);
}

.hint--bottom-right:before {
  margin-top: -13px;
}

.hint--bottom-right:before,
.hint--bottom-right:after {
  top: 100%;
  left: 50%;
}

.hint--bottom-right:before {
  left: calc(50% - 7px);
}

.hint--bottom-right:after {
  transform: translateX(0);
}

.hint--bottom-right:after {
  margin-left: -14px;
}

.hint--bottom-right:hover:before {
  transform: translateY(8px);
}

.hint--bottom-right:hover:after {
  transform: translateY(8px);
}

[class*=hint--]:after {
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
}

.hint--white:after {
  color: #111;
  background-color: #fff;
  text-shadow: 0 -1px 0px #bfbfbf;
}

.hint--white.hint--top-left:before {
  border-top-color: #fff;
}

.hint--white.hint--top-right:before {
  border-top-color: #fff;
}

.hint--white.hint--top:before {
  border-top-color: #fff;
}

.hint--white.hint--bottom-left:before {
  border-bottom-color: #fff;
}

.hint--white.hint--bottom-right:before {
  border-bottom-color: #fff;
}

.hint--white.hint--bottom:before {
  border-bottom-color: #fff;
}

.hint--white.hint--left:before {
  border-left-color: #fff;
}

.hint--white.hint--right:before {
  border-right-color: #fff;
}

.hint--rounded:after {
  border-radius: 4px;
}

.hint--no-animate:before,
.hint--no-animate:after {
  transition-duration: 0ms;
}

.hint--bounce:before,
.hint--bounce:after {
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
}

/*
New Demo CSS
=================================================*/
/* puva new top header CSS */
.puva-new-top-header .container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}
.puva-new-top-header .header-info {
  padding: 0;
  margin-bottom: 0;
}
.puva-new-top-header .header-info li {
  list-style-type: none;
  color: var(--whiteColor);
  position: relative;
  padding-left: 24px;
}
.puva-new-top-header .header-info li i {
  color: var(--mainColor);
  position: absolute;
  top: 1px;
  left: 0;
  font-size: 18px;
}
.puva-new-top-header .header-info li a {
  color: #9FA7BD;
}
.puva-new-top-header .header-right {
  padding: 0;
  margin-bottom: 0;
  text-align: end;
}
.puva-new-top-header .header-right li {
  list-style-type: none;
  display: inline-block;
  margin-right: 15px;
  color: #9FA7BD;
}
.puva-new-top-header .header-right li:last-child {
  margin-right: 0;
}
.puva-new-top-header .header-right li span {
  display: inline-block;
  cursor: pointer;
  color: var(--whiteColor);
  transition: var(--transition);
  font-weight: 500;
  position: relative;
  padding-left: 24px;
}
.puva-new-top-header .header-right li span i {
  color: var(--whiteColor);
  position: absolute;
  top: 1px;
  left: 0;
  font-size: 18px;
}
.puva-new-top-header .header-right li span::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--whiteColor);
  transition: var(--transition);
  transform: scaleX(0);
}
.puva-new-top-header .header-right li span:hover {
  color: var(--whiteColor);
}
.puva-new-top-header .header-right li span:hover::before {
  transform: scaleX(1);
}
.puva-new-top-header .header-right li a {
  color: var(--whiteColor);
}
.puva-new-top-header .header-right li a i {
  font-size: 16.5px;
  position: relative;
  top: 1.5px;
  transition: var(--transition);
}
.puva-new-top-header .header-right li a i:hover {
  color: var(--mainColor);
}
.puva-new-top-header.top-header-with-main-color {
  background-color: var(--mainColor);
}
.puva-new-top-header.top-header-with-main-color .header-info li {
  color: var(--whiteColor);
}
.puva-new-top-header.top-header-with-main-color .header-info li i {
  color: var(--whiteColor);
}
.puva-new-top-header.top-header-with-main-color .header-info li a {
  color: var(--whiteColor);
}
.puva-new-top-header.top-header-with-main-color .header-right li {
  color: var(--whiteColor);
}
.puva-new-top-header.top-header-with-main-color .header-right li span {
  color: var(--whiteColor);
}
.puva-new-top-header.top-header-with-main-color .header-right li span i {
  color: var(--whiteColor);
}
.puva-new-top-header.top-header-with-main-color .header-right li span::before {
  background-color: var(--whiteColor);
}
.puva-new-top-header.top-header-with-main-color .header-right li span:hover {
  color: var(--whiteColor);
}
.puva-new-top-header.top-header-with-main-color .header-right li span:hover::before {
  transform: scaleX(1);
}
.puva-new-top-header.top-header-with-main-color .header-right li a {
  color: var(--whiteColor);
}
.puva-new-top-header.top-header-with-main-color .header-right li a i {
  color: var(--whiteColor);
}
.puva-new-top-header.top-header-with-main-color .header-right li a i:hover {
  color: var(--optionalColor);
}

/* Puva new navbar area CSS */
.puva-new-navbar-area .puva-nav {
  background: var(--whiteColor);
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid #f9f9f9;
}
.puva-new-navbar-area .puva-nav .container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}
.puva-new-navbar-area .puva-nav .navbar .others-option {
  margin-left: 30px;
}
.puva-new-navbar-area .puva-nav .navbar .others-option .option-item .search-box {
  color: var(--blackColor);
}
.puva-new-navbar-area .puva-nav .navbar .others-option .option-item .search-box:hover {
  color: var(--mainColor);
}
.puva-new-navbar-area .puva-nav .navbar .others-option .option-item .cart-btn {
  color: var(--blackColor);
  position: relative;
  padding-right: 5px;
}
.puva-new-navbar-area .puva-nav .navbar .others-option .option-item .cart-btn b {
  position: absolute;
  top: -2px;
  right: 0;
  display: inline-block;
  height: 15px;
  width: 15px;
  line-height: 15px;
  background-color: var(--blackColor);
  color: var(--whiteColor);
  text-align: center;
  font-size: 12px;
  border-radius: 50px;
  transition: var(--transition);
  font-weight: 400;
}
.puva-new-navbar-area .puva-nav .navbar .others-option .option-item .cart-btn:hover {
  color: var(--mainColor);
}
.puva-new-navbar-area .puva-nav .navbar .others-option .option-item .cart-btn:hover b {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.puva-new-navbar-area .puva-nav .navbar .others-option .option-item .default-btn {
  padding-left: 30px;
  padding-right: 60px;
  padding-top: 12px;
  padding-bottom: 12px;
  background-color: var(--mainColor);
  color: var(--whiteColor);
  border: 1px solid var(--mainColor);
  border-radius: 30px;
}
.puva-new-navbar-area .puva-nav .navbar .others-option .option-item .default-btn:hover {
  background-color: var(--blackColor);
}
.puva-new-navbar-area .puva-nav .navbar .others-option .option-item .default-btn i {
  right: 30px;
  left: auto;
  font-size: 18px;
}
.puva-new-navbar-area .others-option-for-responsive .container .container {
  max-width: 290px;
}
.puva-new-navbar-area .others-option-for-responsive .option-inner .others-option.d-flex {
  display: block !important;
}
.puva-new-navbar-area .others-option-for-responsive .option-inner .others-option .option-item .search-box {
  color: var(--blackColor);
}
.puva-new-navbar-area .others-option-for-responsive .option-inner .others-option .option-item .search-box:hover {
  color: var(--mainColor);
}
.puva-new-navbar-area .others-option-for-responsive .option-inner .others-option .option-item .cart-btn {
  color: var(--blackColor);
  position: relative;
  padding-right: 5px;
}
.puva-new-navbar-area .others-option-for-responsive .option-inner .others-option .option-item .cart-btn b {
  position: absolute;
  top: -2px;
  right: 0;
  display: inline-block;
  height: 15px;
  width: 15px;
  line-height: 15px;
  background-color: var(--blackColor);
  color: var(--whiteColor);
  text-align: center;
  font-size: 12px;
  border-radius: 50px;
  transition: var(--transition);
  font-weight: 400;
}
.puva-new-navbar-area .others-option-for-responsive .option-inner .others-option .option-item .cart-btn:hover {
  color: var(--mainColor);
}
.puva-new-navbar-area .others-option-for-responsive .option-inner .others-option .option-item .cart-btn:hover b {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.puva-new-navbar-area .others-option-for-responsive .option-inner .others-option .option-item .default-btn {
  padding-left: 20px;
  padding-right: 50px;
  background-color: var(--mainColor);
  color: var(--whiteColor);
  border: 1px solid var(--mainColor);
  border-radius: 30px;
}
.puva-new-navbar-area .others-option-for-responsive .option-inner .others-option .option-item .default-btn:hover {
  background-color: var(--blackColor);
}
.puva-new-navbar-area .others-option-for-responsive .option-inner .others-option .option-item .default-btn i {
  right: 20px;
  left: auto;
  font-size: 15px;
}
.puva-new-navbar-area.navbar-with-black-color.is-sticky .puva-nav {
  background-color: #1F2536 !important;
}
.puva-new-navbar-area.navbar-with-black-color .puva-nav {
  background: var(--blackColor);
  box-shadow: unset;
  border-bottom: none;
}
.puva-new-navbar-area.navbar-with-black-color .puva-nav .navbar .navbar-nav .nav-item a {
  color: var(--whiteColor);
}
.puva-new-navbar-area.navbar-with-black-color .puva-nav .navbar .navbar-nav .nav-item a:hover, .puva-new-navbar-area.navbar-with-black-color .puva-nav .navbar .navbar-nav .nav-item a:focus, .puva-new-navbar-area.navbar-with-black-color .puva-nav .navbar .navbar-nav .nav-item a.active {
  color: var(--mainColor);
}
.puva-new-navbar-area.navbar-with-black-color .puva-nav .navbar .navbar-nav .nav-item:hover a, .puva-new-navbar-area.navbar-with-black-color .puva-nav .navbar .navbar-nav .nav-item.active a {
  color: var(--mainColor);
}
.puva-new-navbar-area.navbar-with-black-color .puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li {
  margin: 0;
}
.puva-new-navbar-area.navbar-with-black-color .puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li a {
  color: var(--blackColor);
}
.puva-new-navbar-area.navbar-with-black-color .puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:hover, .puva-new-navbar-area.navbar-with-black-color .puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:focus, .puva-new-navbar-area.navbar-with-black-color .puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
  color: var(--mainColor);
}
.puva-new-navbar-area.navbar-with-black-color .puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a {
  color: var(--blackColor);
}
.puva-new-navbar-area.navbar-with-black-color .puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:hover, .puva-new-navbar-area.navbar-with-black-color .puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:focus, .puva-new-navbar-area.navbar-with-black-color .puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.active {
  color: var(--mainColor);
}
.puva-new-navbar-area.navbar-with-black-color .puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: var(--blackColor);
}
.puva-new-navbar-area.navbar-with-black-color .puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .puva-new-navbar-area.navbar-with-black-color .puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .puva-new-navbar-area.navbar-with-black-color .puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: var(--mainColor);
}
.puva-new-navbar-area.navbar-with-black-color .puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: var(--blackColor);
}
.puva-new-navbar-area.navbar-with-black-color .puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .puva-new-navbar-area.navbar-with-black-color .puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .puva-new-navbar-area.navbar-with-black-color .puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: var(--mainColor);
}
.puva-new-navbar-area.navbar-with-black-color .puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: var(--blackColor);
}
.puva-new-navbar-area.navbar-with-black-color .puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .puva-new-navbar-area.navbar-with-black-color .puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .puva-new-navbar-area.navbar-with-black-color .puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: var(--mainColor);
}
.puva-new-navbar-area.navbar-with-black-color .puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: var(--blackColor);
}
.puva-new-navbar-area.navbar-with-black-color .puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .puva-new-navbar-area.navbar-with-black-color .puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .puva-new-navbar-area.navbar-with-black-color .puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: var(--mainColor);
}
.puva-new-navbar-area.navbar-with-black-color .puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: var(--blackColor);
}
.puva-new-navbar-area.navbar-with-black-color .puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .puva-new-navbar-area.navbar-with-black-color .puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .puva-new-navbar-area.navbar-with-black-color .puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: var(--mainColor);
}
.puva-new-navbar-area.navbar-with-black-color .puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: var(--mainColor);
}
.puva-new-navbar-area.navbar-with-black-color .puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: var(--mainColor);
}
.puva-new-navbar-area.navbar-with-black-color .puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: var(--mainColor);
}
.puva-new-navbar-area.navbar-with-black-color .puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: var(--mainColor);
}
.puva-new-navbar-area.navbar-with-black-color .puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li.active a {
  color: var(--mainColor);
}
.puva-new-navbar-area.navbar-with-black-color .puva-nav .navbar .navbar-nav .nav-item .dropdown-menu li.active a {
  color: var(--mainColor);
}
.puva-new-navbar-area.navbar-with-black-color .puva-nav .navbar .others-option .option-item .search-box {
  color: var(--whiteColor);
}
.puva-new-navbar-area.navbar-with-black-color .puva-nav .navbar .others-option .option-item .search-box:hover {
  color: var(--mainColor);
}
.puva-new-navbar-area.navbar-with-black-color .puva-nav .navbar .others-option .option-item .cart-btn {
  color: var(--whiteColor);
}
.puva-new-navbar-area.navbar-with-black-color .puva-nav .navbar .others-option .option-item .cart-btn b {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.puva-new-navbar-area.navbar-with-black-color .puva-nav .navbar .others-option .option-item .cart-btn:hover {
  color: var(--mainColor);
}

/* Main Banner Post Area CSS */
.main-banner-post-area {
  background-image: url(../../assets/img/more-home/banner-post/banner-post-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 75px;
}
.main-banner-post-area .container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}

.banner-post-item {
  position: relative;
  border-radius: 25px;
  margin-bottom: 25px;
  transition: var(--transition);
}
.banner-post-item::before {
  position: absolute;
  content: "";
  background: linear-gradient(180deg, rgba(75, 56, 246, 0) 9.72%, #07032D 121.24%);
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  border-radius: 25px;
  z-index: 1;
  transition: var(--transition);
}
.banner-post-item::after {
  position: absolute;
  content: "";
  background: linear-gradient(180deg, rgba(75, 56, 246, 0) 9.72%, #07032D 100%);
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  border-radius: 25px;
  z-index: 1;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
}
.banner-post-item .post-image img {
  border-radius: 25px;
  display: inline-block;
}
.banner-post-item .post-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 0 25px 25px;
  transition: var(--transition);
  z-index: 5;
}
.banner-post-item .post-content h3 {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 15px;
  transition: var(--transition);
}
.banner-post-item .post-content h3 a {
  color: var(--whiteColor);
  position: relative;
  display: inline;
  transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  padding: 0.1% 0px;
  background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
  background-size: 0px 2px;
  background-position: 0px 95%;
  background-repeat: no-repeat;
}
.banner-post-item .post-content .info-entry {
  padding: 0;
  margin-top: 15px;
  margin-bottom: 0;
}
.banner-post-item .post-content .info-entry li {
  list-style-type: none;
  color: var(--whiteColor);
  display: inline-block;
  margin-right: 15px;
  position: relative;
  padding-left: 20px;
  font-size: 12px;
}
.banner-post-item .post-content .info-entry li:last-child {
  margin-right: 0;
}
.banner-post-item .post-content .info-entry li i {
  font-size: 14.5px;
  position: absolute;
  left: 0;
  top: 1px;
}
.banner-post-item:hover {
  transform: translateY(-5px);
}
.banner-post-item:hover::after {
  opacity: 1;
  visibility: visible;
}
.banner-post-item:hover .post-content h3 a {
  color: var(--whiteColor);
  background-size: 100% 2px;
}

.banner-post-shape-1 {
  position: absolute;
  left: 0;
  bottom: -35px;
  z-index: -1;
}

.banner-post-shape-2 {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

/* Trending Products Review Area CSS */
.trending-products-review-area {
  overflow: hidden;
}
.trending-products-review-area .container-fluid {
  overflow: hidden;
  left: calc((100% - 1230px) / 2);
  position: relative;
}

.trending-products-review-item {
  margin-bottom: 30px;
  padding-top: 10px;
}
.trending-products-review-item .image {
  position: relative;
  border-radius: 15px;
  transition: var(--transition);
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.trending-products-review-item .image.bg-1 {
  background-image: url(../../assets/img/more-home/trending-products/products-1.jpg);
}
.trending-products-review-item .image.bg-2 {
  background-image: url(../../assets/img/more-home/trending-products/products-2.jpg);
}
.trending-products-review-item .image.bg-3 {
  background-image: url(../../assets/img/more-home/trending-products/products-3.jpg);
}
.trending-products-review-item .image.bg-4 {
  background-image: url(../../assets/img/more-home/trending-products/products-4.jpg);
}
.trending-products-review-item .image img {
  display: none;
}
.trending-products-review-item .image .number {
  position: absolute;
  right: -10px;
  top: -10px;
  display: inline-block;
  height: 30px;
  width: 30px;
  line-height: 30px;
  background-color: var(--mainColor);
  color: var(--whiteColor);
  text-align: center;
  font-size: 16.5px;
  font-weight: 500;
  -webkit-clip-path: polygon(50% 0%, 83% 12%, 100% 43%, 94% 78%, 68% 100%, 32% 100%, 6% 78%, 0% 43%, 17% 12%);
          clip-path: polygon(50% 0%, 83% 12%, 100% 43%, 94% 78%, 68% 100%, 32% 100%, 6% 78%, 0% 43%, 17% 12%);
  z-index: 5;
}
.trending-products-review-item .image .link-btn {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: block;
  z-index: 1;
  border-radius: 0 0 0 10px;
}
.trending-products-review-item .image::before {
  position: absolute;
  content: "";
  background: var(--mainColor);
  opacity: 0.5;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  border-radius: 15px;
  z-index: 1;
  transition: var(--transition);
  opacity: 0;
}
.trending-products-review-item .content {
  padding: 15px 25px;
}
.trending-products-review-item .content .category {
  display: inline-block;
  margin-bottom: 15px;
  border-radius: 30px;
  color: #3EAFEF;
  font-weight: 500;
}
.trending-products-review-item .content h3 {
  font-size: 20px;
  margin-bottom: 15px;
  line-height: 1.5;
}
.trending-products-review-item .content h3 a {
  color: var(--blackColor);
  position: relative;
  display: inline;
  transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  padding: 0.1% 0px;
  background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
  background-size: 0px 2px;
  background-position: 0px 95%;
  background-repeat: no-repeat;
}
.trending-products-review-item .content .meta {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.trending-products-review-item .content .meta li {
  display: inline-block;
  margin-right: 15px;
  color: var(--optionalColor);
  position: relative;
  padding-left: 18px;
}
.trending-products-review-item .content .meta li i {
  position: absolute;
  left: 0;
  top: 2.5px;
}
.trending-products-review-item .content .meta li a {
  display: inline-block;
  color: var(--optionalColor);
}
.trending-products-review-item .content .meta li a:hover {
  color: var(--mainColor);
}
.trending-products-review-item .content .meta li:last-child {
  margin-right: 0;
}
.trending-products-review-item:hover .image::before {
  opacity: 0.5;
}
.trending-products-review-item:hover .content h3 a {
  color: var(--mainColor);
  background-size: 100% 2px;
}

/* New Products Area CSS */
.new-products-area {
  position: relative;
  z-index: 1;
}
.new-products-area.with-bg-color {
  background: #202B3F;
}
.new-products-area.with-bg-color .section-title {
  border-left: 3px solid var(--whiteColor);
}
.new-products-area.with-bg-color .section-title h2 {
  color: var(--whiteColor);
}
.new-products-area.with-bg-color .section-title .link-btn {
  color: #C3BCFF;
}
.new-products-area.with-bg-color .section-title .link-btn::before {
  background-color: #C3BCFF;
}
.new-products-area.with-bg-color .new-products-list .widget-products-box .content .category {
  color: #C3BCFF;
  background-color: #1F2536;
}
.new-products-area.with-bg-color .new-products-list .widget-products-box .content h3 a {
  color: var(--whiteColor);
}

.new-products-thumbnail-box {
  position: relative;
  border-radius: 15px;
  transition: var(--transition);
  overflow: hidden;
  margin-bottom: 30px;
}
.new-products-thumbnail-box img {
  border-radius: 15px;
  transition: var(--transition);
}
.new-products-thumbnail-box .content {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  bottom: 0;
  height: auto;
  padding: 0 30px 30px;
}
.new-products-thumbnail-box .content .category {
  display: inline-block;
  margin-bottom: 18px;
  background-color: var(--mainColor);
  border-radius: 8px;
  color: var(--whiteColor);
  padding: 8px 18px;
  font-weight: 500;
  font-size: 12.5px;
}
.new-products-thumbnail-box .content h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--whiteColor);
  line-height: 1.5;
}
.new-products-thumbnail-box .content h3 a {
  color: var(--whiteColor);
  position: relative;
  display: inline;
  transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  padding: 0.1% 0px;
  background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
  background-size: 0px 2px;
  background-position: 0px 95%;
  background-repeat: no-repeat;
}
.new-products-thumbnail-box .content .meta {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.new-products-thumbnail-box .content .meta li {
  display: inline-block;
  margin-right: 15px;
  color: #C0C5D2;
  position: relative;
  padding-left: 22px;
}
.new-products-thumbnail-box .content .meta li i {
  position: absolute;
  left: 0;
  top: 2.1px;
}
.new-products-thumbnail-box .content .meta li a {
  display: inline-block;
  color: #C0C5D2;
}
.new-products-thumbnail-box .content .meta li a:hover {
  color: var(--mainColor);
}
.new-products-thumbnail-box .content .meta li:last-child {
  margin-right: 0;
}
.new-products-thumbnail-box .link-btn {
  display: block;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 2;
  border-radius: 15px;
}
.new-products-thumbnail-box:hover img {
  transform: scale(1.1);
}
.new-products-thumbnail-box:hover .content h3 a {
  color: var(--whiteColor);
  background-size: 100% 2px;
}
.new-products-thumbnail-box::before {
  position: absolute;
  content: "";
  background: linear-gradient(180deg, rgba(75, 56, 246, 0) 9.72%, #07032D 121.24%);
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  z-index: 1;
  transition: var(--transition);
}

.new-products-list {
  margin-bottom: 30px;
}
.new-products-list .widget-products-box {
  margin-bottom: 30px;
}
.new-products-list .widget-products-box .image {
  position: relative;
  border-radius: 15px;
  transition: var(--transition);
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.new-products-list .widget-products-box .image.bg-1 {
  background-image: url(../../assets/img/more-home/new-products/new-products-2.jpg);
}
.new-products-list .widget-products-box .image.bg-2 {
  background-image: url(../../assets/img/more-home/new-products/new-products-3.jpg);
}
.new-products-list .widget-products-box .image.bg-3 {
  background-image: url(../../assets/img/more-home/new-products/new-products-4.jpg);
}
.new-products-list .widget-products-box .image.bg-4 {
  background-image: url(../../assets/img/more-home/new-products/new-products-9.jpg);
}
.new-products-list .widget-products-box .image.bg-5 {
  background-image: url(../../assets/img/more-home/new-products/new-products-10.jpg);
}
.new-products-list .widget-products-box .image.bg-6 {
  background-image: url(../../assets/img/more-home/new-products/new-products-11.jpg);
}
.new-products-list .widget-products-box .image img {
  display: none;
}
.new-products-list .widget-products-box .image .link-btn {
  position: absolute;
  left: 0;
  right: 0;
  border-radius: 15px;
  top: 0;
  bottom: 0;
  display: block;
  z-index: 1;
}
.new-products-list .widget-products-box .image::before {
  position: absolute;
  content: "";
  background: var(--mainColor);
  opacity: 0.5;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  border-radius: 15px;
  z-index: 1;
  transition: var(--transition);
  opacity: 0;
}
.new-products-list .widget-products-box .content {
  padding: 8px 0 7px 20px;
}
.new-products-list .widget-products-box .content .category {
  display: inline-block;
  margin-bottom: 12px;
  background-color: #f5f5f5;
  border-radius: 5px;
  color: var(--mainColor);
  padding: 8px 18px;
  font-weight: 600;
}
.new-products-list .widget-products-box .content h3 {
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1.4;
}
.new-products-list .widget-products-box .content h3 a {
  color: var(--blackColor);
  position: relative;
  display: inline;
  transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  padding: 0.1% 0px;
  background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
  background-size: 0px 2px;
  background-position: 0px 95%;
  background-repeat: no-repeat;
}
.new-products-list .widget-products-box .content .meta {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.new-products-list .widget-products-box .content .meta li {
  display: inline-block;
  margin-right: 15px;
  color: var(--optionalColor);
  position: relative;
  padding-left: 18px;
}
.new-products-list .widget-products-box .content .meta li i {
  position: absolute;
  left: 0;
  top: 2.8px;
}
.new-products-list .widget-products-box .content .meta li a {
  display: inline-block;
  color: var(--optionalColor);
}
.new-products-list .widget-products-box .content .meta li a:hover {
  color: var(--mainColor);
}
.new-products-list .widget-products-box .content .meta li:last-child {
  margin-right: 0;
}
.new-products-list .widget-products-box:last-child {
  margin-bottom: 0;
}
.new-products-list .widget-products-box:hover .image::before {
  opacity: 0.5;
}
.new-products-list .widget-products-box:hover .content h3 a {
  color: var(--mainColor);
  background-size: 100% 2px;
}

.new-products-item {
  margin-bottom: 30px;
}
.new-products-item .item-box {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 30px;
}
.new-products-item .item-box:last-child {
  margin-bottom: 0;
}
.new-products-item .item-box::before {
  position: absolute;
  content: "";
  background: linear-gradient(180deg, rgba(75, 56, 246, 0) 0%, rgba(7, 3, 45, 0.83) 100%);
  width: 100%;
  height: 90%;
  left: 0;
  bottom: 0;
  border-radius: 15px;
  z-index: 1;
  transition: var(--transition);
}
.new-products-item .item-box a img {
  border-radius: 15px;
  transition: var(--transition);
}
.new-products-item .item-box .content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 30px 25px;
  z-index: 1;
}
.new-products-item .item-box .content h3 {
  font-size: 20px;
  margin-bottom: 0;
  line-height: 1.5;
}
.new-products-item .item-box .content h3 a {
  color: var(--whiteColor);
  position: relative;
  display: inline;
  transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  padding: 0.1% 0px;
  background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
  background-size: 0px 2px;
  background-position: 0px 95%;
  background-repeat: no-repeat;
}
.new-products-item .item-box:hover a img {
  transform: scale(1.1);
}
.new-products-item .item-box:hover .content h3 a {
  color: var(--whiteColor);
  background-size: 100% 2px;
}

.vector-line-shape {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
  text-align: center;
}

/* Technology Products Area CSS */
.technology-products-area {
  background-image: url(../../assets/img/more-home/technology-products/technology-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.technology-products-list-tabs .nav {
  padding: 0;
  list-style-type: none;
  display: block;
  border: none;
  text-align: center;
  margin-bottom: 0;
}
.technology-products-list-tabs .nav .nav-item {
  display: inline-block;
  margin-right: 10px;
}
.technology-products-list-tabs .nav .nav-item:last-child {
  margin-right: 0;
}
.technology-products-list-tabs .nav .nav-item .nav-link {
  color: var(--mainColor);
  border: none;
  padding: 10px 20px;
  background-color: var(--whiteColor);
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.06);
  border-radius: 5px;
  position: relative;
  font-size: var(--font-size);
  font-weight: 500;
}
.technology-products-list-tabs .nav .nav-item .nav-link:hover, .technology-products-list-tabs .nav .nav-item .nav-link.active {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}

.technology-products-list {
  margin-bottom: 30px;
}
.technology-products-list .widget-products-box {
  margin-bottom: 30px;
}
.technology-products-list .widget-products-box .image {
  position: relative;
  border-radius: 15px;
  transition: var(--transition);
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.technology-products-list .widget-products-box .image.bg-1 {
  background-image: url(../../assets/img/more-home/technology-products/technology-products-1.jpg);
}
.technology-products-list .widget-products-box .image.bg-2 {
  background-image: url(../../assets/img/more-home/technology-products/technology-products-2.jpg);
}
.technology-products-list .widget-products-box .image.bg-3 {
  background-image: url(../../assets/img/more-home/technology-products/technology-products-3.jpg);
}
.technology-products-list .widget-products-box .image.bg-4 {
  background-image: url(../../assets/img/more-home/technology-products/technology-products-4.jpg);
}
.technology-products-list .widget-products-box .image.bg-5 {
  background-image: url(../../assets/img/more-home/technology-products/technology-products-5.jpg);
}
.technology-products-list .widget-products-box .image.bg-6 {
  background-image: url(../../assets/img/more-home/technology-products/technology-products-6.jpg);
}
.technology-products-list .widget-products-box .image img {
  display: none;
}
.technology-products-list .widget-products-box .image .link-btn {
  position: absolute;
  left: 0;
  right: 0;
  border-radius: 15px;
  top: 0;
  bottom: 0;
  display: block;
  z-index: 1;
}
.technology-products-list .widget-products-box .image::before {
  position: absolute;
  content: "";
  background: var(--mainColor);
  opacity: 0.5;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  border-radius: 15px;
  z-index: 1;
  transition: var(--transition);
  opacity: 0;
}
.technology-products-list .widget-products-box .content {
  padding: 8px 0 7px 20px;
}
.technology-products-list .widget-products-box .content .category {
  display: inline-block;
  margin-bottom: 12px;
  background-color: #f5f5f5;
  border-radius: 5px;
  color: var(--mainColor);
  padding: 8px 18px;
  font-weight: 600;
}
.technology-products-list .widget-products-box .content h3 {
  font-size: 16.8px;
  margin-bottom: 10px;
  line-height: 1.5;
}
.technology-products-list .widget-products-box .content h3 a {
  color: var(--blackColor);
  position: relative;
  display: inline;
  transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  padding: 0.1% 0px;
  background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
  background-size: 0px 2px;
  background-position: 0px 95%;
  background-repeat: no-repeat;
}
.technology-products-list .widget-products-box .content .meta {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.technology-products-list .widget-products-box .content .meta li {
  display: inline-block;
  margin-right: 15px;
  color: #858CA1;
  position: relative;
  padding-left: 18px;
}
.technology-products-list .widget-products-box .content .meta li i {
  position: absolute;
  left: 0;
  top: 2.8px;
}
.technology-products-list .widget-products-box .content .meta li a {
  display: inline-block;
  color: #858CA1;
}
.technology-products-list .widget-products-box .content .meta li a:hover {
  color: var(--mainColor);
}
.technology-products-list .widget-products-box .content .meta li:last-child {
  margin-right: 0;
}
.technology-products-list .widget-products-box:last-child {
  margin-bottom: 0;
}
.technology-products-list .widget-products-box:hover .image::before {
  opacity: 0.5;
}
.technology-products-list .widget-products-box:hover .content h3 a {
  color: var(--mainColor);
  background-size: 100% 2px;
}

.technology-products-thumbnail-box {
  position: relative;
  border-radius: 15px;
  transition: var(--transition);
  overflow: hidden;
  margin-bottom: 30px;
}
.technology-products-thumbnail-box img {
  border-radius: 15px;
  transition: var(--transition);
}
.technology-products-thumbnail-box .content {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  bottom: 0;
  height: auto;
  padding: 0 30px 30px;
}
.technology-products-thumbnail-box .content .category {
  display: inline-block;
  margin-bottom: 18px;
  background-color: var(--mainColor);
  border-radius: 8px;
  color: var(--whiteColor);
  padding: 8px 18px;
  font-weight: 500;
  font-size: 12.5px;
}
.technology-products-thumbnail-box .content h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--whiteColor);
  line-height: 1.5;
}
.technology-products-thumbnail-box .content h3 a {
  color: var(--whiteColor);
  position: relative;
  display: inline;
  transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  padding: 0.1% 0px;
  background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
  background-size: 0px 2px;
  background-position: 0px 95%;
  background-repeat: no-repeat;
}
.technology-products-thumbnail-box .content .meta {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.technology-products-thumbnail-box .content .meta li {
  display: inline-block;
  margin-right: 15px;
  color: #C0C5D2;
  position: relative;
  padding-left: 22px;
}
.technology-products-thumbnail-box .content .meta li i {
  position: absolute;
  left: 0;
  top: 2.1px;
}
.technology-products-thumbnail-box .content .meta li a {
  display: inline-block;
  color: #C0C5D2;
}
.technology-products-thumbnail-box .content .meta li a:hover {
  color: var(--mainColor);
}
.technology-products-thumbnail-box .content .meta li:last-child {
  margin-right: 0;
}
.technology-products-thumbnail-box .link-btn {
  display: block;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 2;
  border-radius: 15px;
}
.technology-products-thumbnail-box:hover img {
  transform: scale(1.1);
}
.technology-products-thumbnail-box:hover .content h3 a {
  color: var(--whiteColor);
  background-size: 100% 2px;
}
.technology-products-thumbnail-box::before {
  position: absolute;
  content: "";
  background: linear-gradient(180deg, rgba(75, 56, 246, 0) 9.72%, #07032D 121.24%);
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  z-index: 1;
  transition: var(--transition);
}

.technology-products-area-with-black-color {
  background-color: var(--blackColor);
}
.technology-products-area-with-black-color .section-title h2 {
  color: var(--whiteColor);
}
.technology-products-area-with-black-color .technology-products-list-tabs .nav .nav-item .nav-link {
  color: #C3BCFF;
  background-color: #1F2536;
}
.technology-products-area-with-black-color .technology-products-list-tabs .nav .nav-item .nav-link:hover, .technology-products-area-with-black-color .technology-products-list-tabs .nav .nav-item .nav-link.active {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.technology-products-area-with-black-color .technology-products-list .widget-products-box .content .category {
  color: #C3BCFF;
  background-color: #1F2536;
}
.technology-products-area-with-black-color .technology-products-list .widget-products-box .content h3 a {
  color: var(--whiteColor);
}

/* Top Video Area CSS */
.top-video-area .section-title {
  border-left: none;
  padding-left: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.top-video-area.with-top-color {
  position: relative;
  z-index: 1;
}
.top-video-area.with-top-color::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  background-color: var(--blackColor);
  width: 100%;
  height: 250px;
  z-index: -1;
}
.top-video-area.with-top-color .section-title h2 {
  color: var(--whiteColor);
}

.top-video-item .video-image {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}
.top-video-item .video-image img {
  border-radius: 15px;
  transition: var(--transition);
}
.top-video-item .video-image .video-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  color: var(--mainColor);
  font-size: 42px;
  display: inline-block;
  text-align: center;
  transform: translateX(-50%) translateY(-50%);
  background-color: var(--whiteColor);
}
.top-video-item .video-image .video-btn i {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.top-video-item .video-image .time {
  position: absolute;
  right: 15px;
  bottom: 15px;
  font-size: var(--font-size);
  color: var(--whiteColor);
}
.top-video-item .video-content {
  margin-top: 25px;
}
.top-video-item .video-content h3 {
  font-size: 20px;
  margin-bottom: 0;
  line-height: 1.5;
}
.top-video-item .video-content h3 a {
  color: var(--blackColor);
  position: relative;
  display: inline;
  transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  padding: 0.1% 0px;
  background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
  background-size: 0px 2px;
  background-position: 0px 95%;
  background-repeat: no-repeat;
}
.top-video-item:hover .video-image img {
  transform: scale(1.1);
}
.top-video-item:hover .video-image .video-btn {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.top-video-item:hover .video-content h3 a {
  color: var(--mainColor);
  background-size: 100% 2px;
}

.top-video-slides.owl-theme .owl-nav {
  margin-top: 0;
}
.top-video-slides.owl-theme .owl-nav [class*=owl-] {
  color: var(--mainColor);
  font-size: 25px;
  margin: 0;
  padding: 0;
  background: var(--whiteColor);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  transition: var(--transition);
  position: absolute;
  left: -60px;
  text-align: center;
  top: 45%;
  transform: translateY(-45%);
  border: 1px solid #EEECFF;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.06);
}
.top-video-slides.owl-theme .owl-nav [class*=owl-] i {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.top-video-slides.owl-theme .owl-nav [class*=owl-].owl-next {
  left: auto;
  right: -60px;
}
.top-video-slides.owl-theme .owl-nav [class*=owl-]:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
  border: 1px solid var(--mainColor);
}
.top-video-slides.owl-theme .owl-nav [class*=owl-].disabled {
  background: var(--mainColor);
  cursor: not-allowed;
  color: var(--whiteColor);
}

.top-video-vector-line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  text-align: center;
}

.top-video-area-full-width {
  background-color: var(--blackColor);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.top-video-area-full-width .section-title {
  border-left: none;
  padding-left: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.top-video-area-full-width .section-title h2 {
  color: var(--whiteColor);
}
.top-video-area-full-width .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
.top-video-area-full-width .top-video-item .video-content.with-margin-bottom {
  margin-top: 0;
  margin-bottom: 25px;
}
.top-video-area-full-width .top-video-item .video-content h3 a {
  color: #ABA7CE;
}
.top-video-area-full-width .top-video-item:hover .video-content h3 a {
  color: var(--whiteColor);
  background-size: 100% 2px;
}

.top-video-slides-two.owl-theme .owl-dots .owl-dot span {
  width: 15px;
  height: 15px;
  margin: 0 5px;
  border-radius: 50%;
  position: relative;
  transition: var(--transition);
  background: var(--whiteColor);
  opacity: 0.3;
}
.top-video-slides-two.owl-theme .owl-dots .owl-dot:hover span, .top-video-slides-two.owl-theme .owl-dots .owl-dot.active span {
  background: var(--mainColor);
  opacity: 1;
}
.top-video-slides-two.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 45px;
}

.top-video-vector-line-2 {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
  text-align: center;
}

/* Latest Products Reviews Area CSS */
.latest-review-products-area {
  background-color: #FBFBFF;
}

.latest-reviews-products-list .section-title {
  border-bottom: 1px solid #E7E4FF;
  border-left: none;
  border-radius: 0;
  padding-left: 0;
  padding-top: 0;
  padding-bottom: 10px;
}
.latest-reviews-products-list .section-title .link-btn {
  top: 14px;
  right: 5px;
}
.latest-reviews-products-list .section-title .link-btn::before {
  display: none;
}
.latest-reviews-products-list .latest-reviews-ads a img {
  border-radius: 10px;
}

.latest-review-products-thumbnail-box {
  position: relative;
  border-radius: 15px;
  transition: var(--transition);
  overflow: hidden;
  margin-bottom: 30px;
}
.latest-review-products-thumbnail-box img {
  border-radius: 15px;
  transition: var(--transition);
}
.latest-review-products-thumbnail-box .content {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  bottom: 0;
  height: auto;
  padding: 0 30px 30px;
}
.latest-review-products-thumbnail-box .content .category {
  display: inline-block;
  margin-bottom: 18px;
  background-color: var(--mainColor);
  border-radius: 8px;
  color: var(--whiteColor);
  padding: 8px 18px;
  font-weight: 500;
  font-size: 12.5px;
}
.latest-review-products-thumbnail-box .content h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--whiteColor);
  line-height: 1.5;
}
.latest-review-products-thumbnail-box .content h3 a {
  color: var(--whiteColor);
  position: relative;
  display: inline;
  transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  padding: 0.1% 0px;
  background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
  background-size: 0px 2px;
  background-position: 0px 95%;
  background-repeat: no-repeat;
}
.latest-review-products-thumbnail-box .content .meta {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.latest-review-products-thumbnail-box .content .meta li {
  display: inline-block;
  margin-right: 15px;
  color: #C0C5D2;
  position: relative;
  padding-left: 22px;
}
.latest-review-products-thumbnail-box .content .meta li i {
  position: absolute;
  left: 0;
  top: 2.1px;
}
.latest-review-products-thumbnail-box .content .meta li a {
  display: inline-block;
  color: #C0C5D2;
}
.latest-review-products-thumbnail-box .content .meta li a:hover {
  color: var(--mainColor);
}
.latest-review-products-thumbnail-box .content .meta li:last-child {
  margin-right: 0;
}
.latest-review-products-thumbnail-box .link-btn {
  display: block;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 2;
  border-radius: 15px;
}
.latest-review-products-thumbnail-box:hover img {
  transform: scale(1.1);
}
.latest-review-products-thumbnail-box:hover .content h3 a {
  color: var(--whiteColor);
  background-size: 100% 2px;
}

.latest-reviews-products-item {
  margin-bottom: 30px;
}
.latest-reviews-products-item .widget-review-box {
  margin-bottom: 30px;
}
.latest-reviews-products-item .widget-review-box .image {
  position: relative;
  border-radius: 15px;
  transition: var(--transition);
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.latest-reviews-products-item .widget-review-box .image.bg-1 {
  background-image: url(../../assets/img/more-home/latest-review/latest-review-2.jpg);
}
.latest-reviews-products-item .widget-review-box .image.bg-2 {
  background-image: url(../../assets/img/more-home/latest-review/latest-review-3.jpg);
}
.latest-reviews-products-item .widget-review-box .image.bg-3 {
  background-image: url(../../assets/img/more-home/latest-review/latest-review-4.jpg);
}
.latest-reviews-products-item .widget-review-box .image img {
  display: none;
}
.latest-reviews-products-item .widget-review-box .image .link-btn {
  position: absolute;
  left: 0;
  right: 0;
  border-radius: 15px;
  top: 0;
  bottom: 0;
  display: block;
  z-index: 1;
}
.latest-reviews-products-item .widget-review-box .image::before {
  position: absolute;
  content: "";
  background: var(--mainColor);
  opacity: 0.5;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  border-radius: 15px;
  z-index: 1;
  transition: var(--transition);
  opacity: 0;
}
.latest-reviews-products-item .widget-review-box .image .number {
  position: absolute;
  right: -10px;
  top: -10px;
  display: inline-block;
  height: 30px;
  width: 30px;
  line-height: 30px;
  background-color: var(--mainColor);
  color: var(--whiteColor);
  text-align: center;
  font-size: 16.5px;
  font-weight: 500;
  -webkit-clip-path: polygon(50% 0%, 83% 12%, 100% 43%, 94% 78%, 68% 100%, 32% 100%, 6% 78%, 0% 43%, 17% 12%);
          clip-path: polygon(50% 0%, 83% 12%, 100% 43%, 94% 78%, 68% 100%, 32% 100%, 6% 78%, 0% 43%, 17% 12%);
  z-index: 5;
}
.latest-reviews-products-item .widget-review-box .content {
  padding: 8px 0 7px 20px;
}
.latest-reviews-products-item .widget-review-box .content .category {
  display: inline-block;
  margin-bottom: 12px;
  background-color: #f5f5f5;
  border-radius: 5px;
  color: var(--mainColor);
  padding: 8px 18px;
  font-weight: 600;
}
.latest-reviews-products-item .widget-review-box .content h3 {
  font-size: 17.5px;
  margin-bottom: 10px;
  line-height: 1.4;
}
.latest-reviews-products-item .widget-review-box .content h3 a {
  color: var(--blackColor);
  position: relative;
  display: inline;
  transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  padding: 0.1% 0px;
  background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
  background-size: 0px 2px;
  background-position: 0px 95%;
  background-repeat: no-repeat;
}
.latest-reviews-products-item .widget-review-box .content .meta {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.latest-reviews-products-item .widget-review-box .content .meta li {
  display: inline-block;
  margin-right: 15px;
  color: var(--optionalColor);
  position: relative;
  padding-left: 18px;
}
.latest-reviews-products-item .widget-review-box .content .meta li i {
  position: absolute;
  left: 0;
  top: 2.8px;
}
.latest-reviews-products-item .widget-review-box .content .meta li a {
  display: inline-block;
  color: var(--optionalColor);
}
.latest-reviews-products-item .widget-review-box .content .meta li a:hover {
  color: var(--mainColor);
}
.latest-reviews-products-item .widget-review-box .content .meta li:last-child {
  margin-right: 0;
}
.latest-reviews-products-item .widget-review-box:last-child {
  margin-bottom: 0;
}
.latest-reviews-products-item .widget-review-box:hover .image::before {
  opacity: 0.5;
}
.latest-reviews-products-item .widget-review-box:hover .content h3 a {
  color: var(--mainColor);
  background-size: 100% 2px;
}

.latest-reviews-products-box {
  position: relative;
  overflow: hidden;
}
.latest-reviews-products-box .title {
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 22px;
  border-bottom: 1px solid #E7E4FF;
  font-size: 24px;
}
.latest-reviews-products-box .thumbnail-item {
  position: relative;
  border-radius: 15px;
  transition: var(--transition);
  overflow: hidden;
  margin-bottom: 30px;
}
.latest-reviews-products-box .thumbnail-item img {
  border-radius: 15px;
  transition: var(--transition);
}
.latest-reviews-products-box .thumbnail-item .content {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  bottom: 0;
  height: auto;
  padding: 0 30px 30px;
}
.latest-reviews-products-box .thumbnail-item .content .category {
  display: inline-block;
  margin-bottom: 18px;
  background-color: var(--mainColor);
  border-radius: 8px;
  color: var(--whiteColor);
  padding: 8px 18px;
  font-weight: 500;
  font-size: 12.5px;
}
.latest-reviews-products-box .thumbnail-item .content h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--whiteColor);
  line-height: 1.5;
}
.latest-reviews-products-box .thumbnail-item .content h3 a {
  color: var(--whiteColor);
  position: relative;
  display: inline;
  transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  padding: 0.1% 0px;
  background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
  background-size: 0px 2px;
  background-position: 0px 95%;
  background-repeat: no-repeat;
}
.latest-reviews-products-box .thumbnail-item .content .meta {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.latest-reviews-products-box .thumbnail-item .content .meta li {
  display: inline-block;
  margin-right: 15px;
  color: #666c7b;
  position: relative;
  padding-left: 22px;
}
.latest-reviews-products-box .thumbnail-item .content .meta li i {
  position: absolute;
  left: 0;
  top: 2.1px;
}
.latest-reviews-products-box .thumbnail-item .content .meta li a {
  display: inline-block;
  color: #C0C5D2;
}
.latest-reviews-products-box .thumbnail-item .content .meta li a:hover {
  color: var(--mainColor);
}
.latest-reviews-products-box .thumbnail-item .content .meta li:last-child {
  margin-right: 0;
}
.latest-reviews-products-box .thumbnail-item .link-btn {
  display: block;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 2;
  border-radius: 15px;
}
.latest-reviews-products-box .thumbnail-item:hover img {
  transform: scale(1.1);
}
.latest-reviews-products-box .thumbnail-item:hover .content h3 a {
  color: var(--whiteColor);
  background-size: 100% 2px;
}
.latest-reviews-products-box .thumbnail-box {
  margin-bottom: 30px;
}
.latest-reviews-products-box .thumbnail-box .image {
  position: relative;
  border-radius: 15px;
  transition: var(--transition);
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.latest-reviews-products-box .thumbnail-box .image.bg-1 {
  background-image: url(../../assets/img/more-home/latest-review/latest-review-5.jpg);
}
.latest-reviews-products-box .thumbnail-box .image.bg-2 {
  background-image: url(../../assets/img/more-home/latest-review/latest-review-6.jpg);
}
.latest-reviews-products-box .thumbnail-box .image.bg-3 {
  background-image: url(../../assets/img/more-home/latest-review/latest-review-7.jpg);
}
.latest-reviews-products-box .thumbnail-box .image img {
  display: none;
}
.latest-reviews-products-box .thumbnail-box .image .link-btn {
  position: absolute;
  left: 0;
  right: 0;
  border-radius: 15px;
  top: 0;
  bottom: 0;
  display: block;
  z-index: 1;
}
.latest-reviews-products-box .thumbnail-box .image::before {
  position: absolute;
  content: "";
  background: var(--mainColor);
  opacity: 0.5;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  border-radius: 15px;
  z-index: 1;
  transition: var(--transition);
  opacity: 0;
}
.latest-reviews-products-box .thumbnail-box .content {
  padding: 8px 0 7px 20px;
}
.latest-reviews-products-box .thumbnail-box .content .category {
  display: inline-block;
  margin-bottom: 12px;
  background-color: #f5f5f5;
  border-radius: 5px;
  color: var(--mainColor);
  padding: 8px 18px;
  font-weight: 600;
}
.latest-reviews-products-box .thumbnail-box .content h3 {
  font-size: 17.5px;
  margin-bottom: 10px;
  line-height: 1.4;
}
.latest-reviews-products-box .thumbnail-box .content h3 a {
  color: var(--blackColor);
  position: relative;
  display: inline;
  transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  padding: 0.1% 0px;
  background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
  background-size: 0px 2px;
  background-position: 0px 95%;
  background-repeat: no-repeat;
}
.latest-reviews-products-box .thumbnail-box .content .meta {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.latest-reviews-products-box .thumbnail-box .content .meta li {
  display: inline-block;
  margin-right: 15px;
  color: var(--optionalColor);
  position: relative;
  padding-left: 18px;
}
.latest-reviews-products-box .thumbnail-box .content .meta li i {
  position: absolute;
  left: 0;
  top: 2.8px;
}
.latest-reviews-products-box .thumbnail-box .content .meta li a {
  display: inline-block;
  color: var(--optionalColor);
}
.latest-reviews-products-box .thumbnail-box .content .meta li a:hover {
  color: var(--mainColor);
}
.latest-reviews-products-box .thumbnail-box .content .meta li:last-child {
  margin-right: 0;
}
.latest-reviews-products-box .thumbnail-box:last-child {
  margin-bottom: 0;
}
.latest-reviews-products-box .thumbnail-box:hover .image::before {
  opacity: 0.5;
}
.latest-reviews-products-box .thumbnail-box:hover .content h3 a {
  color: var(--mainColor);
  background-size: 100% 2px;
}

/* Popular Reviews Area CSS */
.popular-products-review-area.with-bg-color {
  background: #1F2536;
}
.popular-products-review-area.with-bg-color .section-title {
  border-left: 3px solid var(--whiteColor);
}
.popular-products-review-area.with-bg-color .section-title h2 {
  color: var(--whiteColor);
}
.popular-products-review-area.with-bg-color .section-title .link-btn {
  color: #C3BCFF;
}
.popular-products-review-area.with-bg-color .section-title .link-btn::before {
  background-color: #C3BCFF;
}
.popular-products-review-area.with-bg-color .popular-products-reviews-box {
  margin-bottom: 30px;
}
.popular-products-review-area.with-bg-color .popular-products-reviews-box .content h3 a {
  color: var(--whiteColor);
}
.popular-products-review-area.with-bg-color .popular-products-reviews-box .content p {
  color: #A3ACC7;
}
.popular-products-review-area.with-bg-color .popular-products-reviews-box .content .meta {
  border-top: 1px solid #3C395A;
}
.popular-products-review-area.with-bg-color .popular-products-reviews-box .content .meta li {
  color: #858CA1;
}
.popular-products-review-area.with-bg-color .popular-products-reviews-box:hover .content h3 a {
  color: var(--whiteColor);
  background-size: 100% 2px;
}
.popular-products-review-area.with-bg-color .popular-products-reviews-box:last-child {
  margin-bottom: 0;
}
.popular-products-review-area.with-bg-color .popular-widget-area .widget .widget-title {
  color: var(--whiteColor);
}
.popular-products-review-area.with-bg-color .popular-widget-area .popular_widget_categories .categories-slides.owl-theme .owl-nav [class*=owl-] {
  color: var(--whiteColor);
  background: var(--blackColor);
}
.popular-products-review-area.with-bg-color .popular-widget-area .popular_widget_categories .categories-slides.owl-theme .owl-nav [class*=owl-]:hover {
  color: var(--whiteColor);
  background-color: var(--mainColor);
}
.popular-products-review-area.with-bg-color .popular-widget-area .popular_widget_puva_posts_thumb .item .info .title a {
  color: var(--whiteColor);
}

.popular-products-reviews-box {
  margin-bottom: 20px;
}
.popular-products-reviews-box .image {
  position: relative;
  border-radius: 15px;
  transition: var(--transition);
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.popular-products-reviews-box .image.bg-1 {
  background-image: url(../../assets/img/more-home/popular-products/popular-products-1.jpg);
}
.popular-products-reviews-box .image.bg-2 {
  background-image: url(../../assets/img/more-home/popular-products/popular-products-2.jpg);
}
.popular-products-reviews-box .image.bg-3 {
  background-image: url(../../assets/img/more-home/popular-products/popular-products-3.jpg);
}
.popular-products-reviews-box .image.bg-4 {
  background-image: url(../../assets/img/more-home/popular-products/popular-products-4.jpg);
}
.popular-products-reviews-box .image img {
  border-radius: 15px;
  display: none;
  transition: var(--transition);
}
.popular-products-reviews-box .image .link-btn {
  position: absolute;
  left: 0;
  right: 0;
  border-radius: 15px;
  top: 0;
  bottom: 0;
  display: block;
  z-index: 1;
}
.popular-products-reviews-box .content {
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 35px;
}
.popular-products-reviews-box .content.with-right {
  padding-left: 0;
  padding-right: 35px;
}
.popular-products-reviews-box .content .category {
  display: inline-block;
  margin-bottom: 20px;
  background-color: var(--mainColor);
  border-radius: 5px;
  color: var(--whiteColor);
  padding: 5px 15px;
  font-weight: 500;
}
.popular-products-reviews-box .content h3 {
  font-size: 24px;
  margin-bottom: 15px;
  line-height: 1.5;
}
.popular-products-reviews-box .content h3 a {
  color: var(--blackColor);
  position: relative;
  display: inline;
  transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  padding: 0.1% 0px;
  background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
  background-size: 0px 2px;
  background-position: 0px 95%;
  background-repeat: no-repeat;
}
.popular-products-reviews-box .content p {
  margin-bottom: 0;
}
.popular-products-reviews-box .content .meta {
  list-style-type: none;
  border-top: 1px solid #E7E4FF;
  margin-top: 20px;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-top: 20px;
}
.popular-products-reviews-box .content .meta li {
  display: inline-block;
  margin-right: 15px;
  color: #858CA1;
  position: relative;
  padding-left: 20px;
}
.popular-products-reviews-box .content .meta li i {
  position: absolute;
  left: 0;
  top: 2.8px;
}
.popular-products-reviews-box .content .meta li:last-child {
  margin-right: 0;
}
.popular-products-reviews-box:hover .content h3 a {
  color: var(--mainColor);
  background-size: 100% 2px;
}
.popular-products-reviews-box:last-child {
  margin-bottom: 0;
}

.popular-products-ads {
  margin-bottom: 50px;
}
.popular-products-ads a img {
  border-radius: 15px;
}

/* Popular Widget Sidebar Area CSS */
.popular-widget-area {
  padding-right: 20px;
}
.popular-widget-area.with-some-left {
  padding-right: 0;
  padding-left: 25px;
}
.popular-widget-area .widget {
  margin-bottom: 40px;
}
.popular-widget-area .widget:last-child {
  margin-bottom: 0;
}
.popular-widget-area .widget .widget-title {
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 12px;
  border-bottom: 1px solid #d6d6d6;
  font-size: 24px;
}
.popular-widget-area .widget .widget-title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 1px;
  bottom: -1px;
  background-color: var(--mainColor);
}
.popular-widget-area .popular_widget_categories .row {
  margin-left: -8px;
  margin-right: -8px;
}
.popular-widget-area .popular_widget_categories .row .col-lg-6 {
  padding-left: 8px;
  padding-right: 8px;
}
.popular-widget-area .popular_widget_categories .categories-box {
  margin-bottom: 15px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.popular-widget-area .popular_widget_categories .categories-box img {
  border-radius: 10px;
  transition: var(--transition);
}
.popular-widget-area .popular_widget_categories .categories-box h4 {
  margin-bottom: 0;
  font-size: 18px;
  color: var(--whiteColor);
  position: absolute;
  bottom: 0;
  padding: 20px;
  width: 100%;
  font-weight: 600;
}
.popular-widget-area .popular_widget_categories .categories-box h4 span {
  font-size: var(--fontSize);
  color: #DAD3E2;
}
.popular-widget-area .popular_widget_categories .categories-box .link-btn {
  display: block;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 2;
  border-radius: 15px;
}
.popular-widget-area .popular_widget_categories .categories-box:hover img {
  transform: scale(1.1);
}
.popular-widget-area .popular_widget_categories .categories-slides.owl-theme {
  margin-bottom: -15px;
}
.popular-widget-area .popular_widget_categories .categories-slides.owl-theme .owl-nav {
  margin-top: 0;
  position: absolute;
  right: 0;
  top: -70px;
}
.popular-widget-area .popular_widget_categories .categories-slides.owl-theme .owl-nav [class*=owl-] {
  color: var(--blackColor);
  margin: 0 3px;
  background: #ececec;
  width: 30px;
  height: 30px;
  border-radius: 5px;
  font-size: 25px;
  position: relative;
  text-align: center;
  transition: var(--transition);
}
.popular-widget-area .popular_widget_categories .categories-slides.owl-theme .owl-nav [class*=owl-] i {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.popular-widget-area .popular_widget_categories .categories-slides.owl-theme .owl-nav [class*=owl-].owl-next {
  margin-right: 0;
}
.popular-widget-area .popular_widget_categories .categories-slides.owl-theme .owl-nav [class*=owl-].owl-prev {
  margin-left: 0;
}
.popular-widget-area .popular_widget_categories .categories-slides.owl-theme .owl-nav [class*=owl-]:hover {
  color: var(--whiteColor);
  background-color: var(--mainColor);
}
.popular-widget-area .popular_widget_puva_posts_thumb {
  position: relative;
  overflow: hidden;
}
.popular-widget-area .popular_widget_puva_posts_thumb .item {
  margin-bottom: 20px;
  position: relative;
  padding-left: 95px;
}
.popular-widget-area .popular_widget_puva_posts_thumb .item .thumb {
  top: 0;
  left: 0;
  width: 100px;
  float: unset;
  height: 100%;
  display: block;
  position: absolute;
  border-radius: 10px;
}
.popular-widget-area .popular_widget_puva_posts_thumb .item .thumb .fullimage {
  width: 100px;
  height: 100%;
  display: inline-block;
  border-radius: 10px;
  background-size: cover !important;
  background-repeat: no-repeat;
  background-position: center center !important;
}
.popular-widget-area .popular_widget_puva_posts_thumb .item .thumb .fullimage.bg1 {
  background-image: url(../../assets/img/more-home/posts/posts-1.jpg);
}
.popular-widget-area .popular_widget_puva_posts_thumb .item .thumb .fullimage.bg2 {
  background-image: url(../../assets/img/more-home/posts/posts-2.jpg);
}
.popular-widget-area .popular_widget_puva_posts_thumb .item .thumb .fullimage.bg3 {
  background-image: url(../../assets/img/more-home/posts/posts-3.jpg);
}
.popular-widget-area .popular_widget_puva_posts_thumb .item .thumb .fullimage.bg4 {
  background-image: url(../../assets/img/more-home/posts/posts-4.jpg);
}
.popular-widget-area .popular_widget_puva_posts_thumb .item .thumb .fullimage.bg5 {
  background-image: url(../../assets/img/more-home/posts/posts-5.jpg);
}
.popular-widget-area .popular_widget_puva_posts_thumb .item .thumb::before, .popular-widget-area .popular_widget_puva_posts_thumb .item .thumb::after {
  transition: all 0.8s cubic-bezier(0.2, 1, 0.22, 1);
  content: "";
  background-color: var(--whiteColor);
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
}
.popular-widget-area .popular_widget_puva_posts_thumb .item .thumb::before {
  width: 40px;
  height: 1px;
  left: 100%;
}
.popular-widget-area .popular_widget_puva_posts_thumb .item .thumb::after {
  height: 40px;
  width: 1px;
  top: 0;
}
.popular-widget-area .popular_widget_puva_posts_thumb .item .info {
  padding: 10px 10px 10px 30px;
}
.popular-widget-area .popular_widget_puva_posts_thumb .item .info .title {
  margin-bottom: 10px;
  line-height: 1.5;
  font-size: 16.8px;
  font-weight: 600;
}
.popular-widget-area .popular_widget_puva_posts_thumb .item .info .title a {
  color: var(--blackColor);
  position: relative;
  display: inline;
  transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  padding: 0.1% 0px;
  background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
  background-size: 0px 2px;
  background-position: 0px 95%;
  background-repeat: no-repeat;
}
.popular-widget-area .popular_widget_puva_posts_thumb .item .info .meta {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.popular-widget-area .popular_widget_puva_posts_thumb .item .info .meta li {
  display: inline-block;
  margin-right: 15px;
  color: var(--optionalColor);
  position: relative;
  padding-left: 20px;
}
.popular-widget-area .popular_widget_puva_posts_thumb .item .info .meta li i {
  position: absolute;
  left: 0;
  top: 2.5px;
}
.popular-widget-area .popular_widget_puva_posts_thumb .item .info .meta li a {
  display: inline-block;
  color: var(--optionalColor);
}
.popular-widget-area .popular_widget_puva_posts_thumb .item .info .meta li a:hover {
  color: var(--mainColor);
}
.popular-widget-area .popular_widget_puva_posts_thumb .item .info .meta li:last-child {
  margin-right: 0;
}
.popular-widget-area .popular_widget_puva_posts_thumb .item:last-child {
  margin-bottom: 0;
}
.popular-widget-area .popular_widget_puva_posts_thumb .item:hover .thumb::before, .popular-widget-area .popular_widget_puva_posts_thumb .item:hover .thumb::after {
  opacity: 1;
  top: 50%;
  left: 50%;
}
.popular-widget-area .popular_widget_puva_posts_thumb .item:hover .info .title a {
  color: var(--mainColor);
  background-size: 100% 2px;
}
.popular-widget-area .popular_widget_custom_ads a img {
  border-radius: 10px;
}

.popular_widget_socials_link ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.popular_widget_socials_link ul li {
  margin-bottom: 15px;
}
.popular_widget_socials_link ul li a {
  display: block;
  background-color: #4267B2;
  border-radius: 15px;
  position: relative;
  color: var(--whiteColor);
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 25px;
  padding-right: 90px;
  font-size: 15px;
  font-weight: 400;
}
.popular_widget_socials_link ul li a b {
  font-weight: 500;
}
.popular_widget_socials_link ul li a i {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  height: 30px;
  width: 30px;
  line-height: 30px;
  background-color: var(--whiteColor);
  color: var(--mainColor);
  border-radius: 50px;
  font-size: 15px;
  text-align: center;
  transition: var(--transition);
}
.popular_widget_socials_link ul li a i::before {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.popular_widget_socials_link ul li a.twitter {
  background: #1DA1F2;
}
.popular_widget_socials_link ul li a.instagram {
  background: #DD2A7B;
}
.popular_widget_socials_link ul li a.google {
  background: #DB4437;
}
.popular_widget_socials_link ul li a:hover {
  background-color: var(--mainColor);
  transform: translateY(-2px);
}
.popular_widget_socials_link ul li:last-child {
  margin-bottom: 0;
}

/* Subscribe New CSS */
.subscribe-area.with-bg-color {
  background-color: #1F2536;
}

.subscribe-inner-area.without-border {
  border-radius: 15px;
  border-bottom: none;
}
.subscribe-inner-area.without-border .content .newsletter-form .input-newsletter {
  color: var(--whiteColor);
  background-color: #A79EFE;
  padding-left: 20px;
}
.subscribe-inner-area.without-border .content .newsletter-form .input-newsletter::-moz-placeholder {
  color: var(--whiteColor);
}
.subscribe-inner-area.without-border .content .newsletter-form .input-newsletter::placeholder {
  color: var(--whiteColor);
}
.subscribe-inner-area.without-border .content .newsletter-form .input-newsletter:focus::-moz-placeholder {
  color: transparent;
}
.subscribe-inner-area.without-border .content .newsletter-form .input-newsletter:focus::placeholder {
  color: transparent;
}
.subscribe-inner-area.without-border .content p {
  color: #D4CFFF;
  font-size: var(--font-size);
}

/* Main Banner Wrap Area CSS */
.main-banner-wrap-area {
  background: #F6F5FF;
  padding-top: 100px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.main-banner-wrap-area .container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}
.main-banner-wrap-area::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--whiteColor);
  width: 100%;
  height: 250px;
  z-index: -1;
}

.main-banner-wrap-content {
  max-width: 675px;
}
.main-banner-wrap-content h1 {
  font-size: 70px;
  margin-bottom: 15px;
}
.main-banner-wrap-content h1 span {
  color: var(--mainColor);
}
.main-banner-wrap-content p {
  margin-bottom: 20px;
}
.main-banner-wrap-content .banner-btn {
  display: inline-block;
  background-color: var(--mainColor);
  color: var(--whiteColor);
  border: 1px solid var(--mainColor);
  border-radius: 30px;
  position: relative;
  padding: 14px 60px 14px 30px;
  font-weight: 500;
  font-size: 15px;
}
.main-banner-wrap-content .banner-btn i {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  line-height: 1;
  margin-top: -0.5px;
}
.main-banner-wrap-content .banner-btn:hover {
  background-color: var(--blackColor);
  color: var(--whiteColor);
}

.main-banner-wrap-shape {
  position: absolute;
  right: 50px;
  top: -50px;
  z-index: -1;
}

.banner-wrap-item-card {
  position: relative;
  border-radius: 25px;
  transition: var(--transition);
}
.banner-wrap-item-card::before {
  position: absolute;
  content: "";
  background: linear-gradient(180deg, rgba(75, 56, 246, 0) 9.72%, #07032D 121.24%);
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  border-radius: 25px;
  z-index: 1;
  transition: var(--transition);
}
.banner-wrap-item-card::after {
  position: absolute;
  content: "";
  background: linear-gradient(180deg, rgba(75, 56, 246, 0) 9.72%, #07032D 100%);
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  border-radius: 25px;
  z-index: 1;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
}
.banner-wrap-item-card .wrap-image img {
  border-radius: 25px;
  display: inline-block;
}
.banner-wrap-item-card .wrap-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 0 25px 25px;
  transition: var(--transition);
  z-index: 5;
}
.banner-wrap-item-card .wrap-content h3 {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 15px;
  transition: var(--transition);
}
.banner-wrap-item-card .wrap-content h3 a {
  color: var(--whiteColor);
  position: relative;
  display: inline;
  transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  padding: 0.1% 0px;
  background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
  background-size: 0px 2px;
  background-position: 0px 95%;
  background-repeat: no-repeat;
}
.banner-wrap-item-card .wrap-content .info-entry {
  padding: 0;
  margin-top: 15px;
  margin-bottom: 0;
}
.banner-wrap-item-card .wrap-content .info-entry li {
  list-style-type: none;
  color: var(--whiteColor);
  display: inline-block;
  margin-right: 15px;
  position: relative;
  padding-left: 20px;
  font-size: 12px;
}
.banner-wrap-item-card .wrap-content .info-entry li:last-child {
  margin-right: 0;
}
.banner-wrap-item-card .wrap-content .info-entry li i {
  font-size: 14.5px;
  position: absolute;
  left: 0;
  top: 1px;
}
.banner-wrap-item-card:hover::after {
  opacity: 1;
  visibility: visible;
}
.banner-wrap-item-card:hover .wrap-content h3 a {
  color: var(--whiteColor);
  background-size: 100% 2px;
}

.main-banner-wrap-item-slides {
  margin-top: 100px;
}
.main-banner-wrap-item-slides.owl-theme .owl-nav {
  margin-top: 0;
}
.main-banner-wrap-item-slides.owl-theme .owl-nav [class*=owl-] {
  color: var(--mainColor);
  font-size: 25px;
  margin: 0;
  padding: 0;
  background: var(--whiteColor);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.06);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  transition: var(--transition);
  position: absolute;
  right: 90px;
  text-align: center;
  top: -140px;
  border: 1px solid #EEECFF;
}
.main-banner-wrap-item-slides.owl-theme .owl-nav [class*=owl-] i {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.main-banner-wrap-item-slides.owl-theme .owl-nav [class*=owl-].owl-next {
  left: auto;
  right: 40px;
}
.main-banner-wrap-item-slides.owl-theme .owl-nav [class*=owl-]:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
  border: 1px solid var(--mainColor);
}

/* Top Categories Area CSS */
.top-categories-area {
  background-image: url(../../assets/img/more-home/top-categories/top-categories-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}
.top-categories-area .section-title {
  border-left: none;
  padding-left: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.top-categories-area.with-black-color {
  background-image: unset;
  background-color: var(--blackColor);
}
.top-categories-area.with-black-color .section-title h2 {
  color: var(--whiteColor);
}
.top-categories-area.with-black-color .top-categories-card .content h3 a {
  color: var(--whiteColor);
}
.top-categories-area.with-black-color .top-categories-card .content h3 span {
  color: #C3BCFF;
}
.top-categories-area.with-black-color .top-categories-slides.owl-theme .owl-nav {
  margin-top: 0;
}
.top-categories-area.with-black-color .top-categories-slides.owl-theme .owl-nav [class*=owl-] {
  color: var(--whiteColor);
  background: transparent;
  border: 1px solid #1F2536;
}
.top-categories-area.with-black-color .top-categories-slides.owl-theme .owl-nav [class*=owl-]:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
  border: 1px solid var(--mainColor);
}

.top-categories-card a {
  display: inline-block;
}
.top-categories-card a img {
  border-radius: 12px;
}
.top-categories-card .content {
  margin-top: 15px;
}
.top-categories-card .content h3 {
  font-size: 20px;
  margin-bottom: 0;
}
.top-categories-card .content h3 span {
  font-size: var(--fontSize);
  color: var(--mainColor);
}
.top-categories-card .content h3 a {
  color: var(--blackColor);
  position: relative;
  display: inline;
  transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  padding: 0.1% 0px;
  background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
  background-size: 0px 2px;
  background-position: 0px 95%;
  background-repeat: no-repeat;
}
.top-categories-card:hover .content h3 a {
  color: var(--mainColor);
  background-size: 100% 2px;
}

.top-categories-slides.owl-theme .owl-nav {
  margin-top: 0;
}
.top-categories-slides.owl-theme .owl-nav [class*=owl-] {
  color: var(--mainColor);
  font-size: 25px;
  margin: 0;
  padding: 0;
  background: var(--whiteColor);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  transition: var(--transition);
  position: absolute;
  left: -60px;
  text-align: center;
  top: 45%;
  transform: translateY(-45%);
  border: 1px solid #EEECFF;
}
.top-categories-slides.owl-theme .owl-nav [class*=owl-] i {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.top-categories-slides.owl-theme .owl-nav [class*=owl-].owl-next {
  left: auto;
  right: -60px;
}
.top-categories-slides.owl-theme .owl-nav [class*=owl-]:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
  border: 1px solid var(--mainColor);
}
.top-categories-slides.owl-theme .owl-nav [class*=owl-].disabled {
  background: var(--mainColor);
  cursor: not-allowed;
  color: var(--whiteColor);
}

.top-categories-vector-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
  text-align: center;
}

/* Main Banner Black Area CSS */
.main-banner-black-area {
  background-color: #1F2536;
  padding-top: 70px;
  padding-bottom: 70px;
}
.main-banner-black-area .container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}

.banner-black-item-card {
  position: relative;
  border-radius: 25px;
  transition: var(--transition);
  margin-bottom: 30px;
}
.banner-black-item-card::before {
  position: absolute;
  content: "";
  background: linear-gradient(180deg, rgba(75, 56, 246, 0) 9.72%, #07032D 121.24%);
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  border-radius: 25px;
  z-index: 1;
  transition: var(--transition);
}
.banner-black-item-card::after {
  position: absolute;
  content: "";
  background: linear-gradient(180deg, rgba(75, 56, 246, 0) 9.72%, #07032D 100%);
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  border-radius: 25px;
  z-index: 1;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
}
.banner-black-item-card .black-image img {
  border-radius: 25px;
  display: inline-block;
}
.banner-black-item-card .black-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 0 30px 35px;
  transition: var(--transition);
  z-index: 5;
}
.banner-black-item-card .black-content h3 {
  font-size: 22px;
  line-height: 1.5;
  margin-bottom: 18px;
  transition: var(--transition);
}
.banner-black-item-card .black-content h3 a {
  color: var(--whiteColor);
  position: relative;
  display: inline;
  transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  padding: 0.1% 0px;
  background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
  background-size: 0px 2px;
  background-position: 0px 95%;
  background-repeat: no-repeat;
}
.banner-black-item-card .black-content .info-entry {
  padding: 0;
  margin-top: 15px;
  margin-bottom: 0;
}
.banner-black-item-card .black-content .info-entry li {
  list-style-type: none;
  color: var(--whiteColor);
  display: inline-block;
  margin-right: 15px;
  position: relative;
  padding-left: 20px;
  font-size: 12px;
}
.banner-black-item-card .black-content .info-entry li:last-child {
  margin-right: 0;
}
.banner-black-item-card .black-content .info-entry li i {
  font-size: 14.5px;
  position: absolute;
  left: 0;
  top: 1px;
}
.banner-black-item-card:hover::after {
  opacity: 1;
  visibility: visible;
}
.banner-black-item-card:hover .black-content h3 a {
  color: var(--whiteColor);
  background-size: 100% 2px;
}

.banner-black-box {
  margin-top: 30px;
}
.banner-black-box .image {
  position: relative;
  margin-right: 20px;
}
.banner-black-box .image::before {
  position: absolute;
  content: "";
  background: var(--mainColor);
  opacity: 0.5;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  z-index: 1;
  transition: var(--transition);
  opacity: 0;
  border-radius: 50%;
}
.banner-black-box .content .category {
  display: inline-block;
  margin-bottom: 15px;
  border-radius: 30px;
  color: #3EAFEF;
  font-weight: 500;
}
.banner-black-box .content h3 {
  font-size: 18px;
  margin-bottom: 15px;
  line-height: 1.5;
}
.banner-black-box .content h3 a {
  color: var(--whiteColor);
  position: relative;
  display: inline;
  transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  padding: 0.1% 0px;
  background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
  background-size: 0px 2px;
  background-position: 0px 95%;
  background-repeat: no-repeat;
}
.banner-black-box .content .meta {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.banner-black-box .content .meta li {
  display: inline-block;
  margin-right: 15px;
  color: var(--optionalColor);
  position: relative;
  padding-left: 18px;
}
.banner-black-box .content .meta li i {
  position: absolute;
  left: 0;
  top: 2.5px;
}
.banner-black-box .content .meta li a {
  display: inline-block;
  color: var(--optionalColor);
}
.banner-black-box .content .meta li a:hover {
  color: var(--mainColor);
}
.banner-black-box .content .meta li:last-child {
  margin-right: 0;
}
.banner-black-box:hover .image::before {
  opacity: 0.5;
}
.banner-black-box:hover .content h3 a {
  color: var(--mainColor);
  background-size: 100% 2px;
}

.popular-products-review-area.with-bg-color .page-widget-area .widget .widget-title {
  color: #fff;
}
.popular-products-review-area.with-bg-color .page-widget-area .widget_puva_posts_thumb .item .info .title a {
  color: #fff;
}
.popular-products-review-area.with-bg-color .section-title .link-btn, .popular-products-review-area.with-bg-color .section-title h2 {
  color: #fff;
}
.popular-products-review-area.with-bg-color .popular-products-reviews-box .content h3 a {
  color: #fff;
}
.popular-products-review-area.with-bg-color .single-latest-reviews-box .content h3 a {
  color: #fff;
}
.popular-products-review-area.with-bg-color .review-read-more {
  color: #fff;
}

/* Overview Products Area CSS */
.overview-products-area {
  background-color: var(--blackColor);
}
.overview-products-area .page-widget-area .widget .widget-title {
  color: #fff;
}
.overview-products-area .page-widget-area .widget_puva_posts_thumb .item .info .title a {
  color: #fff;
}
.overview-products-area .section-title .link-btn, .overview-products-area .section-title h2 {
  color: #fff;
}
.overview-products-area .popular-products-reviews-box .content h3 a {
  color: #fff;
}

.overview-products-box {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}
.overview-products-box .title {
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 22px;
  border-bottom: 1px solid #47436C;
  font-size: 24px;
  color: var(--whiteColor);
}
.overview-products-box .thumbnail-box {
  margin-bottom: 30px;
}
.overview-products-box .thumbnail-box .image {
  position: relative;
  border-radius: 15px;
  transition: var(--transition);
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.overview-products-box .thumbnail-box .image.bg-1 {
  background-image: url(../../assets/img/more-home/overview/overview-1.jpg);
}
.overview-products-box .thumbnail-box .image.bg-2 {
  background-image: url(../../assets/img/more-home/overview/overview-2.jpg);
}
.overview-products-box .thumbnail-box .image.bg-3 {
  background-image: url(../../assets/img/more-home/overview/overview-3.jpg);
}
.overview-products-box .thumbnail-box .image img {
  display: none;
}
.overview-products-box .thumbnail-box .image .link-btn {
  position: absolute;
  left: 0;
  right: 0;
  border-radius: 15px;
  top: 0;
  bottom: 0;
  display: block;
  z-index: 1;
}
.overview-products-box .thumbnail-box .image::before {
  position: absolute;
  content: "";
  background: var(--mainColor);
  opacity: 0.5;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  border-radius: 15px;
  z-index: 1;
  transition: var(--transition);
  opacity: 0;
}
.overview-products-box .thumbnail-box .content {
  padding: 8px 0 7px 20px;
}
.overview-products-box .thumbnail-box .content .category {
  display: inline-block;
  margin-bottom: 12px;
  background-color: #1F2536;
  border-radius: 5px;
  color: #C3BCFF;
  padding: 8px 18px;
  font-weight: 600;
}
.overview-products-box .thumbnail-box .content h3 {
  font-size: 17.5px;
  margin-bottom: 10px;
  line-height: 1.5;
}
.overview-products-box .thumbnail-box .content h3 a {
  color: var(--whiteColor);
  position: relative;
  display: inline;
  transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  padding: 0.1% 0px;
  background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
  background-size: 0px 2px;
  background-position: 0px 95%;
  background-repeat: no-repeat;
}
.overview-products-box .thumbnail-box .content .meta {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.overview-products-box .thumbnail-box .content .meta li {
  display: inline-block;
  margin-right: 15px;
  color: var(--optionalColor);
  position: relative;
  padding-left: 18px;
}
.overview-products-box .thumbnail-box .content .meta li i {
  position: absolute;
  left: 0;
  top: 2.8px;
}
.overview-products-box .thumbnail-box .content .meta li a {
  display: inline-block;
  color: var(--optionalColor);
}
.overview-products-box .thumbnail-box .content .meta li a:hover {
  color: var(--mainColor);
}
.overview-products-box .thumbnail-box .content .meta li:last-child {
  margin-right: 0;
}
.overview-products-box .thumbnail-box:hover .image::before {
  opacity: 0.5;
}
.overview-products-box .thumbnail-box:hover .content h3 a {
  background-size: 100% 2px;
}
.overview-products-box .overview-products-ads {
  margin-top: 30px;
}
.overview-products-box .overview-products-ads a img {
  border-radius: 20px;
}

.overview-products-slides.owl-theme {
  margin-bottom: -15px;
}
.overview-products-slides.owl-theme .owl-nav {
  margin-top: 0;
  position: absolute;
  right: 5px;
  top: -78px;
}
.overview-products-slides.owl-theme .owl-nav [class*=owl-] {
  color: #C3BCFF;
  margin: 0 5px;
  background: #1F2536;
  width: 25px;
  height: 25px;
  border-radius: 5px;
  font-size: 20px;
  position: relative;
  text-align: center;
  transition: var(--transition);
}
.overview-products-slides.owl-theme .owl-nav [class*=owl-] i {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.overview-products-slides.owl-theme .owl-nav [class*=owl-].owl-next {
  margin-right: 0;
}
.overview-products-slides.owl-theme .owl-nav [class*=owl-].owl-prev {
  margin-left: 0;
}
.overview-products-slides.owl-theme .owl-nav [class*=owl-]:hover {
  color: var(--whiteColor);
  background-color: var(--mainColor);
}

.overview-products-list .section-title {
  border-bottom: 1px solid #47436C;
  border-left: none;
  border-radius: 0;
  padding-left: 0;
  padding-top: 0;
  padding-bottom: 10px;
}
.overview-products-list .section-title h2 {
  color: var(--whiteColor);
}
.overview-products-list .section-title .link-btn {
  top: 14px;
  right: 5px;
  color: #C3BCFF;
}
.overview-products-list .section-title .link-btn::before {
  display: none;
}

.overview-products-thumbnail-box {
  position: relative;
  border-radius: 15px;
  transition: var(--transition);
  overflow: hidden;
  margin-bottom: 30px;
}
.overview-products-thumbnail-box img {
  border-radius: 15px;
  transition: var(--transition);
}
.overview-products-thumbnail-box .category {
  background-color: var(--mainColor);
  border-radius: 8px;
  color: var(--whiteColor);
  padding: 8px 18px;
  font-weight: 500;
  font-size: 12.5px;
  position: absolute;
  top: 30px;
  left: 25px;
}
.overview-products-thumbnail-box .content {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  bottom: 0;
  height: auto;
  padding: 0 30px 25px;
}
.overview-products-thumbnail-box .content h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--whiteColor);
  line-height: 1.5;
}
.overview-products-thumbnail-box .content h3 a {
  color: var(--whiteColor);
  position: relative;
  display: inline;
  transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  padding: 0.1% 0px;
  background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
  background-size: 0px 2px;
  background-position: 0px 95%;
  background-repeat: no-repeat;
}
.overview-products-thumbnail-box .content .meta {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.overview-products-thumbnail-box .content .meta li {
  display: inline-block;
  margin-right: 15px;
  color: #C0C5D2;
  position: relative;
  padding-left: 22px;
}
.overview-products-thumbnail-box .content .meta li i {
  position: absolute;
  left: 0;
  top: 3.5px;
}
.overview-products-thumbnail-box .content .meta li a {
  display: inline-block;
  color: #C0C5D2;
}
.overview-products-thumbnail-box .content .meta li a:hover {
  color: var(--mainColor);
}
.overview-products-thumbnail-box .content .meta li:last-child {
  margin-right: 0;
}
.overview-products-thumbnail-box .link-btn {
  display: block;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 2;
  border-radius: 15px;
}
.overview-products-thumbnail-box:hover img {
  transform: scale(1.1);
}
.overview-products-thumbnail-box:hover .content h3 a {
  color: var(--whiteColor);
  background-size: 100% 2px;
}
.overview-products-thumbnail-box::before {
  position: absolute;
  content: "";
  background: linear-gradient(180deg, rgba(75, 56, 246, 0) 9.72%, #07032D 121.24%);
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  z-index: 1;
  transition: var(--transition);
}

/* Footer New CSS */
.footer-area.footer-with-new-style-css .single-footer-widget h3 {
  font-size: 22px;
  border-bottom: 1px solid #2F374E;
  padding-bottom: 20px;
}
.footer-area.footer-with-new-style-css .single-footer-widget .helpful-links li {
  color: #DDDDDD;
  font-size: var(--fontSize);
}
.footer-area.footer-with-new-style-css .single-footer-widget .helpful-links li a {
  color: #DDDDDD;
}
.footer-area.footer-with-new-style-css .single-footer-widget .helpful-links li a:hover {
  color: var(--mainColor);
}
.footer-area.footer-with-new-style-css .single-footer-widget .download-app h3 {
  font-size: 18px;
  border-bottom: 1px solid #2F374E;
  padding-bottom: 15px;
}
.footer-area.footer-with-new-style-css .single-footer-widget .download-app .btn-box .play-store-btn {
  background-color: var(--mainColor);
  color: var(--whiteColor);
  font-size: 12px;
}
.footer-area.footer-with-new-style-css .single-footer-widget .download-app .btn-box .play-store-btn span {
  color: var(--whiteColor);
  font-size: var(--fontSize);
}
.footer-area.footer-with-new-style-css .single-footer-widget .download-app .btn-box .play-store-btn:hover {
  background-color: #000000;
}
.footer-area.footer-with-new-style-css .single-footer-widget .download-app .btn-box .apple-store-btn {
  background-color: var(--mainColor);
  color: var(--whiteColor);
  font-size: 12px;
}
.footer-area.footer-with-new-style-css .single-footer-widget .download-app .btn-box .apple-store-btn span {
  color: var(--whiteColor);
  font-size: var(--fontSize);
}
.footer-area.footer-with-new-style-css .single-footer-widget .download-app .btn-box .apple-store-btn:hover {
  background-color: #000000;
}
.footer-area.footer-with-new-style-css .single-footer-widget .widget-box {
  margin-bottom: 20px;
}
.footer-area.footer-with-new-style-css .single-footer-widget .widget-box .image {
  position: relative;
  border-radius: 15px;
  transition: var(--transition);
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.footer-area.footer-with-new-style-css .single-footer-widget .widget-box .image.bg-1 {
  background-image: url(../../assets/img/more-home/footer/footer-1.jpg);
}
.footer-area.footer-with-new-style-css .single-footer-widget .widget-box .image.bg-2 {
  background-image: url(../../assets/img/more-home/footer/footer-2.jpg);
}
.footer-area.footer-with-new-style-css .single-footer-widget .widget-box .image.bg-3 {
  background-image: url(../../assets/img/more-home/footer/footer-3.jpg);
}
.footer-area.footer-with-new-style-css .single-footer-widget .widget-box .image.bg-4 {
  background-image: url(../../assets/img/more-home/footer/footer-4.jpg);
}
.footer-area.footer-with-new-style-css .single-footer-widget .widget-box .image.bg-5 {
  background-image: url(../../assets/img/more-home/footer/footer-5.jpg);
}
.footer-area.footer-with-new-style-css .single-footer-widget .widget-box .image.bg-6 {
  background-image: url(../../assets/img/more-home/footer/footer-6.jpg);
}
.footer-area.footer-with-new-style-css .single-footer-widget .widget-box .image img {
  display: none;
}
.footer-area.footer-with-new-style-css .single-footer-widget .widget-box .image .link-btn {
  position: absolute;
  left: 0;
  right: 0;
  border-radius: 15px;
  top: 0;
  bottom: 0;
  display: block;
  z-index: 1;
}
.footer-area.footer-with-new-style-css .single-footer-widget .widget-box .image::before {
  position: absolute;
  content: "";
  background: var(--mainColor);
  opacity: 0.5;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  border-radius: 15px;
  z-index: 1;
  transition: var(--transition);
  opacity: 0;
}
.footer-area.footer-with-new-style-css .single-footer-widget .widget-box .content {
  padding: 8px 0 7px 20px;
}
.footer-area.footer-with-new-style-css .single-footer-widget .widget-box .content .category {
  display: inline-block;
  margin-bottom: 12px;
  background-color: #f5f5f5;
  border-radius: 5px;
  color: var(--mainColor);
  padding: 8px 18px;
  font-weight: 600;
}
.footer-area.footer-with-new-style-css .single-footer-widget .widget-box .content h4 {
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1.5;
  color: var(--whiteColor);
}
.footer-area.footer-with-new-style-css .single-footer-widget .widget-box .content h4 a {
  color: var(--whiteColor);
  position: relative;
  display: inline;
  transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  padding: 0.1% 0px;
  background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
  background-size: 0px 2px;
  background-position: 0px 95%;
  background-repeat: no-repeat;
}
.footer-area.footer-with-new-style-css .single-footer-widget .widget-box .content .meta {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.footer-area.footer-with-new-style-css .single-footer-widget .widget-box .content .meta li {
  display: inline-block;
  margin-right: 15px;
  color: #858CA1;
  position: relative;
  padding-left: 18px;
}
.footer-area.footer-with-new-style-css .single-footer-widget .widget-box .content .meta li i {
  position: absolute;
  left: 0;
  top: 2.8px;
}
.footer-area.footer-with-new-style-css .single-footer-widget .widget-box .content .meta li a {
  display: inline-block;
  color: #858CA1;
}
.footer-area.footer-with-new-style-css .single-footer-widget .widget-box .content .meta li a:hover {
  color: var(--mainColor);
}
.footer-area.footer-with-new-style-css .single-footer-widget .widget-box .content .meta li:last-child {
  margin-right: 0;
}
.footer-area.footer-with-new-style-css .single-footer-widget .widget-box:last-child {
  margin-bottom: 0;
}
.footer-area.footer-with-new-style-css .single-footer-widget .widget-box:hover .image::before {
  opacity: 0.5;
}
.footer-area.footer-with-new-style-css .single-footer-widget .widget-box:hover .content h4 a {
  color: var(--mainColor);
  background-size: 100% 2px;
}
.footer-area.footer-with-new-style-css .footer-bottom-area {
  padding-top: 50px;
  padding-bottom: 50px;
  margin-top: 70px;
}
.footer-area.footer-with-new-style-css .footer-bottom-area .socials-links li span {
  margin-right: 15px;
  font-size: 15px;
  color: #9FA7BD;
  font-weight: 400;
}

.copyright-area.copyright-with-new-style {
  text-align: center;
  padding-top: 35px;
  padding-bottom: 35px;
}

.navbar-with-black-color .optional-title {
  color: #fff;
}

.blog-sidebar .widget_search form .wp-block-search__button {
  width: 100px !important;
}

.single-footer-widget.widget_block .wp-block-heading {
  color: #fff;
}

.blog-sidebar .wp-block-search__button-outside.wp-block-search__text-button.wp-block-search {
  margin-bottom: 0;
}

.game-ranking-table {
  margin-top: 25px;
  margin-bottom: 25px;
}
.game-ranking-table .table {
  margin-bottom: 0;
}
.game-ranking-table .table thead th {
  vertical-align: middle;
  border: none;
  background: #f9f9f9;
  white-space: nowrap;
  padding: 10px 15px;
  border-bottom: 1px solid #eeeeee;
  color: var(--blackColor);
  font-size: 15px;
  font-weight: 600;
}
.game-ranking-table .table tbody td {
  vertical-align: middle;
  padding: 10px 15px;
  font-weight: 600;
  color: var(--blackColor);
  border: none;
}
.game-ranking-table .table tbody td.title a {
  color: var(--blackColor);
}
.game-ranking-table .table tbody td.image a img {
  width: 110px;
}
.game-ranking-table .table tbody td.rating {
  white-space: nowrap;
  font-size: 16px;
  color: #f6a123;
}
.game-ranking-table .table tbody td.rating i {
  margin-right: -2px;
}
.game-ranking-table .table tbody td.action {
  white-space: nowrap;
}
.game-ranking-table .table tbody td.action .default-btn {
  font-size: 14px;
  padding-left: 25px;
  padding-right: 25px;
}
.game-ranking-table .table tbody tr:nth-of-type(odd) {
  background-color: transparent;
}
.game-ranking-table .table tbody tr:nth-of-type(even) {
  background: #f9f9f9;
}

.pros-cons {
  margin-bottom: 15px;
}
.pros-cons h4 {
  background-color: #00bf08;
  margin-bottom: 25px;
  padding: 10px 15px;
  font-size: 18px;
  color: var(--whiteColor);
}
.pros-cons ul {
  padding-left: 15px !important;
  margin-bottom: 0;
  list-style-type: none;
}
.pros-cons ul li {
  position: relative;
  margin-bottom: 12px !important;
  color: var(--blackColor) !important;
  font-size: 15.5px;
  padding-left: 24px;
  list-style: none !important;
}
.pros-cons ul li i {
  position: absolute;
  left: 0;
  top: 3px;
  color: #00bf08;
  font-style: normal !important;
}
.pros-cons ul li:last-child {
  margin-bottom: 0;
}
.pros-cons .col-lg-6:last-child h4 {
  background-color: #bf000a;
}
.pros-cons .col-lg-6:last-child ul li i {
  color: #bf000a;
}

.optional-title2 {
  margin: 0;
  color: #fff;
}

/* Start "Student Tech Reviews Demo" & "Creative Tools Hub Demo" CSS
======================================================================*/
.home-with-public-sans-fonts {
  background: linear-gradient(127deg, #F3E8DE 9.05%, #E7F5F7 85.81%);
  font-family: "Public Sans", sans-serif;
  color: var(--optionalColor2);
}
.home-with-public-sans-fonts .h1, .home-with-public-sans-fonts .h2, .home-with-public-sans-fonts .h3, .home-with-public-sans-fonts .h4, .home-with-public-sans-fonts .h5, .home-with-public-sans-fonts .h6, .home-with-public-sans-fonts h1, .home-with-public-sans-fonts h2, .home-with-public-sans-fonts h3, .home-with-public-sans-fonts h4, .home-with-public-sans-fonts h5, .home-with-public-sans-fonts h6 {
  font-weight: 500;
  color: var(--blackColor2);
}
.home-with-public-sans-fonts .h1 a, .home-with-public-sans-fonts .h2 a, .home-with-public-sans-fonts .h3 a, .home-with-public-sans-fonts .h4 a, .home-with-public-sans-fonts .h5 a, .home-with-public-sans-fonts .h6 a, .home-with-public-sans-fonts h1 a, .home-with-public-sans-fonts h2 a, .home-with-public-sans-fonts h3 a, .home-with-public-sans-fonts h4 a, .home-with-public-sans-fonts h5 a, .home-with-public-sans-fonts h6 a {
  color: var(--blackColor2);
}
.home-with-public-sans-fonts .h1 a:hover, .home-with-public-sans-fonts .h2 a:hover, .home-with-public-sans-fonts .h3 a:hover, .home-with-public-sans-fonts .h4 a:hover, .home-with-public-sans-fonts .h5 a:hover, .home-with-public-sans-fonts .h6 a:hover, .home-with-public-sans-fonts h1 a:hover, .home-with-public-sans-fonts h2 a:hover, .home-with-public-sans-fonts h3 a:hover, .home-with-public-sans-fonts h4 a:hover, .home-with-public-sans-fonts h5 a:hover, .home-with-public-sans-fonts h6 a:hover {
  color: var(--mainColor);
}
.home-with-public-sans-fonts p {
  color: var(--optionalColor2);
}
.home-with-public-sans-fonts .container {
  max-width: 1320px;
}
.home-with-public-sans-fonts.bg-transparent {
  background: transparent;
}

.student-tech-reviews-navbar.is-sticky .puva-nav {
  padding: 2px 0;
}
.student-tech-reviews-navbar .puva-nav {
  padding: 18px 0;
}
.student-tech-reviews-navbar .puva-nav .navbar .navbar-brand {
  margin-right: 80px;
}
.student-tech-reviews-navbar .puva-nav .navbar .navbar-nav {
  margin-left: 0;
  margin-right: auto;
}
.student-tech-reviews-navbar .puva-nav .navbar .others-option {
  margin-left: 30px;
}
.student-tech-reviews-navbar .puva-nav .navbar .others-option .option-item .search-box {
  color: var(--blackColor);
}
.student-tech-reviews-navbar .puva-nav .navbar .others-option .option-item .search-box:hover {
  color: var(--mainColor);
}
.student-tech-reviews-navbar .puva-nav .navbar .others-option .option-item .default-btn {
  padding-left: 30px;
  padding-right: 60px;
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: var(--blackColor);
  color: var(--whiteColor);
  border: 1px solid var(--blackColor);
  border-radius: 30px;
}
.student-tech-reviews-navbar .puva-nav .navbar .others-option .option-item .default-btn:hover {
  background-color: var(--mainColor);
  border: 1px solid var(--mainColor);
}
.student-tech-reviews-navbar .puva-nav .navbar .others-option .option-item .default-btn i {
  right: 30px;
  left: auto;
  font-size: 18px;
}
.student-tech-reviews-navbar .others-option-for-responsive .container .container {
  max-width: 290px;
}
.student-tech-reviews-navbar .others-option-for-responsive .option-inner .others-option.d-flex {
  display: block !important;
}
.student-tech-reviews-navbar .others-option-for-responsive .option-inner .others-option .option-item .search-box {
  color: var(--blackColor);
}
.student-tech-reviews-navbar .others-option-for-responsive .option-inner .others-option .option-item .search-box:hover {
  color: var(--mainColor);
}
.student-tech-reviews-navbar .others-option-for-responsive .option-inner .others-option .option-item .default-btn {
  padding-left: 30px;
  padding-right: 60px;
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: var(--blackColor);
  color: var(--whiteColor);
  border: 1px solid var(--blackColor);
  border-radius: 30px;
}
.student-tech-reviews-navbar .others-option-for-responsive .option-inner .others-option .option-item .default-btn:hover {
  background-color: var(--mainColor);
  border: 1px solid var(--mainColor);
}
.student-tech-reviews-navbar .others-option-for-responsive .option-inner .others-option .option-item .default-btn i {
  right: 30px;
  left: auto;
  font-size: 18px;
}
.student-tech-reviews-navbar.with-border.is-sticky .puva-nav .navbar {
  border-bottom: none;
  padding: 5px 0;
}
.student-tech-reviews-navbar.with-border .puva-nav {
  padding: 0;
}
.student-tech-reviews-navbar.with-border .puva-nav .navbar {
  border-bottom: 1px solid #EAEAEA;
  padding: 20px 0;
}

/*================================================
Student Tech Reviews Banner Area CSS
=================================================*/
.student-tech-reviews-banner-area {
  overflow: hidden;
}
.student-tech-reviews-banner-area .container-fluid {
  padding-left: 20px;
  padding-right: 20px;
}

.student-tech-reviews-banner-inner {
  background-color: var(--whiteColor);
  border-radius: 20px;
}

.student-tech-reviews-banner-content {
  padding: 130px 70px 130px 70px;
}
.student-tech-reviews-banner-content .category {
  display: inline-block;
  background-color: #E7F5F7;
  color: var(--optionalColor2);
  border-radius: 30px;
  padding: 5px 15px;
  margin-bottom: 15px;
}
.student-tech-reviews-banner-content h3 {
  font-size: 31.5px;
  margin-bottom: 15px;
  line-height: 1.3;
}
.student-tech-reviews-banner-content h3 a {
  display: inline-block;
}
.student-tech-reviews-banner-content .meta {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.student-tech-reviews-banner-content .meta li {
  display: inline-block;
  margin-right: 15px;
  position: relative;
  padding-left: 18px;
}
.student-tech-reviews-banner-content .meta li i {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.student-tech-reviews-banner-content .meta li:last-child {
  margin-right: 0;
}
.student-tech-reviews-banner-content .extra-top {
  margin-top: 35px;
  margin-bottom: 0;
}
.student-tech-reviews-banner-content .info-btn {
  margin-top: 70px;
}
.student-tech-reviews-banner-content .info-btn .view-details-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #FCDA98;
  color: var(--blackColor2);
  padding: 14.5px 30px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
}
.student-tech-reviews-banner-content .info-btn .view-details-btn img {
  margin-left: 12px;
  max-width: 20px;
}
.student-tech-reviews-banner-content .info-btn .view-details-btn:hover {
  background-color: #E7F5F7;
}

.student-tech-reviews-banner-image {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 1;
  border-radius: 20px;
}
.student-tech-reviews-banner-image .link-btn {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.student-tech-reviews-banner-bottom {
  border-radius: 20px;
  background-color: var(--whiteColor);
  padding: 80px 70px;
  margin-top: 10px;
}
.student-tech-reviews-banner-bottom .content {
  max-width: 425px;
  position: relative;
}
.student-tech-reviews-banner-bottom .content .category {
  display: inline-block;
  background-color: #F3E8DE;
  color: var(--optionalColor2);
  border-radius: 30px;
  padding: 5px 15px;
  margin-bottom: 15px;
}
.student-tech-reviews-banner-bottom .content .category.bg-2 {
  background-color: #E7F5F7;
}
.student-tech-reviews-banner-bottom .content h3 {
  font-size: 20.5px;
  margin-bottom: 15px;
  line-height: 1.5;
}
.student-tech-reviews-banner-bottom .content h3 a {
  display: inline-block;
}
.student-tech-reviews-banner-bottom .content .meta {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.student-tech-reviews-banner-bottom .content .meta li {
  display: inline-block;
  margin-right: 15px;
  position: relative;
  padding-left: 18px;
}
.student-tech-reviews-banner-bottom .content .meta li i {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.student-tech-reviews-banner-bottom .content .meta li:last-child {
  margin-right: 0;
}
.student-tech-reviews-banner-bottom .content::before {
  position: absolute;
  content: "";
  right: -10px;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #F3E8DE;
  transform: rotate(25deg);
}
.student-tech-reviews-banner-bottom .content.border-none::before {
  display: none;
}

.student-tech-reviews-banner-sidebar {
  border-radius: 20px;
  background: var(--whiteColor);
}
.student-tech-reviews-banner-sidebar .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px;
}
.student-tech-reviews-banner-sidebar .top h3 {
  margin-bottom: 0;
  font-size: 20px;
}
.student-tech-reviews-banner-sidebar .top .link-btn {
  font-size: 15px;
  color: var(--optionalColor2);
  display: flex;
  align-items: center;
  margin-left: 25px;
}
.student-tech-reviews-banner-sidebar .top .link-btn i {
  font-size: 20px;
}
.student-tech-reviews-banner-sidebar .top .link-btn:hover {
  color: var(--mainColor);
}
.student-tech-reviews-banner-sidebar .trending-post {
  position: relative;
  overflow: hidden;
}
.student-tech-reviews-banner-sidebar .trending-post a img {
  border-radius: 20px;
}
.student-tech-reviews-banner-sidebar .trending-post .content {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 30px;
  z-index: 1;
}
.student-tech-reviews-banner-sidebar .trending-post .content .category {
  display: inline-block;
  background-color: #E7F5F7;
  color: var(--optionalColor2);
  border-radius: 30px;
  padding: 5px 15px;
  margin-bottom: 15px;
}
.student-tech-reviews-banner-sidebar .trending-post .content h3 {
  font-size: 20.5px;
  margin-bottom: 15px;
  line-height: 1.5;
}
.student-tech-reviews-banner-sidebar .trending-post .content h3 a {
  display: inline-block;
  color: var(--whiteColor);
}
.student-tech-reviews-banner-sidebar .trending-post .content .meta {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.student-tech-reviews-banner-sidebar .trending-post .content .meta li {
  display: inline-block;
  margin-right: 15px;
  position: relative;
  padding-left: 18px;
  color: #FCDA98;
}
.student-tech-reviews-banner-sidebar .trending-post .content .meta li i {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.student-tech-reviews-banner-sidebar .trending-post .content .meta li:last-child {
  margin-right: 0;
}
.student-tech-reviews-banner-sidebar .trending-post::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  border-radius: 20px;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  transition: var(--transition);
}
.student-tech-reviews-banner-sidebar .trending-items {
  padding: 35px 30px;
}
.student-tech-reviews-banner-sidebar .trending-items .item {
  border-bottom: 1px solid #F3E8DE;
  margin-bottom: 25px;
  padding-bottom: 25px;
}
.student-tech-reviews-banner-sidebar .trending-items .item .content .category {
  display: inline-block;
  background-color: #F3E8DE;
  color: var(--optionalColor2);
  border-radius: 30px;
  padding: 5px 15px;
  margin-bottom: 15px;
}
.student-tech-reviews-banner-sidebar .trending-items .item .content .category.bg-2 {
  background-color: #E7F5F7;
}
.student-tech-reviews-banner-sidebar .trending-items .item .content h3 {
  font-size: 20.5px;
  margin-bottom: 15px;
  line-height: 1.5;
}
.student-tech-reviews-banner-sidebar .trending-items .item .content h3 a {
  display: inline-block;
}
.student-tech-reviews-banner-sidebar .trending-items .item .content .meta {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.student-tech-reviews-banner-sidebar .trending-items .item .content .meta li {
  display: inline-block;
  margin-right: 15px;
  position: relative;
  padding-left: 18px;
  color: var(--optionalColor2);
}
.student-tech-reviews-banner-sidebar .trending-items .item .content .meta li i {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.student-tech-reviews-banner-sidebar .trending-items .item .content .meta li:last-child {
  margin-right: 0;
}
.student-tech-reviews-banner-sidebar .trending-items .item .image {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 1;
  border-radius: 20px;
}
.student-tech-reviews-banner-sidebar .trending-items .item .image .link-btn {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.student-tech-reviews-banner-sidebar .trending-items .item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

/*================================================
Student Categories Area CSS
=================================================*/
.student-categories-area {
  overflow: hidden;
}

.student-categories-list .col {
  flex: 0 0 auto;
  width: 20%;
  margin-bottom: 30px;
}

.student-categories-item {
  text-align: center;
}
.student-categories-item .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 200px;
  border-radius: 100px;
  border: 1px solid #DAD9D9;
  position: relative;
  transition: var(--transition);
}
.student-categories-item .icon img {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin: auto;
}
.student-categories-item .icon.bg-C7E4FE {
  background-color: #C7E4FE;
  border: 1px solid #C7E4FE;
}
.student-categories-item .icon.bg-C7E4FE:hover {
  background-color: #DAD9D9;
  border: 1px solid #DAD9D9;
}
.student-categories-item h5 {
  font-size: 17px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 0;
}

.student-categories-inner-border {
  border-bottom: 1px solid #EAEAEA;
}

/*================================================
Student Reviews Area CSS
=================================================*/
.student-reviews-area.with-hidden {
  overflow: hidden;
}

.student-reviews-top-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.student-reviews-top-title h3 {
  margin-bottom: 0;
  font-size: 28px;
  font-weight: 600;
}
.student-reviews-top-title .link-btn {
  font-size: 15px;
  color: var(--optionalColor2);
  display: flex;
  align-items: center;
  margin-left: 25px;
}
.student-reviews-top-title .link-btn i {
  font-size: 20px;
}
.student-reviews-top-title .link-btn:hover {
  color: var(--mainColor);
}
.student-reviews-top-title.with-gap {
  margin-bottom: 50px;
}

.student-reviews-item {
  margin-top: 30px;
}
.student-reviews-item .reviews-image {
  border-radius: 20px;
  overflow: hidden;
}
.student-reviews-item .reviews-image a img {
  border-radius: 20px;
  transition: var(--transition);
}
.student-reviews-item .reviews-content {
  margin-top: 30px;
}
.student-reviews-item .reviews-content .category {
  display: inline-block;
  background-color: #C7E4FE;
  color: var(--optionalColor2);
  border-radius: 30px;
  padding: 5px 15px;
  margin-bottom: 15px;
}
.student-reviews-item .reviews-content h3 {
  font-size: 20.5px;
  margin-bottom: 15px;
  line-height: 1.5;
}
.student-reviews-item .reviews-content h3 a {
  display: inline-block;
}
.student-reviews-item .reviews-content .meta {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.student-reviews-item .reviews-content .meta li {
  display: inline-block;
  margin-right: 15px;
  position: relative;
  padding-left: 18px;
}
.student-reviews-item .reviews-content .meta li i {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.student-reviews-item .reviews-content .meta li:last-child {
  margin-right: 0;
}
.student-reviews-item:hover .reviews-image a img {
  transform: scale(1.1);
}

.student-reviews-sidebar {
  background-color: var(--whiteColor);
  border-radius: 20px;
  padding: 30px;
  position: sticky;
  top: 120px;
}
.student-reviews-sidebar .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
}
.student-reviews-sidebar .top h3 {
  font-size: 20px;
  margin-bottom: 0;
}
.student-reviews-sidebar .top span {
  font-size: 15px;
  margin-left: 20px;
}
.student-reviews-sidebar .reviews-items .item {
  position: relative;
  padding-left: 45px;
  margin-bottom: 30px;
}
.student-reviews-sidebar .reviews-items .item .number {
  color: #DAD9D9;
  font-size: 40px;
  font-style: italic;
  font-weight: 500;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0;
}
.student-reviews-sidebar .reviews-items .item .content .category {
  display: inline-block;
  background-color: #F3E8DE;
  color: var(--optionalColor2);
  border-radius: 30px;
  padding: 5px 15px;
  margin-bottom: 15px;
}
.student-reviews-sidebar .reviews-items .item .content h3 {
  font-size: 20.5px;
  margin-bottom: 15px;
  line-height: 1.5;
}
.student-reviews-sidebar .reviews-items .item .content h3 a {
  display: inline-block;
}
.student-reviews-sidebar .reviews-items .item .content .meta {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.student-reviews-sidebar .reviews-items .item .content .meta li {
  display: inline-block;
  margin-right: 15px;
  position: relative;
  padding-left: 18px;
}
.student-reviews-sidebar .reviews-items .item .content .meta li i {
  position: absolute;
  left: 0;
  top: 3.5px;
}
.student-reviews-sidebar .reviews-items .item .content .meta li:last-child {
  margin-right: 0;
}
.student-reviews-sidebar .reviews-items .item:last-child {
  margin-bottom: 0;
}
.student-reviews-sidebar.black-wrap {
  background-color: var(--blackColor2);
}
.student-reviews-sidebar.black-wrap .top h3 {
  color: var(--whiteColor);
}
.student-reviews-sidebar.black-wrap .top span {
  color: #AAAAAA;
}
.student-reviews-sidebar.black-wrap .reviews-items .item .content h3 a {
  color: var(--whiteColor);
}
.student-reviews-sidebar.black-wrap .reviews-items .item .content h3 a:hover {
  color: var(--mainColor);
}
.student-reviews-sidebar.black-wrap .reviews-items .item .content .meta li {
  color: #AAAAAA;
}

.black-wrap .student-reviews-sidebar {
  background-color: var(--blackColor2);
}
.black-wrap .student-reviews-sidebar .top h3 {
  color: var(--whiteColor);
}
.black-wrap .student-reviews-sidebar .top span {
  color: #AAAAAA;
}
.black-wrap .student-reviews-sidebar .reviews-items .item .content h3 a {
  color: var(--whiteColor);
}
.black-wrap .student-reviews-sidebar .reviews-items .item .content h3 a:hover {
  color: var(--mainColor);
}
.black-wrap .student-reviews-sidebar .reviews-items .item .content .meta li {
  color: #AAAAAA;
}

.student-reviews-inner {
  border-radius: 20px;
  background: var(--whiteColor);
  padding: 55px;
}
.student-reviews-inner.black-wrap {
  background-color: var(--blackColor2);
}
.student-reviews-inner.black-wrap .student-reviews-top-title h3 {
  color: var(--whiteColor);
}
.student-reviews-inner.black-wrap .student-reviews-top-title .link-btn {
  color: #FCDA98;
}
.student-reviews-inner.black-wrap .student-reviews-top-title .link-btn:hover {
  color: var(--mainColor);
}
.student-reviews-inner.black-wrap .student-reviews-item .reviews-content h3 a {
  color: var(--whiteColor);
}
.student-reviews-inner.black-wrap .student-reviews-item .reviews-content h3 a:hover {
  color: var(--mainColor);
}
.student-reviews-inner.black-wrap .student-reviews-item .reviews-content .meta li {
  color: #AAAAAA;
}

.black-wrap .student-reviews-inner {
  background-color: var(--blackColor2);
}
.black-wrap .student-reviews-inner .student-reviews-top-title h3 {
  color: var(--whiteColor);
}
.black-wrap .student-reviews-inner .student-reviews-top-title .link-btn {
  color: #FCDA98;
}
.black-wrap .student-reviews-inner .student-reviews-top-title .link-btn:hover {
  color: var(--mainColor);
}
.black-wrap .student-reviews-inner .student-reviews-item .reviews-content h3 a {
  color: var(--whiteColor);
}
.black-wrap .student-reviews-inner .student-reviews-item .reviews-content h3 a:hover {
  color: var(--mainColor);
}
.black-wrap .student-reviews-inner .student-reviews-item .reviews-content .meta li {
  color: #AAAAAA;
}

.student-reviews-lists {
  margin-top: 30px;
}
.student-reviews-lists .list {
  border-bottom: 1px solid #DAD9D9;
  border-top: 1px solid #DAD9D9;
  padding: 25px 15px;
}
.student-reviews-lists .list .content .category {
  display: inline-block;
  background-color: #F3E8DE;
  color: var(--optionalColor2);
  border-radius: 30px;
  padding: 5px 15px;
  margin-bottom: 15px;
}
.student-reviews-lists .list .content h3 {
  font-size: 20.5px;
  margin-bottom: 15px;
  line-height: 1.5;
}
.student-reviews-lists .list .content h3 a {
  display: inline-block;
}
.student-reviews-lists .list .content .meta {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.student-reviews-lists .list .content .meta li {
  display: inline-block;
  margin-right: 15px;
  position: relative;
  padding-left: 18px;
  color: var(--optionalColor2);
}
.student-reviews-lists .list .content .meta li i {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.student-reviews-lists .list .content .meta li:last-child {
  margin-right: 0;
}
.student-reviews-lists .list .image {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 1;
  border-radius: 20px;
}
.student-reviews-lists .list .image .link-btn {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.student-reviews-lists .list.border-bottom-none {
  border-bottom: none;
}

/*================================================
Video Reviews Area CSS
=================================================*/
.video-reviews-inner {
  border-radius: 20px;
  background: var(--whiteColor);
  padding: 55px 55px 30px;
}
.video-reviews-inner.black-wrap {
  background-color: var(--blackColor2);
}
.video-reviews-inner.black-wrap .student-reviews-top-title h3 {
  color: var(--whiteColor);
}
.video-reviews-inner.black-wrap .student-reviews-top-title .link-btn {
  color: #FCDA98;
}
.video-reviews-inner.black-wrap .student-reviews-top-title .link-btn:hover {
  color: var(--mainColor);
}

.black-wrap .video-reviews-inner {
  background-color: var(--blackColor2);
}
.black-wrap .video-reviews-inner .student-reviews-top-title h3 {
  color: var(--whiteColor);
}
.black-wrap .video-reviews-inner .student-reviews-top-title .link-btn {
  color: #FCDA98;
}
.black-wrap .video-reviews-inner .student-reviews-top-title .link-btn:hover {
  color: var(--mainColor);
}

.video-reviews-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 25px;
  transition: var(--transition);
}
.video-reviews-item img {
  border-radius: 20px !important;
}
.video-reviews-item .content {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 30px 30px 30px 105px;
  z-index: 1;
}
.video-reviews-item .content .video-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 55px;
  width: 55px;
  background-color: #FCDA98;
  color: var(--blackColor2);
  border-radius: 50px;
  font-size: 40px;
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  transition: var(--transition);
}
.video-reviews-item .content h3 {
  font-size: 22.5px;
  margin-bottom: 0;
  line-height: 1.5;
}
.video-reviews-item .content h3 a {
  display: inline-block;
  color: var(--whiteColor);
}
.video-reviews-item .content .little-size {
  font-size: 18px;
}
.video-reviews-item .content .meta {
  padding-left: 0;
  list-style-type: none;
  margin-top: 15px;
  margin-bottom: 0;
}
.video-reviews-item .content .meta li {
  display: inline-block;
  margin-right: 15px;
  position: relative;
  padding-left: 18px;
  color: #FCDA98;
}
.video-reviews-item .content .meta li i {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.video-reviews-item .content .meta li:last-child {
  margin-right: 0;
}
.video-reviews-item::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  border-radius: 20px;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  transition: var(--transition);
}
.video-reviews-item:hover {
  transform: translateY(-5px);
}
.video-reviews-item:hover .content .video-btn {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}

/*================================================
Student Blog Area CSS
=================================================*/
.student-blog-card {
  margin-bottom: 30px;
  background-color: var(--whiteColor);
  border-radius: 20px;
  transition: var(--transition);
}
.student-blog-card .blog-image {
  border-radius: 20px 20px 0px 0px;
  overflow: hidden;
}
.student-blog-card .blog-image a img {
  border-radius: 20px 20px 0px 0px;
  transition: var(--transition);
}
.student-blog-card .blog-content {
  padding: 30px 40px;
}
.student-blog-card .blog-content .category {
  color: var(--optionalColor2);
  display: inline-block;
  margin-bottom: 15px;
}
.student-blog-card .blog-content h3 {
  font-size: 23.5px;
  margin-bottom: 25px;
  line-height: 1.5;
}
.student-blog-card .blog-content .blog-btn {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 15px;
  color: var(--blackColor2);
  transition: var(--transition);
}
.student-blog-card .blog-content .blog-btn img {
  max-width: 20px;
  margin-left: 8px;
}
.student-blog-card .blog-content .blog-btn:hover {
  letter-spacing: 1px;
}
.student-blog-card:hover {
  transform: translateY(-5px);
}
.student-blog-card:hover .blog-image a img {
  transform: scale(1.1);
}
.student-blog-card.bg-FAFAF8 {
  background-color: #FAFAF8;
}

.bg-FAFAF8 .student-blog-card {
  background-color: #FAFAF8;
}

/*================================================
Creative Tools Hub Banner Area CSS
=================================================*/
.creative-tools-hub-banner-area {
  padding-top: 40px;
  overflow: hidden;
}

.creative-tools-hub-banner-sidebar {
  max-width: 390px;
}
.creative-tools-hub-banner-sidebar .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}
.creative-tools-hub-banner-sidebar .top h3 {
  margin-bottom: 0;
  font-size: 20px;
}
.creative-tools-hub-banner-sidebar .top .link-btn {
  font-size: 15px;
  color: var(--optionalColor2);
  display: flex;
  align-items: center;
  margin-left: 25px;
}
.creative-tools-hub-banner-sidebar .top .link-btn i {
  font-size: 20px;
}
.creative-tools-hub-banner-sidebar .top .link-btn:hover {
  color: var(--mainColor);
}
.creative-tools-hub-banner-sidebar .reviews-items .item {
  position: relative;
  border-bottom: 1px solid #F3E8DE;
  margin-bottom: 22.5px;
  padding-left: 45px;
  padding-bottom: 22.5px;
}
.creative-tools-hub-banner-sidebar .reviews-items .item .number {
  color: #DAD9D9;
  font-size: 40px;
  font-style: italic;
  font-weight: 500;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0;
}
.creative-tools-hub-banner-sidebar .reviews-items .item .content .category {
  display: inline-block;
  background-color: #F3E8DE;
  color: var(--optionalColor2);
  border-radius: 30px;
  padding: 5px 15px;
  margin-bottom: 15px;
}
.creative-tools-hub-banner-sidebar .reviews-items .item .content h3 {
  font-size: 18.5px;
  margin-bottom: 15px;
  line-height: 1.5;
}
.creative-tools-hub-banner-sidebar .reviews-items .item .content h3 a {
  display: inline-block;
}
.creative-tools-hub-banner-sidebar .reviews-items .item .content .meta {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.creative-tools-hub-banner-sidebar .reviews-items .item .content .meta li {
  display: inline-block;
  margin-right: 15px;
  position: relative;
  padding-left: 18px;
}
.creative-tools-hub-banner-sidebar .reviews-items .item .content .meta li i {
  position: absolute;
  left: 0;
  top: 3.5px;
}
.creative-tools-hub-banner-sidebar .reviews-items .item .content .meta li:last-child {
  margin-right: 0;
}
.creative-tools-hub-banner-sidebar .reviews-items .item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.creative-tools-hub-banner-inner {
  border-radius: 20px;
  background-color: #FAFAF8;
  padding: 58px 50px;
}

.creative-tools-hub-banner-item a img {
  width: auto;
  border-radius: 15px;
}
.creative-tools-hub-banner-item .content {
  margin-top: 35px;
}
.creative-tools-hub-banner-item .content .category {
  display: inline-block;
  background-color: #E7F5F7;
  color: var(--optionalColor2);
  border-radius: 30px;
  padding: 5px 15px;
  margin-bottom: 15px;
}
.creative-tools-hub-banner-item .content h3 {
  font-size: 35.5px;
  margin-bottom: 12px;
  line-height: 1.3;
}
.creative-tools-hub-banner-item .content h3 a {
  display: inline-block;
}
.creative-tools-hub-banner-item .content .meta {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.creative-tools-hub-banner-item .content .meta li {
  display: inline-block;
  margin-right: 15px;
  position: relative;
  padding-left: 18px;
}
.creative-tools-hub-banner-item .content .meta li i {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.creative-tools-hub-banner-item .content .meta li:last-child {
  margin-right: 0;
}
.creative-tools-hub-banner-item .content .extra-top {
  max-width: 530px;
  margin-top: 35px;
  margin-bottom: 0;
}
.creative-tools-hub-banner-item .content .info-btn {
  margin-top: 50px;
}
.creative-tools-hub-banner-item .content .info-btn .view-details-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #FCDA98;
  color: var(--blackColor2);
  padding: 14.5px 30px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
}
.creative-tools-hub-banner-item .content .info-btn .view-details-btn img {
  margin-left: 12px;
  max-width: 20px;
}
.creative-tools-hub-banner-item .content .info-btn .view-details-btn:hover {
  background-color: #E7F5F7;
}

.creative-tools-hub-banner-slides.owl-theme .owl-dots {
  display: flex;
  justify-content: end;
  position: absolute;
  right: 0;
  bottom: 10px;
}
.creative-tools-hub-banner-slides.owl-theme .owl-dots .owl-dot span {
  width: 15px;
  height: 15px;
  margin: 0 5px;
  border-radius: 50%;
  position: relative;
  transition: var(--transition);
  background: #DAD9D9;
  opacity: 1;
}
.creative-tools-hub-banner-slides.owl-theme .owl-dots .owl-dot:hover span, .creative-tools-hub-banner-slides.owl-theme .owl-dots .owl-dot.active span {
  background: #FCDA98;
}
.creative-tools-hub-banner-slides.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 0;
}

/* End "Student Tech Reviews Demo" & "Creative Tools Hub Demo" CSS
======================================================================*/
.navbar-area.student-tech-reviews-navbar {
  background-color: transparent;
}

.home-with-public-sans-fonts .single-footer-widget .download-app .btn-box .apple-store-btn, .home-with-public-sans-fonts .single-footer-widget .download-app .btn-box .play-store-btn {
  color: var(--whiteColor);
  background-color: var(--mainColor);
}
.home-with-public-sans-fonts .single-footer-widget .download-app .btn-box .apple-store-btn span, .home-with-public-sans-fonts .single-footer-widget .download-app .btn-box .play-store-btn span {
  color: var(--whiteColor);
}
.home-with-public-sans-fonts .footer-bottom-area .socials-links li span {
  margin-right: 15px;
  font-size: 15px;
  color: #9FA7BD;
  font-weight: 400;
}
.home-with-public-sans-fonts .copyright-area .col-lg-6:last-child {
  display: none;
}
.home-with-public-sans-fonts .copyright-area .col-lg-6:first-child {
  text-align: center;
  margin: 0 auto;
}

.social.single-social {
  padding-left: 0;
  list-style-type: none;
  text-align: right;
  margin-bottom: 0;
}
.social.single-social li {
  display: inline-block;
}
.social.single-social li span {
  display: inline-block;
  margin-right: 3px;
  font-weight: 600;
  position: relative;
  top: -1px;
}
.social.single-social li a {
  display: block;
  width: 32px;
  height: 32px;
  line-height: 33px;
  border-radius: 50%;
  color: var(--whiteColor);
  border: 1px solid;
  text-align: center;
  font-size: 17px;
  margin-left: 2px;
  padding: 0;
}
.social.single-social li a:hover, .social.single-social li a:focus {
  background-color: transparent;
}
.social.single-social li a.facebook {
  background-color: #3b5998;
  border-color: #3b5998;
  color: var(--whiteColor);
}
.social.single-social li a.facebook:hover, .social.single-social li a.facebook:focus {
  color: #3b5998 !important;
  background-color: transparent;
}
.social.single-social li a.twitter {
  background-color: #1da1f2;
  border-color: #1da1f2;
  color: var(--whiteColor);
}
.social.single-social li a.twitter:hover, .social.single-social li a.twitter:focus {
  color: #1da1f2 !important;
  background-color: transparent;
}
.social.single-social li a.linkedin {
  background-color: #007bb5;
  border-color: #007bb5;
  color: var(--whiteColor);
}
.social.single-social li a.linkedin:hover, .social.single-social li a.linkedin:focus {
  color: #007bb5 !important;
  background-color: transparent;
}
.social.single-social li a.instagram {
  background-color: #c13584;
  border-color: #c13584;
  color: var(--whiteColor);
}
.social.single-social li a.instagram:hover, .social.single-social li a.instagram:focus {
  color: #c13584 !important;
  background-color: transparent;
}
.social.single-social li a.whatsapp {
  background-color: #44c153;
  border-color: #44c153;
  color: #ffffff;
}
.social.single-social li a.whatsapp:hover, .social.single-social li a.whatsapp:focus {
  color: #44c153 !important;
  background-color: transparent;
}
.social.single-social li a i {
  font-style: normal;
}

.nav-hide {
  display: none;
}

/* Start "Product Review Demo - 9", "Product Review Demo - 10" & "Product Review Demo - 11" CSS
=================================================================================================*/
.product-review-home {
  background-color: #F4F3F3;
  font-family: var(--public-sans-fontFamily);
  color: var(--optionalColor2);
}
.product-review-home .h1, .product-review-home .h2, .product-review-home .h3, .product-review-home .h4, .product-review-home .h5, .product-review-home .h6, .product-review-home h1, .product-review-home h2, .product-review-home h3, .product-review-home h4, .product-review-home h5, .product-review-home h6 {
  font-weight: 500;
  color: var(--blackColor2);
}
.product-review-home .h1 a, .product-review-home .h2 a, .product-review-home .h3 a, .product-review-home .h4 a, .product-review-home .h5 a, .product-review-home .h6 a, .product-review-home h1 a, .product-review-home h2 a, .product-review-home h3 a, .product-review-home h4 a, .product-review-home h5 a, .product-review-home h6 a {
  color: var(--blackColor2);
}
.product-review-home .h1 a:hover, .product-review-home .h2 a:hover, .product-review-home .h3 a:hover, .product-review-home .h4 a:hover, .product-review-home .h5 a:hover, .product-review-home .h6 a:hover, .product-review-home h1 a:hover, .product-review-home h2 a:hover, .product-review-home h3 a:hover, .product-review-home h4 a:hover, .product-review-home h5 a:hover, .product-review-home h6 a:hover {
  color: var(--mainColor);
}
.product-review-home p {
  color: var(--optionalColor2);
}
.product-review-home .container {
  max-width: 1320px;
}

.section-title-wrap {
  margin-bottom: 35px;
}
.section-title-wrap .left {
  display: flex;
  gap: 15px;
  align-items: center;
}
.section-title-wrap .left h2 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 0;
}
.section-title-wrap .right {
  text-align: end;
}
.section-title-wrap .right a {
  display: inline-flex;
  padding: 7px 12px;
  justify-content: center;
  gap: 10px;
  align-items: center;
  background-color: var(--whiteColor);
  color: var(--blackColor2);
  border-radius: 5px;
}
.section-title-wrap .right a i {
  font-size: 17px;
}
.section-title-wrap .right a:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}

.product-review-navbar {
  background-color: transparent !important;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 999;
}
.product-review-navbar.hide-wp-nav {
  top: 33px;
}
.product-review-navbar.is-sticky .puva-nav {
  padding: 10px 0;
}
.product-review-navbar.is-sticky .puva-nav .navbar {
  border-radius: 0;
  background: transparent;
  padding: 0;
}
.product-review-navbar .puva-nav {
  padding: 50px 0 0;
}
.product-review-navbar .puva-nav .navbar {
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.95);
  padding: 10px 20px 10px 20px;
}
.product-review-navbar .puva-nav .navbar .navbar-brand {
  margin-right: 80px;
}
.product-review-navbar .puva-nav .navbar .navbar-nav {
  margin: auto;
}
.product-review-navbar .puva-nav .navbar .navbar-nav .nav-item a {
  font-weight: 600;
  padding-top: 18px;
  padding-bottom: 18px;
}
.product-review-navbar .puva-nav .navbar .navbar-nav .nav-item .dropdown-menu {
  top: 57px;
}
.product-review-navbar .puva-nav .navbar .navbar-nav .nav-item .dropdown-toggle::before {
  top: 18px;
}
.product-review-navbar .puva-nav .navbar .others-option {
  margin-left: 100px;
}
.product-review-navbar .puva-nav .navbar .others-option .option-item .search-box {
  color: var(--blackColor2);
  margin-left: 0;
}
.product-review-navbar .puva-nav .navbar .others-option .option-item .search-box:hover {
  color: var(--mainColor);
}
.product-review-navbar .puva-nav .navbar .others-option .option-item .default-btn {
  padding-left: 30px;
  padding-right: 60px;
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: var(--blackColor2);
  color: var(--whiteColor);
  border: 1px solid var(--blackColor2);
  border-radius: 30px;
}
.product-review-navbar .puva-nav .navbar .others-option .option-item .default-btn:hover {
  background-color: var(--mainColor);
  border: 1px solid var(--mainColor);
}
.product-review-navbar .puva-nav .navbar .others-option .option-item .default-btn i {
  right: 30px;
  left: auto;
  font-size: 14px;
  border: 1px solid;
  border-radius: 100%;
}
.product-review-navbar.wrap2 .puva-nav .navbar .navbar-brand {
  margin-right: 30px;
}
.product-review-navbar.wrap2 .puva-nav .navbar .navbar-nav {
  margin-left: auto;
  margin-right: 0;
}
.product-review-navbar.wrap2 .puva-nav .navbar .others-option {
  margin-left: 50px;
}
.product-review-navbar.wrap3 .puva-nav .navbar .navbar-nav {
  margin-left: auto;
  margin-right: 0;
}
.product-review-navbar .others-option-for-responsive .container .container {
  max-width: 290px;
}
.product-review-navbar .others-option-for-responsive .option-inner .others-option.d-flex {
  display: block !important;
}
.product-review-navbar .others-option-for-responsive .option-inner .others-option .option-item .search-box {
  color: var(--blackColor2);
}
.product-review-navbar .others-option-for-responsive .option-inner .others-option .option-item .search-box:hover {
  color: var(--mainColor);
}
.product-review-navbar .others-option-for-responsive .option-inner .others-option .option-item .default-btn {
  padding-left: 30px;
  padding-right: 60px;
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: var(--blackColor2);
  color: var(--whiteColor);
  border: 1px solid var(--blackColor2);
  border-radius: 30px;
}
.product-review-navbar .others-option-for-responsive .option-inner .others-option .option-item .default-btn:hover {
  background-color: var(--mainColor);
  border: 1px solid var(--mainColor);
}
.product-review-navbar .others-option-for-responsive .option-inner .others-option .option-item .default-btn i {
  right: 30px;
  left: auto;
  font-size: 18px;
}

/*================================================
Product Review Banner Area CSS
=================================================*/
.product-review-banner-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.product-review-banner-area .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
.product-review-banner-area .container {
  max-width: 1320px;
}
.product-review-banner-area.wrap-bg2 {
  background: linear-gradient(286deg, #FFE8BB 0.4%, #ECF6FF 100%);
  padding-top: 225px;
  padding-bottom: 100px;
}
.product-review-banner-area.wrap-bg3 {
  background: linear-gradient(0deg, #F4F3F3 0%, #D3CEFF 100%);
  padding-top: 190px;
  padding-bottom: 50px;
}
.product-review-banner-area.wrap-bg3 .container-fluid {
  padding-left: 20px;
  padding-right: 20px;
}

.product-review-banner-inner {
  position: relative;
}

.product-review-banner-item {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 750px;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.product-review-banner-item.active {
  display: block;
  opacity: 1;
}

.product-review-banner-tabs {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 20px;
}
.product-review-banner-tabs .puva-banner-tab {
  position: relative;
  padding-top: 100%;
  padding-bottom: 50px;
}
.product-review-banner-tabs .puva-banner-tab .category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3.5px 12px;
  background-color: #F3E8DE;
  color: var(--blackColor2);
  border-radius: 50px;
  margin-bottom: 17px;
}
.product-review-banner-tabs .puva-banner-tab .category.wrap2 {
  background-color: #C3BCFF;
}
.product-review-banner-tabs .puva-banner-tab .category.wrap3 {
  background-color: #72CCFF;
}
.product-review-banner-tabs .puva-banner-tab .category.wrap4 {
  background-color: #FFC1C4;
}
.product-review-banner-tabs .puva-banner-tab .category.wrap5 {
  background-color: #C0EFFF;
}
.product-review-banner-tabs .puva-banner-tab h3 {
  font-size: 16px;
  margin-bottom: 12px;
  color: var(--whiteColor);
  line-height: 1.5;
}
.product-review-banner-tabs .puva-banner-tab h3 a {
  color: var(--whiteColor);
  position: relative;
  display: inline;
  transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  padding: 0.1% 0px;
  background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
  background-size: 0px 2px;
  background-position: 0px 95%;
  background-repeat: no-repeat;
}
.product-review-banner-tabs .puva-banner-tab .meta {
  display: flex;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.product-review-banner-tabs .puva-banner-tab .meta li {
  list-style-type: none;
  font-size: 14px;
  color: #D4D4D4;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-right: 30px;
}
.product-review-banner-tabs .puva-banner-tab .meta li:last-child {
  margin-right: 0;
}
.product-review-banner-tabs .puva-banner-tab .bottom {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-top: 15px;
  margin-top: 15px;
}
.product-review-banner-tabs .puva-banner-tab .bottom .user {
  display: flex;
  gap: 10px;
  align-items: center;
}
.product-review-banner-tabs .puva-banner-tab .bottom .user img {
  max-width: 25px;
  border-radius: 100%;
}
.product-review-banner-tabs .puva-banner-tab .bottom .user span {
  color: #D4D4D4;
}
.product-review-banner-tabs .puva-banner-tab .bottom .user span a {
  color: #D4D4D4;
}
.product-review-banner-tabs .puva-banner-tab .bottom .user span a:hover {
  color: var(--mainColor);
}
.product-review-banner-tabs .puva-banner-tab .bottom .save {
  background-color: transparent;
  border: none;
  padding: 0;
  display: flex;
  gap: 7px;
  align-items: center;
  color: #D4D4D4;
}
.product-review-banner-tabs .puva-banner-tab .bottom .save i {
  font-size: 15px;
}
.product-review-banner-tabs .puva-banner-tab::before {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  width: 1px;
  height: 1350px;
  background: rgba(255, 255, 255, 0.25);
}
.product-review-banner-tabs .puva-banner-tab:last-child::before {
  display: none;
}
.product-review-banner-tabs .puva-banner-tab:hover h3 a, .product-review-banner-tabs .puva-banner-tab.active h3 a {
  color: var(--whiteColor);
  background-size: 100% 2px;
}

.product-review-banner-wrap-tab {
  max-width: 480px;
}
.product-review-banner-wrap-tab .puva-banner-tab {
  background-color: transparent;
  padding: 35px;
  border-radius: 7px;
}
.product-review-banner-wrap-tab .puva-banner-tab .category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3.5px 12px;
  background-color: #F3E8DE;
  color: var(--blackColor2);
  border-radius: 50px;
  margin-bottom: 17px;
}
.product-review-banner-wrap-tab .puva-banner-tab .category.wrap2 {
  background-color: #C3BCFF;
}
.product-review-banner-wrap-tab .puva-banner-tab .category.wrap3 {
  background-color: #72CCFF;
}
.product-review-banner-wrap-tab .puva-banner-tab h3 {
  font-size: 23.5px;
  margin-bottom: 12px;
  line-height: 1.5;
}
.product-review-banner-wrap-tab .puva-banner-tab h3 a {
  position: relative;
  display: inline;
  transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  padding: 0.1% 0px;
  background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
  background-size: 0px 2px;
  background-position: 0px 95%;
  background-repeat: no-repeat;
}
.product-review-banner-wrap-tab .puva-banner-tab .meta {
  display: flex;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.product-review-banner-wrap-tab .puva-banner-tab .meta li {
  list-style-type: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-right: 30px;
}
.product-review-banner-wrap-tab .puva-banner-tab .meta li:last-child {
  margin-right: 0;
}
.product-review-banner-wrap-tab .puva-banner-tab .bottom {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #DAD9D9;
  padding-top: 15px;
  margin-top: 15px;
}
.product-review-banner-wrap-tab .puva-banner-tab .bottom .user {
  display: flex;
  gap: 10px;
  align-items: center;
}
.product-review-banner-wrap-tab .puva-banner-tab .bottom .user img {
  max-width: 25px;
  border-radius: 100%;
}
.product-review-banner-wrap-tab .puva-banner-tab .bottom .user span a:hover {
  color: var(--mainColor);
}
.product-review-banner-wrap-tab .puva-banner-tab .bottom .save {
  background-color: transparent;
  border: none;
  padding: 0;
  display: flex;
  gap: 7px;
  align-items: center;
  color: var(--optionalColor2);
}
.product-review-banner-wrap-tab .puva-banner-tab .bottom .save i {
  font-size: 15px;
}
.product-review-banner-wrap-tab .puva-banner-tab:hover, .product-review-banner-wrap-tab .puva-banner-tab.active {
  background-color: var(--whiteColor);
}
.product-review-banner-wrap-tab .puva-banner-tab:hover h3 a, .product-review-banner-wrap-tab .puva-banner-tab.active h3 a {
  background-size: 100% 2px;
}

.product-review-banner-wrap-item {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  border-radius: 7px;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  position: relative;
}
.product-review-banner-wrap-item.active {
  display: block;
  opacity: 1;
}
.product-review-banner-wrap-item .link-btn {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.product-review-banner-post-items .item {
  margin-bottom: 45px;
}
.product-review-banner-post-items .item .image {
  border-radius: 7px;
  overflow: hidden;
}
.product-review-banner-post-items .item .image a img {
  border-radius: 7px;
  transition: var(--transition);
}
.product-review-banner-post-items .item .content {
  padding-top: 25px;
}
.product-review-banner-post-items .item .content .category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3.5px 12px;
  background-color: #C3BCFF;
  color: var(--blackColor2);
  border-radius: 50px;
  margin-bottom: 15px;
}
.product-review-banner-post-items .item .content .category.wrap2 {
  background-color: #72CCFF;
}
.product-review-banner-post-items .item .content .category.wrap4 {
  background-color: #FFC1C4;
}
.product-review-banner-post-items .item .content .category.wrap5 {
  background-color: #C0EFFF;
}
.product-review-banner-post-items .item .content h3 {
  font-size: 23.5px;
  margin-bottom: 12px;
  line-height: 1.5;
}
.product-review-banner-post-items .item .content h3 a {
  position: relative;
  display: inline;
  transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  padding: 0.1% 0px;
  background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
  background-size: 0px 2px;
  background-position: 0px 95%;
  background-repeat: no-repeat;
}
.product-review-banner-post-items .item .content .meta {
  display: flex;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.product-review-banner-post-items .item .content .meta li {
  list-style-type: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-right: 30px;
}
.product-review-banner-post-items .item .content .meta li:last-child {
  margin-right: 0;
}
.product-review-banner-post-items .item .content .bottom {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #D4D4D4;
  padding-top: 15px;
  margin-top: 15px;
}
.product-review-banner-post-items .item .content .bottom .user {
  display: flex;
  gap: 10px;
  align-items: center;
}
.product-review-banner-post-items .item .content .bottom .user img {
  max-width: 25px;
}
.product-review-banner-post-items .item .content .bottom .user span a {
  color: var(--blackColor2);
}
.product-review-banner-post-items .item .content .bottom .user span a:hover {
  color: var(--mainColor);
}
.product-review-banner-post-items .item .content .bottom .save {
  background-color: transparent;
  border: none;
  padding: 0;
  display: flex;
  gap: 7px;
  align-items: center;
  color: var(--optionalColor2);
}
.product-review-banner-post-items .item .content .bottom .save i {
  font-size: 15px;
}
.product-review-banner-post-items .item:last-child {
  margin-bottom: 0;
}
.product-review-banner-post-items .item:hover .image a img {
  transform: scale(1.1);
}
.product-review-banner-post-items .item:hover .content h3 a {
  background-size: 100% 2px;
}

.product-review-banner-middle-post {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  border-radius: 7px;
  overflow: hidden;
  position: relative;
}
.product-review-banner-middle-post .link-btn {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.product-review-banner-middle-post .content {
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.37);
  -webkit-backdrop-filter: blur(8.6999998093px);
          backdrop-filter: blur(8.6999998093px);
  padding: 35px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 580px;
  margin: 0 auto 65px;
  transition: var(--transition);
}
.product-review-banner-middle-post .content .category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3.5px 12px;
  background-color: #F3E8DE;
  color: var(--blackColor2);
  border-radius: 50px;
  margin-bottom: 17px;
}
.product-review-banner-middle-post .content h3 {
  font-size: 25.5px;
  margin-bottom: 12px;
  line-height: 1.5;
}
.product-review-banner-middle-post .content h3 a {
  position: relative;
  display: inline;
  transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  padding: 0.1% 0px;
  background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
  background-size: 0px 2px;
  background-position: 0px 95%;
  background-repeat: no-repeat;
}
.product-review-banner-middle-post .content .meta {
  display: flex;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.product-review-banner-middle-post .content .meta li {
  list-style-type: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-right: 30px;
}
.product-review-banner-middle-post .content .meta li:last-child {
  margin-right: 0;
}
.product-review-banner-middle-post .content .bottom {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #DAD9D9;
  padding-top: 15px;
  margin-top: 15px;
}
.product-review-banner-middle-post .content .bottom .user {
  display: flex;
  gap: 10px;
  align-items: center;
}
.product-review-banner-middle-post .content .bottom .user img {
  max-width: 25px;
  border-radius: 100%;
}
.product-review-banner-middle-post .content .bottom .user span a:hover {
  color: var(--mainColor);
}
.product-review-banner-middle-post .content .bottom .save {
  background-color: transparent;
  border: none;
  padding: 0;
  display: flex;
  gap: 7px;
  align-items: center;
  color: var(--optionalColor2);
}
.product-review-banner-middle-post .content .bottom .save i {
  font-size: 15px;
}
.product-review-banner-middle-post .content:hover, .product-review-banner-middle-post .content.active {
  background-color: var(--whiteColor);
}
.product-review-banner-middle-post .content:hover h3 a, .product-review-banner-middle-post .content.active h3 a {
  background-size: 100% 2px;
}

/*================================================
PR Top Products Review Area CSS
=================================================*/
.pr-top-products-review-area {
  overflow: hidden;
}

.pr-top-products-review-card {
  background-color: var(--mainColor);
  overflow: hidden;
  border-radius: 7px;
}
.pr-top-products-review-card .image {
  overflow: hidden;
  border-radius: 7px 7px 0px 0px;
}
.pr-top-products-review-card .image a img {
  border-radius: 7px 7px 0px 0px;
  transition: var(--transition);
}
.pr-top-products-review-card .content {
  padding: 30px 35px;
}
.pr-top-products-review-card .content .category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3.5px 12px;
  background-color: #C3BCFF;
  color: var(--blackColor2);
  border-radius: 50px;
  margin-bottom: 17px;
}
.pr-top-products-review-card .content h3 {
  font-size: 23.5px;
  margin-bottom: 12px;
  color: var(--whiteColor);
  line-height: 1.5;
}
.pr-top-products-review-card .content h3 a {
  color: var(--whiteColor);
  position: relative;
  display: inline;
  transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  padding: 0.1% 0px;
  background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
  background-size: 0px 2px;
  background-position: 0px 95%;
  background-repeat: no-repeat;
}
.pr-top-products-review-card .content .meta {
  display: flex;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.pr-top-products-review-card .content .meta li {
  list-style-type: none;
  font-size: 14px;
  color: #D4D4D4;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-right: 30px;
}
.pr-top-products-review-card .content .meta li:last-child {
  margin-right: 0;
}
.pr-top-products-review-card .content .bottom {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-top: 15px;
  margin-top: 15px;
}
.pr-top-products-review-card .content .bottom .user {
  display: flex;
  gap: 10px;
  align-items: center;
}
.pr-top-products-review-card .content .bottom .user img {
  max-width: 25px;
  border-radius: 100%;
}
.pr-top-products-review-card .content .bottom .user span {
  color: #D4D4D4;
}
.pr-top-products-review-card .content .bottom .user span a {
  color: #D4D4D4;
}
.pr-top-products-review-card .content .bottom .user span a:hover {
  color: var(--blackColor2);
}
.pr-top-products-review-card .content .bottom .save {
  background-color: transparent;
  border: none;
  padding: 0;
  display: flex;
  gap: 7px;
  align-items: center;
  color: #D4D4D4;
}
.pr-top-products-review-card .content .bottom .save i {
  font-size: 15px;
}
.pr-top-products-review-card .content:hover h3 a {
  color: var(--whiteColor);
  background-size: 100% 2px;
}
.pr-top-products-review-card:hover .image a img {
  transform: scale(1.1);
}

.pr-top-products-review-items {
  border-right: 1px solid #D4D4D4;
  padding-right: 45px;
}
.pr-top-products-review-items .item {
  margin-bottom: 45px;
}
.pr-top-products-review-items .item .category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3.5px 12px;
  background-color: #72CCFF;
  color: var(--blackColor2);
  border-radius: 50px;
  margin-bottom: 15px;
}
.pr-top-products-review-items .item .category.wrap2 {
  background-color: #FFC1C4;
}
.pr-top-products-review-items .item .category.wrap3 {
  background-color: #C3BCFF;
}
.pr-top-products-review-items .item .category.wrap4 {
  background-color: #C0EFFF;
}
.pr-top-products-review-items .item h3 {
  font-size: 16px;
  margin-bottom: 12px;
  line-height: 1.5;
}
.pr-top-products-review-items .item h3 a {
  position: relative;
  display: inline;
  transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  padding: 0.1% 0px;
  background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
  background-size: 0px 2px;
  background-position: 0px 95%;
  background-repeat: no-repeat;
}
.pr-top-products-review-items .item .meta {
  display: flex;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.pr-top-products-review-items .item .meta li {
  list-style-type: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-right: 30px;
}
.pr-top-products-review-items .item .meta li:last-child {
  margin-right: 0;
}
.pr-top-products-review-items .item .bottom {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #D4D4D4;
  padding-top: 15px;
  margin-top: 15px;
}
.pr-top-products-review-items .item .bottom .user {
  display: flex;
  gap: 10px;
  align-items: center;
}
.pr-top-products-review-items .item .bottom .user img {
  max-width: 25px;
  border-radius: 100%;
}
.pr-top-products-review-items .item .bottom .user span a {
  color: var(--blackColor2);
}
.pr-top-products-review-items .item .bottom .user span a:hover {
  color: var(--mainColor);
}
.pr-top-products-review-items .item .bottom .save {
  background-color: transparent;
  border: none;
  padding: 0;
  display: flex;
  gap: 7px;
  align-items: center;
  color: var(--optionalColor2);
}
.pr-top-products-review-items .item .bottom .save i {
  font-size: 15px;
}
.pr-top-products-review-items .item:hover h3 a {
  background-size: 100% 2px;
}
.pr-top-products-review-items .item:last-child {
  margin-bottom: 0;
}
.pr-top-products-review-items.right-wrap {
  border-right: none;
  padding-left: 45px;
  padding-right: 0;
}

/*================================================
PR Trending Products Area CSS
=================================================*/
.pr-trending-products-area {
  overflow: hidden;
}

.pr-trending-products-card {
  background-color: var(--whiteColor);
  padding: 20px;
  border-radius: 7px;
}
.pr-trending-products-card .image {
  border-radius: 7px;
  overflow: hidden;
}
.pr-trending-products-card .image a img {
  border-radius: 7px;
  transition: var(--transition);
}
.pr-trending-products-card .content {
  padding-top: 20px;
}
.pr-trending-products-card .content .category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3.5px 12px;
  background-color: #C3BCFF;
  color: var(--blackColor2);
  border-radius: 50px;
  margin-bottom: 15px;
}
.pr-trending-products-card .content .category.wrap2 {
  background-color: #72CCFF;
}
.pr-trending-products-card .content .category.wrap3 {
  background-color: #FFC1C4;
}
.pr-trending-products-card .content .category.wrap4 {
  background-color: #C0EFFF;
}
.pr-trending-products-card .content h3 {
  font-size: 16px;
  margin-bottom: 12px;
  line-height: 1.5;
}
.pr-trending-products-card .content h3 a {
  position: relative;
  display: inline;
  transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  padding: 0.1% 0px;
  background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
  background-size: 0px 2px;
  background-position: 0px 95%;
  background-repeat: no-repeat;
}
.pr-trending-products-card .content .meta {
  display: flex;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.pr-trending-products-card .content .meta li {
  list-style-type: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-right: 30px;
}
.pr-trending-products-card .content .meta li:last-child {
  margin-right: 0;
}
.pr-trending-products-card .content .bottom {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #D4D4D4;
  padding-top: 15px;
  margin-top: 15px;
}
.pr-trending-products-card .content .bottom .user {
  display: flex;
  gap: 10px;
  align-items: center;
}
.pr-trending-products-card .content .bottom .user img {
  max-width: 25px;
  border-radius: 100%;
}
.pr-trending-products-card .content .bottom .user span a {
  color: var(--blackColor2);
}
.pr-trending-products-card .content .bottom .user span a:hover {
  color: var(--mainColor);
}
.pr-trending-products-card .content .bottom .save {
  background-color: transparent;
  border: none;
  padding: 0;
  display: flex;
  gap: 7px;
  align-items: center;
  color: var(--optionalColor2);
}
.pr-trending-products-card .content .bottom .save i {
  font-size: 15px;
}
.pr-trending-products-card:hover .image a img {
  transform: scale(1.1);
}
.pr-trending-products-card:hover .content h3 a {
  background-size: 100% 2px;
}

/*================================================
PR Recent Reviews Area CSS
=================================================*/
.pr-recent-reviews-items .item {
  margin-bottom: 30px;
}
.pr-recent-reviews-items .item .image {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 1;
  border-radius: 7px;
}
.pr-recent-reviews-items .item .image .link-btn {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.pr-recent-reviews-items .item .content {
  padding: 25px 0 25px 10px;
}
.pr-recent-reviews-items .item .content .category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3.5px 12px;
  background-color: #C3BCFF;
  color: var(--blackColor2);
  border-radius: 50px;
  margin-bottom: 15px;
}
.pr-recent-reviews-items .item .content .category.wrap2 {
  background-color: #72CCFF;
}
.pr-recent-reviews-items .item .content .category.wrap3 {
  background-color: #FCDA98;
}
.pr-recent-reviews-items .item .content .category.wrap4 {
  background-color: #C0EFFF;
}
.pr-recent-reviews-items .item .content .category.wrap5 {
  background-color: #FFD2D2;
}
.pr-recent-reviews-items .item .content h3 {
  font-size: 23.5px;
  margin-bottom: 12px;
  line-height: 1.5;
}
.pr-recent-reviews-items .item .content h3 a {
  position: relative;
  display: inline;
  transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  padding: 0.1% 0px;
  background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
  background-size: 0px 2px;
  background-position: 0px 95%;
  background-repeat: no-repeat;
}
.pr-recent-reviews-items .item .content .meta {
  display: flex;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.pr-recent-reviews-items .item .content .meta li {
  list-style-type: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-right: 30px;
}
.pr-recent-reviews-items .item .content .meta li span b {
  color: var(--blackColor2);
  font-weight: 500;
}
.pr-recent-reviews-items .item .content .meta li:last-child {
  margin-right: 0;
}
.pr-recent-reviews-items .item .content .bottom {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #D4D4D4;
  padding-top: 15px;
  margin-top: 15px;
}
.pr-recent-reviews-items .item .content .bottom .user {
  display: flex;
  gap: 10px;
  align-items: center;
}
.pr-recent-reviews-items .item .content .bottom .user img {
  max-width: 25px;
  border-radius: 100%;
}
.pr-recent-reviews-items .item .content .bottom .user span a {
  color: var(--blackColor2);
}
.pr-recent-reviews-items .item .content .bottom .user span a:hover {
  color: var(--mainColor);
}
.pr-recent-reviews-items .item .content .bottom .save {
  background-color: transparent;
  border: none;
  padding: 0;
  display: flex;
  gap: 7px;
  align-items: center;
  color: var(--optionalColor2);
}
.pr-recent-reviews-items .item .content .bottom .save i {
  font-size: 15px;
}
.pr-recent-reviews-items .item:hover .content h3 a {
  background-size: 100% 2px;
}
.pr-recent-reviews-items .item:last-child {
  margin-bottom: 0;
}

.pr-recent-reviews-sidebar {
  position: sticky;
  top: 120px;
  border-left: 1px solid #D4D4D4;
  padding-left: 20px;
}
.pr-recent-reviews-sidebar .sidebar-item {
  margin-bottom: 40px;
}
.pr-recent-reviews-sidebar .sidebar-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}
.pr-recent-reviews-sidebar .sidebar-item .product-items .item {
  border-bottom: 1px solid #D4D4D4;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.pr-recent-reviews-sidebar .sidebar-item .product-items .item .image {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 1;
  border-radius: 7px;
}
.pr-recent-reviews-sidebar .sidebar-item .product-items .item .image .link-btn {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.pr-recent-reviews-sidebar .sidebar-item .product-items .item .content .category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3.5px 12px;
  background-color: #FFC1C4;
  color: var(--blackColor2);
  border-radius: 50px;
  margin-bottom: 15px;
}
.pr-recent-reviews-sidebar .sidebar-item .product-items .item .content .category.wrap2 {
  background-color: #FCDA98;
}
.pr-recent-reviews-sidebar .sidebar-item .product-items .item .content .category.wrap3 {
  background-color: #C0EFFF;
}
.pr-recent-reviews-sidebar .sidebar-item .product-items .item .content .category.wrap4 {
  background-color: #C3BCFF;
}
.pr-recent-reviews-sidebar .sidebar-item .product-items .item .content h3 {
  font-size: 16px;
  margin-bottom: 12px;
  line-height: 1.5;
}
.pr-recent-reviews-sidebar .sidebar-item .product-items .item .content h3 a {
  position: relative;
  display: inline;
  transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  padding: 0.1% 0px;
  background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
  background-size: 0px 2px;
  background-position: 0px 95%;
  background-repeat: no-repeat;
}
.pr-recent-reviews-sidebar .sidebar-item .product-items .item .content .meta {
  display: flex;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.pr-recent-reviews-sidebar .sidebar-item .product-items .item .content .meta li {
  list-style-type: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-right: 30px;
}
.pr-recent-reviews-sidebar .sidebar-item .product-items .item .content .meta li:last-child {
  margin-right: 0;
}
.pr-recent-reviews-sidebar .sidebar-item .product-items .item:hover .content h3 a {
  background-size: 100% 2px;
}
.pr-recent-reviews-sidebar .sidebar-item .product-items .item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.pr-recent-reviews-sidebar .sidebar-item .categories-items .item {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 20px;
}
.pr-recent-reviews-sidebar .sidebar-item .categories-items .item .left {
  display: flex;
  gap: 15px;
  align-items: center;
}
.pr-recent-reviews-sidebar .sidebar-item .categories-items .item .left .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #C0EFFF;
  border-radius: 50px;
}
.pr-recent-reviews-sidebar .sidebar-item .categories-items .item .left .icon.wrap2 {
  background-color: #FCDA98;
}
.pr-recent-reviews-sidebar .sidebar-item .categories-items .item .left .icon.wrap3 {
  background-color: #C3BCFF;
}
.pr-recent-reviews-sidebar .sidebar-item .categories-items .item .left .icon.wrap4 {
  background-color: #FFD2D2;
}
.pr-recent-reviews-sidebar .sidebar-item .categories-items .item .left .icon.wrap5 {
  background-color: #C7E4FE;
}
.pr-recent-reviews-sidebar .sidebar-item .categories-items .item .left .title h5 {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 600;
}
.pr-recent-reviews-sidebar .sidebar-item .categories-items .item .left .title span {
  font-size: 13px;
  display: block;
  margin-top: 7px;
}
.pr-recent-reviews-sidebar .sidebar-item .categories-items .item .arrow-btn a i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background-color: var(--whiteColor);
  color: var(--blackColor2);
  border-radius: 50px;
  font-size: 20px;
  transition: var(--transition);
}
.pr-recent-reviews-sidebar .sidebar-item .categories-items .item:last-child {
  margin-bottom: 0;
}
.pr-recent-reviews-sidebar .sidebar-item .categories-items .item:hover .arrow-btn a i {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.pr-recent-reviews-sidebar .sidebar-item .subscribe {
  border-radius: 7px;
  background: var(--whiteColor);
  padding: 45px 30px;
}
.pr-recent-reviews-sidebar .sidebar-item .subscribe .top {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 25px;
}
.pr-recent-reviews-sidebar .sidebar-item .subscribe .top h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
}
.pr-recent-reviews-sidebar .sidebar-item .subscribe .newsletter-form {
  position: relative;
}
.pr-recent-reviews-sidebar .sidebar-item .subscribe .newsletter-form .input-newsletter {
  display: inline-block;
  width: 100%;
  height: 55px;
  border-radius: 5px;
  background-color: #F4F3F3;
  border: 1px solid #F4F3F3;
  outline: 0;
  box-shadow: unset;
  color: var(--optionalColor2);
  transition: var(--transition);
  padding: 15px 20px;
}
.pr-recent-reviews-sidebar .sidebar-item .subscribe .newsletter-form .input-newsletter::-moz-placeholder {
  color: var(--optionalColor2);
  -moz-transition: var(--transition);
  transition: var(--transition);
}
.pr-recent-reviews-sidebar .sidebar-item .subscribe .newsletter-form .input-newsletter::placeholder {
  color: var(--optionalColor2);
  transition: var(--transition);
}
.pr-recent-reviews-sidebar .sidebar-item .subscribe .newsletter-form .input-newsletter:focus {
  border: 1px solid var(--mainColor);
}
.pr-recent-reviews-sidebar .sidebar-item .subscribe .newsletter-form .input-newsletter:focus::-moz-placeholder {
  color: transparent;
}
.pr-recent-reviews-sidebar .sidebar-item .subscribe .newsletter-form .input-newsletter:focus::placeholder {
  color: transparent;
}
.pr-recent-reviews-sidebar .sidebar-item .subscribe .newsletter-form button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  background-color: var(--mainColor);
  color: var(--whiteColor);
  border-radius: 7px;
  padding: 10px 15px;
  transition: var(--transition);
  position: absolute;
  right: 7px;
  top: 7px;
}
.pr-recent-reviews-sidebar .sidebar-item .subscribe .newsletter-form button i {
  font-size: 20px;
}
.pr-recent-reviews-sidebar .sidebar-item .subscribe .newsletter-form button:hover {
  background-color: var(--blackColor2);
}
.pr-recent-reviews-sidebar .sidebar-item .subscribe .newsletter-form .validation-danger {
  color: red;
  margin-top: 5px;
}
.pr-recent-reviews-sidebar .sidebar-item .socials-links {
  margin-top: 40px;
}
.pr-recent-reviews-sidebar .sidebar-item .socials-links h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
}
.pr-recent-reviews-sidebar .sidebar-item .socials-links .links {
  display: flex;
  margin-bottom: 0;
  line-height: 1;
  padding-left: 0;
  padding-right: 0;
}
.pr-recent-reviews-sidebar .sidebar-item .socials-links .links li {
  list-style-type: none;
  margin-right: 30px;
}
.pr-recent-reviews-sidebar .sidebar-item .socials-links .links li a i {
  font-size: 25px;
  color: var(--mainColor);
  transition: var(--transition);
}
.pr-recent-reviews-sidebar .sidebar-item .socials-links .links li a i:hover {
  color: var(--blackColor2);
}
.pr-recent-reviews-sidebar .sidebar-item .socials-links .links li:last-child {
  margin-right: 0;
}
.pr-recent-reviews-sidebar .sidebar-item:last-child {
  margin-bottom: 0;
}

/*================================================
PR Overview Area CSS
=================================================*/
.pr-overview-area {
  overflow: hidden;
}

.pr-overview-card {
  position: relative;
}
.pr-overview-card .content {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0 80px 65px 80px;
}
.pr-overview-card .content .category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3.5px 12px;
  background-color: #C3BCFF;
  color: var(--blackColor2);
  border-radius: 50px;
  margin-bottom: 15px;
}
.pr-overview-card .content .category.wrap2 {
  background-color: #72CCFF;
}
.pr-overview-card .content h3 {
  font-size: 18px;
  margin-bottom: 12px;
  line-height: 1.5;
  color: var(--whiteColor);
}
.pr-overview-card .content h3 a {
  color: var(--whiteColor);
  position: relative;
  display: inline;
  transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  padding: 0.1% 0px;
  background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
  background-size: 0px 2px;
  background-position: 0px 95%;
  background-repeat: no-repeat;
}
.pr-overview-card .content .meta {
  display: flex;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.pr-overview-card .content .meta li {
  list-style-type: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #D4D4D4;
  margin-right: 30px;
}
.pr-overview-card .content .meta li:last-child {
  margin-right: 0;
}
.pr-overview-card .content .bottom {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-top: 15px;
  margin-top: 15px;
}
.pr-overview-card .content .bottom .user {
  display: flex;
  gap: 10px;
  align-items: center;
}
.pr-overview-card .content .bottom .user img {
  max-width: 25px;
  border-radius: 100%;
}
.pr-overview-card .content .bottom .user span {
  color: #D4D4D4;
}
.pr-overview-card .content .bottom .user span a {
  color: var(--whiteColor);
}
.pr-overview-card .content .bottom .user span a:hover {
  color: var(--mainColor);
}
.pr-overview-card .content .bottom .save {
  background-color: transparent;
  border: none;
  padding: 0;
  display: flex;
  gap: 7px;
  align-items: center;
  color: #D4D4D4;
}
.pr-overview-card .content .bottom .save i {
  font-size: 15px;
}
.pr-overview-card.border-radius1 a img {
  border-radius: 7px 0 0 7px;
}
.pr-overview-card.border-radius2 a img {
  border-radius: 0 7px 7px 0;
}
.pr-overview-card:hover .content h3 a {
  background-size: 100% 2px;
}

/*================================================
PR Video Reviews Area CSS
=================================================*/
.pr-video-reviews-area {
  overflow: hidden;
}

.pr-video-reviews-item {
  background-color: var(--whiteColor);
  border-radius: 7px;
  padding: 25px;
  margin-bottom: 30px;
}
.pr-video-reviews-item .image {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  border-radius: 5px;
  position: relative;
}
.pr-video-reviews-item .image .video-btn {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: var(--transition);
  opacity: 0;
}
.pr-video-reviews-item .image .video-btn i {
  display: flex;
  align-items: center;
  justify-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  line-height: 50px;
  background-color: var(--whiteColor);
  color: var(--mainColor);
  font-size: 30px;
  border-radius: 50px;
  transition: var(--transition);
  margin: auto;
}
.pr-video-reviews-item .image .video-btn i:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.pr-video-reviews-item .content {
  padding: 12px 0 12px 0;
}
.pr-video-reviews-item .content .category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3.5px 12px;
  background-color: #C3BCFF;
  color: var(--blackColor2);
  border-radius: 50px;
  margin-bottom: 15px;
}
.pr-video-reviews-item .content .category.wrap2 {
  background-color: #72CCFF;
}
.pr-video-reviews-item .content .category.wrap3 {
  background-color: #FCDA98;
}
.pr-video-reviews-item .content .category.wrap4 {
  background-color: #C0EFFF;
}
.pr-video-reviews-item .content .category.wrap5 {
  background-color: #C3BCFF;
}
.pr-video-reviews-item .content .category.wrap6 {
  background-color: #72CCFF;
}
.pr-video-reviews-item .content h3 {
  font-size: 16px;
  margin-bottom: 12px;
  line-height: 1.5;
}
.pr-video-reviews-item .content h3 a {
  position: relative;
  display: inline;
  transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  padding: 0.1% 0px;
  background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
  background-size: 0px 2px;
  background-position: 0px 95%;
  background-repeat: no-repeat;
}
.pr-video-reviews-item .content .meta {
  display: flex;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.pr-video-reviews-item .content .meta li {
  list-style-type: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-right: 30px;
}
.pr-video-reviews-item .content .meta li:last-child {
  margin-right: 0;
}
.pr-video-reviews-item .content .bottom {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #D4D4D4;
  padding-top: 15px;
  margin-top: 15px;
}
.pr-video-reviews-item .content .bottom .user {
  display: flex;
  gap: 10px;
  align-items: center;
}
.pr-video-reviews-item .content .bottom .user img {
  max-width: 25px;
  border-radius: 100%;
}
.pr-video-reviews-item .content .bottom .user span a {
  color: var(--blackColor2);
}
.pr-video-reviews-item .content .bottom .user span a:hover {
  color: var(--mainColor);
}
.pr-video-reviews-item .content .bottom .save {
  background-color: transparent;
  border: none;
  padding: 0;
  display: flex;
  gap: 7px;
  align-items: center;
  color: var(--optionalColor2);
}
.pr-video-reviews-item .content .bottom .save i {
  font-size: 15px;
}
.pr-video-reviews-item:hover .image .video-btn {
  opacity: 1;
}
.pr-video-reviews-item:hover .content h3 a {
  background-size: 100% 2px;
}

/*================================================
PR Featured Products Area CSS
=================================================*/
.pr-featured-product-inner {
  background-color: var(--whiteColor);
  padding: 40px 55px;
  border-radius: 7px;
  overflow: hidden;
}
.pr-featured-product-inner .section-title-wrap .right a {
  background-color: #F4F3F3;
}
.pr-featured-product-inner .section-title-wrap .right a:hover {
  background-color: var(--mainColor);
}

.pr-featured-product-card {
  background-color: #C3BCFF;
  padding: 35px;
  border-radius: 7px 0px 0px 7px;
}
.pr-featured-product-card .content {
  margin-top: 100px;
}
.pr-featured-product-card .content .category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3.5px 12px;
  background-color: #EEECFF;
  color: var(--blackColor2);
  border-radius: 50px;
  margin-bottom: 15px;
}
.pr-featured-product-card .content h3 {
  font-size: 20.5px;
  margin-bottom: 12px;
  line-height: 1.5;
}
.pr-featured-product-card .content h3 a {
  position: relative;
  display: inline;
  transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  padding: 0.1% 0px;
  background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
  background-size: 0px 2px;
  background-position: 0px 95%;
  background-repeat: no-repeat;
}
.pr-featured-product-card .content .meta {
  display: flex;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.pr-featured-product-card .content .meta li {
  list-style-type: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-right: 30px;
}
.pr-featured-product-card .content .meta li:last-child {
  margin-right: 0;
}
.pr-featured-product-card .content .bottom {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #DAD9D9;
  padding-top: 15px;
  margin-top: 15px;
}
.pr-featured-product-card .content .bottom .user {
  display: flex;
  gap: 10px;
  align-items: center;
}
.pr-featured-product-card .content .bottom .user img {
  max-width: 25px;
  border-radius: 100%;
}
.pr-featured-product-card .content .bottom .user span a {
  color: var(--blackColor2);
}
.pr-featured-product-card .content .bottom .user span a:hover {
  color: var(--mainColor);
}
.pr-featured-product-card .content .bottom .save {
  background-color: transparent;
  border: none;
  padding: 0;
  display: flex;
  gap: 7px;
  align-items: center;
  color: var(--optionalColor2);
}
.pr-featured-product-card .content .bottom .save i {
  font-size: 15px;
}
.pr-featured-product-card.wrap2 {
  background-color: #C0EFFF;
  border-radius: 0;
}
.pr-featured-product-card.wrap3 {
  background-color: #FFE8BB;
  border-radius: 0px 7px 7px 0px;
}
.pr-featured-product-card:hover .content h3 a {
  background-size: 100% 2px;
}

/*================================================
Product Categories Area CSS
=================================================*/
.product-categories-area {
  overflow: hidden;
}

.product-categories-item {
  text-align: center;
  transition: var(--transition);
}
.product-categories-item .image a img {
  border: 3px solid var(--whiteColor);
}
.product-categories-item .content {
  margin-top: 25px;
}
.product-categories-item .content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
}
.product-categories-item .content span {
  font-size: 14px;
  display: block;
  margin-top: 12px;
}
.product-categories-item:hover {
  transform: translateY(-5px);
}

.pr-featured-product-area .container {
  max-width: 1320px;
}

.product-review-navbar .container {
  max-width: 1320px;
}

.pr-recent-reviews-sidebar .sidebar-item .product-items .item .content .category {
  margin-top: 10px;
}

/* End "Product Review Demo - 9", "Product Review Demo - 10" & "Product Review Demo - 11" CSS
=================================================================================================*//*# sourceMappingURL=style.css.map */