:root {
  --white_color: #FFFFFF;
  --black_color: #000000;
  --gray_color: #6F767E;

  --text_color: #4C4F58;
  --text_black_color: #313033;

  --bg_grey: #F4F5F6;
  --bg_dark: #181919;
  --bg_light: #FCF6F5;

  --stock_light: #F0EAEA;
  --stock_dark: #CBCBCB;
  --stock_dark_2: #DDDDDD;
  --stock_primary: #ad292940;
  --stock_primary_light: #F0EAEA;

  --primary_color: #AD2929;
  --secondary_color: #DA6936;
  --success_color: #0F9D58;
  --success_light_color: #c0ffe0;
  --warning_color: #FFA114;
  --danger_color: #FF5D5D;
  --danger_light_color: #fdd4d4;
  --info_color: #4C82F7;

  --primary_hover_color: #6b1313;
  --secondary_hover_color: #AB533E;
  --danger_hover_color: #e73636;
  --success_hover_color: #0d9754;
  --warning_hover_color: #df890a;
  --info_hover_color: #326be6;

  --primary_light_color: #AD29291A;
  --primary_light_two_color: #F7F1F1;
  --secondary_light_color: #FFFCE6;

  --primary_bg_color: #FCF6F5;
  --secondary_bg_color: #FAF4EA;

  --primary_gradient_color: linear-gradient(309.67deg, #AB533E 0%, #DA6936 100%);

}

/* -------------------------------------------------------------------------- */
/*                             Custom Fonts Start                             */
/* -------------------------------------------------------------------------- */
/* Gilroy */
@font-face {
  font-family: Gilroy;
  src: url("../fonts/Gilroy-Font/Gilroy-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: Gilroy;
  src: url("../fonts/Gilroy-Font/Gilroy-UltraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: Gilroy;
  src: url("../fonts/Gilroy-Font/Gilroy-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: Gilroy;
  src: url("../fonts/Gilroy-Font/Gilroy-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: Gilroy;
  src: url("../fonts/Gilroy-Font/Gilroy-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: Gilroy;
  src: url("../fonts/Gilroy-Font/Gilroy-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: Gilroy;
  src: url("../fonts/Gilroy-Font/Gilroy-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: Gilroy;
  src: url("../fonts/Gilroy-Font/Gilroy-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: Gilroy;
  src: url("../fonts/Gilroy-Font/Gilroy-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}

/* GT Walsheim Pro */
@font-face {
  font-family: GT Walsheim Pro;
  src: url("../fonts/GTWalsheimPro/GTWalsheimPro-UltraLight.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: GT Walsheim Pro;
  src: url("../fonts/GTWalsheimPro/GTWalsheimPro-Thin.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: GT Walsheim Pro;
  src: url("../fonts/GTWalsheimPro/GTWalsheimPro-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: GT Walsheim Pro;
  src: url("../fonts/GTWalsheimPro/GTWalsheimPro-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: GT Walsheim Pro;
  src: url("../fonts/GTWalsheimPro/GTWalsheimPro-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: GT Walsheim Pro;
  src: url("../fonts/GTWalsheimPro/GTWalsheimPro-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: GT Walsheim Pro;
  src: url("../fonts/GTWalsheimPro/GTWalsheimPro-Black.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: GT Walsheim Pro;
  src: url("../fonts/GTWalsheimPro/GTWalsheimPro-UltraBold.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}


/* -------------------------------------------------------------------------- */
/*                              Custom Fonts End                              */
/* -------------------------------------------------------------------------- */

/*
   font-family: GT Walsheim Pro, sans-serif;
  font-family: Gilroy, sans-serif;
 */


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  font-family: GT Walsheim Pro, sans-serif;
}


::-moz-selection {
  color: var(--white_color);
  background: var(--primary_color);
}

::selection {
  color: var(--white_color);
  background: var(--primary_color);
}

/*  custom-scrollbar */
.custom-scrollbar::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  background: #DEE5EA;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: #DEE5EA;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: var(--primary_color);
  border-radius: 3px
}

/* -------------------------------------------------------------------------- */
/*                                 Common CSS                                 */
/* -------------------------------------------------------------------------- */
p:nth-last-child(1) {
  margin-bottom: 0 !important;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Gilroy, sans-serif;
}

img {
  max-width: 100%;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

/* -------------------------------------------------------------------------- */
/*                               Font CSS Start                               */
/* -------------------------------------------------------------------------- */
.font-primary {
  font-family: GT Walsheim Pro, sans-serif;
}

.font-secondary {
  font-family: Gilroy, sans-serif;
}

/* -------------------------------------------------------------------------- */
/*                                Font CSS End                                */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/*                           Background CSS Start                              */
/* -------------------------------------------------------------------------- */
.bg-primary {
  background-color: var(--primary_bg_color) !important;
}

.bg-primary-light {
  background-color: var(--primary_light_color) !important;
}

.bg-secondary {
  background-color: var(--secondary_bg_color) !important;
}

.bg-black {
  background-color: var(--black_color) !important;
}

.bg-white {
  background-color: var(--white_color) !important;
}

.bg-gray {
  background-color: var(--bg_grey) !important;
}

.bg-gray-light {
  background-color: var(--bg_light) !important;
}

.bg-gray-dark {
  background-color: var(--bg_dark) !important;
}

/* -------------------------------------------------------------------------- */
/*                           Background CSS End                              */
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*                               Text CSS Start                               */
/* -------------------------------------------------------------------------- */
.text-primary-gradient {
  background: var(--primary_gradient_color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-primary {
  color: var(--primary_color) !important;
}

.text-secondary {
  color: var(--secondary_color) !important;
}

.text-success {
  color: var(--success_color) !important;
}

.text-warning {
  color: var(--warning_color) !important;
}

.text-danger {
  color: var(--danger_color) !important;
}

.text-info {
  color: var(--info_color) !important;
}

.text-color {
  color: var(--text_color) !important;
}

.text-black-color {
  color: var(--text_black_color) !important;
}

.text-black {
  color: var(--black_color) !important;
}

.text-white {
  color: var(--white_color) !important;
}

/* -------------------------------------------------------------------------- */
/*                                Text CSS End                                */
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*                              Button CSS Start                              */
/* -------------------------------------------------------------------------- */
.btn {
  outline: 0 !important;
  box-shadow: none !important;
  display: flex;
  align-items: center;
  border: 1px solid;
  justify-content: center;
  border-radius: 52px;
  gap: 5px;
}

.btn:not(.btn-sm):not(.btn-xl):not(.btn-lg):not(.btn-xs) {
  font-size: 16px;
  font-weight: 500;
  padding: 8px 14px;
}

.btn:not(.btn-sm):not(.btn-xl):not(.btn-lg):not(.btn-xs) i {
  line-height: 24px;
}

.btn.btn-xl {
  font-size: 34px;
  font-weight: 600;
  padding: 12px 14px;
}

.btn.btn-lg {
  font-size: 18px;
  font-weight: 500;
  padding: 10px 18px;
  gap: 0 10px;
}

.btn.btn-lg i {
  line-height: 30px;
}

.btn.btn-sm {
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
}

.btn.btn-sm i {
  font-size: 16px;
  line-height: 18px;
}

.btn.btn-xs {
  font-size: 10px;
  font-weight: 600;
  padding: 6px 8px;
}

.btn.btn-xs i {
  line-height: 16px;
}

.btn.btn-menu {
  font-size: 20px;
}

.btn.btn-round {
  border-radius: 50%;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.btn-transparent,
.btn-trasparent {
  background-color: transparent;
  color: var(--text_color);
  border-color: transparent;
}

.btn-transparent:hover,
.btn-trasparent:hover {
  color: var(--black_color);
  background-color: var(--white_color);
  border-color: var(--stock_dark);
}

/* btn-icon start */
.btn-icon {
  background-color: transparent;
  padding: 0;
  margin: 0;
}

.btn-icon:not(.btn-sm):not(.btn-xl):not(.btn-lg):not(.btn-xs) {
  width: 38px;
  height: 38px;
  min-width: 38px;
  padding: 4px !important;
}

.btn-icon.btn-xl {
  width: 78px;
  height: 78px;
  min-width: 78px;
}

.btn-icon.btn-lg {
  width: 46px;
  height: 46px;
  min-width: 46px;
  padding: 6px !important;
}

.btn-icon.btn-sm {
  width: 31px;
  height: 31px;
  font-size: 15px;
}

.btn-icon.btn-sm i,
.btn-icon.btn-xs i {
  -webkit-text-stroke: 0px;
}

.btn-icon.btn-xs {
  width: 26px;
  height: 26px;
  font-size: 15px;
}

.btn-icon i {
  -webkit-text-stroke: 0.2px;
}

.btn.btn-icon-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 7px;
}

.btn-icon-text:not(.btn-sm):not(.btn-xl):not(.btn-lg):not(.btn-xs) {
  min-width: 140px;
  gap: 0 10px;
}

.btn-icon.btn-xl img {
  width: 40px;
  height: 40px;
}

.btn-icon-text.btn-lg {
  min-width: 190px;
}

.btn-icon-text img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn:not(.btn-sm):not(.btn-lg):not(.btn-xs) img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.btn-icon-text.btn-sm {
  gap: 0 5px;
}

.btn-icon-text.btn-lg img {
  width: 20px;
  height: 20px;
}

.btn-icon-text.btn-sm img {
  width: 16px;
  height: 16px;
}

.btn-icon-text.btn-xs img {
  width: 12px;
  height: 12px;
}

/* btn-icon end */

.btn-link {
  background-color: transparent !important;
  border: 0px;
  padding: 0px;
  text-decoration: none;
  cursor: pointer;
  gap: 0 5px;
  display: inline-flex;
  align-items: center;
  font-weight: 500;
}



/* primary gradient Button Styles */
.btn-primary-gradient {
  background: var(--primary_gradient_color);
  color: var(--white_color);
  border-color: transparent;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.btn-primary-gradient img {
  filter: brightness(0) saturate(100%) invert(91%) sepia(99%) saturate(30%) hue-rotate(269deg) brightness(107%) contrast(100%);
}

.btn-primary-gradient:hover,
.btn-primary-gradient:focus,
.btn-primary-gradient:focus-visible {
  background: var(--secondary_color);
  color: var(--white_color);
  border-color: var(--secondary_color);
  outline: 0;
}

.btn-primary-gradient span {
  background: var(--white_color);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-primary-gradient:hover span,
.btn-primary-gradient:focus span,
.btn-primary-gradient:focus-visible span {
  background: var(--white_color);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-check:checked+.btn-primary-gradient,
.btn-primary-gradient.active,
.btn-primary-gradient.show,
.btn-primary-gradient:first-child:active,
:not(.btn-check)+.btn-primary-gradient:active {
  background: var(--white_color);
  color: var(--secondary_color);
  border-color: var(--secondary_color);
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.14);
}

.btn-primary-gradient:hover img,
.btn-primary-gradient:focus img,
.btn-primary-gradient:focus-visible img,
.btn-primary-gradient .elementor-button:focus .elementor-button-icon,
.btn-primary-gradient .elementor-button:focus-visible .elementor-button-icon {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(2%) hue-rotate(320deg) brightness(103%) contrast(101%);
}

/* primary-gradient Button Styles  */
/* outline primary gradient Button Styles */
.btn-outline-primary-gradient {
  background: var(--white_color);
  color: var(--primary_color);
  border-color: var(--primary_color);
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.btn-outline-primary-gradient img {
  filter: brightness(0) saturate(100%) invert(52%) sepia(50%) saturate(2836%) hue-rotate(342deg) brightness(93%) contrast(82%);
}

.btn-outline-primary-gradient:hover,
.btn-outline-primary-gradient:focus,
.btn-outline-primary-gradient:focus-visible {
  background: var(--primary_gradient_color);
  color: var(--white_color);
  border-color: var(--primary_color);
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.14);
  outline: 0;
}

.btn-outline-primary-gradient span {
  background: var(--primary_gradient_color);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-outline-primary-gradient:hover span,
.btn-outline-primary-gradient:focus span,
.btn-outline-primary-gradient:focus-visible span {
  background: var(--white_color);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-check:checked+.btn-outline-primary-gradient,
.btn-outline-primary-gradient.active,
.btn-outline-primary-gradient.show,
.btn-outline-primary-gradient:first-child:active,
:not(.btn-check)+.btn-outline-primary-gradient:active {
  background: var(--primary_gradient_color);
  color: var(--white_color);
  border-color: var(--primary_color);
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.14);
}

.btn-outline-primary-gradient:hover img,
.btn-outline-primary-gradient:focus img,
.btn-outline-primary-gradient:focus-visible img,
.btn-outline-primary-gradient .elementor-button:focus .elementor-button-icon,
.btn-outline-primary-gradient .elementor-button:focus-visible .elementor-button-icon {
  filter: brightness(0) saturate(100%) invert(91%) sepia(99%) saturate(30%) hue-rotate(269deg) brightness(107%) contrast(100%);
}

/* outline primary gradient Button Styles */

/* Primary Button  */
.btn-primary {
  background-color: var(--primary_color);
  color: var(--white_color);
  border-color: var(--primary_color);
}

.btn-primary:hover,
.btn-primary.btn.active,
.btn-primary.btn:active,
.btn-primary:focus,
.btn-primary:focus-visible,
.btn-primary:first-child:active {
  background-color: var(--primary_hover_color) !important;
  border-color: var(--primary_hover_color) !important;
  color: var(--white_color) !important;
  outline: none;
  box-shadow: unset;
}

.btn-primary:hover img,
.btn-primary:focus img,
.btn-primary:focus-visible img,
.btn-primary .elementor-button:focus .elementor-button-icon,
.btn-primary .elementor-button:focus-visible .elementor-button-icon {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(2%) hue-rotate(320deg) brightness(103%) contrast(101%);
}

.btn-check:checked+.btn-primary,
.btn-primary.active,
.btn-primary.show,
:not(.btn-check)+.btn-primary:active {
  background-color: var(--primary_hover_color);
  border-color: var(--primary_hover_color);
  color: var(--white_color);
  outline: none;
  box-shadow: unset;
}

.btn-primary.disabled,
.btn-primary:disabled {
  background-color: var(--stock_dark);
  border-color: var(--stock_dark);
  color: #535E78;
  outline: none;
  box-shadow: unset;
  pointer-events: none;
}

/* Light Primary Button */
.btn-light-primary {
  background-color: var(--primary_bg_color);
  color: var(--primary_color);
  border-color: var(--primary_bg_color);
}

.btn-light-primary:hover,
.btn-light-primary.btn.active,
.btn-light-primary.btn:active,
.btn-light-primary:focus,
.btn-light-primary:focus-visible,
.btn-light-primary:first-child:active {
  background-color: var(--primary_hover_color) !important;
  border-color: var(--primary_hover_color) !important;
  color: var(--white_color) !important;
  outline: none;
  box-shadow: unset;
}

.btn-check:checked+.btn-light-primary,
.btn-light-primary.active,
.btn-light-primary.show,
:not(.btn-check)+.btn-primary:active {
  background-color: var(--primary_hover_color) !important;
  border-color: var(--primary_hover_color) !important;
  color: var(--white_color) !important;
  outline: none;
  box-shadow: unset;
}

.btn-light-primary.disabled,
.btn-light-primary:disabled {
  background-color: var(--stock_dark);
  border-color: var(--stock_dark);
  color: #535E78;
  outline: none;
  box-shadow: unset;
  pointer-events: none;
}

.btn-light-primary:hover img,
.btn-light-primary:focus img,
.btn-light-primary:focus-visible img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(2%) hue-rotate(8deg) brightness(109%) contrast(100%) !important;
}

/* Light Primary two Button */
.btn-light-primary-two {
  background-color: var(--primary_light_two_color);
  color: var(--text_black_color);
  border-color: var(--primary_light_two_color);
}

.btn-light-primary-two:hover,
.btn-light-primary-two.btn.active,
.btn-light-primary-two.btn:active,
.btn-light-primary-two:focus,
.btn-light-primary-two:focus-visible,
.btn-light-primary-two:first-child:active {
  background-color: var(--primary_hover_color);
  border-color: var(--primary_hover_color);
  color: var(--white_color);
  outline: none;
  box-shadow: unset;
}

.btn-check:checked+.btn-light-primary-two,
.btn-light-primary-two.active,
.btn-light-primary-two.show,
:not(.btn-check)+.btn-primary:active {
  background-color: var(--primary_hover_color);
  border-color: var(--primary_hover_color);
  color: var(--white_color);
  outline: none;
  box-shadow: unset;
}

.btn-light-primary-two.disabled,
.btn-light-primary-two:disabled {
  background-color: var(--stock_dark);
  border-color: var(--stock_dark);
  color: #535E78;
  outline: none;
  box-shadow: unset;
  pointer-events: none;
}

/* Outline Primary Button */
.btn-outline-primary {
  background-color: var(--white_color);
  color: var(--primary_color);
  border-color: var(--primary_color);
}

.btn-outline-primary img {
  filter: brightness(0) saturate(100%) invert(18%) sepia(34%) saturate(7458%) hue-rotate(354deg) brightness(90%) contrast(75%);
}

.btn-outline-primary:hover,
.btn-outline-primary.btn.active,
.btn-outline-primary.btn:active,
.btn-outline-primary:focus,
.btn-outline-primary:focus-visible,
.btn-outline-primary:first-child:active {
  background-color: var(--primary_color);
  border-color: var(--primary_color);
  color: var(--white_color);
  outline: none;
  box-shadow: unset;
}

.btn-outline-primary:hover img,
.btn-outline-primary:focus img,
.btn-outline-primary:focus-visible img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(2%) hue-rotate(8deg) brightness(109%) contrast(100%);
}

.btn-check:checked+.btn-outline-primary,
.btn-outline-primary.active,
.btn-outline-primary.show,
:not(.btn-check)+.btn-primary:active {
  background-color: var(--primary_color);
  border-color: var(--primary_color);
  color: var(--white_color);
  outline: none;
  box-shadow: unset;
}

.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
  background-color: transparent;
  border-color: var(--stock_dark);
  color: var(--stock_dark);
  outline: none;
  box-shadow: unset;
  pointer-events: none;
}

/* White Button */
.btn-white {
  background-color: var(--white_color);
  color: var(--text_black_color);
  border-color: var(--stock_light);
}

.btn-white:hover,
.btn-white.btn.active,
.btn-white.btn:active,
.btn-white:focus,
.btn-white:focus-visible,
.btn-white:first-child:active {
  background-color: var(--bg_grey);
  border-color: var(--bg_grey);
  color: var(--black_color);
  outline: none;
  box-shadow: unset;
}

.btn-check:checked+.btn-white,
.btn-white.active,
.btn-white.show,
:not(.btn-check)+.btn-primary:active {
  background-color: var(--bg_grey);
  border-color: var(--bg_grey);
  color: var(--gray_color);
  outline: none;
  box-shadow: unset;
}

.btn-white.disabled,
.btn-white:disabled {
  background-color: var(--stock_dark);
  border-color: var(--stock_dark);
  color: #535E78;
  outline: none;
  box-shadow: unset;
  pointer-events: none;
}

.btn-white img {
  filter: brightness(0) saturate(100%) invert(22%) sepia(18%) saturate(1308%) hue-rotate(166deg) brightness(92%) contrast(88%);
}

.btn-white:hover img,
.btn-white:focus img,
.btn-white:focus-visible img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(114deg) brightness(104%) contrast(103%);
}

/* light White Button */
.btn-light-white {
  background-color: var(--bg_grey);
  color: var(--text_color);
  border-color: var(--bg_grey);
}

.btn-light-white:hover,
.btn-light-white.btn.active,
.btn-light-white.btn:active,
.btn-light-white:focus,
.btn-light-white:focus-visible,
.btn-light-white:first-child:active {
  background-color: var(--gray_color);
  border-color: var(--gray_color);
  color: var(--white_color);
  outline: none;
  box-shadow: unset;
}

.btn-check:checked+.btn-light-white,
.btn-light-white.active,
.btn-light-white.show,
:not(.btn-check)+.btn-primary:active {
  background-color: var(--gray_color);
  border-color: var(--gray_color);
  color: var(--white_color);
  outline: none;
  box-shadow: unset;
}

.btn-light-white.disabled,
.btn-light-white:disabled {
  background-color: var(--stock_dark);
  border-color: var(--stock_dark);
  color: #535E78;
  outline: none;
  box-shadow: unset;
  pointer-events: none;
}

/* outline White Button */
.btn-outline-white {
  background-color: var(--white_color);
  color: var(--text_black_color);
  border-color: var(--text_black_color);
}

.btn-outline-white:hover,
.btn-outline-white.btn.active,
.btn-outline-white.btn:active,
.btn-outline-white:focus,
.btn-outline-white:focus-visible,
.btn-outline-white:first-child:active {
  background-color: var(--gray_color);
  border-color: var(--gray_color);
  color: var(--white_color);
  outline: none;
  box-shadow: unset;
}

.btn-check:checked+.btn-outline-white,
.btn-outline-white.active,
.btn-outline-white.show,
:not(.btn-check)+.btn-primary:active {
  background-color: var(--gray_color);
  border-color: var(--gray_color);
  color: var(--white_color);
  outline: none;
  box-shadow: unset;
}

.btn-outline-white.disabled,
.btn-outline-white:disabled {
  background-color: var(--stock_dark);
  border-color: var(--stock_dark);
  color: #535E78;
  outline: none;
  box-shadow: unset;
  pointer-events: none;
}

.btn-outline-white img {
  filter: brightness(0) saturate(100%) invert(16%) sepia(2%) saturate(1587%) hue-rotate(219deg) brightness(88%) contrast(86%);
}

.btn-outline-white:hover img,
.btn-outline-white:focus img,
.btn-outline-white:focus-visible img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(2%) hue-rotate(320deg) brightness(103%) contrast(101%);
}

/* Black Button */
.btn-black {
  background-color: var(--black_color);
  color: var(--white_color);
  border-color: var(--black_color);
}

.btn-black:hover,
.btn-black.btn.active,
.btn-black.btn:active,
.btn-black:focus,
.btn-black:focus-visible,
.btn-black:first-child:active {
  background-color: var(--white_color);
  border-color: var(--black_color);
  color: var(--black_color);
  outline: none;
  box-shadow: unset;
}

.btn-check:checked+.btn-black,
.btn-black.active,
.btn-black.show,
:not(.btn-check)+.btn-primary:active {
  background-color: var(--white_color);
  border-color: var(--black_color);
  color: var(--black_color);
  outline: none;
  box-shadow: unset;
}

.btn-black.disabled,
.btn-black:disabled {
  background-color: var(--stock_dark);
  border-color: var(--stock_dark);
  color: #535E78;
  outline: none;
  box-shadow: unset;
  pointer-events: none;
}

.btn-black img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(114deg) brightness(104%) contrast(103%);
}

.btn-black:hover img,
.btn-black:focus img,
.btn-black:focus-visible img {
  filter: brightness(0) saturate(100%) invert(0%) sepia(100%) saturate(7500%) hue-rotate(15deg) brightness(114%) contrast(114%);
}

/* -------------------------------------------------------------------------- */
/*                               Button CSS End                               */
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*                              Custom Tag Start                              */
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*                               Custom Tag End                               */
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*                             Bottom to Top Start                            */
/* -------------------------------------------------------------------------- */

#backToTop {
  position: fixed;
  left: 30px;
  bottom: 30px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white_color);
  font-size: 20px;
  color: var(--primary_color);
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  cursor: pointer;
  z-index: 3;
}

#backToTop.is--show {
  opacity: 1;
  visibility: visible;
}

/* Circular Progress */
#backToTop .circle-css {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(var(--primary_color) var(--cricle-degrees, 0deg), #f5f5f5 0deg);
}

/* Arrow Icon */
#backToTop .circle-inner {
  position: relative;
  z-index: 2;
  width: 39px;
  height: 39px;
  background: var(--white_color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

#backToTop svg {
  width: 20px;
  height: 20px;
}


/* -------------------------------------------------------------------------- */
/*                              Bottom to Top End                             */
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*                              whatsapp button Start                             */
/* -------------------------------------------------------------------------- */
.whatsapp {
  width: 37px;
  height: 37px;
  text-align: center;
  line-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 50px;
  right: 30px;
  z-index: 100;
  animation: ripple 1.6s linear infinite;
  border-radius: 50%;
  border: 1px solid transparent;
  background-color: #49c658;
}

.whatsapp img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

@keyframes ripple {
  0% {
    box-shadow: 0 0 0 5px rgba(52, 187, 59, 0.2),
      0 0 0 15px rgba(50, 173, 48, 0.2);
  }

  100% {
    box-shadow: 0 0 0 10px rgba(47, 168, 47, 0.2),
      0 0 0 15px rgba(54, 146, 44, 0.2);
  }
}

/* -------------------------------------------------------------------------- */
/*                              whatsapp button End                             */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/*                              Slick Arrow Start                             */
/* -------------------------------------------------------------------------- */
.slick-arrow {
  padding-bottom: 50px;
}

.slick-arrow .slick-prev,
.slick-arrow .slick-next {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 52px;
  border: 1px solid var(--text_black_color);
  background-color: var(--white_color) !important;
  transition: all 0.3s;
  z-index: 2;
  padding: 2px !important;
}

.slick-arrow .slick-prev:hover,
.slick-arrow .slick-prev:focus,
.slick-arrow .slick-next:hover,
.slick-arrow .slick-next:focus {
  background-color: var(--primary_color) !important;
  border-color: var(--primary_color) !important;
}

.slick-prev.slick-disabled,
.slick-next.slick-disabled {
  opacity: 0.25;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 1;
}

.slick-arrow .slick-prev:not(.slick-arrow-sm, .slick-arrow-md, .slick-arrow-lg),
.slick-arrow .slick-next:not(.slick-arrow-sm, .slick-arrow-md, .slick-arrow-lg) {
  width: 51px;
  height: 38px;
}

.slick-arrow.slick-arrow-sm .slick-prev,
.slick-arrow.slick-arrow-sm .slick-next {
  width: 31px;
  height: 18px;
}

.slick-arrow.slick-arrow-md .slick-prev,
.slick-arrow.slick-arrow-md .slick-next {
  width: 51px;
  height: 38px;
}

.slick-arrow.slick-arrow-lg .slick-prev,
.slick-arrow.slick-arrow-lg .slick-next {
  width: 71px;
  height: 58px;
}

.slick-arrow .slick-prev:before,
.slick-arrow .slick-next:before {
  content: "";
  position: absolute;
  width: 23px;
  height: 16px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.slick-arrow.slick-arrow-sm .slick-prev::before,
.slick-arrow.slick-arrow-sm .slick-next::before {
  width: 18px;
  height: 8px;
}

.slick-arrow.slick-arrow-md .slick-prev::before,
.slick-arrow.slick-arrow-md .slick-next::before {
  width: 20px;
  height: 10px;
}

.slick-arrow.slick-arrow-lg .slick-prev::before,
.slick-arrow.slick-arrow-lg .slick-next::before {
  width: 24px;
  height: 12px;
}


.slick-arrow .slick-next:before,
.slick-arrow .slick-prev:before {
  background-image: url('../images/icons/slick-arrow.svg');
}

.slick-arrow .slick-prev:before {
  transform: translate(-50%, -50%) rotate(180deg);
}

.slick-arrow .slick-prev:hover:before,
.slick-arrow .slick-prev:focus:before,
.slick-arrow .slick-next:hover:before,
.slick-arrow .slick-next:focus:before {
  filter: brightness(0) saturate(100%) invert(100%) sepia(17%) saturate(0%) hue-rotate(55deg) brightness(110%) contrast(100%);
}

.slick-prev {
  left: unset;
  right: calc(50% + 5px);
  top: calc(100% - 22px);
}

.slick-next {
  right: 100px;
  left: calc(50% + 5px);
  top: calc(100% - 22px);
}



/* slick-arrow2 */
.slick-arrow.slick-arrow2 .slick-next,
.slick-arrow.slick-arrow2 .slick-prev {
  width: 41px;
  height: 41px;
  border-radius: 13px;
  border-color: transparent;
}

.slick-arrow.slick-arrow2 .slick-next:before,
.slick-arrow.slick-arrow2 .slick-prev:before {
  width: 23px;
  height: 23px;
  background-image: url('../images/icons/slick-arrow-right-black.svg');
}

/* slick-arrow3 */
.slick-arrow.slick-arrow3 .slick-prev,
.slick-arrow.slick-arrow3 .slick-next {
  border: 0;
}

.slick-arrow.slick-arrow3 .slick-prev:hover,
.slick-arrow.slick-arrow3 .slick-next:hover,
.slick-arrow.slick-arrow3 .slick-prev:focus,
.slick-arrow.slick-arrow3 .slick-next:focus,
.slick-arrow.slick-arrow3 .slick-prev:focus-visible,
.slick-arrow.slick-arrow3 .slick-next:focus-visible {
  background-color: transparent !important;
}

.slick-arrow.slick-arrow3 .slick-prev:before,
.slick-arrow.slick-arrow3 .slick-next:before {
  content: "\F138";
  width: auto;
  height: auto;
  font-size: 20px;
  font-family: "bootstrap-icons";
  color: var(--black_color);
}

.slick-arrow.slick-arrow3 .slick-prev:hover::before,
.slick-arrow.slick-arrow3 .slick-next:hover::before,
.slick-arrow.slick-arrow3 .slick-prev:focus::before,
.slick-arrow.slick-arrow3 .slick-next:focus::before,
.slick-arrow.slick-arrow3 .slick-prev:focus-visible::before,
.slick-arrow.slick-arrow3 .slick-next:focus-visible::before {
  filter: inherit;
  color: var(--primary_color);
}

.slick-arrow.slick-arrow3 .slick-prev:before,
.slick-arrow.slick-arrow3 .slick-next:before {
  background-image: none;
}

/* -------------------------------------------------------------------------- */
/*                               Slick Arrow End                              */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/*                              Slick Dots Start                             */
/* -------------------------------------------------------------------------- */
.slick-dots {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 5px 0;
  list-style-type: none;
}

.slick-dots li {
  width: 10px;
  height: 10px;
  position: relative;
  margin: 0 6px;
}

.slick-dots button {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  width: 10px !important;
  height: 10px !important;
}

.slick-dots li button:before {
  content: '';
  width: 10px;
  height: 10px;
  opacity: .20;
  border-radius: 50%;
  background: var(--primary_color);
  text-indent: -9999px;
  transition: all 0.3s;
}

.slick-dots li button:hover,
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  background: var(--primary_color);
  background-color: var(--primary_color);
}

.slick-dots li.slick-active {
  width: 10px;
  height: 10px;
}

.slick-dots li.slick-active button,
.slick-dots li.slick-active button::before {
  width: 10px !important;
  max-width: 10px !important;
  height: 10px !important;
  border-radius: 50%;
  opacity: 1;
  background: var(--primary_color);
}

/* -------------------------------------------------------------------------- */
/*                               Slick Dots End                               */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/*                                alert start                                   */
/* -------------------------------------------------------------------------- */
.alert {
  background-color: #FFFFFF;
  border: 0px;
  border-top: 5px solid;
  box-shadow: #0000000f 0 0 3px 4px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text_color);
  border-radius: 0px;
  display: flex;
  align-items: center;
  gap: 0 10px;
}

.alert i {
  font-size: 30px;
}

.alert.alert-primary {
  border-color: var(--primary_color);
}

.alert.alert-primary i {
  color: var(--primary_color);
}

.alert.alert-success {
  border-color: var(--success_color);
}

.alert.alert-success i {
  color: var(--success_color);
}

.alert.alert-danger {
  border-color: var(--danger_color);
}

.alert.alert-danger i {
  color: var(--danger_color);
}

/* -------------------------------------------------------------------------- */
/*                                alert end                                   */
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*                              Breadcrumb Start                              */
/* -------------------------------------------------------------------------- */
.breadcrumb {
  margin-bottom: 0;
}

.breadcrumb .breadcrumb-item.active,
.breadcrumb .breadcrumb-item a {
  font-size: 18px;
  font-weight: 400;
  line-height: 20.61px;
  color: var(--text_color);
  display: flex;
  align-items: center;
  transition: all 0.3s;
}

.breadcrumb .breadcrumb-item a:hover {
  color: var(--primary_color);
}

.breadcrumb .breadcrumb-item.active {
  color: var(--primary_color);
}

.breadcrumb-item+.breadcrumb-item::before {
  content: "\F285";
  font-family: 'bootstrap-icons';
  font-size: 13px;
  line-height: 21px;
  font-weight: 600;
  color: var(--text_color);
}

/* -------------------------------------------------------------------------- */
/*                               Breadcrumb End                               */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/*                              Nav Tab Start                               */
/* -------------------------------------------------------------------------- */
.nav-tabs-outer .nav-tabs {
  border: 0;
  gap: 7px;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}

.nav-tabs-outer .nav-link {
  /* font-family: GT Walsheim Pro, sans-serif; */
  border: 0;
  padding: 8px 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  border-radius: 4px !important;
  background-color: var(--white_color);
  color: var(--text_color);
  display: flex;
  align-items: center;
  gap: 0 7px;
  white-space: nowrap;
}

.nav-tabs-outer .nav-link.active,
.nav-tabs-outer .nav-link:hover {
  background-color: var(--primary_color);
  color: var(--white_color);
}

.nav-tabs-outer .nav-link i {
  font-size: 17px;
}

.nav-tabs-outer .tab-pane {
  padding: 20px 0;
}

/* nav-tabs-style1 */
.nav-tabs-outer.nav-tabs-style1 .nav-tabs {
  background-color: var(--white_color);
  border: 1px solid #EAECF0;
  padding: 5px;
  border-radius: 6px;
}

/* nav-tabs-style2 */
.nav-tabs-outer.nav-tabs-style2 .nav-tabs {
  position: relative;
  align-items: center;
}

.nav-tabs-outer.nav-tabs-style2 .nav-tabs::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% - 2.5px);
  width: 100%;
  height: 1px;
  background-color: var(--stock_dark);
  z-index: 0;
}

.nav-tabs-outer.nav-tabs-style2 .nav-link {
  border-radius: 0px !important;
  background-color: transparent;
  color: var(--text_color);
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  padding: 18px 15px;
  position: relative;
}

.nav-tabs-outer.nav-tabs-style2 .nav-link::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% - 5px);
  width: 23px;
  height: 5px;
  background-color: transparent;
  transition: all 0.3s;
  z-index: 2;
}

.nav-tabs-outer.nav-tabs-style2 .nav-link.active,
.nav-tabs-outer.nav-tabs-style2 .nav-link:hover {
  background-color: transparent;
  color: var(--black_color);
}

.nav-tabs-outer.nav-tabs-style2 .nav-link.active::after {
  background-color: var(--black_color);
}

/* -------------------------------------------------------------------------- */
/*                              Nav Tab End                               */
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*                              Form-group Start                              */
/* -------------------------------------------------------------------------- */
.form-group {
  margin-bottom: 24px;
  position: relative;
}

.form-group .form-label {
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 4px;
  color: var(--text_color);
}

.form-group.required .form-label::after {
  content: '*';
  color: var(--danger_color);
  margin-left: 3px;
}

.form-group .form-control,
.form-group .form-select,
.form-group .search-field {
  font-family: Gilroy, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  box-shadow: none !important;
  outline: 0 !important;
  color: var(--text_color);
  background-color: var(--white_color);
  border-color: var(--white_color);
  border-bottom: 1px solid var(--stock_dark_2);
  border-radius: 0;
  padding-top: 11px;
  padding-bottom: 11px;
  padding-left: 12px;
  padding-right: 12px;
  transition: all 0.3s;
}


.form-group .form-control.form-control-lg,
.form-group .form-select.form-select-lg {
  padding-top: 19px;
  padding-bottom: 19px;
  padding-left: 26px;
  padding-right: 26px;
}

.form-group .form-select {
  min-width: 100px;
}

.form-group .form-select.without-border-select {
  padding-top: 0;
  padding-bottom: 0;
  border: 0;
}

.form-group .form-select.without-border-select:focus,
.form-group .form-select.without-border-select:hover,
.form-group .form-select.without-border-select:focus-visible {
  border: 0;
  background-color: var(--white_color);
}

.form-group .form-control:hover,
.form-group .form-select:hover,
.form-group .search-field:hover {
  border-bottom: 1px solid var(--primary_color);
}

.form-group .form-control:focus,
.form-group .form-control:focus-visible,
.form-group .form-select:focus,
.form-group .form-select:focus-visible,
.form-group .form-select:hover,
.form-group .search-field:focus,
.form-group .search-field:focus-visible {
  outline: none;
  box-shadow: unset;
  border-bottom-color: var(--primary_color);
}

.form-group input::placeholder,
.form-group textarea::placeholder,
.form-group option,
.form-group select {
  color: var(--text_color);
}

.form-group .form-select {
  padding-right: 28px;
  position: relative;
  background-image: none;
  background-image: url('../images/icons/arrow-down-black.svg');
  background-repeat: no-repeat;
  background-size: 14px 14px;

}

.form-group .form-select option {
  color: var(--gray_color);
}

.form-group .form-select {
  width: 100%;
}

.form-group textarea {
  resize: none;
  min-height: 100px;
}

.form-group .form-group-icon-start,
.form-group .form-group-icon-end {
  position: relative;
  width: 100%;
}

.form-group .form-group-icon-start .control-icon,
.form-group .form-group-icon-end .control-icon {
  font-size: 18px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  bottom: 0;
  display: flex;
  align-items: center;
  z-index: 1;
}

.form-group .form-group-icon-start i,
.form-group .form-group-icon-end i {
  position: absolute;
  top: 0px;
  bottom: 0;
  display: flex;
  align-items: center;
  font-size: 16px;
  z-index: 100;
}

.form-group .form-group-icon-start i {
  left: 12px;
}

.form-group .form-group-icon-start span {
  left: 10px;
}

.form-group .form-group-icon-start .form-select,
.form-group .form-group-icon-start .form-control {
  padding-left: 38px;
}

.form-group .form-group-icon-end i {
  right: 12px;
}

.form-group .form-group-icon-end span {
  right: 10px;
}

.form-group .form-group-icon-end .form-select,
.form-group .form-group-icon-end .form-control {
  padding-right: 38px;
}


.form-group .form-group-icon-start .control-icon {
  left: 14px;
}

.form-group .form-group-icon-end .control-icon {
  right: 12px;
}

.form-group .form-group-icon-start .form-control,
.form-group .form-group-icon-start .form-select {
  padding-left: 45px;
  overflow: hidden;
}

.form-group .form-group-icon-end .form-control,
.form-group .form-group-icon-end .form-select {
  padding-right: 40px;
}

.form-group .form-group-icon-start .form-control-lg,
.form-group .form-group-icon-start .form-select-lg {
  padding-left: 55px;
  overflow: hidden;
}

.form-group .form-group-icon-end .form-control-lg,
.form-group .form-group-icon-end .form-select-lg {
  padding-right: 50px;
}

.form-group .search-form {
  position: relative;
}

.form-group .search-form label,
.form-group .search-form .search-field {
  width: 100%;
}

.form-group .search-form .search-submit {
  position: absolute;
  left: auto;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  padding: 0;
  z-index: 1;
  width: 50px;
  height: 30px;
  background-color: transparent;
  color: transparent;
  border: 0;
}


.form-group .message {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  padding: 0 5px;
  color: var(--text_color);
  margin-top: 5px;
  width: fit-content;
  border-radius: 6px;
}

.form-group .message.error-message {
  color: var(--danger_color);
  /* background-color: var(--danger_light_color); */
}

.form-group .message.success-message {
  color: var(--success_color);
  /* background-color: var(--secondary_light_color); */
}

/* input type search hide close button from all browser. */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}


.btn-fileupload {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0 10px;
  font-weight: 400;
  border-radius: 0;
}

.btn-fileupload input[type="file"] {
  opacity: 0;
  position: absolute;
  inset: 0;
  cursor: pointer;
}

.btn-fileupload.btn-fileupload-white {
  background-color: var(--white_color);
  border: 1px solid var(--stock_dark_2);
  color: #333;
}

.btn-fileupload.btn-fileupload-white:hover {
  border-color: var(--primary_color);
}


/* Attachments Image & File Upload */
.attachments-upload-grid-container {
  margin-top: 15px;
}

.attachments-upload-grid-container .attachments-upload-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 14px;
}

.attachments-upload-grid-container .attachments-upload-row .attachments-upload-col {
  width: 100%;
  max-width: 170px;
  padding: 0 0px;
}

.attachments-upload-grid-container .attachments-upload-row .card-attachments-upload {
  border: 1px solid var(--stock_light);
  background-color: var(--white_color);
  border-radius: 7px;
  overflow: hidden;
  position: relative;
  height: 185px;
}

.attachments-upload-grid-container .attachments-upload-row .card-attachments-upload .attachments-image {
  height: 140px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  overflow: hidden;
}

.attachments-upload-grid-container .attachments-upload-row .card-attachments-upload .attachments-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.attachments-upload-grid-container .attachments-upload-row .card-attachments-upload .attachments-text {
  padding: 5px 10px;
}

.attachments-upload-grid-container .attachments-upload-row .card-attachments-upload .attachments-text h6 {
  font-size: 12px;
  font-weight: 600;
  line-height: 15.6px;
  color: #000;
  /* Replace $text_black_color */
  margin-bottom: 0px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  white-space: normal;
  overflow: hidden;
  word-wrap: break-word;
  word-break: break-all;
  white-space: normal;
}




/* -------------------------------------------------------------------------- */
/*                               Form-group End                               */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/*                              Checkbox End                               */
/* -------------------------------------------------------------------------- */
.checkbox {
  margin: 5px 0;
}

.checkbox.form-check-inline {
  display: inline-block;
  margin-right: 1rem;
}

.checkbox [type=checkbox]:checked,
.checkbox [type=checkbox]:not(:checked) {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.checkbox [type=checkbox]+label {
  cursor: pointer;
  display: inline-block;
  margin: 0;
  user-select: none;
  color: var(--text_black_color);
  position: relative;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  padding-left: 25px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.checkbox.checkbox-small [type=checkbox]+label {
  cursor: pointer;
  display: inline-block;
  margin: 0;
  position: relative;
  user-select: none;
  color: var(--text_black_color);
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  padding-left: 22px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.checkbox [type=checkbox]+label:before,
.checkbox [type=checkbox]:not(.filled-in)+label:after {
  border: 1px solid #5a5a5a;
  border-radius: 1px;
  content: "";
  height: 18px;
  left: 0;
  margin-top: 2px;
  position: absolute;
  top: 0;
  transition: .2s;
  width: 18px;
  z-index: 0;
}

.checkbox [type=checkbox]:not(.filled-in)+label:after {
  border: 0;
  transform: scale(0);
}

.checkbox [type=checkbox]:not(:checked):disabled+label:before {
  background-color: #00000042;
  border: none;
}

.checkbox [type=checkbox].tabbed:focus+label:after {
  background-color: #0000001a;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 10px #0000001a;
  transform: scale(1);
}

.checkbox [type=checkbox]:checked+label:before {
  backface-visibility: hidden;
  border-bottom: 2px solid var(--primary_color);
  border-left: 2px solid transparent;
  border-right: 2px solid var(--primary_color);
  border-top: 2px solid transparent;
  height: 22px;
  left: -5px;
  top: -4px;
  transform: rotate(40deg);
  transform-origin: 100% 100%;
  width: 12px;
}

.checkbox [type=checkbox]:checked:disabled+label:before {
  border-bottom: 2px solid rgba(0, 0, 0, .26);
  border-right: 2px solid rgba(0, 0, 0, .26);
}

.checkbox [type=checkbox]:indeterminate+label:before {
  backface-visibility: hidden;
  border: none;
  border-right: 2px solid var(--primary_color);
  height: 22px;
  left: -12px;
  top: -11px;
  transform: rotate(90deg);
  transform-origin: 100% 100%;
  width: 10px;
}

.checkbox [type=checkbox]:indeterminate:disabled+label:before {
  background-color: initial;
  border-right: 2px solid rgba(0, 0, 0, .26);
}

.checkbox [type=checkbox].filled-in+label:after {
  border-radius: 4px;
}

.checkbox [type=checkbox].filled-in+label:after,
.checkbox [type=checkbox].filled-in+label:before {
  content: "";
  left: 0;
  position: absolute;
  z-index: 1;
}

.checkbox [type=checkbox].filled-in:not(:checked)+label:before {
  border: 3px solid transparent;
  height: 0;
  left: 6px;
  top: 10px;
  transform: rotate(37deg);
  transform-origin: 100% 100%;
  width: 0;
}

.checkbox [type=checkbox].filled-in:not(:checked)+label:after {
  background-color: initial;
  border: 1px solid var(--stock_dark);
  height: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  z-index: 0;
}

.checkbox [type=checkbox].filled-in:checked+label:before {
  border-color: transparent #fff #fff transparent;
  border-style: solid;
  border-width: 2px;
  height: 13px;
  left: 1px;
  top: 41%;
  transform: translateY(-50%) rotate(37deg);
  transform-origin: 100% 100%;
  width: 8px;
}

.checkbox.checkbox-small [type=checkbox].filled-in:checked+label:before {
  top: 32%;
  transform: translateY(-50%) rotate(37deg);
}

.checkbox [type=checkbox].filled-in:checked+label:after {
  background-color: var(--primary_color);
  border: 1px solid var(--primary_color);
  height: 20px;
  width: 20px;
  z-index: 0;
}

.checkbox [type=checkbox].filled-in.tabbed:focus+label:after {
  background-color: #0000001a;
  border-color: #5a5a5a;
  border-radius: 2px;
}

.checkbox [type=checkbox].filled-in.tabbed:checked:focus+label:after {
  background-color: var(--primary_color);
  border-color: var(--primary_color);
  border-radius: 2px;
}

.checkbox [type=checkbox].filled-in:disabled:not(:checked)+label:before {
  background-color: initial;
  border: 2px solid transparent;
}

.checkbox [type=checkbox].filled-in:disabled:checked+label:before {
  background-color: initial;
}

.checkbox [type=checkbox].filled-in:disabled:checked+label:after {
  background-color: var(--stock_dark);
  border-color: var(--stock_dark);
}

.checkbox.checkbox-small [type=checkbox].filled-in:checked+label:after,
.checkbox.checkbox-small [type=checkbox].filled-in:not(:checked)+label:after {
  height: 15px;
  width: 15px;
}

.checkbox.checkbox-small [type=checkbox].filled-in:checked+label:before {
  height: 10px;
  width: 6px;
}

.checkbox.checkbox-inline {
  display: inline-block;
  margin-right: 1rem;
}

.checkbox.checkbox-white [type=checkbox].filled-in:not(:checked)+label:after {
  border: 1px solid var(--white_color);
}

/* -------------------------------------------------------------------------- */
/*                              Checkbox End                               */
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*                                 Radio Start                                */
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*                                  Radio End                                 */
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*                            Newsletter Form Start                           */
/* -------------------------------------------------------------------------- */
.newsletter-form {
  position: relative;
}

.newsletters-subscribe-form {
  position: relative;
}

.newsletters-subscribe-form .form-group {
  margin: 0;
}

.newsletters-subscribe-form .form-group .form-control {
  padding: 12px 125px 12px 12px;
  border-radius: 6px !important;
  background-color: var(--secondary_bg_color) !important;
}

.newsletters-subscribe-form .newsletters_submit {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
}

.newsletter-form .newsletters_submit .btn {
  height: 100%;
  border-radius: 0 !important;
  border-start-end-radius: 5px !important;
  border-bottom-right-radius: 5px !important;
  border: 0 !important;
  background-color: var(--primary) !important;
  transition: all 0.3s;
  border: 1px solid transparent !important;
}

.newsletter-form .newsletters_submit .btn:hover {
  color: var(--primary) !important;
  background-color: var(--white) !important;
  border-color: var(--primary) !important;
}

.newsletters-subscribe-form .newsletters-field-error {
  text-align: left !important;
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
  background-color: transparent;
  padding: 0;
  border-radius: 0;
  position: absolute;
  left: 0;
  border: 0;
  margin: 0 !important;
}

/* -------------------------------------------------------------------------- */
/*                             Newsletter Form End                            */
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*                        Custom Newsletter Form Start                        */
/* -------------------------------------------------------------------------- */
.custom-newsletter .newsletters-subscribe-form .form-group .form-control {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  box-shadow: none !important;
  outline: 0 !important;
  background-color: var(--white) !important;
  border-color: #66708538 !important;
  border-radius: 50px !important;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 17px;
  padding-right: 17px;
  transition: all 0.3s;
}

.custom-newsletter.custom-newsletter-lg .newsletters-subscribe-form .form-group .form-control {
  padding-top: 19px;
  padding-bottom: 19px;
  padding-left: 26px;
  padding-right: 50px;
}

.custom-newsletter .newsletters_submit {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 !important;
}

.custom-newsletter .newsletters_submit .btn {
  position: relative;
  width: 36px;
  height: 36px;
  min-width: auto;
  padding: 0;
}

.custom-newsletter .newsletters_submit .btn-primary {
  border: 1px solid var(--primary) !important;
  background-color: var(--primary) !important;
  color: var(--white) !important;
}

.custom-newsletter .newsletters_submit .btn-primary:hover,
.custom-newsletter .newsletters_submit .btn-primary:focus {
  background-color: var(--white) !important;
  color: var(--primary) !important;
}

.custom-newsletter .newsletters_submit .btn .newsletters-button-label {
  display: none;
}

.custom-newsletter .newsletters_submit .btn::after {
  content: '\F138';
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

}

.custom-newsletter .newsletters-subscribe-form .newsletters_submit {
  height: auto;
}

/* -------------------------------------------------------------------------- */
/*                        Custom Newsletter Form End                        */
/* -------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------- */
/*                              Main Title Start                              */
/* -------------------------------------------------------------------------- */
.main-title {
  margin-bottom: 100px;
}

.main-title .main-title-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.main-title span {
  font-size: 18px;
  font-weight: 400;
  line-height: 20.61px;
  text-align: center;
  color: var(--primary_color);
  margin-bottom: 20px;
  display: block;
}

.main-title h1,
.main-title h2 {
  font-size: 43px;
  font-weight: 900;
  line-height: 54.27px;
  text-align: center;
  color: var(--text_black_color);
  margin-bottom: 0px;
  text-transform: capitalize;
}

.main-title h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 30.64px;
  margin-bottom: 0;
  color: var(--text_black_color);
}

.main-title h2+p {
  margin-top: 15px;
}

.main-title p {
  font-size: 16px;
  font-weight: 400;
  line-height: 30.6px;
  text-align: center;
  color: var(--text_color);
  margin-top: 15px;
  margin-bottom: 0px;
}

.main-title p a {
  display: inline-block;
  color: var(--primary_color);
  transition: all 0.3s;
}

.main-title p a:hover {
  color: var(--primary_hover_color);
}

/* -------------------------------------------------------------------------- */
/*                               Main Title End                               */
/* -------------------------------------------------------------------------- */

/* section-padding */
.section-padding {
  padding: 70px 0;
}

.section-padding2 {
  padding: 100px 0;
}

/*----------------------------------------- Footer ----------------------------------------- */
.main-footer {
  background-color: var(--bg_dark);
  position: relative;
}

.main-footer .footer-one {
  padding: 80px 0 70px 0;
}

.main-footer .footer-row {
  margin-left: -30px;
  margin-right: -30px;
}

.main-footer .footer-col {
  padding-left: 30px;
  padding-right: 30px;
}

.main-footer hr {
  border-color: #FFFFFF1A;
  opacity: 1;
}

.main-footer .main-footer-contact {
  margin-bottom: 30px;
}

.main-footer .footer-logo img {
  width: auto;
  height: 78px;
  margin-bottom: 24px;
}

.main-footer .main-footer-col .main-footer-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  color: #FFF;
}

.main-footer .main-footer-col .main-footer-item img {
  width: 28px;
  height: 28px;
  margin-right: 10px;
}

.main-footer .main-footer-col .main-footer-item p {
  padding-top: 5px;
  font-size: 18px;
  font-weight: 300;
  line-height: 30.6px;
  opacity: 0.7;
  color: #FFF;
}

.main-footer .main-footer-col .main-footer-item a:hover {
  opacity: 1;
}

.social-links {
  display: flex;
  align-items: center;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-links a {
  flex: 0 0 35px;
  width: 35px;
  height: 35px;
  margin-right: 12px;
  border-radius: 50%;
  border: 1px solid var(--white_color);
  font-size: 18px;
  color: var(--white_color);
  transition: all 0.3s;
  opacity: 0.66;
  cursor: pointer;
}


.social-links a:last-child {
  margin-right: 0;
}

.social-links a i {
  font-size: 17px;
  line-height: normal;
}

.social-links a img {
  width: 21px;
  height: 21px;
  background-size: contain;
  background-position: center center;
}

.social-links a:hover {
  opacity: 1;
}


.main-footer .footer-title {
  margin-bottom: 23px;
  display: flex;
  align-items: flex-start;
}

.main-footer .footer-title h3 {
  font-size: 21px;
  font-weight: 600;
  line-height: 26px;
  margin-bottom: 0px;
  color: var(--white_color);
}

.main-footer .footer-nav {
  list-style: none;
  padding: 0;
}

.main-footer .footer-nav .footer-item {
  margin-bottom: 20px;
}

.main-footer .footer-nav .footer-item:nth-last-of-type(1) {
  margin-bottom: 0;
}

.main-footer .footer-nav .footer-item .footer-link {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px;
  opacity: 0.7;
  display: block;
  color: var(--white_color);
  transition: all 0.3s;
  padding-top: 0;
}


.main-footer .footer-nav .footer-item .footer-link:hover {
  opacity: 1;
}

.main-footer .footer-nav .footer-item-with-image {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.main-footer .footer-nav .footer-item-with-image img {
  width: 26px;
  flex: 0 0 26px;
  height: 26px;
  background-color: #F7F1F11C;
  border-radius: 6px;
  padding: 6px;
  margin-right: 10px;
}

.main-footer .footer-nav .footer-item-with-image a {
  padding-top: 3px;
}


.main-footer .footer-two {
  padding: 38px 0 60px 0;
}


.main-footer .footer-two .contact-list-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left: -8px;
  margin-right: -8px;
}

.main-footer .footer-two .contact-list .contact-list-col {
  padding-left: 8px;
  padding-right: 8px;
  margin: 8px 0;
  max-width: 20%;
  flex: 0 0 20%;
}

.main-footer .footer-two .contact-list .contact-details {
  padding: 17px;
  background-color: #FFFFFF12;
}

.main-footer .footer-two .contact-list .contact-details p {
  font-size: 16px;
  font-weight: 500;
  line-height: 18.32px;
  margin-bottom: 10px;
  color: var(--white_color);
  opacity: 0.7;
}

.main-footer .footer-two .contact-list .contact-details a {
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 0;
  color: var(--white_color);
  word-wrap: break-word;
  white-space: break-spaces;

}

.main-footer .copyrights {
  padding: 26px 0;
  background-color: #fff;
}

.main-footer .copyrights .copyrights-details {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.main-footer .copyrights p {
  color: var(--text_black_color);
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 18px;
  margin-bottom: 0px;
}

.main-footer .copyrights-links {
  display: flex;
  align-items: center;
  margin: 0;
}

.main-footer .copyrights a {
  color: var(--text_black_color);
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 18px;
  margin-bottom: 0px;
  display: block;
  padding-left: 13px;
  margin-left: 13px;
  position: relative;
}

.main-footer .copyrights a:hover {
  color: var(--primary_color);
}

.main-footer .copyrights a::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 70%;
  width: 1px;
  background-color: var(--stock_dark);
}

.main-footer .copyrights li:first-child a:after {
  content: none;
}

.main-footer .copyrights li:first-child a {
  padding-left: 0;
  margin-left: 0;
}

.main-footer .social-links a img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(13%) saturate(0%) hue-rotate(31deg) brightness(107%) contrast(102%);
}

/*----------------------------------------- Footer ----------------------------------------- */

/* content-details start */
.content-details .label {
  display: inline-block;
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  color: var(--black_color);
  margin-bottom: 20px;
}

.content-details h1,
.content-details h2 {
  font-size: 43px;
  font-weight: 900;
  line-height: 54.27px;
  color: var(--text_black_color);
  margin-bottom: 0;
}

.content-details p {
  font-size: 18px;
  font-weight: 400;
  line-height: 30.6px;
  color: var(--text_color);
  margin-bottom: 0;
  word-wrap: break-word;
  word-break: break-all;
  white-space: normal;
}

.content-details p a,
.content-details p span {
  display: inline-block;
  font-weight: 500;
  color: var(--primary_color);
}

.content-details h3+p,
.content-details h2+p,
.content-details h1+p {
  margin-top: 34px;
}

.content-details p+p {
  margin-top: 20px;
}

.content-details .button-group {
  margin-top: 70px;
}

/* content-details end */

/* -------------------------------------------------------------------------- */
/*                             home-page start                                */
/* -------------------------------------------------------------------------- */
/* home-page-banner */
.home-page-banner {
  height: calc(100vh - 116px);
  background-color: var(--white_color);
  overflow: hidden;
}

.home-page-banner .slick-slider .slick-track,
.home-page-banner .slick-slider .slick-list {
  height: calc(100vh - 116px);
}

.home-page-banner .banner-slider-item .banner-image {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.home-page-banner .banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-page-banner .banner-slider-item .banner-item-details {
  position: relative;
  height: 100%;
  width: 100%;
}

.home-page-banner .banner-slider-item .banner-button {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  /* width: 100%;
  height: 100%; */
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 50px;
}

.home-page-banner .banner-slider-item .banner-button .btn {
  position: relative;
  z-index: 2;
}

.home-page-banner .banner-slider-item .banner-item-details::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(96, 108, 93, 0) 70%, rgba(0, 0, 0, 0.87) 100%);
}

.home-page-banner .slick-prev {
  right: calc(100% - 100px);
  top: 50%;
}

.home-page-banner .slick-next {
  right: 100px;
  left: calc(100% - 100px);
  top: 50%;
}

.home-page-banner .slick-arrow {
  padding-bottom: 0;
}


/* home-about */
.home-about {
  padding: 100px 0 30px 0;
}

.home-about .home-about-row {
  margin-left: -45px;
  margin-right: -45px;
  align-items: center;
}

.home-about .home-about-col {
  padding-left: 45px;
  padding-right: 45px;
}

.home-about .home-about-image {}

.home-about .home-about-image .image-grid {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
}

.home-about .home-about-image .image-grid .image-grid-col {
  max-width: 50%;
  flex: 0 0 50%;
}

.home-about .home-about-image .image-grid-item.image-grid-item-2 {
  margin-left: -30px;
  margin-bottom: 73px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.home-about .home-about-image .image-grid-item .image-box {
  border: 12px solid var(--white_color);
  overflow: hidden;
}

.home-about .home-about-image .image-grid-item .image-box.image-1 {
  width: 352px;
  height: 451px;
}

.home-about .home-about-image .image-grid-item .image-box.image-2 {
  height: 400px;
  width: 385px;
}

.home-about .home-about-image .image-grid-item .image-box.image-3 {
  width: 259px;
  height: 254px;
  margin-right: 50px;
  margin-top: -73px;
}

.home-about .home-about-image .image-grid-item .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* counter */
.counter {
  padding: 40px 0 80px 0;
}

.counter .counter-row {
  margin-left: -50px;
  margin-right: -50px;
  /* display: grid;
  grid-template-columns: repeat(4, 1fr); */
  gap: 8px;
  position: relative;
  z-index: 1;
}

.counter .counter-col {
  padding-left: 25px;
  padding-right: 25px;
}


.counter .counter-row {
  display: flex;
}

.counter .counter-col {
  width: 100%;
}

.counter .counter-box {}

.counter .counter-box h6 {
  font-size: 74px;
  font-weight: 900;
  line-height: 92.5px;
  color: var(--text_black_color);
  margin-bottom: 23px;
  word-wrap: break-word;
  white-space: nowrap;
  text-align: center;
}

.counter .counter-box p {
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  color: var(--text_black_color);
  margin-bottom: 0;
  text-align: center;
}

.counter .counter-box h6 span {
  display: inline-block;
}

.counter.scratch-image {
  overflow: inherit;
}

.counter.scratch-image.scratch-image-bottom-right::after {
  right: 0;
  left: auto;
  top: auto;
  bottom: -90px;
}

/* home-why-shreepad */
.home-why-shreepad {
  padding: 100px 0;
  background-color: var(--primary_bg_color);
}

.home-why-shreepad .main-title {
  margin-bottom: 50px;
}

.why-shreepad-card-row {
  margin-left: -12px;
  margin-right: -12px;
  justify-content: center;
}

.why-shreepad-card-row .why-shreepad-card-col {
  padding-left: 12px;
  padding-right: 12px;
  margin-bottom: 20px;
}

.why-shreepad-card {
  border-radius: 0;
  border: 1px solid var(--primary_light_two_color);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  background-color: var(--white_color);
  height: 100%;
}

.why-shreepad-card:hover {
  border-color: var(--primary_color);
}

.why-shreepad-card .card-body {
  padding: 16px;
}

.why-shreepad-card .card-body .card-icon {
  width: 50px;
  max-width: 50px;
  height: 50px;
  margin-bottom: 14px;
}

.why-shreepad-card .card-body .card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.why-shreepad-card .card-body .card-details .card-title {
  font-family: GT Walsheim Pro, sans-serif;
  font-size: 21px;
  font-weight: 500;
  line-height: 27.3px;
  color: var(--black_color);
  margin-bottom: 14px;
}


.why-shreepad-card .card-body .card-details .card-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 27.2px;
  color: var(--text_color);
  margin-bottom: 8px;
}

.why-shreepad-card .card-body .card-details .card-description:nth-last-child(1) {
  margin-bottom: 0;
}

.why-shreepad-card .card-body .card-details .card-description a {
  display: inline-block;
  color: var(--primary_color);
  transition: all 0.3s;
}

.why-shreepad-card .card-body .card-details .card-description a:hover {
  color: var(--primary_hover_color);
}

.why-shreepad-card .card-body .card-details .card-list ul {
  padding-left: 22px;
  margin-bottom: 0;
}

.why-shreepad-card .card-body .card-details .card-list ul li {
  font-size: 16px;
  font-weight: 400;
  line-height: 27.2px;
  color: var(--text_color);
  margin-bottom: 5px;
}

.why-shreepad-card .card-body .card-details .card-list ul li:last-child {
  margin-bottom: 0;
}

/* home-ongoing-projects */
.home-ongoing-projects {
  padding: 100px 0;
}

.home-ongoing-projects .main-title {
  margin-bottom: 60px;
}

.ongoing-projects-tab .projects-tab-content .tab-pane {
  padding-top: 50px;
  padding-bottom: 0;
}

.project-card-row {
  margin-left: -25px;
  margin-right: -25px;
}

.project-card-row .project-card-col {
  padding-left: 25px;
  padding-right: 25px;
}

.project-card {
  border-radius: 0;
  border: 0;
  position: relative;
  overflow: hidden;
  background-color: var(--white_color);
  margin: 0 0 25px 0;
  height: 100%;
}

.project-card .card-body {
  padding: 0;
}

.project-card .card-body .card-image {
  width: 100%;
  height: 264px;
  position: relative;
  overflow: hidden;
}

.project-card .card-body .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card .card-body .card-tag {
  display: inline-block;
  padding: 6px 13px;
  border-bottom-left-radius: 24px;
  border-top-right-radius: 24px;
  background: var(--primary_gradient_color);
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  color: var(--white_color);
  position: absolute;
  left: 12px;
  top: 12px;
}

.project-card .card-body .card-details {
  padding: 20px 0;
}

.project-card .card-body .card-details .card-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 27.2px;
  color: var(--black_color);
  margin-bottom: 8px;
}

.project-card .card-body .card-details .card-list {
  margin-bottom: 11px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  row-gap: 6px;
}

.project-card .card-body .card-details .card-list li {
  padding-right: 9px;
  margin-right: 9px;
  position: relative;
  font-size: 16px;
  font-weight: 400;
  line-height: 20.61px;
  color: var(--text_color);
}

.project-card .card-body .card-details .card-details-text {
  font-weight: 400;
  font-size: 18px;
  line-height: 30.6px;
  letter-spacing: 0;
  color: var(--text_color);
  margin-bottom: 20px !important;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;

}


.project-card .card-body .card-details .card-list li::after {
  content: '|';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #CEC8C8;
}

.project-card .card-body .card-details .card-list li:last-child::after {
  content: none;
}

.project-card .card-body .card-details .card-location {
  display: flex;
  align-items: flex-start;
  margin-bottom: 19px;
}

.project-card .card-body .card-details .card-location .icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  overflow: hidden;
  background-color: var(--primary_light_two_color);
  margin-right: 8px;
}

.project-card .card-body .card-details .card-location .icon img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.project-card .card-body .card-details .card-location .icon img {
  filter: brightness(0) saturate(100%) invert(15%) sepia(11%) saturate(575%) hue-rotate(173deg) brightness(95%) contrast(92%);
}

.project-card .card-body .card-details .card-location a {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  line-height: 20.61px;
  margin-bottom: 0;
  color: var(--text_color);
  transition: all 0.3s;
}

.project-card .card-body .card-details .card-location a:hover {
  color: var(--primary_color);
}

/* why-choose */
.why-choose {
  padding: 100px 0;
  background-color: var(--primary_bg_color);
}

.why-choose .why-choose-row {
  margin-left: -50px;
  margin-right: -50px;
  align-items: center;

}

.why-choose .why-choose-row .why-choose-col {
  padding-left: 50px;
  padding-right: 50px;
}

.why-choose-details .awards-card-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px 45px;
  margin-top: 49px;
}

.awards-card-list .card-item .card-body .card-title {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 19px;
}

.awards-card-list .card-item .card-body .card-title .card-icon {
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
}

.awards-card-list .card-item .card-body .card-title .card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.awards-card-list .card-item .card-body .card-title .card-number h4 {
  font-size: 33px;
  font-weight: 600;
  line-height: 27.3px;
  color: var(--text_black_color);
  margin-bottom: 5px;
}

.awards-card-list .card-item .card-body .card-title .card-number p {
  font-size: 16px;
  font-weight: 700;
  line-height: 18.32px;
  color: var(--text_color);
  margin-bottom: 0;
}

.awards-card-list .card-item .card-body .card-details p {
  font-size: 16px;
  font-weight: 400;
  line-height: 27.2px;
  color: var(--text_color);
  margin-bottom: 0;
}

.why-choose .why-choose-card {
  padding: 45px 60px;
  background-color: #F8EBEB;
  overflow: hidden;
  position: relative;
  min-height: 680px;
}

.why-choose .why-choose-card .why-choose-card-inner .card-number {
  position: relative;
  z-index: 1;
}

.why-choose .why-choose-card .why-choose-card-inner .card-number {
  font-family: GT Walsheim Pro, sans-serif;
  font-size: 176px;
  font-weight: 700;
  line-height: 120px;
  margin-bottom: 10px;
  color: var(--primary_color);
}

.why-choose .why-choose-card .why-choose-card-inner .card-description {
  font-size: 29.74px;
  font-weight: 900;
  line-height: 37.53px;
  color: var(--text_black_color);
  margin: 0;
}

.why-choose .why-choose-card .card-image {
  position: absolute;
  left: 0;
  bottom: 0;
  top: auto;
  width: 100%;
  height: 100%;
  max-height: 450px;
  z-index: 0;
}

.why-choose .why-choose-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* client-testimonials */
.client-testimonials {
  padding: 150px 0 200px 0;
}

.client-testimonials-row {
  position: relative;
  align-items: center;
  z-index: 1;
}

.client-testimonials .slick-arrow {
  margin-top: 50px;
}

.testimonials-image-wrapper .testimonials-item {
  margin: 10px 0;
}

.testimonials-image-wrapper .testimonials-item.slick-slide {
  transform: scale(0.7) translate(649px);
  transition: transform 0.5s;
}

.testimonials-image-wrapper .testimonials-item.slick-active.slick-center {
  transform: scale(1) translate(0);
  transition: transform 0.5s;
  z-index: 5;
}


.testimonials-image-wrapper .testimonials-item .testimonials-image {
  height: 330px;
  gap: 0px;
  border: 7px solid var(--white_color);
  box-shadow: 0 0 8px 2px #1515151a;
}

.testimonials-image-wrapper .testimonials-item .testimonials-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials-details-wrapper {
  padding-left: 50px;
}

.testimonials-details-wrapper .testimonials-item .testimonials-details .label {
  display: inline-block;
  font-size: 18px;
  font-weight: 400;
  line-height: 20.61px;
  margin-bottom: 27px;
  color: var(--primary_color);
}

.testimonials-details-wrapper .testimonials-item .testimonials-details p {
  font-size: 24px;
  font-weight: 500;
  line-height: 30.6px;
  margin-bottom: 0;
  color: var(--text_color);
}

.testimonials-details-wrapper .testimonials-item .testimonials-details p+p {
  margin-top: 20px;
}

.testimonials-details-wrapper .testimonials-item .testimonials-details .client-details {
  margin-top: 27px;
}

.testimonials-details-wrapper .testimonials-item .testimonials-details .client-details .client-name {
  font-size: 27px;
  font-weight: 800;
  line-height: 34.07px;
  margin-bottom: 9px;
  color: var(--text_black_color);
}

.testimonials-details-wrapper .testimonials-item .testimonials-details .client-details p {
  font-size: 16px;
  font-weight: 500;
  line-height: 18.32px;
  margin-bottom: 0;
  color: var(--text_color);
}

.client-testimonials .slick-prev {
  top: calc(100% - 100px);
}

.client-testimonials .slick-next {
  top: calc(100% - 100px);
}

/* -------------------------------------------------------------------------- */
/*                             home-page end                                */
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*                          Project page Start                                */
/* -------------------------------------------------------------------------- */
/* project-list */
.project-list {
  padding: 84px 0;
}

.project-list .project-list-row {
  margin-left: -32px;
  margin-right: -32px;
}

.project-list .project-list-row .project-list-col {
  padding-left: 32px;
  padding-right: 32px;
}

.mobile-project-filter {
  margin-bottom: 25px;
  display: none;
}

.mobile-project-filter .filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.mobile-project-filter .filter-header .filter-header-left {
  display: flex;
  gap: 10px;
  align-items: center;
}

.mobile-project-filter .filter-header .filter-header-left .filter-button {
  position: relative;
  overflow: hidden;
}

.mobile-project-filter .filter-header .filter-header-left .filter-button::after {
  content: '';
  position: absolute;
  top: 10px;
  right: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--primary_color);

}

.mobile-project-filter .filter-header .filter-header-left .filter-button:hover {
  background-color: var(--primary_bg_color);
  color: var(--primary_color);
  border-color: var(--primary_bg_color);
}

.mobile-project-filter .filter-header .filter-header-left .filter-button:hover img {
  filter: inherit;
}

.mobile-project-filter .filter-header .filter-header-left .filter-title h6 {
  font-size: 16px;
  font-weight: 800;
  line-height: 24px;
  text-transform: uppercase;
  color: var(--text_black_color);
  margin-bottom: 3px;
}

.mobile-project-filter .filter-header .filter-header-left .filter-title p {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #667085;
  margin-bottom: 0;
}

.mobile-project-filter .filter-header .filter-header-left .filter-title .btn-link {
  font-weight: 600;
}

.mobile-project-filter .filter-header .filter-header-left .filter-title .btn-link:hover {
  color: var(--secondary_hover_color);
}

.mobile-project-filter .filter-button-group {
  flex-wrap: wrap;
  margin-top: 22px;
}

.mobile-project-filter .filter-button-group button {
  border-radius: 6px;
}

.project-filter-wrapper.sticky-filter {
  position: sticky;
  top: 75px;
}

.project-filter-wrapper .filter-overlay {
  width: 100%;
  position: fixed;
  top: auto;
  bottom: -100%;
  opacity: 0;
  left: 0;
  height: 100%;
  z-index: 999;
  background-color: rgb(0 0 0 / 70%);
  transition: all 0.3s ease-in;
}

.project-filter-wrapper .project-filter {
  border-radius: 10px;
  border: 1px solid #EAECF0;
  background-color: #F8F8F8;
  overflow: hidden;
}

.project-filter hr {
  border-color: var(--stock_dark_2);
  opacity: 1;
  margin: 21px 0;
  width: calc(100% - 41px);
  margin-left: auto;
  margin-right: auto;
}

.project-filter .filter-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  padding: 17px;
  padding-bottom: 0;
}

.project-filter .filter-header .filter-header-left {
  display: flex;
  gap: 10px;
  align-items: center;
}

.project-filter .filter-header .filter-header-left .filter-title h6 {
  font-size: 16px;
  font-weight: 800;
  line-height: 24px;
  text-transform: uppercase;
  color: var(--text_black_color);
  margin-bottom: 3px;
}

.project-filter .filter-header .filter-header-left .filter-title p {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #667085;
  margin-bottom: 0;
}

.project-filter .filter-header .filter-header-left .filter-title .btn-link {
  font-weight: 600;
}

.project-filter .filter-header .filter-header-left .filter-title .btn-link:hover {
  color: var(--secondary_hover_color);
}

.project-filter .filter-body {
  padding: 17px;
  padding-top: 0;
}

.project-filter .filter-body.filter-body-responsive {
  overflow-y: scroll;
  overflow-x: hidden;
  height: calc(100vh - 217px);
  /* background-color: #000000; */
}

.project-filter .filter-body .filter-grid-accordion .accordion-item {
  background-color: transparent;
  border-color: transparent;
  border-bottom: 1px solid var(--stock_dark_2);
  margin-bottom: 22px;
  padding-bottom: 22px;
}

.project-filter .filter-body .filter-grid-accordion .accordion-item:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.project-filter .filter-body .filter-grid-accordion .accordion-header {
  border-radius: 0;
  background-color: transparent;
}

.project-filter .filter-body .filter-grid-accordion .accordion-header .accordion-button {
  background-color: transparent;
  padding: 0;
  box-shadow: none;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  color: #344054;
}

.project-filter .filter-body .filter-grid-accordion .accordion-header .accordion-button:not(.collapsed) {
  color: #344054;
}

.project-filter .filter-body .filter-grid-accordion .accordion-header .accordion-button::after,
.project-filter .filter-body .filter-grid-accordion .accordion-header .accordion-button:not(.collapsed)::after {
  width: 18px;
  height: 18px;
  background-image: url("../images/icons/accordion-arrow-black.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}


.project-filter .filter-body .filter-grid-accordion .accordion-header .accordion-button:focus,
.project-filter .filter-body .filter-grid-accordion .accordion-header .accordion-button:focus-visible {
  box-shadow: none;
}

.project-filter .filter-body .filter-grid-accordion .accordion-body {
  padding: 0;
  padding-top: 22px;
}

.project-filter .filter-body .accordion-body ul {
  margin-bottom: 0;
}

.project-filter .filter-body .accordion-body .filter-checkbox li {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 17px;
}

.project-filter .filter-body .accordion-body .filter-checkbox li:last-child {
  margin-bottom: 0;
}

.project-filter .filter-body .accordion-body .filter-checkbox li .checkbox.checkbox-small [type=checkbox]+label {
  color: var(--text_color);
}

.project-filter .filter-body .accordion-body .filter-checkbox li span {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin: 0;
  color: var(--text_color);
}

.project-filter .filter-body .accordion-body .filter-button-group ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 10px;
}

.project-filter .filter-body .accordion-body .filter-button-group li {
  padding: 8px 14px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--stock_light);
  background-color: var(--white_color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--text_black_color);
  transition: all 0.3s;
  cursor: pointer;
}

.project-filter .filter-body .accordion-body .filter-button-group li:hover {
  border-color: var(--primary_color);
}

.project-filter .filter-body .accordion-body .filter-button-group li.active,
.project-filter .filter-body .accordion-body .filter-button-group li:active {
  background-color: var(--primary_color);
  color: var(--white_color);
}

.project-filter .filter-footer {
  padding: 10px 17px;
  position: sticky;
  bottom: 0;
  left: 0;
  top: auto;
  right: 0;
  background-color: var(--white_color);
  border-top: 1px solid var(--stock_light);
  display: none;
}

.project-filter .filter-footer .filter-footer-group {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  width: 100%;
}

.project-filter .filter-footer .filter-footer-group.full-width-btn button {
  width: 100%;
}

.project-list {}

/* -------------------------------------------------------------------------- */
/*                          Project page End                                */
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*                     Project Detail page Start                                */
/* -------------------------------------------------------------------------- */
.project-banner {
  height: calc(100vh - 116px);
  background-color: #837a94;
  position: relative;
  overflow: hidden;
  /* display: flex;
  align-items: flex-end; */
}

.project-banner .slick-slider .slick-track,
.project-banner .slick-slider .slick-list {
  height: 100%;
  width: 100%;
}


.project-banner::after {
  content: '';
  width: 100%;
  height: 1px;
  position: absolute;
  top: auto;
  bottom: 73px;
  left: 0;
  right: 0;
  z-index: 2;
  background-color: #FFFFFF3D;
}

.project-banner .project-banner-container {
  /* padding-left: 50px;
  padding-right: 50px; */
  height: 100%;
}

.project-banner .project-banner-inner {
  /* height: 100%;
  display: flex;
  align-items: flex-end; */

  height: 100%;
  width: 100%;
  position: relative;
  z-index: 2;
}

.project-banner .project-banner-item {
  margin-bottom: 50px;
  display: flex;
  align-items: flex-end;
}

.project-banner .project-banner-item .project-banner-item-inner {
  width: 100%;
  margin-bottom: 123px;
  padding-left: 100px;
  padding-right: 100px;
}

.project-banner .project-banner-item .banner-details,
.mobile-projects-details .project-banner-item .banner-details {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 27px 12px;
}

.project-banner .project-banner-item .banner-details .banner-details-right,
.mobile-projects-details .project-banner-item .banner-details .banner-details-right {
  max-width: 500px;
}

.project-banner .project-banner-item .banner-details .banner-details-text,
.mobile-projects-details .project-banner-item .banner-details .banner-details-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.project-banner .project-banner-item .banner-details .banner-details-text h2,
.mobile-projects-details .project-banner-item .banner-details .banner-details-text h2 {
  font-size: 64px;
  font-weight: 600;
  line-height: 77.63px;
  color: var(--white_color);
  margin-bottom: 0;
}

.project-banner .project-banner-item .banner-details .banner-details-text .location,
.mobile-projects-details .project-banner-item .banner-details .banner-details-text .location {
  display: flex;
  align-items: center;
}

.project-banner .project-banner-item .banner-details .banner-details-text .location .icon,
.mobile-projects-details .project-banner-item .banner-details .banner-details-text .location .icon {
  width: 28px;
  height: 28px;
  background-color: #F7F1F14D;
  border-radius: 6px;
  overflow: overlay;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}

.project-banner .project-banner-item .banner-details .banner-details-text .location .icon img,
.mobile-projects-details .project-banner-item .banner-details .banner-details-text .location .icon img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.project-banner .project-banner-item .banner-details .banner-details-text .location a,
.mobile-projects-details .project-banner-item .banner-details .banner-details-text .location a {
  display: inline-block;
  font-size: 18px;
  font-weight: 400;
  line-height: 20.61px;
  color: var(--white_color);
  margin: 0;
}

.project-banner .project-banner-item .banner-details .banner-details-list ul,
.mobile-projects-details .project-banner-item .banner-details .banner-details-list ul {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 38px 0;
}

.project-banner .project-banner-item .banner-details .banner-details-list ul li,
.mobile-projects-details .project-banner-item .banner-details .banner-details-list ul li {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 50%;
  width: 50%;
  padding: 0 10px;
}

.project-banner .project-banner-item .banner-details .banner-details-list .icon,
.mobile-projects-details .project-banner-item .banner-details .banner-details-list .icon {
  width: 34px;
  height: 34px;
  margin-right: 10px;
}

.project-banner .project-banner-item .banner-details .banner-details-list .icon img,
.mobile-projects-details .project-banner-item .banner-details .banner-details-list .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.project-banner .project-banner-item .banner-details .banner-details-list .box-desc span,
.mobile-projects-details .project-banner-item .banner-details .banner-details-list .box-desc span {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  line-height: 16.03px;
  color: var(--white_color);
  opacity: 0.7;
  margin-bottom: 5px;
}

.project-banner .project-banner-item .banner-details .banner-details-list .box-desc p,
.mobile-projects-details .project-banner-item .banner-details .banner-details-list .box-desc p {
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  color: var(--white_color);
  margin: 0;
}

.project-banner .project-banner-item .banner-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
}

.project-banner .banner-image::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(96, 108, 93, 0) 0%, rgba(0, 0, 0, 0.87) 100%);
}

.project-banner .project-banner-item .banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-banner .project-banner-footer {
  position: absolute;
  padding: 24px 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
}

.project-banner .project-banner-footer .footer-container {
  padding-left: 100px;
  padding-right: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.project-banner .project-banner-footer .footer-details p {
  font-size: 12px;
  font-weight: 400;
  line-height: 17px;
  color: var(--white_color);
  margin: 0;
  text-transform: uppercase;
}

.project-banner .project-banner-footer .footer-details .rera-text {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3px 0;
}

.project-banner .project-banner-footer .footer-details .rera-text li {
  position: relative;
  font-size: 12px;
  font-weight: 400;
  line-height: 17px;
  color: var(--white_color);
  margin: 0;
  text-transform: uppercase;
  padding-left: 7px;
  padding-right: 7px;
  word-wrap: break-word;
  word-break: break-all;
  white-space: normal;
}

.project-banner .project-banner-footer .footer-details .rera-text li:first-child {
  padding-left: 0;
}

.project-banner .project-banner-footer .footer-details .rera-text li:first-child::after {
  content: none;
}

.project-banner .project-banner-footer .footer-details .rera-text li::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 10px;
  background-color: var(--white_color);
}

.project-banner .project-banner-footer .project-banner-arrow {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 18px;
}

.project-banner .project-banner-footer .project-banner-arrow button {
  border: 0;
  padding: 0;
  background-color: transparent;
}

.project-banner .project-banner-footer .project-banner-arrow button img {
  width: 42.49px;
  height: 16px;
  object-fit: contain;
}

/* mobile-projects-details */
.mobile-projects-details {
  padding: 30px 0 40px 0;
  display: none;
}

.mobile-projects-details .project-banner-item .banner-details .banner-details-text h2 {
  color: var(--text_black_color);
}

.mobile-projects-details .project-banner-item .banner-details .banner-details-text .location .icon {
  background-color: #AD29291A;
}

.mobile-projects-details .project-banner-item .banner-details .banner-details-text .location a {
  color: var(--text_color);
}

.mobile-projects-details .project-banner-item .banner-details .banner-details-list .box-desc span {
  color: var(--text_black_color);
}

.mobile-projects-details .project-banner-item .banner-details .banner-details-list .box-desc p {
  color: var(--text_color);
}

.mobile-projects-details .project-banner-item .banner-details .banner-details-text .location .icon img,
.mobile-projects-details .project-banner-item .banner-details .banner-details-list .icon img {
  filter: brightness(0) saturate(100%) invert(26%) sepia(58%) saturate(3581%) hue-rotate(347deg) brightness(71%) contrast(85%);
}

/* project-page-menu */
.project-page-menu {
  padding: 60px 0 30px 0;
}

.project-page-menu .page-menu-nav .menu {
  display: flex;
  align-items: center;
  gap: 17px;
  overflow-y: auto;
  margin-bottom: 2px;
  border-bottom: 1px solid var(--stock_primary);
  padding-bottom: 30px;
}

.project-page-menu .page-menu-nav .menu .menu-item .nav-link {
  display: inline-block;
  font-family: Gilroy, sans-serif;
  padding: 17px 24px;
  font-size: 18px;
  font-weight: 700;
  line-height: 22.28px;
  color: var(--text_black_color);
  background-color: var(--white_color);
  border: 1px solid transparent;
  border-radius: 14px;
  white-space: nowrap;
  transition: all 0.3s;
  cursor: pointer;
}

.project-page-menu .page-menu-nav .menu .menu-item .nav-link.active,
.project-page-menu .page-menu-nav .menu .menu-item .nav-link:active {
  color: var(--primary_color);
  background-color: #AD29291A;
  border-color: transparent;
}

.project-page-menu .page-menu-nav .menu .menu-item .nav-link.active:hover {
  border-color: transparent;
}

.project-page-menu .page-menu-nav .menu .menu-item .nav-link:hover {
  color: var(--primary_color);
  border-color: var(--primary_color);
}

/* page-menu sticky css start */
.page-menu.sticky-header {
  animation: slide-down 0.5s;
  opacity: 1;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
  width: 100%;
  border-bottom: 1px solid var(--white_color);
  box-shadow: 0px 5px 12px 0px rgba(75, 75, 75, 0.1);
  background-color: var(--white_color);
  padding: 8px 0;
  /* transition: ease-in-out 0.5s; */
}

.page-menu.sticky-header .page-menu-nav .menu {
  margin-bottom: 2px;
  border-bottom: 0;
  padding-bottom: 0;
}

.page-menu.sticky-header .page-menu-nav .menu .menu-item .nav-link {
  padding: 6px 10px;
  font-size: 14px;
  line-height: 20px;
  border-radius: 7px;
}

.page-menu.sticky-header {
  z-index: 997;
}

@keyframes slide-down {
  0% {
    opacity: 5;
    transform: translateY(-100%)
  }

  100% {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes slide-top {
  0% {
    opacity: 5;
    transform: translateY(0%)
  }

  100% {
    opacity: 1;
    transform: translateY(100%)
  }
}

.page-header-sticky .site {
  margin-top: 52px;
}

/* page-menu sticky css end */


/* project-details-section */
.project-details-section {
  padding: 30px 0 100px 0;
  border-bottom: 1px solid var(--stock_primary);
  overflow: hidden !important;
}

.project-details-row {
  margin-left: -50px;
  margin-right: -50px;
  align-items: center;
}

.project-details-row .project-details-col {
  padding-left: 50px;
  padding-right: 50px;
}

.project-details-row .project-details-col:nth-child(2) {
  border-left: 1px solid var(--stock_primary);
}

.project-details-section .project-details .button-group {
  margin-top: 40px;
}

.project-details-section .project-details-list li {
  font-size: 16px;
  font-weight: 400;
  line-height: 27.2px;
  margin-bottom: 13px;
  color: var(--text_color);
  text-transform: capitalize;
}

.project-details-section .project-details-list li ul {
  list-style-type: none;
  color: var(--text_color);
  margin-top: 7px;
  margin-bottom: 0;
  padding: 0;
}

.project-details-section .project-details-list li ul li {
  font-size: 14px;
  line-height: 23px;
  padding-left: 15px;
  margin-bottom: 8px;
  position: relative;
}

.project-details-section .project-details-list li ul li strong {
  text-transform: uppercase;
  font-weight: 600;
}

.project-details-section .project-details-list li ul li::after {
  content: "\F287";
  font-family: "bootstrap-icons";
  font-size: 5px;
  line-height: normal;
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary_color);
}

.project-details-section .project-details-list li:last-child {
  margin-bottom: 0;
}

.project-details-section .project-details-list li span {
  display: inline-block;
  font-weight: 700;
  color: var(--primary_color);
  margin-right: 3px;
  word-wrap: break-word;
  white-space: nowrap;
}

.project-details-section .project-details-list li hr {
  max-width: 50px;
  border: 1.2px solid var(--stock_primary);
  opacity: 1;
  margin: 13px 0;
}

/* project-location */
.project-location {
  padding: 100px 0;
  border-bottom: 1px solid var(--stock_primary);
}

.project-location-row {
  margin-left: -30px;
  margin-right: -30px;
  position: relative;
  z-index: 2;
}

.project-location-row .project-location-col {
  padding-left: 30px;
  padding-right: 30px;
}

.project-location .project-location-details .location-list {
  margin-top: 49px;
}

.project-location .project-location-details .location-list ul {
  margin-bottom: 0;
}

.project-location .project-location-details .location-list li {
  margin-bottom: 20px;
}

.project-location .project-location-details .location-list li:last-child {
  margin-bottom: 0;
}

.project-location .project-location-details .location-list li span {
  font-family: Gilroy, sans-serif;
  display: inline-block;
  font-size: 24px;
  font-weight: 700;
  line-height: 27.2px;
  margin-bottom: 10px;
  color: var(--primary_color);
}

.project-location .project-location-details .location-list li a {
  display: block;
  font-size: 18px;
  font-weight: 500;
  line-height: 30.6px;
  margin: 0;
  color: var(--text_black_color);
  transition: all 0.3s;
}

.project-location .project-location-details .location-list li a:hover {
  color: var(--primary_color);
}

.project-location .location-map {
  height: 500px;
  border-radius: 28px;
  overflow: hidden;
}

.project-location .location-map iframe {
  width: 100%;
  height: 100%;
}

/* project-gallery */
.project-gallery {
  padding: 100px 0 120px 0;
  border-bottom: 1px solid var(--stock_primary);
  overflow-y: inherit;
}

.project-gallery.scratch-image2 {
  overflow: inherit;
}

.project-gallery.scratch-image2.scratch-image-top-right::after {
  top: -200px;
  right: 120px;
}

.project-gallery .main-title {
  position: relative;
  z-index: 2;
  margin-bottom: 70px;
}


.project-gallery-row {
  margin-left: -15px;
  margin-right: -15px;
}

.project-gallery-row .project-gallery-col {
  padding-left: 15px;
  padding-right: 15px;
}

.project-gallery-card {
  border: 0;
  box-shadow: none;
  border-radius: 0;
  overflow: hidden;
  background-color: var(--white_color);
  margin: 12px 0;
  height: 450px;
  position: relative;
}

.project-gallery-card .card-body {
  height: 100%;
}

.project-gallery-card .card-body .card-image,
.project-gallery-card .card-body .card-video {
  width: 100%;
  height: 100%;
  position: relative;
}

.project-gallery-card .card-body .card-image img,
.project-gallery-card .card-body .card-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 0;
}

.project-gallery-card .card-body .card-video .card-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  max-width: 56px;
  z-index: 1;
  opacity: 0.77;
  display: none;
}

.project-gallery-card:hover .card-body .card-video .card-icon {
  opacity: 1;
}

.project-gallery-card .card-body .card-video .card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.project-gallery-card a {
  position: relative;
}

.project-gallery-card a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  cursor: pointer;
}

.project-gallery-card .card-label {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  display: inline-block;
  background-color: #313033E5;
  padding: 16px;
  font-size: 24px;
  font-weight: 600;
  line-height: 27.2px;
  color: var(--white_color);
  border: 1px solid var(--white_color);
  z-index: 2;
  text-align: center;
  word-wrap: break-word;
  word-break: break-word;
  white-space: normal;
  transition: all 0.3s;
  opacity: 0.8;
  text-transform: uppercase;
  min-width: 280px;
}

.project-gallery-card:hover .card-label {
  opacity: 1;
}

.explore-card {
  padding: 22px 39px 22px 22px;
  border-radius: 32px;
  overflow: hidden;
  background-color: #FAF6EC;
  margin-top: 50px;
}

.explore-card .explore-card-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px 12px;
}

.explore-card .card-info {
  max-width: 80%;
  flex: 0 0 80%;
  display: flex;
  align-items: center;
}

.explore-card .card-info .card-image {
  max-width: 342px;
  flex: 0 0 342px;
  height: auto;
  overflow: hidden;
  border-radius: 12px;
  margin: 0 32px 0 0;
}

.explore-card .card-info .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.explore-card .card-info .card-details h3 {
  font-size: 43px;
  font-weight: 800;
  line-height: 54.27px;
  color: var(--text_black_color);
  margin-bottom: 7px;
}

.explore-card .card-info .card-details p {
  font-size: 16px;
  font-weight: 400;
  line-height: 27.2px;
  color: var(--text_color);
  margin-bottom: 0;
}

.explore-card .card-icon {
  max-width: 18%;
  flex: 0 0 18%;
  display: flex;
  justify-content: flex-end;
}

/* project-plan */
.project-plan {
  padding: 100px 0;
  overflow-y: inherit;
}

.project-plan.scratch-image2 {
  overflow: inherit;
}

.project-plan.scratch-image2.scratch-image-top-right::after {
  top: -120px;
  right: 120px;
}

.project-plan .main-title {
  position: relative;
  z-index: 2;
  margin-bottom: 60px;
}

.project-plan .project-plan-tab {
  position: relative;
  z-index: 2;
}

.project-plan .project-plan-tab .form-select {
  font-weight: 600;
  color: var(--text_black_color);
  border-bottom: 0;
}

.project-plan .project-plan-tab .select-filter {
  border-right: 1px solid var(--stock_dark);
}

.project-plan .plan-tab-content .plan-row {
  margin-left: -60px;
  margin-right: -60px;
}

.project-plan .plan-tab-content .plan-row .plan-col {
  padding-left: 60px;
  padding-right: 60px;
}


.project-plan .plan-tab-content .plan-details-list {
  margin-bottom: 44px;
}

.project-plan .plan-tab-content .plan-title h4 {
  font-family: GT Walsheim Pro, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 27.48px;
  color: var(--black_color);
  margin-bottom: 20px;
}

.project-plan .plan-tab-content .plan-details-list ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 0;
}

.project-plan .plan-tab-content .plan-details-list li {
  margin-right: 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 16.03px;
  color: var(--text_color);
}

.project-plan .plan-tab-content .plan-details-list li:last-child {
  margin-right: 0;
}

.project-plan .plan-tab-content .plan-details-list li span {
  display: inline-block;
  margin-right: 3px;
  font-weight: 600;
  color: var(--text_black_color);
}

.project-plan .plan-tab-content .plan-space {
  min-height: 90px;
}

.project-plan .plan-tab-content .plan-image {
  margin: 0 auto;
  width: 100%;
  max-width: 500px;
}

.project-plan .plan-tab-content .plan-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* project-status */
.project-status {
  padding: 55px 0;
  background-color: #FAF6EC;
}

.project-status .main-title {
  margin-bottom: 30px;
}

.status-wrapper .status-progress .progress {
  background-color: var(--white_color);
  border-radius: 49px;
  border: 10px solid #ffff;
  height: 37px;
}

.status-wrapper .status-progress .progress .progress-bar {
  background-color: var(--primary_color);
  border-radius: 35px;
}

.status-wrapper .status-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 31px;
}

.status-wrapper .status-footer .status-footer-left {
  text-align: start;
}

.status-wrapper .status-footer .status-footer-right {
  text-align: end;
}

.status-wrapper .status-footer p {
  font-family: Gilroy, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 24.76px;
  margin-bottom: 8px;
  color: var(--black_color);
}

.status-wrapper .status-footer span {
  display: inline-block;
  font-family: Gilroy, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 19.81px;
  margin: 0;
  color: var(--black_color);
}

/* project-amenities */
.project-amenities {
  padding: 92px 0;
}

.project-amenities.scratch-image2.scratch-image-top-right::after {
  width: 260px;
  height: 250px;
  top: -60px;
  right: 120px;
}

.project-amenities .main-title {
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.project-amenities .project-amenities-row {
  position: relative;
  z-index: 2;
}

.project-amenities .amenities-card {
  border-radius: 0;
  box-shadow: none;
  border: 1px solid var(--stock_light);
  background-color: var(--white_color);
  margin-bottom: 20px;
  transition: all 0.3s;
}

.project-amenities .amenities-card:hover {
  border-color: var(--primary_color);
  background-color: var(--primary_bg_color);
}

.project-amenities .amenities-card .card-body {
  padding: 20px 17px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.project-amenities .amenities-card .card-body .card-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
}

.project-amenities .amenities-card .card-body .card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.project-amenities .amenities-card .card-body .card-details p {
  font-size: 17px;
  font-weight: 400;
  line-height: 20.61px;
  color: var(--text_black_color);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  white-space: normal;
  overflow: hidden;
}

/* project-amenities-slider */

.project-amenities-slider .slick-slider {
  margin: 0 -10px;
}

.project-amenities-slider .slick-slide {
  margin-right: 10px;
  margin-left: 10px;
}


/* project-specifications  */
.project-specifications {
  padding: 55px 0 90px 0;
  background-color: var(--bg_light);
}

.project-specifications.scratch-image2.scratch-image-top-right::after {
  top: -120px;
  right: 120px;
}

.project-specifications .main-title {
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.project-specifications .why-shreepad-card-row {
  position: relative;
  z-index: 2;
}

.project-specifications .slick-arrow {
  padding-bottom: 80px;
}

.project-specifications .why-shreepad-card {
  min-height: 300px;
  overflow-y: auto;
  max-height: 300px;
  height: 100%;
}

/* project-contact-us */
.project-contact-us {
  padding: 100px 0 50px 0;
}

.project-contact-us .project-contact-us-info {
  padding: 60px 55px;
  background-color: #FAF6EC;
}

.project-contact-us .project-contact-us-info .main-title {
  margin-bottom: 40px;
}

.contact-us-card {
  border-radius: 0;
  margin: 10px 0;
  border: 0;
  outline: 0;
  box-shadow: none;
}



.contact-us-card .card-body {
  padding: 20px;
  background-color: var(--white_color);
  border: 1px solid var(--white_color);
  outline: 1px solid var(--white_color);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.3s ease;
}

.contact-us-card .card-body:hover {
  border-color: var(--primary_color);
}

.contact-us-card .card-body .card-icon {
  width: 40px;
  height: 40px;
}

.contact-us-card .card-body .card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-us-card .card-body .card-info p {
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  color: var(--text_color);
  margin-bottom: 7px;
}

.contact-us-card .card-body .card-info a {
  font-size: 18px;
  color: var(--black_color);
  margin-bottom: 0;
  transition: all 0.3s;
  gap: 0 9px;
}

.contact-us-card .card-body .card-info a:hover {
  color: var(--primary_color);
}



/* project-contact-us-two */

.project-contact-us-two {
  padding: 100px 0 50px 0;
}

.project-contact-us-two .project-contact-us-row {
  padding: 45px 30px;
  background-color: #FAF6EC;
  margin-left: -30px;
  margin-right: -30px;
  position: relative;
}


.project-contact-us-two .project-contact-us-row .project-contact-us-col {
  padding-left: 30px;
  padding-right: 30px;
  z-index: 2;
}

.project-contact-us-two .project-contact-us-info .main-title {
  margin-bottom: 40px;
}

.project-contact-us-two .project-contact-form {
  padding: 24px;
  background-color: var(--white_color);
}

.project-contact-form .form-group .form-control,
.project-contact-form .form-group .form-select,
.project-contact-form .form-group .search-field {
  border-color: var(--stock_light);
}

.project-contact-form .form-group .form-control:hover,
.project-contact-form .form-group .form-select:hover,
.project-contact-form .form-group .search-field:hover {
  border-color: var(--primary_color);
}

.project-contact-us-two .scratch-image::after {
  width: 500px;
  height: 240px;
  opacity: 0.7;
}

/* project-brochure-section */
.project-brochure-section {
  padding: 30px 0 100px 0;
  border-bottom: 1px solid var(--stock_primary);
}

.project-brochure-row {
  margin-left: -50px;
  margin-right: -50px;
  align-items: center;
}

.project-brochure-row .project-brochure-col {
  padding-left: 50px;
  padding-right: 50px;
}

.project-brochure-row .project-brochure-col:last-child {
  border-left: 1px solid var(--stock_primary);
}

.project-brochure-section .project-brochure-details .button-group {
  margin-top: 40px;
}

.project-brochure-section .project-brochure-image {
  width: 100%;
  height: auto;
}

.project-brochure-section .project-brochure-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* project-ongoing */
.project-ongoing {
  padding: 80px 0;
}

.project-ongoing .main-title {
  margin-bottom: 55px;
}

.project-ongoing .slick-arrow {
  padding-bottom: 80px;
}

/* -------------------------------------------------------------------------- */
/*                       Project Detail page End                                */
/* -------------------------------------------------------------------------- */

/* inner-page-banner start */
.inner-page-banner {
  background-color: var(--secondary_bg_color);
  padding: 42px 0px;
  position: relative;
}

.inner-page-banner .inner-page-banner-text h1,
.inner-page-banner .inner-page-banner-text strong {
  font-size: 33px;
  font-weight: 900;
  line-height: 41.65px;
  text-align: left;
  color: var(--text_black_color);
  margin-bottom: 8px;
  text-transform: capitalize;
}

.inner-page-banner .inner-page-banner-text strong {
  display: inline-block;
  font-weight: 800;
}

.inner-page-banner::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../images/banner-bg/Awards-banner-bg.png);
  width: 311px;
  height: 100%;
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
}

.inner-page-banner.banner-about::before {
  background-image: url(../images/banner-bg/about-banner-bg.png);
}

.inner-page-banner.banner-testimonials::before {
  background-image: url(../images/banner-bg/testimonials-banner-bg.png);
}

.inner-page-banner.banner-blog::before {
  background-image: url(../images/banner-bg/blog-banner-bg.png);
}

.inner-page-banner.banner-contact::before {
  background-image: url(../images/banner-bg/blog-banner-bg.png);
}

.inner-page-banner.banner-contact::before {
  background-image: url(../images/banner-bg/blog-banner-bg.png);
}

.inner-page-banner.banner-project::before {
  content: none;
}

/* inner-page-banner end */

/* -------------------------------------------------------------------------- */
/*                              Awards page end                             */
/* -------------------------------------------------------------------------- */
.our-team,
.awards {
  padding: 100px 0px;
}

.our-team-card,
.awards-card {
  margin-bottom: 40px;
  cursor: none;
}

.our-team-card .our-team-card-image,
.awards-card .awards-card-image {
  width: 100%;
  height: 296px;
}

.our-team-card .our-team-card-image img,
.awards-card .awards-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  filter: grayscale(100%);
}


.our-team-card .our-team-card-text,
.awards-card .awards-card-text {
  padding: 27px 10px;
  background-color: #F2F3F6;
}

.our-team-card .our-team-card-text h6,
.awards-card .awards-card-text h6 {
  font-family: GT Walsheim Pro;
  font-size: 22px;
  font-weight: 700;
  line-height: 31.2px;
  text-align: center;
  color: var(--text_black_color);
  margin-bottom: 13px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  white-space: normal;
  overflow: hidden;
  height: 62px;
}

.our-team-card .our-team-card-text .our-team-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 42px;
  margin-top: 32px;
}

.our-team-card .our-team-card-text .our-team-social i {
  color: var(--text_black_color);
  font-size: 18px;
  line-height: 18px;
}

.our-team-card .our-team-card-text p,
.awards-card .awards-card-text p {
  font-size: 16px;
  font-weight: 400;
  line-height: 27.2px;
  text-align: center;
  color: var(--text_color);
  margin-bottom: 0px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  white-space: normal;
  overflow: hidden;
  height: 54px;
}

.our-team-card:hover,
.awards-card:hover {
  cursor: pointer;
}

.our-team-card:hover .our-team-card-image img,
.awards-card:hover .awards-card-image img {
  filter: unset;
}

.our-team-card:hover .our-team-card-text,
.awards-card:hover .awards-card-text {
  background-color: var(--secondary_bg_color);
}

/* -------------------------------------------------------------------------- */
/*                              Awards page end                             */
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*                          Single-awards page start                          */
/* -------------------------------------------------------------------------- */
.single-awards {
  padding: 100px 0px;
}


.single-awards .single-awards-image-full,
.single-awards .single-awards-image {
  max-width: 100%;
  background-color: #AD29291A;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
  padding: 10px;
}

.single-awards .single-awards-image-full {
  padding: 0px;
}

.single-awards .single-awards-image-full img {
  object-fit: cover;
}

.single-awards .single-awards-image img {
  width: auto;
  height: auto;
}

.single-awards .single-awards-text {
  margin-bottom: 42px;
}



.single-awards .single-awards-text p+h1,
.single-awards .single-awards-text p+h2,
.single-awards .single-awards-text p+h3,
.single-awards .single-awards-text p+h4,
.single-awards .single-awards-text p+h5,
.single-awards .single-awards-text p+h6 {
  margin-top: 12px;
}

.single-awards .single-awards-text h1,
.single-awards .single-awards-text h2,
.single-awards .single-awards-text h3,
.single-awards .single-awards-text h4,
.single-awards .single-awards-text h5,
.single-awards .single-awards-text h6 {
  font-family: GT Walsheim Pro;
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
  color: var(--text_black_color);
  margin-bottom: 24px;
}


.single-awards .single-awards-text h1 {
  font-size: 40px;
}

.single-awards .single-awards-text h2 {
  font-size: 36px;
}

.single-awards .single-awards-text h3 {
  font-size: 30px;
}

.single-awards .single-awards-text h4 {
  font-size: 26px;
}

.single-awards .single-awards-text h5 {
  font-size: 24px;
}

.single-awards .single-awards-text h6 {
  font-size: 21px;
}

.single-awards .single-awards-text p,
.single-awards .single-awards-text ul li {
  font-size: 16px;
  font-weight: 400;
  line-height: 27.2px;
  text-align: left;
  color: var(--text_color);
  margin-bottom: 18px;
}

.single-awards .single-awards-text ul li {
  margin-bottom: 5px;
}

.single-awards .single-awards-text p a {
  color: var(--primary_color);
}

.single-awards .single-awards-text a {
  word-wrap: break-word;
  word-break: break-word;
  white-space: normal;
}

.single-awards .single-awards-text p:last-child {
  margin-bottom: 0px;
}

.single-awards .single-awards-text .table {
  margin-bottom: 42px;
}

.single-awards .single-awards-text .table thead tr th {
  background-color: #FFD9D9;
  color: var(--primary_color);
  border-bottom: 0px;
}

.single-awards .single-awards-text .table thead tr th:first-child {
  border-top-left-radius: 5px;
}

.single-awards .single-awards-text .table thead tr th:last-child {
  border-top-right-radius: 5px;
}

.single-awards .single-awards-text .table tbody tr td {
  background-color: transparent;
  color: var(--text_color);
  border: 0px;
  padding: 12px;
}

.single-awards .single-awards-text .quote {
  background-color: #FFFCF5;
  padding: 23px 30px;
  position: relative;
  margin-bottom: 20px;
}

.single-awards .single-awards-text .quote::before {
  content: '"';
  position: absolute;
  left: 10px;
  top: -20px;
  font-size: 170px;
  line-height: 170px;
  color: var(--primary_color);
  font-weight: 700;
  opacity: 0.3;
  font-family: 'Gilroy';
  transform: rotate(0deg);
}

.single-awards .single-awards-text .quote p {
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: 27.2px;
  text-align: left;
  color: var(--text_color);
  margin-bottom: 0px;

}

.single-awards .single-awards-text img {
  width: auto;
  max-height: 300px;
  object-fit: contain;

}

/* -------------------------------------------------------------------------- */
/*                          Single-awards page end                          */
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*                          single-shreepad-seo page start                          */
/* -------------------------------------------------------------------------- */
.single-shreepad-seo {
  padding: 70px 0px 50px 0;
}

.single-shreepad-seo .single-shreepad-seo-text {
  margin-bottom: 42px;
}

.single-shreepad-seo .single-shreepad-seo-text p+h1,
.single-shreepad-seo .single-shreepad-seo-text p+h2,
.single-shreepad-seo .single-shreepad-seo-text p+h3,
.single-shreepad-seo .single-shreepad-seo-text p+h4,
.single-shreepad-seo .single-shreepad-seo-text p+h5,
.single-shreepad-seo .single-shreepad-seo-text p+h6 {
  margin-top: 12px;
}

.single-shreepad-seo .single-shreepad-seo-text h1,
.single-shreepad-seo .single-shreepad-seo-text h2,
.single-shreepad-seo .single-shreepad-seo-text h3,
.single-shreepad-seo .single-shreepad-seo-text h4,
.single-shreepad-seo .single-shreepad-seo-text h5,
.single-shreepad-seo .single-shreepad-seo-text h6 {
  font-family: GT Walsheim Pro;
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
  color: var(--text_black_color);
  margin-bottom: 16px;
}

.single-shreepad-seo .single-shreepad-seo-text h1 {
  font-size: 40px;
}

.single-shreepad-seo .single-shreepad-seo-text h2 {
  font-size: 36px;
}

.single-shreepad-seo .single-shreepad-seo-text h3 {
  font-size: 30px;
}

.single-shreepad-seo .single-shreepad-seo-text h4 {
  font-size: 26px;
}

.single-shreepad-seo .single-shreepad-seo-text h5 {
  font-size: 24px;
}

.single-shreepad-seo .single-shreepad-seo-text h6 {
  font-size: 22px;
}

.single-shreepad-seo .single-shreepad-seo-text p,
.single-shreepad-seo .single-shreepad-seo-text ul li {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  color: var(--text_color);
  margin-bottom: 18px;
}

.single-shreepad-seo .single-shreepad-seo-text ul li {
  margin-bottom: 5px;
}

.single-shreepad-seo .single-shreepad-seo-text p a {
  display: inline-block;
  color: var(--primary_color);
  margin: 0 3px;
}

.single-shreepad-seo .single-shreepad-seo-text li span,
.single-shreepad-seo .single-shreepad-seo-text p span {
  font-weight: 700;
  display: inline-block;
}

.single-shreepad-seo .single-shreepad-seo-text a {
  word-wrap: break-word;
  word-break: break-word;
  white-space: normal;
  transition: all 0.3s;
}

.single-shreepad-seo .single-shreepad-seo-text a:hover {
  color: var(--secondary_color);
}

.single-shreepad-seo .single-shreepad-seo-text p:last-child {
  margin-bottom: 0px;
}

.single-shreepad-seo .single-shreepad-seo-text .seo-projects {
  margin: 25px 0 10px 0;
}

/* .shreepad-seo-section */
.shreepad-seo-section {
  padding: 50px 0;
}

.shreepad-seo-section .main-title {
  margin-bottom: 50px;
}

/* shreepad-seo-section - our-real-estate */
.our-real-estate .our-real-estate-wrapper .our-real-estate-card .our-real-estate-text h3 {
  font-weight: 600;
  font-size: 22px;
  line-height: 30.6px;
  letter-spacing: 0;
  color: var(--primary_color);
  margin-bottom: 16px;
}

/* shreepad-seo-section - home-why-shreepad */
.shreepad-seo-section.home-why-shreepad {
  padding: 70px 0;
}

/* shreepad-seo-section - why-choose-tab */
.shreepad-seo-section.why-choose-tab .why-choose-card .why-choose-text h3 {
  font-weight: 700;
  font-size: 22px;
  line-height: 30.6px;
  letter-spacing: 0;
  color: var(--primary_color);
  margin-bottom: 16px;
}

/* -------------------------------------------------------------------------- */
/*                          single-shreepad-seo page end                          */
/* -------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------- */
/*                          Testimonials page start                          */
/* -------------------------------------------------------------------------- */
.testimonials {
  padding: 100px 0px;
}

.testimonials .testimonials-card-col {
  margin-bottom: 20px;
}

.testimonials .testimonials-card {
  background-color: var(--white_color);
  padding: 24px;
  border: 1px solid var(--stock_light);

  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonials .testimonials-card .testimonials-text {
  margin-bottom: 40px;
}

.testimonials .testimonials-card .testimonials-text p {
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  text-align: left;
  color: var(--text_black_color);
  margin-bottom: 0px;

}

.testimonials-user {
  display: flex;
  align-items: center;
  gap: 0 16px;
}

.testimonials-user .testimonials-user-image {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
}

.testimonials-user .testimonials-user-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials-user .testimonials-user-text h6 {
  font-family: Gilroy;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-align: left;
  color: var(--text_black_color);
  margin-bottom: 0px;
  text-transform: capitalize;
}

.testimonials-user .testimonials-user-text p {
  font-size: 14px;
  font-weight: 400;
  line-height: 22.4px;
  text-align: left;
  color: var(--text_color);
  margin-bottom: 0px;
}

/* -------------------------------------------------------------------------- */
/*                          Testimonials page end                          */
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*                               Blog page start                             */
/* -------------------------------------------------------------------------- */
.blog {
  padding: 100px 0px;
}

.blog-card {
  position: relative;
  margin-bottom: 20px;
  height: 100%;
}

.blog-card .category {
  position: absolute;
  right: 16px;
  top: 16px;
  background-color: var(--white_color);
  color: var(--text_color);
  padding: 5px 10px;
  border-radius: 4px;
  font-family: GT Walsheim Pro;
  font-size: 10px;
  font-weight: 500;
  line-height: 12.1px;
  text-align: center;
  box-shadow: 0px 0px 2px #00000025;
}

.blog-card .blog-card-image {
  width: 100%;
  height: 280px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.blog-card .blog-card-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background-color: #F8F8F8;
  aspect-ratio: 1/1;
}

.blog-card .blog-card-text .date {
  font-size: 14px;
  font-weight: 400;
  line-height: 16.94px;
  text-align: left;
  color: var(--text_black_color);
  margin-bottom: 12px;
}

.blog-card .blog-card-text .blog-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 30.6px;
  text-align: left;
  color: var(--text_black_color);
  margin-bottom: 12px;

  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  white-space: normal;
  overflow: hidden;
  min-height: 61px;
  height: 100%;
}

.blog-content {
  font-family: GT Walsheim Pro;
  font-size: 14px;
  font-weight: 400;
  line-height: 20.4px;
  text-align: left;
  color: var(--text_color);
  margin-bottom: 12px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  white-space: normal;
  overflow: hidden;
}

.blog-card hr {
  opacity: 1;
  color: var(--stock_light);
  margin: 12px 0;
}

.readmore {
  background-color: transparent;
  border: 0px;
  font-family: GT Walsheim Pro;
  font-size: 16px;
  font-weight: 500;
  line-height: 18.32px;
  text-align: left;
  color: var(--text_black_color);
  display: flex;
  align-items: center;
  gap: 0 8px;

}

.readmore:hover {
  color: var(--primary_color);
}

.readmore:hover img {
  filter: brightness(0) saturate(100%) invert(25%) sepia(38%) saturate(2727%) hue-rotate(338deg) brightness(95%) contrast(93%);
}

.readmore img {
  width: 23px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* -------------------------------------------------------------------------- */
/*                               Blog page end                             */
/* -------------------------------------------------------------------------- */


/* ------------------------------ Social Links ------------------------------ */
.social-icon {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 20px;
}

.social-icon li {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: var(--primary_color);
  cursor: pointer;
  transition: all 0.3s;
}

.social-icon li a {
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon li i {
  font-size: 22px;
  line-height: 22px;
}

.social-icon li img {
  width: 22px;
  height: 22px;
  transition: all 0.3s;
}

.social-icon li:hover {
  background-color: var(--primary_color);
  color: #fff;
}

.social-icon li:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(13%) saturate(0%) hue-rotate(31deg) brightness(107%) contrast(102%);
}


/* -------------------------------------------------------------------------- */
/*                               contact page start                             */
/* -------------------------------------------------------------------------- */
.contact {
  padding: 100px 0px;
}

.contact .main-title {
  margin-bottom: 30px;
}


.contact .contact-details .contact-details-item:first-child {

  border-top: 1px solid var(--stock_light);
}

.contact .contact-details .contact-details-item {
  display: flex;
  align-items: center;
  padding: 24px 0px;
  border-bottom: 1px solid var(--stock_light);
}

.contact .contact-details label {
  font-family: Gilroy;
  font-size: 18px;
  font-weight: 700;
  line-height: 25.2px;
  text-align: left;
  color: var(--text_black_color);
  margin-bottom: 0px;
  min-width: 201px;

}

.contact .contact-details a,
.contact .contact-details span {
  display: block;
  font-size: 18px;
  font-weight: 500;
  line-height: 20.61px;
  text-align: left;
  margin-bottom: 0px;
  color: var(--primary_color);
}


.contact-form {
  padding: 24px;
  background-color: #FFF0F0;
}

.contact-form img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}


.contact .contact-row {
  margin-left: -50px;
  margin-right: -50px;
  align-items: center;
  z-index: 1;
}

.contact .contact-row .contact-col {
  padding-left: 50px;
  padding-right: 50px;
}

/* -------------------------------------------------------------------------- */
/*                               contact page start                             */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/*                         Vendor Registration start                             */
/* -------------------------------------------------------------------------- */

.vendor-registration {
  padding: 100px 0;
}

.vendor-registration .main-title {
  margin-bottom: 30px;
}

.vendor-registration .image-wrapper {
  height: 600px;
}

.vendor-registration .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vendor-registration-form {
  padding: 24px;
  background-color: #FFF0F0;
}

/* -------------------------------------------------------------------------- */
/*                         Vendor Registration end                             */
/* -------------------------------------------------------------------------- */




/* -------------------------------------------------------------------------- */
/*                          about-us page start                                  */
/* -------------------------------------------------------------------------- */
.about-us {
  padding: 100px 0px;
}

.about-us-row {
  margin-left: -50px;
  margin-right: -50px;
  align-items: center;
}

.about-us-col {
  padding-left: 50px;
  padding-right: 50px;
}

.about-us-image-wrapper {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 73px;
}

.about-us-image-wrapper .about-us-image-one {
  width: 100%;
  max-width: calc(100% - 260px);
  padding: 10px;
  background-color: var(--white_color);
  height: 418px;
}

.about-us-image-wrapper .about-us-image-one img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-us-image-wrapper .about-us-image-two {
  width: 100%;
  max-width: 260px;
  height: 255px;
  padding: 10px;
  background-color: var(--white_color);
}

.about-us-image-wrapper .about-us-image-two img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-us-image-three {
  background-color: #FFE9B1;
  padding: 20px;
  position: absolute;
  right: 100px;
  bottom: -73px;

}

.about-us-image-three h6 {
  font-family: GT Walsheim Pro;
  font-size: 24px;
  font-weight: 700;
  line-height: 27.3px;
  text-align: left;
  color: var(--text_black_color);
  margin-bottom: 10px;
}

.about-us-image-three p {
  font-size: 22px;
  font-weight: 400;
  line-height: 27.3px;
  text-align: left;
  color: var(--text_black_color);
  margin-bottom: 10px;
}

.about-us-image-three h3 {
  font-family: Gilroy;
  font-size: 62px;
  font-weight: 700;
  line-height: 76.76px;
  text-align: left;
  color: var(--primary_color);
  margin-bottom: 10px;
}

.our-value-text h3,
.our-mission h3,
.about-us-text h3 {
  font-family: GT Walsheim Pro;
  font-size: 24px;
  font-weight: 700;
  line-height: 27.3px;
  color: var(--text_black_color);
  margin-bottom: 24px;
  text-align: left;

}

.our-value-text p,
.our-mission p,
.about-us-text p,
.our-value-text ul li,
.our-mission ul li,
.about-us-text ul li {
  font-size: 16px;
  font-weight: 400;
  line-height: 27.2px;
  text-align: left;
  color: var(--text_color);
  margin-bottom: 18px;

}

.our-value-text ul li,
.our-mission ul li,
.about-us-text ul li {
  margin-bottom: 2px;
}

.about-counter.counter.scratch-image {
  padding: 97px 0px;
  background-image: url(../images/counter-bg.png);
  width: 100%;
  height: 100%;
  background-size: cover;
}

.about-counter.counter.scratch-image.scratch-image-bottom-right::after {
  content: none;
}

.about-counter.counter .counter-box h6 {
  color: var(--white_color);
}

.about-counter.counter .counter-box p {
  color: var(--white_color);
}

/* trusted */
.trusted {
  padding: 100px 0px;
  background-color: #FCF6F5;
  position: relative;
  overflow: hidden;
}

.trusted.scratch-image.scratch-image-top-right::after {
  width: 518px;
  height: 170px;
}

.trusted-wrapper {
  display: flex;
  align-items: center;
  gap: 0 20px;
}

.trusted-card {
  width: 100%;
  background-color: var(--white_color);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;

}

.trusted-card img {
  width: 230px;
  height: 120px;
  object-fit: contain;
}

/* our-mission */
.our-mission {
  padding: 100px 0px;
}

.our-mission-full-image {
  width: 100%;
  height: 451px;
}

.our-mission-full-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.our-mission-image-wrapper {
  position: relative;
  margin-bottom: 74px;
}

.our-mission-image-wrapper .our-mission-image-one {
  width: 100%;
  max-width: calc(100% - 20px);
  padding: 10px;
  background-color: var(--white_color);
  height: 418px;
}

.our-mission-image-wrapper .our-mission-image-one img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.our-mission-image-wrapper .our-mission-image-two {
  width: 100%;
  max-width: 260px;
  height: 255px;
  padding: 10px;
  background-color: var(--white_color);
  position: absolute;
  right: 0;
  bottom: -74px;
}

.our-mission-image-wrapper .our-mission-image-two img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* our-value */
.our-value {
  padding: 100px 0px;
}

.our-value .main-title {
  margin-bottom: 50px;
}

.our-value-image {
  width: 100%;
  height: 627px;
}

.our-value-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.our-value-row {
  margin-left: -50px;
  margin-right: -50px;
}

.our-value-row .our-value-col {
  padding-left: 50px;
  padding-right: 50px;
}

/* / company slider / */
.company-history {
  background-color: #ffffff;
}

.company-slider {
  position: relative;
  padding-bottom: 20px;
}

.company-slider::before {
  content: '';
  position: absolute;
  bottom: 27px;
  left: 0;
  width: 100%;
  height: 1px;
  border: 1px solid #2F2A2A;
}

.company-slider-card {
  padding: 30px 20px;
  width: 251px;
  position: relative;
  min-height: auto;
  opacity: 0.5;

}

.company-slider-card::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 17px;
  height: 17px;
  border-radius: 10px;
  background-color: var(--primary_color);
}

.company-text h3 {
  font-family: Gilroy;
  font-size: 92.55px;
  font-weight: 900;
  line-height: 115.68px;
  color: transparent;
  margin-bottom: 0px;
  margin-top: 0px;
  padding-bottom: 20px;
  -webkit-text-stroke: 1px var(--primary_color);
}

.company-text h6 {
  font-family: Gilroy;
  font-size: 24px;
  font-weight: 700;
  line-height: 29.71px;
  text-align: left;
  color: var(--text_black_color);

}

.company-text p {
  font-size: 16px;
  font-weight: 400;
  line-height: 27.2px;
  text-align: left;
  color: var(--text_color);
}

/* testimonials-slider */
.testimonials-slider .slick-arrow,
.company-slider .slick-arrow {
  display: none !important;
}

.company-history .btn-arrow {
  border: 1px solid #000000;
  background-color: transparent;
  padding: 14px;
  font-size: 20px;
  line-height: 20px;
}

.company-history .btn-arrow:hover {
  background-color: var(--primary);
}

.company-history .btn-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.company-history .prev-btn,
.company-history .prev-btn1 {
  border-right: 0px;
}

.company-wrapper .btn-wrap {
  border-right: 0px;
  margin-top: 50px;
}

.company-slider-card.slick-center {
  opacity: 1;
}

.company-history {
  padding: 100px 0px;
}

/* -------------------------------------------------------------------------- */
/*                          about-us page start                                  */
/* -------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------- */
/*                          Privacy Policy Page Start                         */
/* -------------------------------------------------------------------------- */
.privacy-policy {
  padding: 60px 0;
}

.privacy-policy .content-details p+h1,
.privacy-policy .content-details p+h2,
.privacy-policy .content-details p+h3,
.privacy-policy .content-details p+h4,
.privacy-policy .content-details p+h5,
.privacy-policy .content-details p+h6 {
  margin-top: 10px;
}

.privacy-policy .content-details h1,
.privacy-policy .content-details h2,
.privacy-policy .content-details h3,
.privacy-policy .content-details h4,
.privacy-policy .content-details h5,
.privacy-policy .content-details h6 {
  font-family: GT Walsheim Pro;
  font-weight: 700;
  line-height: normal;
  text-align: left;
  color: var(--text_black_color);
  margin-bottom: 24px;
}


.privacy-policy .content-details h1 {
  font-size: 40px;
}

.privacy-policy .content-details h2 {
  font-size: 36px;
}

.privacy-policy .content-details h3 {
  font-size: 30px;
}

.privacy-policy .content-details h4 {
  font-size: 26px;
}

.privacy-policy .content-details h5 {
  font-size: 24px;
}

.privacy-policy .content-details h6 {
  font-size: 21px;
}

.privacy-policy .content-details p,
.privacy-policy .content-details ul li {
  font-size: 16px;
  font-weight: 400;
  line-height: 27.2px;
  text-align: left;
  color: var(--text_color);
  margin-bottom: 12px;
}

.privacy-policy .content-details ul li {
  margin-bottom: 5px;
}

.privacy-policy .content-details a {
  color: var(--primary_color);
  transition: all 0.3s;
  word-wrap: break-word;
  word-break: break-word;
  white-space: normal;
}

.privacy-policy .content-details a:hover {
  color: var(--primary_hover_color);
}

.privacy-policy .content-details p:last-child {
  margin-bottom: 0px;
}

/* -------------------------------------------------------------------------- */
/*                          Privacy Policy Page End                         */
/* -------------------------------------------------------------------------- */

/* ------------------------------ .shreepad-tab ----------------------------- */
.shreepad-tab {

  width: 100%;
  height: 100%;
  min-height: calc(100vh - 145px);

  margin-top: 100px;
  position: relative;
}



.shreepad-tab-wrapper {
  border: 1px solid #F0EAEA;
  padding: 4px;
  position: absolute;
  top: -70px;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
}


.shreepad-tab-wrapper nav {
  width: 100%;
}

.shreepad-tab-wrapper .nav-tabs {
  gap: 6px;
  border: 0px;
  overflow: auto;
  display: flex;
  flex-wrap: nowrap;
  overflow-y: hidden;
  justify-content: space-between;
}

.shreepad-tab-wrapper .nav-tabs .nav-link {
  min-width: 160px;
  border-radius: 0;
  border: 1px solid transparent;
  padding: 14px;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0;
  color: var(--text_color);
  white-space: nowrap;
}


.shreepad-tab-wrapper .nav-tabs .nav-link.active {
  background-color: var(--primary_color);
  color: var(--white_color);
}




/* width */
.shreepad-tab-wrapper .nav-tabs::-webkit-scrollbar {
  width: 20px;
  height: 5px;
  margin-top: 3px;
}

/* Track */
.shreepad-tab-wrapper .nav-tabs::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

/* Handle */
.shreepad-tab-wrapper .nav-tabs::-webkit-scrollbar-thumb {
  background: var(--primary_color);
  border-radius: 10px;
}

/* Handle on hover */
.shreepad-tab-wrapper .nav-tabs::-webkit-scrollbar-thumb:hover {
  background: var(--primary_color);
}




.shreepad-tab .container,
.shreepad-tab .tab-content,
.shreepad-tab .tab-pane,
.shreepad-tab .shreepad-details {
  height: 100%;
}

.shreepad-tab .tab-content .tab-pane {
  /* min-height: calc(100vh - 160px); */
}



.shreepad-tab .shreepad-details {
  background-image: url(../images/shreepan-tab.png);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.shreepad-tab .contact,
.shreepad-tab .why-choose-tab,
.shreepad-tab .our-real-estate,
.shreepad-tab .home-why-shreepad,
.shreepad-tab .home-about,
.shreepad-tab .home-ongoing-projects,
.shreepad-tab .shreepad-details {
  /* min-height: calc(100vh - 160px);
  max-height: calc(100vh - 160px); */
  min-height: calc(100vh - 145px);
  max-height: calc(100vh - 145px);
  overflow: hidden;
  overflow-y: auto;
  padding: 70px 0px;
  background-color: var(--white_color);
}

.shreepad-tab .our-real-estate,
.shreepad-tab .home-ongoing-projects,
.shreepad-tab .contact {
  background-color: var(--white_color);
}


.shreepad-tab .why-choose-tab {
  background-color: var(--bg_light);
}

.shreepad-details-text h2 {
  font-weight: 900;
  font-size: 48px;
  line-height: 130%;
  letter-spacing: 0;
  color: var(--black_color);
  margin-bottom: 40px;
}


.shreepad-details-text p {
  font-weight: 400;
  font-size: 18px;
  line-height: 30.6px;
  letter-spacing: 0;
  color: var(--text_color);
  margin-bottom: 16px;
}

.shreepad-details-image {
  width: auto;
  height: 650px;
}

.shreepad-details-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}



.shreepad-details-row {
  margin-left: -40px;
  margin-right: -40px;
  align-items: center;
}

.shreepad-details-col {
  padding-left: 40px;
  padding-right: 40px;
}

/* ------------------------------ .shreepad-tab ----------------------------- */



/* ----------------------------- our-real-estate ---------------------------- */
.our-real-estate-wrapper .our-real-estate-card {
  display: flex;
  align-items: stretch;
  width: 100%;
  margin-bottom: 80px;
}

.our-real-estate-wrapper .our-real-estate-card:last-child {
  margin-bottom: 0px;
}

.our-real-estate-wrapper .our-real-estate-card .our-real-estate-text,
.our-real-estate-wrapper .our-real-estate-card .our-real-estate-image {
  width: 100%;
  max-width: 50%;
}

.our-real-estate-wrapper .our-real-estate-card:nth-child(odd) .our-real-estate-image {
  max-width: calc(50% + 70px);
  margin-right: -70px;
}

.our-real-estate-wrapper .our-real-estate-card:nth-child(even) .our-real-estate-image {
  max-width: calc(50% + 70px);
  margin-left: -70px;
}

.our-real-estate-wrapper .our-real-estate-card:nth-child(even) .our-real-estate-image {
  order: 2;
}

.our-real-estate-wrapper .our-real-estate-card:nth-child(even) .our-real-estate-text {
  order: 1;
  position: relative;
  z-index: 2;

}

.our-real-estate-wrapper .our-real-estate-card .our-real-estate-image {}

.our-real-estate-wrapper .our-real-estate-card .our-real-estate-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.our-real-estate-wrapper .our-real-estate-card .our-real-estate-text {
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFAF9 100%);
  box-shadow: 0px 4px 20px 3px #0000000F;
  border: 1px solid #DDDDDD;
  padding: 24px;
  margin: 20px 0px;
}

.our-real-estate-wrapper .our-real-estate-card .our-real-estate-text h6 {
  font-weight: 600;
  font-size: 22px;
  line-height: 30.6px;
  letter-spacing: 0;
  color: var(--primary_color);
  margin-bottom: 16px;

}

.our-real-estate-wrapper .our-real-estate-card .our-real-estate-text p,
.our-real-estate-wrapper .our-real-estate-card .our-real-estate-text ul li {
  font-weight: 400;
  font-size: 18px;
  line-height: 30.6px;
  letter-spacing: 0;
  color: var(--text_color);
}

.our-real-estate-wrapper .our-real-estate-card .our-real-estate-text ul:nth-last-child(1) {
  margin-bottom: 0;
}

.our-real-estate-wrapper .our-real-estate-card .our-real-estate-text p a {
  display: inline-block;
  color: var(--primary_color);
  transition: all 0.3s;
}

.our-real-estate-wrapper .our-real-estate-card .our-real-estate-text p a:hover {
  color: var(--primary_hover_color);
}

/* ----------------------------- our-real-estate ---------------------------- */



/* ----------------------------- .why-choose-tab ---------------------------- */
.why-choose-card {
  padding: 25px;
  border: 1px solid #F7F1F1;
  background: #FFFFFF;
  margin-bottom: 30px;

}

.why-choose-card .icon-number {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.why-choose-card .icon-number .why-choose-icon {
  width: 60px;
  height: 60px;
}

.why-choose-card .icon-number .why-choose-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;

}

.why-choose-card .icon-number .why-choose-number {
  font-weight: 700;
  font-size: 100px;
  line-height: 100%;
  letter-spacing: 0;

  color: var(--primary_color);
  -webkit-text-fill-color: #f9eeee;
  /* Will override color (regardless of order) */
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--primary_color);

}

.why-choose-card .why-choose-text {
  margin-top: 10px;
}

.why-choose-card .why-choose-text h6 {
  font-weight: 700;
  font-size: 22px;
  line-height: 30.6px;
  letter-spacing: 0;
  color: var(--primary_color);
  margin-bottom: 16px;

}

.why-choose-card .why-choose-text p {
  font-weight: 400;
  font-size: 18px;
  line-height: 30.6px;
  letter-spacing: 0;
  color: var(--text_color);

}

.why-choose-tab .row {
  align-items: stretch;
}

.why-choose-tab .row .col-md-4 .why-choose-card {
  min-height: 500px;
}

/* ----------------------------- .why-choose-tab ---------------------------- */



/* ------------------------- .shreepad-tab .contact, ------------------------ */
.shreepad-tab .contact {
  position: relative;
}

.shreepad-tab .contact::before {
  content: "";
  background-image: url(../images/shreepad-tab-contact-bg.png);
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.shreepad-tab .contact .contact-details {
  background: #fff;
  width: fit-content;
  padding: 0px 24px;
  border: 1px solid #CBCBCBBF
}

.shreepad-tab .contact .contact-details .contact-details-item:first-child {
  border-top: 0px solid var(--stock_light);
}

.shreepad-tab .contact .contact-details .contact-details-item:last-child {
  border-bottom: 0px;
}

.shreepad-tab .contact .contact-details .contact-details-item {
  gap: 24px;
}

.shreepad-tab .contact .contact-details .contact-details-item i {
  width: 40px;
  height: 40px;
  font-size: 20px;
  line-height: 20px;
  color: var(--primary_color);
  border-radius: 20px;
  background-color: #FCF6F5;
  display: flex;
  align-items: center;
  justify-content: center;
}


.shreepad-tab .contact .contact-col-right::before {
  content: "";
  background-image: url(../images/shreepad-tab-contact-bg-2.png);
  width: 120px;
  height: 120px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: 40px;
  top: 0;
  opacity: 0.2;
}

.shreepad-tab .contact .contact-col-right .contact-form {
  background-color: #fff;
  position: relative;
  z-index: 22;
}

.shreepad-tab .contact .contact-col-right .contact-form .form-group .form-control {
  border: 1px solid #DDDDDD;
}

.shreepad-tab .why-shreepad-card .card-body {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.shreepad-tab .why-shreepad-card .card-body .card-details p,
.shreepad-tab .why-shreepad-card .card-body .card-details h6,
.shreepad-tab .why-shreepad-card .card-body .card-details .card-title {
  text-align: center;
}

/* ------------------------- .shreepad-tab .contact, ------------------------ */
/* why-choose-tab start  */
.why-choose-tab .row {
  gap: 20px 0px;
}

.why-choose-tab .row .why-choose-tab-col {
  height: auto;
}

.why-choose-tab .row .why-choose-tab-col .why-choose-card {
  height: 100%;
  margin-bottom: 0px;
}

/* why-choose-tab end  */




































/* 
.hideOverflowOnMobile {
  overflow-x: hidden;
  overflow-y: visible;
} */


.no-records-found p {
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  color: var(--text);
  line-height: normal;
  text-transform: capitalize;
  text-align: center;
  border-radius: 12px;
  padding: 20px;
  margin: 3px 0;
  background-color: var(--warning_color);
  border: 1px solid var(--primary_color);
}

/* line-bg css start */
.line-bg {
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: transparent;
  top: 0;
  z-index: -1
}

.line-bg .line {
  width: 1px;
  height: 100%;
  position: absolute;
  background-color: var(--primary_light_two_color);
  top: 0
}

.line-bg .line:nth-child(1) {
  left: 5%
}

.line-bg .line:nth-child(2) {
  left: 50%
}

.line-bg .line:nth-child(3) {
  left: 95%
}

/* line-bg css end */

/* lg-video */
.lg-container .lg-video-poster {
  object-fit: cover;
}

/* ------------------------------ scratch-image ----------------------------- */
.scratch-image,
.scratch-image2 {
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.scratch-image::after {
  content: '';
  position: absolute;
  width: 625px;
  height: 327px;
  background-image: url('../images/scratch.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.5;
  z-index: 0;
}

.scratch-image2::after {
  content: '';
  position: absolute;
  width: 394px;
  height: 355px;
  background-image: url('../images/projects/scratch-2.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.9;
  z-index: 0;
}

/* scratch-image-top-right */
.scratch-image.scratch-image-top-right::after,
.scratch-image2.scratch-image-top-right::after {
  right: 0;
  left: auto;
  top: 0;
  bottom: auto;
}

/* scratch-image-top-left */
.scratch-image.scratch-image-top-left::after,
.scratch-image2.scratch-image-top-left::after {
  right: auto;
  left: 0;
  top: 0;
  bottom: auto;
}

/* scratch-image-bottom-left */
.scratch-image.scratch-image-bottom-left::after,
.scratch-image2.scratch-image-bottom-left::after {
  right: auto;
  left: 0;
  top: auto;
  bottom: 0;
}

/* scratch-image-bottom-right */
.scratch-image.scratch-image-bottom-right::after,
.scratch-image2.scratch-image-bottom-right::after {
  right: 0;
  left: auto;
  top: auto;
  bottom: 0;
}

/* -------------------------------------------------------------------------- */
/*                                 modal Start                                */
/* -------------------------------------------------------------------------- */
.modal-theme .modal-content {
  border: 0;
  border-radius: 15px;
}

.modal-theme .modal-content .modal-header,
.modal-theme .modal-content .modal-body,
.modal-theme .modal-content .modal-footer {
  padding: 30px;
}

.modal-theme .modal-content .modal-header {
  padding-bottom: 0;
}

.modal-theme .modal-content .modal-body {
  padding-bottom: 20px;
}

.modal-theme .modal-content .modal-footer {
  padding-top: 0;
}

.modal-theme .btn-close {
  background: 0;
  font-size: 20px;
  color: var(--text_color);
  opacity: 1;
  box-shadow: none;
  border: 0;
  padding: 0;
  height: 31px;
  width: 31px;
}

.modal-theme .btn-close i {
  display: inline-block;
  transition: 0.70s;
  -webkit-text-stroke: 0.5px;
}

.modal-theme .btn-close:hover {
  background-color: #F4F5F6;
  color: var(--black_color);
}

.modal-theme .btn-close:hover i {
  transform: rotate(90deg);
}

.modal-theme .modal-header {
  border-bottom: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.modal-theme .modal-header .modal-title {
  font-size: 18px;
  color: var(--text_black_color);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  word-wrap: break-word;
  word-break: break-word;
  white-space: normal;
  text-transform: capitalize;
}

.modal-theme .modal-header .modal-title i {
  margin-right: 4px;
}

.modal-theme .modal-header p {
  font-size: 14px;
  color: var(--text_color);
  font-weight: 600;
  margin-bottom: 0;
  word-wrap: break-word;
}

.modal-theme .modal-footer {
  border-top: 0;
}

.modal-theme .modal-footer .btn {
  min-width: 100px;
  padding: 8px 16px;
}

.modal-theme .modal-body .btn-close {
  position: absolute;
  right: 15px;
  top: 15px;
}

.modal-theme .modal-body p {
  font-size: 14px;
  color: var(--text_black_color);
  font-weight: 400;
  margin-bottom: 0;
  word-wrap: break-word;
  word-break: break-word;
  white-space: normal;
}

.modal-theme .modal-button-group,
.modal-theme .modal-footer-group {
  margin-top: 25px;
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  width: 100%;
}

.modal-theme .modal-button-group.modal-full-width-btn .btn,
.modal-theme .modal-footer-group.modal-full-width-btn .btn {
  width: 100%;
}

.modal-theme .modal-button-group.modal-btn-end,
.modal-theme .modal-footer-group.modal-btn-end {
  justify-content: flex-end;
}

.modal-theme.modal-confirmation .modal-dialog {
  width: 400px;
}

.modal-theme.modal-close-icon .btn-close {
  position: absolute;
  right: -30px;
  top: -30px;
  padding: 0;
  margin: 0;
  color: var(--white_color);
}

.modal-theme.modal-close-icon .btn-close:hover {
  color: var(--danger_color);
}

/* modal-brochure */
.modal-brochure .modal-content .modal-body {
  padding-bottom: 30px;
}

.modal-brochure .otp-section {
  margin-top: 24px;
}

.modal-brochure .otp-section .otp-message {}

.modal-theme .form-group .form-control,
.modal-theme .form-group .form-select,
.modal-theme .form-group .search-field {}

/* -------------------------------------------------------------------------- */
/*                                 modal end                                */
/* -------------------------------------------------------------------------- */

/* .project-page-menu,
.plan-tab-filter {
  display: none;
} */

/* -------------------------------------------------------------------------- */
/*                                Loader Start                                */
/* -------------------------------------------------------------------------- */
/* .elementor-editor-active .loader-wrapper {
  display: none !important;
} */

.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff !important;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  /* display: none; */
}

.loader-wrapper .loader {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-wrapper .loader-image {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-wrapper .loader-image img {
  width: auto;
  height: 55px;
  object-fit: contain;
}

.loader-wrapper .loader-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-15 {
  width: 80px;
  height: 80px;
  border: 5px dotted #c02123;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  -webkit-animation: rotation 2s linear infinite;
  animation: rotation 2s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}



/* Style for the main content (hidden while loading) */
.content {
  display: none;
}

.overflow-hidden-mobile {
  overflow-x: hidden !important;
}


.loader-enabled {
  overflow: hidden;
}



/* -------------------------------------------------------------------------- */
/*                                 Loader End                                 */
/* -------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------- */
/*                              Error Page Start                              */
/* -------------------------------------------------------------------------- */
.error-page {
  height: calc(100vh);
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-image {
  margin-bottom: 50px;
}

.error-image img {
  width: 500px;
  height: auto;
  margin: 0 auto;
}

.error-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.error-text {
  text-align: center;
}

.error-text .btn {
  margin: 0 auto;
}

.error-text h2 {
  font-size: 46px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  color: var(--text_black_color);
  margin-bottom: 34px;
}

.error-text p {
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  color: var(--text_color);
  margin-bottom: 34px;
}

.error-text .btn.btn-primary {
  min-width: 230px;
  min-height: 52px;
  padding: 17px 21px;
  line-height: 18px;
  justify-content: center;
}

.error404 .apply-for .error404 .contact-us {
  display: none;
}

/* -------------------------------------------------------------------------- */
/*                               Error Page End                               */
/* -------------------------------------------------------------------------- */





/* -------------------------------------------------------------------------- */
/*                       Responsive CSS Start [Container]                     */
/* -------------------------------------------------------------------------- */

@media screen and (min-width: 1400px) {
  .container {
    max-width: 1240px;
  }

  .elementor-section.elementor-section-boxed>.elementor-container {
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 1366px) {
  .container {
    max-width: 1220px;
  }

  .e-con-boxed .e-con-inner,
  .elementor-section.elementor-section-boxed>.elementor-container {
    max-width: 1220px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 1200px) {
  .container {
    max-width: 950px !important;
  }

  .e-con-boxed .e-con-inner,
  .elementor-section.elementor-section-boxed>.elementor-container {
    max-width: 950px !important;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 992px) {
  .container {
    max-width: 792px !important;
  }

  .e-con-boxed .e-con-inner,
  .elementor-section.elementor-section-boxed>.elementor-container {
    max-width: 792px !important;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 768px) {
  .container {
    max-width: 670px !important;
  }

  .e-con-boxed .e-con-inner,
  .elementor-section.elementor-section-boxed>.elementor-container {
    max-width: 670px !important;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 600px) {
  .container {
    max-width: 100% !important;
  }

  .e-con-boxed .e-con-inner,
  .elementor-section.elementor-section-boxed>.elementor-container {
    max-width: 100% !important;
    margin-left: auto;
    margin-right: auto;
  }
}

/* -------------------------------------------------------------------------- */
/*                       Responsive CSS End [Container]                       */
/* -------------------------------------------------------------------------- */