@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

/*=====Reset CSS======*/

article,
aside,
canvas,
figure,
figcaption,
footer,
header,
nav,
section,
audio,
video,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
label {
  margin: 0;
  padding: 0;
  border: 0;
}

a,
button,
input,
input[type="button"],
input[type="submit"],
select,
.btn,
textarea {
  -webkit-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
  text-decoration: none;
  font-style: normal;
}

a:focus,
button:focus,
input[type="button"]:focus,
input[type="submit"]:focus,
select:focus,
.btn:focus,
textarea:focus,
.bootstrap-select .dropdown-toggle:focus {
  outline: none !important;
  -webkit-box-shadow: none;
  box-shadow: none !important;
}

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

a,
label {
  display: inline-block;
  vertical-align: middle;
  vertical-align: 0;
}

figure {
  -webkit-transition: all ease 0.4s;
  -o-transition: all ease 0.4s;
  transition: all ease 0.4s;
  margin: 0;
  font-size: 0;
  line-height: 100%;
}

figure,
img {
  max-width: 100%;
}

ul,
ol {
  list-style: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}


/* Firefox */

input[type=number] {
  -moz-appearance: textfield;
}



.svg_container {
  display: none;
}

.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  width: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 30px;
  color: var(--body_clr);
  background: var(--background_clr);
  font-family: var(--body_font);
  overflow-x: hidden;
  font-size: 20px;
}


::-webkit-scrollbar-thumb {
  background: var(--btn_clr);
  border-radius: 0px;
}

::-webkit-scrollbar {
  background: var(--white_clr);
  width: 7px;
}

::-moz-selection {
  background-color: var(--btn_clr);
  color: var(--white_clr);
}

::selection {
  background-color: var(--btn_clr);
  color: var(--white_clr);
}

/* Reset-css--------------- */

:root {
  --black_clr: #000;
  --white_clr: #fff;
  --hdng_clr: #1E1E1E;
  --body_clr: #595959;
  --btn_clr: #0B4732;
  --background_clr: #FFF;
  --ivory_light: #FBF6EC;
  --hdng_font: 'Olivera';
  --body_font: "Manrope", sans-serif;
  --transition: 0.4s all ease-in-out
}

/* Global Headings */

.container {
  max-width: 1800px;
}

.custom_pad {
  padding: 90px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--hdng_font);
  color: var(--hdng_clr);
}

h1 {
  font-size: 100px;
  line-height: 1;
  text-transform: capitalize;
}

h1 span {
  font-family: var(--body_font);
  font-size: 40px;
  font-weight: 200;
  display: block;
  text-underline-offset: 4px;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  padding-bottom: 10px;
}

p {
  margin-bottom: 15px;
}


h2 {
  font-size: 100px;
  line-height: 1;
  text-transform: capitalize;
  transition: var(--transition);
}

h2 span {
  font-family: var(--body_font);
  font-size: 60px;
  font-weight: 200;
  display: block;
  text-underline-offset: 4px;
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

h3 {
  font-size: 48px;
  line-height: 1;
}


h4 {}

h5 {}

h6 {}



a {
  transition: var(--transition);
}

section {
  position: relative;
}

/* Global Headings */


/* Header Start ---------------*/

.sticky_hdr .header {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  padding: 6px 0;
  background-color: #f0ece8;


}

/* sticky */


.hdrmobile_logo {
  display: none;
}

.menu-link-wrapper {
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: none;
}

.line {
  background: var(--white_clr);
  width: 30px;
  height: 3px;
  display: block;
  margin: 3px 0;
}


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

.navlink {
  font-weight: 500;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  color: var(--hdng_clr);
  padding: 6px 20px;
}


.navlist .navlink::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--btn_clr);
  transform: scale(0);
  transition: var(--transition);
  z-index: -1;
}

.navlist .navlink:hover::before {
  transform: scale(1);
}

.navlist .navlink:hover {
  color: var(--white_clr);
}

.navitem {
  position: relative;
  padding: 0 10px;
}

.navlist {
  display: flex;
  align-items: center;
  padding: 15px 10px;
}

.header {
  position: fixed;
  width: 100%;
  z-index: 4;
  top: 0;
  transition: var(--transition);
  padding: 18px 0 10px 0;
  background: transparent;
  margin-top: 0;
}

.header_logo a {
  max-width: 90px;
}

.header_icon ul {
  display: flex;
  align-items: center;
  column-gap: 25px;
}

.header_logo {
  width: 150px;
}

/* Scroll-up */
.nav-up {
  top: -120px;
}


/* Header End----------- */

.rituu_hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero_bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

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

.rituu_hero_wrpr {
  max-width: 45%;
  margin-left: auto;
}

.blue_btn {
  background: var(--btn_clr);
  color: var(--white_clr);
  padding: 17px 32px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.blue_btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: all 0.5s ease;
}

.blue_btn:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* shine move */
.blue_btn:hover::before {
  left: 100%;
}

.white_btn {
  background: transparent;
  color: var(--btn_clr);
  border: 1px solid var(--btn_clr);
}

.white_btn::before {
  background: linear-gradient(120deg, transparent, rgb(32, 36, 72, 0.4), transparent);
}

.white_btn:hover {
  color: var(--btn_clr);
}

.btnn_wrp {
  display: flex;
  column-gap: 20px;
  margin-top: 20px;
}

.rituu_hero_wrpr h1 {
  margin-bottom: 10px;
}

.sharp_edge {
  margin: 10px;
}

.sticky_hdr .header_logo a {
  /* max-width: 50px; */
}

.global_hdng.center_hdng {
  text-align: center;
}

.global_hdng {
  margin-bottom: 30px;
}

.home_cat_card h4 {
  font-family: var(--body_font);
  font-weight: 500;
  background: #fff;
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  text-transform: uppercase;
  font-size: 20px;
  text-align: center;
  padding: 15px 5px;
  z-index: 1;
}

.home_cat_card {
  position: relative;
}

.row:has(.home_cat_card) {
  row-gap: 25px;
}

.card_hver {
  position: relative;
  overflow: hidden;
}

.card_hver::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgb(0, 0, 0, 0.15);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.card_hver:hover::after {
  opacity: 1;
}

.card_hver:hover .image img {
  transform: scale(1.06);
}


.card_hver .image img {
  transition: var(--transition);
}

.home_cat_text {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: center;
  max-width: 470px;
  text-align: center;
  margin-inline: auto;
  text-transform: capitalize;
}

.leather_wrokshop .btnn_wrp {
  column-gap: 60px;
  align-items: end;
}

.leather_wrkshop_left {
  padding-right: 150px;
}

.leather_wrkshop_left li {
  text-transform: capitalize;
  padding-left: 30px;
  position: relative;
}

.leather_wrkshop_left li::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 1px;
  background: var(--body_clr);
  left: 0;
  top: 14px;
}

.leather_wrkshop_left li+li {
  margin-top: 15px;
}

.leather_listing {
  margin: 40px 0 30px;
}

.signature_wrp h5 {
  font-family: var(--body_font);
  font-size: 24px;
  color: var(--body_clr);
}

.signature_wrp h6 {
  font-family: var(--body_font);
  font-size: 16px;
  color: var(--body_clr);
}

.signature_wrp>*:not(:first-child) {
  margin-top: 7px;
}

.leather_wrkshp_right .image {
  margin-right: -210px;
}

.leather_wrokshop {
  overflow: hidden;
}

.workshop_stamp {
  position: absolute;
  top: 20px;
  left: -30px;
}

.leather_wrkshp_right {
  position: relative;
}

.globl_buyers_left .single_card {
  background: var(--ivory_light);
  padding: 20px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 25px;
}

.globl_buyers_left .single_card h3 {
  line-height: 1;
  text-transform: capitalize;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--body_clr);
}

.globl_buyers_left .single_card h3 span {
  font-family: var(--body_font);
  font-size: 28px;
  font-weight: 200;
  display: block;
}

.globl_buyers_left li+li {
  margin-top: 100px;
}

.globl_buyers_left .single_card p {
  margin-bottom: 0;
}

.globl_buyers_left .single_card p+p {
  margin-top: 10px;
}

.globl_buyers_mddl {
  background: var(--ivory_light);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 110px 50px 50px;
  margin: 0 100px;
  row-gap: 50px;
}

.global_buyers .global_hdng {
  margin-bottom: 10px;
}

.cta_card {
  position: relative;
  height: 750px;
}

.cta_card .contents {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 30px;
  z-index: 1;
}

.cta_card h4 {
  color: var(--white_clr);
  font-size: 28px;
  font-weight: 200;
  font-family: var(--body_font);
  margin-bottom: 8px;
}

.cta_card::after {
  content: '';
  position: absolute;
  background: linear-gradient(19.76deg, rgba(0, 0, 0, 0.55) 36.83%, rgba(0, 0, 0, 0) 58.22%);
  inset: 0;
  pointer-events: none;
  opacity: 1;
}

.cta_card h3 {
  margin-bottom: 10px;
  color: var(--white_clr);
}

.cta_card button {
  border: none;
}

.home_manufacture_left .global_hdng {
  margin-bottom: 20px;
}

.home_manufacture_left .blue_btn {
  margin-top: 20px;
}

.home_manufacture_right li {
  background: var(--ivory_light);
  padding: 35px 70px;
  max-width: 620px;
  margin-inline: auto;
  text-align: center;
  filter: blur(6px);
  transform: rotate(0deg);
  transition: transform 1s ease, filter 1s ease;
  will-change: transform, filter;
}

.home_manufacture_right li.active {
  filter: blur(0px);
  transform: rotate(-8deg);
}


.home_manufacture_right li.active:nth-child(even) {
  transform: rotate(4deg);
}

.home_manufacture_right li+li {
  margin-top: 90px;
}

.home_manufacture_right .icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
}

.home_manufacture_right .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.glbl_hdng_two h3 span {
  font-family: var(--body_font);
  font-weight: 200;
  font-size: 36px;
}

.glbl_hdng_two h3 {
  margin-bottom: 10px;
}

.home_manufacture_left {
  position: sticky;
  top: 200px;
  padding-top: 20px;
}

.home_manufacture_right {
  position: relative;
  padding: 50px 0;
}

.home_manufacture_right::after {
  content: '';
  position: absolute;
  background: var(--btn_clr);
  width: 1px;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -1;
}

.scissors_img {
  position: fixed;
  right: -70px;
  top: 25%;
  z-index: -1;
  opacity: 0;
  transform: rotate(15deg);
  transition: var(--transition);
}

.scissors_active .scissors_img {
  opacity: 1;
}

.scissors_active .scissors_img img {
  opacity: 0.5;
}

.p_label_right {
  margin-right: -360px;
  margin-left: 60px;
}

.private_label {
  overflow: hidden;
}

.p_label_left .hdng_wrp {
  padding-right: 260px;
}

.number {
  width: 120px;
  height: 120px;
  background: var(--ivory_light);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 70px;
  font-family: var(--hdng_font);
  color: var(--hdng_clr);
  font-weight: 600;
  letter-spacing: 4px;
  opacity: 0;
  transition: 1s all;
}

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

.p_label_listing li+li {
  margin-top: 30px;
}

.p_label_listing .contents {
  width: 40%;
  flex: 0 0 auto;
  position: relative;
}

.p_label_listing .contents::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  background: var(--body_clr);
  left: calc(100% + 45px);
  top: 0;
  bottom: 0;
  margin: auto;
  transition: 0.6s all;
}

.p_label_listing {
  margin: 40px 0;
}

.crtifictn_hdng_wrp {
  display: flex;
  justify-content: space-between;
  column-gap: 50px;
  margin-bottom: 25px;
}

.crtifictn_hdng_wrp .contents {
  max-width: 500px;
  text-align: right;
}

.crtfictn_card {
  background: var(--ivory_light);
  padding: 30px 20px;
  text-align: center;
  border: 1px solid var(--btn_clr);
  text-transform: capitalize;
  height: 100%;
}

.crtfictn_card .image {
  width: 120px;
  height: 150px;
  margin: 50px auto 0;
}

.crtfictn_card .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.rituu_certifications .row>*:nth-child(4n+2) .crtfictn_card {
  margin-top: 25px;
}

.rituu_certifications .row>*:nth-child(4n+3) .crtfictn_card {
  margin-top: 45px;
}

.rituu_certifications .row>*:nth-child(4n+4) .crtfictn_card {
  margin-top: 65px;
}

footer {
  position: relative;
  padding: 50px 0;
}

.footer_bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.footer_list li a {
  color: var(--white_clr);
  font-weight: 500;
  position: relative;
}

.footer_list li+li {
  margin-top: 20px;
}

.footer_contacts>* {
  color: var(--white_clr);
  font-weight: 500;
}

.footer_contacts {
  display: flex;
  flex-direction: column;
  padding-left: 50px;
}

.footer_contacts>*:not(:first-child) {
  margin-top: 20px;
}

footer p {
  margin-bottom: 0;
}

.footer_logo {
  max-width: 130px;
  margin-bottom: 20px;
}

.footer_right p {
  color: var(--white_clr);
  font-weight: 500;
}

.footer_form {
  background: var(--ivory_light);
  padding: 25px;
  margin-top: 30px;
}

.glbl_hdng_three h3 {
  font-family: var(--body_font);
  font-size: 28px;
  font-weight: 200;
}

.glbl_hdng_three h4 {
  font-size: 40px;
  line-height: 1;
}

.footer_forminput input,
.footer_forminput textarea {
  border: none;
  border-bottom: 1px solid var(--btn_clr);
  width: 100%;
  font-size: 17px;
  font-weight: 400;
  padding: 10px 0;
  background: var(--ivory_light);
}

.footer_forminput input:focus-visible {
  outline: none;
}

.footer_forminput textarea {
  resize: none;
}

.glbl_hdng_three {
  margin-bottom: 10px;
}

.form_submit input {
  background: var(--btn_clr);
  color: var(--white_clr);
  padding: 17px 32px;
  text-transform: uppercase;
  transition: var(--transition);
  border: 1px solid transparent;
  position: relative;
}

.form_submit input:hover {
  background: transparent;
  border-color: var(--btn_clr);
  color: var(--btn_clr);
}

.footer_form .row {
  row-gap: 10px;
}

footer .row+.row {
  margin-top: 50px;
}

.footer_bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 50px;
}

.footer_bottom p,
.footer_btm_right a {
  color: var(--white_clr);
  font-weight: 500;
  position: relative;
}

.footer_btm_right {
  display: flex;
  align-items: center;
  column-gap: 60px;
  flex-wrap: wrap;
  width: 612px;
  flex: 0 0 auto;
  justify-content: end;
  row-gap: 14px;
}

.footer_social {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 400px;
  flex: 0 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.footer_social a {
  width: 70px;
  height: 70px;
  background: var(--white_clr);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 30px;
  flex: 0 0 auto;
  color: var(--btn_clr);
  border: 2px solid var(--white_clr);
}

.footer_social a:hover {
  transform: rotate(10deg) scale(1.1);
  border-color: var(--btn_clr);
}

.header_icon a:hover {
  transform: rotate(10deg) scale(1.06);
}

.footer_btm_left {
  display: flex;
  align-items: center;
  width: 612px;
  flex: 0 0 auto;
}

.global_hdng b {
  font-weight: 100;
}

.cta_card>a {
  height: 100%;
  width: 100%;
}

.cta_card .image {
  height: 100%;
  width: 100%;
}

.globl_buyers_mddl .image {
  position: relative;
  overflow: hidden;
}

.globl_buyers_mddl .image::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(251, 246, 236, 0.5),
      transparent);
  transform: skewX(-25deg);
  transition: 0.8s ease;
}

.globl_buyers_mddl:hover .image::before {
  left: 120%;
}

.p_label_listing li.active .number {
  opacity: 1;
}

.p_label_listing li.active .contents::after {
  width: 330px;
}

.footer_contacts a:hover {
  opacity: 0.7;
}

.footer_list a::after,
.footer_btm_right a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: var(--white_clr);
  transition: var(--transition);
}

.footer_list a:hover::after,
.footer_btm_right a:hover:after {
  width: 100%;
}

.footer_right {
  padding-left: 50px;
}

.footer_contacts a {
  display: flex;
  align-items: center;
  column-gap: 12px;
}

.mobile_ftr_info .footer_right,
.row>*:has(.mobile_ftr_info) {
  display: none;
}

.home_cat_card>a {
  width: 100%;
  height: 100%;
}

.home_cat_text a {
  width: auto;
  height: auto;
}


/* About Page Start */

.inner_bnr {
  padding: 480px 0 70px;
}

.inr_bnr_wrp {
  max-width: 590px;
}

.inner_breadcrumb ul {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  row-gap: 5px;
}

.inner_breadcrumb ul li {
  position: relative;
}


.inner_breadcrumb ul li a {
  color: var(--body_font);
}

.inner_breadcrumb ul li a:hover {
  opacity: 0.7;
}

.inr_bnr_bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.inner_breadcrumb ul li:not(:last-child):after {
  content: '';
  position: absolute;
  background-color: var(--body_clr);
  width: 12px;
  height: 1px;
  right: -18px;
  top: 0;
  margin: auto;
  bottom: 0;
}

.about_crafting_left .blue_btn {
  margin-top: 10px;
}

.about_crafting_left .image_wrap {
  display: flex;
  column-gap: 85px;
  margin-top: 30px;
  flex-grow: 1;
}

.about_crafting_left .image_wrap .image {
  max-width: 736px;
}

.about_crafting_right {
  height: 100%;
}

.about_crafting_left {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
}

.abt_wrkshp_img {
  position: relative;
  top: unset;
  left: unset;
  display: flex;
  align-items: center;

}

.bg_ash {
  background: var(--ivory_light);
}

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

.abt_countr_card h2 span {
  font-size: 35px;
}

.abt_countr_card {
  text-align: center;
}

.about_journey_right {
  margin-left: 10px;
  padding-left: 60px;
  border-left: 1px solid #D9D9D9;
}

.text_down {
  text-align: center;
}

.text_down h3 span {
  font-size: 28px;
  display: block;
}

.text_down h3 {
  line-height: 1.2;
}

.about_journey_right .row {
  row-gap: 25px;
}

.jrny_year {
  color: var(--black_clr);
  font-size: 23px;
  position: absolute;
  top: 8px;
  left: -48px;
  padding: 5px 50px;
  background: var(--background_clr);
  transform: rotate(-43deg);
}

.journey_card .image {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.journey_card.card_hver::after {
  display: none;
}

.foundation_card {
  display: flex;
  justify-content: space-between;
  position: relative;
  height: 100%;
}

.foundation_card .image {
  width: 55%;
  flex: 0 0 auto;
}

.foundation_card .contents {
  width: 43%;
  flex: 0 0 auto;
}

.row:has(.foundation_card) {
  row-gap: 25px;
}

.about_foundation .row>*:nth-child(even) .foundation_card::after {
  content: '';
  position: absolute;
  width: 1px;
  top: 0;
  bottom: 0;
  left: -13px;
  background: #D9D9D9;
}

.foundation_card h3 {
  margin-bottom: 25px;
}

.journey_card h3 {
  margin-bottom: 0;
}

.ltr_marquee li .image,
.rtl_marquee li .image {
  background: var(--ivory_light);
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.ltr_marquee li,
.rtl_marquee li {
  /* height: auto; */
  background: var(--ivory_light);
  padding: 10px 25px;
}

.ltr_marquee ul {
  display: flex;
  justify-content: center;
  gap: 15px 25px;
  flex-wrap: wrap;
}

.ltr_marquee .slick-track,
.rtl_marquee .slick-track {
  display: flex;
  column-gap: 25px;
}

.rtl_marquee .slick-slider {
  direction: rtl;
}

.rtl_marquee {
  margin-top: 25px;
}

.brands_slider_group li .image img {
  max-width: 183px;
}

/* About Page End */

/* Products Page Start */
.products_bags_group ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 16px;
}

.products_bags_group ul li {
  width: 33.33%;
  flex: 0 0 auto;
  padding: 0 8px;
}

.products_single {
  position: relative;
  width: 100%;
  height: 100%;
}

.products_single .contents {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 1;
}

.products_single h3 {
  color: var(--white_clr);
  font-size: 35px;
}

.products_single::after {
  background: linear-gradient(360deg, rgba(0, 0, 0, 0.55) 10.83%, rgba(0, 0, 0, 0) 58.22%);
  opacity: 1;
}

.products_main_left {
  padding-right: 20px;
  position: sticky;
  top: 130px;
}

.products_main_left h2 {
  font-size: 70px;
}

.products_main_left h2 span {
  font-size: 35px;
}

.products_main_left li a {
  background: var(--ivory_light);
  width: 100%;
  text-align: center;
  padding: 10px;
  color: var(--hdng_clr);
  text-transform: uppercase;
  font-weight: 500;
  font-size: 20px;
}

.products_main_left li a:hover {
  background: var(--btn_clr);
  color: var(--white_clr);
}

.products_main_left ul li+li {
  margin-top: 15px;
}

.products_main_left li.active a {
  background: var(--btn_clr);
  color: var(--white_clr);
}

.products_main .container {
  padding-top: 20px;
  border-top: 1px solid #939393;
  padding-bottom: 20px;
  border-bottom: 1px solid #939393;
}

.products_bags_group {
  position: relative;
  height: 100%;
}

.products_bags_group::after {
  content: '';
  position: absolute;
  background: #939393;
  top: -20px;
  bottom: 0;
  left: -20px;
  width: 1px;
  height: calc(100% + 40px);
}


.radio {
  margin-top: 14px;
  display: flex;
  column-gap: 30px;
}

.radio label input {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  opacity: 0;
  cursor: pointer;
  height: auto;
}

.radio label {
  position: relative;
  padding-left: 28px;
}

.chk-rdo {
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0px;
  bottom: 0;
  top: 0;
  margin: auto;
  border-radius: 50px;
  border: 1px solid #e2e2e2;
  transition: 0.4s all;
  z-index: -1;
}

.chk-rdo::after {
  position: absolute;
  content: '';
  background: #fff;
  width: 8px;
  height: 8px;
  border-radius: 50px;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  display: none;
}

.radio input:checked~.chk-rdo {
  background: var(--hdng_clr);
  border-color: var(--hdng_clr);
}

.radio input:checked~.chk-rdo::after {
  display: block;
}

.prdct_inputcard label {
  display: inline-block;
  margin-bottom: 10px;
}

.prdct_inputcard input,
.prdct_inputcard select,
.prdct_inputcard textarea {
  border: 1px solid #e2e2e2;
  width: 100%;
  padding: 15px 25px;
  background: var(--ivory_light);
  height: 62px;
}

.prdct_inputcard textarea {
  resize: none;
  height: 150px;
}

.prdct_inputcard select {
  cursor: pointer;
  font-size: 18px;
  padding-right: 40px !important;
}

.prdct_inputcard input:focus-visible,
.prdct_inputcard select:focus,
.prdct_inputcard textarea:focus {
  border-color: var(--hdng_clr);
  outline: none;
}

.products_form .row {
  row-gap: 25px;
}

select {
  -webkit-appearance: none;
  margin: 0;
  -moz-appearance: textfield;
}

div:has(> select) {
  position: relative;
}

div:has(> select)::after {
  position: absolute;
  content: "\f107";
  font-family: "fontawesome";
  right: 20px;
  top: 60px;
}

input[type=submit] {
  background: var(--btn_clr);
  color: var(--white_clr);
  padding: 17px 32px;
  text-transform: uppercase;
  transition: var(--transition);
  width: fit-content;
  height: auto !important;
  margin-inline: auto;
  border: 1px solid transparent;
  transition: var(--transition);
}

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

div:has(> input[type=submit]) {
  text-align: center;
}

/* Products Page End */

/* Contact Page start */

.build_tgthr_right h2 {
  font-size: 65px;
  margin-bottom: 25px;
}

.build_tgthr_right div:has(> input[type=submit]) {
  text-align: left;
}

.build_tgthr_left li {
  background: var(--ivory_light);
  padding: 35px;
}

.build_tgthr_left li+li {
  margin-top: 25px;
}

.build_tgthr_left h3 {
  border-bottom: 1px solid #939393;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

.build_tgthr_left li a {
  color: var(--body_clr);
}

.build_tgthr_left li a:hover {
  color: var(--hdng_clr);
}

.build_tgthr_left {
  position: sticky;
  top: 130px;
}

iframe {
  width: 100%;
}

.contact_faq_acrdn .accordion-button {
  font-size: 30px;
}

.contact_faq_acrdn .accordion-item {
  background: var(--ivory_light);
  border: 1px solid #E2E2E2;
  border-top: 1px solid #E2E2E2;
  border-radius: 0;
}

.contact_faq_acrdn .accordion-button {
  background: transparent;
  column-gap: 10px;
}

.accordion-button:not(.collapsed) {
  color: var(--hdng_clr);
  box-shadow: none;
}

.contact_faq_acrdn .accordion-item+.accordion-item {
  margin-top: 20px;
}

.contact_faq_acrdn .accordion-body {
  padding-top: 0;
  font-weight: 300;
}

.logo_mobile {
  display: none;
}

/* Contact Page End */


/* Products Tab Fancybox Start */

.products_main_left .nav-pills .nav-link {
  border-radius: 0;
  background: var(--ivory_light);
  width: 100%;
  text-align: center;
  padding: 10px;
  color: var(--hdng_clr);
  text-transform: uppercase;
  font-weight: 500;
  font-size: 20px;
  transition: var(--transition);
}

.products_main_left .nav-pills button+button {
  margin-top: 15px;
}

.products_main_left .nav-link.active {
  background: var(--btn_clr);
  color: var(--white_clr);
}

.products_main_left .nav-pills .nav-link:hover {
  background: var(--btn_clr);
  color: var(--white_clr);
}

.products_main_right,
.products_main_right .tab-content,
.products_main_right .tab-pane {
  height: 100%;
}

.products_single .image {
  width: 100%;
  height: 100%;
}

.navlist .navlink.active {
  color: var(--white_clr);
  background: var(--btn_clr);
}

.wpcf7-spinner {
  position: absolute;
  right: -60px;
  top: 14px;
}

.form_submit p {
  width: auto;
  position: relative;
  display: inline-block;
}

.prdct_inputcard.radio_btn input[type="radio"] {
  accent-color: var(--hdng_clr);
  width: 20px;
  height: 20px;
  cursor: pointer;
}


.prdct_inputcard.radio_btn label {
  display: flex;
  align-items: center;
  column-gap: 8px;
  cursor: pointer;
}

.prdct_inputcard.radio_btn .wpcf7-list-item {
  margin: 0;
  cursor: pointer;
}

.prdct_inputcard.radio_btn .wpcf7-radio {
  display: flex;
  column-gap: 16px;
}

.wpcf7-not-valid-tip {
  font-size: 14px;
  line-height: 1;
  margin-top: 5px;
}


.wpcf7 form .wpcf7-response-output {
  font-size: 14px;
  line-height: 1.2;
  margin: 10px 0;
}

.error-content {
  text-align: center;
}

.error-content h2 {
  font-size: 300px;
  color: #a85d30;
}

.high_404 {
  margin-top: 100px;
}

.products_enquiry {
  overflow: hidden;
}

/* Products Tab Fancybox End */


/* Blog Page Start */

.blog-categories-single .image {
  margin-bottom: 20px;
}

.blog-categories-single {
  text-align: center;
  display: block;
  border-radius: 8px;
}

.blog-categories-single h4 {
  font-size: 34px;
}

.blog-categories-wrap li {
  padding: 0 10px;
}

/* Blog Page End */


/* Blog Details Start */

.single-blog-details-group .breadcrumb-item,
.single-blog-details-group .breadcrumb-item a {
  color: var(--heading_color);
}

.single-blog-details-group .breadcrumb-item+.breadcrumb-item::before {
  background: var(--heading_color);
}

.single-blog-details-group .breadcrumb {
  margin-bottom: 30px;
}

.blog-date-list ul {
  display: flex;
  align-items: center;
  column-gap: 35px;
}

.blog-date-list ul li {
  display: flex;
  align-items: center;
  column-gap: 15px;
}

.blog-date-list {
  margin: 30px 0;
}

.blog-date-list .icon {
  display: flex;
  align-items: center;
  justify-self: center;
}

.single-blog-details-group .global_heading {
  max-width: 100%;
}

.single-blog-details-group .global_heading {
  margin-bottom: 30px;
}

.single-blog-details-group .contents_wrap ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
}

.single-blog-details-group .contents_wrap ul li {
  width: 50%;
  flex: 0 0 auto;
  padding-left: 36px;
  position: relative;
  padding-right: 20px;
  text-transform: capitalize;
}

.single-blog-details-group .contents_wrap ul li::after {
  content: '';
  position: absolute;
  background: url(../images/circle-check.png) no-repeat left;
  width: 24px;
  height: 24px;
  left: 0;
  top: 4px;
  filter: brightness(0) saturate(100%) invert(11%) sepia(40%) saturate(1415%) hue-rotate(202deg) brightness(100%) contrast(91%);
}

.single-blog-details-group .contents_wrap>*:not(:last-child) {
  margin-bottom: 20px;
}

.single-blog-right {
  padding: 25px;
  border: 1px solid var(--btn_clr);
  border-radius: 8px;
  position: sticky;
  top: 120px;
  margin-top: 60px;
  margin-left: 20px;
}

.single-blog-right input[type="search"] {
  background: rgba(243, 243, 243, 1);
  padding: 17px;
  font-size: 20px;
  border: none;
}

.single-blog-right>*:not(:last-child) {
  margin-bottom: 30px;
}

.single-blog-right h3 {
  font-size: 40px;
  margin-bottom: 18px;
}

.categories-post-wrap li {
  padding-left: 30px;
  position: relative;
}

.categories-post-wrap li::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--btn_clr);
  left: 0;
  top: 9px;
}

.categories-post-wrap li a {
  color: var(--text_color);
}

.categories-post-wrap li a:hover {
  color: var(--btn_clr);
}

.categories-post-wrap ul li+li {
  margin-top: 14px;
}

.recent-post-wrap li a {
  display: flex;
}

.recent-post-wrap li a .image {
  width: 40%;
  margin-right: 15px;
  flex: 0 0 auto;
}

.recent-post-wrap ul li+li {
  margin-top: 20px;
}

.recent-post-wrap li a p {
  color: var(--body_clr);
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 17px;
  line-height: 1.4;
}

.recent-post-wrap li a h4 {
  margin-bottom: 10px;
  transition: var(--transition);
}

.recent-post-wrap li a:hover h4 {
  color: var(--btn_clr);
}

.blog-tag ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.blog-tag li a {
  background: #e5e4e4;
  padding: 5px 15px;
  border-radius: 4px;
  color: var(--black_color);
}

.blog-tag li a:hover {
  opacity: 0.8;
}

.single-blog-details-group {
  padding-right: 20px;
}

/* Blog Details End */

/* 02-07-2026 Start */

.pagination-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  column-gap: 10px;
}

.pagination-wrap>* {
  width: 50px;
  height: 50px;
  background: #e5e4e4;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: #000;
  transition: var(--transition);
}

.pagination-wrap>*:hover {
  opacity: 0.75;
}

.pagination-wrap>*.current {
  background: var(--btn_clr);
  color: var(--white_clr);
}

.blog-categories-single .contents {
  padding: 0 10px 20px;
}

.blog-categories-single.active {
  background: var(--btn_clr);
}

.blog-categories-single.active h4 {
  color: var(--white_clr);
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  border-radius: 8px;
  overflow: hidden;
}

.article_single .image {
  overflow: hidden;
  border-radius: 8px;
}

.article_single:hover .img-cover {
  transform: scale(1.05);
}

.arrow_right {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 70px;
  height: 50px;
  background: var(--btn_clr);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 30px;
  color: #fff;
}

.article_single {
  position: relative;
  display: block;
}

.article_single .contents_wrap h6 {
  font-size: 26px;
  margin: 18px 0 10px;
  display: inline-block;
  border-bottom: 1px solid var(--btn_clr);
}

.article_single h3 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.2;
}

p:has(.wpcf7-spinner) {
  position: relative;
  width: fit-content;
}

.build_tgthr_right .wpcf7-not-valid-tip {
  font-size: 17px;
}

.build_tgthr_right .wpcf7 form .wpcf7-response-output {
  font-size: 17px;
}

.blog-categories {
  padding-bottom: 40px !important;
}

.single-blog-details-group .breadcrumb {
  margin-bottom: 30px;
}

.single-blog-details-group .breadcrumb-item,
.single-blog-details-group .breadcrumb-item a {
  color: var(--hdng_clr);
}

.single-blog-details-group .breadcrumb-item.active {
  font-weight: 700;
}

.single-blog-details-group .breadcrumb-item+.breadcrumb-item {
  padding-left: 15px;
}

.single-blog-details-group .breadcrumb-item,
.breadcrumb-item a {
  color: var(--white_clr);
}

.single-blog-details-group .breadcrumb-item+.breadcrumb-item::before {
  content: '';
  width: 17px;
  height: 2px;
  background: var(--hdng_clr);
  top: 16px;
  position: relative;
  display: block;
  padding-right: 0;
  left: -6px;
}

.single-blog-details-group .breadcrumb-item,
.single-blog-details-group .breadcrumb-item a {
  color: var(--hdng_clr);
}

.wpss-search button {
  filter: brightness(0) saturate(100%) !important;
}

.wpss-input:focus-visible {
  border-color: var(--btn_clr) !important;
}

.wpss-results {
  border-color: var(--btn_clr) !important;
}

.insights_article .global_heading_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  column-gap: 40px;
}

.single-blog-details-group h4 {
  font-size: 40px;
}

.single-blog-details-group h2 {
  font-size: 60px;
}

.blog-date-list li p {
  margin-bottom: 0;
}

.single-blog-details {
  margin-top: 50px;
}

.blog-date-list .icon {
  filter: brightness(0) saturate(100%) invert(11%) sepia(40%) saturate(1415%) hue-rotate(202deg) brightness(100%) contrast(91%);
}

.single-post .header {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  padding: 15px 0;
  background-color: #f0ece8;
}

.single-blog-details-group .breadcrumb-item a:hover {
  opacity: 0.7;
}

.blog-single-bread {
  visibility: hidden;
}

.blog-single-bread.ready {
  visibility: visible;
}


/* 02-07-2026 End */

/* 27-08 Fixed Button with Modal */

.blue_btn.fixed-button {
  position: fixed;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  right: -53px;
  border: none;
}

.rituu-modal-contents .footer_forminput input,
.rituu-modal-contents .footer_forminput textarea {
  background: var(--white_clr);
}

.rituu-modal-contents .footer_form {
  background: var(--white_clr);
  margin-top: 0;
}

.modal-header .btn-close {
  position: absolute;
  right: 0;
  top: 0;
  opacity: 1;
  background: var(--btn_clr);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white_clr);
  z-index: 1;
}

.modal-header .btn-close:hover {
  opacity: 0.8;
}

.modal-dialog .modal-header {
  padding: 0;
  border: none;
}

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

.rituu-modal .modal-dialog {
  max-width: 900px;
}

.rituu-modal-contents .image {
  width: 40%;
  flex: 0 0 auto;
}

.rituu-modal-contents {
  display: flex;
}

/* 27-08 Fixed Button with Modal */