/*
@File: Naon HTML Template

* 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 Style 
** - Top Header Area CSS Style
** - Navbar Area CSS Style
** - Sidebar Modal CSS Style
** - Main Banner Area CSS Style
** - Inner Banner Area CSS Style 
** - Features Area CSS Style
** - About Area CSS Style
** - Services Area CSS Style
** - Intro Video Area CSS Style
** - Products Area Style 
** - Product Details Area CSS Style
** - Cart Wraps Area CSS Style
** - Checkout Area CSS Style
** - Customer Services Area  CSS Style
** - Account Area CSS Style 
** - Pricing Area CSS Style
** - Team Area Style
** - Testimonial Area CSS Style
** - Booking Area CSS Style
** - Blog Area CSS Style
** - Contact Area CSS Style
** - Gallery Area CSS Style 
** - 404 Error Area CSS Style
** - Coming Soon Area Style
** - Footer Area CSS Style
** - Copyright Area CSS Style
** - Other Area CSS Style

*******************************************
/*
#CA1461
/*================================================
Default CSS
=================================================*/
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --headerFonts: "Playfair Display", serif;
  --bodyFonts: "Rubik", sans-serif;
  --mainColor: #ca1461;
  --titleColor: #202031;
  --bodyColor: #555555;
  --whiteColor: #ffffff;
  --fontSize: 16px;
  --transition: 0.5s;
}

body {
  padding: 0;
  margin: 0;
  line-height: 1.6;
  font-weight: 400;
  font-size: var(--fontSize);
  font-family: var(--bodyFonts);
}

p {
  color: var(--bodyColor);
  margin-bottom: 10px;
}
p:last-child {
  margin-bottom: 0;
}

a {
  display: inline-block;
  transition: var(--transition);
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: none;
}

button {
  outline: 0;
  border: none;
}
button:focus {
  outline: 0;
  border: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--titleColor);
  line-height: 1.4;
  font-family: var(--headerFonts);
}

h3 {
  font-size: 22px;
}

.d-table {
  width: 100%;
  height: 100%;
}

.d-table-cell {
  display: table-cell;
  vertical-align: middle;
}

img {
  max-width: 100%;
}

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

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

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

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

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

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

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

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

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

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

.pl-20 {
  padding-left: 20px;
}

.pr-20 {
  padding-right: 20px;
}

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

.mt-20 {
  margin-top: 20px;
}

.mb-45 {
  margin-bottom: 45px;
}

.ml-20 {
  margin-left: 20px;
}

.mr-20 {
  margin-right: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.border-radius-5 {
  border-radius: 5px !important;
}

.border-radius-50 {
  border-radius: 50px !important;
}

.border-radius-0 {
  border-radius: 0 !important;
}
.border-radius-0 img {
  border-radius: 0 !important;
}

.box-shadow {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
}

.default-btn {
  padding: 15px 35px;
  text-align: center;
  color: var(--whiteColor);
  font-size: var(--fontSize);
  font-weight: 400;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 0;
  background: var(--mainColor);
  box-shadow: none;
  overflow: hidden;
  white-space: nowrap;
}
.default-btn i {
  position: relative;
  top: 3px;
  margin-left: 10px;
}
.default-btn:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 550px;
  height: 550px;
  margin: auto;
  background: var(--titleColor);
  border-radius: 50%;
  z-index: -1;
  transform-origin: top center;
  transform: translateX(-50%) translateY(-5%) scale(0.4);
  transition: transform 0.9s;
}
.default-btn.two {
  background: transparent;
  border: 1px solid var(--mainColor);
  color: var(--mainColor);
}
.default-btn.two::before {
  background-color: var(--mainColor);
}
.default-btn:hover {
  color: var(--whiteColor) !important;
}
.default-btn:hover:before {
  transition: transform 1s;
  transform: translateX(-45%) translateY(0) scale(1);
  transform-origin: bottom center;
}

.section-title {
  position: relative;
  z-index: 1;
}
.section-title span {
  color: var(--mainColor);
  display: block;
  margin-bottom: 7px;
}
.section-title h2 {
  font-size: 45px;
  margin-top: 0;
  line-height: 1.2;
  margin-bottom: 0;
}
.section-title p {
  padding-top: 15px;
  margin-bottom: 0;
  max-width: 650px;
}
.section-title.text-center h2 {
  margin: 0 auto;
}
.section-title.text-center p {
  margin: 0 auto;
}
.section-title .section-vector {
  position: absolute;
  z-index: -1;
  top: -70px;
  left: 0;
  right: 0;
  text-align: center;
}

.section-bg {
  background-color: #FAEFED;
}

.color1 {
  color: var(--whiteColor) !important;
}

/*================================
Top Header Area
===================================*/
.top-header {
  padding: 3px 0;
  position: relative;
  z-index: 5;
  background-color: var(--mainColor);
}

.header-left {
  float: left;
}
.header-left ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.header-left ul li {
  display: inline-block;
  padding-left: 30px;
  position: relative;
  color: var(--whiteColor);
  margin-right: 35px;
  font-size: 15px;
  transition: var(----transition);
}
.header-left ul li:last-child {
  margin-right: 0;
}
.header-left ul li i {
  position: absolute;
  top: 50%;
  line-height: 1;
  transform: translateY(-50%);
  left: 0;
  color: var(--whiteColor);
  transition: var(----transition);
  font-size: 17px;
}
.header-left ul li a {
  color: var(--whiteColor);
  transition: 0.9s;
}
.header-left ul li a:hover {
  color: #ffe1e1;
}

.header-right {
  float: right;
}
.header-right .social-links {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.header-right .social-links li {
  display: inline-block;
  margin-right: 10px;
}
.header-right .social-links li:last-child {
  margin-right: 0;
}
.header-right .social-links li a i {
  width: 40px;
  height: 40px;
  line-height: 47px;
  border-radius: 50px;
  text-align: center;
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--whiteColor);
  transition: var(--transition);
  font-size: 18px;
}
.header-right .social-links li a i:hover {
  background-color: var(--whiteColor);
  color: var(--mainColor);
}

.header-right-color .social-links li a i {
  background-color: transparent;
}
.header-right-color .social-links li a i:hover {
  background-color: var(--whiteColor);
  color: var(--mainColor);
}

/*================================
Navbar Area
===================================*/
.naon-area {
  position: relative;
  z-index: 99;
}
.naon-area::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 50%;
  background-color: var(--mainColor);
}
.naon-area::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 50%;
  background-color: #EFCEC9;
}

.desktop-nav {
  padding-top: 0;
  padding-bottom: 0;
}
.desktop-nav .navbar {
  background-color: var(--whiteColor);
  padding-right: 25px;
  padding-top: 10px;
  padding-left: 25px;
  padding-bottom: 10px;
}
.desktop-nav .navbar .navbar-brand .logo-two {
  display: none;
}
.desktop-nav .navbar ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.desktop-nav .navbar .navbar-nav {
  margin-left: auto;
  margin-right: auto;
}
.desktop-nav .navbar .navbar-nav .nav-item {
  position: relative;
  padding-bottom: 20px;
  padding-top: 20px;
  padding-right: 0;
  padding-left: 0;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-toggle {
  padding-right: 17px;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-toggle::before {
  position: absolute;
  content: "\ea12";
  line-height: 1;
  right: -2px;
  top: 6px;
  font-family: "remixicon" !important;
  font-size: 17px;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-toggle::after {
  display: none;
}
.desktop-nav .navbar .navbar-nav .nav-item a {
  font-size: var(--fontSize);
  color: var(--titleColor);
  position: relative;
  z-index: 1;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-left: 20px;
  margin-right: 20px;
}
.desktop-nav .navbar .navbar-nav .nav-item a:hover, .desktop-nav .navbar .navbar-nav .nav-item a:focus, .desktop-nav .navbar .navbar-nav .nav-item a.active {
  color: var(--mainColor);
}
.desktop-nav .navbar .navbar-nav .nav-item:last-child a {
  margin-right: 0;
}
.desktop-nav .navbar .navbar-nav .nav-item:first-child a {
  margin-left: 0;
}
.desktop-nav .navbar .navbar-nav .nav-item:hover a, .desktop-nav .navbar .navbar-nav .nav-item:focus a, .desktop-nav .navbar .navbar-nav .nav-item.active a {
  color: var(--mainColor);
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu {
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  background: var(--whiteColor);
  border: none;
  position: absolute;
  visibility: hidden;
  transform-origin: top;
  border-radius: 0;
  display: block;
  width: 250px;
  z-index: 99;
  opacity: 0;
  top: 80px;
  left: 0;
  transform: scaleY(0);
  transition: var(--transition);
  padding-top: 2px;
  padding-left: 5px;
  padding-right: 5px;
  padding-bottom: 0;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li {
  padding: 0;
  border-bottom: 1px solid #f0eeee;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li:last-child {
  border: none;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a {
  color: var(--titleColor);
  padding: 12px 20px 9px;
  margin: 0;
  font-size: 15px;
  position: relative;
  transition: var(--transition);
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:hover, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:focus, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
  color: var(--mainColor);
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.dropdown-toggle {
  padding-right: 17px;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.dropdown-toggle::before {
  position: absolute;
  content: "\ea12";
  line-height: 1;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "remixicon" !important;
  font-size: 17px;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.dropdown-toggle::after {
  display: none;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
  left: 245px;
  top: 0;
  opacity: 0;
  visibility: hidden;
  margin-top: 11px;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a {
  color: var(--titleColor);
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:hover, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:focus, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.active {
  color: var(--mainColor);
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu {
  left: 245px;
  top: 0;
  opacity: 0;
  visibility: hidden;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: var(--titleColor);
  font-size: 15px;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: var(--mainColor);
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  left: -250px;
  top: 0;
  opacity: 0;
  visibility: hidden;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: var(--titleColor);
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: var(--mainColor);
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  left: -250px;
  top: 0;
  opacity: 0;
  visibility: hidden;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: var(--titleColor);
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .desktop-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);
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  left: -250px;
  top: 0;
  opacity: 0;
  visibility: hidden;
}
.desktop-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(--titleColor);
}
.desktop-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, .desktop-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, .desktop-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);
}
.desktop-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 {
  left: -250px;
  top: 0;
  opacity: 0;
  visibility: hidden;
}
.desktop-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(--titleColor);
}
.desktop-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, .desktop-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, .desktop-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);
}
.desktop-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);
}
.desktop-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;
  top: -15px;
}
.desktop-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);
}
.desktop-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;
  top: -15px;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: var(--mainColor);
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  top: -15px;
  visibility: visible;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: var(--mainColor);
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  top: -15px;
  visibility: visible;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li.active a {
  color: var(--mainColor);
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: -15px;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li.active a {
  color: var(--mainColor);
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: -15px;
}
.desktop-nav .navbar .navbar-nav .nav-item:hover .dropdown-menu {
  top: 100%;
  opacity: 1;
  margin-top: 0;
  visibility: visible;
  transform: scaleY(1);
}

.desktop-nav-two .navbar {
  padding-left: 0;
  padding-right: 0;
}

.desktop-nav-three .navbar {
  padding-left: 0;
  padding-right: 0;
}
.desktop-nav-three .navbar .navbar-nav {
  margin-left: auto;
  margin-right: 50px;
}

.navbar-area {
  background-color: var(--whiteColor);
}
.navbar-area.is-sticky {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  position: fixed;
  background-color: var(--whiteColor) !important;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}
.navbar-area.is-sticky.naon-area {
  background-color: var(--whiteColor);
  position: fixed;
}
.navbar-area.is-sticky.naon-area::before {
  display: none;
}
.navbar-area.is-sticky.naon-area::after {
  display: none;
}

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

.others-options .optional-item {
  margin-right: 30px;
  position: relative;
  z-index: 1;
}
.others-options .optional-item:first-child {
  padding-right: 30px;
}
.others-options .optional-item:first-child::before {
  content: "";
  position: absolute;
  top: -3px;
  right: 0;
  width: 1px;
  height: 42px;
  background-color: #202031;
}
.others-options .optional-item:last-child {
  margin-right: 0;
}
.others-options .optional-item .search-btn {
  position: relative;
  top: 4px;
}
.others-options .optional-list-item {
  margin-right: 25px;
}
.others-options .optional-list-item:last-child {
  margin-right: 0;
}
.others-options .optional-list-item a {
  position: relative;
}
.others-options .optional-list-item a span {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  padding: 3px 7px;
  color: var(--whiteColor);
  background-color: var(--mainColor);
  font-size: 9px;
  border-radius: 50px;
  transition: var(--transition);
}
.others-options .optional-list-item a i {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50px;
  font-size: 20px;
  color: var(--titleColor);
  background-color: #FAEFED;
  text-align: center;
  display: inline-block;
  transition: var(--transition);
}
.others-options .optional-list-item a:hover i {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.others-options .optional-list-item a:hover span {
  background-color: var(--titleColor);
}

.optional-item-cart {
  font-size: 26px;
  color: var(--titleColor);
  position: relative;
  padding-right: 10px;
  top: 3px;
  transition: var(--transition);
}
.optional-item-cart span {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  padding: 2px 6px;
  color: var(--whiteColor);
  background-color: var(--mainColor);
  font-size: 9px;
  border-radius: 50px;
  transition: var(--transition);
}
.optional-item-cart:hover {
  color: var(--mainColor);
}
.optional-item-cart:hover span {
  background-color: var(--titleColor);
}

.search-btn a i {
  font-size: 26px;
  color: var(--titleColor);
  transition: 0.6s;
}
.search-btn a i:hover {
  color: var(--mainColor);
}

.searchmodal .modal-dialog {
  width: 100%;
  height: 100%;
  max-width: 100%;
  margin: 0;
  display: table;
}
.searchmodal .modal-content {
  height: 100%;
  border-radius: 0;
  border: none;
  display: table-cell;
  vertical-align: middle;
  background-color: #222;
  opacity: 0.77;
}
.searchmodal .modal-body {
  max-width: 700px;
  margin: auto;
  padding: 0;
}
.searchmodal .modal-header {
  border: none;
}
.searchmodal .modal-header button {
  position: relative;
}
.searchmodal .modal-header button.close {
  position: absolute;
  right: 25px;
  top: 25px;
  display: inline-block;
  height: 50px;
  width: 50px;
  line-height: 48px;
  background-color: var(--mainColor);
  border-radius: 5px;
  color: var(--whiteColor);
  border: none;
  font-size: 30px;
  transition: var(--transition);
}
.searchmodal .modal-header button.close:hover, .searchmodal .modal-header button.close:focus {
  background-color: var(--whiteColor);
  color: var(--mainColor);
}
.searchmodal .modal-search-form {
  position: relative;
}
.searchmodal .modal-search-form .search-field {
  background-color: transparent;
  height: 60px;
  padding: 8px 15px;
  border: none;
  border: 1px solid var(--whiteColor);
  width: 100%;
  display: block;
  outline: 0;
  transition: var(--transition);
  border-radius: 0;
  color: var(--whiteColor);
}
.searchmodal .modal-search-form .search-field::-webkit-input-placeholder, .searchmodal .modal-search-form .search-field:-ms-input-placeholder, .searchmodal .modal-search-form .search-field::-ms-input-placeholder, .searchmodal .modal-search-form .search-field::placeholder {
  color: var(--whiteColor);
  -webkit-transition: var(--transition);
  -ms-transition: var(--transition);
  transition: var(--transition);
}
.searchmodal .modal-search-form .search-field:focus {
  border-color: var(--mainColor);
}
.searchmodal .modal-search-form .search-field:focus::-webkit-input-placeholder, .searchmodal .modal-search-form .search-field:focus:-ms-input-placeholder, .searchmodal .modal-search-form .search-field:focus::-ms-input-placeholder, .searchmodal .modal-search-form .search-field:focus::placeholder {
  color: transparent;
}
.searchmodal .modal-search-form button {
  border: none;
  background-color: var(--whiteColor);
  color: var(--mainColor);
  height: 40px;
  width: 40px;
  position: absolute;
  right: 10px;
  padding: 0;
  transition: var(--transition);
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  border-radius: 5px;
  cursor: pointer;
}
.searchmodal .modal-search-form button i {
  position: absolute;
  left: 0;
  right: 0;
  top: 52%;
  transform: translateY(-52%);
}
.searchmodal .modal-search-form button:hover, .searchmodal .modal-search-form button:focus {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}

.mobile-nav {
  position: absolute;
  top: 8px;
  right: 53px;
  display: none;
}
.mobile-nav .mobile-other .optional-item {
  margin-right: 15px;
}
.mobile-nav .mobile-other .optional-item:last-child {
  margin-right: 0;
}
.mobile-nav .mobile-other .optional-item .search-btn {
  position: relative;
  top: 3px;
}
.mobile-nav .mobile-other .mobile-other-list {
  margin-right: 10px;
}
.mobile-nav .mobile-other .mobile-other-list:last-child {
  margin-right: 0;
}
.mobile-nav .mobile-other .mobile-other-list a {
  position: relative;
}
.mobile-nav .mobile-other .mobile-other-list a span {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  padding: 2px 5px;
  color: var(--whiteColor);
  background-color: var(--mainColor);
  font-size: 8px;
  border-radius: 50px;
  transition: var(--transition);
}
.mobile-nav .mobile-other .mobile-other-list a i {
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50px;
  font-size: 16px;
  color: var(--titleColor);
  background-color: #FAEFED;
  text-align: center;
  display: inline-block;
  transition: var(--transition);
}
.mobile-nav .mobile-other .mobile-other-list a:hover i {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.mobile-nav .mobile-other .mobile-other-list a:hover span {
  background-color: var(--titleColor);
}

/*=================================
Sidebar Modal
====================================*/
.sidebarmodal.modal .modal-dialog, .sidebarmodal.right .modal-dialog {
  position: fixed;
  margin: auto;
  width: 420px;
  height: 100%;
  transform: translate3d(0%, 0, 0);
}
.sidebarmodal.modal.fade .modal-dialog, .sidebarmodal.right.fade .modal-dialog {
  right: -320px;
  transition: opacity 0.3s linear, right 0.3s ease-out;
}
.sidebarmodal.modal.fade.show .modal-dialog, .sidebarmodal.right.fade.show .modal-dialog {
  right: 0;
}
.sidebarmodal.modal .modal-content, .sidebarmodal.right .modal-content {
  height: 100%;
}
.sidebarmodal .modal-content {
  background-color: var(--whiteColor);
  height: 100%;
  overflow-y: scroll;
  border-radius: 0;
  padding: 40px 30px;
}
.sidebarmodal .modal-content .modal-header {
  margin-bottom: 30px;
  padding: 0px;
  border: none;
}
.sidebarmodal .modal-content .modal-header .sidebar-logo {
  display: inline-block;
}
.sidebarmodal .modal-content .modal-header .sidebar-logo .sidebar-logo2 {
  display: none;
}
.sidebarmodal .modal-content .modal-header .close {
  display: inline-block;
  font-size: 18px;
  transition: var(--transition);
  border: none;
  outline: none;
  height: 30px;
  width: 30px;
  line-height: 28px;
  border-radius: 50px;
  background-color: var(--mainColor);
  color: var(--whiteColor);
  text-align: center;
  margin-top: 0;
}
.sidebarmodal .modal-content .modal-header .close.text-float {
  float: right;
}
.sidebarmodal .modal-content .modal-header .close:hover {
  background-color: var(--titleColor);
}
.sidebarmodal .modal-content .modal-body {
  padding: 0;
}
.sidebarmodal .modal-content .modal-body .sidebar-about {
  margin-bottom: 20px;
}
.sidebarmodal .modal-content .modal-body .sidebar-about h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.sidebarmodal .modal-content .modal-body .sidebar-about p {
  margin-bottom: 0;
  font-size: 15px;
}
.sidebarmodal .modal-content .modal-body .contact-us {
  margin-bottom: 30px;
}
.sidebarmodal .modal-content .modal-body .contact-us h3 {
  font-size: 22px;
  margin-bottom: 20px;
}
.sidebarmodal .modal-content .modal-body .contact-us .contact-item {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.sidebarmodal .modal-content .modal-body .contact-us .contact-item li {
  display: block;
  padding-left: 60px;
  position: relative;
  cursor: pointer;
  margin-bottom: 20px;
}
.sidebarmodal .modal-content .modal-body .contact-us .contact-item li:last-child {
  margin-bottom: 0;
}
.sidebarmodal .modal-content .modal-body .contact-us .contact-item li i {
  position: absolute;
  top: 0;
  left: 0;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.06);
  color: var(--mainColor);
  font-size: 20px;
  border-radius: 5px;
  transition: var(--transition);
  display: inline-block;
}
.sidebarmodal .modal-content .modal-body .contact-us .contact-item li .content h4 {
  font-size: 16px;
  margin-bottom: 3px;
}
.sidebarmodal .modal-content .modal-body .contact-us .contact-item li .content p {
  color: var(--bodyColor);
  margin: 0;
  font-size: 14px;
}
.sidebarmodal .modal-content .modal-body .contact-us .contact-item li .content p a {
  color: var(--bodyColor);
  margin-bottom: 0;
  transition: var(--transition);
}
.sidebarmodal .modal-content .modal-body .contact-us .contact-item li:hover i {
  background-color: var(--mainColor);
  border-radius: 50px;
  color: var(--whiteColor);
}
.sidebarmodal .modal-content .modal-body .contact-us .contact-item li:hover .content p a {
  color: var(--mainColor);
}
.sidebarmodal .modal-content .modal-body .sidebar-follow-us {
  margin-bottom: 30px;
}
.sidebarmodal .modal-content .modal-body .sidebar-follow-us h3 {
  font-size: 22px;
  margin-bottom: 20px;
}
.sidebarmodal .modal-content .modal-body .sidebar-follow-us .social-wrap {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.sidebarmodal .modal-content .modal-body .sidebar-follow-us .social-wrap li {
  display: inline-block;
  margin-right: 10px;
}
.sidebarmodal .modal-content .modal-body .sidebar-follow-us .social-wrap li a {
  display: inline-block;
}
.sidebarmodal .modal-content .modal-body .sidebar-follow-us .social-wrap li a i {
  width: 35px;
  height: 35px;
  line-height: 37px;
  font-size: 14px;
  text-align: center;
  display: inline-block;
  background-color: transparent;
  color: var(--mainColor);
  border: 1px solid var(--mainColor);
  transition: var(--transition);
}
.sidebarmodal .modal-content .modal-body .sidebar-follow-us .social-wrap li a:hover i {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.sidebarmodal .modal-content .modal-body .sidebar-newsletter {
  margin-bottom: 0;
}
.sidebarmodal .modal-content .modal-body .sidebar-newsletter h3 {
  margin-bottom: 10px;
  font-size: 22px;
}
.sidebarmodal .modal-content .modal-body .sidebar-newsletter p {
  margin-bottom: 15px;
  font-size: 15px;
}
.sidebarmodal .modal-content .modal-body .sidebar-newsletter-area {
  margin-bottom: 0;
}
.sidebarmodal .modal-content .modal-body .sidebar-newsletter-area .sidebar-newsletter-form {
  position: relative;
}
.sidebarmodal .modal-content .modal-body .sidebar-newsletter-area .sidebar-newsletter-form .form-control {
  background: transparent;
  border-radius: 5px;
  height: 50px;
  line-height: 50px;
  margin: 0;
  border-radius: 5px;
  border: none;
  padding: 0 25px;
  max-width: 100%;
  color: var(--whiteColor);
  border: 1px solid var(--mainColor);
  font-size: 15px;
}
.sidebarmodal .modal-content .modal-body .sidebar-newsletter-area .sidebar-newsletter-form .form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: var(--titleColor);
}
.sidebarmodal .modal-content .modal-body .sidebar-newsletter-area .sidebar-newsletter-form .subscribe-btn {
  position: absolute;
  top: 0;
  right: 0;
  height: 50px;
  background-color: var(--mainColor);
  color: var(--whiteColor);
  padding: 10px 16px;
  font-size: 20px;
  border: 0;
  transition: var(--transition);
  border-radius: 0 5px 5px 0;
  text-align: center;
}
.sidebarmodal .modal-content .modal-body .sidebar-newsletter-area .sidebar-newsletter-form .subscribe-btn:hover {
  background-color: var(--titleColor);
}

/*================================
Main Banner Area    #EFCEC9;
===================================*/
.banner-area {
  background-color: #f9e4e0; 
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.banner-area .owl-nav {
  margin-top: 0;
  overflow: hidden;
}
.banner-area .owl-nav .owl-prev {
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  font-size: 30px !important;
  color: var(--bodyColor) !important;
  background-color: transparent !important;
}
.banner-area .owl-nav .owl-prev::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -20px;
  left: -28px;
  right: 0;
  width: 40px;
  height: 80px;
  background-color: var(--whiteColor);
  border-bottom-right-radius: 80px;
  border-top-right-radius: 80px;
  transition: transform 0.9s;
}
.banner-area .owl-nav .owl-prev:hover {
  color: var(--mainColor) !important;
}
.banner-area .owl-nav .owl-next {
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
  right: -105.5%;
  font-size: 30px !important;
  color: var(--bodyColor) !important;
  background-color: transparent !important;
}
.banner-area .owl-nav .owl-next i {
  position: relative;
  right: 15px;
}
.banner-area .owl-nav .owl-next::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -20px;
  left: 0;
  right: -28px;
  width: 40px;
  height: 80px;
  background-color: var(--whiteColor);
  border-bottom-left-radius: 80px;
  border-top-left-radius: 80px;
  transition: transform 0.9s;
}
.banner-area .owl-nav .owl-next:hover {
  color: var(--mainColor) !important;
}

.banner-content {
  max-width: 620px;
  margin-left: 40px;
}
.banner-content span {
  color: var(--mainColor);
  margin-bottom: 10px;
  display: block;
}
.banner-content h1 {
  font-size: 82px;
  color: var(--titleColor);
  margin-bottom: 20px;
  line-height: 1.2;
}
.banner-content p {
  margin-bottom: 20px;
}
.banner-content .learn-btn {
  padding: 15px 35px;
  text-align: center;
  color: var(--yellowColor);
  font-size: var(--fontSize);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 0;
  background: var(--whiteColor);
  box-shadow: none;
  overflow: hidden;
  white-space: nowrap;
  border-radius: 5px;
}
.banner-content .learn-btn i {
  position: relative;
  top: 3px;
  margin-left: 10px;
  color: var(--mainColor);
  transition: transform 0.9s;
}
.banner-content .learn-btn:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 550px;
  height: 550px;
  margin: auto;
  background: var(--mainColor);
  border-radius: 50%;
  z-index: -1;
  transform-origin: top center;
  transform: translateX(-50%) translateY(-5%) scale(0.4);
  transition: transform 0.9s;
}
.banner-content .learn-btn:hover {
  color: var(--whiteColor) !important;
}
.banner-content .learn-btn:hover:before {
  transition: transform 1s;
  transform: translateX(-45%) translateY(0) scale(1);
  transform-origin: bottom center;
}
.banner-content .learn-btn:hover i {
  color: var(--whiteColor);
}

.banner-img {
  position: relative;
  margin-left: -100px;
  padding-top: 70px;
}
.banner-img::before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 100%;
  width: 46%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #dbc0c0;
}
.banner-img .woman {
  position: relative;
  z-index: 1;
  max-width: 570px;
}
.banner-img .woman img {
  max-width: 470px;
}
.banner-img .woman .vector {
  position: absolute;
  z-index: -1;
  top: -50px;
  right: 10px;
}
.banner-img .woman .vector img {
  max-width: 415px;
}
.banner-img .nail-img {
  position: absolute;
  z-index: -1;
  right: 0;
  top: 50%;
  transform: translateY(-50%) !important;
  border-radius: 15px;
}
.banner-img .nail-img img {
  max-width: 350px;
  border-radius: 15px;
  border: 5px solid #E2B3AC;
}

.banner-content-ml {
  margin-right: auto;
  max-width: 665px;
}

.banner-area-two {
  background-color: #EFCEC9;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.banner-area-two .owl-nav {
  margin-top: 0;
  overflow: hidden;
}
.banner-area-two .owl-nav .owl-prev {
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
  left: -3%;
  width: 50px;
  height: 50px;
  line-height: 58px !important;
  background-color: var(--whiteColor) !important;
  color: var(--bodyColor) !important;
  border-radius: 50%;
  text-align: center;
  font-size: 18px !important;
}
.banner-area-two .owl-nav .owl-prev:hover {
  color: var(--mainColor) !important;
}
.banner-area-two .owl-nav .owl-next {
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
  right: -106.5%;
  width: 50px;
  height: 50px;
  line-height: 58px !important;
  background-color: var(--whiteColor) !important;
  color: var(--bodyColor) !important;
  border-radius: 50%;
  text-align: center;
  font-size: 18px !important;
}
.banner-area-two .owl-nav .owl-next:hover {
  color: var(--mainColor) !important;
}

.banner-vector {
  position: absolute;
  bottom: 0;
  left: 0;
}
.banner-vector img {
  animation: movebounce 5s linear infinite;
}

.banner-img-two {
  position: relative;
  margin-left: -50px;
  padding-top: 70px;
}
.banner-img-two .woman {
  position: relative;
  z-index: 1;
  max-width: 570px;
}
.banner-img-two .woman img {
  max-width: 510px;
}
.banner-img-two .woman .vector1 {
  position: absolute;
  z-index: -1;
  top: -130px;
  left: 0;
}
.banner-img-two .woman .vector1 img {
  max-width: 415px;
  animation: moveleftbounce 9s linear infinite;
}
.banner-img-two .woman .vector2 {
  position: absolute;
  z-index: -1;
  bottom: 70px;
  right: 0;
}
.banner-img-two .woman .vector2 img {
  max-width: 215px;
  animation: movebounce 9s linear infinite;
}

.banner-content-two {
  max-width: 620px;
  margin-left: 40px;
}
.banner-content-two span {
  color: var(--mainColor);
  margin-bottom: 10px;
  display: block;
}
.banner-content-two h1 {
  font-size: 65px;
  color: var(--titleColor);
  margin-bottom: 20px;
  line-height: 1.2;
}
.banner-content-two p {
  margin-bottom: 20px;
  max-width: 550px;
}
.banner-content-two .learn-btn {
  padding: 15px 35px;
  text-align: center;
  color: var(--yellowColor);
  font-size: var(--fontSize);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 0;
  background: var(--whiteColor);
  box-shadow: none;
  overflow: hidden;
  white-space: nowrap;
  border-radius: 5px;
}
.banner-content-two .learn-btn i {
  position: relative;
  top: 3px;
  margin-left: 10px;
  color: var(--mainColor);
  transition: transform 0.9s;
}
.banner-content-two .learn-btn:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 550px;
  height: 550px;
  margin: auto;
  background: var(--mainColor);
  border-radius: 50%;
  z-index: -1;
  transform-origin: top center;
  transform: translateX(-50%) translateY(-5%) scale(0.4);
  transition: transform 0.9s;
}
.banner-content-two .learn-btn:hover {
  color: var(--whiteColor) !important;
}
.banner-content-two .learn-btn:hover:before {
  transition: transform 1s;
  transform: translateX(-45%) translateY(0) scale(1);
  transform-origin: bottom center;
}
.banner-content-two .learn-btn:hover i {
  color: var(--whiteColor);
}

.banner-area-three {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.banner-area-three .owl-nav {
  margin-top: 0;
  overflow: hidden;
}
.banner-area-three .owl-nav .owl-prev {
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 50px;
  height: 50px;
  line-height: 58px !important;
  background-color: var(--whiteColor) !important;
  color: var(--bodyColor) !important;
  border-radius: 50%;
  text-align: center;
  font-size: 18px !important;
}
.banner-area-three .owl-nav .owl-prev:hover {
  color: var(--mainColor) !important;
}
.banner-area-three .owl-nav .owl-next {
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 50px;
  height: 50px;
  line-height: 58px !important;
  background-color: var(--whiteColor) !important;
  color: var(--bodyColor) !important;
  border-radius: 50%;
  text-align: center;
  font-size: 18px !important;
}
.banner-area-three .owl-nav .owl-next:hover {
  color: var(--mainColor) !important;
}

.banner-item {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 165px 0 310px;
}

.banner-item-bg1 {
  background-image: url(../images/home-three-img1.jpg);
}

.banner-item-bg2 {
  background-image: url(../images/home-three-img2.jpg);
}

.banner-form-area {
  position: relative;
  z-index: 1;
  margin-top: -300px;
}

.banner-form {
  background-color: var(--whiteColor);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  padding: 70px;
}
.banner-form .form-group.form-group-list {
  padding-left: 80px;
  position: relative;
  margin-bottom: 30px;
}
.banner-form .form-group.form-group-list .from-icon {
  position: absolute;
  left: 0;
  top: 0;
}
.banner-form .form-group.form-group-list .from-icon i {
  width: 55px;
  height: 55px;
  line-height: 57px;
  text-align: center;
  background-color: #FAEFED;
  color: var(--mainColor);
  border-radius: 5px;
  display: inline-block;
  font-size: 18px;
}
.banner-form .form-group.form-group-list label {
  margin-bottom: 10px;
  font-size: 18px;
  font-family: var(--headerFonts);
  color: var(--titleColor);
  font-weight: 600;
}
.banner-form .form-group.form-group-list label i {
  font-size: 12px;
  position: relative;
  top: -2px;
  margin-left: 5px;
}
.banner-form .form-group.form-group-list .form-select {
  background-image: none;
  border: none;
  padding: 0;
  color: var(--bodyColor);
  font-size: var(--fontSize);
}
.banner-form .form-group.form-group-list .form-select:focus {
  outline: none;
  border: none;
  box-shadow: none;
}
.banner-form .form-group.form-group-list option {
  padding: 10px;
}
.banner-form .form-group.form-group-list .form-control {
  padding: 0;
  border: 0;
  background-color: transparent;
  color: var(--bodyColor);
  font-size: var(--fontSize);
}
.banner-form .form-group.form-group-list .form-control:focus {
  outline: none;
  border: none;
  box-shadow: none;
  color: var(--bodyColor);
}
.banner-form .form-group .form-control-bg-2 {
  padding: 16px 20px;
  color: var(--bodyColor);
  background-color: #FAEFED;
  border: none;
  border-radius: 0;
}
.banner-form .form-group .form-control-bg-2:focus {
  outline: none;
  border: none;
  box-shadow: none;
}
.banner-form .form-group .default-btn {
  width: 100%;
  text-align: center;
}
.banner-form .default-btn {
  width: 100%;
  text-align: center;
}

.owl-item.active .banner-content span {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.5s;
}
.owl-item.active .banner-content h1 {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.7s;
}
.owl-item.active .banner-content p {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.9s;
}
.owl-item.active .banner-content .learn-btn {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 1.1s;
}

/*================================
Inner Banner Area
===================================*/
.inner-banner {
  background-color: #ebd8d5;
  padding: 50px 0 20px;
}
.inner-banner .inner-title {
  margin-bottom: 30px;
}
.inner-banner .inner-title h3 {
  font-size: 60px;
  color: var(--titleColor);
  line-height: 1.2;
  margin-bottom: 15px;
}
.inner-banner .inner-title ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.inner-banner .inner-title ul li {
  color: var(--mainColor);
  display: inline-block;
  position: relative;
  margin-right: 20px;
  font-weight: 600;
}
.inner-banner .inner-title ul li:last-child {
  margin-right: 0;
}
.inner-banner .inner-title ul li:last-child::before {
  display: none;
}
.inner-banner .inner-title ul li::before {
  content: "";
  position: absolute;
  top: 5px;
  right: -12px;
  height: 17px;
  width: 2px;
  transform: rotate(20deg);
  background-color: var(--titleColor);
}
.inner-banner .inner-title ul li a {
  color: var(--titleColor);
  transition: var(--transition);
}
.inner-banner .inner-title ul li a:hover {
  color: var(--mainColor);
}
.inner-banner .inner-img {
  margin-bottom: 30px;
}

/*================================
Features Area
===================================*/
.features-card {
  position: relative;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.features-card .img {
  position: relative;
}
.features-card .img img {
  border-radius: 5px;
}
.features-card .img::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(145, 20, 58, 0.0823529412), #CA1461);
  border-radius: 5px;
}
.features-card .content {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  transition: 0.9s;
}
.features-card .content .top-icon {
  margin-bottom: 0;
  font-size: 65px;
  color: var(--whiteColor);
  opacity: 0;
  transition: 0.9s;
}
.features-card .content .top-icon i {
  line-height: 1;
}
.features-card .content h3 {
  color: var(--whiteColor);
  margin-bottom: 35px;
  transition: 0.9s;
}
.features-card .content .more-btn {
  width: 70px;
  height: 70px;
  line-height: 70px;
  margin: 0 auto;
  border-radius: 50%;
  border: 2px dashed var(--whiteColor);
  transition: 0.9s;
}
.features-card .content .more-btn i {
  width: 50px;
  height: 50px;
  line-height: 55px;
  text-align: center;
  border-radius: 50px;
  background-color: var(--mainColor);
  color: var(--whiteColor);
  display: inline-block;
  font-size: 18px;
  transition: 0.9s;
}
.features-card .content .more-btn i:hover {
  background-color: var(--titleColor);
}
.features-card:hover .content {
  bottom: 10px;
}
.features-card:hover .content .top-icon {
  opacity: 1;
}

.features-item {
  margin-bottom: 30px;
  background-color: var(--whiteColor);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
  padding: 40px;
  text-align: center;
}
.features-item img {
  margin-bottom: 20px;
}
.features-item .content h3 {
  margin-bottom: 13px;
}
.features-item .content p {
  margin-bottom: 0;
}

.features-card-two {
  position: relative;
  margin-bottom: 30px;
}
.features-card-two .content {
  position: absolute;
  z-index: 1;
  bottom: 20px;
  left: 0;
  right: 0;
  width: 90%;
  transform: scale(0);
  margin: 0 auto;
  text-align: center;
  transition: 0.9s;
  background-color: var(--whiteColor);
  padding: 40px;
  opacity: 0;
  transition: var(--transition);
}
.features-card-two .content i {
  font-size: 65px;
  color: var(--mainColor);
  transition: 0.9s;
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}
.features-card-two .content h3 {
  color: var(--titleColor);
  margin-bottom: 20px;
  transition: 0.9s;
}
.features-card-two .content p {
  margin-bottom: 0;
}
.features-card-two:hover .content {
  opacity: 1;
  transform: scale(1);
}

/*================================
About Area
===================================*/
.about-area {
  position: relative;
  overflow: hidden;
}

.about-item {
  position: relative;
}
.about-item .about-vector {
  position: absolute;
  left: -5%;
  bottom: 60px;
}
.about-item .about-vector img {
  animation: movebounce 5s linear infinite;
}
.about-item .owl-dots {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.about-item .owl-dots .owl-dot span {
  background: #202031;
  transition: 0.7s;
  margin: 0 7px;
  width: 8px !important;
  height: 8px !important;
  position: relative;
  z-index: 1;
  border-radius: 50px;
}
.about-item .owl-dots .owl-dot.active span {
  background-color: var(--mainColor) !important;
  width: 12px !important;
  height: 12px !important;
}
.about-item .owl-dots .owl-dot:hover span {
  background-color: var(--mainColor) !important;
  width: 12px !important;
  height: 12px !important;
}

.about-img {
  padding: 30px;
  max-width: 660px;
  position: relative;
  z-index: 1;
}
.about-img .top-border {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 153px;
  height: 165px;
  background-color: var(--mainColor);
  animation: moveleftbounce 5s linear infinite;
}
.about-img img {
  border-radius: 5px;
}
.about-img .bottom-border {
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
  width: 165px;
  height: 445px;
  background-color: transparent;
  border: 1px solid var(--whiteColor);
  animation: moveleftbounce 5s linear infinite;
}
.about-img .bottom-border.bottom-border-color {
  border-color: #EFCEC9;
}

.about-content {
  margin-bottom: 30px;
}
.about-content .section-title {
  margin-bottom: 20px;
}

.about-img-two {
  padding: 30px;
  position: relative;
  max-width: 570px;
  margin-bottom: 30px;
}
.about-img-two img {
  max-width: 500px;
  border-radius: 246px 251px 0px 0px;
  margin: 0 auto;
}
.about-img-two .about-img-border-top {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 430px;
  height: 500px;
  background-color: transparent;
  border: 1px solid #CA1461;
  box-sizing: border-box;
  border-radius: 246px 251px 0px 0px;
}
.about-img-two .about-img-border-bottom {
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
  width: 430px;
  height: 500px;
  background-color: transparent;
  border: 1px solid #CA1461;
  box-sizing: border-box;
  border-radius: 246px 251px 0px 0px;
}
.about-img-two .sub-img {
  position: absolute;
  top: -20px;
  right: -30px;
}
.about-img-two .sub-img img {
  border-radius: 0;
  animation: movebounce 7s linear infinite;
}

.about-content-max {
  max-width: 530px;
}

.about-shape .shape1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  animation: moveleftbounce 7s linear infinite;
}
.about-shape .shape2 {
  position: absolute;
  bottom: 0;
  right: 0;
  animation: moveleftbounce 7s linear infinite;
}

.about-img-three {
  position: relative;
  margin-bottom: 30px;
  padding-right: 100px;
  padding-bottom: 60px;
}
.about-img-three .sub-img {
  position: absolute;
  z-index: 1;
  bottom: 100px;
  right: 0;
}
.about-img-three .sub-img img {
  border-radius: 50%;
  border: 5px solid var(--whiteColor);
  animation: movebounce 9s linear infinite;
}
.about-img-three .content {
  position: absolute;
  bottom: 0;
  right: 100px;
  background-color: #EFCEC9;
  padding: 30px 40px;
  display: inline-block;
  width: 290px;
  border: 3px solid var(--whiteColor);
  animation: moveleftbounce 9s linear infinite;
}
.about-img-three .content h3 {
  font-size: 50px;
  line-height: 1.2;
  color: var(--mainColor);
  font-family: var(--bodyFonts);
  margin-bottom: 5px;
}
.about-img-three .content p {
  font-size: 22px;
  margin-bottom: 0;
}

/*================================
Services Area
===================================*/
.services-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.services-area .services-vector {
  position: absolute;
  z-index: -1;
  bottom: 100px;
  right: 0;
  animation: moveleftbounce 4s linear infinite;
}
.services-area .owl-nav {
  margin-top: 0;
  overflow: hidden;
}
.services-area .owl-nav .owl-prev {
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
  left: -100px;
  opacity: 0;
  width: 50px;
  height: 50px;
  line-height: 58px !important;
  background-color: var(--whiteColor) !important;
  color: var(--bodyColor) !important;
  border-radius: 50%;
  text-align: center;
  font-size: 18px !important;
  transition: 0.9s;
}
.services-area .owl-nav .owl-prev:hover {
  background-color: var(--mainColor) !important;
  color: var(--whiteColor) !important;
}
.services-area .owl-nav .owl-next {
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
  right: -100px;
  opacity: 0;
  width: 50px;
  height: 50px;
  line-height: 58px !important;
  background-color: var(--whiteColor) !important;
  color: var(--bodyColor) !important;
  border-radius: 50%;
  text-align: center;
  font-size: 18px !important;
  transition: 0.9s;
}
.services-area .owl-nav .owl-next:hover {
  background-color: var(--mainColor) !important;
  color: var(--whiteColor) !important;
}
.services-area:hover .owl-nav .owl-prev {
  left: 0;
  opacity: 1;
}
.services-area:hover .owl-nav .owl-next {
  right: 0;
  opacity: 1;
}

.services-card {
  margin-bottom: 30px;
  background-color: var(--whiteColor);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}
.services-card a {
  display: block;
}
.services-card a img {
  max-width: 100%;
}
.services-card .content {
  padding: 30px;
  position: relative;
}
.services-card .content h3 {
  margin-bottom: 0;
}
.services-card .content h3 a {
  color: var(--titleColor);
}
.services-card .content .more-btn {
  position: absolute;
  top: -30px;
  right: 30px;
  width: 70px;
  height: 70px;
  line-height: 70px;
  margin: 0 auto;
  border-radius: 50%;
  border: 2px dashed var(--whiteColor);
  transition: 0.9s;
}
.services-card .content .more-btn i {
  width: 50px;
  height: 50px;
  line-height: 55px;
  text-align: center;
  border-radius: 50px;
  background-color: var(--mainColor);
  color: var(--whiteColor);
  display: inline-block;
  margin: 0 8px;
  font-size: 18px;
  transition: 0.9s;
}
.services-card .content .more-btn i:hover {
  background-color: var(--titleColor);
}
.services-card:hover {
  transform: translateX(-10px);
}
.services-card:hover .content h3 a {
  color: var(--mainColor);
}

.services-item {
  margin-bottom: 30px;
  text-align: center;
}
.services-item .services-img {
  position: relative;
  z-index: 1;
}
.services-item .services-img a {
  display: block;
}
.services-item .services-img a img {
  max-width: 100%;
}
.services-item .services-img .top-icon {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
}
.services-item .services-img .top-icon i {
  width: 80px;
  height: 80px;
  display: inline-block;
  text-align: center;
  line-height: 90px;
  font-size: 40px;
  background-color: var(--whiteColor);
  border-radius: 50%;
  color: var(--mainColor);
  margin: 0 auto;
}
.services-item .content {
  padding: 65px 30px 20px;
  position: relative;
  border-left: 1px solid rgba(136, 136, 136, 0.15);
  border-right: 1px solid rgba(136, 136, 136, 0.15);
  border-bottom: 1px solid rgba(136, 136, 136, 0.15);
}
.services-item .content h3 {
  margin-bottom: 20px;
}
.services-item .content h3 a {
  color: var(--titleColor);
}
.services-item .content .learn-btn {
  padding: 15px 35px;
  text-align: center;
  color: var(--mainColor);
  font-size: var(--fontSize);
  font-weight: 400;
  transition: var(--transition);
  display: inline-block;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  width: 200px;
  margin: 0 auto;
  bottom: -28px;
  z-index: 1;
  background: #FAEFED;
  box-shadow: none;
  overflow: hidden;
  white-space: nowrap;
}
.services-item .content .learn-btn i {
  position: relative;
  top: 3px;
  margin-left: 10px;
}
.services-item .content .learn-btn:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 550px;
  height: 550px;
  margin: auto;
  background: var(--mainColor);
  border-radius: 50%;
  z-index: -1;
  transform-origin: top center;
  transform: translateX(-50%) translateY(-5%) scale(0.4);
  transition: transform 0.9s;
}
.services-item .content .learn-btn:hover {
  color: var(--whiteColor) !important;
}
.services-item .content .learn-btn:hover:before {
  transition: transform 1s;
  transform: translateX(-45%) translateY(0) scale(1);
  transform-origin: bottom center;
}

.services-item-two {
  margin-bottom: 30px;
  background-color: var(--whiteColor);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
}
.services-item-two a {
  display: block;
}
.services-item-two a img {
  max-width: 100%;
}
.services-item-two .content {
  padding: 32px 30px;
  position: relative;
  z-index: 1;
}
.services-item-two .content .icon {
  position: relative;
  z-index: 1;
  width: 80px;
  height: 80px;
  line-height: 87px;
  font-size: 32px;
  color: var(--mainColor);
  text-align: center;
  display: inline-block;
  margin-bottom: 12px;
  transition: 0.9s;
}
.services-item-two .content .icon:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/services-icon.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.services-item-two .content h3 {
  margin-bottom: 12px;
}
.services-item-two .content h3 a {
  color: var(--titleColor);
}
.services-item-two .content p {
  margin-bottom: 20px;
}
.services-item-two .content .learn-btn {
  padding: 15px 35px;
  text-align: center;
  color: var(--mainColor);
  background-color: transparent;
  border: 1px solid #EEEEEE;
  font-size: var(--fontSize);
  font-weight: 400;
  transition: var(--transition);
  display: inline-block;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: none;
  overflow: hidden;
  white-space: nowrap;
}
.services-item-two .content .learn-btn i {
  position: relative;
  top: 3px;
  margin-left: 10px;
}
.services-item-two .content .learn-btn:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 550px;
  height: 550px;
  margin: auto;
  background: var(--mainColor);
  border-radius: 50%;
  z-index: -1;
  transform-origin: top center;
  transform: translateX(-50%) translateY(-5%) scale(0.4);
  transition: 0.9s;
}
.services-item-two .content .learn-btn:hover {
  color: var(--whiteColor) !important;
}
.services-item-two .content .learn-btn:hover:before {
  transition: transform 1s;
  transform: translateX(-45%) translateY(0) scale(1);
  transform-origin: bottom center;
}
.services-item-two .content .content-right {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
}
.services-item-two:hover .content .icon::before {
  animation: rotate360 10s infinite;
}
.services-item-two:hover .content h3 a {
  color: var(--mainColor);
}

.services-bottom-btn .default-btn.two {
  border-color: #EEEEEE;
}

.services-shape {
  position: absolute;
  bottom: 25%;
  left: 0;
  z-index: -1;
  animation: moveleftbounce 4s linear infinite;
}

.services-details-content h1, .services-details-content h2, .services-details-content h3, .services-details-content h4, .services-details-content h5, .services-details-content h6 {
  margin-bottom: 15px;
}
.services-details-content h1 {
  font-size: 40px;
}
.services-details-content h2 {
  font-size: 35px;
}
.services-details-content h3 {
  font-size: 26px;
}
.services-details-content h4 {
  font-size: 24px;
}
.services-details-content h5 {
  font-size: 22px;
}
.services-details-content h6 {
  font-size: 20px;
}
.services-details-content a {
  color: var(--mainColor);
}
.services-details-content a:hover {
  color: var(--titleColor);
}
.services-details-content ul, .services-details-content ol {
  margin-bottom: 30px;
}
.services-details-content ul li, .services-details-content ol li {
  margin-bottom: 10px;
}
.services-details-content ul li:last-child, .services-details-content ol li:last-child {
  margin-bottom: 0;
}
.services-details-content .title {
  margin-bottom: 30px;
  line-height: 1.2;
}
.services-details-content p {
  margin-bottom: 15px;
}
.services-details-content .services-preview-img {
  margin-bottom: 30px;
}

/*================================
Intro Video Area
===================================*/
.intro-video-area {
  position: relative;
  z-index: 1;
}
.intro-video-area::before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 70%;
  background-image: url(../images/video-img1.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.intro-video-area::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 70%;
  background-color: var(--mainColor);
  opacity: 0.8;
}
.intro-video-area .section-title h2 {
  max-width: 540px;
}

.video-content {
  background-image: url(../images/video-img1.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 270px 0;
  text-align: center;
  border-radius: 5px;
}
.video-content .play-btn {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  background-color: var(--whiteColor);
  border-radius: 50%;
  color: var(--mainColor);
  font-size: 30px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.video-content .play-btn::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -15px;
  right: 0;
  left: -15px;
  width: 100px;
  height: 100px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  animation: ripple 5s infinite ease-in-out;
  transition: var(--transition);
}
.video-content .play-btn::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -30px;
  right: 0;
  left: -30px;
  width: 130px;
  height: 130px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  animation: ripple 5s infinite ease-in-out;
  transition: var(--transition);
}
.video-content .play-btn:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.video-content .play-btn:hover::before {
  background-color: rgba(145, 20, 57, 0.5);
}
.video-content .play-btn:hover::after {
  background-color: rgba(145, 20, 57, 0.2);
}

.intro-video-bg {
  background-image: url(../images/video-bg2.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 150px 0;
  text-align: center;
  border-radius: 5px;
  position: relative;
  z-index: 1;
}
.intro-video-bg::before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: var(--titleColor);
  opacity: 0.9;
}

.video-content-two .play-btn {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  background-color: var(--whiteColor);
  border-radius: 50%;
  color: var(--mainColor);
  font-size: 30px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.video-content-two .play-btn::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -15px;
  right: 0;
  left: -15px;
  width: 100px;
  height: 100px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  animation: ripple 5s infinite ease-in-out;
  transition: var(--transition);
}
.video-content-two .play-btn::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -30px;
  right: 0;
  left: -30px;
  width: 130px;
  height: 130px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  animation: ripple 5s infinite ease-in-out;
  transition: var(--transition);
}
.video-content-two .play-btn:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.video-content-two .play-btn:hover::before {
  background-color: rgba(145, 20, 57, 0.5);
}
.video-content-two .play-btn:hover::after {
  background-color: rgba(145, 20, 57, 0.2);
}
.video-content-two .section-title h2 {
  max-width: 540px;
}

.intro-video-bg2 {
  background-image: url(../images/video-bg3.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
}

.video-content-two-bg {
  background-color: var(--whiteColor);
  padding: 120px 0;
  border-radius: 10px;
  position: relative;
}
.video-content-two-bg .play-btn {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  background-color: var(--whiteColor);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.09);
  border-radius: 50%;
  color: var(--mainColor);
  font-size: 30px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.video-content-two-bg .play-btn::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -15px;
  right: 0;
  left: -15px;
  width: 100px;
  height: 100px;
  background-color: rgba(32, 32, 49, 0.15);
  border-radius: 50%;
  animation: ripple 5s infinite ease-in-out;
  transition: var(--transition);
}
.video-content-two-bg .play-btn::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -30px;
  right: 0;
  left: -30px;
  width: 130px;
  height: 130px;
  background-color: rgba(32, 32, 49, 0.1);
  border-radius: 50%;
  animation: ripple 5s infinite ease-in-out;
  transition: var(--transition);
}
.video-content-two-bg .play-btn:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.video-content-two-bg .play-btn:hover::before {
  background-color: rgba(145, 20, 57, 0.5);
}
.video-content-two-bg .play-btn:hover::after {
  background-color: rgba(145, 20, 57, 0.2);
}
.video-content-two-bg .section-title h2 {
  max-width: 540px;
}
.video-content-two-bg .top-vector {
  position: absolute;
  top: 0;
  left: 0;
}
.video-content-two-bg .bottom-vector {
  position: absolute;
  bottom: 0;
  right: 0;
}

/*================================
Products Area
===================================*/
.products-area {
  position: relative;
}

.products-card {
  margin-bottom: 30px;
  background-color: var(--whiteColor);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 1;
}
.products-card .product-img {
  position: relative;
  background-color: var(--whiteColor);
  text-align: center;
}
.products-card .product-img a {
  display: block;
}
.products-card .product-img a img {
  max-width: 100%;
  position: relative;
  padding: 65px;
}
.products-card .product-img .products-action {
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-70%);
  list-style-type: none;
  margin: 0;
  background-color: var(--whiteColor);
  padding: 15px 20px;
  width: 265px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}
.products-card .product-img .products-action li {
  display: inline-block;
  margin-right: 10px;
  transform: translateY(30px);
  transition: all 0.3s ease-in-out 0s;
  opacity: 0;
}
.products-card .product-img .products-action li:last-child {
  margin-right: 0;
}
.products-card .product-img .products-action li:nth-child(1) {
  transition-delay: 0.1s;
}
.products-card .product-img .products-action li:nth-child(2) {
  transition-delay: 0.2s;
}
.products-card .product-img .products-action li:nth-child(3) {
  transition-delay: 0.3s;
}
.products-card .product-img .products-action li:nth-child(4) {
  transition-delay: 0.4s;
}
.products-card .product-img .products-action li a {
  display: inline-block;
}
.products-card .product-img .products-action li a i {
  width: 45px;
  height: 45px;
  line-height: 45px;
  background-color: transparent;
  font-size: 20px;
  color: var(--mainColor);
  border: 1px solid var(--mainColor);
  border-radius: 50px;
  display: inline-block;
  transition: var(--transition);
}
.products-card .product-img .products-action li a i:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.products-card .product-img .products-action-two {
  position: absolute;
  top: 30px;
  left: 30px;
  opacity: 0;
  list-style-type: none;
  margin: 0;
  padding: 0;
  transition: var(--transition);
}
.products-card .product-img .products-action-two li {
  display: block;
  margin-bottom: 10px;
  transform: translateY(30px);
  transition: all 0.3s ease-in-out 0s;
  opacity: 0;
}
.products-card .product-img .products-action-two li:last-child {
  margin-bottom: 0;
}
.products-card .product-img .products-action-two li:nth-child(1) {
  transition-delay: 0.1s;
}
.products-card .product-img .products-action-two li:nth-child(2) {
  transition-delay: 0.2s;
}
.products-card .product-img .products-action-two li:nth-child(3) {
  transition-delay: 0.3s;
}
.products-card .product-img .products-action-two li:nth-child(4) {
  transition-delay: 0.4s;
}
.products-card .product-img .products-action-two li:nth-child(5) {
  transition-delay: 0.6s;
}
.products-card .product-img .products-action-two li a {
  display: inline-block;
}
.products-card .product-img .products-action-two li a i {
  width: 45px;
  height: 45px;
  line-height: 45px;
  background-color: #FAEFED;
  font-size: 20px;
  color: var(--mainColor);
  border-radius: 50px;
  display: inline-block;
  transition: var(--transition);
  text-align: center;
}
.products-card .product-img .products-action-two li a i:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.products-card .content {
  padding: 0 30px 50px;
  text-align: center;
}
.products-card .content h3 {
  margin-bottom: 10px;
}
.products-card .content h3 a {
  color: var(--titleColor);
  transition: var(--transition);
}
.products-card .content span {
  color: var(--bodyColor);
  margin-bottom: 10px;
  display: block;
}
.products-card .content .rating {
  color: #FDC22D;
  font-size: var(--fontSize);
  margin-bottom: 0;
}
.products-card .content .rating i {
  display: inline-block;
}
.products-card:hover .product-img .products-action {
  opacity: 1;
  transform: translate(-50%);
}
.products-card:hover .product-img .products-action li {
  transform: translateY(0);
  opacity: 1;
}
.products-card:hover .product-img .products-action-two {
  opacity: 1;
}
.products-card:hover .product-img .products-action-two li {
  transform: translateY(0);
  opacity: 1;
}
.products-card:hover .content h3 a {
  color: var(--mainColor);
}
.products-card.products-card-short-css .product-img a img {
  padding: 30px;
}
.products-card.products-card-short-css .content {
  padding: 0 20px 50px;
}

.products-item {
  margin-bottom: 30px;
  background-color: var(--whiteColor);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
  padding: 20px;
  transition: var(--transition);
}
.products-item .product-img {
  position: relative;
  background-color: #F5F5F5;
  text-align: center;
}
.products-item .product-img a {
  display: block;
}
.products-item .product-img a img {
  max-width: 100%;
  position: relative;
  padding: 35px;
}
.products-item .product-img .products-action {
  position: absolute;
  top: 30px;
  right: 30px;
  opacity: 0;
  list-style-type: none;
  margin: 0;
  transition: var(--transition);
}
.products-item .product-img .products-action li {
  display: block;
  margin-bottom: 10px;
  transform: translateY(30px);
  transition: all 0.3s ease-in-out 0s;
  opacity: 0;
}
.products-item .product-img .products-action li:last-child {
  margin-bottom: 0;
}
.products-item .product-img .products-action li:nth-child(1) {
  transition-delay: 0.1s;
}
.products-item .product-img .products-action li:nth-child(2) {
  transition-delay: 0.2s;
}
.products-item .product-img .products-action li:nth-child(3) {
  transition-delay: 0.3s;
}
.products-item .product-img .products-action li:nth-child(4) {
  transition-delay: 0.4s;
}
.products-item .product-img .products-action li a {
  display: inline-block;
}
.products-item .product-img .products-action li a i {
  width: 45px;
  height: 45px;
  line-height: 45px;
  background-color: transparent;
  font-size: 20px;
  color: var(--mainColor);
  border: 1px solid var(--mainColor);
  border-radius: 50px;
  display: inline-block;
  transition: var(--transition);
}
.products-item .product-img .products-action li a i:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.products-item .content {
  padding: 35px 10px 21px;
}
.products-item .content h3 {
  margin-bottom: 12px;
}
.products-item .content h3 a {
  color: var(--titleColor);
  transition: var(--transition);
}
.products-item .content span {
  color: var(--bodyColor);
  margin-bottom: 10px;
  display: block;
}
.products-item .content .rating {
  color: #FDC22D;
  font-size: 18px;
  margin-bottom: 10px;
}
.products-item .content .rating i {
  display: inline-block;
}
.products-item .content p {
  margin-bottom: 17px;
}
.products-item:hover {
  transform: translateY(-10px);
}
.products-item:hover .product-img .products-action {
  opacity: 1;
}
.products-item:hover .product-img .products-action li {
  transform: translateY(0);
  opacity: 1;
}
.products-item:hover .content h3 a {
  color: var(--mainColor);
}

.product-vector-area .vector1 {
  position: absolute;
  top: -20px;
  left: 0;
}
.product-vector-area .vector1 img {
  animation: moveleftbounce 5s linear infinite;
}
.product-vector-area .vector2 {
  position: absolute;
  z-index: -1;
  bottom: 100px;
  right: 0;
}
.product-vector-area .vector2 img {
  animation: movebounce 5s linear infinite;
}
.product-vector-area .vector3 {
  position: absolute;
  z-index: -1;
  bottom: 50px;
  right: 3%;
}
.product-vector-area .vector3 img {
  animation: movebounce 5s linear infinite;
}

.products-item-two {
  margin-bottom: 30px;
  background-color: var(--whiteColor);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}
.products-item-two .product-img {
  position: relative;
}
.products-item-two .product-img a {
  display: block;
}
.products-item-two .product-img a img {
  max-width: 100%;
}
.products-item-two .product-img .products-action {
  position: absolute;
  top: 30px;
  left: 30px;
  opacity: 0;
  list-style-type: none;
  margin: 0;
  padding: 0;
  transition: var(--transition);
}
.products-item-two .product-img .products-action li {
  display: block;
  margin-bottom: 10px;
  transform: translateY(30px);
  transition: all 0.3s ease-in-out 0s;
  opacity: 0;
}
.products-item-two .product-img .products-action li:last-child {
  margin-bottom: 0;
}
.products-item-two .product-img .products-action li:nth-child(1) {
  transition-delay: 0.1s;
}
.products-item-two .product-img .products-action li:nth-child(2) {
  transition-delay: 0.2s;
}
.products-item-two .product-img .products-action li:nth-child(3) {
  transition-delay: 0.3s;
}
.products-item-two .product-img .products-action li:nth-child(4) {
  transition-delay: 0.4s;
}
.products-item-two .product-img .products-action li:nth-child(5) {
  transition-delay: 0.6s;
}
.products-item-two .product-img .products-action li a {
  display: inline-block;
}
.products-item-two .product-img .products-action li a i {
  width: 45px;
  height: 45px;
  line-height: 45px;
  background-color: var(--whiteColor);
  font-size: 20px;
  color: var(--mainColor);
  border-radius: 50px;
  display: inline-block;
  transition: var(--transition);
  text-align: center;
}
.products-item-two .product-img .products-action li a i:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.products-item-two .content {
  padding: 35px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.products-item-two .content .title h3 {
  margin-bottom: 5px;
}
.products-item-two .content .title h3 a {
  color: var(--titleColor);
  transition: var(--transition);
}
.products-item-two .content .title span {
  color: var(--bodyColor);
  margin-bottom: 0;
  display: block;
}
.products-item-two .content .rating {
  color: #FDC22D;
  font-size: var(--fontSize);
}
.products-item-two .content .rating i {
  display: inline-block;
}
.products-item-two:hover {
  transform: translateY(-10px);
}
.products-item-two:hover .product-img .products-action {
  opacity: 1;
}
.products-item-two:hover .product-img .products-action li {
  transform: translateY(0);
  opacity: 1;
}
.products-item-two:hover .content .title h3 a {
  color: var(--mainColor);
}

.product-topper .product-title h3 {
  font-family: var(--bodyFonts);
  font-size: 16px;
  color: var(--bodyColor);
  margin-bottom: 0;
  font-weight: 500;
}
.product-topper .product-list {
  vertical-align: middle;
  position: relative;
  background-color: transparent;
  border: 1px solid #EEEEEE;
}
.product-topper .product-list i {
  display: inline-block;
  position: absolute;
  top: 12px;
  right: 15px;
  color: var(--bodyColor);
  font-size: 20px;
  transition: var(--transition);
}
.product-topper .product-list .form-select {
  color: var(--bodyColor);
  background-color: transparent;
  border: 0;
  background-image: unset;
  padding: 17px 40px 17px 20px;
}
.product-topper .product-list .form-select:focus {
  box-shadow: none;
}
.product-topper .product-list .form-select:focus i {
  transform: rotate(-45deg);
}
.product-topper .product-list .form-select option {
  color: var(--bodyColor);
  padding-top: 5px;
  padding-bottom: 5px;
}
.product-topper .product-list:hover {
  box-shadow: none;
}
.product-topper .product-list:hover i {
  transform: rotate(180deg);
}

/*================================
Product Details Area
===================================*/
.product-details-desc .products-quickView-image {
  background-color: var(--whiteColor);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
  margin-bottom: 30px;
  text-align: center;
}
.product-details-desc .products-quickView-image img {
  max-width: 100%;
  padding: 60px;
  text-align: center;
  margin: 0 auto;
}

.product-desc h3 {
  margin-bottom: 15px;
  font-size: 26px;
}
.product-desc .product-review {
  margin-bottom: 15px;
}
.product-desc .product-review .rating {
  display: inline-block;
  padding-right: 5px;
  font-size: 16px;
}
.product-desc .product-review .rating i {
  color: #FDC22D;
}
.product-desc .product-review .rating-count {
  margin-left: 5px;
  display: inline-block;
  color: #888888;
  font-weight: 400;
}
.product-desc .price {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 500;
}
.product-desc .price .new-price {
  color: var(--mainColor);
}
.product-desc .price .old-price {
  text-decoration: line-through;
  color: var(--bodyColor);
  margin-right: 10px;
}
.product-desc p {
  margin-bottom: 20px;
}
.product-desc .product-category-list {
  list-style-type: none;
  margin: 0 0 20px;
  padding: 0;
}
.product-desc .product-category-list li {
  margin-bottom: 7px;
  display: block;
  color: var(--titleColor);
  max-width: 230px;
  font-family: var(--headerFonts);
  font-weight: 600;
}
.product-desc .product-category-list li span {
  color: var(--bodyColor);
  float: right;
  font-family: var(--bodyFonts);
  font-weight: 400;
}
.product-desc .product-category-list li:last-child {
  margin-bottom: 0;
}
.product-desc .input-counter-area {
  margin-bottom: 20px;
}
.product-desc .input-counter-area h4 {
  font-size: 16px;
  display: inline-block;
  font-weight: 600;
  margin-right: 15px;
}
.product-desc .input-counter-area .input-counter {
  max-width: 150px;
  min-width: 150px;
  margin-right: 15px;
  text-align: center;
  display: inline-block;
  position: relative;
  font-weight: 600;
  background-color: rgba(107, 146, 70, 0.0012);
  height: 55px;
}
.product-desc .input-counter-area .input-counter span {
  position: absolute;
  top: 4px;
  background-color: transparent;
  cursor: pointer;
  color: --bodyColor;
  width: 50px;
  height: 43px;
  line-height: 43px;
  transition: 0.5s;
}
.product-desc .input-counter-area .input-counter span:hover {
  color: var(--mainColor);
}
.product-desc .input-counter-area .input-counter span i {
  position: relative;
  top: 2px;
  font-weight: 600;
}
.product-desc .input-counter-area .input-counter .minus-btn {
  left: 0;
}
.product-desc .input-counter-area .input-counter .plus-btn {
  right: 0;
}
.product-desc .input-counter-area .input-counter input {
  height: 53px;
  color: --bodyColor;
  outline: 0;
  display: block;
  border: none;
  background-color: transparent;
  text-align: center;
  width: 100%;
  font-size: 18px;
  font-weight: 500;
}
.product-desc .product-add-btn {
  display: inline-block;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #EEEEEE;
  position: relative;
  top: 2px;
  width: 100%;
}
.product-desc .product-add-btn .default-btn {
  margin-right: 15px;
}
.product-desc .product-add-btn .products-action {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
  top: 3px;
}
.product-desc .product-add-btn .products-action li {
  display: inline-block;
  margin-right: 15px;
}
.product-desc .product-add-btn .products-action li a {
  display: inline-block;
}
.product-desc .product-add-btn .products-action li a i {
  width: 57px;
  height: 57px;
  line-height: 57px;
  background-color: var(--whiteColor);
  font-size: 20px;
  color: var(--mainColor);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
  border-radius: 5px;
  display: inline-block;
  transition: var(--transition);
  text-align: center;
}
.product-desc .product-add-btn .products-action li a i:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.product-desc .product-share ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.product-desc .product-share ul li {
  display: inline-block;
  margin: 0 3px;
  align-items: center;
}
.product-desc .product-share ul li span {
  display: inline-block;
  padding-right: 5px;
  font-size: 16px;
  color: var(--titleColor);
  font-weight: 600;
}
.product-desc .product-share ul li a i {
  color: var(--mainColor);
  background-color: var(--whiteColor);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
  font-size: 16px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  display: inline-block;
  transition: var(--transition);
  border-radius: 50px;
  text-align: center;
}
.product-desc .product-share ul li a:hover i {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}

.shop-detls-tab .tabs {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}
.shop-detls-tab .tabs li {
  display: inline-block;
  margin-right: 30px;
  font-weight: 600;
  color: var(--titleColor);
  font-family: var(--headerFonts);
  font-size: 20px;
  cursor: pointer;
  transition: var(--transition);
}
.shop-detls-tab .tabs li:focus {
  color: var(--mainColor);
}
.shop-detls-tab .tabs li.active {
  color: var(--mainColor);
}
.shop-detls-tab .tabs li.current {
  color: var(--mainColor);
}
.shop-detls-tab .tabs li:hover {
  color: var(--mainColor);
}

.tab .tabs_item {
  display: none;
}
.tab .tabs_item:first-child {
  display: block;
}

.shop-detls-tab-content {
  margin-bottom: 30px;
}
.shop-detls-tab-content .shop-detls-into {
  max-width: 900px;
  background-color: var(--whiteColor);
  padding: 70px;
  margin: 0 auto;
  border-radius: 15px;
}
.shop-detls-tab-content p {
  margin-bottom: 20px;
}
.shop-detls-tab-content p:last-child {
  margin-bottom: 0;
}
.shop-detls-tab-content .additional-information {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
  text-align: left;
}
.shop-detls-tab-content .additional-information li {
  border: 1px solid #F5F5F5;
  border-bottom: none;
  padding: 10px 15px 7px;
  color: var(--bodyColor);
}
.shop-detls-tab-content .additional-information li:last-child {
  border-bottom: 1px solid #F5F5F5;
}
.shop-detls-tab-content .additional-information li span {
  display: inline-block;
  width: 40%;
  color: var(--titleColor);
  font-weight: 600;
}
.shop-detls-tab-content h3 {
  margin-bottom: 15px;
  font-size: 24px;
}
.shop-detls-tab-content .shop-review-form .review-title {
  position: relative;
}
.shop-detls-tab-content .shop-review-form .review-title .rating {
  display: inline-block;
}
.shop-detls-tab-content .shop-review-form .review-title .rating i {
  color: #ffc107;
  font-size: 14px;
}
.shop-detls-tab-content .shop-review-form .review-title .rating p {
  margin-bottom: 0;
  display: inline-block;
  padding-left: 5px;
  line-height: initial;
}
.shop-detls-tab-content .shop-review-form .review-title .btn-right {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 14px;
  color: var(--whiteColor);
  background-color: var(--mainColor);
  padding: 7px 15px;
  border-radius: 5px;
}
.shop-detls-tab-content .shop-review-form .review-title .btn-right:hover {
  background-color: var(--titleColor);
  color: var(--whiteColor);
}
.shop-detls-tab-content .shop-review-form .review-comments {
  margin-top: 35px;
}
.shop-detls-tab-content .shop-review-form .review-comments .review-item {
  margin-top: 30px;
  position: relative;
  padding-right: 200px;
  border-top: 1px dashed #eeeeee;
  padding-top: 30px;
}
.shop-detls-tab-content .shop-review-form .review-comments .review-item .content {
  position: relative;
  z-index: 1;
  padding: 3px 0 3px 80px;
  margin-bottom: 15px;
}
.shop-detls-tab-content .shop-review-form .review-comments .review-item .content img {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  max-width: 60px;
}
.shop-detls-tab-content .shop-review-form .review-comments .review-item .content .content-dtls h4 {
  font-size: 18px;
  margin-bottom: 5px;
  margin-top: 0;
}
.shop-detls-tab-content .shop-review-form .review-comments .review-item .content .content-dtls span {
  color: var(--mainColor);
  font-size: 14px;
}
.shop-detls-tab-content .shop-review-form .review-comments .review-item .rating i {
  color: #ffc107;
  font-size: 14px;
}
.shop-detls-tab-content .shop-review-form .review-comments .review-item h3 {
  font-size: 21px;
  margin-top: 15px;
  margin-bottom: 15px;
  color: var(--titleColor);
}
.shop-detls-tab-content .shop-review-form .review-comments .review-item p {
  margin-bottom: 0;
}
.shop-detls-tab-content .shop-review-form .review-comments .review-item .review-report-link {
  position: absolute;
  right: 0;
  color: rgba(218, 29, 37, 0.0053);
  top: 40px;
  text-decoration: underline;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
}
.shop-detls-tab-content .shop-review-form .review-comments .review-item .review-report-link:hover {
  color: var(--mainColor);
}
.shop-detls-tab-content .shop-review-form .review-form {
  margin-top: 25px;
}
.shop-detls-tab-content .shop-review-form .review-form .contact-form {
  max-width: 100%;
  margin: 0 auto;
  background-color: transparent;
  box-shadow: none;
  padding: 0;
}
.shop-detls-tab-content .shop-review-form .review-form .contact-form h4 {
  margin-bottom: 25px;
}

/*=================================
Cart Wraps Area
===================================*/
.cart-wraps-area .cart-table {
  margin-bottom: 30px;
}
.cart-wraps-area .cart-table table {
  margin-bottom: 0;
}
.cart-wraps-area .cart-table table:not(:first-child) {
  border-bottom: none;
}
.cart-wraps-area .cart-table table thead tr th {
  border-bottom-width: 0px;
  vertical-align: middle;
  padding: 15px 30px;
  border: none;
  font-weight: 600;
  font-size: 18px;
  border-right: 1px solid #dee2e6;
  text-align: center;
  font-family: var(--headerFonts);
  color: var(--titleColor);
}
.cart-wraps-area .cart-table table thead tr th:first-child {
  border-left: 1px solid #dee2e6;
}
.cart-wraps-area .cart-table table tbody {
  border-top: none;
}
.cart-wraps-area .cart-table table tbody tr td {
  vertical-align: middle;
  color: var(--titleColor);
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 0;
  padding-right: 0;
  font-size: 15px;
  border-color: #eeeeee;
  border-right: 1px solid #dee2e6;
  text-align: center;
}
.cart-wraps-area .cart-table table tbody tr td:first-child {
  border-left: 1px solid #dee2e6;
}
.cart-wraps-area .cart-table table tbody tr td.product-thumbnail a {
  display: block;
}
.cart-wraps-area .cart-table table tbody tr td.product-thumbnail a img {
  max-width: 100px;
  background-color: #FAEFED;
  padding: 20px 25px;
}
.cart-wraps-area .cart-table table tbody tr td.product-trash {
  font-size: 22px;
  color: var(--mainColor);
}
.cart-wraps-area .cart-table table tbody tr td.product-name a {
  color: var(--titleColor);
  display: inline-block;
  font-size: 16px;
}
.cart-wraps-area .cart-table table tbody tr td.product-name a:hover {
  color: var(--mainColor) !important;
}
.cart-wraps-area .cart-table table tbody tr td.product-name .rating {
  margin-top: 10px;
  font-size: 16px;
}
.cart-wraps-area .cart-table table tbody tr td.product-name .rating i {
  color: #FFC107;
}
.cart-wraps-area .cart-table table tbody tr td.product-name .rating span {
  color: #908f8f;
  margin-left: 5px;
  position: relative;
  top: -4px;
}
.cart-wraps-area .cart-table table tbody tr td.product-quantity .input-counter {
  margin-top: 10px;
  max-width: 150px;
  min-width: 150px;
  text-align: center;
  display: inline-block;
  position: relative;
  margin-bottom: 15px;
  border: 1px solid #E1E1E1;
}
.cart-wraps-area .cart-table table tbody tr td.product-quantity .input-counter span {
  position: absolute;
  top: 0;
  background-color: transparent;
  cursor: pointer;
  color: var(--bodyColor);
  width: 40px;
  height: 100%;
  line-height: 45px;
  transition: 0.5s;
}
.cart-wraps-area .cart-table table tbody tr td.product-quantity .input-counter span:hover {
  color: var(--mainColor);
}
.cart-wraps-area .cart-table table tbody tr td.product-quantity .input-counter .minus-btn {
  left: 0;
  border-right: 1px solid #E1E1E1;
}
.cart-wraps-area .cart-table table tbody tr td.product-quantity .input-counter .plus-btn {
  right: 0;
  border-left: 1px solid #E1E1E1;
}
.cart-wraps-area .cart-table table tbody tr td.product-quantity .input-counter input {
  height: 40px;
  color: var(--bodyColor);
  outline: 0;
  display: block;
  border: none;
  background-color: transparent;
  text-align: center;
  width: 100%;
  font-size: 18px;
  font-weight: 500;
}
.cart-wraps-area .cart-table table tbody tr td.product-quantity .input-counter input:focus::-webkit-input-placeholder, .cart-wraps-area .cart-table table tbody tr td.product-quantity .input-counter input:focus:-ms-input-placeholder, .cart-wraps-area .cart-table table tbody tr td.product-quantity .input-counter input:focus::-ms-input-placeholder, .cart-wraps-area .cart-table table tbody tr td.product-quantity .input-counter input:focus::placeholder {
  color: var(--titleColor);
}
.cart-wraps-area .cart-buttons {
  margin-bottom: 30px;
}
.cart-wraps-area .cart-buttons .cart-widget-form-area {
  max-width: 430px;
}
.cart-wraps-area .cart-buttons .cart-widget-form-area .cart-widget-form {
  position: relative;
}
.cart-wraps-area .cart-buttons .cart-widget-form-area .cart-widget-form .form-control {
  background-color: #FAEFED;
  border-radius: 0;
  height: 57px;
  line-height: 57px;
  margin: 0;
  border: none;
  padding: 0 25px;
  color: var(--bodyColor);
}
.cart-wraps-area .cart-buttons .cart-widget-form-area .cart-widget-form .form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: var(--titleColor);
}
.cart-wraps-area .cart-buttons .cart-widget-form-area .cart-widget-form .subscribe-btn {
  position: absolute;
  display: inline-block;
  right: 0;
  top: 0;
  background-color: var(--mainColor);
  color: var(--whiteColor);
  height: 57px;
  line-height: 59px;
  padding: 0 25px;
  border: 0;
  transition: var(--transition);
  text-align: center;
}
.cart-wraps-area .cart-buttons .cart-widget-form-area .cart-widget-form .subscribe-btn:hover {
  background-color: var(--titleColor);
  color: var(--whiteColor);
}
.cart-wraps-area .cart-buttons .default-btn.two {
  border-color: #EEEEEE;
  color: var(--mainColor);
  transition: var(--transition);
  margin-right: 20px;
}
.cart-wraps-area .cart-buttons .default-btn.two::before {
  background-color: var(--mainColor);
}
.cart-wraps-area .cart-buttons .default-btn.two:hover {
  color: var(--whiteColor);
}
.cart-wraps-area .cart-buttons .product-share ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.cart-wraps-area .cart-buttons .product-share ul li {
  display: inline-block;
  margin: 0 3px;
  align-items: center;
}
.cart-wraps-area .cart-buttons .product-share ul li span {
  display: inline-block;
  padding-right: 5px;
  font-size: 16px;
  color: var(--titleColor);
  font-weight: 600;
}
.cart-wraps-area .cart-buttons .product-share ul li a i {
  color: var(--mainColor);
  background-color: var(--whiteColor);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
  font-size: 16px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  transition: var(--transition);
  border-radius: 50px;
  text-align: center;
}
.cart-wraps-area .cart-buttons .product-share ul li a:hover i {
  color: var(--whiteColor);
  background-color: var(--mainColor);
}

/*=================================
Checkout Area
===================================*/
.checkout-user {
  margin-bottom: 30px;
  padding: 16px 30px;
  background-color: #FAEFED;
}
.checkout-user span {
  color: var(--bodyColor);
}
.checkout-user span a {
  color: var(--mainColor);
  transition: var(--transition);
}
.checkout-user span a:hover {
  color: var(--titleColor);
}

.checkout-coupon-form-area {
  max-width: 430px;
  margin-bottom: 30px;
}
.checkout-coupon-form-area .checkout-coupon-form {
  position: relative;
}
.checkout-coupon-form-area .checkout-coupon-form .form-control {
  background-color: #FAEFED;
  border-radius: 0;
  height: 57px;
  line-height: 57px;
  margin: 0;
  border: none;
  padding: 0 25px;
  color: var(--bodyColor);
}
.checkout-coupon-form-area .checkout-coupon-form .form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: var(--titleColor);
}
.checkout-coupon-form-area .checkout-coupon-form .subscribe-btn {
  position: absolute;
  display: inline-block;
  right: 0;
  top: 0;
  background-color: var(--mainColor);
  color: var(--whiteColor);
  height: 57px;
  line-height: 59px;
  padding: 0 25px;
  border: 0;
  transition: var(--transition);
  text-align: center;
}
.checkout-coupon-form-area .checkout-coupon-form .subscribe-btn:hover {
  background-color: var(--titleColor);
  color: var(--whiteColor);
}

.billing-details {
  margin-bottom: 30px;
}
.billing-details h3 {
  margin-bottom: 25px;
}
.billing-details .form-group {
  margin-bottom: 25px;
}
.billing-details .form-group .form-control {
  font-size: var(--fontSize);
  height: 55px;
  color: var(--bodyColor);
  border: 1px solid #EEEEEE;
  background-color: transparent;
  border-radius: 0;
  padding: 10px 20px;
  width: 100%;
}
.billing-details .form-group .form-control:focus, .billing-details .form-group .form-control :hover {
  outline: 0;
  box-shadow: none;
}
.billing-details .form-group .form-message {
  font-size: var(--fontSize);
  padding: 10px 20px;
  color: var(--bodyColor);
  border: 1px solid #EEEEEE;
  background-color: transparent;
  border-radius: 0;
  width: 100%;
}
.billing-details .form-group .form-message:focus, .billing-details .form-group .form-message :hover {
  outline: 0;
  box-shadow: none;
}
.billing-details .default-btn {
  width: 100%;
  text-align: center;
}
.billing-details .default-btn::before {
  width: 1200px;
}

.checkout-table {
  background-color: #FAEFED;
  padding: 30px;
}
.checkout-table .cart-table table {
  margin-bottom: 0;
}
.checkout-table .cart-table table:not(:first-child) {
  border-top: none;
}
.checkout-table .cart-table table tbody {
  border-top: none;
}
.checkout-table .cart-table table tbody tr {
  border: none;
}
.checkout-table .cart-table table tbody tr td {
  vertical-align: middle;
  color: var(--titleColor);
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 0;
  padding-right: 20px;
  font-size: 15px;
  border: none;
  text-align: center;
}
.checkout-table .cart-table table tbody tr td:last-child {
  padding-right: 0;
}
.checkout-table .cart-table table tbody tr td.product-thumbnail a {
  display: block;
}
.checkout-table .cart-table table tbody tr td.product-thumbnail a img {
  max-width: 100px;
  background-color: var(--whiteColor);
  padding: 20px 25px;
}
.checkout-table .cart-table table tbody tr td.product-name a {
  color: var(--titleColor);
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
}
.checkout-table .cart-table table tbody tr td.product-name a:hover {
  color: var(--mainColor) !important;
}
.checkout-table .cart-table table tbody tr td.product-name .rating {
  margin-top: 10px;
  font-size: 16px;
}
.checkout-table .cart-table table tbody tr td.product-name .rating i {
  color: #FFC107;
}
.checkout-table .cart-table table tbody tr td.product-name .rating span {
  color: #908f8f;
  margin-left: 5px;
  position: relative;
  top: -4px;
}
.checkout-table .cart-table table tbody tr td.product-quentaty {
  color: var(--bodyColor);
}
.checkout-table .cart-table table tbody tr td.product-price {
  color: var(--mainColor);
  font-weight: 500;
}

.payment-box {
  margin-bottom: 30px;
}
.payment-box .payment-method h3 {
  margin-bottom: 25px;
}
.payment-box .payment-method p [type=radio]:checked {
  display: none;
}
.payment-box .payment-method p [type=radio]:checked + label {
  padding-left: 27px;
  cursor: pointer;
  display: block;
  font-weight: 500;
  color: var(--titleColor);
  position: relative;
  margin-bottom: 15px;
}
.payment-box .payment-method p [type=radio]:checked + label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border: 1px solid #dddddd;
  border-radius: 50px;
  background: #ffffff;
}
.payment-box .payment-method p [type=radio]:checked + label::after {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--mainColor);
  position: absolute;
  top: 7px;
  left: 4px;
  border-radius: 50px;
  transition: 0.5s;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.payment-box .payment-method p [type=radio]:not(:checked) {
  display: none;
}
.payment-box .payment-method p [type=radio]:not(:checked) + label {
  padding-left: 27px;
  cursor: pointer;
  display: block;
  font-weight: 500;
  color: var(--titleColor);
  position: relative;
  margin-bottom: 15px;
}
.payment-box .payment-method p [type=radio]:not(:checked) + label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border: 1px solid #dddddd;
  border-radius: 50px;
  background: #ffffff;
}
.payment-box .payment-method p [type=radio]:not(:checked) + label::after {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--mainColor);
  position: absolute;
  top: 7px;
  left: 4px;
  border-radius: 50px;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
  transform: scale(0);
}
.payment-box .default-btn {
  margin-top: 7px;
}

.tracking-order-img {
  margin-bottom: 30px;
}

.tracking-order-form {
  margin-bottom: 30px;
}

.compare-wraps .compare-table table {
  margin-bottom: 0;
}
.compare-wraps .compare-table table:not(:first-child) {
  border-top: none;
}
.compare-wraps .compare-table table thead tr th {
  width: 300px;
  vertical-align: middle;
  padding: 0.95rem;
  border-color: #eeeeee !important;
}
.compare-wraps .compare-table table thead tr th.tr-head {
  text-align: center;
  padding: 10px 20px;
  color: var(--titleColor);
  border-bottom-width: 1px;
}
.compare-wraps .compare-table table thead tr th.tr-head .product-table-view .products-card {
  background-color: transparent;
  box-shadow: none;
  margin-bottom: 0;
}
.compare-wraps .compare-table table thead tr th.tr-head .product-table-view .products-card .product-img {
  background-color: #FAEFED;
  margin-bottom: 20px;
}
.compare-wraps .compare-table table thead tr th.tr-head .product-table-view .products-card .content {
  padding: 0;
}
.compare-wraps .compare-table table thead tr th.tr-head .product-table-view .products-card .content h3 {
  font-size: 18px;
}
.compare-wraps .compare-table table tbody {
  border-top: none;
}
.compare-wraps .compare-table table tbody tr td {
  padding: 10px 20px;
  font-size: 15px;
  border-top: none;
}
.compare-wraps .compare-table table tbody tr td.td-title {
  font-size: 16px;
  color: var(--titleColor);
  vertical-align: middle;
}
.compare-wraps .compare-table table tbody tr td.td-name {
  font-size: 16px;
  text-align: center;
  vertical-align: middle;
  color: var(--titleColor);
}

/*=================================
Customer Services Area 
====================================*/
.customer-services-content {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
}
.customer-services-content .customer-services-img {
  margin-bottom: 30px;
  border: 1px solid rgba(107, 146, 70, 0.2);
}
.customer-services-content .customer-services-contact {
  margin-bottom: 30px;
}
.customer-services-content .customer-services-contact span {
  font-size: 15px;
  color: var(--mainColor);
}
.customer-services-content .customer-services-contact h2 {
  font-size: 26px;
  margin-bottom: 15px;
}
.customer-services-content .customer-services-contact p {
  max-width: 900px;
  margin-bottom: 20px;
  display: block;
}
.customer-services-content .single-customer-services {
  margin-bottom: 30px;
}
.customer-services-content .single-customer-services h2 {
  font-size: 26px;
  margin-bottom: 15px;
}
.customer-services-content .single-customer-services ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.customer-services-content .single-customer-services ul li {
  display: block;
  margin-bottom: 7px;
  padding-left: 20px;
  position: relative;
}
.customer-services-content .single-customer-services ul li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 7px;
  height: 7px;
  background-color: var(--mainColor);
  border-radius: 50px;
}

/*=================================
Account Area
===================================*/
.account-tab {
  margin-top: 0;
}
.account-tab .tabs {
  margin: 0 0 30px;
  list-style: none;
  padding: 0;
}
.account-tab .tabs li {
  display: block;
  line-height: initial;
  position: relative;
  margin-bottom: 10px;
  font-size: var(--fontSize);
  font-weight: 600;
  color: var(--mainColor);
  padding: 15px 26px;
  background-color: transparent;
  border: 1px solid #EEEEEE;
  width: 100%;
  border-radius: 10px;
  cursor: pointer;
}
.account-tab .tabs li:last-child {
  margin-bottom: 0;
}
.account-tab .tabs li:focus {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.account-tab .tabs li.active {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.account-tab .tabs li.current {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}

.account-details h2 {
  font-size: 26px;
  margin-bottom: 20px;
}
.account-details p a {
  color: var(--mainColor);
}
.account-details p a:hover {
  color: var(--titleColor);
}

.invoice-table table {
  margin-bottom: 20px;
}
.invoice-table table:not(:first-child) {
  border-top: none;
}
.invoice-table table thead th {
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid #dee2e6 !important;
  font-weight: bold;
  padding: 15px;
}
.invoice-table table tbody:not(:first-child) {
  border-top: none;
}
.invoice-table table tbody td {
  vertical-align: middle;
  color: #6084a4;
  border-width: 1px;
  font-size: 14.5px;
  padding: 15px;
}
.invoice-table table tbody td.total, .invoice-table table tbody td.total-price {
  color: var(--bodyColor);
}
.invoice-table table tbody td strong {
  font-weight: 500;
  color: var(--bodyColor);
}

.invoice-middle h4 {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 500;
}
.invoice-middle h5 {
  margin-bottom: 12px;
  font-weight: 500;
}
.invoice-middle h5 sub {
  margin-left: 50px;
  bottom: 0;
  width: 90px;
  display: inline-block;
  color: var(--bodyColor);
  font-weight: 500;
}
.invoice-middle span {
  font-weight: 500;
  color: var(--bodyColor);
}

/*================================
Pricing Area
===================================*/
.pricing-card {
  margin-bottom: 30px;
  background-color: var(--whiteColor);
  padding: 40px;
  border-radius: 5px;
  transition: var(--transition);
}
.pricing-card ul {
  margin: 0;
  list-style-type: none;
  padding: 0;
}
.pricing-card ul li {
  display: block;
  padding: 5px 0 5px 130px;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}
.pricing-card ul li:last-child {
  margin-bottom: 0;
}
.pricing-card ul li img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
}
.pricing-card ul li .content h3 {
  margin-bottom: 10px;
}
.pricing-card ul li .content h3 span {
  font-size: 16px;
  color: var(--mainColor);
  float: right;
  font-family: var(--bodyFonts);
  font-weight: 500;
}
.pricing-card ul li .content p {
  margin-bottom: 0;
}
.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-item {
  margin-bottom: 30px;
  background-color: var(--whiteColor);
  padding: 30px;
}
.pricing-item img {
  margin-bottom: 15px;
}
.pricing-item h2 {
  font-size: 26px;
  color: var(--mainColor);
  margin-bottom: 20px;
}
.pricing-item ul {
  list-style-type: none;
  margin: 0 0 25px;
  padding: 0;
}
.pricing-item ul li {
  display: block;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #EEEEEE;
}
.pricing-item ul li:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}
.pricing-item ul li .content h3 {
  font-size: 16px;
  color: var(--titleColor);
  margin-bottom: 7px;
  font-family: var(--bodyFonts);
  font-family: 500;
}
.pricing-item ul li .content h3 span {
  float: right;
  color: var(--mainColor);
}
.pricing-item ul li .content p {
  font-size: 14px;
  color: #888888;
}

.pricing-item-two {
  margin-bottom: 30px;
  background-color: var(--whiteColor);
  border-radius: 5px;
  transition: var(--transition);
}
.pricing-item-two img {
  max-width: 100%;
}
.pricing-item-two .content {
  padding: 35px 30px;
}
.pricing-item-two .content h2 {
  font-size: 16px;
  color: var(--bodyColor);
  align-items: center;
  font-family: var(--bodyFonts);
  font-weight: 400;
  margin-bottom: 17px;
}
.pricing-item-two .content h2 span {
  position: relative;
  top: -10px;
  float: right;
  font-size: 35px;
  color: var(--titleColor);
}
.pricing-item-two .content h3 {
  font-size: 26px;
  color: var(--mainColor);
  margin-bottom: 20px;
}
.pricing-item-two .content ul {
  margin: 0 0 25px;
  list-style-type: none;
  padding: 0;
}
.pricing-item-two .content ul li {
  display: block;
  position: relative;
  z-index: 1;
  margin-bottom: 15px;
  color: var(--bodyColor);
}
.pricing-item-two .content ul li span {
  color: var(--mainColor);
  float: right;
}
.pricing-item-two .content ul li:last-child {
  margin-bottom: 0;
}
.pricing-item-two .content .default-btn {
  width: 100%;
  text-align: center;
  border: 1px solid #EEEEEE;
  background-color: transparent;
  color: var(--mainColor);
  transition: var(--transition);
}
.pricing-item-two .content .default-btn:hover {
  color: var(--whiteColor);
}
.pricing-item-two:hover {
  transform: translateY(-5px);
}

/*================================
Team Area
===================================*/
.team-area {
  position: relative;
}

.team-card {
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  padding: 0 30px 30px;
}
.team-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 30%;
  background-color: var(--whiteColor);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
}
.team-card .team-img {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}
.team-card .team-img a {
  display: block;
}
.team-card .team-img a img {
  max-width: 100%;
}
.team-card .team-img .social-links-btn {
  margin: 0;
  list-style-type: none;
  padding: 0;
  position: absolute;
  right: 85px;
  bottom: -30px;
}
.team-card .team-img .social-links-btn li {
  display: inline-block;
  position: absolute;
  bottom: 0;
  transition: var(--transition);
}
.team-card .team-img .social-links-btn li.share-btn {
  width: 70px;
  height: 70px;
  line-height: 70px;
  margin: 0 auto;
  border-radius: 50%;
  border: 2px dashed var(--whiteColor);
  transition: 0.9s;
}
.team-card .team-img .social-links-btn li.share-btn i {
  width: 50px;
  height: 50px;
  line-height: 55px;
  text-align: center;
  border-radius: 50px;
  background-color: var(--mainColor);
  color: var(--whiteColor);
  display: inline-block;
  margin: 0 8px;
  font-size: 18px;
  transition: 0.9s;
}
.team-card .team-img .social-links-btn li.share-btn i:hover {
  background-color: var(--titleColor);
}
.team-card .team-img .social-links-btn li:nth-child(1) {
  z-index: 1;
}
.team-card .team-img .social-links-btn li:nth-child(2), .team-card .team-img .social-links-btn li:nth-child(3), .team-card .team-img .social-links-btn li:nth-child(4) .team-card .team-img .social-links-btn li:nth-child(5) {
  bottom: 0;
}
.team-card .team-img .social-links-btn li a {
  color: var(--whiteColor);
}
.team-card .team-img .social-links-btn li a i {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: var(--whiteColor);
  color: var(--mainColor);
  text-align: center;
  font-size: 20px;
  transition: var(--transition);
  border-radius: 50px;
  margin: 0 10px;
}
.team-card .team-img .social-links-btn li a:hover i {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.team-card .team-img .social-links-btn:hover li:nth-child(1) {
  z-index: 1;
}
.team-card .team-img .social-links-btn:hover li:nth-child(2) {
  bottom: 85px;
}
.team-card .team-img .social-links-btn:hover li:nth-child(3) {
  bottom: 150px;
}
.team-card .team-img .social-links-btn:hover li:nth-child(4) {
  bottom: 215px;
}
.team-card .team-img .social-links-btn:hover li:nth-child(5) {
  bottom: 280px;
}
.team-card .content h3 {
  margin-bottom: 5px;
}
.team-card .content h3 a {
  color: var(--titleColor);
  transition: var(--transition);
}
.team-card .content span {
  margin-bottom: 0;
}
.team-card .content .social-links {
  margin: 15px 0 5px;
  list-style-type: none;
  padding: 0;
}
.team-card .content .social-links li {
  display: inline-block;
  margin-right: 5px;
}
.team-card .content .social-links li:last-child {
  margin-right: 0;
}
.team-card .content .social-links li a i {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: var(--whiteColor);
  color: var(--mainColor);
  text-align: center;
  font-size: 20px;
  transition: var(--transition);
  border-radius: 50px;
  margin: 0;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
}
.team-card .content .social-links li a:hover i {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.team-card:hover .content h3 a {
  color: var(--mainColor);
}

.team-shape .shape1 {
  position: absolute;
  z-index: -1;
  bottom: 100px;
  right: 2%;
  animation: movebounce 5s linear infinite;
}

.team-details-img {
  margin-bottom: 30px;
}

.team-details-content {
  margin-bottom: 30px;
}
.team-details-content h3 {
  margin-bottom: 5px;
}
.team-details-content span {
  margin-bottom: 0;
  color: var(--mainColor);
}
.team-details-content p {
  margin-bottom: 20px;
}
.team-details-content p:last-child {
  margin-bottom: 0;
}
.team-details-content .social-links {
  margin: 25px 0;
  list-style-type: none;
  padding: 0;
}
.team-details-content .social-links li {
  display: inline-block;
  margin-right: 5px;
}
.team-details-content .social-links li:last-child {
  margin-right: 0;
}
.team-details-content .social-links li a i {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: var(--whiteColor);
  color: var(--mainColor);
  text-align: center;
  font-size: 20px;
  transition: var(--transition);
  border-radius: 50px;
  margin: 0;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.09);
}
.team-details-content .social-links li a:hover i {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.team-details-content .team-exper {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.team-details-content .team-exper li {
  display: block;
  font-family: var(--headerFonts);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--titleColor);
  max-width: 300px;
}
.team-details-content .team-exper li i {
  color: var(--mainColor);
  margin-right: 5px;
  position: relative;
  top: 2px;
  font-size: 16px;
}
.team-details-content .team-exper li:last-child {
  margin-bottom: 0;
}
.team-details-content .team-exper li span {
  float: right;
  color: var(--bodyColor);
  font-size: 16px;
  font-family: var(--bodyFonts);
  font-weight: 500;
}

.skill-bar {
  margin-bottom: 20px;
}
.skill-bar .progress-title-holder {
  position: relative;
  margin-bottom: 15px;
}
.skill-bar .progress-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--titleColor);
}
.skill-bar .progress-number-wrapper {
  width: 100%;
  z-index: 10;
  font-size: 11px;
  line-height: 24px;
  height: 24px;
  letter-spacing: 0;
  font-weight: 600;
  font-style: normal;
  text-transform: none;
  color: #FBEDE9;
}
.skill-bar .progress-number-mark {
  margin-bottom: 4px;
  border-radius: 3px;
  color: #1a1a1a;
  padding: 0 8px;
  position: absolute;
  bottom: 0;
  transform: translateX(-50%);
  font-size: 18px;
  font-weight: 500;
  font-family: var(--bodyFonts);
}
.skill-bar .progress-content-outter {
  height: 10px;
  background-color: #FAEFED;
  border-radius: 0;
}
.skill-bar .progress-content {
  height: 10px;
  background-color: #E2B3AC;
  width: 0%;
  border-radius: 0;
}

/*================================
Testimonial Area
===================================*/
.testimonial-area .owl-item.active.center .testimonial-item h3 {
  color: var(--mainColor);
}
.testimonial-area .owl-nav {
  margin-top: 0;
  overflow: hidden;
}
.testimonial-area .owl-nav .owl-prev {
  width: 50px;
  height: 50px;
  line-height: 58px !important;
  background-color: var(--whiteColor) !important;
  color: var(--bodyColor) !important;
  border-radius: 50%;
  text-align: center;
  font-size: 18px !important;
  transition: 0.9s;
}
.testimonial-area .owl-nav .owl-prev:hover {
  background-color: var(--mainColor) !important;
  color: var(--whiteColor) !important;
}
.testimonial-area .owl-nav .owl-next {
  width: 50px;
  height: 50px;
  line-height: 58px !important;
  background-color: var(--whiteColor) !important;
  color: var(--bodyColor) !important;
  border-radius: 50%;
  text-align: center;
  font-size: 18px !important;
  transition: 0.9s;
}
.testimonial-area .owl-nav .owl-next:hover {
  background-color: var(--mainColor) !important;
  color: var(--whiteColor) !important;
}

.testimonial-item {
  margin-bottom: 30px;
  text-align: center;
}
.testimonial-item img {
  border-radius: 50%;
  border: 8px solid var(--whiteColor);
  margin-bottom: 20px;
  width: unset !important;
  margin-left: auto;
  margin-right: auto;
}
.testimonial-item h3 {
  margin-bottom: 15px;
  transition: var(--transition);
}
.testimonial-item p {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.testimonial-item .rating {
  color: #FDC22D;
  font-size: 20px;
  margin-bottom: 0;
}

.testimonial-card {
  background-color: var(--whiteColor);
  padding: 40px 40px 40px 200px;
  position: relative;
  margin-bottom: 30px;
}
.testimonial-card .testimonial-img {
  position: absolute;
  top: 40px;
  left: 40px;
}
.testimonial-card .testimonial-img img {
  border-radius: 50%;
  border: 8px solid var(--whiteColor);
  width: unset !important;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
}
.testimonial-card .testimonial-img i {
  position: absolute;
  bottom: 15px;
  left: 0;
  width: 42px;
  height: 42px;
  line-height: 47px;
  font-size: 15px;
  color: var(--whiteColor);
  background-color: var(--mainColor);
  border-radius: 50px;
  text-align: center;
}
.testimonial-card .content h3 {
  margin-bottom: 15px;
  transition: var(--transition);
}
.testimonial-card .content h3 span {
  color: var(--bodyColor);
  font-size: 15px;
}
.testimonial-card .content p {
  margin-bottom: 15px;
}
.testimonial-card .content .rating {
  color: #FDC22D;
  font-size: 20px;
  margin-bottom: 0;
}

.testimonial-item-color img {
  border-color: #FAEFED;
}

/*================================
Booking Area
===================================*/
.booking-area {
  position: relative;
  z-index: 1;
}
.booking-area::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background-color: #EFCEC9;
}

.book-img {
  margin-bottom: 30px;
}
.book-img img {
  border-bottom: 5px;
}

.booking-form {
  margin-bottom: 30px;
}
.booking-form .form-group {
  margin-bottom: 20px;
  position: relative;
}
.booking-form .form-group .form-control {
  height: 60px;
  color: var(--bodyColor);
  border: 1px solid rgb(238, 238, 238);
  background-color: transparent;
  font-size: 15px;
  padding: 10px 20px;
  width: 100%;
  border-radius: 0;
}
.booking-form .form-group .form-control:focus::-webkit-input-placeholder, .booking-form .form-group .form-control:focus:-ms-input-placeholder, .booking-form .form-group .form-control:focus::-ms-input-placeholder, .booking-form .form-group .form-control:focus::placeholder {
  color: transparent;
}
.booking-form .form-group .form-control:focus {
  outline: none;
  box-shadow: none;
}
.booking-form .form-group .form-select {
  color: var(--bodyColor);
}
.booking-form .form-group textarea.form-control {
  height: auto;
}

.booking-area-two {
  position: relative;
}

.book-img-two {
  position: relative;
  z-index: 1;
  max-width: 610px;
  margin: 20px 20px 50px;
}
.book-img-two::before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 1px solid #CA1461;
  box-sizing: border-box;
}
.book-img-two::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 1px solid #CA1461;
  box-sizing: border-box;
}
.book-img-two .book-shape1 {
  position: absolute;
  bottom: -70px;
  left: -50px;
}
.book-img-two .book-shape1 img {
  animation: moveleftbounce 7s linear infinite;
}

.book-img-three {
  padding-bottom: 6px;
}

.book-img-bg {
  margin-bottom: 24px;
  background-size: cover;
  background-position: center center;
  padding: 130px 0 120px;
  position: relative;
  z-index: 1;
  text-align: center;
}
.book-img-bg::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: var(--titleColor);
  opacity: 0;
  transition: 0.9s;
}
.book-img-bg .follow-btn {
  font-size: 30px;
  color: var(--whiteColor);
  text-align: center;
  opacity: 0;
  transition: 0.9s;
}
.book-img-bg .follow-btn i {
  line-height: 1;
}
.book-img-bg:hover::before {
  opacity: 0.5;
}
.book-img-bg:hover .follow-btn {
  opacity: 1;
}

.book-img-bg1 {
  background-image: url(../images/book/book-img3.jpg);
}

.book-img-bg2 {
  background-image: url(../images/book/book-img4.jpg);
}

.book-img-bg3 {
  background-image: url(../images/book/book-img5.jpg);
}

.book-img-bg4 {
  background-image: url(../images/book/book-img6.jpg);
}

.book-shape {
  position: absolute;
  top: 30px;
  right: 5%;
  z-index: -1;
}
.book-shape img {
  animation: moveleftbounce 7s linear infinite;
}

/*================================
Blog Area
===================================*/
.blog-card {
  margin-bottom: 30px;
  background-color: var(--whiteColor);
  transition: var(--transition);
}
.blog-card .img {
  display: block;
}
.blog-card .img img {
  max-width: 100%;
}
.blog-card .content {
  padding: 30px;
}
.blog-card .content ul {
  list-style-type: none;
  margin: 0 0 10px;
  padding: 0;
}
.blog-card .content ul li {
  display: inline-block;
  margin-right: 30px;
}
.blog-card .content ul li:last-child {
  margin-right: 0;
}
.blog-card .content ul li i {
  color: var(--mainColor);
  margin-right: 5px;
  position: relative;
  top: 1px;
}
.blog-card .content ul li a {
  color: var(--bodyColor);
  display: inline-block;
  transition: var(--transition);
}
.blog-card .content ul li a:hover {
  color: var(--mainColor);
}
.blog-card .content h3 {
  margin-bottom: 18px;
}
.blog-card .content h3 a {
  color: var(--titleColor);
  transition: var(--transition);
}
.blog-card:hover {
  transform: translateY(-5px);
}
.blog-card:hover .content h3 a {
  color: var(--mainColor);
}

.blog-item {
  margin-bottom: 30px;
  background-color: var(--whiteColor);
  transition: var(--transition);
}
.blog-item .img {
  display: block;
}
.blog-item .img img {
  max-width: 100%;
}
.blog-item .content {
  padding: 30px;
}
.blog-item .content .blog-top {
  padding-right: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #EEEEEE;
  margin-bottom: 20px;
}
.blog-item .content .blog-top .date {
  display: inline-block;
  color: var(--bodyColor);
}
.blog-item .content .blog-top .date i {
  color: var(--mainColor);
  margin-right: 5px;
  position: relative;
  top: 3px;
  font-size: 20px;
}
.blog-item .content .blog-top .blog-top-right {
  float: right;
  position: relative;
}
.blog-item .content .blog-top .blog-top-right .comment {
  color: var(--mainColor);
  margin-right: 20px;
  font-size: 20px;
}
.blog-item .content .blog-top .blog-top-right .social-links {
  display: inline-block;
  margin: 0;
  padding: 0;
  list-style-type: none;
  position: absolute;
  right: 0;
  bottom: 0;
}
.blog-item .content .blog-top .blog-top-right .social-links li {
  display: inline-block;
  position: absolute;
  bottom: 0;
  transition: var(--transition);
  list-style-type: none;
}
.blog-item .content .blog-top .blog-top-right .social-links li.share-btn i {
  color: var(--mainColor);
  display: inline-block;
  margin: 0 8px;
  font-size: 20px;
  transition: 0.9s;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: var(--whiteColor);
  border-radius: 50px;
}
.blog-item .content .blog-top .blog-top-right .social-links li.share-btn i:hover {
  color: var(--titleColor);
}
.blog-item .content .blog-top .blog-top-right .social-links li:nth-child(1) {
  z-index: 1;
}
.blog-item .content .blog-top .blog-top-right .social-links li:nth-child(2), .blog-item .content .blog-top .blog-top-right .social-links li:nth-child(3), .blog-item .content .blog-top .blog-top-right .social-links li:nth-child(4) {
  bottom: 0;
  opacity: 0;
}
.blog-item .content .blog-top .blog-top-right .social-links li a i {
  color: var(--titleColor);
  display: inline-block;
  margin: 0 8px;
  font-size: 18px;
  transition: 0.9s;
}
.blog-item .content .blog-top .blog-top-right .social-links li a:hover {
  opacity: 1;
}
.blog-item .content .blog-top .blog-top-right .social-links li a:hover i {
  color: var(--mainColor);
}
.blog-item .content .blog-top .blog-top-right .social-links:hover li:nth-child(1) {
  z-index: 1;
}
.blog-item .content .blog-top .blog-top-right .social-links:hover li:nth-child(2) {
  bottom: -30px;
  opacity: 1;
}
.blog-item .content .blog-top .blog-top-right .social-links:hover li:nth-child(3) {
  bottom: -62px;
  opacity: 1;
}
.blog-item .content .blog-top .blog-top-right .social-links:hover li:nth-child(4) {
  bottom: -93px;
  opacity: 1;
}
.blog-item .content h3 {
  margin-bottom: 0;
}
.blog-item .content h3 a {
  color: var(--titleColor);
  transition: var(--transition);
}
.blog-item:hover {
  transform: translateY(-5px);
}
.blog-item:hover .content h3 a {
  color: var(--mainColor);
}

.blog-details-content h1, .blog-details-content h2, .blog-details-content h3, .blog-details-content h4, .blog-details-content h5, .blog-details-content h6 {
  margin-bottom: 15px;
}
.blog-details-content h1 {
  font-size: 40px;
}
.blog-details-content h2 {
  font-size: 35px;
}
.blog-details-content h3 {
  font-size: 26px;
}
.blog-details-content h4 {
  font-size: 24px;
}
.blog-details-content h5 {
  font-size: 22px;
}
.blog-details-content h6 {
  font-size: 20px;
}
.blog-details-content a {
  color: var(--mainColor);
}
.blog-details-content a:hover {
  color: var(--titleColor);
}
.blog-details-content ul, .blog-details-content ol {
  margin-bottom: 30px;
}
.blog-details-content ul li, .blog-details-content ol li {
  margin-bottom: 10px;
}
.blog-details-content ul li:last-child, .blog-details-content ol li:last-child {
  margin-bottom: 0;
}
.blog-details-content .title {
  margin-bottom: 30px;
  line-height: 1.2;
}
.blog-details-content p {
  margin-bottom: 15px;
}
.blog-details-content .blog-preview-img {
  margin-bottom: 30px;
}
.blog-details-content .blog-preview-img-bg {
  background-image: url(../images/video/video-img1.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 170px 0;
  text-align: center;
  border-radius: 5px;
  margin-bottom: 30px;
  transition: 0.9s;
  overflow: hidden;
}
.blog-details-content .blog-preview-img-bg .play-btn {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  background-color: var(--whiteColor);
  border-radius: 50%;
  color: var(--mainColor);
  font-size: 30px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.blog-details-content .blog-preview-img-bg .play-btn::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -15px;
  right: 0;
  left: -15px;
  width: 100px;
  height: 100px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  animation: ripple 5s infinite ease-in-out;
  transition: var(--transition);
}
.blog-details-content .blog-preview-img-bg .play-btn::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -30px;
  right: 0;
  left: -30px;
  width: 130px;
  height: 130px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  animation: ripple 5s infinite ease-in-out;
  transition: var(--transition);
}
.blog-details-content .blog-preview-img-bg .play-btn:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.blog-details-content .blog-preview-img-bg .play-btn:hover::before {
  background-color: rgba(145, 20, 57, 0.5);
}
.blog-details-content .blog-preview-img-bg .play-btn:hover::after {
  background-color: rgba(145, 20, 57, 0.2);
}
.blog-details-content .blog-preview-slider {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.blog-details-content .blog-preview-slider .owl-nav {
  margin-top: 0;
  overflow: hidden;
}
.blog-details-content .blog-preview-slider .owl-nav .owl-prev {
  position: absolute;
  z-index: 5;
  top: 47%;
  transform: translateY(-50%);
  left: 0;
  width: 45px;
  height: 45px;
  line-height: 53px !important;
  background-color: var(--whiteColor) !important;
  color: var(--bodyColor) !important;
  border-radius: 50%;
  text-align: center;
  font-size: 18px !important;
}
.blog-details-content .blog-preview-slider .owl-nav .owl-prev:hover {
  color: var(--mainColor) !important;
}
.blog-details-content .blog-preview-slider .owl-nav .owl-next {
  position: absolute;
  z-index: 5;
  top: 47%;
  transform: translateY(-50%);
  right: 0;
  width: 45px;
  height: 45px;
  line-height: 53px !important;
  background-color: var(--whiteColor) !important;
  color: var(--bodyColor) !important;
  border-radius: 50%;
  text-align: center;
  font-size: 18px !important;
}
.blog-details-content .blog-preview-slider .owl-nav .owl-next:hover {
  color: var(--mainColor) !important;
}
.blog-details-content .tag-list {
  list-style-type: none;
  margin: 0 0 10px;
  padding: 0;
}
.blog-details-content .tag-list li {
  display: inline-block;
  font-size: 15px;
  color: var(--bodyColor);
  margin-right: 15px;
  position: relative;
  z-index: 1;
  font-weight: 400;
}
.blog-details-content .tag-list li:last-child {
  margin-right: 0;
}
.blog-details-content .tag-list li i {
  color: var(--mainColor);
  font-size: 16px;
  margin-right: 6px;
  position: relative;
  top: 2px;
  transition: var(--transition);
}
.blog-details-content .tag-list li a {
  color: var(--bodyColor);
  transition: var(--transition);
}
.blog-details-content .tag-list li a i {
  color: var(--mainColor);
  transition: var(--transition);
}
.blog-details-content .tag-list li a:hover {
  color: var(--mainColor);
  border: none;
}
.blog-details-content .tag-list li a:hover i {
  color: var(--titleColor);
}
.blog-details-content .tag-list li:hover {
  color: var(--mainColor);
}
.blog-details-content .tag-list li:hover i {
  color: var(--titleColor);
}
.blog-details-content .tag-list li:hover::before {
  width: 100%;
  opacity: 1;
}
.blog-details-content blockquote {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  margin-top: 30px;
  background-color: #F5F5F5;
  padding: 30px 60px 35px;
}
.blog-details-content blockquote::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background-color: var(--mainColor);
}
.blog-details-content blockquote p {
  font-size: 17px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
  color: var(--titleColor);
  font-family: var(--headerFonts);
}
.blog-details-content .blog-article-content {
  margin-bottom: 30px;
}
.blog-details-content .blog-article-content ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.blog-details-content .blog-article-content ul li {
  display: block;
  font-size: var(--fontSize);
  padding-left: 28px;
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
  transition: var(--transition);
}
.blog-details-content .blog-article-content ul li i {
  position: absolute;
  top: 5px;
  left: 0;
  color: var(--mainColor);
  font-size: 20px;
  line-height: 1;
}
.blog-details-content .blog-article-content ul li:hover {
  color: var(--mainColor);
}
.blog-details-content .blog-comments-area {
  padding: 40px 40px 50px;
  border: 1px solid #EEEEEE;
  margin-bottom: 30px;
}
.blog-details-content .comments-wrap {
  margin-bottom: 30px;
}
.blog-details-content .comments-wrap .comment-title {
  margin-bottom: 20px;
}
.blog-details-content .comments-wrap .comment-form {
  list-style: none;
  margin: 0;
  padding: 0;
}
.blog-details-content .comments-wrap .comment-form li {
  position: relative;
  padding-left: 100px;
  margin-bottom: 30px;
}
.blog-details-content .comments-wrap .comment-form li.pl-80 {
  padding-left: 140px;
}
.blog-details-content .comments-wrap .comment-form li.pl-80 img {
  left: 40px;
}
.blog-details-content .comments-wrap .comment-form li img {
  position: absolute;
  top: 3px;
  left: 0;
  border-radius: 50%;
}
.blog-details-content .comments-wrap .comment-form li h3 {
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 500;
}
.blog-details-content .comments-wrap .comment-form li span {
  color: #888888;
  font-size: 14px;
}
.blog-details-content .comments-wrap .comment-form li p {
  margin-top: 10px;
  margin-bottom: 15px;
}
.blog-details-content .comments-wrap .comment-form li a {
  position: absolute;
  top: 10px;
  right: 0;
  padding: 5px 18px;
  background-color: #FAEFED;
  color: var(--titleColor);
  border-radius: 0;
  font-size: 15px;
  display: inline-block;
}
.blog-details-content .comments-wrap .comment-form li a:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
  border: none;
}
.blog-details-content .comments-form .contact-form {
  margin-bottom: 0;
}
.blog-details-content .comments-form .contact-form h3 {
  margin-bottom: 10px;
}
.blog-details-content .comments-form .contact-form p {
  margin-bottom: 30px;
}
.blog-details-content .comments-form .contact-form .agree-label label {
  font-weight: 400;
}
.blog-details-content .comments-form .default-btn {
  width: unset;
  border: none;
  box-shadow: none;
}

.search-widget {
  display: inline-block;
  width: 100%;
  margin-bottom: 30px;
  background-color: #FAEFED;
  padding: 20px;
}
.search-widget .search-form {
  position: relative;
  margin: 0 auto;
  border-radius: 0;
  width: 100%;
  background-color: var(--whiteColor);
}
.search-widget .search-form .form-control {
  background-color: var(--whiteColor);
  border-radius: 0;
  border: none;
  height: 50px;
  line-height: 50px;
  margin: 0;
  border: 0;
  padding: 0 25px;
  color: var(--titleColor);
}
.search-widget .search-form .form-control:focus {
  outline: none;
  box-shadow: none;
  border: none;
}
.search-widget .search-form button {
  position: absolute;
  top: 0;
  right: 0;
  border: 0;
  border-radius: 0;
  background-color: var(--mainColor);
  color: var(--whiteColor);
  height: 50px;
  line-height: 53px;
  font-size: 22px;
  padding: 0 15px;
  transition: var(--transition);
}
.search-widget .search-form button:hover {
  background: var(--titleColor);
}

.side-bar-widget {
  margin-bottom: 35px;
  background-color: #FAEFED;
  padding: 30px;
}
.side-bar-widget .title {
  font-size: 24px;
  color: var(--titleColor);
  margin-bottom: 25px;
  padding-bottom: 10px;
  position: relative;
}
.side-bar-widget .title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--mainColor);
}
.side-bar-widget .title-two {
  font-size: 22px;
  color: var(--titleColor);
  margin-bottom: 25px;
}
.side-bar-widget .mb-15 {
  margin-bottom: 15px;
}
.side-bar-widget .default-btn i {
  margin-right: 10px;
  margin-left: 0;
}
.side-bar-widget .side-bar-categories ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.side-bar-widget .side-bar-categories ul li {
  position: relative;
  margin-bottom: 10px;
}
.side-bar-widget .side-bar-categories ul li:last-child {
  margin-bottom: 0;
}
.side-bar-widget .side-bar-categories ul li a {
  display: inline-block;
  color: var(--bodyColor);
  position: relative;
  z-index: 1;
  width: 100%;
}
.side-bar-widget .side-bar-categories ul li a i {
  font-size: 21px;
  color: var(--bodyColor);
  margin-right: 5px;
  position: relative;
  top: 5px;
}
.side-bar-widget .side-bar-categories ul li a span {
  float: right;
  position: relative;
  top: 5px;
}
.side-bar-widget .side-bar-categories ul li:hover a {
  color: var(--mainColor);
  letter-spacing: 0.25px;
}
.side-bar-widget .side-bar-categories ul li:hover a i {
  color: var(--mainColor);
}
.side-bar-widget .widget-popular-post {
  position: relative;
  overflow: hidden;
}
.side-bar-widget .widget-popular-post .item {
  overflow: hidden;
  margin-bottom: 12px;
}
.side-bar-widget .widget-popular-post .item:last-child {
  margin-bottom: 0;
}
.side-bar-widget .widget-popular-post .item .thumb {
  float: left;
  overflow: hidden;
  position: relative;
  margin-right: 15px;
}
.side-bar-widget .widget-popular-post .item .thumb .full-image {
  width: 85px;
  height: 85px;
  display: inline-block;
  background-size: cover !important;
  background-repeat: no-repeat;
  background-position: center center !important;
  position: relative;
  background-color: var(--whiteColor);
}
.side-bar-widget .widget-popular-post .item .thumb .full-image.bg1 {
  background-image: url(../images/blog/blog-img1.jpg);
}
.side-bar-widget .widget-popular-post .item .thumb .full-image.bg2 {
  background-image: url(../images/blog/blog-img2.jpg);
}
.side-bar-widget .widget-popular-post .item .thumb .full-image.bg3 {
  background-image: url(../images/blog/blog-img3.jpg);
}
.side-bar-widget .widget-popular-post .item .info {
  overflow: hidden;
  padding: 2px 0;
}
.side-bar-widget .widget-popular-post .item .info p {
  font-size: 14px;
  color: var(--mainColor);
  margin-bottom: 7px;
}
.side-bar-widget .widget-popular-post .item .info .title-text {
  margin-bottom: 0;
  line-height: 1.2;
  font-size: 18px;
  font-weight: 600;
  max-width: 245px;
}
.side-bar-widget .widget-popular-post .item .info .title-text a {
  display: inline-block;
  color: var(--titleColor);
}
.side-bar-widget .widget-popular-post .item .info .title-text a:hover {
  color: var(--mainColor);
}
.side-bar-widget .side-bar-widget-tag {
  list-style: none;
  margin: 0;
  padding: 0;
}
.side-bar-widget .side-bar-widget-tag li {
  display: inline-block;
  margin: 5px;
}
.side-bar-widget .side-bar-widget-tag li a {
  padding: 8px 23px;
  transition: 0.7s;
  color: var(--titleColor);
  font-weight: 500;
  font-size: 14px;
  transition: 0.7s;
  border: 1px solid #E3E1E1;
}
.side-bar-widget .side-bar-widget-tag li:hover a {
  color: var(--whiteColor);
  background-color: var(--mainColor);
}
.side-bar-widget .price-range-bar {
  border: none;
  background: var(--whiteColor);
  height: 5px;
  width: 100%;
  margin-left: 0;
  margin-bottom: 25px;
  position: relative;
}
.side-bar-widget .price-range-bar .ui-slider-range {
  background: var(--mainColor);
}
.side-bar-widget .price-range-bar .ui-slider-handle {
  border: none;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid var(--mainColor);
  height: 15px;
  width: 15px;
  top: -5px;
  cursor: pointer;
  background: var(--mainColor);
  position: absolute;
}
.side-bar-widget .price-range-bar .ui-slider-handle:focus {
  outline: 0;
}
.side-bar-widget .price-range-filter .btn {
  padding: 10px 35px;
  background-color: var(--mainColor);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  transition: 0.5s;
  box-shadow: none;
}
.side-bar-widget .price-range-filter .btn:hover {
  background-color: var(--mainColor);
}
.side-bar-widget .price-range-filter-button {
  margin-top: 15px;
}
.side-bar-widget .price-range-filter-item h4 {
  font-size: 15px;
  color: #292929;
  margin-right: 10px;
  margin-bottom: 0;
}
.side-bar-widget .price-range-filter-item input {
  width: 100%;
  border: 0;
  border-radius: 0;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--mainColor);
  background-color: transparent;
}
.side-bar-widget .price-range-filter-item input.input {
  width: 100%;
  border: 0;
  border-radius: 0;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--mainColor);
  background-color: transparent;
}

.services-catagory {
  margin-bottom: 30px;
}
.services-catagory ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.services-catagory ul li {
  position: relative;
  margin-bottom: 10px;
}
.services-catagory ul li:last-child {
  margin-bottom: 0;
}
.services-catagory ul li a {
  display: inline-block;
  color: var(--bodyColor);
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 15px 20px 11px;
  background-color: #FAEFED;
  transition: 0.9s;
}
.services-catagory ul li a::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--mainColor);
  opacity: 0;
  transition: 0.9s;
}
.services-catagory ul li a i {
  font-size: 21px;
  color: var(--bodyColor);
  position: relative;
  float: right;
  transition: 0.9s;
}
.services-catagory ul li:hover a {
  color: var(--whiteColor);
}
.services-catagory ul li:hover a::before {
  width: 100%;
  opacity: 1;
}
.services-catagory ul li:hover a i {
  color: var(--whiteColor);
}

.author-profile {
  background-color: #FAEFED;
  padding: 35px 30px;
  text-align: center;
  border-radius: 5px;
  margin-bottom: 35px;
}
.author-profile h3 {
  color: var(--transition);
  margin-bottom: 10px;
  font-size: 22px;
}
.author-profile img {
  border-radius: 50%;
  margin-bottom: 15px;
  max-width: 100px;
}
.author-profile p {
  margin-bottom: 17px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}
.author-profile .profile-social-link {
  list-style: none;
  margin: 0;
  padding: 0;
}
.author-profile .profile-social-link li {
  display: inline-block;
  margin-right: 5px;
}
.author-profile .profile-social-link li a i {
  width: 35px;
  height: 35px;
  line-height: 35px;
  font-size: 15px;
  text-align: center;
  color: var(--whiteColor);
  background-color: var(--mainColor);
  transition: var(--transition);
  border-radius: 50px;
  display: inline-block;
}
.author-profile .profile-social-link li a:hover i {
  background-color: var(--titleColor);
}

.categories-title {
  margin-bottom: 30px;
}
.categories-title h3 {
  font-size: 26px;
  color: var(--titleColor);
}
.categories-title h3 span {
  color: var(--mainColor);
  font-size: 22px;
}

/*================================
Contact Area
===================================*/
.contact-information-max {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.contact-info-card {
  margin-bottom: 30px;
  padding: 40px 30px;
  text-align: center;
  background-color: #FAEFED;
}
.contact-info-card i {
  width: 80px;
  height: 80px;
  text-align: center;
  line-height: 90px;
  background-color: var(--whiteColor);
  color: var(--mainColor);
  font-size: 30px;
  display: inline-block;
  margin: 0 auto 20px;
  border-radius: 50px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
  transition: 0.9s;
}
.contact-info-card h3 {
  margin-bottom: 7px;
}
.contact-info-card p {
  margin-bottom: 3px;
}
.contact-info-card p a {
  color: var(--bodyColor);
  transition: var(--transition);
}
.contact-info-card p a:hover {
  color: var(--yellowColor);
}
.contact-info-card:hover i {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}

.contact-widget-max {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form {
  margin-bottom: 30px;
}
.contact-form .section-title {
  margin-bottom: 40px;
}
.contact-form .section-title h2 {
  line-height: 1;
}
.contact-form .form-group {
  margin-bottom: 20px;
  position: relative;
}
.contact-form .form-group.checkbox-option {
  position: relative;
}
.contact-form .form-group.checkbox-option #chb2 {
  position: absolute;
  top: 6px;
  left: 0;
}
.contact-form .form-group.checkbox-option p {
  padding-left: 25px;
  font-size: 15px;
  color: var(--titleColor);
}
.contact-form .form-group.checkbox-option p a {
  color: var(--mainColor);
}
.contact-form .form-group.checkbox-option p a:hover {
  color: var(--titleColor);
}
.contact-form .form-group .form-control {
  height: 60px;
  color: var(--bodyColor);
  border: none;
  background-color: #FAEFED;
  padding: 15px 25px;
  width: 100%;
  border-radius: 0;
}
.contact-form .form-group .form-control::-webkit-input-placeholder, .contact-form .form-group .form-control:-ms-input-placeholder, .contact-form .form-group .form-control::-ms-input-placeholder, .contact-form .form-group .form-control::placeholder {
  color: var(--bodyColor);
}
.contact-form .form-group .form-control:focus {
  outline: none;
  box-shadow: none;
  border: none;
}
.contact-form .form-group textarea.form-control {
  height: auto;
}
.contact-form .agree-label {
  margin-bottom: 15px;
  position: relative;
}
.contact-form .agree-label #chb1 {
  position: absolute;
  top: 7px;
  left: 0;
}
.contact-form .agree-label label {
  font-weight: 400;
  color: var(--titleColor);
  margin-left: 25px;
}
.contact-form .agree-label label a {
  color: var(--mainColor);
}
.contact-form .agree-label label a:hover {
  color: var(--titleColor);
}
.contact-form .agree-label label a.forget {
  position: absolute;
  right: 0;
}
.contact-form .with-errors {
  float: left;
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 0;
  color: #f00;
  font-weight: 400;
  display: block;
}
.contact-form .text-danger {
  font-size: 18px;
  margin-top: 15px;
}
.contact-form .default-btn {
  border: 0;
  outline: none;
  text-align: center;
}

.user-all-form .contact-form {
  background-color: var(--whiteColor);
  padding: 45px 35px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
}
.user-all-form .contact-form .user-title {
  font-size: 25px;
  padding: 0 0 15px;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}
.user-all-form .contact-form .user-title::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 2px;
  width: 80px;
  background-color: var(--mainColor);
  transition: var(--transition);
}

.faq-accordion {
  margin-bottom: 30px;
}
.faq-accordion .accordion {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
  border: none;
}
.faq-accordion .accordion .accordion-item {
  display: block;
  margin-bottom: 15px;
  border: none;
  background-color: var(--whiteColor);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
  padding: 30px;
}
.faq-accordion .accordion .accordion-item:last-child {
  margin-bottom: 0;
}
.faq-accordion .accordion .accordion-title {
  color: var(--titleColor);
  text-decoration: none;
  position: relative;
  display: block;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--headerFonts);
}
.faq-accordion .accordion .accordion-title i {
  position: absolute;
  right: 0;
  top: 0;
  height: 30px;
  line-height: 30px;
  color: var(--titleColor);
  text-align: center;
  background-color: transparent;
}
.faq-accordion .accordion .accordion-title.active {
  color: var(--mainColor);
}
.faq-accordion .accordion .accordion-title.active i {
  color: var(--mainColor);
}
.faq-accordion .accordion .accordion-title.active i::before {
  content: "\f1af";
}
.faq-accordion .accordion .accordion-content {
  display: none;
  position: relative;
  margin-top: 15px;
  padding-bottom: 10px;
  padding-right: 0;
  padding-left: 0;
}
.faq-accordion .accordion .accordion-content p {
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 7px;
}
.faq-accordion .accordion .accordion-content p:last-child {
  margin-bottom: 0;
}
.faq-accordion .accordion .accordion-content.show {
  display: block;
}

/*================================
Gallery Area
===================================*/
.gallery-area {
  overflow: hidden;
  padding-bottom:0px;
}
.gallery-area .container-fluid {
  max-width: 100% !important;
}

.gallery-img {
  margin-bottom: 20px;
}

.gallery-width {
  position: relative;
}
.gallery-width .follow-area {
  position: absolute;
  top: 26%;
  left: 50%;
  transform: translate(-50%);
  max-width: 360px;
  background-color: var(--whiteColor);
  padding: 40px;
  text-align: center;
}
.gallery-width .follow-area .follow-btn {
  margin-bottom: 20px;
}
.gallery-width .follow-area .follow-btn i {
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  background-color: transparent;
  color: #ca1461;
  border: 1px solid #ca1461;
  text-align: center;
  font-size: 30px;
  transition: 0.5s;
  border-radius: 50px;
  margin: 0 auto;
}
.gallery-width .follow-area .follow-btn i:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.gallery-width .follow-area .follow-btn h3 {
  margin-bottom: 0;
}
.gallery-width .row .col-lg-3 {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.gallery-content {
  margin-bottom: 30px;
}
.gallery-content .title h2 {
  font-size: 45px;
  max-width: 300px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.gallery-all-img {
  padding-top: 180px;
  padding-left: 220px;
  position: relative;
}
.gallery-all-img .img {
  max-width: 420px;
  margin-left: auto;
  position: relative;
}
.gallery-all-img .img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: var(--titleColor);
  opacity: 0;
  transition: 0.9s;
}
.gallery-all-img .img .follow-btn-area {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%);
  opacity: 0;
  transition: 0.9s;
}
.gallery-all-img .img .follow-btn-area .follow-btn i {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
  text-align: center;
  font-size: 24px;
  transition: 0.5s;
  border-radius: 50px;
  margin: 0 auto;
}
.gallery-all-img .img .follow-btn-area .follow-btn i:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
  border-color: var(--mainColor);
}
.gallery-all-img .img:hover::before {
  opacity: 0.6;
}
.gallery-all-img .img:hover .follow-btn-area {
  opacity: 1;
}
.gallery-all-img .img2 {
  position: absolute;
  top: -50px;
  right: 0;
  max-width: 240px;
}
.gallery-all-img .img2 img {
  max-width: 240px;
}
.gallery-all-img .img3 {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 200px;
}
.gallery-all-img .vector-img {
  position: absolute;
  top: -30px;
  left: -30px;
}
.gallery-all-img .vector-img img {
  animation: moveleftbounce 7s linear infinite;
}

.gallery-all-img-two {
  margin-bottom: 5px;
  margin-top: 150px;
  padding-bottom: 5px;
  padding-right: 220px;
  position: relative;
}
.gallery-all-img-two .img {
  max-width: 420px;
  margin-right: auto;
  position: relative;
}
.gallery-all-img-two .img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: var(--titleColor);
  opacity: 0;
  transition: 0.9s;
}
.gallery-all-img-two .img .follow-btn-area {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%);
  opacity: 0;
  transition: 0.9s;
}
.gallery-all-img-two .img .follow-btn-area .follow-btn i {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: transparent;
  color: var(--whiteColor);
  border: 1px solid var(--whiteColor);
  text-align: center;
  font-size: 24px;
  transition: var(--transition);
  border-radius: 50px;
  margin: 0 auto;
}
.gallery-all-img-two .img .follow-btn-area .follow-btn i:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
  border-color: var(--mainColor);
}
.gallery-all-img-two .img:hover::before {
  opacity: 0.6;
}
.gallery-all-img-two .img:hover .follow-btn-area {
  opacity: 1;
}
.gallery-all-img-two .img2 {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 200px;
}
.gallery-all-img-two .img2 img {
  max-width: 200px;
}
.gallery-all-img-two .img3 {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 200px;
}
.gallery-all-img-two .vector-img {
  position: absolute;
  z-index: -1;
  bottom: -100px;
  left: -30px;
  right: 0;
}
.gallery-all-img-two .vector-img img {
  animation: moveleftbounce 7s linear infinite;
}

.single-content {
  margin-bottom: 30px;
}
.single-content h1, .single-content h2, .single-content h3, .single-content h4, .single-content h5, .single-content h6 {
  margin-bottom: 15px;
}
.single-content h1 {
  font-size: 32px;
}
.single-content h2 {
  font-size: 29px;
}
.single-content h3 {
  font-size: 26px;
}
.single-content h4 {
  font-size: 23px;
}
.single-content h5 {
  font-size: 20px;
}
.single-content h6 {
  font-size: 17px;
}
.single-content a {
  color: var(--mainColor);
}
.single-content a:hover {
  color: var(--titleColor);
  border-bottom: 1px solid var(--mainColor);
}
.single-content ul, .single-content ol {
  margin-bottom: 30px;
}
.single-content ul li, .single-content ol li {
  margin-bottom: 10px;
}
.single-content ul li:last-child, .single-content ol li:last-child {
  margin-bottom: 0;
}
.single-content p {
  margin-bottom: 15px;
}
.single-content p:last-child {
  margin-bottom: 0;
}

/*=================================
404 Error Area
===================================*/
.error-area .error-content {
  text-align: center;
  position: relative;
}
.error-area .error-content h1 {
  font-size: 260px;
  line-height: 1.1;
  font-weight: 700;
  color: var(--titleColor);
}
.error-area .error-content h1 span {
  color: var(--mainColor);
}
.error-area .error-content h3 {
  margin: 35px 0 0;
  position: relative;
  color: var(--titleColor);
  font-size: 35px;
}
.error-area .error-content p {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 18px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/*=================================
Coming Soon Area
===================================*/
.coming-soon-area {
  position: relative;
  z-index: 1;
  height: 100vh;
  overflow: hidden;
  background-image: url(../images/coming-soon.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.coming-soon-area::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: var(--titleColor);
  opacity: 0.9;
}
.coming-soon-area .coming-soon-content {
  text-align: center;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
  padding: 50px 30px;
  background-color: transparent;
  border: 3px solid var(--whiteColor);
}
.coming-soon-area .coming-soon-content h1 {
  margin-bottom: 0;
  color: var(--whiteColor);
  font-size: 50px;
}
.coming-soon-area .coming-soon-content p {
  font-size: 16px;
  max-width: 600px;
  margin-top: 15px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  color: var(--whiteColor);
}
.coming-soon-area .coming-soon-content #timer {
  margin-top: 40px;
}
.coming-soon-area .coming-soon-content #timer div {
  display: inline-block;
  color: var(--whiteColor);
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 10px;
  font-size: 28px;
  font-weight: 600;
  padding: 4px;
  background-color: transparent;
  border-radius: 5px;
  border: 2px solid var(--whiteColor);
}
.coming-soon-area .coming-soon-content #timer div span {
  display: block;
  text-transform: capitalize;
  margin-top: -7px;
  font-size: 16px;
  font-weight: normal;
  color: var(--whiteColor);
}
.coming-soon-area .coming-soon-content #timer div:last-child {
  margin-right: 0;
}
.coming-soon-area .coming-soon-content #timer div:last-child::before {
  display: none;
}
.coming-soon-area .coming-soon-content #timer div:first-child {
  margin-left: 0;
}
.coming-soon-area .coming-soon-content #timer div::before {
  content: "";
  position: absolute;
  right: -50px;
  top: -10px;
  font-size: 70px;
  color: #ffffff;
}
.coming-soon-area .coming-soon-content .newsletter-form {
  position: relative;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
}
.coming-soon-area .coming-soon-content .newsletter-form .input-newsletter {
  display: block;
  width: 100%;
  height: 60px;
  border: none;
  background-color: var(--whiteColor);
  padding-left: 15px;
  color: var(--whiteColor);
  outline: 0;
  transition: 0.5s;
  border-radius: 0;
  border: 1px solid #cccccc;
  color: #5d5d5d;
}
.coming-soon-area .coming-soon-content .newsletter-form .input-newsletter:focus {
  border-color: var(--mainColor);
}
.coming-soon-area .coming-soon-content .newsletter-form .default-btn {
  position: absolute;
  right: 0;
  top: 0;
  height: 60px;
  padding: 0 30px;
  text-transform: uppercase;
  outline: 0;
  color: #ffffff;
  transition: 0.5s;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  background-color: var(--mainColor);
}
.coming-soon-area .coming-soon-content .newsletter-form .default-btn::before {
  border-radius: 0;
  background-color: var(--titleColor);
}
.coming-soon-area .coming-soon-content .newsletter-form .default-btn:hover {
  color: #ffffff;
  background-color: #190f3c;
}
.coming-soon-area #validator-newsletter {
  text-align: left;
  color: #dc3545 !important;
}

/*================================
Footer Area
===================================*/
.footer-bg {
  background-color: #f9f9f9;
}

.footer-widget {
  margin-bottom: 30px;
}
.footer-widget .footer-logo {
  margin-bottom: 20px;
}
.footer-widget .footer-logo .footer-logo2 {
  display: none;
}
.footer-widget h3 {
  margin-top: 0;
  font-size: 24px;
  margin-bottom: 30px;
  color: var(--titleColor);
}
.footer-widget p {
  margin-bottom: 25px;
}
.footer-widget .social-link {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.footer-widget .social-link li {
  display: inline-block;
  margin-right: 10px;
}
.footer-widget .social-link li:last-child {
  margin-right: 0;
}
.footer-widget .social-link li a {
  display: inline-block;
}
.footer-widget .social-link li a i {
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 50px;
  text-align: center;
  display: inline-block;
  color: var(--mainColor);
  border: 1px solid var(--mainColor);
  background-color: transparent;
  transition: var(--transition);
}
.footer-widget .social-link li a:hover i {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.footer-widget .salon-hours {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.footer-widget .salon-hours li {
  display: block;
  margin-bottom: 30px;
}
.footer-widget .salon-hours li:last-child {
  margin-bottom: 0;
}
.footer-widget .salon-hours li .content h3 {
  font-size: 16px;
  font-family: var(--bodyFonts);
  margin-bottom: 3px;
  color: var(--titleColor);
  font-weight: 500;
}
.footer-widget .salon-hours li .content span {
  font-size: 16px;
  margin-bottom: 0;
  color: #555555;
}
.footer-widget .footer-contact {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.footer-widget .footer-contact li {
  display: block;
  padding-left: 65px;
  position: relative;
  margin-bottom: 15px;
}
.footer-widget .footer-contact li:last-child {
  margin-bottom: 0;
}
.footer-widget .footer-contact li i {
  position: absolute;
  top: 5px;
  left: 0;
  line-height: 1;
  width: 45px;
  height: 45px;
  line-height: 50px;
  border-radius: 50px;
  text-align: center;
  display: inline-block;
  color: var(--mainColor);
  border: 1px solid var(--mainColor);
  background-color: transparent;
  transition: var(--transition);
}
.footer-widget .footer-contact li .content h4 {
  font-size: var(--fontSize);
  color: var(--titleColor);
  margin-bottom: 5px;
  font-family: var(--bodyFonts);
  font-weight: 600;
}
.footer-widget .footer-contact li .content span {
  color: var(--bodyColor);
  margin-bottom: 0;
}
.footer-widget .footer-contact li .content span a {
  color: var(--bodyColor);
  transition: var(--transition);
}
.footer-widget .footer-contact li:hover i {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.footer-widget .footer-contact li:hover .content span a {
  color: var(--mainColor);
}

.newsletter-form .form-control {
  background-color: #faefed;
  border-radius: 0;
  height: 60px;
  line-height: 60px;
  margin: 0;
  border: none;
  padding: 0 25px;
  color: var(--bodyColor);
  margin-bottom: 20px;
}
.newsletter-form .form-control:focus {
  outline: none;
  box-shadow: none;
  color: var(--titleColor);
}
.newsletter-form .subscribe-btn {
  background-color: var(--mainColor);
  color: var(--whiteColor);
  height: 60px;
  line-height: 62px;
  padding: 0 32px;
  border: 0;
  transition: var(--transition);
  text-align: center;
  width: 100%;
}
.newsletter-form .subscribe-btn i {
  position: relative;
  top: 3px;
  margin-left: 10px;
}
.newsletter-form .subscribe-btn:hover {
  background-color: var(--titleColor);
}
.newsletter-form .validation-danger {
  font-size: 18px;
  margin-top: 5px;
  color: red;
}

/*================================
Copyright Area
===================================*/
.copyright-area {
  background-color: #f1f1f1;
  padding: 15px 0;
}

.copy-right-text p {
  color: var(--titleColor);
  margin-bottom: 0;
}
.copy-right-text p b {
  color: var(--mainColor);
  font-weight: 500;
}
.copy-right-text p a {
  color: var(--mainColor);
  font-weight: 500;
}
.copy-right-text p a:hover {
  color: var(--titleColor);
}

/*=================================
Modal CSS 
====================================*/
.productsQuickView .modal-dialog {
  max-width: 1040px;
  margin: 0 auto;
}
.productsQuickView .modal-content {
  border: none;
  padding: 40px 25px 10px;
  border-radius: 0;
  background-color: var(--whiteColor);
  opacity: 1;
}
.productsQuickView .modal-content .btn-close-on {
  position: absolute;
  right: 0;
  top: 0;
  outline: 0;
  opacity: 1;
  color: #111111;
  transition: 0.5s;
  line-height: 35px;
  padding: 0;
  margin: 0;
  font-size: 14px;
  width: 35px;
  text-shadow: unset;
  height: 35px;
  border: none;
}
.productsQuickView .modal-content .btn-close-on:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}

/*=================================
Go Top Area 
====================================*/
.go-top {
  position: fixed;
  top: 50%;
  right: 3%;
  opacity: 0;
  cursor: pointer;
  text-decoration: none;
  color: var(--whiteColor);
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  background: var(--mainColor);
  border-radius: 0;
  width: 45px;
  height: 45px;
  line-height: 43px;
  z-index: 100;
  transition: 0.5s;
}
.go-top i {
  transition: 0.5s;
  vertical-align: middle;
}
.go-top:hover {
  background-color: var(--titleColor);
}
.go-top:hover i {
  transform: translateY(-5px);
}
.go-top.active {
  top: 95%;
  transform: translateY(-95%);
  opacity: 1;
  visibility: visible;
}

/*================================
Pagination Area
===================================*/
.pagination-area {
  margin-top: 10px;
  margin-bottom: 30px;
}
.pagination-area .page-numbers {
  width: 60px;
  height: 60px;
  line-height: 60px;
  color: var(--bodyColor);
  background-color: transparent;
  text-align: center;
  display: inline-block;
  position: relative;
  margin-left: 3px;
  margin-right: 3px;
  font-size: 20px;
  border-radius: 50px;
  border: 1px solid rgb(238, 238, 238);
}
.pagination-area .page-numbers:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.pagination-area .page-numbers i {
  position: relative;
  font-size: 22px;
  line-height: normal;
  top: 5px;
}
.pagination-area .page-numbers.current {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}

/*=================================
Preloader CSS
====================================*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

#preloader-area {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 60px;
  width: 60px;
}
#preloader-area .spinner {
  width: 20px;
  height: 20px;
  z-index: 9999;
  position: relative;
  border-radius: 50%;
  background: var(--whiteColor);
  animation: 2s sping-round linear infinite;
}
#preloader-area .spinner:nth-child(2) {
  animation-delay: 0.2s;
}
#preloader-area .spinner:nth-child(3) {
  animation-delay: 0.4s;
}

#preloader .preloader-section {
  position: fixed;
  top: 0;
  width: 51%;
  height: 100%;
  background-color: var(--mainColor);
  z-index: 999;
  transform: translateX(0);
}
#preloader .preloader-section.preloader-left {
  left: 0;
}
#preloader .preloader-section.preloader-right {
  right: 0;
}

.loaded #preloader-area {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-out;
}
.loaded #preloader .preloader-section.preloader-left {
  transform: translateX(-100%);
  transition: all 0.8s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.loaded #preloader .preloader-section.preloader-right {
  transform: translateX(100%);
  transition: all 0.8s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #preloader {
  visibility: hidden;
  transform: translateY(-100%);
  transition: all 0.3s 1s ease-out;
}

/*=================================
Buy Now Btn
====================================*/
.buy-now-btn {
  right: 20px;
  z-index: 99;
  top: 50%;
  position: fixed;
  transform: translateY(-50%);
  border-radius: 30px;
  display: inline-block;
  color: var(--whiteColor);
  background-color: #5d832c;
  padding: 10px 20px 10px 20px;
  box-shadow: 0 1px 20px 1px #82b440;
  font-size: 13px;
  font-weight: 600;
}
.buy-now-btn img {
  top: 50%;
  left: 20px;
  width: 15px;
  position: absolute;
  transform: translateY(-50%);
}
.buy-now-btn:hover {
  color: var(--whiteColor);
  background-color: #94be5d;
}

/*==================================
Animation CSS
====================================*/
@keyframes rotate360 {
  50% {
    transform: rotate(360deg) scale(0.8);
  }
}
@keyframes sping-round {
  0% {
    transform-origin: 300% 50%;
    transform: rotate(0deg);
  }
  50% {
    transform-origin: 300% 50%;
    transform: rotate(360deg);
  }
  50.1% {
    transform-origin: -300% 50%;
    transform: rotate(360deg);
  }
  100% {
    transform-origin: -300% 50%;
    transform: rotate(0deg);
  }
}
@keyframes rotate-in {
  0% {
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  }
  100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}
@keyframes ripple {
  0% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.5);
    opacity: 1;
  }
  100% {
    transform: scale(1.75);
    opacity: 0;
  }
}
@keyframes moveleftbounce {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(20px);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes movebounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(15px);
  }
  100% {
    transform: translateY(0);
  }
}/*# sourceMappingURL=style.css.map */