:root {
  --black: #000;

  --white: #fff;

  --text-color: #0f0f0f;

  --orange: #eb8e2e;

  --red: #ff1616;

  --body-font: "Red Hat Display", sans-serif;

  --heading-font: "Cormorant Garamond", serif;
}

/* font-family: 'Cormorant Garamond', serif; */

/* font-family: 'Red Hat Display', sans-serif; */

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

html {
  font-size: 100%;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}

ol,
ul {
  list-style: none;
}

:focus {
  outline: 0;
}

a {
  color: #2a6fda;
}

a,
a:link {
  text-decoration: none;
  outline: none;
  color: var(--orange);
}

p {
  font-size: 14px;
  color: #000;
  line-height: 22px;
  font-weight: 400;
  margin-bottom: 20px;
}

.clear {
  clear: both;
}

a:focus {
  outline: none;
}

img {
  max-width: 100%;
}

h2 {
}

input:focus {
  outline: none;
}

button:focus {
  outline: none;
}

body {
  margin: 0;
  padding: 0;
  font-size: 13px;
  color: #606060;
  line-height: 20px;
  font-weight: 500;
  background: #ffffff;
  font-family: var(--body-font);
}

.var-row {
  align-items: center;
}

iframe {
  width: 100%;
}

/* ==========loader common css========== */

.loaderWrap {
  position: fixed;

  height: 100%;

  left: 0;

  top: 0;

  right: 0;

  bottom: 0;

  z-index: 9991;

  display: flex;
  justify-content: center;
  align-items: center;

  background-color: rgba(0, 0, 0, 0.9);

  transition: all 300ms ease-in-out;
}

.loader-off.loaderWrap {
  opacity: 0;
  visibility: hidden;
}

/* ============Loader One CSS Start=============== */

.loader:after,
.loader {
  color: var(--orange);
}

.loader {
  transform: rotateZ(45deg);

  perspective: 1000px;

  border-radius: 50%;

  width: 68px;

  height: 68px;
}

.loader:before,
.loader:after {
  content: "";

  display: block;

  position: absolute;

  top: 0;

  left: 0;

  width: inherit;

  height: inherit;

  border-radius: 50%;

  transform: rotateX(70deg);

  animation: 1s spin linear infinite;
}

.loader:after {
  transform: rotateY(70deg);

  animation-delay: 0.4s;
}

@keyframes rotate {
  0% {
    transform: translate(-50%, -50%) rotateZ(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotateZ(360deg);
  }
}

@keyframes rotateccw {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@keyframes spin {
  0%,
  100% {
    box-shadow: 0.5em 0px 0 0px currentcolor;
  }

  12% {
    box-shadow: 0.5em 0.5em 0 0 currentcolor;
  }

  25% {
    box-shadow: 0 0.5em 0 0px currentcolor;
  }

  37% {
    box-shadow: -0.5em 0.5em 0 0 currentcolor;
  }

  50% {
    box-shadow: -0.5em 0 0 0 currentcolor;
  }

  62% {
    box-shadow: -0.5em -0.5em 0 0 currentcolor;
  }

  75% {
    box-shadow: 0px -0.5em 0 0 currentcolor;
  }

  87% {
    box-shadow: 0.5em -0.5em 0 0 currentcolor;
  }
}

/* ============Loader One CSS End=============== */

/* ===================================

    Header & Navigation

====================================== */

header.main-header.header-appear {
  /*height: 70px;*/

  position: fixed !important;

  top: 0;

  padding: 0px;

  z-index: 999;

  width: 100%;

  background-color: #000;

  -webkit-animation-name: animationFade;

  -o-animation-name: animationFade;

  animation-name: animationFade;

  -webkit-animation-duration: 1s;

  -o-animation-duration: 1s;

  animation-duration: 1s;

  -webkit-animation-fill-mode: both;

  -o-animation-fill-mode: both;

  animation-fill-mode: both;

  -webkit-box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);

  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
}

header {
  width: 100%;

  z-index: 99;
}

/*header top bar*/

.top-header-area {
  position: absolute;

  top: 0;

  z-index: 99;

  width: 100%;

  display: block;

  height: 45px;

  line-height: 45px;

  font-size: 14px;
}

.top-header-area ~ .navbar-top-default {
  background-color: #000;

  top: 45px;

  height: 65px;
}

.header-appear .top-header-area {
  display: none;
}

.header-appear .top-header-area ~ .navbar-top-default {
  top: 0;
}

.navbar {
  padding: 0px 0px;
}

/* nav top default */

.navbar-top-default {
  position: absolute;

  top: 0;

  z-index: 99;

  overflow: hidden;

  /*height: 90px;*/

  width: 100%;

  background-color: var(--color-black);

  -webkit-transition: all 0.1s ease;

  -moz-transition: all 0.1s ease;

  -ms-transition: all 0.1s ease;

  -o-transition: all 0.1s ease;

  transition: all 0.1s ease;
}

.header-appear .navbar-top-default {
  /*height: 70px;*/

  position: fixed;

  z-index: 999;

  background-color: var(--color-black);

  -webkit-animation-name: animationFade;

  -o-animation-name: animationFade;

  animation-name: animationFade;

  -webkit-animation-duration: 1s;

  -o-animation-duration: 1s;

  animation-duration: 1s;

  -webkit-animation-fill-mode: both;

  -o-animation-fill-mode: both;

  animation-fill-mode: both;

  -webkit-box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);

  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
}

.header-appear .navbar {
  padding: 5px 0px;
}

.header-appear .navbar-brand img {
  height: 50px;
}

/* animation */

@-webkit-keyframes animationFade {
  from {
    opacity: 0;

    -webkit-transform: translate3d(0, -100%, 0);

    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;

    -webkit-transform: none;

    transform: none;
  }
}

@-o-keyframes animationFade {
  from {
    opacity: 0;

    -webkit-transform: translate3d(0, -100%, 0);

    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;

    -webkit-transform: none;

    -o-transform: none;

    transform: none;
  }
}

@keyframes animationFade {
  from {
    opacity: 0;

    -webkit-transform: translate3d(0, -100%, 0);

    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;

    -webkit-transform: none;

    -o-transform: none;

    transform: none;
  }
}

/*----   HEADER  START  ----*/

.navbar-brand {
  padding: 0px;

  width: 30%;

  max-width: 30%;
}

.menuwrap {
  width: 30%;

  max-width: 30%;

  padding: 0px;
}

.top-search {
  width: 40%;

  max-width: 40%;
}

.navbar-brand img {
  height: 75px;

  width: auto;
}

.menuwrap ul {
  margin-left: inherit !important;

  margin-right: 0px !important;

  justify-content: flex-end;

  width: 100%;
}

.menuwrap ul li {
  margin: 0px 15px;
  font-size: 14px;
  padding: 15px 0px;
  position: relative;
}

.menuwrap ul li span.drop-menu {
  display: none;
}

.menuwrap ul li a {
  text-transform: uppercase;
  color: var(--white);
}

.menuwrap ul li a:hover {
  color: var(--orange);
}

.menuwrap ul li.active a {
  color: var(--orange);
}

.main-menu-more {
  display: none;
}

header.main-header {
  padding: 10px 0px;

  background-color: var(--black);

  position: relative;
}

.header-right span {
  text-transform: uppercase;

  color: #000;

  font-size: 14px;
}

.header-right a {
  color: #000;

  font-size: 14px;

  margin-left: 12px;
}

.header-right a:hover {
  color: var(--orange);
}

/*---   HEADER END   ---*/

.sec-space {
  padding: 30px 0px;
}

.section-space {
  padding: 60px 0px;
}

.title-section h2 {
  font-family: var(--heading-font);

  color: var(--text-color);

  font-size: 40px;
}

.title-section .viewtxt a {
  color: var(--orange);

  border-bottom: var(--orange) solid 1px;

  font-family: var(--heading-font);

  font-size: 18px;
}

.title-section .viewtxt a:hover {
  color: var(--black);

  border-color: var(--black);
}

/* ------------- Banner -------------- */

.banner-section .banner-left,
.banner-section .banner-right {
  width: 50%;

  max-width: 50%;
}

.banner.banner-left {
  background-repeat: no-repeat;

  /* background-attachment: fixed; */
  background-size: cover;
  background-position: center;
}

.banner-section .banner {
  position: relative;
}

.banner-section .banner img {
  height: 650px;

  width: 100%;

  object-fit: cover;
}

.banner-caption {
  position: absolute;

  bottom: 15%;

  left: 15%;

  width: 50%;
}

.banner-caption h2 {
  color: var(--white);

  font-family: var(--heading-font);

  font-size: 50px;

  line-height: 60px;

  font-weight: 400;

  padding-bottom: 20px;
}

.text-link a {
  display: inline-block;

  color: var(--orange);

  text-transform: uppercase;

  text-decoration: underline;
}

.saree-box {
  position: relative;
}

.saree-box img {
  width: 100%;

  height: 450px;

  object-fit: cover;
}

.saree-layer {
  position: absolute;

  width: 100%;

  height: 100%;

  top: 0;

  left: 0;

  background-color: rgba(0, 0, 0, 0.6);

  padding: 0px 60px;

  opacity: 0;

  -webkit-transition: all 1s ease;

  -moz-transition: all 1s ease;

  -o-transition: all 1s ease;

  -ms-transition: all 1s ease;

  transition: all 1s ease;
}

.layer-wrap {
  width: 100%;
}

.layer-wrap h3 {
  color: var(--white);

  font-family: var(--heading-font);

  font-size: 35px;

  line-height: 35px;

  padding-bottom: 5px;

  font-weight: 400;
}

.layer-wrap h5 {
  color: var(--white);

  font-size: 14px;

  line-height: 18px;

  font-weight: 400;
}

.saree-box:hover .saree-layer {
  opacity: 1;
}

.catbox-left {
  position: relative;
}

.catbox-left:before {
  content: "";

  height: 100%;

  width: 100%;

  background: linear-gradient(
    359deg,
    rgba(0, 6, 0, 0.47) 0%,
    rgba(253, 255, 255, 0) 100%
  );

  position: absolute;

  top: 0;

  left: 0;
}

.catbox-section {
  padding-bottom: 30px;
}

.catbox-section .catbox {
  width: 50%;

  max-width: 50%;
}

.catbox-section .catbox img {
  height: 650px;

  width: 100%;

  object-fit: cover;
}

.catbox {
  position: relative;
}

.catbox-caption {
  position: absolute;

  bottom: 5%;

  right: 5%;

  width: 45%;

  text-align: right;
}

.catbox-caption h2 {
  color: var(--white);

  font-family: var(--heading-font);

  font-size: 45px;

  line-height: 55px;

  font-weight: 400;

  padding-bottom: 20px;
}

.catbox.catbox-bg1 {
  background-image: url(../images/bg1.png);

  background-repeat: no-repeat;

  background-size: 100% 100%;
}

.catbox.catbox-bg2 {
  background-image: url(../images/bg2.png);

  background-repeat: no-repeat;

  background-size: 100% 100%;
}

.catbox.catbox-bg3 {
  background-image: url(../images/bg3.png);

  background-repeat: no-repeat;

  background-size: 100% 100%;
}

.catbox.catbox-bg4 {
  background-image: url(../images/bg4.png);

  background-repeat: no-repeat;

  background-size: 100% 100%;
}

.catbox.catbox-bg5 {
  background-image: url(../images/bg5.png);

  background-repeat: no-repeat;

  background-size: 100% 100%;
}

.catbox-outer {
  width: 100%;

  height: 100%;

  color: var(--white);

  position: relative;
}

.catbox-outer .viewtxt {
  padding-top: 30px;
}

.catbox-outer .viewtxt a {
  display: inline-block;

  color: var(--white);

  text-transform: uppercase;

  border-bottom: var(--white) solid 1px;

  font-size: 16px;

  font-family: var(--heading-font);
}

.catbox-outer .viewtxt a:hover {
  color: var(--orange);

  border-color: var(--orange);
}

.catbox-outer .catimg img {
  height: 300px;

  width: auto;

  object-fit: contain;
}

.cat-bredcum ul {
  padding-bottom: 30px;
}

.cat-bredcum ul li {
  color: var(--white);

  font-family: var(--heading-font);

  font-size: 20px;

  text-transform: uppercase;

  padding: 0px 10px;

  position: relative;
}

.cat-bredcum ul li:nth-child(2) {
  font-style: italic;
}

.cat-bredcum ul li::before {
  content: "";

  height: 5px;

  width: 5px;

  border-radius: 100%;

  background-color: var(--white);

  position: absolute;

  top: 7px;

  left: -3px;
}

.cat-bredcum ul li:nth-child(1) {
  padding-left: 0px;
}

.cat-bredcum ul li:nth-child(1)::before {
  content: none;
}

/* --------------------------- */

.prod-img-panel {
  position: relative;
  height: 300px;
  background-color: #f9f9f9;
}

.wishlist_products_counter_text,
.wishlist_products_counter_number {
  display: none;
}

.prod-img-panel .wishlist {
  position: absolute;

  top: 8px;

  right: 3px;
}

.prod-img-panel .wishlist a {
  color: var(--orange);
  margin-top: 0px !important;
}

.prod-img-panel .wishlist a:before {
  font-size: 25px !important;
}

.main-product-box .prod-img-panel img {
  height: 100%;

  width: 100%;

  object-fit: contain;

  background-color: #f9f9f9;
}

.main-product-box .product-content-panel {
  padding: 10px 0px 0px 0px;
}

.main-product-box .product-content-panel h5 {
  font-size: 15px;

  color: var(--black);

  padding-bottom: 10px;
}

.main-product-box .product-content-panel h5 a {
  color: var(--black);
}

.main-product-box .product-content-panel h4 {
  text-transform: uppercase;

  color: var(--black);

  font-size: 14px;

  font-family: var(--heading-font);

  font-weight: 700;

  padding-bottom: 5px;
}

.main-product-box .product-content-panel h4 a {
  color: var(--black);
}

span.tag a {
  color: var(--red) !important;

  margin-right: 5px;
}

.subcrib-section {
  background-color: var(--orange);
}

.subcrib-section .title-section h2 {
  color: #fff;

  padding-bottom: 10px;
}

.subcrib-section .title-section p {
  color: #fbe5ce;

  font-size: 14px;

  font-weight: 400;

  line-height: 20px;

  padding: 0px 30px;
}

.subscribe-wripe {
  position: relative;
}

.subscribe-wripe .es-form-field-container input[type="email"] {
  height: 50px;

  width: 100%;

  background-color: #fff;

  padding: 10px 15px;

  border-radius: 0px;

  border: none;
}

.subscribe-wripe .es-form-field-container input[type="submit"] {
  height: 50px;

  width: 50px;

  background-color: var(--black);

  color: var(--white);

  font-size: 0px;

  border: none;

  position: absolute;

  top: 7px;

  right: 0px;

  background-image: url(../images/submit.png);

  background-repeat: no-repeat;

  background-position: center;
}

/* ------------------- Footer ------------------ */

.main-footer {
  background-color: var(--black);
}

.fsocial a {
  color: var(--white);

  font-size: 18px;

  margin-right: 15px;
}

.fsocial a:hover {
  color: var(--orange);
}

.footer-logo-sec {
  max-width: 100px;
}

.footer-logo-sec .navbar-brand {
  width: 100%;

  max-width: 100%;
}

.fsocial {
  margin-top: 15px;
}

.footer-copyright {
  margin-left: 30px;

  max-width: 200px;
}

.footer-copyright h3 {
  color: var(--white);

  font-size: 14px;

  font-weight: 600;

  padding-bottom: 15px;
}

.footer-copyright p {
  margin-bottom: 15px;

  font-size: 13px;

  color: #aeaeae;

  font-weight: 400;
}

.footer-copyright p a {
  color: #aeaeae;
}

.ftr-box h2 {
  color: var(--white);

  font-size: 14px;

  font-weight: 600;

  padding-bottom: 15px;
}

.ftr-box ul li {
  margin-bottom: 5px;
  color: #afadaf;
}

.ftr-box ul li a {
  color: #afadaf;
}

.ftr-box ul li p {
  color: #afadaf;
  margin-bottom: 0px;
}

.ftr-box ul li a:hover {
  color: var(--orange);
}

.ftr-box ul.contact li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
}

.ftr-box ul.contact li span {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 15px;
}

.top-search .asl_w_container {
  max-width: 300px;

  margin: 0 auto;
}

.top-search #ajaxsearchlite1 {
  background-color: transparent !important;

  background-image: none !important;
}

.top-search .probox {
  background-color: transparent !important;

  background-image: none !important;
}

.promagnifier {
  order: inherit !important;

  background-color: transparent !important;

  background-image: none !important;
}

.probox ::-webkit-input-placeholder {
  /* Edge */

  color: red !important;
}

.probox ::-ms-input-placeholder {
  /* Internet Explorer 10-11 */

  color: red !important;
}

.probox ::placeholder {
  color: red !important;
}

.products .main-product-box {
  margin-top: 0px !important;
}

.review-section {
  background-color: #f9f9f9;
}

.owl-carousel .owl-dots {
  text-align: center;
  padding-top: 30px;
}

.owl-carousel .owl-dots .owl-dot span {
  display: inline-block;
  height: 6px;
  width: 6px;
  border-radius: 100%;
  background-color: #d8d4d4;
  margin: 0px 5px;
}

.owl-carousel .owl-dots .owl-dot.active span {
  width: 30px;
  background-color: #000;
  border-radius: 50px;
}

/* ------Woocommerce Pagination-------- */

.woocommerce-pagination ul {
  text-align: right;
}

.woocommerce-pagination ul li span {
  display: inline-block;
  background-color: var(--orange);
  color: #fff;
  padding: 10px 12px !important;
}

.woocommerce-pagination ul li a {
  display: inline-block;
  background-color: #e5e5e5;
  color: #000;
  padding: 10px 12px !important;
  margin-left: 5px;
}

.woocommerce-pagination ul li a:hover {
  background-color: var(--orange);
  color: #fff;
}

/* ---------------Delete----------------------*/

.product_meta .sku_wrapper {
  display: none;
}

.single_add_to_cart_button {
  display: none !important;
}

.details_page p.price {
  display: none !important;
}

.woof_products_top_panel {
  display: none !important;
}

.woof_show_auto_form {
  display: none !important;
}

.woof_submit_search_form_container {
  display: none !important;
}

ul#adminmenu li#toplevel_page_woocommerce {
  display: none !important;
}

/* ----------------------------------------------*/

.woocommerce-ordering {
  display: none;
}

.orderby {
  padding: 8px 10px;

  background-color: #f9f9f9;

  border: none;
}

/* =============================

    PRODUCT LISTING SECTION

================================ */

.woof_redraw_zone {
  background-color: #f9f9f9;

  padding: 15px;
}

.woof_container ul {
  margin-left: 0 !important;

  list-style: none;
}

.woof_container ul li {
  position: relative;

  display: block !important;

  margin: 14px 0;

  color: var(--color-gray);

  font-size: 13px;

  line-height: normal;

  font-family: var(--body-font);

  font-weight: normal;
}

.woof_container ul li label {
  margin-bottom: 0;
}

.woof_container ul li .icheckbox_square-blue + a {
  position: absolute;

  top: 0;

  right: 0;

  margin: 0;

  padding: 0;

  display: none;

  transform: none !important;
}

.woof_container:not(:first-child) {
  padding-bottom: 10px;

  margin-top: 20px;
}

.woof_container ul li a {
  color: inherit;
}

.woof_container ul li > a:hover {
  transform: translateX(5px);
}

.woof_container h4 {
  font-size: 25px;

  line-height: normal;

  font-weight: 400;

  border-bottom: 1px solid #958c89;

  padding-bottom: 10px;

  font-family: var(--heading-font);

  color: var(--orange);
}

.woof_container h4 .woof_front_toggle {
  position: relative;

  font-size: 0;

  width: 20px;

  height: 20px;

  color: #000;

  float: right;
}

.woof_container_inner .woof_front_toggle {
  background: url(../images/plus.png) no-repeat center / 24px;
}

.woof_container_inner .woof_front_toggle.woof_front_toggle_opened {
  background: url(../images/minus.png) no-repeat center / 24px;
}

.woof_container .woof_front_toggle {
  position: relative;

  font-size: 0;

  width: 15px;

  height: 15px;

  color: #000;
}

.quote-modal .modal-header,
.quote-modal .modal-body {
  background-color: transparent;

  border-radius: 0px;

  border: none;

  position: relative;
}

.quote-modal .modal-header .close {
  position: absolute;

  padding: 0;

  right: 25px;

  top: 15px;

  color: #fff;

  font-weight: normal;

  opacity: 1;

  font-size: 35px;
}

.quote-modal .modal-header h5 {
  color: var(--white);

  font-family: var(--heading-font);

  font-size: 25px;
}

.modal-content {
  border-radius: 0px;

  background-image: url(../images/bg4.png);

  background-repeat: no-repeat;

  background-size: 100% 100%;
}

.quote-form label {
  color: var(--white);

  font-family: var(--heading-font);

  font-size: 20px;
}

.quote-form .form-control {
  background-color: #f9c590;

  border: none;

  border-radius: 0px;
}

.quote-form textarea.form-control {
  height: 100px;
  resize: none;
}

.quote-form .form-control:focus {
  background-color: #f9c590;

  outline: none;

  box-shadow: none;

  color: #000;

  font-size: 14px;
}

.quote-form .wpcf7-submit {
  background-color: var(--black);

  color: #fff;

  padding: 12px 25px;

  border-radius: 0px;

  border: none;

  font-family: var(--heading-font);

  font-size: 16px;

  text-transform: uppercase;
}

.quote-form .wpcf7-submit:hover {
  background-color: var(--white);

  color: var(--black);

  outline: none;

  box-shadow: none;
}

.quote-form label.error {
  color: var(--red);

  font-size: 16px;
}

.button-group {
  position: relative;
}

.button-group #loadImg {
  position: absolute;

  right: 50px;

  top: 7px;
}

.button-group #loadImg img {
  height: 30px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  transition: background-color 5000s ease-in-out 0s;

  -webkit-text-fill-color: #000 !important;
}

/* -----------------------------*/

/*Form Submit Popup*/

.jconfirm {
  position: fixed;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  z-index: 99999999;

  font-family: inherit;

  overflow: hidden;

  background: #000000e0;
}

.jconfirm-open .jconfirm-scrollpane {
  flex: 0 0 100%;

  max-width: 100%;
}

.jconfirm-buttons .btn {
  background: var(--orange);

  border: 0;

  border-radius: 0;

  color: #fff;

  margin: 10px 0 0 0;

  padding: 0 30px;

  height: 45px;

  font-weight: 500;
}

.jconfirm-box {
  background: #e9e9e9;

  padding: 30px;

  color: #000;

  text-align: center;
}

.jconfirm-box span.jconfirm-title {
  font-size: 40px;

  line-height: 50px;

  color: green;

  font-weight: 600;

  font-family: var(--heading-font);
}

.jconfirm-content {
  font-weight: 500;

  margin: 10px 0;
}

/* ----------------*/

.review-box {
  background-color: var(--white);

  padding: 15px;
}

.review-box .media .media-left {
  width: 200px;
}

.review-box .media .media-left img {
  width: 200px;

  height: 100%;

  object-fit: cover;
}

.review-box .media .media-body {
  padding-left: 15px;
}

.review-box .media .media-body h3 {
  font-weight: 700;

  font-size: 14px;

  padding-bottom: 10px;

  color: #000;
}

.review-box .media .media-body p {
  font-size: 13px;

  line-height: 18px;
}

.review-bottom h4 {
  font-weight: 700;

  font-size: 16px;

  padding-bottom: 5px;

  color: #000;
}

.review-bottom h5 {
  font-weight: 700;

  font-size: 12px;

  padding-bottom: 5px;

  color: #0f0f0f;
}

.review-bottom h5 a {
  color: #0f0f0f;

  text-decoration: underline;
}

.review-bottom .review-date {
  color: #0f0f0f;

  font-size: 12px;

  font-style: italic;
}

.review-star {
  padding-bottom: 5px;
}

.review-star img {
  height: 20px;

  display: inline-block !important;

  width: auto !important;
}

/* ------------ Mega Menu ---------------------*/

.megamenu {
  position: absolute;

  top: 70px;

  left: 0;

  width: 100%;

  display: none;
}

.megamenu-wrap {
  width: 100%;

  background-color: var(--white);

  padding: 20px;

  position: relative;
}

.megamenu1 .megamenu-wrap:before {
  content: "";
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 8px solid white;
  position: absolute;
  top: -8px;
  right: 270px;
}

.megamenu2 .megamenu-wrap:before {
  content: "";
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 8px solid white;
  position: absolute;
  top: -8px;
  right: 190px;
}

.megamenu-wrap .megamenu-cont {
  width: 80%;

  max-width: 80%;

  max-height: 300px;

  overflow: auto;
}

/* width */
.megamenu-wrap .megamenu-cont::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.megamenu-wrap .megamenu-cont::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
.megamenu-wrap .megamenu-cont::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
.megamenu-wrap .megamenu-cont::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.megamenu-wrap .megamenu-pic {
  width: 20%;

  max-width: 20%;

  text-align: right;
}

.megamenu-wrap .megamenu-pic img {
  width: auto;

  height: 250px;

  object-fit: contain;
}

.megamenu-cont ul li {
  width: 25%;

  max-width: 25%;

  margin-bottom: 15px;

  padding: 0px;
}

.megamenu-cont ul li h2 {
  font-family: var(--heading-font);

  font-size: 18px;

  font-weight: 700;

  padding-bottom: 5px;

  color: var(--black);
}

.megamenu-cont ul li .view a {
  display: inline-block;

  color: var(--orange);

  text-decoration: underline;

  text-transform: none;
}

.megamenu-cont ul li .view a:hover {
  color: var(--black);
}

.megamenu.active {
  display: block;

  top: 84px;

  z-index: 9;
}

.main-header.header-appear .megamenu.active {
  top: 60px;
}

/* -----------Login Registation--------------*/

.woocommerce .col-1 {
  max-width: 100%;
}

.woocommerce .col-2 {
  max-width: 100%;
}

.frmwrap {
  background-color: #f9f9f9;
  padding: 0px;
}

.frmwrap form {
  padding: 20px 15px;
}

.frmwrap form .form-row {
  margin-right: 0px;
  margin-left: 0px;
}

.frmwrap h2 {
  background-color: var(--orange);
  color: var(--white);
  padding: 10px 15px;
  font-size: 25px;
}

.frmwrap .woocommerce-Input {
  height: 45px;

  border-radius: 4px;

  border: #ddd solid 1px;
}

.frmwrap .input-text {
  height: 45px;

  border-radius: 4px;

  border: #ddd solid 1px;

  padding: 10px;
}

span.password-input {
  width: 100%;

  display: block;
}

.frmwrap button[type="submit"] {
  background-color: var(--red);

  border: none;

  border-radius: 4px;

  color: var(--white);

  padding: 10px 25px;
}

.frmwrap button[type="submit"]:hover {
  background-color: var(--orange);
}

.lost_password a {
  color: var(--red);

  text-decoration: underline;
}

.login-wrap.lostpass {
  max-width: 650px;

  text-align: center;

  margin: 0 auto;

  background-color: #f9f9f9;

  padding: 30px;
}

.login-wrap.lostpass .woocommerce-form-row {
  display: block;

  width: 100%;

  text-align: center;
}

.login-wrap.lostpass .woocommerce-Input {
  height: 45px;

  border-radius: 4px;

  padding: 10px;

  border: #ddd solid 1px;
}

.login-wrap.lostpass button[type="submit"] {
  background-color: var(--red);

  border: none;

  border-radius: 4px;

  color: var(--white);

  padding: 10px 25px;
}

.login-wrap.lostpass button[type="submit"]:hover {
  background-color: var(--orange);
}

.woocommerce-error li {
  list-style-type: none !important;
}

/*-------------------------*/

/* ------------ Details Page ---------------- */

.product_area.details_page .woocommerce-product-gallery__image {
  background-color: #f8f8f8;
}

.product_area.details_page .woocommerce-product-gallery__image img {
  width: 100%;

  height: 500px;

  object-fit: contain;
}

.summary.entry-summary h1.product_title {
  font-family: var(--heading-font);

  font-size: 30px;

  padding-bottom: 15px;

  color: #000;
}

.summary.entry-summary table {
  margin-bottom: 15px;
}

.summary.entry-summary table.variations td {
  padding: 5px;
}

.summary.entry-summary table.variations td label {
  color: #000;
}

.summary.entry-summary table.variations td select {
  padding: 10px;

  border: #ddd solid 1px;
}

.tinvwl-woocommerce_single_product_summary {
  display: none;
}

.woocommerce-variation-add-to-cart {
  display: none;

  align-items: center;
}

.woocommerce-variation-add-to-cart .tinvwl_add_to_wishlist-text {
  display: none;
}

.tinvwl_add_to_wishlist-text {
  display: none;
}

.summary.entry-summary .tinvwl_add_to_wishlist_button {
  background-color: var(--orange);

  color: #fff;

  margin-top: 0px !important;

  height: 35px;

  width: 40px;

  text-align: center;

  line-height: 30px;

  font-size: 20px;

  margin-left: 15px;
}

.summary.entry-summary .tinvwl_add_to_wishlist_button:before {
  margin: 0px !important;

  font-size: 25px;
}

.woocommerce-product-details__short-description p {
  color: #666;
}

.single_variation_wrap {
  margin-bottom: 15px;
}

.get-quote {
  margin-top: 15px;
}

.get-quote a {
  display: inline-block;

  background-color: var(--orange);

  padding: 12px 25px;

  color: var(--white);

  font-family: var(--heading-font);

  font-size: 20px;
}

.get-quote a:hover {
  background-color: var(--black);

  color: #fff;
}

a.reset_variations {
  display: inline-block;

  background-color: var(--orange);

  padding: 8px 20px;

  color: var(--white);

  font-family: var(--heading-font);

  font-size: 16px;
}

a.reset_variations:hover {
  background-color: var(--black);

  color: #fff;
}

.related.products h2 {
  font-family: var(--heading-font);

  font-size: 30px;

  padding-bottom: 15px;

  color: var(--black);
}

.page-template-wishlist .tinv-header {
  display: none;
}

table.tinvwl-table-manage-list {
  border-collapse: collapse;

  width: 100%;
}

table.tinvwl-table-manage-list th {
  background-color: var(--orange);

  color: var(--white);

  padding: 10px;

  font-weight: 400;

  font-family: var(--heading-font);

  font-size: 20px;
}

table.tinvwl-table-manage-list td {
  color: var(--blacke);

  padding: 10px;

  border: #ddd solid 1px;
}

table.tinvwl-table-manage-list td.product-name a {
  color: var(--orange);
  text-decoration: underline;
}

table.tinvwl-table-manage-list tfoot {
  display: none;
}

table.tinvwl-table-manage-list td a {
  color: var(--black);
}

table.tinvwl-table-manage-list tr:nth-child(even) td {
  background: #f8f8f8;
}

table.tinvwl-table-manage-list td.product-action a {
  background-color: var(--black);

  color: var(--white);

  padding: 10px 15px;

  font-size: 16px;

  font-family: var(--heading-font);
}

table.tinvwl-table-manage-list th.product-action,
table.tinvwl-table-manage-list td.product-action {
  display: none;
}

table.tinvwl-table-manage-list th.product-price,
table.tinvwl-table-manage-list th.product-cb,
table.tinvwl-table-manage-list td.product-price,
table.tinvwl-table-manage-list td.product-cb {
  display: none;
}

.page-template-wishlist .social-buttons {
  display: none;
}

.details_page .woocommerce-tabs {
  background-color: #f9f9f9;
  border: #ddd solid 1px;
  padding: 25px;
  display: inline-block;
  width: 100%;
  margin-top: 20px;
}

.details_page .product .woocommerce-tabs ul.tabs {
  margin: 0 !important;
  padding: 0 0 0 1px !important;
  text-align: center;
}

.details_page .product .woocommerce-tabs ul.tabs li {
  border: none !important;
  background-color: transparent !important;
  border-radius: 0px !important;
  margin: 0 0 !important;
  margin-bottom: 0px !important;
  margin: 0px 15px !important;
}

.details_page .product .woocommerce-tabs ul.tabs li a {
  display: inline-block;
  padding: 0px 0px 5px 0px;
  color: #000 !important;
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0px !important;
}

.details_page .product .woocommerce-tabs ul.tabs li:hover {
  background-color: transparent !important;
}

.details_page .product .woocommerce-tabs ul.tabs li:hover a {
  color: #000 !important;
  background-color: transparent;
}

.details_page .product .woocommerce-tabs ul.tabs li.active {
}

.details_page .product .woocommerce-tabs ul.tabs li.active a {
  color: #000 !important;
  position: relative;
  box-shadow: none;
}

.details_page .product .woocommerce-tabs ul.tabs li.active a:before {
  content: "";
  height: 2px;
  width: 100%;
  background-color: var(--orange);
  position: absolute;
  bottom: 0;
  left: 0;
}

.details_page .product .woocommerce-tabs ul.tabs li:before,
.details_page .product .woocommerce-tabs ul.tabs li:after {
  display: none;
}

.details_page .product .woocommerce-tabs ul.tabs li.active {
  z-index: 2;
}

.details_page .product .woocommerce-tabs .panel {
  margin: 10px 0 15px !important;
  padding: 0;
  padding: 30px !important;
}

.details_page .product .woocommerce-tabs .panel h2 {
  display: block;
  font-size: 25px !important;
  font-weight: 700;
  font-family: var(--heading-font);
  text-align: left;
  color: #000;
  padding-bottom: 15px;
  margin-bottom: 0px;
}

.details_page .product .woocommerce-tabs .panel p {
  display: block;
  color: #000;
  font-family: var(--body-font);
  font-size: 14px;
  line-height: 22px;
  margin: 0px 0px 15px 0px;
  font-weight: 400;
}

.details_page .product .woocommerce-tabs .panel ul {
  list-style-type: disc;
  margin-left: 15px;
}

.details_page .product .woocommerce-tabs .panel ul li {
  list-style-type: disc;
  margin-bottom: 5px;
}

table.woocommerce-product-attributes th {
  padding-left: 0px;
  padding-bottom: 10px;
  font-family: var(--body-font);
  vertical-align: middle;
}

table.woocommerce-product-attributes td {
  padding-left: 15px;
  padding-bottom: 10px;
  font-family: var(--body-font);
  vertical-align: middle;
}

table.woocommerce-product-attributes td p {
  margin-bottom: 0px !important;
}

.about-pic img {
  height: 400px;
  width: 100%;
  object-fit: cover;
}

.about-cont {
  padding: 0px 100px;
  max-width: 800px;
}

.about-cont .title-section h2 {
  color: var(--white);
}

.about-cont p {
  color: var(--white);
}

/* ------------- inner banner ---------------------- */

ul.breadcrumbs {
}
ul.breadcrumbs li {
  display: inline-block;
  padding: 0px 5px;
}
.innerBanner {
  position: relative;
  background-color: #000;
}
.innerBanner img {
  width: 100%;
  max-width: 100%;
  max-height: 300px;
  object-fit: cover;
  opacity: 0.7;
}
.title_breadcrumb-inner {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%) !important;
  left: 0;
}
.title_breadcrumb-inner span {
  display: inline-block;
  padding: 15px;
  width: 100%;
  text-align: center;
  color: #000;
}
.title_breadcrumb-inner span h1 {
  color: #fff;
  font-size: 40px;
  padding-bottom: 10px;
  margin-bottom: 0px;
  font-family: var(--heading-font);
}
.breadcrumb_bottom {
  padding: 0;
  text-align: left;
}
.breadcrumb_bottom {
}
.breadcrumb_bottom ul {
  margin-bottom: 0px;
  text-align: center;
}
.breadcrumb_bottom ul li {
  color: #fff;
  font-size: 20px;
  font-family: var(--heading-font);
}
.breadcrumb_bottom ul li strong {
  color: #fff;
  font-weight: 400;
}
.breadcrumb_bottom ul li a {
  color: #fff;
  font-family: var(--heading-font);
}
.breadcrumb_bottom ul li a:hover {
  color: #fff;
}
.inner-cont {
  padding: 50px 0px 50px 0px;
}
.inner-cont h2 {
  font-size: 35px;
  position: relative;
  font-weight: 700;
  color: #010101;
  padding-bottom: 15px;
  margin-bottom: 0px;
}
.inner-cont h3 {
  font-size: 25px;
  position: relative;
  font-weight: 700;
  color: #010101;
  padding-bottom: 15px;
  margin-bottom: 0px;
}
.inner-cont p {
  font-size: 14px;
  line-height: 22px;
}

.inner-cont ul {
  margin-left: 15px;
}
.inner-cont ul li {
  margin-bottom: 10px;
  list-style-type: disc;
}

/* ----------------------------------- */

/* ------------ Contact ----------------- */

.home-contact {
  background-color: #f9f9f9;
}

.home-contact .contact-map {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
}
.home-contact .contact-frm {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
  padding: 30px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.contact-frm {
  background-color: #f8f7f5;
}
.contact-frm .frm-wrap {
  max-width: 520px;
}

.contact-frm .frm-wrap .form-group {
  margin-bottom: 25px;
}

.contact-frm h2 {
  color: #000;
  font-size: 30px;
  padding-bottom: 20px;
  font-weight: 700;
  font-family: var(--heading-font);
}

.contact-frm p {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0px;
}

.frm-wrap .form-control {
  background-color: #fff;
  height: 45px;
  border: #ddd solid 1px;
  font-size: 14px;
  border-radius: 0px;
}

.frm-wrap textarea.form-control {
  height: 100px;
  resize: none;
}

.frm-wrap .form-control:focus {
  box-shadow: none;
}

.frm-wrap .wpcf7-submit {
  background-color: var(--orange);
  border-radius: 0;
  color: var(--white);
  font-size: 15px;
  padding: 10px 25px;
}

.frm-wrap .wpcf7-submit:hover {
  background-color: var(--black);
}

.wpcf7-response-output {
  display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
  display: block;
  border-color: #46b450;
  color: #46b450;
}

.contact-info {
  width: 100%;
  margin-bottom: 30px;
}

.contact-info .address {
  background-color: #f9f9f9;
  border: #d7d7d7 solid 1px;
  padding: 20px;
  text-align: center;
  height: 230px;
}

.contact-info h4 {
  font-size: 18px;
  color: #000;
  font-family: var(--heading-font);
  font-weight: 700;
  padding-bottom: 10px;
}

.contact-info p {
  font-size: 15px;
  line-height: 22px;
  color: #000;
}

.contact-info p a {
  color: #000;
}

.icon span {
  display: inline-block;
  height: 50px;
  width: 50px;
  background-color: var(--orange);
  color: #fff;
  font-size: 30px;
  border-radius: 100%;
  line-height: 50px;
  text-align: center;
  margin-bottom: 10px;
}

.address.mail .icon span {
  font-size: 22px;
}

ol.commentlist li {
  background-color: #fff;
  padding: 15px;
  border: #ddd solid 1px;
  margin-bottom: 15px !important;
}

.comment-respond {
  background-color: #fff;
  padding: 30px;
  border: #ddd solid 1px;
}

.comment-respond .comment-reply-title {
  font-size: 30px;
  font-family: var(--heading-font);
  padding-bottom: 20px;
  text-align: center;
  color: #000;
}

.comment-respond form.comment-form label {
  font-family: var(--heading-font);
  font-size: 20px;
  color: #000;
  display: block;
  width: 100%;
  font-weight: 700;
  padding-bottom: 5px;
}

.comment-respond form.comment-form input {
  width: 100%;
  height: 45px;
  background-color: #f8f8f8;
  font-size: 14px;
  border-radius: 0px;
  border: #ddd solid 1px;
  padding: 10px;
}

.comment-respond form.comment-form textarea {
  width: 100%;
  height: 200px;
  resize: none;
  background-color: #f8f8f8;
  font-size: 14px;
  border-radius: 0px;
  border: #ddd solid 1px;
  padding: 10px;
}

.comment-respond form.comment-form .comment-form-cookies-consent {
  display: none !important;
}

.form-submit {
  text-align: right;
}

.comment-respond form.comment-form input[type="submit"] {
  background-color: var(--orange);
  border-radius: 0px;
  padding: 10px 25px;
  color: var(--white);
  font-size: 20px;
  font-family: var(--heading-font);
  width: auto;
}

.comment-respond form.comment-form input[type="submit"]:hover {
  background-color: var(--black);
}

.star-rating span {
  color: #000 !important;
}
.star-rating span::before {
  color: #000 !important;
}

.woof_childs_list_opener span.woof_is_closed,
.woof_childs_list_opener span.woof_is_opened {
  filter: brightness(0) !important;
}

.yith_magnifier_zoom_magnifier {
  background-color: #fff !important;
  text-align: center !important;
}

/*---  Blog Listing Start  ---*/

.blog-sidebar {
}

.single-our_courses .blog-sidebar .media {
  padding: 10px;
  background: white;
  margin-bottom: 10px;
}

.blog-sidebar ul {
  margin-left: 0px;
}

.blog-sidebar ul li {
  list-style-type: none;
  line-height: 18px;
  font-size: 15px;
  border-top: #ddd solid 1px;
  padding: 10px 0px;
  margin: 0px;
}

.sidebar-title {
  font-family: "Playfair Display", serif;
  font-size: 25px;
  margin-bottom: 20px;
  position: relative;
  width: fit-content;
}

.sidebar-title:after {
  position: absolute;
  content: "";
  width: 60px;
  height: 2px;
  border-radius: 5px;
  background: var(--color-pink);
  top: 75%;
  transform: translateY(-50%);
  right: -70px;
}

.blog-sidebar .media {
  padding: 15px;
}

.blog-sidebar .media .media-right {
  width: 115px;
}

.blog-sidebar .media .media-right img {
  height: 100px;
  width: 100px;
  object-fit: cover;
}

.blog-sidebar .media .media-body {
  padding-right: 30px;
}

.blog-sidebar .media .media-body h2 {
  color: var(--color-black);
  font-size: 22px;
  padding-bottom: 10px;
}

.blog-sidebar .media .media-body h2 a {
  color: var(--color-black);
}

.blog-sidebar .media .media-body p {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 0px;
  line-height: 18px;
}

.blog-sidebar .recent_blog {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  margin-bottom: 15px;
}

.blog-sidebar .recent_blog:last-child {
  margin-bottom: 0px;
}

.slide-cont-inn .blog-date {
  padding-left: 0px;
  color: var(--color-black);
}

.slide-cont-inn .blog-date span {
  color: var(--color-black);
}

.slide-cont-inn .blog-date span a {
  color: var(--color-black);
}

/*---  Blog Listing End  ---*/

.page-template-about .catbox-section .catbox img {
  height: 100%;
}

.cat-sidebar {
  position: sticky;
  top: 50px;
}

.yith_magnifier_mousetrap {
  z-index: 9 !important;
}

.woocommerce-Reviews {
  display: flex;
  flex-wrap: wrap;
}

.woocommerce-Reviews #comments {
  width: 50%;
  max-width: 50%;
  padding-right: 20px;
}

.woocommerce-Reviews #review_form_wrapper {
  width: 50%;
  max-width: 50%;
  padding-left: 20px;
  border-left: #ddd solid 1px;
}


.vdosec, .testimg {
  display: block;
  position: relative;
  padding-top: 75%;
  border: 1px solid #eb8e2e30;
}

.vdosec iframe, .testimg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}