


:root {
          /* Brand Colors */
        --color-brand-primary: var(--color-rank-1);
        --color-brand-primary-hover: var(--color-rank-22);
        --color-brand-primary-light: var(--color-rank-23);
        --color-brand-rgb: 238, 182, 68;

        /* Base Colors */
        --color-black: var(--color-rank-11);
        --color-black-pure: var(--color-rank-11);
        --color-white: var(--color-rank-2);
        --color-white-pure: var(--color-rank-2);
        --color-dark: var(--color-rank-3);
        --color-dark-rgb: 27, 27, 28;

        /* Text Colors */
        --color-text-primary: var(--color-rank-5);
        --color-text-secondary: var(--color-rank-15);
        --color-text-tertiary: var(--color-rank-9);
        --color-text-quaternary: var(--color-rank-24);
        --color-text-quinary: var(--color-rank-25);
        --color-text-senary: var(--color-rank-26);
        --color-text-septenary: var(--color-rank-16);
        --color-text-octonary: var(--color-rank-27);

        /* Background Colors */
        --color-bg-primary: var(--color-rank-2);
        --color-bg-secondary: var(--color-rank-8);
        --color-bg-tertiary: var(--color-rank-17);
        --color-bg-quaternary: var(--color-rank-18);
        --color-bg-quinary: var(--color-rank-28);
        --color-bg-soft-white: var(--color-rank-8);

        /* Border Colors */
        --color-border-primary: var(--color-rank-4);
        --color-border-secondary: var(--color-rank-6);
        --color-border-tertiary: var(--color-rank-7);
        --color-border-quaternary: var(--color-rank-12);
        --color-border-quinary: var(--color-rank-29);
        --color-border-senary: var(--color-rank-10);
        --color-border-septenary: var(--color-rank-30);
        --color-border-octonary: var(--color-rank-13);


        /* Transparent Colors - Black */
        --color-black-transparent-04: var(--color-rank-43);
        --color-black-transparent-045: var(--color-rank-38);
        --color-black-transparent-055: var(--color-rank-44);
        --color-black-transparent-07: var(--color-rank-45);
        --color-black-transparent-08: var(--color-rank-39);
        --color-black-transparent-01: var(--color-rank-32);
        --color-black-transparent-014: var(--color-rank-33);
        --color-black-transparent-015: var(--color-rank-46);
        --color-black-transparent-016: var(--color-rank-40);
        --color-black-transparent-02: var(--color-rank-35);
        --color-black-transparent-003: var(--color-rank-34);
        --color-black-transparent-004: var(--color-rank-55);
        --color-black-transparent-005: var(--color-rank-41);
        --color-black-transparent-006: var(--color-rank-36);
        --color-black-transparent-007: var(--color-rank-47);
        --color-black-transparent-008: var(--color-rank-31);
        --color-black-transparent-0: var(--color-rank-48);

        /* Transparent Colors - White */
        --color-white-transparent-06: var(--color-rank-49);
        --color-white-transparent-09: var(--color-rank-50);

        /* Transparent Colors - Brand */
        --color-brand-transparent-025: var(--color-rank-37);
        --color-brand-transparent-03: var(--color-rank-51);
        --color-brand-transparent-04: var(--color-rank-52);

        /* Transparent Colors - Light Gray */
        --color-light-gray-transparent-05: var(--color-rank-53);

        /* Transparent Colors - Dark */
        --color-dark-transparent-07: var(--color-rank-54);

        /* Shadow Colors */
        --color-shadow-gray: var(--color-rank-42);

    /* UI State Colors */
    --color-error: var(--color-rank-14);
    --color-rating-star: var(--color-rank-1);

    /* Social Media Colors */
    --color-social-facebook: var(--color-rank-19);
    --color-social-twitter: var(--color-rank-20);
    --color-social-reddit: var(--color-rank-14);
    --color-social-pinterest: var(--color-rank-14);
    --color-social-whatsapp: var(--color-rank-21);
    --color-social-linkedin: var(--color-rank-21);
  /* Typography */
  --font-family-body: "Poppins", sans-serif;
  --font-family-heading: "Oswald", sans-serif;
  --font-family-icon: "FontAwesome";
}

/*=====================================
   01. Typography CSS
===================================== */
body {
  color: var(--color-text-primary);
  font-size: 15px;
  font-family: var(--font-family-body);
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  background-color: var(--color-bg-primary);
}

/* Remove text-shadow in selection highlight. */
::-moz-selection {
  background: var(--color-brand-primary);
  color: var(--color-white);
  text-shadow: none;
}
::selection {
  background: var(--color-brand-primary);
  color: var(--color-white);
  text-shadow: none;
}

/* A better looking default horizontal rule */
hr {
  border: 0;
  border-top: 1px solid var(--color-border-primary);
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
  overflow: visible;
}

/* Remove the gap between audio, canvas, iframes,images, videos */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/* Remove default fieldset styles. */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

/* Allow only vertical resizing of textareas. */
textarea {
  resize: vertical;
}

/* Anchor Tag Default Style */
a {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  outline: none;
  text-decoration: none;
}
a:hover, a:active, a:focus {
  color: inherit;
  outline: none;
  text-decoration: none;
}

textarea:focus, textarea:active, input:focus, input:active {
  outline: none;
}

/* Heading Default Style */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  color: var(--color-dark);
  line-height: 1.2;
  font-family: var(--font-family-heading);
  font-weight: 700;
}

h1, .h1 {
  font-size: 60px;
  margin-bottom: 6px;
  margin-top: -15px;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 768px) and (max-width: 991.98px) {
  h1, .h1 {
    margin-top: -10px;
  }
}
@media only screen and (max-width: 767.98px) {
  h1, .h1 {
    margin-top: -8px;
  }
}

h2, .h2 {
  font-size: 56px;
  margin-bottom: 6px;
  margin-top: -14px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  h2, .h2 {
    margin-top: -10px;
  }
}
@media only screen and (max-width: 767.98px) {
  h2, .h2 {
    margin-top: -7px;
  }
}

h3, .h3 {
  font-size: 36px;
  margin-bottom: 10px;
  margin-top: -10px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  h3, .h3 {
    margin-top: -9px;
  }
}
@media only screen and (max-width: 767.98px) {
  h3, .h3 {
    margin-top: -6px;
  }
}

h4, .h4 {
  font-size: 32px;
  margin-bottom: 14px;
  margin-top: -8px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  h4, .h4 {
    margin-top: -6px;
  }
}
@media only screen and (max-width: 767.98px) {
  h4, .h4 {
    margin-top: -5px;
  }
}

h5, .h5 {
  font-size: 26px;
  margin-bottom: 15px;
}

h6, .h6 {
  font-size: 20px;
  margin-bottom: 12px;
}

/* Paragraph Margin */
p {
  margin-bottom: 15px;
}
p:last-child {
  margin-bottom: 0;
}

ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style: none;
}

strong, b {
  font-weight: 700;
}

figure {
  margin: 0;
}

img {
  max-width: 100%;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
button:active, button:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

[data-mfp-src], .btn-img-popup {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.parallax {
  background-repeat: no-repeat;
}

.form-message.alert {
  margin-top: 10px;
}

.slick-slide:focus, .slick-slide:active {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

/*============================
03. Common Style CSS
==============================*/
/*------------------
3.1 - Buttons Style
--------------------*/
.btn-group .btn {
  margin-right: 15px;
}
.btn-group .btn:last-child {
  margin-right: 0;
}

.btn {
  border: 2px solid var(--color-border-secondary);
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font-family-heading);
  height: 45px;
  letter-spacing: 0.025em;
  line-height: 41px;
  padding: 0 30px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.btn:focus, .btn:active {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.btn-white {
  background-color: var(--color-border-secondary);
  border-radius: 25px;
  color: var(--color-dark);
}
.btn-white:hover {
  background-color: var(--color-brand-primary);
  border-color: var(--color-brand-primary);
  color: var(--color-white);
}
.btn-brand {
  background-color: var(--color-brand-primary);
  border-color: var(--color-brand-primary);
  border-radius: 25px;
  color: var(--color-dark);
}
.btn-brand:hover {
  background-color: var(--color-border-secondary);
  border-color: var(--color-border-secondary);
}
.btn-black {
  background-color: var(--color-dark);
  border-color: var(--color-dark);
  border-radius: 25px;
  color: var(--color-white);
}
.btn-black:hover {
  background-color: var(--color-border-secondary);
  border-color: var(--color-border-secondary);
  color: var(--color-dark);
}
.btn-bordered {
  border-radius: 0;
  border-width: 1px;
  font-size: 16px;
  padding: 0 40px;
  height: 50px;
  line-height: 48px;
}
.btn-bordered:hover {
  border-color: var(--color-brand-primary);
  color: var(--color-brand-primary);
}

/*----------------------
3.2 - Background Image
-----------------------*/
.bg-img {
  background: no-repeat center center;
  background-size: cover;
}
.bg-img-tr {
  background: no-repeat top right;
}
.bg-img-tl {
  background: no-repeat top left;
}
.bg-img-br {
  background: no-repeat bottom right;
}
.bg-img-bl {
  background: no-repeat bottom left;
}
.bg-img-nr {
  background: no-repeat center center;
  background-size: contain;
}

/*-----------------
3.3 - Overflow
-------------------*/
.fix {
  overflow: hidden;
}
.fix-x {
  overflow-x: hidden;
}
.fix-y {
  overflow-y: hidden;
}

/*-------------------------
3.4 - Section title Style
--------------------------*/
.section-title {
  margin-bottom: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .section-title {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 767.98px) {
  .section-title {
    margin-bottom: 40px;
  }
}
.section-title h2 {
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 19px;
}

@media screen and (min-width: 1200px) {
  .container-wide, .slider-area-wrapper .slick-dots {
    max-width: 1200px;
  }
}
@media screen and (min-width: 1500px) {
  .container-wide, .slider-area-wrapper .slick-dots {
    max-width: 1480px;
  }
}

/*--------------------------------
3.5 - Tippy Customization
----------------------------------*/
.tippy-popper .tippy-tooltip {
  background-color: var(--color-brand-primary);
  border-radius: 3px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  padding: 7px 13px;
}
.tippy-popper[x-placement^=top] .tippy-arrow {
  border-top-color: var(--color-brand-primary) !important;
}
.tippy-popper[x-placement^=bottom] .tippy-arrow {
  border-bottom-color: var(--color-brand-primary) !important;
}
.tippy-popper[x-placement^=left] .tippy-arrow {
  border-left-color: var(--color-brand-primary) !important;
}
.tippy-popper[x-placement^=right] .tippy-arrow {
  border-right-color: var(--color-brand-primary) !important;
}

/*--------------------------------
3.6 - Magnific JS Customization
----------------------------------*/
.ht-mfp {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.ht-mfp.mfp-bg {
  background: var(--color-black-transparent-04);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.ht-mfp .mfp-content {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (min-width: 1200px) {
  .ht-mfp .mfp-content {
    max-width: 70%;
  }
}
.ht-mfp .mfp-content .mfp-close {
  display: none;
}
.ht-mfp .mfp-close {
  background-color: var(--color-brand-primary);
  color: var(--color-white);
  padding: 0;
  text-align: center;
  opacity: 1;
  top: 50px;
  right: 50px;
  height: 50px;
  width: 50px;
  line-height: 50px;
}
@media only screen and (max-width: 767.98px) {
  .ht-mfp .mfp-close {
    top: 30px;
    right: 30px;
    height: 40px;
    width: 40px;
    line-height: 40px;
  }
}
.ht-mfp .mfp-close:hover {
  background-color: var(--color-brand-primary);
}
.ht-mfp .mfp-arrow {
  background-color: var(--color-brand-primary);
  opacity: 1;
  margin-left: 15px;
  height: 55px;
  width: 55px;
}
.ht-mfp .mfp-arrow:before {
  display: none;
}
.ht-mfp .mfp-arrow:after {
  content: "\f104";
  color: var(--color-white);
  font-family: var(--font-family-icon);
  font-size: 25px;
  line-height: 40px;
  text-align: center;
  margin: 0;
  padding: 0;
  border: 0;
  position: absolute;
  width: 100%;
  height: 100%;
}
.ht-mfp .mfp-arrow-right {
  margin-left: auto;
  margin-right: 15px;
}
.ht-mfp .mfp-arrow-right:after {
  content: "\f105";
}
.ht-mfp .mfp-arrow:hover {
  background-color: var(--color-brand-primary-hover);
}
.ht-mfp.zoom-animate.mfp-bg {
  opacity: 0;
}
.ht-mfp.zoom-animate .mfp-content {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  opacity: 0;
}
.ht-mfp.zoom-animate.mfp-ready.mfp-bg {
  opacity: 0.9;
}
.ht-mfp.zoom-animate.mfp-ready .mfp-content {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}
.ht-mfp.zoom-animate.mfp-removing .mfp-content {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  opacity: 0;
}
.ht-mfp.zoom-animate.mfp-removing.mfp-bg {
  opacity: 0;
}
.ht-mfp.zoom-animate.mfp-removing .mfp-close {
  opacity: 0;
}

/*--------------------------------
3.7 - Blockquote Style
----------------------------------*/
blockquote, .blockquote {
  background-color: var(--color-bg-quinary);
  color: var(--color-dark);
  font-size: 18px;
  padding: 42px 44px 80px;
  position: relative;
}
@media only screen and (max-width: 767.98px) {
  blockquote, .blockquote {
    padding: 20px 22px 60px;
  }
}
blockquote:before, .blockquote:before {
  content: "\f10e";
  font-family: var(--font-family-icon);
  position: absolute;
  right: 40px;
  bottom: 40px;
}
@media only screen and (max-width: 767.98px) {
  blockquote:before, .blockquote:before {
    right: 30px;
    bottom: 20px;
  }
}
blockquote-title, .blockquote-title {
  color: var(--color-brand-primary);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  line-height: 1;
}

/*--------------------------------
3.8 - Nice Select Customization
----------------------------------*/
.nice-select {
  background-color: transparent;
  border-radius: 0;
  border: 1px solid var(--color-border-primary);
  color: var(--color-dark);
  float: inherit;
  font-size: 15px;
  padding-left: 0;
}
.nice-select:after {
  border-right-color: var(--color-text-primary);
  border-bottom-color: var(--color-text-primary);
  height: 7px;
  width: 7px;
}
.nice-select .list {
  border-radius: 0;
  color: var(--color-dark);
  font-size: 14px;
  width: 100%;
}

/*--------------------------------
3.9 - Site Boxed Layout
----------------------------------*/
@media only screen and (min-width: 1200px) {
  .boxed-layout {
  -webkit-box-shadow: -3px 0 50px -2px var(--color-black-transparent-014);
          box-shadow: -3px 0 50px -2px var(--color-black-transparent-014);
    max-width: 90%;
    margin: auto;
  }
}

/*--------------------
3.10 - Video Play
---------------------*/
.video-play {
  position: relative;
}
.video-play img {
  width: 100%;
}
.video-play .btn-video-popup {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.btn-video-popup {
  border-radius: 50%;
  background-color: var(--color-brand-primary);
  color: var(--color-white);
  display: inline-block;
  font-size: 20px;
  text-align: center;
  line-height: 60px;
  height: 60px;
  width: 60px;
}

/*==========================
02. Color CSS
============================*/
.bg-white {
  background-color: var(--color-white);
}
.bg-softWhite {
  background-color: var(--color-bg-soft-white) !important;
}
.bg-brand {
  background-color: var(--color-brand-primary);
}
.bg-blackSoft {
  background-color: var(--color-dark);
}

.text-brand {
  color: var(--color-brand-primary);
}

/*==========================
3.0 - Template Spacing
============================*/
.sm-top {
  margin-top: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .sm-top {
    margin-top: 80px;
  }
}
@media only screen and (max-width: 767.98px) {
  .sm-top {
    margin-top: 60px;
  }
}

.sm-bottom {
  margin-bottom: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .sm-bottom {
    margin-bottom: 80px;
  }
}
@media only screen and (max-width: 767.98px) {
  .sm-bottom {
    margin-bottom: 60px;
  }
}

.sm-top-lh {
  margin-top: 95px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .sm-top-lh {
    margin-top: 75px;
  }
}
@media only screen and (max-width: 767.98px) {
  .sm-top-lh {
    margin-top: 55px;
  }
}

.sm-y-lh {
  margin: 95px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .sm-y-lh {
    margin: 75px 0;
  }
}
@media only screen and (max-width: 767.98px) {
  .sm-y-lh {
    margin: 60px 0;
  }
}

.sp-top, .call-to-action-content-area.home-2 {
  padding-top: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .sp-top, .call-to-action-content-area.home-2 {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 767.98px) {
  .sp-top, .call-to-action-content-area.home-2 {
    padding-top: 60px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 1200px) {
  .sp-lg-top {
    padding-top: 100px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .sp-md-top {
    padding-top: 80px;
  }
}

.sp-y, .flash-deals-area.home-2 {
  padding: 100px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .sp-y, .flash-deals-area.home-2 {
    padding: 80px 0;
  }
}
@media only screen and (max-width: 767.98px) {
  .sp-y, .flash-deals-area.home-2 {
    padding: 60px 0;
  }
}

/*=============================
04. Header Area Style CSS
==============================*/
.header-area {
  padding: 30px 0;
}
@media only screen and (max-width: 767.98px) {
  .header-area {
    padding: 15px 0;
  }
}
.header-area .nav li {
  margin-right: 35px;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .header-area .nav li {
    margin-right: 20px;
  }
}
.header-area .nav li:last-child {
  margin-right: 0;
}
.header-area .nav li a {
  color: var(--color-dark);
  display: block;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
}
.header-area .nav li a:hover {
  color: var(--color-brand-primary);
}

@media only screen and (max-width: 575.98px) {
  .site-logo {
    margin-bottom: 10px;
  }
}

.site-action .login-reg-nav li {
  position: relative;
}
@media only screen and (max-width: 767.98px) {
  .site-action .login-reg-nav li {
    margin-right: 15px;
  }
}
.site-action .login-reg-nav li:after {
  content: "|";
  position: absolute;
  right: -20px;
  top: 0;
}
@media only screen and (max-width: 767.98px) {
  .site-action .login-reg-nav li:after {
    right: -10px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .site-action .login-reg-nav li:after {
    right: -12px;
  }
}
.site-action .login-reg-nav li:last-child:after {
  display: none;
}

.mini-cart-wrap {
  margin-left: 60px;
}
@media only screen and (max-width: 767.98px), only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .mini-cart-wrap {
    margin-left: 30px;
  }
}
.mini-cart-wrap .btn-mini-cart {
  font-size: 25px;
  line-height: 1;
  position: relative;
  color: var(--color-dark);
}
.mini-cart-wrap .btn-mini-cart .cart-total {
  background-color: var(--color-dark);
  border-radius: 50%;
  color: var(--color-white);
  display: block;
  font-size: 50%;
  text-align: center;
  line-height: 20px;
  height: 20px;
  width: 20px;
  position: absolute;
  left: -10px;
  top: 0;
}
.mini-cart-wrap .mini-cart-content {
  background-color: var(--color-white);
  -webkit-box-shadow: 0 2px 2px var(--color-black-transparent-02);
          box-shadow: 0 2px 2px var(--color-black-transparent-02);
  padding: 25px 20px;
  position: absolute;
  right: 15px;
  top: 100%;
  margin-top: 32px;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  width: 350px;
  z-index: 99;
}
@media only screen and (max-width: 767.98px) {
  .mini-cart-wrap .mini-cart-content {
    display: none;
  }
}
.mini-cart-wrap .mini-cart-content:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 100%;
  width: 100%;
  height: 32px;
}
.mini-cart-wrap .mini-product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.mini-cart-wrap .mini-product:last-child {
  margin-bottom: 0;
}
.mini-cart-wrap .mini-product__thumb {
  border: 1px solid var(--color-black-transparent-007);
  margin-right: 15px;
  -ms-flex-preferred-size: 80px;
      flex-basis: 80px;
  width: 80px;
}
.mini-cart-wrap .mini-product__info {
  -ms-flex-preferred-size: calc(100% - 95px);
      flex-basis: calc(100% - 95px);
  width: calc(100% - 95px);
}
.mini-cart-wrap .mini-product__info .title {
  font-size: 15px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 8px;
}
.mini-cart-wrap .mini-product__info .title a {
  color: var(--color-dark);
}
.mini-cart-wrap .mini-product__info .title a:hover {
  color: var(--color-brand-primary);
}
.mini-cart-wrap .mini-product__info .mini-calculation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mini-cart-wrap .mini-product__info .mini-calculation .price {
  margin-bottom: 0;
  font-weight: 600;
  vertical-align: middle;
}
.mini-cart-wrap .mini-product__info .mini-calculation .price span {
  color: var(--color-brand-primary);
}
.mini-cart-wrap .mini-product__info .mini-calculation .remove-pro {
  font-size: 18px;
  line-height: 1;
}
.mini-cart-wrap .mini-product__info .mini-calculation .remove-pro:hover {
  color: var(--color-brand-primary);
}
.mini-cart-wrap:hover .mini-cart-content {
  -webkit-transform: none;
          transform: none;
  opacity: 1;
  visibility: visible;
}

.responsive-menu {
  margin-left: 50px;
  font-size: 20px;
}
@media only screen and (max-width: 767.98px) {
  .responsive-menu {
    margin-left: 20px;
  }
}

/*=============================
4.1 - Site Navigation Style
==============================*/
@media only screen and (min-width: 1200px) {
  .main-menu {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.main-menu li {
  position: relative;
}
.main-menu li.has-submenu .sub-menu {
  background-color: var(--color-white);
  padding: 20px 20px;
  position: absolute;
  text-align: left;
  top: 100%;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  pointer-events: none;
  margin-top: 34px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 230px;
  z-index: 9999;
  left: 0;
}
.main-menu li.has-submenu .sub-menu:before {
  content: " ";
  position: absolute;
  bottom: 100%;
  left: 0;
  height: 34px;
  width: 100%;
}
.main-menu li.has-submenu .sub-menu li {
  margin-right: 0;
}
.main-menu li.has-submenu .sub-menu li:first-child a {
  padding-top: 0;
}
.main-menu li.has-submenu .sub-menu li:last-child a {
  padding-bottom: 0;
}
.main-menu li.has-submenu .sub-menu li a {
  color: var(--color-text-quaternary);
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
  padding: 8px 0;
}
.main-menu li.has-submenu .sub-menu li a:hover {
  color: var(--color-brand-primary);
}
.main-menu li.has-submenu:hover .sub-menu {
  -webkit-transform: none;
          transform: none;
  opacity: 1;
  visibility: visible;
  pointer-events: visible;
}
.main-menu li:hover a {
  color: var(--color-brand-primary);
}

/* Responsive Mobile Menu */
.mobile-menu {
  margin: 0 -10px;
}
.mobile-menu.res-mobile-menu {
  min-height: 310px;
  overflow: auto;
}
.mobile-menu .slicknav_btn {
  display: none;
}
.mobile-menu .slicknav_menu {
  padding: 0;
}
.mobile-menu .slicknav_nav {
  background-color: var(--color-white);
  display: block !important;
  padding: 0 30px 20px;
}
.mobile-menu .slicknav_nav li {
  border-bottom: 1px solid var(--color-black-transparent-01);
  position: relative;
}
.mobile-menu .slicknav_nav li:last-child {
  border-bottom: 0;
}
.mobile-menu .slicknav_nav li a {
  color: var(--color-text-primary);
  font-size: 16px;
  padding: 6px 0;
  margin: 0;
  text-transform: capitalize;
  position: relative;
}
.mobile-menu .slicknav_nav li a .slicknav_arrow {
  background-color: transparent;
  color: var(--color-text-primary);
  font-size: 15px;
  display: block;
  text-align: center;
  margin: 0;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.mobile-menu .slicknav_nav li a a {
  padding: 0;
}
.mobile-menu .slicknav_nav li a:hover {
  color: var(--color-brand-primary);
  background-color: transparent;
}
.mobile-menu .slicknav_nav li img {
  display: none;
}
.mobile-menu .slicknav_nav li ul {
  border-top: 1px solid var(--color-black-transparent-01);
  margin: 0;
  padding-left: 10px;
}
.mobile-menu .slicknav_nav li ul li a {
  font-size: 13px;
  color: var(--color-black-transparent-07);
  padding: 8px 0;
}
.mobile-menu .slicknav_nav .slicknav_open > .slicknav_item {
  position: relative;
}
.mobile-menu .slicknav_nav .slicknav_open > .slicknav_item .slicknav_arrow {
  color: var(--color-brand-primary);
}

/*===========================
24. Footer Style CSS
===========================*/
.footer-area .footer-widget-area {
  background-color: var(--color-dark);
  padding: 100px 0;
  color: var(--color-border-secondary);
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .footer-area .footer-widget-area {
    padding: 80px 0;
  }
}
@media only screen and (max-width: 767.98px) {
  .footer-area .footer-widget-area {
    padding: 60px 0;
  }
}
.footer-area .footer-copyright-area {
  background-color: var(--color-black);
  color: var(--color-border-secondary);
  padding: 20px 0;
}
.footer-area .footer-copyright-area p a {
  color: var(--color-white);
}
.footer-area .footer-copyright-area p a:hover {
  color: var(--color-brand-primary);
}

.widget-item {
  margin-top: 38px;
}
.widget-item .widget-title {
  color: var(--color-border-secondary);
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  margin-top: -1px;
  margin-bottom: 22px;
  text-decoration: underline;
}
@media only screen and (max-width: 767.98px) {
  .widget-item .widget-title {
    margin-bottom: 15px;
  }
}
.widget-item address {
  line-height: 2;
  margin-bottom: 0;
  font-weight: 500;
}

.widget-list li {
  line-height: 2;
}
.widget-list li a {
  font-weight: 300;
  color: var(--color-border-secondary);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.widget-list li a:hover {
  color: var(--color-brand-primary);
  padding-left: 5px;
}

.about-widget img {
  max-width: 120px;
  margin-bottom: 20px;
}

.copyright-txt {
  margin-top: 25px;
  font-weight: 500;
}
@media only screen and (max-width: 767.98px) {
  .copyright-txt {
    margin-top: 15px;
  }
}

/*--------------------------------
Scroll Top Button
----------------------------------*/
.btn-scroll-top {
  background-color: var(--color-brand-primary);
  border-radius: 50%;
  -webkit-box-shadow: 0 2px 2px 0 var(--color-black-transparent-014);
          box-shadow: 0 2px 2px 0 var(--color-black-transparent-014);
  color: var(--color-white);
  cursor: pointer;
  font-size: 16px;
  display: block;
  text-align: center;
  line-height: 50px;
  position: fixed;
  bottom: -50px;
  right: 30px;
  height: 50px;
  width: 50px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media only screen and (max-width: 767.98px) {
  .btn-scroll-top {
    line-height: 40px;
    height: 40px;
    width: 40px;
  }
}
.btn-scroll-top:hover {
  background-color: var(--color-dark);
}
.btn-scroll-top.show {
  bottom: 30px;
  opacity: 1;
  visibility: visible;
}

/*===========================
05. Slider Area Style
============================*/
.slider-slide-item {
  height: 850px;
}
@media only screen and (max-width: 767.98px) {
  .slider-slide-item {
    height: 450px;
  }
}
.slider-slide-item .slide-content h2, .slider-slide-item .slide-content h3 {
  color: var(--color-border-secondary);
}
.slider-slide-item .slide-content h3 {
  font-weight: 300;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767.98px) {
  .slider-slide-item .slide-content h3 {
    font-size: 26px;
  }
}
.slider-slide-item .slide-content h2 {
  font-weight: 600;
  font-size: 72px;
  margin-bottom: 22px;
}
@media only screen and (max-width: 767.98px) {
  .slider-slide-item .slide-content h2 {
    font-size: 40px;
  }
}
.slider-slide-item .slide-content-inner {
  margin-top: -100px;
}
@media only screen and (max-width: 767.98px) {
  .slider-slide-item .slide-content-inner {
    margin-top: 0;
  }
}
.slider-slide-item .slide-content-inner * {
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition: 0.8s;
  transition: 0.8s;
  opacity: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .slider-slide-item .slide-img img {
    max-width: 40%;
  }
}
@media only screen and (max-width: 767.98px) {
  .slider-slide-item .slide-img img {
    max-width: 180px;
  }
}

.slider-area-wrapper .slick-arrow {
  background-color: var(--color-black-transparent-01);
  border-radius: 50%;
  color: var(--color-white);
  line-height: 50px;
  position: absolute;
  left: 50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  height: 50px;
  width: 50px;
  z-index: 1;
}
.slider-area-wrapper .slick-arrow.slick-next {
  left: auto;
  right: 50px;
}
.slider-area-wrapper .slick-arrow:hover {
  background-color: var(--color-brand-primary);
}
.slider-area-wrapper .slick-dots {
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  bottom: 200px;
  cursor: pointer;
  padding: 0 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .slider-area-wrapper .slick-dots {
    max-width: 720px;
  }
}
@media only screen and (max-width: 767.98px) {
  .slider-area-wrapper .slick-dots {
    bottom: 50px;
    max-width: 540px;
  }
}
.slider-area-wrapper .slick-dots li {
  background-color: var(--color-white);
  display: inline-block;
  margin: 0 5px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  height: 2px;
  width: 20px;
}
.slider-area-wrapper .slick-dots li.slick-active {
  background-color: var(--color-brand-primary);
  width: 30px;
}
.slider-area-wrapper .slick-dots li button {
  display: none;
}
.slider-area-wrapper .slick-active .slide-content-inner * {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.slider-area-wrapper .slick-active .slide-content-inner *:first-child {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.slider-area-wrapper .slick-active .slide-content-inner *:nth-child(2) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.slider-area-wrapper .slick-active .slide-content-inner *:nth-child(3) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.slider-area-wrapper:hover .slick-arrow {
  opacity: 1;
  visibility: visible;
}
.slider-area-wrapper.home-2 .slider-slide-item {
  height: 800px;
}
@media only screen and (max-width: 767.98px) {
  .slider-area-wrapper.home-2 .slider-slide-item {
    height: 680px;
  }
}
@media only screen and (max-width: 767.98px), only screen and (min-width: 768px) and (max-width: 991.98px) {
  .slider-area-wrapper.home-2 .slider-slide-item .slide-content h2 {
    font-size: 30px;
    margin-top: 0;
    margin-bottom: 35px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .slider-area-wrapper.home-2 .slider-slide-item .slide-content h2 {
    font-size: 50px;
  }
}
.slider-area-wrapper.home-2 .slider-slide-item .slide-content-inner {
  margin-top: 0;
}
@media only screen and (max-width: 767.98px), only screen and (min-width: 768px) and (max-width: 991.98px) {
  .slider-area-wrapper.home-2 .slider-slide-item .slide-content-inner {
    margin-top: -200px;
  }
}
.slider-area-wrapper.home-2 .slick-dots {
  text-align: right;
  bottom: 60px;
}
@media only screen and (max-width: 767.98px), only screen and (min-width: 768px) and (max-width: 991.98px) {
  .slider-area-wrapper.home-2 .slick-dots {
    text-align: left;
  }
}

/*========================
06. Banner Area Style
==========================*/
.banner-mt {
  margin-top: -130px;
}
@media only screen and (max-width: 767.98px) {
  .banner-mt {
    margin-top: 0;
  }
}

.banner-item {
  position: relative;
  overflow: hidden;
  margin-top: 30px;
}
.banner-item__txt {
  left: 42%;
  position: absolute;
  text-align: left;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}
.banner-item__txt h2, .banner-item__txt h4 {
  color: var(--color-white);
}
.banner-item__txt h4 {
  font-size: 24px;
  font-weight: 300;
}
.banner-item__txt h2, .banner-item__txt .h3 {
  margin-bottom: 20px;
}
@media only screen and (max-width: 767.98px), only screen and (min-width: 768px) and (max-width: 991.98px), only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .banner-item__txt h2, .banner-item__txt .h3 {
    font-size: 24px;
  }
}
.banner-item__txt .btn {
  font-size: 14px;
  height: 40px;
  line-height: 36px;
}
@media only screen and (max-width: 575.98px), only screen and (min-width: 768px) and (max-width: 991.98px) {
  .banner-item__txt .btn {
    padding: 0 20px;
    height: 35px;
    line-height: 31px;
  }
}
.banner-item__img {
  overflow: hidden;
}
.banner-item__img img {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  width: 100%;
}
.banner-item:hover .banner-item__img img {
  -webkit-transform: scale(1.12);
          transform: scale(1.12);
}

.promotion-code-banner-item {
  overflow: hidden;
}
.promotion-code-banner-item img {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.promotion-code-banner-item:hover img {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}

/*========================
07. Call to action Style
==========================*/
.call-to-action-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding-right: 30px;
  margin-right: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .call-to-action-item {
    display: block;
    margin-right: 10px;
    padding-right: 0;
  }
}
@media only screen and (max-width: 767.98px) {
  .call-to-action-item {
    margin-top: 25px;
    display: block;
    text-align: center;
    margin-right: 0;
    padding-right: 0;
  }
}
.call-to-action-item:after {
  background-color: var(--color-border-secondary);
  position: absolute;
  content: "";
  right: -10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 50px;
  width: 1px;
}
@media only screen and (max-width: 767.98px), only screen and (min-width: 768px) and (max-width: 991.98px) {
  .call-to-action-item:after {
    display: none;
  }
}
.call-to-action-item__icon {
  margin-right: 30px;
  -ms-flex-preferred-size: 45px;
      flex-basis: 45px;
  max-width: 45px;
}
@media only screen and (max-width: 767.98px), only screen and (min-width: 768px) and (max-width: 991.98px) {
  .call-to-action-item__icon {
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.call-to-action-item__info {
  -ms-flex-preferred-size: calc(100% - 75px);
      flex-basis: calc(100% - 75px);
  max-width: calc(100% - 75px);
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .call-to-action-item__info {
    max-width: 100%;
  }
}
@media only screen and (max-width: 767.98px) {
  .call-to-action-item__info {
    max-width: 75%;
    margin: auto;
  }
}
.call-to-action-item__info h3 {
  font-weight: 500;
  font-size: 22px;
  line-height: 1;
  margin-top: -3px;
}

.call-to-action-area [class*=col-]:last-child .call-to-action-item:after {
  display: none;
}

.call-to-action-content-area {
  padding: 200px 0 170px;
  margin-top: -130px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .call-to-action-content-area {
    padding-top: 180px;
  }
}
@media only screen and (max-width: 767.98px) {
  .call-to-action-content-area {
    padding-top: 60px;
    margin-top: 30px;
  }
}
.call-to-action-content-area .call-to-action-txt h2 {
  font-size: 40px;
  margin-bottom: 35px;
  margin-top: -7px;
}
@media only screen and (max-width: 767.98px) {
  .call-to-action-content-area .call-to-action-txt h2 {
    font-size: 26px;
  }
  .call-to-action-content-area .call-to-action-txt h2 br {
    display: none;
  }
}
.call-to-action-content-area.home-2 {
  padding-bottom: 170px;
  margin-top: 0;
}

.call-to-action-image-area {
  margin-top: -130px;
}
@media only screen and (max-width: 767.98px) {
  .call-to-action-image-area {
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 479.98px) {
  .call-to-action-image-area {
    margin-bottom: 95px;
  }
}

.need-help-area {
  padding: 50px 0 45px;
}

.about-content .h3, .about-content h2 {
  margin-bottom: 20px;
}

/*=========================
08. Product Item Style
===========================*/
.product-item {
  background-color: var(--color-bg-tertiary);
  position: relative;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  margin-top: 30px;
}
.product-item__thumb {
  position: relative;
}
.product-item__thumb .thumb-secondary {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.product-item__thumb img {
  text-align: center;
  display: block;
  margin: auto;
}
.product-item__content {
  padding: 0 30px 25px;
  position: relative;
}
.product-item__content .title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .product-item__content .title {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767.98px) {
  .product-item__content .title {
    font-weight: 500;
    font-size: 16px;
  }
}
.product-item__content .title a {
  color: var(--color-dark);
}
.product-item__content .title a:hover {
  color: var(--color-brand-primary);
}
.product-item__content .price {
  color: var(--color-text-secondary);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.product-item__content .price strong {
  color: var(--color-dark);
  font-weight: 600;
}
.product-item__action {
  padding: 0 30px;
  position: absolute;
  left: 0;
  bottom: 18px;
  font-size: 22px;
  line-height: 1;
}
.product-item__action button, .product-item__action a {
  color: var(--color-text-primary);
  margin-right: 15px;
  -webkit-transform: translateX(-10px);
          transform: translateX(-10px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.product-item__action button:last-child, .product-item__action a:last-child {
  margin-right: 0;
}
.product-item__action button:hover, .product-item__action a:hover {
  color: var(--color-brand-primary);
}
.product-item .ratting {
  color: var(--color-brand-primary);
  font-size: 18px;
  line-height: 1;
  text-align: center;
  margin-bottom: 30px;
}
.product-item__sale {
  background-color: var(--color-dark);
  color: var(--color-white);
  display: inline-table;
  font-size: 12px;
  font-weight: 500;
  padding: 1px 6px;
  position: absolute;
  text-transform: uppercase;
  left: 30px;
  right: auto;
  top: 30px;
  text-align: center;
  letter-spacing: 0.05em;
}
.product-item__desc {
  display: none;
}
.product-item:hover {
  -webkit-box-shadow: 0 5px 11px var(--color-black-transparent-014);
          box-shadow: 0 5px 11px var(--color-black-transparent-014);
}
.product-item:hover .product-item__thumb .thumb-primary {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.product-item:hover .product-item__thumb .thumb-secondary {
  opacity: 1;
  visibility: visible;
}
.product-item:hover .product-item__content .price {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.product-item:hover .product-item__action button, .product-item:hover .product-item__action a {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.product-item:hover .product-item__action button:nth-child(2), .product-item:hover .product-item__action a:nth-child(2) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.product-item:hover .product-item__action button:nth-child(3), .product-item:hover .product-item__action a:nth-child(3) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.product-item:hover .product-item__action button:nth-child(4), .product-item:hover .product-item__action a:nth-child(4) {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

.product-wrapper .slick-list {
  margin: 0 -15px;
}
.product-wrapper .slick-slide {
  margin: 0 15px;
}
.product-wrapper .slick-slide.product-item {
  margin-bottom: 30px;
  margin-top: 0;
}
.product-wrapper.columns-5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -30px -15px 0;
}
.product-wrapper.columns-5 .col {
  max-width: 20%;
  -ms-flex-preferred-size: 20%;
      flex-basis: 20%;
  padding: 0 15px;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .product-wrapper.columns-5 .col {
    max-width: 25%;
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .product-wrapper.columns-5 .col {
    max-width: 33.333%;
    -ms-flex-preferred-size: 33.333%;
        flex-basis: 33.333%;
  }
}
@media only screen and (max-width: 767.98px) {
  .product-wrapper.columns-5 .col {
    max-width: 50%;
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
}
@media only screen and (max-width: 479.98px) {
  .product-wrapper.columns-5 .col {
    max-width: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}

.products-area-wrapper {
  position: relative;
  z-index: 2;
}

.layout-list [class*=col-] {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  max-width: 100%;
}
.layout-list .product-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 767.98px), only screen and (min-width: 768px) and (max-width: 991.98px) {
  .layout-list .product-item {
    display: block;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 1200px) and (max-width: 1599.98px) {
  .layout-list .product-item {
    min-height: 450px;
  }
}
.layout-list .product-item__thumb {
  -ms-flex-preferred-size: 35%;
      flex-basis: 35%;
  max-width: 35%;
}
@media only screen and (max-width: 767.98px), only screen and (min-width: 768px) and (max-width: 991.98px) {
  .layout-list .product-item__thumb {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}
.layout-list .product-item__thumb img {
  width: 75%;
}
@media only screen and (max-width: 767.98px), only screen and (min-width: 768px) and (max-width: 991.98px) {
  .layout-list .product-item__thumb img {
    width: auto;
  }
}
.layout-list .product-item__content {
  -ms-flex-preferred-size: 65%;
      flex-basis: 65%;
  max-width: 65%;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 1200px) {
  .layout-list .product-item__content {
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 767.98px), only screen and (min-width: 768px) and (max-width: 991.98px) {
  .layout-list .product-item__content {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}
.layout-list .product-item__content .ratting {
  text-align: left;
}
.layout-list .product-item__content .title {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 20px;
}
.layout-list .product-item__action {
  position: static;
  padding: 0;
  margin-top: 20px;
}
.layout-list .product-item__action button, .layout-list .product-item__action a {
  opacity: 1;
  visibility: visible;
  -webkit-transform: none;
          transform: none;
}
.layout-list .product-item__desc {
  border-top: 1px solid var(--color-border-primary);
  margin-top: 25px;
  padding-top: 25px;
  display: block;
}
.layout-list .product-item:hover .product-item__content .price {
  opacity: 1;
  visibility: visible;
}

/*==========================
09. Countdown Clock Style
============================*/
.ht-countdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ht-countdown .countdown-item {
  text-align: center;
  position: relative;
  margin-right: 30px;
}
@media only screen and (max-width: 575.98px) {
  .ht-countdown .countdown-item {
    margin-right: 10px;
  }
}
.ht-countdown .countdown-item:last-child {
  padding-right: 0;
  margin-right: 0;
}
.ht-countdown .countdown-item__time {
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
}
.ht-countdown .countdown-item__label {
  color: var(--color-dark);
  font-size: 22px;
  display: block;
  font-family: var(--font-family-heading);
  font-weight: 700;
}
.ht-countdown--light .countdown-item:after {
  color: var(--color-white);
}
.ht-countdown--light .countdown-item__time {
  color: var(--color-brand-primary);
}
.ht-countdown--light .countdown-item__label {
  color: var(--color-white-transparent-06);
}

/*========================
10. Flash Deals Style
=========================*/
@media only screen and (max-width: 767.98px) {
  .flash-deals-content {
    margin-top: 28px;
  }
}
.flash-deals-content h2 {
  font-size: 40px;
  margin-bottom: 25px;
}
.flash-deals-content h3 {
  font-size: 32px;
  font-weight: 600;
}
.flash-deals-content .btn {
  margin-top: 25px;
}
.flash-deals-content .deals-countdown-area {
  margin-top: 50px;
}

.flash-deals-area {
  padding: 230px 0;
  margin-top: -130px;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .flash-deals-area {
    padding: 210px 0;
  }
}
@media only screen and (max-width: 767.98px) {
  .flash-deals-area {
    padding: 192px 0;
  }
}
.flash-deals-area.home-2 {
  margin-top: 70px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .flash-deals-area.home-2 {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 767.98px) {
  .flash-deals-area.home-2 {
    margin-top: 30px;
  }
}

@media only screen and (max-width: 767.98px) {
  .flash-deals-thumb {
    max-width: 80%;
    margin: auto;
  }
}

/*=========================
11. Newsletter Area Style
===========================*/
.newsletter-content {
  color: var(--color-border-secondary);
  padding: 100px 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .newsletter-content {
    padding: 80px 15px;
  }
}
@media only screen and (max-width: 767.98px) {
  .newsletter-content {
    padding: 60px 15px;
  }
}
.newsletter-content h2, .newsletter-content h3, .newsletter-content h4 {
  color: var(--color-white);
  margin-top: 0;
}
.newsletter-content h4 {
  font-size: 24px;
  font-weight: 300;
}
@media only screen and (max-width: 767.98px) {
  .newsletter-content h4 {
    font-size: 20px;
  }
}
.newsletter-content h4 span {
  color: var(--color-brand-primary);
}
.newsletter-content h2 {
  font-size: 32px;
  font-weight: 600;
}
@media only screen and (max-width: 767.98px) {
  .newsletter-content h2 {
    font-size: 26px;
  }
}

.newsletter-form-wrap {
  margin: 44px auto 0;
}
@media only screen and (min-width: 1200px) {
  .newsletter-form-wrap {
    max-width: 90%;
  }
}
@media only screen and (max-width: 767.98px) {
  .newsletter-form-wrap {
    margin-top: 34px;
  }
}
.newsletter-form-wrap .form-content {
  position: relative;
}
.newsletter-form-wrap .form-content input {
  background-color: transparent;
  border: 1px solid var(--color-border-secondary);
  border-radius: 100px;
  color: var(--color-white);
  display: block;
  padding: 12px 165px 12px 20px;
  width: 100%;
}
@media only screen and (max-width: 767.98px) {
  .newsletter-form-wrap .form-content input {
    padding: 15px;
  }
}
.newsletter-form-wrap .form-content .btn-newsletter {
  background-color: var(--color-brand-primary);
  border-radius: 100px;
  color: var(--color-white);
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font-family-heading);
  text-transform: uppercase;
  position: absolute;
  height: 100%;
  width: 150px;
  top: 0;
  right: 0;
}
@media only screen and (max-width: 767.98px) {
  .newsletter-form-wrap .form-content .btn-newsletter {
    position: static;
    padding: 10px;
    margin-top: 20px;
  }
}
.newsletter-form-wrap .form-content .btn-newsletter:hover {
  background-color: var(--color-border-secondary);
  color: var(--color-dark);
}

.newsletter-area-wrapper {
  margin-top: -130px;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .newsletter-area-wrapper.home--2 {
    padding-top: 80px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px), only screen and (min-width: 1200px) {
  .newsletter-area-wrapper.home--2 {
    padding-top: 100px;
  }
}

/*============================
12. Brand Logo Area Style
=============================*/
.brand-logo-item {
  text-align: center;
  display: table !important;
  height: 85px;
}
.brand-logo-item a {
  display: table-cell;
  vertical-align: middle;
}
.brand-logo-item img {
  margin: auto;
}

/*============================
13. Off Canvas Style CSS
=============================*/
.off-canvas-wrapper {
  position: fixed;
  left: 0;
  top: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  height: 100vh;
  width: 100vw;
  z-index: 9999;
}
.off-canvas-wrapper.active {
  opacity: 1;
  visibility: visible;
  pointer-events: visible;
}
.off-canvas-wrapper.active .off-canvas-inner {
  -webkit-transform: none;
          transform: none;
}
.off-canvas-wrapper.active .btn-close {
  display: block;
}
.off-canvas-wrapper.active .off-canvas-overlay {
  opacity: 1;
  visibility: visible;
}
.off-canvas-wrapper .close-btn {
  color: var(--color-brand-primary);
  font-size: 25px;
  line-height: 1;
  right: 0;
  top: 0;
  z-index: 9;
  background: var(--color-white);
  width: 100%;
  text-align: right;
}
.off-canvas-wrapper .close-btn .btn-close {
  margin-left: auto;
}
.off-canvas-wrapper .close-btn i {
  line-height: 1;
}
.off-canvas-wrapper .close-btn:hover {
  color: var(--color-brand-primary);
}
.off-canvas-overlay {
  background-color: var(--color-black-transparent-08);
  cursor: url("../img/icons/cancel-white.png"), auto;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  height: 100%;
  width: 100%;
  z-index: 2;
}
.off-canvas-inner {
  background-color: var(--color-white);
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: 0.45s;
  transition: 0.45s;
  height: 100%;
  z-index: 3;
  overflow-y: auto;
}
.off-canvas-content {
  width: 380px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 50px 0 60px;
  overflow-y: auto;
  overflow-x: hidden;
}
@media only screen and (max-width: 767.98px) {
  .off-canvas-content {
    padding: 45px 0 30px;
  }
}
@media only screen and (max-width: 575.98px) {
  .off-canvas-content {
    width: 280px;
  }
}
.off-canvas-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 20px 15px;
  margin-bottom: 15px;
}

/*========================
14. Page Header Style
==========================*/
.page-header-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 300px;
}
@media only screen and (max-width: 767.98px) {
  .page-header-content {
    height: 200px;
  }
}
.page-header-content h1 {
  color: var(--color-white);
  font-weight: 600;
  font-size: 32px;
  line-height: 1;
  margin-bottom: 0;
}
@media only screen and (max-width: 575.98px) {
  .page-header-content h1 {
    font-size: 28px;
    line-height: 1.4;
  }
}

.breadcrumb {
  background-color: transparent;
  border-radius: 0;
  padding: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 0;
  margin-top: 20px;
}
.breadcrumb li {
  position: relative;
}
.breadcrumb li:after {
  content: ">";
  color: var(--color-white);
  font-size: 18px;
  font-family: var(--font-family-heading);
  vertical-align: middle;
  line-height: 1;
  display: inline-block;
  margin-top: -7px;
  padding-left: 10px;
  padding-right: 10px;
}
.breadcrumb li a {
  color: var(--color-white);
  font-size: 18px;
  font-family: var(--font-family-heading);
  font-weight: 300;
  line-height: 1;
}
.breadcrumb li a:hover {
  color: var(--color-brand-primary);
}
.breadcrumb li.current:after {
  display: none;
}
.breadcrumb li.current a {
  color: var(--color-brand-primary);
  pointer-events: none;
}

/*=======================
15. Gallery Style Css
=========================*/
.gallery-item {
  position: relative;
  background-color: var(--color-bg-quaternary);
  cursor: auto;
  margin-top: 30px;
}
.gallery-item:before {
  background-color: var(--color-dark-transparent-07);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.gallery-item img {
  margin: auto;
  display: block;
}
.gallery-item__text h3 {
  color: var(--color-white);
  font-weight: 600;
  font-size: 20px;
  font-family: var(--font-family-body);
  text-transform: uppercase;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  width: 100%;
  padding: 0 20px;
  text-align: center;
}
.gallery-item:hover {
  cursor: pointer;
}
.gallery-item:hover:before {
  opacity: 1;
  visibility: visible;
}
.gallery-item:hover .gallery-item__text h3 {
  opacity: 1;
  visibility: visible;
}

/*======================
16. Contact Page Style
========================*/
.contact-info-item {
  border: 1px solid var(--color-border-primary);
  text-align: center;
  padding: 60px 20px;
  margin-top: 30px;
}
.contact-info-item .con-info-icon {
  border: 1px solid var(--color-brand-primary);
  border-radius: 100px;
  color: var(--color-brand-primary);
  font-size: 35px;
  margin: 0 auto 20px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  line-height: 60px;
  height: 60px;
  width: 60px;
}
.contact-info-item .con-info-txt h4 {
  font-size: 18px;
  margin-top: -2px;
}
.contact-info-item:hover .con-info-icon {
  background-color: var(--color-brand-primary);
  color: var(--color-white);
}

.contact-form-content h2 {
  font-size: 20px;
  text-transform: uppercase;
  margin-top: -3px;
}

.input-item {
  margin-top: 30px;
}
.input-item input:not([type=checkbox]), .input-item textarea {
  border: 1px solid var(--color-border-primary);
  display: block;
  padding: 12px 15px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  width: 100%;
}
.input-item input:not([type=checkbox]):focus, .input-item textarea:focus {
  border-color: var(--color-brand-primary);
}
.input-item .nice-select {
  border-color: var(--color-border-primary);
  height: 50px;
  padding-left: 15px;
  line-height: 50px;
}
.input-item .nice-select .list {
  max-height: 200px;
  overflow: auto;
}
.input-item .btn-brand {
  font-size: 14px;
  border-radius: 2px;
  margin-top: 10px;
  letter-spacing: 1.6px;
}

.contact-map-wrapper {
  height: 500px;
}
@media only screen and (max-width: 767.98px) {
  .contact-map-wrapper {
    height: 300px;
  }
}

/*=====================
17. Shop Page Style
======================*/
.action-bar-inner {
  border: 1px solid var(--color-border-primary);
  padding: 15px 30px;
}

@media only screen and (max-width: 575.98px) {
  .layout-switcher {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.layout-switcher li {
  border: 1px solid transparent;
  font-size: 20px;
  text-transform: uppercase;
  margin-right: 20px;
  line-height: 1;
  cursor: pointer;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  padding: 6px 5px 4px;
}
.layout-switcher li:last-child {
  margin-right: 0;
}
.layout-switcher li.active {
  border-color: var(--color-dark);
}

.sort-by-wrapper .nice-select {
  height: 40px;
  max-width: 300px;
  margin-left: auto;
  padding-left: 15px;
}

@media only screen and (max-width: 575.98px) {
  .pagination {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.pagination li {
  margin-right: 20px;
}
.pagination li:last-child {
  margin-right: 0;
}
.pagination li a {
  color: var(--color-text-senary);
}
.pagination li:hover a, .pagination li.active a {
  color: var(--color-black);
}
.pagination--2 li a {
  border: 1px solid var(--color-border-primary);
  display: block;
  text-align: center;
  line-height: 43px;
  height: 45px;
  width: 45px;
}
.pagination--2 li:hover a, .pagination--2 li.active a {
  border-color: var(--color-brand-primary);
  color: var(--color-brand-primary);
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .sidebar-area {
    margin-top: 84px;
  }
}
@media only screen and (max-width: 767.98px) {
  .sidebar-area {
    margin-top: 64px;
  }
}
.sidebar-item {
  margin-bottom: 60px;
}
@media only screen and (max-width: 767.98px) {
  .sidebar-item {
    margin-bottom: 35px;
  }
}
.sidebar-item:last-child {
  margin-bottom: 0;
}
.sidebar-title {
  font-weight: 500;
  font-size: 22px;
  line-height: 1;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 30px;
  margin-top: -5px;
}
.sidebar-title:after {
  background-color: var(--color-text-septenary);
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 1px;
  width: 60%;
}
.sidebar-list li {
  margin-bottom: 15px;
}
.sidebar-list li:last-child {
  margin-bottom: 0;
}
.sidebar-list li a {
  color: var(--color-dark);
  font-weight: 500;
}
.sidebar-list li a:hover {
  color: var(--color-brand-primary);
}
.sidebar-list li a span {
  color: var(--color-text-quinary);
  font-size: 12px;
}
.sidebar-product {
  width: 100%;
  overflow: hidden;
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.sidebar-product:last-child {
  margin-bottom: 0;
}
.sidebar-product .image {
  width: 80px;
  -ms-flex-preferred-size: 80px;
      flex-basis: 80px;
  background-color: var(--color-border-secondary);
  margin-right: 15px;
}
.sidebar-product .image img {
  width: 100%;
}
.sidebar-product .content {
  width: calc(100% - 80px);
  -ms-flex-preferred-size: calc(100% - 80px);
      flex-basis: calc(100% - 80px);
  font-size: 13px;
}
.sidebar-product .content .title {
  color: var(--color-dark);
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 3px;
}
.sidebar-product .content .title:hover {
  color: var(--color-brand-primary);
}
.sidebar-product .content .price {
  font-size: 14px;
  display: block;
}
.sidebar-product .content .price .old {
  margin-left: 10px;
  color: var(--color-text-septenary);
  text-decoration: line-through;
}
.sidebar-product .content .ratting {
  display: block;
}
.sidebar-product .content .ratting i {
  font-size: 12px;
  color: var(--color-rating-star);
}
.sidebar-search form {
  position: relative;
}
.sidebar-search form input {
  border: 1px solid var(--color-border-primary);
  border-radius: 5px;
  display: block;
  padding: 13px 63px 15px 13px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: 100%;
}
.sidebar-search form input:focus {
  border-color: var(--color-brand-primary);
}
.sidebar-search form .btn-src {
  background-color: var(--color-dark);
  border-radius: 0 5px 5px 0;
  color: var(--color-white);
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 50px;
}
.sidebar-search form .btn-src:hover {
  color: var(--color-brand-primary);
}

.tags li {
  display: inline-block;
}
.tags li a {
  border: 1px solid var(--color-border-primary);
  line-height: 1em;
  padding: 10px 15px;
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 10px;
  color: var(--color-dark);
  border-radius: 25px;
  font-weight: 500;
}
.tags li a:hover {
  color: var(--color-brand-primary);
  border-color: var(--color-brand-primary);
}

/*================================
18. Single Product Page Style
==================================*/
@media only screen and (max-width: 767.98px) {
  .product-thumb-area {
    margin-bottom: 30px;
  }
}
.product-thumb-area .pro-thumb-item img {
  margin: auto;
}
.product-thumb-area .product-details-thumbnail {
  border: 1px solid var(--color-border-primary);
  text-align: center;
  position: relative;
}
.product-thumb-area .product-details-thumbnail .btn-large-view {
  background-color: var(--color-white-transparent-09);
  bottom: 20px;
  -webkit-box-shadow: 0 2px 8px var(--color-black-transparent-016);
          box-shadow: 0 2px 8px var(--color-black-transparent-016);
  color: var(--color-dark);
  display: block;
  font-weight: 700;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  line-height: 22px;
  padding: 10px 0;
  position: absolute;
  text-align: center;
  width: 136px;
}
.product-thumb-area .product-details-thumbnail .btn-large-view i {
  margin-left: 3px;
  vertical-align: middle;
}
.product-thumb-area .product-details-thumbnail-nav {
  margin-top: 10px;
}
.product-thumb-area .product-details-thumbnail-nav .pro-thumb-item {
  border: 1px solid var(--color-border-primary);
  text-align: center;
  cursor: pointer;
}
.product-thumb-area .product-details-thumbnail-nav .slick-list {
  margin: 0 -5px;
}
.product-thumb-area .product-details-thumbnail-nav .slick-list .slick-slide {
  margin: 0 5px;
}

@media only screen and (min-width: 1200px) {
  .prod-details-info-content {
    padding-left: 20px;
  }
}
.prod-details-info-content h2 {
  font-size: 30px;
  margin-top: -6px;
}
@media only screen and (max-width: 767.98px) {
  .prod-details-info-content h2 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
  }
}
.prod-details-info-content .price {
  font-size: 24px;
  font-family: var(--font-family-body);
  margin-bottom: 33px;
}
@media only screen and (max-width: 767.98px) {
  .prod-details-info-content .price {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.prod-details-info-content .price-amount {
  font-size: 18px;
  font-weight: 500;
  vertical-align: middle;
}

.product-config {
  margin: 40px 0;
}
.product-config .table {
  margin-bottom: 0;
}
.product-config .table-bordered td, .product-config .table-bordered th {
  border-color: var(--color-border-primary);
}
.product-config .table th {
  font-size: 18px;
  font-weight: 500;
}
.product-config .table .config-option a {
  color: var(--color-dark);
  font-size: 16px;
  font-weight: 500;
  margin-right: 10px;
}
.product-config .table .config-option a:last-child {
  margin-right: 0;
}
.product-config .table .config-option a:hover {
  color: var(--color-brand-primary);
}

.product-meta {
  margin-top: 40px;
}
.product-meta span:not(.sku) {
  display: block;
  font-size: 16px;
  margin-bottom: 15px;
}
.product-meta span:not(.sku):last-child {
  margin-bottom: 0;
}
.product-meta a {
  color: var(--color-dark);
  margin-right: 5px;
  font-size: 15px;
  vertical-align: middle;
}
.product-meta a:last-child {
  margin-right: 0;
}
.product-meta a:hover {
  color: var(--color-brand-primary);
}

.pro-qty {
  border: 1px solid var(--color-border-primary);
  display: inline-block;
  position: relative;
  width: 150px;
}
@media only screen and (max-width: 767.98px), only screen and (min-width: 768px) and (max-width: 991.98px) {
  .pro-qty {
    width: 120px;
  }
}
.pro-qty input {
  font-weight: 600;
  border: none;
  text-align: center;
  padding: 12px 45px;
  outline: none;
  width: 100%;
}
.pro-qty a {
  color: var(--color-black);
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  position: absolute;
  top: 0;
  line-height: 50px;
  height: 100%;
  width: 35px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .pro-qty a {
    width: 35px;
    line-height: 54px;
  }
}
@media only screen and (max-width: 767.98px) {
  .pro-qty a {
    width: 35px;
    line-height: 48px;
  }
}
.pro-qty a:hover {
  background-color: var(--color-brand-primary);
  border-color: var(--color-brand-primary);
  color: var(--color-white);
}
.pro-qty a.inc {
  right: 0;
  border-left: 1px solid var(--color-border-primary);
}
.pro-qty a.dec {
  left: 0;
  border-right: 1px solid var(--color-border-primary);
}

.product-description-review {
  margin-top: 80px;
}
@media only screen and (max-width: 767.98px) {
  .product-description-review {
    margin-top: 60px;
  }
}
.product-description-review .desc-review-tab-menu {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.product-description-review .desc-review-tab-menu li {
  width: 100%;
}
.product-description-review .desc-review-tab-menu li button {
  background-color: var(--color-dark);
  border-right: 2px solid var(--color-border-septenary);
  color: var(--color-white);
  display: block;
  text-align: center;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  padding: 20px 0;
  width: 100%;
}
.product-description-review .desc-review-tab-menu li button:last-child {
  border: none;
}
.product-description-review .desc-review-tab-menu li button.active {
  background-color: var(--color-brand-primary);
}
@media only screen and (max-width: 767.98px) {
  .product-description-review .desc-review-tab-menu li button {
    font-size: 15px;
    font-weight: 500;
    padding: 10px 0;
  }
}
.product-description-review .tab-content {
  background-color: var(--color-bg-tertiary);
  padding: 45px;
}
@media only screen and (max-width: 767.98px) {
  .product-description-review .tab-content {
    padding: 25px 15px;
  }
}

.product-rating-wrap .average-rating {
  margin-bottom: 30px;
}
.product-rating-wrap .average-rating h4 {
  font-weight: 400;
  font-size: 22px;
  margin-bottom: 3px;
}
.product-rating-wrap .display-ratings .rating-item {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.product-rating-wrap .display-ratings .rating-item:last-child {
  margin-bottom: 0;
}
.product-rating-wrap .display-ratings .rating-item .rating-author-pic {
  max-width: 50px;
  -ms-flex-preferred-size: 50px;
      flex-basis: 50px;
  border-radius: 2px;
  overflow: hidden;
  margin-right: 10px;
}
.product-rating-wrap .display-ratings .rating-item .rating-author-txt {
  border: 1px solid var(--color-border-primary);
  border-radius: 2px;
  padding: 15px;
  -ms-flex-preferred-size: calc(100% - 60px);
      flex-basis: calc(100% - 60px);
  max-width: calc(100% - 60px);
}
.product-rating-wrap .display-ratings .rating-item .rating-author-txt .rating-meta h3 {
  font-size: 14px;
  margin-top: 0;
  font-family: var(--font-family-body);
  display: inline-block;
}
.product-rating-wrap .display-ratings .rating-item .rating-author-txt .rating-meta .time {
  vertical-align: middle;
  margin-left: 5px;
  font-size: 13px;
}
.product-rating-wrap .display-ratings .rating-item .rating-author-txt .rating-star {
  color: var(--color-brand-primary);
  font-size: 14px;
  margin-bottom: 5px;
}
.product-rating-wrap .display-ratings .rating-item .rating-author-txt .rating-star i {
  margin-right: 5px;
}
.product-rating-wrap .display-ratings .rating-item .rating-author-txt .rating-star i:last-child {
  margin-right: 0;
}
.product-rating-wrap .rating-form-wrapper {
  margin-top: 60px;
}
.product-rating-wrap .rating-form-wrapper h3 {
  font-size: 24px;
  font-weight: 500;
  margin-top: -5px;
  margin-bottom: 20px;
}
.product-rating-wrap .rating-form-wrapper .rating-form h5 {
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 8px;
}
.product-rating-wrap .rating-form-wrapper .rating-form .rating-star i {
  color: var(--color-border-senary);
  margin-right: 10px;
}
.product-rating-wrap .rating-form-wrapper .rating-form .rating-star i:last-child {
  margin-right: 0;
}
.product-rating-wrap .rating-form-wrapper .rating-form .rating-star i:hover ~ i {
  color: var(--color-border-senary);
}
.product-rating-wrap .rating-form-wrapper .rating-form .rating-star:hover i {
  cursor: pointer;
  color: var(--color-brand-primary);
}
.product-rating-wrap .rating-form-wrapper .rating-form input, .product-rating-wrap .rating-form-wrapper .rating-form textarea {
  background-color: var(--color-white);
  border: 1px solid var(--color-border-primary);
  display: block;
  padding: 12px 20px;
  width: 100%;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.product-rating-wrap .rating-form-wrapper .rating-form input:focus, .product-rating-wrap .rating-form-wrapper .rating-form textarea:focus {
  border-color: var(--color-brand-primary);
}

/*==================================
19. Cart Page Style Css
===================================*/
.shopping-cart-table thead th {
  color: var(--color-dark);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  border-bottom: 0;
}
.shopping-cart-table tr td, .shopping-cart-table tr th {
  vertical-align: middle;
  width: 15%;
  padding: 10px;
  border-color: var(--color-border-primary);
  white-space: nowrap;
}
.shopping-cart-table tr td.product-list, .shopping-cart-table tr th.product-list {
  width: 55%;
}
.shopping-cart-table .product-list .remove-icon {
  margin-right: 15px;
}
.shopping-cart-table .product-list .remove-icon button {
  color: var(--color-text-primary);
}
.shopping-cart-table .product-list .remove-icon button:hover {
  color: var(--color-brand-primary);
}
.shopping-cart-table .product-list .product-thumb {
  display: block;
  width: 120px;
  margin-right: 20px;
}
.shopping-cart-table .product-list .product-name {
  color: var(--color-dark);
  line-height: 1;
}
.shopping-cart-table .product-list .product-name:hover {
  color: var(--color-brand-primary);
}
.shopping-cart-table .pro-qty {
  width: 120px;
  line-height: 40px;
}
.shopping-cart-table .pro-qty input {
  padding: 10px 0;
  font-weight: 400;
  height: 40px;
}
.shopping-cart-table .pro-qty a {
  width: 30px;
  line-height: 44px;
  font-weight: 400;
  font-size: 16px;
}
.shopping-cart-table .add-cart .btn {
  font-size: 13px;
  padding: 0 20px;
  height: 36px;
  line-height: 30px;
}

.cart-coupon-update-area {
  border: 1px solid var(--color-border-primary);
  border-top: 0;
  padding: 20px 30px 30px;
}
.cart-coupon-update-area button {
  font-size: 14px;
  font-weight: 700;
}
.cart-coupon-update-area button:hover {
  color: var(--color-brand-primary);
}
.cart-coupon-update-area .coupon-form-wrap {
  width: 55%;
}
@media only screen and (max-width: 575.98px) {
  .cart-coupon-update-area .coupon-form-wrap {
    width: 100%;
  }
}
.cart-coupon-update-area .coupon-form-wrap form {
  position: relative;
}
.cart-coupon-update-area .coupon-form-wrap form input {
  border: none;
  border-bottom: 1px solid var(--color-border-primary);
  display: block;
  outline: none;
  padding: 5px 100px 5px 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: 100%;
}
.cart-coupon-update-area .coupon-form-wrap form input:focus {
  border-color: var(--color-brand-primary);
}
.cart-coupon-update-area .coupon-form-wrap form .btn-apply {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.cart-coupon-update-area .cart-update-buttons button:nth-child(1n+2) {
  margin-left: 10px;
}

.cart-calculate-area {
  background-color: var(--color-bg-quaternary);
  padding: 30px;
}
.cart-calculate-area h5 {
  font-weight: 600;
  font-size: 24px;
  line-height: 1;
  margin-bottom: 20px;
}
.cart-calculate-area .cart-cal-table {
  white-space: nowrap;
}
.cart-calculate-area .cart-cal-table table {
  margin-bottom: 0;
}
.cart-calculate-area .cart-cal-table td, .cart-calculate-area .cart-cal-table th {
  font-size: 16px;
  font-weight: 400;
  padding: 5px 0 15px;
}
.cart-calculate-area .cart-cal-table .shipping-method li {
  margin-bottom: 15px;
}
.cart-calculate-area .cart-cal-table .shipping-method li:last-child {
  margin-bottom: 0;
}
.cart-calculate-area .cart-cal-table .order-total {
  border-top: 1px solid var(--color-border-primary);
}
.cart-calculate-area .cart-cal-table .order-total th, .cart-calculate-area .cart-cal-table .order-total td {
  padding-top: 15px;
}
.cart-calculate-area .proceed-checkout-btn {
  margin: 15px 0 0;
}
.cart-calculate-area .proceed-checkout-btn .btn {
  font-size: 14px;
}

.table-responsive::-webkit-scrollbar-thumb, .list::-webkit-scrollbar-thumb {
  border-radius: 0;
  border: 0;
  background-color: var(--color-brand-primary);
}
.table-responsive::-webkit-scrollbar, .list::-webkit-scrollbar {
  background-color: var(--color-brand-transparent-03);
  -webkit-appearance: none;
  width: 15px;
  height: 5px;
}

.form-check-input:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.form-check-input:checked {
  border-color: var(--color-brand-primary);
  background-color: var(--color-brand-primary);
}

/*==========================================
20. Checkout Page Style Css
===========================================*/
.checkout-page-coupon-area .card {
  border: none;
  padding: 0;
}
.checkout-page-coupon-area .card h3 {
  background-color: var(--color-brand-primary);
  color: var(--color-dark);
  font-size: 16px;
  line-height: 1.2;
  margin: 0;
  padding: 20px 30px;
}
@media only screen and (max-width: 575.98px) {
  .checkout-page-coupon-area .card h3 {
    font-size: 14px;
    padding: 10px 15px;
  }
}
.checkout-page-coupon-area .card h3 i {
  color: var(--color-white);
  margin-right: 5px;
  font-size: 20px;
  vertical-align: middle;
}
.checkout-page-coupon-area .card h3 span {
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.checkout-page-coupon-area .card h3 span:hover {
  color: var(--color-white);
}
.checkout-page-coupon-area .card .card-body {
  padding: 0;
  margin-top: 30px;
}
.checkout-page-coupon-area .card .card-body .apply-coupon-wrapper .form-input-item input {
  font-size: 16px;
  padding: 10px 0;
}

.checkout-billing-details-wrap {
  margin-top: 90px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .checkout-billing-details-wrap {
    margin-top: 60px;
  }
}
@media only screen and (max-width: 767.98px) {
  .checkout-billing-details-wrap {
    margin-top: 40px;
  }
}
.checkout-billing-details-wrap h2 {
  font-weight: 600;
  font-size: 30px;
  line-height: 1;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 46px;
}
@media only screen and (max-width: 767.98px) {
  .checkout-billing-details-wrap h2 {
    margin-bottom: 26px;
  }
}
.checkout-billing-details-wrap h2:before {
  background-color: var(--color-dark);
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 50px;
}

.billing-form-wrap .form-input-item {
  margin-top: 40px;
}
.billing-form-wrap .form-input-item input, .billing-form-wrap .form-input-item textarea {
  font-size: 16px;
  padding: 5px 0;
}
.billing-form-wrap .form-input-item input::-webkit-input-placeholder, .billing-form-wrap .form-input-item textarea::-webkit-input-placeholder {
  color: var(--color-text-primary);
}
.billing-form-wrap .form-input-item input::-moz-placeholder, .billing-form-wrap .form-input-item textarea::-moz-placeholder {
  color: var(--color-text-primary);
}
.billing-form-wrap .form-input-item input:-ms-input-placeholder, .billing-form-wrap .form-input-item textarea:-ms-input-placeholder {
  color: var(--color-text-primary);
}
.billing-form-wrap .form-input-item input::-ms-input-placeholder, .billing-form-wrap .form-input-item textarea::-ms-input-placeholder {
  color: var(--color-text-primary);
}
.billing-form-wrap .form-input-item input::placeholder, .billing-form-wrap .form-input-item textarea::placeholder {
  color: var(--color-text-primary);
}
.billing-form-wrap .form-input-item .nice-select:after {
  border-right-color: var(--color-text-primary);
  border-bottom-color: var(--color-text-primary);
}
.billing-form-wrap .form-input-item .nice-select .current {
  font-size: 16px;
  color: var(--color-text-primary);
}

.checkout-box-wrap .account-create {
  margin-top: 25px;
  font-size: 16px;
}
.checkout-box-wrap .account-create, .checkout-box-wrap .ship-to-different {
  display: none;
}

.order-details-area-wrap {
  border: 2px solid var(--color-border-primary);
  padding: 50px 30px;
  margin-top: 80px;
}
@media only screen and (max-width: 575.98px) {
  .order-details-area-wrap {
    padding: 30px 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .order-details-area-wrap {
    margin-top: 60px;
  }
}
@media only screen and (max-width: 767.98px) {
  .order-details-area-wrap {
    margin-top: 40px;
  }
}
.order-details-area-wrap h2 {
  font-weight: 600;
  font-size: 30px;
  line-height: 1;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 35px;
}
@media only screen and (max-width: 767.98px) {
  .order-details-area-wrap h2 {
    margin-bottom: 26px;
  }
}
.order-details-area-wrap h2:before {
  background-color: var(--color-dark);
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 50px;
}
.order-details-area-wrap .order-details-table {
  line-height: 1;
  white-space: nowrap;
}
.order-details-area-wrap .order-details-table .custom-control-label, .order-details-area-wrap .order-details-table th {
  font-weight: 400;
}
.order-details-area-wrap .order-details-table .form-check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.order-details-area-wrap .order-details-table .form-check-label {
  padding-left: 10px;
}
.order-details-area-wrap .order-details-table .table thead {
  border-bottom: 1px solid var(--color-border-primary);
  margin-bottom: 27px;
}
.order-details-area-wrap .order-details-table .table thead th {
  margin-bottom: 27px;
}
.order-details-area-wrap .order-details-table .table tbody {
  border-bottom: 1px solid var(--color-border-primary);
}
.order-details-area-wrap .order-details-table .table tbody .cart-item {
  font-size: 16px;
}
.order-details-area-wrap .order-details-table .table tbody .cart-item:first-child td {
  padding-top: 30px;
}
.order-details-area-wrap .order-details-table .table tbody .cart-item:last-child td {
  padding-bottom: 30px;
}
.order-details-area-wrap .order-details-table .table tfoot .shipping .shipping-method li {
  margin-bottom: 15px;
}
.order-details-area-wrap .order-details-table .table tfoot .shipping .shipping-method li:last-child {
  margin-bottom: 0;
}
.order-details-area-wrap .order-details-table .table tfoot .shipping .shipping-method .custom-control-label {
  line-height: 23px;
}
.order-details-area-wrap .order-details-table .table tfoot .total-amount {
  font-size: 20px;
  font-weight: 600;
}
.order-details-area-wrap .order-details-table .table tfoot tr {
  border-bottom: 1px solid var(--color-border-primary);
}
.order-details-area-wrap .order-details-table .table tr td, .order-details-area-wrap .order-details-table .table tr th {
  padding: 15px 0;
}
.order-details-area-wrap .order-details-table .table tr td:last-child, .order-details-area-wrap .order-details-table .table tr th:last-child {
  text-align: right;
}
.order-details-area-wrap .order-details-table .product-title .product-quantity {
  color: var(--color-text-octonary);
  font-size: 14px;
}
.order-details-area-wrap .order-details-footer {
  font-size: 15px;
}

/*=============================
21. Blog Layout Style Css
==============================*/
.blog-item {
  position: relative;
  margin-top: 25px;
}
.blog-item__info {
  position: relative;
  padding-left: 70px;
  padding-top: 25px;
}
.blog-item__info .post-date {
  border-radius: 5px;
  border: 1px solid var(--color-border-primary);
  text-align: center;
  padding: 10px;
  margin-right: 20px;
  width: 50px;
  position: absolute;
  left: 0;
  top: 25px;
}
.blog-item__info .post-date span {
  display: block;
  margin: 0;
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  color: var(--color-dark);
  font-family: var(--font-family-heading);
}
.blog-item__info .post-date span:first-child {
  padding-bottom: 5px;
}
.blog-item__info .post-meta {
  margin-bottom: 10px;
  margin-top: -4px;
}
.blog-item__info .post-meta a, .blog-item__info .post-meta span {
  color: var(--color-dark);
  font-family: var(--font-family-heading);
}
.blog-item__info .post-meta a a:hover, .blog-item__info .post-meta span a:hover {
  color: var(--color-brand-primary);
}
.blog-item__info .post-meta span:after {
  content: "|";
  padding-left: 3px;
}
.blog-item__info .post-meta span:last-child:after {
  display: none;
}
.blog-item__info .post-title {
  font-size: 20px;
  font-weight: 500;
  margin-top: -5px;
  margin-bottom: 10px;
}
.blog-item__info .post-title a {
  color: var(--color-dark);
}
.blog-item__info .post-title a:hover {
  color: var(--color-brand-primary);
}

/*==============================
22. Blog Details Style Css
===============================*/
.blog-post-details .blog-post-thumb {
  margin-bottom: 50px;
}
@media only screen and (max-width: 767.98px) {
  .blog-post-details .blog-post-thumb {
    margin-bottom: 35px;
  }
}
.blog-post-details .blog-post-thumb img {
  width: 100%;
}
.blog-post-details .blog-post-txt h2 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 18px;
  margin-top: -6px;
}
@media only screen and (max-width: 767.98px) {
  .blog-post-details .blog-post-txt h2 {
    font-size: 24px;
    font-weight: 400;
  }
}
.blog-post-details .blog-post-txt p, .blog-post-details .blog-post-txt img, .blog-post-details .blog-post-txt blockquote {
  margin-bottom: 30px;
}
.blog-post-details .share-article {
  margin-top: 50px;
}
.blog-post-details .share-article h6 {
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
}
.blog-post-details .share-article .share-icons {
  border-top: 1px solid var(--color-border-primary);
  padding-top: 20px;
  margin-top: 20px;
}
.blog-post-details .share-article .share-icons a {
  color: var(--color-white);
  display: block;
  font-size: 18px;
  text-align: center;
  line-height: 40px;
  height: 40px;
  width: 50px;
}
.blog-post-details .share-article .share-icons a.facebook {
  background-color: var(--color-social-facebook);
}
.blog-post-details .share-article .share-icons a.twitter {
  background-color: var(--color-social-twitter);
}
.blog-post-details .share-article .share-icons a.reddit {
  background-color: var(--color-social-reddit);
}
.blog-post-details .share-article .share-icons a.pinterest {
  background-color: var(--color-social-pinterest);
}
.blog-post-details .comment-area-wrapper .btn-outline {
  border-radius: 0;
  border-width: 1px;
}

.author-info {
  border-top: 8px solid var(--color-light-gray-transparent-05);
  border-bottom: 1px solid var(--color-border-primary);
  padding: 20px 0;
}
.author-info .author-thumb {
  border-radius: 50%;
  overflow: hidden;
  height: 100px;
  width: 100px;
  margin: 0 auto 15px;
}
.author-info .author-txt {
  text-align: center;
}
.author-info .author-txt h5 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 0;
}
.author-info .author-txt h5 .designation {
  font-size: 14px;
  font-family: var(--font-family-body);
  display: block;
  font-weight: 500;
  margin-top: 7px;
}
.author-info .author-txt .member-social-icons {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 15px;
}
.author-info .author-txt .member-social-icons a {
  color: var(--color-text-primary);
  display: inline-block;
  height: auto;
  width: auto;
  margin-right: 15px;
  line-height: 1;
}
.author-info .author-txt .member-social-icons a:last-child {
  margin-right: 0;
}

/*============================
Start Comment Area Wrapper
============================*/
.comment-area-wrapper {
  margin-top: 55px;
}
.comment-area-wrapper h3 {
  font-size: 26px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767.98px) {
  .comment-area-wrapper h3 {
    margin-bottom: 25px;
  }
}
.comment-area-wrapper .comment-box-form .btn-brand {
  border-radius: 0;
}

.single-comment-wrap {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 35px;
}
.single-comment-wrap:last-child {
  margin-bottom: 0;
}
.single-comment-wrap.comment-reply {
  margin-left: 50px;
}
@media only screen and (max-width: 767.98px) {
  .single-comment-wrap.comment-reply {
    margin-left: 20px;
  }
}
.single-comment-wrap .author-thumb {
  border-radius: 3px;
  margin-right: 15px;
  height: 70px;
  max-width: 70px;
  -ms-flex-preferred-size: 70px;
      flex-basis: 70px;
  overflow: hidden;
}
.single-comment-wrap .comments-info {
  margin-top: -4px;
  -ms-flex-preferred-size: calc(100% - 70px);
      flex-basis: calc(100% - 70px);
}
.single-comment-wrap .comment-footer {
  margin-top: 8px;
}
.single-comment-wrap .comment-footer a {
  font-size: 14px;
  color: var(--color-text-primary);
}
.single-comment-wrap .comment-footer a strong {
  color: var(--color-dark);
}
.single-comment-wrap .comment-footer a.btn-reply {
  color: var(--color-dark);
}
.single-comment-wrap .comment-footer a.btn-reply:hover {
  color: var(--color-brand-primary);
}

/*==================================
23. Login Register Page Style Css
===================================*/
.login-form-style,
.register-form-style {
  background: transparent none repeat scroll 0 0;
  -webkit-box-shadow: 0 0 6px var(--color-black-transparent-01);
          box-shadow: 0 0 6px var(--color-black-transparent-01);
  padding: 80px;
}
@media only screen and (max-width: 767.98px) {
  .login-form-style,
.register-form-style {
    padding: 50px 50px;
  }
}
@media only screen and (max-width: 575.98px) {
  .login-form-style,
.register-form-style {
    padding: 50px 30px;
  }
}
.login-form-style form input,
.register-form-style form input {
  background-color: transparent;
  border: 1px solid var(--color-border-primary);
  font-size: 15px;
  height: 50px;
  margin-bottom: 30px;
  padding: 0 15px;
  color: var(--color-text-primary);
  width: 100%;
}
.login-form-style form input::-moz-input-placeholder,
.register-form-style form input::-moz-input-placeholder {
  opacity: 1;
  color: var(--color-text-primary);
}
.login-form-style form input::-webkit-input-placeholder,
.register-form-style form input::-webkit-input-placeholder {
  opacity: 1;
  color: var(--color-text-primary);
}
@media only screen and (max-width: 575.98px) {
  .login-form-style form input,
.register-form-style form input {
    margin-bottom: 20px;
  }
}
.login-form-style form input[type=checkbox],
.register-form-style form input[type=checkbox] {
  height: 15px;
  margin: 0;
  position: relative;
  top: 2px;
  width: 17px;
  color: var(--color-text-primary);
}
.login-form-style form input[type=checkbox]:-moz-input-placeholder,
.register-form-style form input[type=checkbox]:-moz-input-placeholder {
  color: var(--color-text-primary);
  opacity: 1;
}
.login-form-style form input[type=checkbox]:-webkit-input-placeholder,
.register-form-style form input[type=checkbox]:-webkit-input-placeholder {
  color: var(--color-text-primary);
  opacity: 1;
}
.login-form-style form .login-toggle-btn,
.register-form-style form .login-toggle-btn {
  padding: 10px 0 19px;
}
@media only screen and (max-width: 575.98px) {
  .login-form-style form .login-toggle-btn,
.register-form-style form .login-toggle-btn {
    padding: 0px 0 17px;
  }
}
.login-form-style form .login-toggle-btn label,
.register-form-style form .login-toggle-btn label {
  font-size: 15px;
  font-weight: 400;
}
@media only screen and (max-width: 575.98px) {
  .login-form-style form .login-toggle-btn label,
.register-form-style form .login-toggle-btn label {
    font-size: 14px;
  }
}
.login-form-style form .login-toggle-btn a,
.register-form-style form .login-toggle-btn a {
  float: right;
  font-size: 15px;
  color: var(--color-text-primary);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media only screen and (max-width: 575.98px) {
  .login-form-style form .login-toggle-btn a,
.register-form-style form .login-toggle-btn a {
    font-size: 14px;
  }
}
.login-form-style form .login-toggle-btn a:hover,
.register-form-style form .login-toggle-btn a:hover {
  color: var(--color-brand-primary);
}
.login-form-style form .login-btn button,
.register-form-style form .login-btn button {
  background-color: var(--color-text-primary);
  color: var(--color-white-pure);
  border: medium none;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  padding: 16px 30px 15px;
  display: block;
  width: 100%;
}
.login-form-style form .login-btn button:hover,
.register-form-style form .login-btn button:hover {
  background-color: var(--color-brand-primary);
}

.mtn-5 {
    margin-top: -5px
}

.mtn-10 {
    margin-top: -10px
}

.mtn-15 {
    margin-top: -15px
}

.mtn-20 {
    margin-top: -20px
}

.mtn-25 {
    margin-top: -25px
}

.mtn-30 {
    margin-top: -30px
}

.mtn-35 {
    margin-top: -35px
}

.mtn-40 {
    margin-top: -40px
}

.mtn-45 {
    margin-top: -45px
}

.mtn-50 {
    margin-top: -50px
}

.mtn-55 {
    margin-top: -55px
}

.mtn-60 {
    margin-top: -60px
}

.mtn-65 {
    margin-top: -65px
}

.mtn-70 {
    margin-top: -70px
}

.mtn-75 {
    margin-top: -75px
}

.mtn-80 {
    margin-top: -80px
}

.mtn-85 {
    margin-top: -85px
}

.mtn-90 {
    margin-top: -90px
}

.mtn-95 {
    margin-top: -95px
}

.mtn-100 {
    margin-top: -100px
}

@media only screen and (max-width:767.98px) {
    .mtn-sm-5 {
        margin-top: -5px
    }
}

@media only screen and (max-width:767.98px) {
    .mtn-sm-10 {
        margin-top: -10px
    }
}

@media only screen and (max-width:767.98px) {
    .mtn-sm-15 {
        margin-top: -15px
    }
}

@media only screen and (max-width:767.98px) {
    .mtn-sm-20 {
        margin-top: -20px
    }
}

@media only screen and (max-width:767.98px) {
    .mtn-sm-25 {
        margin-top: -25px
    }
}

@media only screen and (max-width:767.98px) {
    .mtn-sm-30 {
        margin-top: -30px
    }
}

@media only screen and (max-width:767.98px) {
    .mtn-sm-35 {
        margin-top: -35px
    }
}

@media only screen and (max-width:767.98px) {
    .mtn-sm-40 {
        margin-top: -40px
    }
}

@media only screen and (max-width:767.98px) {
    .mtn-sm-45 {
        margin-top: -45px
    }
}

@media only screen and (max-width:767.98px) {
    .mtn-sm-50 {
        margin-top: -50px
    }
}

@media only screen and (max-width:767.98px) {
    .mtn-sm-55 {
        margin-top: -55px
    }
}

@media only screen and (max-width:767.98px) {
    .mtn-sm-60 {
        margin-top: -60px
    }
}

@media only screen and (max-width:767.98px) {
    .mtn-sm-65 {
        margin-top: -65px
    }
}

@media only screen and (max-width:767.98px) {
    .mtn-sm-70 {
        margin-top: -70px
    }
}

@media only screen and (max-width:767.98px) {
    .mtn-sm-75 {
        margin-top: -75px
    }
}

@media only screen and (max-width:767.98px) {
    .mtn-sm-80 {
        margin-top: -80px
    }
}

@media only screen and (max-width:767.98px) {
    .mtn-sm-85 {
        margin-top: -85px
    }
}

@media only screen and (max-width:767.98px) {
    .mtn-sm-90 {
        margin-top: -90px
    }
}

@media only screen and (max-width:767.98px) {
    .mtn-sm-95 {
        margin-top: -95px
    }
}

@media only screen and (max-width:767.98px) {
    .mtn-sm-100 {
        margin-top: -100px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .mtn-md-5 {
        margin-top: -5px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .mtn-md-10 {
        margin-top: -10px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .mtn-md-15 {
        margin-top: -15px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .mtn-md-20 {
        margin-top: -20px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .mtn-md-25 {
        margin-top: -25px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .mtn-md-30 {
        margin-top: -30px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .mtn-md-35 {
        margin-top: -35px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .mtn-md-40 {
        margin-top: -40px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .mtn-md-45 {
        margin-top: -45px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .mtn-md-50 {
        margin-top: -50px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .mtn-md-55 {
        margin-top: -55px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .mtn-md-60 {
        margin-top: -60px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .mtn-md-65 {
        margin-top: -65px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .mtn-md-70 {
        margin-top: -70px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .mtn-md-75 {
        margin-top: -75px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .mtn-md-80 {
        margin-top: -80px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .mtn-md-85 {
        margin-top: -85px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .mtn-md-90 {
        margin-top: -90px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .mtn-md-95 {
        margin-top: -95px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .mtn-md-100 {
        margin-top: -100px
    }
}

.mt-5 {
    margin-top: 5px
}

.mt-10 {
    margin-top: 10px
}

.mt-15 {
    margin-top: 15px
}

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

.mt-25 {
    margin-top: 25px
}

.mt-30 {
    margin-top: 30px
}

.mt-35 {
    margin-top: 35px
}

.mt-40 {
    margin-top: 40px
}

.mt-45 {
    margin-top: 45px
}

.mt-50 {
    margin-top: 50px
}

.mt-55 {
    margin-top: 55px
}

.mt-60 {
    margin-top: 60px
}

.mt-65 {
    margin-top: 65px
}

.mt-70 {
    margin-top: 70px
}

.mt-75 {
    margin-top: 75px
}

.mt-80 {
    margin-top: 80px
}

.mt-85 {
    margin-top: 85px
}

.mt-90 {
    margin-top: 90px
}

.mt-95 {
    margin-top: 95px
}

.mt-100 {
    margin-top: 100px
}

@media only screen and (max-width:767.98px) {
    .mt-sm-5 {
        margin-top: 5px
    }
}

@media only screen and (max-width:767.98px) {
    .mt-sm-10 {
        margin-top: 10px
    }
}

@media only screen and (max-width:767.98px) {
    .mt-sm-15 {
        margin-top: 15px
    }
}

@media only screen and (max-width:767.98px) {
    .mt-sm-20 {
        margin-top: 20px
    }
}

@media only screen and (max-width:767.98px) {
    .mt-sm-25 {
        margin-top: 25px
    }
}

@media only screen and (max-width:767.98px) {
    .mt-sm-30 {
        margin-top: 30px
    }
}

@media only screen and (max-width:767.98px) {
    .mt-sm-35 {
        margin-top: 35px
    }
}

@media only screen and (max-width:767.98px) {
    .mt-sm-40 {
        margin-top: 40px
    }
}

@media only screen and (max-width:767.98px) {
    .mt-sm-45 {
        margin-top: 45px
    }
}

@media only screen and (max-width:767.98px) {
    .mt-sm-50 {
        margin-top: 50px
    }
}

@media only screen and (max-width:767.98px) {
    .mt-sm-55 {
        margin-top: 55px
    }
}

@media only screen and (max-width:767.98px) {
    .mt-sm-60 {
        margin-top: 60px
    }
}

@media only screen and (max-width:767.98px) {
    .mt-sm-65 {
        margin-top: 65px
    }
}

@media only screen and (max-width:767.98px) {
    .mt-sm-70 {
        margin-top: 70px
    }
}

@media only screen and (max-width:767.98px) {
    .mt-sm-75 {
        margin-top: 75px
    }
}

@media only screen and (max-width:767.98px) {
    .mt-sm-80 {
        margin-top: 80px
    }
}

@media only screen and (max-width:767.98px) {
    .mt-sm-85 {
        margin-top: 85px
    }
}

@media only screen and (max-width:767.98px) {
    .mt-sm-90 {
        margin-top: 90px
    }
}

@media only screen and (max-width:767.98px) {
    .mt-sm-95 {
        margin-top: 95px
    }
}

@media only screen and (max-width:767.98px) {
    .mt-sm-100 {
        margin-top: 100px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .mt-md-5 {
        margin-top: 5px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .mt-md-10 {
        margin-top: 10px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .mt-md-15 {
        margin-top: 15px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .mt-md-20 {
        margin-top: 20px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .mt-md-25 {
        margin-top: 25px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .mt-md-30 {
        margin-top: 30px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .mt-md-35 {
        margin-top: 35px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .mt-md-40 {
        margin-top: 40px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .mt-md-45 {
        margin-top: 45px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .mt-md-50 {
        margin-top: 50px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .mt-md-55 {
        margin-top: 55px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .mt-md-60 {
        margin-top: 60px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .mt-md-65 {
        margin-top: 65px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .mt-md-70 {
        margin-top: 70px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .mt-md-75 {
        margin-top: 75px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .mt-md-80 {
        margin-top: 80px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .mt-md-85 {
        margin-top: 85px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .mt-md-90 {
        margin-top: 90px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .mt-md-95 {
        margin-top: 95px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .mt-md-100 {
        margin-top: 100px
    }
}

.mb-5 {
    margin-bottom: 5px
}

.mb-10 {
    margin-bottom: 10px
}

.mb-15 {
    margin-bottom: 15px
}

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

.mb-25 {
    margin-bottom: 25px
}

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

.mb-35 {
    margin-bottom: 35px
}

.mb-40 {
    margin-bottom: 40px
}

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

.mb-50 {
    margin-bottom: 50px
}

.mb-55 {
    margin-bottom: 55px
}

.mb-60 {
    margin-bottom: 60px
}

.mb-65 {
    margin-bottom: 65px
}

.mb-70 {
    margin-bottom: 70px
}

.mb-75 {
    margin-bottom: 75px
}

.mb-80 {
    margin-bottom: 80px
}

.mb-85 {
    margin-bottom: 85px
}

.mb-90 {
    margin-bottom: 90px
}

.mb-95 {
    margin-bottom: 95px
}

.mb-100 {
    margin-bottom: 100px
}

@media only screen and (max-width:767.98px) {
    .mb-sm-5 {
        margin-bottom: 5px
    }
}

@media only screen and (max-width:767.98px) {
    .mb-sm-10 {
        margin-bottom: 10px
    }
}

@media only screen and (max-width:767.98px) {
    .mb-sm-15 {
        margin-bottom: 15px
    }
}

@media only screen and (max-width:767.98px) {
    .mb-sm-20 {
        margin-bottom: 20px
    }
}

@media only screen and (max-width:767.98px) {
    .mb-sm-25 {
        margin-bottom: 25px
    }
}

@media only screen and (max-width:767.98px) {
    .mb-sm-30 {
        margin-bottom: 30px
    }
}

@media only screen and (max-width:767.98px) {
    .mb-sm-35 {
        margin-bottom: 35px
    }
}

@media only screen and (max-width:767.98px) {
    .mb-sm-40 {
        margin-bottom: 40px
    }
}

@media only screen and (max-width:767.98px) {
    .mb-sm-45 {
        margin-bottom: 45px
    }
}

@media only screen and (max-width:767.98px) {
    .mb-sm-50 {
        margin-bottom: 50px
    }
}

@media only screen and (max-width:767.98px) {
    .mb-sm-55 {
        margin-bottom: 55px
    }
}

@media only screen and (max-width:767.98px) {
    .mb-sm-60 {
        margin-bottom: 60px
    }
}

@media only screen and (max-width:767.98px) {
    .mb-sm-65 {
        margin-bottom: 65px
    }
}

@media only screen and (max-width:767.98px) {
    .mb-sm-70 {
        margin-bottom: 70px
    }
}

@media only screen and (max-width:767.98px) {
    .mb-sm-75 {
        margin-bottom: 75px
    }
}

@media only screen and (max-width:767.98px) {
    .mb-sm-80 {
        margin-bottom: 80px
    }
}

@media only screen and (max-width:767.98px) {
    .mb-sm-85 {
        margin-bottom: 85px
    }
}

@media only screen and (max-width:767.98px) {
    .mb-sm-90 {
        margin-bottom: 90px
    }
}

@media only screen and (max-width:767.98px) {
    .mb-sm-95 {
        margin-bottom: 95px
    }
}

@media only screen and (max-width:767.98px) {
    .mb-sm-100 {
        margin-bottom: 100px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .mb-md-5 {
        margin-bottom: 5px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .mb-md-10 {
        margin-bottom: 10px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .mb-md-15 {
        margin-bottom: 15px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .mb-md-20 {
        margin-bottom: 20px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .mb-md-25 {
        margin-bottom: 25px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .mb-md-30 {
        margin-bottom: 30px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .mb-md-35 {
        margin-bottom: 35px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .mb-md-40 {
        margin-bottom: 40px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .mb-md-45 {
        margin-bottom: 45px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .mb-md-50 {
        margin-bottom: 50px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .mb-md-55 {
        margin-bottom: 55px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .mb-md-60 {
        margin-bottom: 60px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .mb-md-65 {
        margin-bottom: 65px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .mb-md-70 {
        margin-bottom: 70px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .mb-md-75 {
        margin-bottom: 75px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .mb-md-80 {
        margin-bottom: 80px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .mb-md-85 {
        margin-bottom: 85px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .mb-md-90 {
        margin-bottom: 90px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .mb-md-95 {
        margin-bottom: 95px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .mb-md-100 {
        margin-bottom: 100px
    }
}

.menu-align {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.has-submenu>a i.fa-angle-down {
    margin-left: 2px;
    bottom: 1px;
    font-size: 0.85em;
    position: relative;
}

.header-area {
    background: linear-gradient(270deg, var(--color-border-quinary), var(--color-bg-secondary));
}

.slider-slide-item .slide-content h2,
.slider-slide-item .slide-content h3 {
    color: var(--color-bg-secondary);
}

.home-slider .slider-slide-item {
    position: relative;
    background-size: cover;
    background-position: top;

}


.home-slider .slider-slide-item {
    height: calc(100vh - 89px);
    margin-top: 89px;
}

.page-header-wrap {
    margin-top: 89px;
}




.slider-slide-item .slide-content-inner {
    margin-top: 0px;
    max-width: 800px;
}

.home-slider .slider-slide-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-black-transparent-045);
    /* koyuluk derecesi */
    z-index: 1;
}

.home-slider .slider-slide-item .slide-content {
    position: relative;
    z-index: 2;
    /* yazılar overlay üstünde olsun */
}

.slider-slide-item .slide-content h3 {
    background: linear-gradient(90deg, var(--color-brand-primary), var(--color-white-pure));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* Firefox için */
    font-weight: 700;
}

.home-slider .slider-slide-item.link-mode {
    cursor: pointer;
}

.home-slider .slider-slide-item.link-mode .slide-content-inner {
    pointer-events: none;
}

.component-padding {
    padding: 90px 0;
}



.about-bg {
    position: relative;
    color: var(--color-white-pure);
    background-color: var(--color-dark);
}

.about-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-black-transparent-055);
    z-index: 1;
}

.about-bg .container {
    position: relative;
    z-index: 2;
}

.about-bg .about-content h2 {
    color: var(--color-brand-primary);
}

.about-bg .about-content p {
    color: var(--color-white-pure);
}

/* Bölüm başlıkları */
.section-title {
    color: var(--color-dark);
    font-weight: 800;
    letter-spacing: .2px;
}

.section-subtitle {
    color: var(--color-text-tertiary);
}

/* Kart */
.service-card {
    border: 1px solid var(--color-border-tertiary);
    border-top: 4px solid var(--color-brand-primary);
    border-radius: .8rem;
    overflow: hidden;
    background: var(--color-white-pure);
    transition: box-shadow .2s ease, border-color .2s ease;
    height: 100%;
    margin-bottom: 10px;
}


.service-card:hover {

    box-shadow: 0 12px 28px var(--color-black-transparent-008);
    border-color: var(--color-brand-primary);
}

/* Görsel alanı */
.service-img {
    position: relative;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--color-black-transparent-0) 40%, var(--color-black-transparent-015) 100%);
    opacity: 0;
    transition: opacity .2s ease;
}

.service-card:hover .service-img::after {
    opacity: 1;
}

.service-card .card-title {
    color: var(--color-dark);
    font-weight: 700;
    margin-bottom: 1rem;
    max-width: 250px;
    font-size: 22px;
}

.service-card .card-text {
    color: var(--color-text-tertiary);
    margin-bottom: .75rem;
}








.service-link {
    font-weight: 700;
    text-decoration: none;
    color: var(--color-dark);
    border-bottom: 2px solid var(--color-brand-primary);
    padding-bottom: 2px;
}

.service-link:hover {
    color: var(--color-brand-primary);
    border-color: var(--color-brand-primary);
}



/* Slick dış boşluklar (kartlar arası mesafe) */
.services-carousel .slick-slide {
    padding: 0 .6rem;
}

.services-carousel .slick-list {
    margin: 0 -0.6rem;
}

.slider-area-wrapper.services-carousel .slick-arrow {
    opacity: 1;
    visibility: visible;
}

.slider-area-wrapper.services-carousel .slick-arrow.slick-next {
    right: -25px;
}

.slider-area-wrapper.services-carousel .slick-arrow.slick-prev {
    left: -25px;
}

.slider-area-wrapper.services-carousel .slick-arrow {
    background-color: var(--color-brand-primary);
}


/* Slick dış boşluklar (kartlar arası mesafe) */
.listings-carousel .slick-slide {
    padding: 0 .6rem;
}

.listings-carousel .slick-list {
    margin: 0 -0.6rem;
}

.slider-area-wrapper.listings-carousel .slick-arrow {
    opacity: 1;
    visibility: visible;
}

.slider-area-wrapper.listings-carousel .slick-arrow.slick-next {
    right: -25px;
}

.slider-area-wrapper.listings-carousel .slick-arrow.slick-prev {
    left: -25px;
}

.slider-area-wrapper.listings-carousel .slick-arrow {
    background-color: var(--color-brand-primary);
}





.btn-brand {
    border-radius: 0.6rem;
}


/* 3 satırda kırpma (opsiyonel) */
.clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-img img {
    height: 200px;
    object-fit: cover;
}

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


/* Ekip Kartları */
.team-card {
    border: 1px solid var(--color-border-tertiary);
    border-radius: .8rem;
    overflow: hidden;
    background: var(--color-white-pure);
    transition: box-shadow .2s ease, border-color .2s ease;
    padding-bottom: 10px;
}

.team-card:hover {
    box-shadow: 0 12px 28px var(--color-black-transparent-008);
    border-color: var(--color-brand-primary);
}

.team-card .card-text {
    color: var(--color-text-tertiary);
}

.team-img {
    width: 140px;
    height: 140px;
    margin: 20px auto 10px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--color-brand-primary);
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-role {
    color: var(--color-brand-primary);
    font-weight: 600;
    margin-bottom: .5rem;
}



/* Slick spacing */
.team-carousel .slick-slide {
    padding: 0 .6rem;
}

.team-carousel .slick-list {
    margin: 0 -0.6rem;
}

.slider-area-wrapper.team-carousel .slick-arrow {
    opacity: 1;
    visibility: visible;
    background-color: var(--color-brand-primary);
}

.slider-area-wrapper.team-carousel .slick-arrow.slick-next {
    right: -25px;
}

.slider-area-wrapper.team-carousel .slick-arrow.slick-prev {
    left: -25px;
}

.team-carousel .slick-track {
    display: flex !important;
}

.team-carousel .slick-slide {
    height: inherit !important;
    display: flex !important;
}

.team-carousel .slick-slide>div {
    flex: 1;
    display: flex !important;
}

.team-card {
    display: flex;
    flex-direction: column;
}

.gallery-grid .gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: .6rem;
    margin-top: 0px;
}

.gallery-grid .gallery-item img {
    width: 100%;
    /* height: 100%; */
    height: 150px;
    object-fit: cover;
    transition: transform .4s ease, filter .4s ease;
    border: 2px solid var(--color-border-quaternary);
    border-radius: .6rem;
}

.gallery-grid .gallery-item::after {
    content: "\f002";
    /* search icon */
    font-family: var(--font-family-icon);
    /* FA 4.7 */
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    color: var(--color-white-pure);
    font-size: 1.5rem;
    opacity: 0;
    transition: all .3s ease;
    z-index: 2;
}


.gallery-grid .gallery-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--color-black-transparent-045);
    opacity: 0;
    transition: opacity .3s ease;
    border-radius: .6rem;
    z-index: 1;
}

.gallery-grid .gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(0.85);
}

.gallery-grid .gallery-item:hover::before,
.gallery-grid .gallery-item:hover::after {
    opacity: 1;
}


/* Blog Kart */
.blog-card {
    border: 1px solid var(--color-border-tertiary);
    border-radius: .8rem;
    overflow: hidden;
    background: var(--color-white-pure);
    transition: box-shadow .2s ease, border-color .2s ease;
}

.blog-card:hover {
    box-shadow: 0 12px 28px var(--color-black-transparent-008);
    border-color: var(--color-brand-primary);
}

.blog-img {
    position: relative;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform .4s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.08);
}

.blog-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--color-brand-primary);
    color: var(--color-white-pure);
    font-size: .8rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: .4rem;
}

.blog-link {
    font-weight: 700;
    text-decoration: none;
    color: var(--color-dark);
    border-bottom: 2px solid var(--color-brand-primary);
    padding-bottom: 2px;
    transition: all .2s ease;
}

.blog-link:hover {
    color: var(--color-brand-primary);
    border-color: var(--color-brand-primary);
}

/* Slider spacing */
.blog-carousel .slick-slide {
    padding: 0 .6rem;
}

.blog-carousel .slick-list {
    margin: 0 -0.6rem;
}

.slider-area-wrapper.blog-carousel .slick-arrow {
    opacity: 1;
    visibility: visible;
    background-color: var(--color-brand-primary);
}

.slider-area-wrapper.blog-carousel .slick-arrow.slick-next {
    right: -25px;
}

.slider-area-wrapper.blog-carousel .slick-arrow.slick-prev {
    left: -25px;
}


/* CTA Alanı */
.cta-area {
    background: var(--color-white-pure);

    padding: 60px 40px;
    box-shadow: 0 10px 28px var(--color-black-transparent-006);
    border: 1px solid var(--color-border-quaternary);
    position: relative;
    overflow: hidden;
}

/* Dekoratif ince çizgi */
.cta-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: -30px;
    width: 120%;
    height: 5px;
    background: linear-gradient(90deg, var(--color-brand-primary), var(--color-brand-primary-light));
}

.cta-title {
    color: var(--color-dark);
    font-weight: 800;
    font-size: 1.9rem;
    margin-bottom: 1rem;
    letter-spacing: .3px;
}

.cta-subtitle {
    color: var(--color-text-tertiary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0;
}



.btn-brand i {
    font-size: 1.1rem;
}

.footer-social a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    background: var(--color-brand-primary);
    color: var(--color-white-pure);
    margin-right: 8px;
    font-size: 16px;
    transition: all .3s ease;
}

.footer-social a:hover {
    background: var(--color-white-pure);
    color: var(--color-black-pure);
    transform: translateY(-2px);
}

.fa-x-twitter::before {
    content: "𝕏";
}

.about-widget img {
    max-width: 160px;
}

.header-area {
    padding: 15px 0;
}

.header-area .site-logo img {
    object-fit: contain;
}


.header-area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: all .3s ease;
    box-shadow: none;
}

/* Scroll olunca eklenecek class */
.header-area.sticky {
    box-shadow: 0 4px 12px var(--color-black-transparent-008);
    background: var(--color-white-pure);
}

.make-sticky {
    position: sticky;
    top: 120px;
}

.page-header-wrap {
    position: relative;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}

.page-header-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--color-black-transparent-08);
    /* koyuluk derecesi (0.55 = %55) */
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
    /* overlay üstünde yazılar gözüksün */
    height: 400px;

}


/* whatsapp-ÃƒÂ§errez */

.whatsapp-button {
    position: fixed;

    left: 20px;

    bottom: 20px;

    z-index: 999;

    /* DiÃ„Å¸er elementlerin ÃƒÂ¼zerinde gÃƒÂ¶rÃƒÂ¼nmesini saÃ„Å¸lar */
}

.whatsapp-button a {
    display: block;
}

.whatsapp-button img {
    width: 60px;

    /* Ã„Â°kon boyutunu ayarlayabilirsiniz */

    height: 60px;

    border-radius: 50%;

    /* Yuvarlak gÃƒÂ¶rÃƒÂ¼nÃƒÂ¼m iÃƒÂ§in */

    box-shadow: 2px 2px 8px var(--color-black-transparent-02);

    /* Hafif gÃƒÂ¶lge */

    transition: transform 0.3s ease-in-out;

    /* Hover efekti iÃƒÂ§in geÃƒÂ§iÃ…Å¸ */
}

.whatsapp-button img:hover {
    transform: scale(1.1);

    /* Hoverda hafif bÃƒÂ¼yÃƒÂ¼me efekti */
}

/* ÃƒÂ§erez bandÃ„Â± */

.cookie-banner {
    position: fixed;

    left: 0;

    bottom: 0;

    width: 100%;

    background-color: var(--color-bg-secondary);

    color: var(--color-text-primary);

    padding: 15px 20px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    z-index: 1000;

    /* DiÃ„Å¸er elementlerin ÃƒÂ¼zerinde gÃƒÂ¶rÃƒÂ¼nmesini saÃ„Å¸lar */

    box-shadow: 0 -2px 5px var(--color-black-transparent-01);

    transform: translateY(100%);

    /* BaÃ…Å¸langÃ„Â±ÃƒÂ§ta aÃ…Å¸aÃ„Å¸Ã„Â± kaydÃ„Â±rarak gizle */

    opacity: 0;

    /* GÃƒÂ¶rÃƒÂ¼nÃƒÂ¼rlÃƒÂ¼Ã„Å¸ÃƒÂ¼ de sÃ„Â±fÃ„Â±ra indir */

    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;

    /* OpaklÃ„Â±k geÃƒÂ§iÃ…Å¸ini de ekle */
}

.cookie-banner.show {
    transform: translateY(0);

    /* GÃƒÂ¶stermek iÃƒÂ§in yukarÃ„Â± kaydÃ„Â±r */

    opacity: 1;

    /* GÃƒÂ¶rÃƒÂ¼nÃƒÂ¼r yap */
}

.cookie-banner.hidden {
    transform: translateY(100%);

    opacity: 0;
}

.cookie-text {
    font-size: 16px;
}

.cookie-link {
    color: var(--color-social-linkedin);

    text-decoration: none;

    margin-left: 10px;
}

.cookie-link:hover {
    text-decoration: underline;
}

.cookie-button {
    background-color: var(--color-brand-primary);

    color: white;

    border: none;

    padding: 5px 15px;

    border-radius: 5px;

    cursor: pointer;

    font-size: 16px;

    transition: background-color 0.3s ease-in-out;
}

.cookie-button:hover {
    background-color: var(--color-text-primary);
    color: var(--color-white-pure);
}

/* Responsive TasarÃ„Â±m */

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;

        align-items: stretch;

        padding: 10px;

        text-align: center;
    }

    .cookie-text {
        margin-bottom: 10px;
    }

    .cookie-link {
        display: block;

        margin: 5px 0;
    }

    .cookie-button {
        width: 100%;
    }
}

/* ÃƒÂ§erez bandÃ„Â± */

/* whatsapp-ÃƒÂ§errez */

/* formlarla */

.swal2-container {
    z-index: 99999999999 !important;
}

.swal2-container .select2-container {
    display: none;
}

.zorunlu-alanlar {
    display: flex;

    gap: 10px;

    flex-direction: column;
}

.zorunlu-alanlar span {
    color: var(--color-error);

    font-size: 14px;

    font-weight: 500;
}

div:where(.swal2-container) div:where(.swal2-actions) .swal2-confirm {
    background-image: none;
    color: var(--color-white-pure);
    background-color: var(--color-brand-primary);
}

/* Spinner Stili */

.custom-spinner {
    display: inline-block;

    width: 16px;

    height: 16px;

    border: 2px solid var(--color-white-pure);

    border-top: 2px solid transparent;

    border-radius: 50%;

    animation: spin 0.8s linear infinite;

    margin-left: 8px;

    vertical-align: middle;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* Slick track’i flex row gibi yap */
.listings-carousel .slick-track {
    display: flex !important;
    align-items: stretch;
    /* tüm slide’lar eşit yükseklik alsın */
}

/* Her slide da flex item olsun */
.listings-carousel .slick-track .slick-slide {
    display: flex;
    height: auto;
    /* slick bazen height veriyor, sıfırla */
}

/* Kart tam esnesin */
.listings-carousel .slick-track .slick-slide>div {
    display: flex;
    flex: 1 1 auto;
}

.listings-carousel .slick-track .service-card {
    display: flex;
    flex-direction: column;
    width: 100%;
}


/* Slick track’i flex row gibi yap */
.services-carousel .slick-track {
    display: flex !important;
    align-items: stretch;
    /* tüm slide’lar eşit yükseklik alsın */
}

/* Her slide da flex item olsun */
.services-carousel .slick-track .slick-slide {
    display: flex;
    height: auto;
    /* slick bazen height veriyor, sıfırla */
}

/* Kart tam esnesin */
.services-carousel .slick-track .slick-slide>div {
    display: flex;
    flex: 1 1 auto;
}

.services-carousel .slick-track .service-card {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Slick track’i flex row gibi yap */
.team-carousel .slick-track {
    display: flex !important;
    align-items: stretch;
    /* tüm slide’lar eşit yükseklik alsın */
}

/* Her slide da flex item olsun */
.team-carousel .slick-track .slick-slide {
    display: flex;
    height: auto;
    /* slick bazen height veriyor, sıfırla */
}

/* Kart tam esnesin */
.team-carousel .slick-track .slick-slide>div {
    display: flex;
    flex: 1 1 auto;
}

.team-carousel .slick-track .team-card {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Slick track’i flex row gibi yap */
.blog-carousel .slick-track {
    display: flex !important;
    align-items: stretch;
    /* tüm slide’lar eşit yükseklik alsın */
}

/* Her slide da flex item olsun */
.blog-carousel .slick-track .slick-slide {
    display: flex;
    height: auto;
    /* slick bazen height veriyor, sıfırla */
}

/* Kart tam esnesin */
.blog-carousel .slick-track .slick-slide>div {
    display: flex;
    flex: 1 1 auto;
}

.blog-carousel .slick-track .blog-card {
    display: flex;
    flex-direction: column;
    width: 100%;
}


.blog-card .card-title {
    font-size: 22px;
    margin-bottom: 1rem;
    max-width: 250px;
}

.section-title {
    font-size: 48px;
}

.about-bg .about-content h2 {
    font-size: 48px;
}


.call-to-action-item__icon img {
    min-width: 50px;
}

.editor-content p {
    color: var(--color-text-tertiary);
}

.editor-content h1 {
    font-family: var(--font-family-heading);
    font-size: 36px;
    /* daha kompakt */
    margin: 0 0 18px 0;
}

.editor-content h2 {
    font-family: var(--font-family-heading);
    font-size: 30px;
    margin: 0 0 16px 0;
}

.editor-content h3 {
    font-family: var(--font-family-heading);
    font-size: 26px;
    margin: 0 0 14px 0;
}

.editor-content h4 {
    font-family: var(--font-family-heading);
    font-size: 22px;
    margin: 0 0 12px 0;
}

.editor-content h5 {
    font-family: var(--font-family-heading);
    font-size: 20px;
    margin: 0 0 10px 0;
}

.editor-content h6 {
    font-family: var(--font-family-heading);
    font-size: 18px;
    margin: 0 0 8px 0;
}


.editor-content ul {
    margin: 20px 0 20px 0px;
    padding-left: 0px;
}

.editor-content li {
    margin-bottom: 10px;
    display: block;
    font-size: 15px;
    line-height: 1.5;
    gap: 5px;
}

.editor-content li::before {


    background-image: url("./../../assets/img/media/check-mark.png");
    background-size: 16px 16px;
    display: inline-block;
    width: 16px;
    height: 16px;
    min-width: 16px;
    content: "";
    margin-right: 8px;
    position: relative;
    top: 3px;

}




.row.equal-cards {
    display: flex;
    flex-wrap: wrap;
}

.row.equal-cards>[class*="col-"] {
    display: flex;
}

.row.equal-cards .card {
    flex: 1 1 auto;
    /* kartı esnet */
}







/* Team Detail Sayfası */


.team-content-area .image {
    position: sticky;
    border: 1px solid var(--color-border-tertiary);
    border-radius: .8rem;
    overflow: hidden;
    background: var(--color-white-pure);
    box-shadow: 0 6px 14px var(--color-black-transparent-005);
    transition: box-shadow .3s ease, border-color .3s ease;
}

.team-content-area .image:hover {
    box-shadow: 0 12px 28px var(--color-black-transparent-008);
    border-color: var(--color-brand-primary);
}

.team-content-area .image img {
    width: 100%;
    border-bottom: 4px solid var(--color-brand-primary);
    object-fit: cover;
}

.team-content-area .infos {
    padding: 20px;
    text-align: center;
}

.team-content-area .infos .name {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.team-content-area .infos .title {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-brand-primary);
    margin-bottom: 16px;
}

.team-content-area .infos .contacts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.team-content-area .infos .contact-icon {
    width: 40px;
    height: 40px;
    background: var(--color-brand-primary);
    color: var(--color-white-pure);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    font-size: 15px;
}

.team-content-area .infos .contact-icon:hover {
    background: var(--color-white-pure);
    color: var(--color-dark);
    border: 1px solid var(--color-brand-primary);
    transform: translateY(-3px);
}

/* Gallery Tabs */
.gallery-tabs {
    margin: 0px 0px 60px 0;
}

.gallery-tabs ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.gallery-tabs ul li {
    margin: 0;
}

.gallery-tabs ul li a {
    display: inline-block;
    padding: 10px 18px;
    font-weight: 600;
    font-size: 15px;
    color: var(--color-dark);
    text-decoration: none;
    border: 1px solid var(--color-border-tertiary);
    border-radius: .6rem;
    background: var(--color-white-pure);
    transition: all .3s ease;
}

.gallery-tabs ul li a:hover {
    background: var(--color-bg-secondary);
    border-color: var(--color-border-senary);
    color: var(--color-brand-primary);
}

/* Aktif Tab */
.gallery-tabs ul li a.active {
    background: var(--color-brand-primary);
    border-color: var(--color-brand-primary);
    color: var(--color-white-pure);
    box-shadow: 0 4px 10px var(--color-black-transparent-008);
}


.page-item.active .page-link {
    background-color: var(--color-brand-primary);
    border-color: var(--color-brand-primary);
}

.pagination--2 li a {
    line-height: 32px;
    border-radius: .6rem;
}


/* Accordion Genel */
.common-accordion .accordion-item {
    border: 1px solid var(--color-border-tertiary);
    border-radius: .8rem;
    margin-bottom: 15px;
    overflow: hidden;
    transition: box-shadow .3s ease, border-color .3s ease;
}

.common-accordion .accordion-item:hover {
    box-shadow: 0 6px 18px var(--color-black-transparent-006);
    border-color: var(--color-brand-primary);
}

/* Header Button */
.common-accordion .accordion-button {
    font-weight: 600;
    font-size: 16px;
    color: var(--color-dark);
    background: var(--color-white-pure);
    border: none;
    box-shadow: none;
    padding: 24px 20px 14px 20px;
    transition: all .3s ease;
}

.common-accordion .accordion-button:hover {
    background: var(--color-bg-secondary);
    color: var(--color-brand-primary);
}

/* Açıkken aktif stil */
.common-accordion .accordion-button:not(.collapsed) {
    background: var(--color-brand-primary);
    color: var(--color-white-pure);
    box-shadow: none;
}

/* İkonlar (Bootstrap default caret) */
.common-accordion .accordion-button::after {
    filter: invert(40%) sepia(90%) saturate(500%) hue-rotate(10deg);
    transition: transform .3s ease;
}

.common-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
    /* açıkken beyaz ikon */
    transform: rotate(180deg);
}

/* Body */
.common-accordion .accordion-body {
    padding: 18px 20px;
    background: var(--color-white-pure);
    font-size: 15px;
    color: var(--color-text-tertiary);
    line-height: 1.6;
}

/* Genel Sidebar */
.common-sidebar-wrapper {
    margin-top: 30px;
}

.common-sidebar {
    background: var(--color-white-pure);
    border: 1px solid var(--color-border-tertiary);
    border-radius: .8rem;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px var(--color-black-transparent-003);
}

.common-sidebar__title {
    font-size: 26px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 15px;
    border-bottom: 2px solid var(--color-brand-primary);
    padding-bottom: 16px;
    width: max-content;
}

/* 🔎 Search Box */
.search-box {
    position: relative;
    border: 1px solid var(--color-border-tertiary);
    border-radius: .6rem;
    overflow: hidden;
}

.search-box input.common-input {
    width: 100%;
    border: none;
    padding: 12px 40px 12px 14px;
    font-size: 14px;
    color: var(--color-dark);
}

.search-box input.common-input:focus {
    outline: none;
}

.search-box .icon {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--color-brand-primary);
    font-size: 16px;
    cursor: pointer;
}

/* 📂 Category List */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list__item {
    margin-bottom: 10px;
}

.category-list__link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-dark);
    text-decoration: none;
    font-size: 15px;
    padding: 10px 12px;
    border-radius: .6rem;
    border: 1px solid var(--color-border-tertiary);
    transition: all .3s ease;
}

.category-list__link:hover {
    background: var(--color-bg-secondary);
    border-color: var(--color-border-senary);
    color: var(--color-brand-primary);
}

.category-list__link.active {
    background: var(--color-brand-primary);
    border-color: var(--color-brand-primary);
    color: var(--color-white-pure);
    font-weight: 600;
}

/* 📰 Latest Blog */
.latest-blog {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    padding: 12px;
    border: 1px solid var(--color-border-quaternary);
    border-radius: .6rem;
}

.latest-blog:last-child {
    margin-bottom: 0;
}

.latest-blog__thumb {
    flex: 0 0 100px;
    border-radius: .6rem;
    overflow: hidden;
    box-shadow: var(--color-shadow-gray) 0px 7px 29px 0px;
}

.latest-blog__thumb img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    background-color: var(--color-white-pure);
    transition: transform .4s ease;
}

.latest-blog__thumb:hover img {
    transform: scale(1.08);
}

.latest-blog__content {
    flex: 1;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.latest-blog__category {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--color-text-tertiary);
    margin-bottom: 4px;
}

.latest-blog__category .icon {
    color: var(--color-brand-primary);
    font-size: 13px;
}

.latest-blog__title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.latest-blog__title a {
    color: var(--color-dark);
    text-decoration: none;
    transition: all .3s ease;
}

.latest-blog__title a:hover {
    color: var(--color-brand-primary);
}

/* Genel container */
.blog-keyword {
    flex-wrap: wrap;
    align-items: center;
    border-top: 1px solid var(--color-border-quaternary);
    border-bottom: 1px solid var(--color-border-quaternary);
    padding: 12px 0;
    margin: 20px 0;
    display: flex;
    justify-content: space-between;
}

/* Kategori kısmı */
.blog-keyword__text {
    font-size: 14px;
    color: var(--color-dark);
    margin-right: 6px;
}

.blog-keyword__link {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-brand-primary);
    text-decoration: none;
    transition: all .3s ease;
}

.blog-keyword__link:hover {
    color: var(--color-dark);
    text-decoration: underline;
}

/* Sosyal paylaşım butonları */
.social-list {
    display: flex;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.social-list__link {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white-pure);
    transition: all .3s ease;
}

/* Özel renkler */
.text-facebook {
    background: var(--color-social-facebook);
}

.text-twitter {
    background: var(--color-social-twitter);
}

.text-linkedin {
    background: var(--color-social-linkedin);
}

.text-whatsapp {
    background: var(--color-social-whatsapp);
}

.social-list__link:hover {
    transform: translateY(-3px);
    opacity: 0.9;
    color: var(--color-white-pure);
}

/* Tarih listesi */
.text-list {
    list-style: none;
    margin: 10px 0 0 0;
    padding: 0;
    display: flex;
    gap: 10px;
}

.text-list__item {
    font-size: 14px;
    color: var(--color-text-tertiary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.text-list__item .icon {
    color: var(--color-brand-primary);
    font-size: 14px;
}

.text-list__item .link {
    color: var(--color-dark);
    text-decoration: none;
    transition: all .3s ease;
}

.text-list__item .link:hover {
    color: var(--color-brand-primary);
    text-decoration: underline;
}


/* Form Alanı Genel */
.form-area {
    margin-top: 60px;
}

.form-area .custom-form {
    background: var(--color-white-pure);
    border: 4px solid var(--color-brand-primary);
    border-radius: .8rem;
    padding: 40px 40px;
    box-shadow: 0 4px 12px var(--color-black-transparent-003);
}

/* Label */
.form-area .form-label {
    font-weight: 600;
    font-size: 14px;
    color: var(--color-dark);
    margin-bottom: 6px;
}

/* Input, Textarea, File */
.form-area .form-control {

    border-radius: .6rem;
    padding: 6px 12px;
    font-size: 14px;
    color: var(--color-dark);
    transition: all .3s ease;
    box-shadow: none;
}

.form-area .form-control:focus {
    border-color: var(--color-brand-primary);
    box-shadow: 0 0 0 0.2rem var(--color-brand-transparent-025);
}

.form-area textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* File Input özel */
.form-area input[type="file"].form-control {
    padding: 6px 12px;
    font-size: 14px;
    cursor: pointer;
}

/* reCAPTCHA / Consent wrapper */
.form-area .my-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}



/* 🔍 Search Sidebar */
.search-sidebar {
    background: var(--color-white-pure);
    border: 1px solid var(--color-border-tertiary);
    border-radius: .8rem;
    padding: 25px 20px;
    box-shadow: 0 4px 12px var(--color-black-transparent-005);
}

.search-sidebar__item {
    margin-bottom: 25px;
}

.search-sidebar__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
    border-bottom: 2px solid var(--color-brand-primary);
    width: max-content;
    padding-bottom: 6px;
}

/* Inputlar */
.search-sidebar .form-control {
    border: 1px solid var(--color-border-tertiary);
    border-radius: .6rem;
    font-size: 14px;
    padding: 10px 12px;
    transition: all .2s ease;
}

.search-sidebar .form-control:focus {
    border-color: var(--color-brand-primary);
    box-shadow: 0 0 0 0.2rem var(--color-brand-transparent-025);
}

.search-sidebar .form-group {
    margin-bottom: 10px;
}

/* Checkbox alanı */
.common-check {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.common-check input[type="checkbox"] {
    accent-color: var(--color-brand-primary);
    /* modern browserlar için */
    margin-right: 8px;
    /* transform: scale(1.1); */
    cursor: pointer;
    margin-top: 0;
}

.common-check label {
    font-size: 14px;
    color: var(--color-dark);
    cursor: pointer;
    transition: color .2s ease;
}

.common-check input:checked+label {
    color: var(--color-brand-primary);
    font-weight: 600;
}

/* Filtreleme butonu */
.filter-btn-area {
    text-align: center;
    margin-top: 30px;
}



/* Temizle linki */
.temizle-btn {
    display: inline-block;
    margin-top: 0;
    font-size: 14px;
    color: var(--color-error);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dashed var(--color-error);
    transition: all .2s ease;
    text-align: center;
    width: max-content;
    margin: auto;
    display: block;
}

.temizle-btn:hover {
    color: var(--color-brand-primary);
    border-color: var(--color-brand-primary);
}

/* 📊 Top Sidebar */
.top-sidebar {
    background: var(--color-white-pure);
    border: 1px solid var(--color-border-tertiary);
    border-radius: .8rem;
    padding: 15px 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px var(--color-black-transparent-003);
}

.top-sidebar .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* Sol taraftaki sonuç sayısı */
.top-sidebar .result-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-dark);
}

.top-sidebar .result-text span {
    color: var(--color-brand-primary);
    font-weight: 800;
    font-size: 16px;
}

/* Sağ taraftaki select alanları */
.filter-selects-top {
    display: flex;
    gap: 15px;
}

.filter-selects-top .form-group {
    margin: 0;
}

.filter-selects-top label {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-tertiary);
    margin-bottom: 4px;
    display: block;
}

.filter-selects-top .form-control {
    border: 1px solid var(--color-border-tertiary);
    border-radius: .6rem;
    font-size: 14px;
    padding: 8px 12px;
    transition: all .2s ease;
    min-width: 130px;
}

.filter-selects-top .form-control:focus {
    border-color: var(--color-brand-primary);
    box-shadow: 0 0 0 0.2rem var(--color-brand-transparent-025);
}

/* Hover’da select kutusu */
.filter-selects-top .form-control:hover {
    border-color: var(--color-border-senary);
}

.search-sidebar .filter-btn-area.make-float {
    position: sticky;
    bottom: 30px;
    padding: 10px;
    border-radius: 5px;
    background: var(--color-border-primary)cc;
    box-shadow: var(--color-shadow-gray) 0px 7px 29px 0px;
}

.search-sidebar .search-sidebar__item {
    max-height: 150px;
    overflow-y: auto;
}

.search-sidebar .search-sidebar__item.no-flow {
    max-height: unset;
    overflow-y: unset;
}

.top-sidebar .search-sidebar__item {
    margin-bottom: 0px;
}



/* 📇 Contact Card */
.contact-card {
    background: var(--color-white-pure);
    border: 1px solid var(--color-border-tertiary);
    border-radius: .8rem;
    padding: 25px 20px;
    text-align: center;
    transition: all .3s ease;
    box-shadow: 0 4px 12px var(--color-black-transparent-003);
    height: 100%;
}

.contact-card:hover {
    box-shadow: 0 12px 28px var(--color-black-transparent-008);
    border-color: var(--color-brand-primary);
    transform: translateY(-2px);
}

/* Icon */
.contact-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-brand-primary);
    color: var(--color-white-pure);
    font-size: 22px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px var(--color-brand-transparent-04);
}

/* Text */
.contact-card__text {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 8px;
    word-break: break-word;
}

.contact-card__text .link {
    color: var(--color-dark);
    text-decoration: none;
    border-bottom: 2px solid var(--color-brand-primary);
    transition: all .3s ease;
}

.contact-card__text .link:hover {
    color: var(--color-brand-primary);
    border-color: var(--color-brand-primary);
}

/* 📍 Harita */
.contact-map {
    margin-top: 40px;
    /* border-radius: .8rem; */
    overflow: hidden;
    border: 1px solid var(--color-border-tertiary);
    box-shadow: 0 6px 18px var(--color-black-transparent-006);
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border: 0;
}




@media (min-width:992px) {
    .lang-change ul {
        width: max-content !important;
        margin-top: 30px !important;
    }


    .has-submenu.lang-change>a {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        border: 1px solid var(--color-border-senary);
        border-radius: 4px;
        padding: 6px 12px;
        font-weight: 600;
        background: var(--color-white-pure);
        transition: all 0.3s ease;
    }

    .has-submenu.lang-change>a:hover {
        background: var(--color-bg-secondary);
        border-color: var(--color-text-secondary);
    }

    /* Alt menü */



    body {
        overflow-x: hidden;
    }

    .main-menu {
        align-items: center;
    }

    .common-sidebar-wrapper {
        margin-top: 0px;
    }
}

@media (max-width:991.98px) {
    .has-submenu>a i.fa-angle-down {
        display: none;
    }

    .home-slider .slider-slide-item {
        height: calc(100vh - 73px);
        margin-top: 73px;
    }

    .page-header-wrap {
        margin-top: 89px;
    }

    .team-content-area .infos {
        padding: 15px;
    }

    .team-content-area .infos .name {
        font-size: 24px;
    }

    .team-content-area .infos .title {
        font-size: 16px;
    }

    .team-content-area .image {
        margin-bottom: 60px;
    }



}

@media (max-width:767.98px) {
    .set-gap-hwu {
        gap: 60px;
    }

    .gallery-tabs ul {
        gap: 10px;
    }

    .gallery-tabs ul li a {
        padding: 8px 14px;
        font-size: 14px;
    }


    .common-accordion .accordion-button {
        font-size: 15px;
        padding: 18px 16px 12px 16px;
    }

    .common-accordion .accordion-body {
        font-size: 14px;
        padding: 14px 16px;
    }



    .common-sidebar {
        padding: 15px;
    }

    .latest-blog {
        flex-direction: column;
    }

    .latest-blog__thumb {
        width: 100%;
        
    }


    .blog-keyword {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .social-list {
        margin-top: 5px;
    }

    .text-list {
        justify-content: flex-start !important;
    }

    .form-area .custom-form {
        padding: 20px 15px;
    }

    .form-area .btn-main {
        width: 100%;
        text-align: center;
    }

    .search-sidebar {
        padding: 20px 15px;
    }

    .search-sidebar__title {
        font-size: 16px;
    }

    .top-sidebar .inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .filter-selects-top {
        width: 100%;
        justify-content: space-between;
    }

    .filter-selects-top .form-control {
        width: 100%;
    }

    .contact-card {
        padding: 20px 15px;
    }

    .contact-map iframe {
        height: 300px;
    }
}

@media (max-width:575.98px) {
    .slider-area-wrapper.services-carousel .slick-dots {
        bottom: -40px;
        left: 50%;
        transform: translateX(-50%);
        width: 300px;
        text-align: center;
    }

    .slider-area-wrapper.services-carousel .slick-dots li {
        background-color: var(--color-border-octonary);
    }

    .slider-area-wrapper.services-carousel .slick-dots li.slick-active {
        background-color: var(--color-brand-primary);
    }

    .slider-area-wrapper.listings-carousel .slick-dots {
        bottom: -40px;
        left: 50%;
        transform: translateX(-50%);
        width: 300px;
        text-align: center;
    }

    .slider-area-wrapper.listings-carousel .slick-dots li {
        background-color: var(--color-border-octonary);
    }

    .slider-area-wrapper.listings-carousel .slick-dots li.slick-active {
        background-color: var(--color-brand-primary);
    }

    .slider-area-wrapper.team-carousel .slick-dots {
        bottom: -40px;
        left: 50%;
        transform: translateX(-50%);
        width: 300px;
        text-align: center;
    }

    .slider-area-wrapper.team-carousel .slick-dots li {
        background-color: var(--color-border-octonary);
    }

    .slider-area-wrapper.team-carousel .slick-dots li.slick-active {
        background-color: var(--color-brand-primary);
    }

    .slider-area-wrapper.blog-carousel .slick-dots {
        bottom: -40px;
        left: 50%;
        transform: translateX(-50%);
        width: 300px;
        text-align: center;
    }

    .slider-area-wrapper.blog-carousel .slick-dots li {
        background-color: var(--color-border-octonary);
    }

    .slider-area-wrapper.blog-carousel .slick-dots li.slick-active {
        background-color: var(--color-brand-primary);
    }

    #services .btn-brand {
        margin-top: 20px;
    }

    #listings .btn-brand {
        margin-top: 20px;
    }

    #team .btn-brand {
        margin-top: 20px;
    }

    #blog .btn-brand {
        margin-top: 20px;
    }

    .site-logo {
        margin-bottom: 0;
    }

    .section-title {
        font-size: 40px;
    }

    .about-bg .about-content h2 {
        font-size: 40px;
    }
}