/* -----------------------------------------------------------------------------
# Main SCSS File - TwinTowels v2
# Compiles to: ../mainv3.css
----------------------------------------------------------------------------- */
/* -----------------------------------------------------------------------------
# Variables
----------------------------------------------------------------------------- */
:root {
  --primary-color-fade: #FFC033;
  --primary-color: #F24514;
  --secondary-color: #13383d;
  --terciary-color: #2C7C89;
  --background-color: rgb(247, 247, 247);
  --background-color-secondary: #fff;
  --text-color: #555;
  --font-family-primary: "Poppins", sans-serif;
  --font-family-secondary: "Open Sans", sans-serif;
  --transition-duration: 0.3s;
}

/* -----------------------------------------------------------------------------
# Font Faces
----------------------------------------------------------------------------- */
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* -----------------------------------------------------------------------------
# Typography
----------------------------------------------------------------------------- */
html {
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
}

body {
  font-family: var(--font-family-secondary);
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.1px;
  line-height: 1.8;
  color: var(--secondary-color);
  overflow-x: hidden;
}
body img {
  max-width: 100%;
}

a {
  position: relative;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  color: var(--primary-color);
}
a:hover {
  text-decoration: none;
}

p > a {
  display: inline-block;
}
p > a::after {
  position: absolute;
  content: "";
  left: 0;
  top: calc(100% - 2px);
  display: block;
  width: 0;
  height: 1px;
  background: var(--primary-color);
  transition: width 0.3s;
}
p > a:hover {
  color: var(--primary-color);
}
p > a:hover::after {
  width: 100%;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-family: var(--font-family-primary);
  font-weight: 700;
  margin: 0 0 1.25rem 0;
  color: var(--secondary-color);
}
h1:last-child, .h1:last-child,
h2:last-child, .h2:last-child,
h3:last-child, .h3:last-child,
h4:last-child, .h4:last-child,
h5:last-child, .h5:last-child,
h6:last-child, .h6:last-child {
  margin: 0;
}

h1, .h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 4rem;
}
@media only screen and (max-width: 767.96px) {
  h1, .h1 {
    font-size: 3rem;
    line-height: 3.25rem;
  }
}
@media only screen and (max-width: 575.96px) {
  h1, .h1 {
    font-size: 2.5rem;
    line-height: 2.75rem;
  }
}

h2, .h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 3.25rem;
}
@media only screen and (max-width: 767.96px) {
  h2, .h2 {
    font-size: 2.5rem;
    line-height: 2.75rem;
  }
}
@media only screen and (max-width: 575.96px) {
  h2, .h2 {
    font-size: 2rem;
    line-height: 2.25rem;
  }
}

h3, .h3 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.25rem;
}
@media only screen and (max-width: 575.96px) {
  h3, .h3 {
    font-size: 1.75rem;
    line-height: 2rem;
  }
}

h4, .h4 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.75rem;
}
@media only screen and (max-width: 575.96px) {
  h4, .h4 {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
}

h5, .h5 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5rem;
}

h6, .h6 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5rem;
}

p {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.1px;
  line-height: 1.8;
  color: var(--secondary-color);
  margin: 0 0 1.25rem 0;
}
p:last-child {
  margin: 0;
}

/* -----------------------------------------------------------------------------
# Utility Classes
----------------------------------------------------------------------------- */
.text-primary {
  color: var(--primary-color) !important;
}

.text-barre {
  text-decoration: line-through;
}

.disabled {
  opacity: 0.5 !important;
  pointer-events: none !important;
  cursor: not-allowed !important;
}

.img-shadow {
  filter: drop-shadow(0 8px 24px rgba(34, 34, 34, 0.25));
  border-radius: 12px;
  transition: box-shadow 0.3s, filter 0.3s;
}

.color-dot {
  position: relative;
  width: 20px;
  height: 20px;
  display: inline-block;
  border-radius: 6px;
  border: 3px solid white;
}
.color-dot.on-dot::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  border: 1px solid grey;
  width: calc(100% + 5px);
  height: calc(100% + 5px);
  transform: translate(-50%, -50%);
  border-radius: 5px;
  z-index: 2;
}

.main-product-img {
  aspect-ratio: 1/1;
  position: relative;
}
.main-product-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 12px !important;
}

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

.blue-bg {
  background-color: #162133;
}

.orange-text {
  color: var(--primary-color);
  background: linear-gradient(45deg, var(--primary-color), var(--primary-color-fade));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* -----------------------------------------------------------------------------
# Loader
----------------------------------------------------------------------------- */
.loader {
  bottom: 0;
  height: 100%;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 1111;
  background: var(--background-color-secondary);
  overflow-x: hidden;
}

.loader-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 50px;
  width: 50px;
}

.circle {
  width: 8vmax;
  height: 8vmax;
  border-right: 4px solid #000;
  border-radius: 50%;
  animation: spinRight 800ms linear infinite;
}
.circle:before {
  content: "";
  width: 6vmax;
  height: 6vmax;
  display: block;
  position: absolute;
  top: calc(50% - 3vmax);
  left: calc(50% - 3vmax);
  border-left: 3px solid var(--primary-color);
  border-radius: 100%;
  animation: spinLeft 800ms linear infinite;
}
.circle:after {
  content: "";
  width: 4vmax;
  height: 4vmax;
  display: block;
  position: absolute;
  top: calc(50% - 2vmax);
  left: calc(50% - 2vmax);
  border: 0;
  border-right: 2px solid #000;
  border-radius: 100%;
  animation: none;
}

@keyframes spinLeft {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(720deg);
  }
}
@keyframes spinRight {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}
/* -----------------------------------------------------------------------------
# Spacing Utilities
----------------------------------------------------------------------------- */
.mt-80 {
  margin-top: 80px;
}
@media only screen and (max-width: 767.96px) {
  .mt-80 {
    margin-top: 50px;
  }
}

.mt-100 {
  margin-top: 100px;
}
@media only screen and (max-width: 767.96px) {
  .mt-100 {
    margin-top: 80px;
  }
}

.mt-150 {
  margin-top: 150px;
}
@media only screen and (max-width: 767.96px) {
  .mt-150 {
    margin-top: 100px;
  }
}

.mb-80 {
  margin-bottom: 80px;
}
@media only screen and (max-width: 767.96px) {
  .mb-80 {
    margin-bottom: 50px;
  }
}

.mb-100 {
  margin-bottom: 100px;
}
@media only screen and (max-width: 767.96px) {
  .mb-100 {
    margin-bottom: 80px;
  }
}

.mb-150 {
  margin-bottom: 150px;
}
@media only screen and (max-width: 767.96px) {
  .mb-150 {
    margin-bottom: 100px;
  }
}

.pt-80 {
  padding-top: 80px;
}
@media only screen and (max-width: 767.96px) {
  .pt-80 {
    padding-top: 50px;
  }
}

.pt-100 {
  padding-top: 100px;
}
@media only screen and (max-width: 767.96px) {
  .pt-100 {
    padding-top: 80px;
  }
}

.pt-150 {
  padding-top: 150px;
}
@media only screen and (max-width: 767.96px) {
  .pt-150 {
    padding-top: 100px;
  }
}

.pb-80 {
  padding-bottom: 80px;
}
@media only screen and (max-width: 767.96px) {
  .pb-80 {
    padding-bottom: 50px;
  }
}

.pb-100 {
  padding-bottom: 100px;
}
@media only screen and (max-width: 767.96px) {
  .pb-100 {
    padding-bottom: 80px;
  }
}

.pb-150 {
  padding-bottom: 150px;
}
@media only screen and (max-width: 767.96px) {
  .pb-150 {
    padding-bottom: 100px;
  }
}

/* -----------------------------------------------------------------------------
# Buttons
----------------------------------------------------------------------------- */
.boxed-btn {
  font-family: "Poppins", sans-serif;
  display: inline-block;
  background: linear-gradient(45deg, var(--primary-color), var(--primary-color-fade));
  border: none;
  box-shadow: 0 6px 18px rgba(34, 34, 34, 0.12);
  transition: background-position var(--transition-duration), box-shadow var(--transition-duration);
  color: var(--background-color-secondary);
  padding: 10px 20px;
  border-radius: 50px;
}
.boxed-btn:hover {
  color: var(--background-color-secondary);
}

.boxed-btn-secondary {
  font-family: "Poppins", sans-serif;
  display: inline-block;
  padding: 10px 20px;
  color: var(--primary-color) !important;
  border-radius: 50px;
  border: 2px solid transparent;
  background: linear-gradient(var(--background-color-secondary), var(--background-color-secondary)) padding-box, linear-gradient(45deg, var(--primary-color), var(--primary-color-fade)) border-box;
  transition: var(--transition-duration);
}
.boxed-btn-secondary i {
  margin-left: 5px;
}

.bordered-btn {
  font-family: "Poppins", sans-serif;
  display: inline-block;
  color: var(--background-color-secondary);
  border: 2px solid var(--primary-color);
  padding: 7px 20px;
  border-radius: 50px;
}

.read-more-btn {
  display: inline-block;
  margin-top: 15px;
  color: var(--secondary-color);
  transition: 0.3s;
  font-weight: 700;
}
.read-more-btn:hover {
  color: var(--primary-color);
}

.cart-btn {
  border-radius: 50px;
  transition: 0.3s;
}
.cart-btn-rupture-stock {
  background-color: transparent !important;
  color: var(--secondary-color) !important;
  border: 2px solid var(--secondary-color) !important;
  cursor: not-allowed;
}

input[type=submit] {
  background-color: var(--primary-color);
  color: var(--background-color-secondary);
  font-size: 15px;
  border: none !important;
  cursor: pointer;
  padding: 10px 20px;
  border-radius: 50px !important;
  transition: 0.3s;
}

/* -----------------------------------------------------------------------------
# Section Styles
----------------------------------------------------------------------------- */
.full-height-section {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-title {
  margin-bottom: 80px;
}
.section-title h1 {
  font-size: 40px;
  position: relative;
  padding-bottom: 15px;
}
.section-title h1:after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
  margin: 0 auto;
}
.section-title p {
  font-size: 15px;
  width: 530px;
  margin: 0 auto;
  color: var(--text-color);
  margin-top: 10px;
  line-height: 1.8;
}

.breadcrumb-text p {
  color: var(--primary-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 7px;
}
.breadcrumb-text h1 {
  font-size: 50px;
  font-weight: 900;
  color: var(--background-color-secondary);
  margin: 0;
  margin-top: 20px;
}

.breadcrumb-section {
  padding-top: 175px;
  padding-bottom: 120px;
  background-size: cover;
  background-position: center center;
  position: relative;
  z-index: 1;
  background-attachment: fixed;
}
.breadcrumb-section:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: url("../img/hero-produits.webp");
  background-position: 50% 50%;
  background-size: cover;
  z-index: -1;
  opacity: 0.8;
  backdrop-filter: blur(5px);
}
.breadcrumb-section:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(7, 33, 46, 0.6) 50%, rgba(7, 33, 46, 0.5) 100%);
  z-index: -1;
}

/* -----------------------------------------------------------------------------
# Accordion Styles (FAQ, Checkout)
----------------------------------------------------------------------------- */
.card.single-accordion {
  margin-bottom: 15px;
  border-bottom: 1px solid #EFEFEF !important;
  border: 1px solid #eeeeee;
}
.card.single-accordion.product-single-accordion {
  border: none;
}
.card.single-accordion .card-header {
  background-color: var(--background-color-secondary);
  border: none;
  padding: 0;
}
.card.single-accordion .card-header h5 button {
  color: var(--secondary-color);
  font-size: 15px;
  display: block;
  width: 100%;
  text-align: left;
  padding: 20px;
  text-decoration: none;
  border: none;
  background-color: #EFEFEF;
  position: relative;
  padding-left: 50px;
  font-weight: 600;
}
.card.single-accordion .card-header h5 button.btn-bg-transparent {
  background-color: transparent;
}
.card.single-accordion .card-header h5 button:before {
  position: absolute;
  left: 20px;
  top: 50%;
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  line-height: 22px;
  margin-top: -11px;
  color: var(--primary-color);
}
.card.single-accordion .card-header h5 button.collapsed:before {
  position: absolute;
  left: 20px;
  top: 50%;
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  line-height: 22px;
  margin-top: -11px;
  color: var(--primary-color);
}
.card.single-accordion:last-child {
  margin-bottom: 0;
}

.billing-address-form,
.shipping-address-form,
.card-details {
  padding: 20px;
}
.billing-address-form form p,
.shipping-address-form form p,
.card-details form p {
  margin: 0;
}
.billing-address-form form p input,
.shipping-address-form form p input,
.card-details form p input {
  border: 1px solid #ddd;
  padding: 15px;
  width: 100%;
  border-radius: 3px;
}
.billing-address-form form p textarea,
.shipping-address-form form p textarea,
.card-details form p textarea {
  width: 100%;
  border-radius: 3px;
  border: 1px solid #ddd;
  padding: 15px;
  height: 120px;
  resize: none;
}
.billing-address-form form p:last-child,
.shipping-address-form form p:last-child,
.card-details form p:last-child {
  margin-bottom: 0;
}

/* -----------------------------------------------------------------------------
# Header
----------------------------------------------------------------------------- */
.top-header-area {
  position: absolute;
  z-index: 999;
  width: 100%;
  padding: 25px 0;
  transition: 0.3s;
}
.top-header-area.white ul.navbar-nav li.nav-item a.nav-link, .top-header-area.white ul.navbar-nav li.nav-item.active a.nav-link {
  color: var(--background-color-secondary);
}
.top-header-area .header-icons a {
  color: var(--background-color-secondary);
  display: inline-block;
  padding: 10px;
  transition: 0.3s;
}
.top-header-area .header-icons a:hover {
  color: var(--primary-color);
}
.top-header-area.sepherate-header ul li > a, .top-header-area.sepherate-header .header-icons a {
  color: var(--secondary-color);
}

ul.navbar-nav {
  margin: 0 auto;
}
ul.navbar-nav li.nav-item a.nav-link, ul.navbar-nav li.nav-item.active a.nav-link {
  color: var(--secondary-color);
  font-weight: 700;
  margin-right: 14px;
}

a.navbar-brand img {
  max-width: 150px;
}

.site-logo {
  position: relative;
  float: left;
  height: 55.2px;
  width: auto;
}
.site-logo img {
  height: 100%;
  width: auto;
}

nav.main-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  float: right;
  display: flex;
}
nav.main-menu ul li {
  display: block;
  position: relative;
}
nav.main-menu ul li a {
  color: var(--secondary-color);
  font-weight: 700;
  display: block;
  padding: 15px;
  transition: 0.3s;
}
nav.main-menu ul li.current-list-item > a {
  background: linear-gradient(45deg, var(--primary-color), var(--primary-color-fade));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 700;
}
nav.main-menu ul li:hover > a {
  background: linear-gradient(45deg, var(--primary-color), var(--primary-color-fade));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 700;
}
nav.main-menu ul li:last-child a {
  display: inline-block;
}
nav.main-menu ul ul.sub-menu {
  position: absolute;
  background-color: var(--background-color-secondary);
  width: 220px;
  padding: 15px;
  margin: 0;
  left: 0;
  top: 50px;
  border-radius: 3px;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 0 20px rgba(85, 85, 85, 0.3);
}
nav.main-menu ul ul.sub-menu li {
  display: block;
  text-align: left;
}
nav.main-menu ul ul.sub-menu li a {
  color: var(--text-color);
  font-weight: 600;
  padding: 8px;
  font-size: 13px;
}
nav.main-menu ul ul.sub-menu li:last-child {
  float: none !important;
}
nav.main-menu ul > li:hover ul {
  opacity: 1;
  visibility: visible;
}

.mean-nav li a {
  color: #13383d;
}
.mean-nav li.current-list-item a {
  background: linear-gradient(45deg, var(--primary-color), var(--primary-color-fade));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent !important;
  font-weight: 700;
}

#sticker {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999 !important;
  overflow: visible;
}
#sticker.top-header-area {
  background-color: var(--background-color-secondary);
  padding: 15px 0;
}
#sticker.is-sticky {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06), 0 4px 10px rgba(0, 0, 0, 0.04);
}
@media only screen and (min-width: 768px) {
  #sticker.is-sticky .top-header-area {
    box-shadow: 0 8px 32px rgba(34, 34, 34, 0.18), 0 1.5px 8px rgba(242, 69, 20, 0.08);
  }
}
#sticker.is-sticky a {
  color: var(--secondary-color);
}

.mean-container .mean-bar {
  background-color: transparent;
  position: absolute;
  right: 0;
  top: 15px;
}
.mean-container a.meanmenu-reveal {
  color: var(--secondary-color);
  text-indent: 0;
  font-size: 18px;
  padding: 8px 8px 6px;
  padding-right: 12px;
}
.mean-container a.meanmenu-reveal span {
  background-color: var(--secondary-color);
  border-radius: 50px;
}
.mean-container .mean-nav ul li a {
  padding: 0.5em 5%;
}
.mean-container .mean-nav ul li a.mean-expand {
  font-size: 16px;
  height: 10px;
  line-height: 10px;
  width: 15px;
}
.mean-container .mean-nav ul li li a {
  padding: 0.5em 10%;
}
.mean-container .mean-nav > ul > li:first-child > a {
  border-top: none;
}

.search-area {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 5555;
  background-color: var(--secondary-color);
  width: 100%;
  height: 100%;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}
.search-area.search-active {
  visibility: visible;
  opacity: 1;
  z-index: 999;
}
.search-area div {
  height: 100%;
}
.search-area .search-bar {
  height: 100%;
  display: table;
  width: 100%;
}
.search-area .search-bar div.search-bar-tablecell {
  display: table-cell;
  vertical-align: middle;
  height: auto;
}
.search-area .search-bar div.search-bar-tablecell h3 {
  color: var(--background-color-secondary);
  margin-bottom: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 7px;
}
.search-area .search-bar div.search-bar-tablecell input {
  border: none;
  padding: 15px;
  width: 60%;
  background-color: transparent;
  border-bottom: 1px solid var(--primary-color);
  display: block;
  margin: 0 auto;
  text-align: center;
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--background-color-secondary);
}
.search-area .search-bar div.search-bar-tablecell input::placeholder {
  color: var(--background-color-secondary);
}
.search-area .search-bar div.search-bar-tablecell button[type=submit] {
  border: none;
  background-color: var(--primary-color);
  padding: 15px 30px;
  cursor: pointer;
  display: inline-block;
  border-radius: 50px;
  font-weight: 700;
  transition: 0.3s;
}
.search-area .search-bar div.search-bar-tablecell button[type=submit] i {
  margin-left: 5px;
}
.search-area .search-bar div.search-bar-tablecell button[type=submit]:hover {
  background-color: var(--background-color-secondary);
  color: #000;
}
.search-area span.close-btn {
  position: absolute;
  right: 0%;
  color: var(--background-color-secondary);
  top: 5%;
  cursor: pointer;
  transition: 0.3s;
}
.search-area span.close-btn:hover {
  color: var(--background-color-secondary);
}

a.mobile-show {
  display: none;
}
a.mobile-show.search-bar-icon {
  transition: 0.3s;
}
a.mobile-show.search-bar-icon:hover {
  color: var(--primary-color);
}

/* -----------------------------------------------------------------------------
# Footer
----------------------------------------------------------------------------- */
.logo-carousel-section {
  background-color: var(--background-color);
  padding: 50px 0;
}
.logo-carousel-section .single-logo-item {
  transition: 0.3s;
}
.logo-carousel-section .single-logo-item img {
  max-width: 180px;
  margin: 0 auto;
}
.logo-carousel-section .single-logo-item:hover {
  opacity: 0.7;
}

.footer-area {
  box-shadow: 0 8px 32px rgba(34, 34, 34, 0.18), 0 1.5px 8px rgba(242, 69, 20, 0.08);
  background-color: var(--background-color-secondary);
  padding: 100px 0;
}

h2.widget-title {
  font-size: 24px;
  font-weight: 500;
  position: relative;
  padding-bottom: 20px;
}
h2.widget-title:after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 20px;
  height: 2px;
  content: "";
  background-color: var(--primary-color);
}

.footer-box p {
  opacity: 0.7;
  line-height: 1.8;
}
.footer-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-box ul li {
  opacity: 0.7;
  margin-bottom: 10px;
  line-height: 1.8;
}
.footer-box ul li:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 575.96px) {
  .footer-box.logo {
    margin-left: auto;
    margin-right: auto;
    width: 70%;
  }
}
.footer-box.pages ul li {
  position: relative;
  padding-left: 20px;
  color: var(--secondary-color);
}
.footer-box.pages ul li:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--primary-color);
}

.copyright {
  background-color: var(--background-color);
}
.copyright p {
  margin: 0;
  opacity: 0.7;
  padding: 16px 0;
  font-size: 15px;
}
.copyright a {
  color: var(--primary-color);
  font-weight: 700;
}
.copyright a:hover {
  color: #f59d53;
}

.social-icons ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.social-icons ul li {
  display: inline-block;
}
.social-icons ul li a {
  font-size: 16px;
  opacity: 0.7;
  padding: 16px 10px;
  display: block;
}

/* -----------------------------------------------------------------------------
# Hero Section
----------------------------------------------------------------------------- */
html, body {
  height: 100%;
}

.hero-area {
  height: 100vh;
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-area p {
  font-size: 18px;
  color: var(--text-color);
}

.hero-text-tablecell {
  display: table-cell;
}

.hero-text p.subtitle {
  color: var(--primary-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 7px;
  font-size: 15px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.hero-text h1 {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-color);
}

.hero-btns {
  margin-top: 35px;
}
.hero-btns a.bordered-btn {
  margin-left: 15px;
}

.hero-image {
  position: relative;
  width: 68%;
  margin: 0 auto;
}
.hero-image::after {
  position: absolute;
  left: 85%;
  top: -60px;
  width: 120px;
  height: 120px;
  background-image: url("../img/hero-ray.png");
  background-size: contain;
  content: "";
}

.hero-area div.hero-form {
  background-color: var(--background-color-secondary);
  text-align: center;
  width: 380px;
  margin: 0 auto;
  margin-right: 0;
  border-radius: 5px;
  box-shadow: 0 0 15px #2d2d2d;
  position: absolute;
  right: 30px;
  bottom: -15%;
  height: 600px;
}

#hero-index {
  position: relative;
}

div.owl-controls, .owl-controls div {
  height: auto;
  top: 50%;
  color: var(--primary-color);
  font-size: 48px;
  transition: 0.3s;
}
div.owl-controls div.owl-nav div:hover, .owl-controls div div.owl-nav div:hover {
  opacity: 0.7;
}

.owl-prev {
  position: absolute;
  left: 60px;
  margin-top: -30px;
}

.owl-next {
  position: absolute;
  right: 60px;
  margin-top: -30px;
}

/* -----------------------------------------------------------------------------
# List Section
----------------------------------------------------------------------------- */
.list-section {
  background-color: var(--background-color);
}

.list-box {
  overflow: hidden;
  letter-spacing: 0.5px;
}
.list-box .content h3 {
  display: block;
  line-height: 22px;
  font-size: 18px;
  margin-bottom: 4px;
}
.list-box .content p {
  margin-bottom: 0;
  opacity: 0.75;
}
.list-box .list-icon i {
  display: block;
  font-size: 24px;
  margin-right: 15px;
  color: transparent;
  background: linear-gradient(45deg, var(--primary-color), var(--primary-color-fade));
  -webkit-background-clip: text;
  background-clip: text;
  width: 65px;
  height: 65px;
  text-align: center;
  line-height: 60px;
  border: 2px dotted var(--primary-color);
  border-radius: 999px;
}

/* -----------------------------------------------------------------------------
# News / Blog Section
----------------------------------------------------------------------------- */
.news-bg-1 {
  background-image: url(../img/latest-news/news-bg-1.jpg);
}

.news-bg-2 {
  background-image: url(../img/latest-news/news-bg-2.jpg);
}

.news-bg-3 {
  background-image: url(../img/latest-news/news-bg-3.jpg);
}

.news-bg-4 {
  background-image: url(../img/latest-news/news-bg-4.jpg);
}

.news-bg-5 {
  background-image: url(../img/latest-news/news-bg-5.jpg);
}

.news-bg-6 {
  background-image: url(../img/latest-news/news-bg-6.jpg);
}

.latest-news-bg {
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  background-color: #ddd;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  transition: 0.3s;
}

.single-latest-news {
  margin-bottom: 30px;
  box-shadow: 0 0 20px #dddddd;
  transition: 0.3s;
}
.single-latest-news:hover {
  box-shadow: none;
}
.single-latest-news:hover .latest-news-bg {
  opacity: 0.8;
}
.single-latest-news h3 {
  font-size: 20px;
  line-height: 1.25em;
  font-weight: 600;
}
.single-latest-news h3 a {
  color: var(--secondary-color);
}

p.blog-meta span {
  margin-right: 15px;
  opacity: 0.6;
  color: var(--secondary-color);
  font-size: 0.85em;
}
p.blog-meta span:last-child {
  margin-right: 0;
}
p.blog-meta span i {
  margin-right: 5px;
}

p.excerpt {
  line-height: 1.8;
  color: var(--text-color);
}

.latest-news .boxed-btn {
  margin-top: 80px;
}

.news-text-box {
  padding: 25px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.pagination-wrap {
  margin-top: 40px;
}
.pagination-wrap ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.pagination-wrap ul li {
  display: inline-block;
}
.pagination-wrap ul li a {
  color: #6f6f6f;
  font-size: 15px;
  background-color: #f3f3f3;
  display: inline-block;
  padding: 8px 14px;
  border-radius: 50px;
  margin: 3px;
  font-weight: 600;
  transition: 0.3s;
}
.pagination-wrap ul li a.active {
  background-color: var(--primary-color);
}
.pagination-wrap ul li:hover a {
  background-color: var(--primary-color);
}

/* -----------------------------------------------------------------------------
# Products Section
----------------------------------------------------------------------------- */
.product-promo-div {
  display: inline-block;
  background: linear-gradient(45deg, var(--primary-color), var(--primary-color-fade));
  border: none;
  box-shadow: 0 4px 24px rgba(34, 34, 34, 0.15);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 16px;
}

.product-price-normal {
  font-size: 22px;
  color: var(--secondary-color);
  font-weight: 500;
}

.product-price-old {
  font-size: 18px;
  color: var(--secondary-color);
  text-decoration: line-through;
  font-weight: 600;
}

.product-price-new {
  font-size: 22px;
  color: var(--primary-color);
  font-weight: 500;
}

.product-filters {
  margin-bottom: 80px;
}
.product-filters ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}
.product-filters ul li {
  display: inline-block;
  font-weight: 700;
  font-size: 18px;
  margin: 15px;
  border: 2px solid var(--secondary-color);
  color: #323232;
  cursor: pointer;
  padding: 8px 20px;
  border-radius: 25px;
}
.product-filters ul li.active {
  border: 2px solid var(--primary-color);
  background-color: var(--primary-color);
  color: var(--background-color-secondary);
}

.product-image {
  position: relative;
  padding-bottom: 0;
  margin: 0 auto;
}
.product-image.product-image-multi:first-child {
  padding-right: 0;
}
.product-image.product-image-multi:nth-child(2) {
  padding-left: 0;
}
.product-image img {
  width: 100%;
  border-radius: 5px;
  margin-bottom: 5px;
  transition: 0.3s;
}
.product-image img:hover {
  box-shadow: none;
}

.charm {
  position: absolute;
  aspect-ratio: 1/1;
  border-bottom: 0 !important;
}
.charm img {
  max-width: 50px;
  max-height: 50px;
  width: 100%;
  filter: drop-shadow(0 8px 24px rgba(34, 34, 34, 0.75));
  z-index: 5;
}

.charm-1 {
  left: -8px;
  top: 85%;
}

.charm-2 {
  right: -15px;
  top: -10px;
}

.charm-3 {
  left: -15px;
  top: 85%;
}

p.product-price {
  font-family: "Poppins", sans-serif;
  margin: 0 auto;
  font-weight: 700;
  margin-bottom: 15px;
}

.cart-btn {
  font-family: "Poppins", sans-serif;
  display: inline-block;
  background-color: var(--primary-color) !important;
  color: var(--background-color-secondary) !important;
  padding: 10px 20px;
  border: none !important;
  width: 100%;
}

.cart-btn-secondary {
  font-family: "Poppins", sans-serif;
  display: inline-block;
  border-radius: 50rem;
  transition: 0.3s;
  margin-bottom: 0.5rem;
  width: 100%;
}
.cart-btn-secondary i {
  margin-left: 3px;
}

.products {
  gap: 50px;
}

.single-product-item {
  position: relative;
  display: block;
  transition: var(--transition-duration);
  padding: 2rem 1.8rem;
  background-color: var(--background-color);
  border-radius: 12px;
  width: 30%;
}
.single-product-item:hover {
  box-shadow: none;
}
.single-product-item h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 5px;
  text-align: left;
}
.single-product-item .boxed-btn-secondary {
  background: linear-gradient(var(--background-color), var(--background-color)) padding-box, linear-gradient(45deg, var(--primary-color), var(--primary-color-fade)) border-box !important;
}

p.specification {
  display: block;
  width: 100%;
  opacity: 0.8;
  font-size: 15px;
  font-weight: 400;
  text-align: left;
  line-height: 1.7rem;
  margin-bottom: 5px;
}

.product-image img {
  transition: 0.3s;
}
.product-image img:hover {
  box-shadow: none;
}

/* -----------------------------------------------------------------------------
# Cart Banner & Image Column Styles
----------------------------------------------------------------------------- */
.cart-banner {
  background-color: var(--background-color);
}
.cart-banner .image-column {
  position: relative;
  margin-top: 40px;
}
.cart-banner .image-column .price-box {
  position: absolute;
  left: 15%;
  top: -30px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 1px solid var(--background-color-secondary);
  background-color: rgba(242, 129, 35, 0.75);
}
.cart-banner .image-column .price-box .inner-price {
  position: relative;
  width: 94px;
  height: 94px;
  margin: 0 auto;
  margin-top: 8px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--primary-color);
}
.cart-banner .image-column .price-box .inner-price .price {
  color: var(--secondary-color);
  padding-top: 27px;
  position: relative;
  display: inline-block;
  line-height: 18px;
  font-weight: 400;
}
.cart-banner .image-column .price-box .inner-price .price strong {
  color: var(--secondary-color);
  font-size: 24px;
}
.cart-banner .content-column {
  position: relative;
  padding-top: 40px;
}
.cart-banner .content-column h3 {
  font-size: 30px;
}
.cart-banner .content-column .text {
  position: relative;
  font-weight: 400;
  line-height: 1.8em;
  margin-bottom: 25px;
}

.image-column {
  position: relative;
}
.image-column img {
  position: relative;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 0 20px #dddddd;
}

.image-column-ray img {
  width: 60%;
  left: 75%;
  transform: translateX(-75%);
}
.image-column-ray.img-presentation::before {
  position: absolute;
  left: 5%;
  top: 100%;
  transform: translateY(-100%);
  width: 150px;
  height: 150px;
  content: "";
  background-image: url("../img/presentation-ray.png");
  background-size: contain;
  z-index: 1;
}

.image-column-histoire img {
  width: 90%;
  left: 65%;
  transform: translateX(-65%);
}

.time-counter {
  position: relative;
  margin-bottom: 25px;
}
.time-counter .time-countdown {
  position: relative;
}
.time-counter .time-countdown .counter-column {
  position: relative;
  display: inline-block;
  margin: 0px 0px 5px;
  font-size: 13px;
  line-height: 1em;
  padding: 8px 20px 14px;
  text-transform: capitalize;
  text-align: center;
  border: 2px solid var(--primary-color);
}
.time-counter .time-countdown .counter-column .count {
  position: relative;
  display: block;
  font-size: 30px;
  line-height: 1.4em;
  padding: 0px 0px;
  color: var(--primary-color);
  font-weight: 700;
  letter-spacing: 1px;
}

/* -----------------------------------------------------------------------------
# Contact Page
----------------------------------------------------------------------------- */
.form-title {
  margin-bottom: 25px;
}
.form-title h2 {
  font-size: 25px;
}
.form-title p {
  font-size: 15px;
  line-height: 1.8;
}

.contact-form form p input[type=text],
.contact-form form p input[type=tel],
.contact-form form p input[type=email] {
  width: 49%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 3px;
}
.contact-form form p textarea {
  border: 1px solid #ddd;
  padding: 15px;
  height: 200px;
  border-radius: 3px;
  width: 100%;
  resize: none;
}

.contact-form-wrap {
  background-color: #FBFBFB;
  padding: 45px 30px;
  border-radius: 5px;
}
.contact-form-wrap .contact-form-box:last-child {
  margin: 0;
}

.contact-form-box {
  padding-left: 40px;
  margin-bottom: 30px;
}
.contact-form-box h4 {
  font-size: 20px;
  font-weight: 600;
  position: relative;
  margin-bottom: 10px;
}
.contact-form-box h4 i {
  position: absolute;
  left: -13%;
  color: var(--primary-color);
  top: 2px;
}
.contact-form-box p {
  line-height: 1.8;
  opacity: 0.8;
}

.find-location p {
  color: var(--background-color-secondary);
  font-size: 40px;
  margin: 0;
  font-weight: 600;
  padding: 95px 0;
}
.find-location p i {
  margin-right: 10px;
  color: var(--primary-color);
}

#payment-form .input-manuel input {
  width: 100%;
  padding: 1rem;
  border-radius: 12px;
  box-sizing: border-box;
  margin-bottom: 10px;
  border: 0;
  background-color: #f1f1f1;
  transition: background 0.15s ease, border 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
}
#payment-form .input-manuel input:focus {
  outline: none;
  box-shadow: 0 0 0 3px hsla(13, 90%, 51%, 0.25), 0 0 0 1px #F24514;
}
#payment-form .input-manuel label {
  margin-bottom: 0.25rem !important;
  font-size: 1rem !important;
  font-family: var(--font-family-secondary) !important;
  line-height: 1.15 !important;
}
#payment-form .cart-btn {
  border: none;
}

#form_status {
  margin: 15px 0;
}
#form_status span {
  color: var(--background-color-secondary);
  font-size: 14px;
  font-weight: normal;
  background: #E74C3C;
  width: 100%;
  text-align: center;
  display: inline-block;
  padding: 10px 0px;
  border-radius: 3px;
  margin-bottom: 18px;
}
#form_status span.loading {
  color: #333;
  background: #eee;
  border-radius: 3px;
  padding: 18px 0px;
}
#form_status span.notice {
  color: yellow;
}
#form_status .loading, #form_status .success, #form_status .wrong {
  display: block;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 15px;
}
#form_status .loading {
  background-color: #ffc107;
  color: #333;
}
#form_status .success {
  color: var(--background-color-secondary);
  text-align: center;
  background: #2ecc71;
  border-radius: 3px;
  padding: 30px 0px;
}
#form_status .success i {
  color: var(--background-color-secondary);
  font-size: 45px;
  margin-bottom: 14px;
}
#form_status .success h3 {
  color: var(--background-color-secondary);
  margin-bottom: 10px;
}
#form_status .wrong {
  background-color: #dc3545;
  color: white;
}

/* -----------------------------------------------------------------------------
# Hover Effects
----------------------------------------------------------------------------- */
a.navbar-brand {
  transition: 0.3s;
}
a.navbar-brand:hover {
  opacity: 0.7;
}

.boxed-btn,
.boxed-btn-secondary {
  transition: 0.3s;
}
.boxed-btn:hover,
.boxed-btn-secondary:hover {
  transform: translateY(-2px);
  transition: 0.4s;
}

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

.bordered-btn {
  transition: 0.3s;
}
.bordered-btn:hover {
  background-color: var(--primary-color);
  color: var(--background-color-secondary);
}

ul.sub-menu a {
  transition: 0.3s;
}
ul.sub-menu li:hover a {
  color: var(--primary-color);
}

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

input[type=submit]:hover {
  background-color: var(--secondary-color);
}

.social-icons ul li a {
  transition: 0.3s;
}
.social-icons ul li:hover a {
  color: var(--primary-color);
}

.footer-box.pages ul li a {
  transition: 0.3s;
  color: var(--secondary-color);
}
.footer-box.pages ul li:hover a {
  color: var(--primary-color);
}

.product-image img {
  transition: 0.3s;
}
.product-image img:hover {
  box-shadow: none;
}

/* -----------------------------------------------------------------------------
# Responsive Styles
----------------------------------------------------------------------------- */
/* Medium Layout: 1280px */
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .hero-text h1 {
    font-size: 45px;
  }
  a.video-play-btn {
    right: 51%;
    color: var(--primary-color);
    background-color: var(--background-color);
  }
  .hero-area div.hero-form {
    bottom: -20%;
  }
  .cart-buttons a:first-child {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .contact-form form p input[type=email] {
    margin-left: 8px;
  }
  .contact-form-box h4 i {
    left: -20%;
  }
  .comment-template form p input[type=email] {
    margin-left: 8px;
  }
  ul.main-menu li a {
    padding: 15px 13px;
  }
  span.close-btn {
    right: 0;
  }
  ul.sub-menu li a {
    padding: 7px 10px;
  }
}
/* Tablet Layout: 768px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-text h1 {
    font-size: 40px;
  }
  .footer-box {
    margin-bottom: 40px;
  }
  .copyright p {
    text-align: center;
    color: var(--text-color);
  }
  .copyright .social-icons {
    text-align: center;
  }
  .feature-bg:after {
    display: none;
  }
  .single-team-item {
    margin-bottom: 30px;
  }
  table.cart-table {
    margin-bottom: 50px;
  }
  .order-details-wrap {
    margin-top: 50px;
  }
  .contact-form form p input[type=text],
  .contact-form form p input[type=tel],
  .contact-form form p input[type=email] {
    width: 100%;
  }
  .contact-form form p input[type=email] {
    margin-left: 0;
    margin-top: 15px;
  }
  .contact-form form p input[type=tel] {
    margin-bottom: 15px;
  }
  .hero-area div.hero-form {
    width: 325px;
    top: 30%;
  }
  .comment-template form p input[type=text],
  .comment-template form p input[type=email] {
    width: 100%;
  }
  .comment-template form p input[type=email] {
    margin-top: 15px;
    margin-left: 0;
  }
  .sidebar-section {
    margin-left: 0;
    margin-top: 50px;
  }
  .single-product-img {
    margin-bottom: 30px;
  }
  .single-product-img img {
    width: 100%;
  }
  .single-project-img img {
    width: 100%;
  }
  .site-logo {
    text-align: center;
    position: absolute;
    z-index: 999;
  }
  .site-logo a img {
    max-width: 150px;
  }
  .mean-container .mean-bar {
    z-index: 2;
  }
  .responsive-menu-wrap {
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    margin-top: 10px;
    margin-left: -57.5px;
  }
  .header-icons {
    text-align: center;
  }
  .top-header-area {
    padding: 15px 0;
    z-index: 100;
  }
  .featured-section {
    padding: 0;
  }
  .hero-text-tablecell {
    padding: 0px 70px;
  }
  .hero-form .hero-text h1 {
    font-size: 30px;
  }
  .hero-form .hero-text p.subtitle {
    font-size: 13px;
  }
  .hero-form .hero-btns a.bordered-btn {
    margin-left: 0;
    margin-top: 20px;
  }
  .sticky-wrapper.is-sticky .top-header-area {
    position: absolute !important;
    background-color: transparent;
  }
  .featured-box {
    padding: 30px;
  }
  .featured-section {
    padding: 100px 0;
  }
  nav.main-menu {
    display: none;
  }
  table.order-details {
    width: 100%;
  }
  .contact-form-box h4 i {
    left: -7%;
  }
  .single-product-content {
    margin-left: 15px;
  }
  .single-product-content h3 {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
  }
  a.mobile-hide.search-bar-icon {
    display: none !important;
  }
  .mobile-show {
    display: block !important;
  }
  a.mobile-show.search-bar-icon {
    position: absolute;
    right: 60px;
    top: 22px;
    z-index: 999;
    color: var(--primary-color);
  }
}
/* Mobile Layout: 320px */
@media only screen and (max-width: 767px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
  #sticker {
    position: absolute;
    background-color: transparent !important;
  }
  #sticker.is-sticky {
    box-shadow: none;
  }
  .site-logo img {
    max-width: 150px;
  }
  .responsive-menu-wrap {
    top: -35px;
    position: relative;
  }
  span.close-btn {
    right: 35px;
  }
  .header-icons {
    text-align: center;
    margin-top: 0;
  }
  .hero-text {
    text-align: center;
  }
  .hero-text h1 {
    font-size: 28px;
  }
  .hero-text p.subtitle {
    font-size: 13px;
  }
  .section-title {
    margin-top: 30px;
    margin-bottom: 50px;
  }
  .section-title p {
    max-width: 285px;
  }
  .section-title h1 {
    font-size: 30px;
  }
  p.testimonial-body {
    font-size: 15px;
    max-width: 285px;
  }
  .responsive-menu {
    left: auto;
    right: 0;
  }
  .featured-section {
    padding: 0;
  }
  a.video-play-btn {
    right: auto;
    left: 50%;
    margin-left: -45px;
  }
  .shop-banner h3 {
    font-size: 34px;
  }
  .footer-box {
    margin-bottom: 50px;
  }
  .copyright p {
    text-align: center;
    padding-bottom: 0;
  }
  .social-icons {
    text-align: center;
  }
  .footer-area {
    padding-top: 70px;
    padding-bottom: 10px;
  }
  .single-product-item {
    width: 100%;
    margin: 0 15px;
  }
  .breadcrumb-text h1 {
    font-size: 30px;
  }
  .feature-bg {
    margin: 100px 0;
  }
  .feature-bg:after {
    display: none;
  }
  .text-block {
    margin-bottom: 50px;
  }
  .single-team-item {
    margin-bottom: 50px;
  }
  .team-bg {
    height: 450px;
  }
  .total-section {
    margin-top: 30px;
  }
  .order-details-wrap {
    margin-top: 50px;
  }
  .contact-form form p input[type=text],
  .contact-form form p input[type=tel],
  .contact-form form p input[type=email] {
    width: 100%;
  }
  .contact-form form p input[type=tel] {
    margin-bottom: 15px;
  }
  .contact-form form p input[type=email] {
    margin-left: 0;
    margin-top: 15px;
  }
  .find-location p {
    font-size: 20px;
  }
  .comment-template form p input[type=email] {
    margin-left: 0;
    margin-top: 15px;
  }
  .comment-template form p input[type=text],
  .comment-template form p input[type=email] {
    width: 100%;
  }
  .sidebar-section {
    margin-left: 0;
    margin-top: 50px;
  }
  .single-product-content {
    margin-left: 0;
    margin-top: 15px;
  }
  .single-product-content h3 {
    font-size: 20px;
    line-height: 1.5;
  }
  .product-image {
    width: 100%;
    padding: 10px 0 6px 0;
  }
  .breadcrumb-section {
    padding: 150px 0 100px 0;
  }
  .header-icons {
    text-align: right;
    margin-top: 15px;
  }
  .margin-top-150p {
    margin-top: 650px;
  }
  .display-hidden {
    display: none;
  }
  p.top-sub {
    margin-top: 32px;
  }
  .hero-area {
    max-height: 100vh;
    height: auto;
    padding-top: 10rem;
    padding-bottom: 4.5rem;
  }
  .hero-area div.hero-form {
    right: 0;
    width: auto;
    top: 0;
  }
  .hero-area p {
    font-size: 15px;
  }
  .hero-area .align-items-center {
    padding-top: 0rem;
  }
  .hero-btns {
    text-align: center;
  }
  .hero-btns a.boxed-btn {
    display: inline-block;
    margin: 0 auto;
  }
  .hero-btns a.bordered-btn {
    margin-left: 0;
    margin-top: 15px;
    display: inline-block;
  }
  .hero-ray {
    margin-top: 4.5rem;
  }
  .hero-image {
    width: 80%;
  }
  .hero-image::after {
    left: 80%;
    top: -40px;
    width: 90px;
    height: 90px;
  }
  .single-media-wrap h4 {
    font-size: 15px;
  }
  .sticky-wrapper.is-sticky .top-header-area {
    position: absolute !important;
    background-color: transparent;
    padding: 25px 0;
  }
  .featured-box {
    padding: 0 45px;
    margin-bottom: 10px;
  }
  .featured-box h2 {
    font-size: 23px;
  }
  .featured-box h3 {
    font-size: 18px;
  }
  .featured-section {
    padding: 100px 0;
  }
  .search-bar-tablecell input {
    font-size: 20px;
  }
  .site-logo {
    position: absolute;
    z-index: 99;
  }
  .mean-container .mean-bar {
    z-index: 2;
  }
  .service-text h3 {
    font-size: 18px;
  }
  .cta-text h3 {
    line-height: 1.6;
  }
  .news-text-box h3 {
    font-size: 20px;
    line-height: 1.5;
  }
  .single-service-box {
    padding: 30px;
  }
  .service-icon-table {
    height: 80px;
  }
  .service-icon-tablecell i {
    font-size: 30px;
  }
  .main-menu {
    display: none;
  }
  .error-text h1 {
    font-size: 25px;
  }
  h2.widget-title {
    font-size: 20px;
  }
  .cart-table-wrap {
    width: 100%;
    overflow-x: scroll;
  }
  table.cart-table {
    width: 690px;
  }
  .cart-buttons a:first-child {
    margin-bottom: 15px;
  }
  .form-title h2 {
    font-size: 20px;
  }
  .contact-form-box h4 i {
    left: -20%;
  }
  .featured-text p {
    line-height: 1.8;
  }
  .single-artcile-bg {
    height: 300px;
  }
  .single-article-text h2 {
    font-size: 20px;
  }
  .comments-list-wrap h3,
  .comment-template h4 {
    font-size: 20px;
  }
  .comment-user-avater img {
    max-width: 45px;
  }
  .comment-text-body {
    padding-left: 60px;
  }
  .comment-text-body h4 {
    font-size: 18px;
  }
  .comment-text-body h4 a {
    display: block;
    border: none;
    margin-left: 0;
    margin-top: 10px;
  }
  .comment-text-body p {
    line-height: 1.8;
  }
  .single-comment-body.child {
    margin-left: 0;
  }
  a.mobile-hide.search-bar-icon {
    display: none !important;
  }
  .mobile-show {
    display: block !important;
  }
  a.mobile-show.search-bar-icon {
    position: absolute;
    right: 60px;
    top: 22px;
    z-index: 999;
    color: var(--primary-color);
  }
  .image-column-ray.img-presentation::before {
    width: 115px;
    height: 115px;
  }
}
/* Wide Mobile Layout: 480px */
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .hero-area div.hero-form {
    margin: 0 auto;
    right: auto;
    width: 380px;
    left: 50%;
    margin-left: -190px;
  }
  .hero-btns {
    text-align: center;
  }
  .hero-btns a.bordered-btn {
    margin-left: 15px;
    margin-top: 15px;
    display: inline-block;
  }
}