/* @import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;600;700&amp;family=Poppins:wght@400;500;600;700;800;900&amp;display=swap");

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Noto+Serif:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
 */

@import "tailwindcss";

/* @import url("https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&family=Manrope:wght@200..800&family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"); */

/* @import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap'); */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  /* colors */
  --white: #fff;
  --primary-color: rgb(220, 34, 83);
  --secondary-color: rgb(220, 34, 83);
  --secondary-color2: #f65922;
  --color-1: #8cb2b2;
  --heading-color: #071c1f;
  --paragraph-color: #5c727d;
  /* --heading-font: "Nunito Sans";
    --body-font: "Nunito Sans", sans-serif; */
  --heading-font: sans-serif ;
  --body-font: sans-serif;
  --border-color-1: #e5eaee;
  --section-bg-1: #f2f6f7;
  --section-bg-2: #171b2a;
  --border-color-9: #e4ecf2;
  /* shadows */
  --box-shadow-1: 0 16px 32px 0 rgba(7, 28, 31, 0.1);
  --box-shadow-4: 0 5px 20px 0 rgba(23, 44, 82, 0.1);
  --box-shadow-8: 0 10px 50px 0 rgba(46, 56, 220, 0.2);
  /* position */
  --left--5: -5px;
  --left-auto: auto;
  --left-3-per: 3%;
  --left-10-per: 10%;
  --left-15-per: 15%;
  --left-half: 50%;
  --right--14: -14px;
  --right--20: -20px;
  --right-16: 16px;
  --right-20: 20px;
  --right-100: 100px;
  --right-1-per: 1%;
  --right-3-per: 3%;
  --right-8-per: 8%;
  --right-15-per: 15%;
  --right-half: 50%;
  /* transform */
  --x--6: translateX(-6px);
  --x--10: translateX(-10px);
  --x--30: translateX(-30px);
  --x--37: translateX(-37px);
  --x--40: translateX(-40px);
  --x--50: translateX(-50px);
  --x--60: translateX(-60px);
  --x--half: translateX(-50%);
  --x-6: translateX(6px);
  --x-10: translateX(10px);
  --x-30: translateX(30px);
  --x-37: translateX(37px);
  --x-40: translateX(40px);
  --x-50: translateX(50px);
  --x-60: translateX(60px);
  --x-half: translateX(50%);
  --x-3d-half: translate3d(-50%, -50%, 0);
}

*,
::before,
::after {
  box-sizing: border-box;
  /* 1 */
  border-width: 0;
  /* 2 */
  border-style: solid;
  /* 2 */
  border-color: currentColor;
  /* 2 */
}

::before,
::after {
  --tw-content: "";
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -moz-tab-size: 4;
  /* 3 */
  -o-tab-size: 4;
  tab-size: 4;
  /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  /* 4 */
  font-feature-settings: normal;
  /* 5 */
  font-variation-settings: normal;
  /* 6 */
  -webkit-tap-highlight-color: transparent;
  /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0;
  /* 1 */
  line-height: inherit;
  /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0;
  /* 1 */
  color: inherit;
  /* 2 */
  border-top-width: 1px;
  /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
  /* 1 */
  font-feature-settings: normal;
  /* 2 */
  font-variation-settings: normal;
  /* 3 */
  font-size: 1em;
  /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0;
  /* 1 */
  border-color: inherit;
  /* 2 */
  border-collapse: collapse;
  /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-feature-settings: inherit;
  /* 1 */
  font-variation-settings: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  font-weight: inherit;
  /* 1 */
  line-height: inherit;
  /* 1 */
  letter-spacing: inherit;
  /* 1 */
  color: inherit;
  /* 1 */
  margin: 0;
  /* 2 */
  padding: 0;
  /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type="button"]),
input:where([type="reset"]),
input:where([type="submit"]) {
  -webkit-appearance: button;
  /* 1 */
  background-color: transparent;
  /* 2 */
  background-image: none;
  /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/

dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder,
textarea::-moz-placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/

:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  /* 1 */
  vertical-align: middle;
  /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

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

/* Make elements with the HTML hidden attribute stay hidden by default */

[hidden] {
  display: none;
}

*,
::before,
::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x: ;
  --tw-pan-y: ;
  --tw-pinch-zoom: ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position: ;
  --tw-gradient-via-position: ;
  --tw-gradient-to-position: ;
  --tw-ordinal: ;
  --tw-slashed-zero: ;
  --tw-numeric-figure: ;
  --tw-numeric-spacing: ;
  --tw-numeric-fraction: ;
  --tw-ring-inset: ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur: ;
  --tw-brightness: ;
  --tw-contrast: ;
  --tw-grayscale: ;
  --tw-hue-rotate: ;
  --tw-invert: ;
  --tw-saturate: ;
  --tw-sepia: ;
  --tw-drop-shadow: ;
  --tw-backdrop-blur: ;
  --tw-backdrop-brightness: ;
  --tw-backdrop-contrast: ;
  --tw-backdrop-grayscale: ;
  --tw-backdrop-hue-rotate: ;
  --tw-backdrop-invert: ;
  --tw-backdrop-opacity: ;
  --tw-backdrop-saturate: ;
  --tw-backdrop-sepia: ;
  --tw-contain-size: ;
  --tw-contain-layout: ;
  --tw-contain-paint: ;
  --tw-contain-style: ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x: ;
  --tw-pan-y: ;
  --tw-pinch-zoom: ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position: ;
  --tw-gradient-via-position: ;
  --tw-gradient-to-position: ;
  --tw-ordinal: ;
  --tw-slashed-zero: ;
  --tw-numeric-figure: ;
  --tw-numeric-spacing: ;
  --tw-numeric-fraction: ;
  --tw-ring-inset: ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur: ;
  --tw-brightness: ;
  --tw-contrast: ;
  --tw-grayscale: ;
  --tw-hue-rotate: ;
  --tw-invert: ;
  --tw-saturate: ;
  --tw-sepia: ;
  --tw-drop-shadow: ;
  --tw-backdrop-blur: ;
  --tw-backdrop-brightness: ;
  --tw-backdrop-contrast: ;
  --tw-backdrop-grayscale: ;
  --tw-backdrop-hue-rotate: ;
  --tw-backdrop-invert: ;
  --tw-backdrop-opacity: ;
  --tw-backdrop-saturate: ;
  --tw-backdrop-sepia: ;
  --tw-contain-size: ;
  --tw-contain-layout: ;
  --tw-contain-paint: ;
  --tw-contain-style: ;
}

.container {
  max-width: 1350px;
  width: 100%;
  padding: 0px 40px;
  margin: 0px auto;
}

@media (max-width: 900px) {
  .container {
    padding: 0px 30px;
  }
}

@media (max-width: 500px) {
  .container {
    padding: 0px 20px;
  }
}

.container-3 {
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 1400px) {
  .container-3 {
    padding-left: 2%;
    padding-right: 2%;
  }
}

@media (min-width: 1600px) {
  .container-3 {
    padding-left: 7%;
    padding-right: 7%;
  }
}

.visible {
  visibility: visible;
}

.invisible {
  visibility: hidden;
}

.collapse {
  visibility: collapse;
}

.static {
  position: static;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.sticky {
  position: sticky;
}

.\!-bottom-\[6px\] {
  bottom: -6px !important;
}

.-bottom-2 {
  bottom: -0.5rem;
}

.-bottom-\[100px\] {
  bottom: -100px;
}

.-left-2 {
  left: -0.5rem;
}

.-left-3 {
  left: -0.75rem;
}

.-left-\[300px\] {
  left: -300px;
}

.-right-3 {
  right: -0.75rem;
}

.-right-\[300px\] {
  right: -300px;
}

.-top-1 {
  top: -0.25rem;
}

.-top-3 {
  top: -0.75rem;
}

.-top-\[15px\] {
  top: -15px;
}

.bottom-0 {
  bottom: 0px;
}

.bottom-20 {
  bottom: 5rem;
}

.bottom-\[-30px\] {
  bottom: -30px;
}

.bottom-\[100px\] {
  bottom: 100px;
}

.bottom-\[10px\] {
  bottom: 10px;
}

.bottom-\[30px\] {
  bottom: 30px;
}

.bottom-\[50px\] {
  bottom: 50px;
}

.bottom-\[5px\] {
  bottom: 5px;
}

.bottom-\[70px\] {
  bottom: 70px;
}

.left-0 {
  left: 0px;
}

.left-1\/2 {
  left: 50%;
}

.left-3 {
  left: 0.75rem;
}

.left-4 {
  left: 1rem;
}

.left-5 {
  left: 1.25rem;
}

.left-7 {
  left: 1.75rem;
}

.left-\[10px\] {
  left: 10px;
}

.left-\[11px\] {
  left: 11px;
}

.left-\[18px\] {
  left: 18px;
}

.left-\[3\%\] {
  left: 3%;
}

.left-\[30px\] {
  left: 30px;
}

.left-\[50px\] {
  left: 50px;
}

.left-\[60px\] {
  left: 60px;
}

.left-full {
  left: 100%;
}

.right-0 {
  right: 0px;
}

.right-1\/2 {
  right: 50%;
}

.right-3 {
  right: 0.75rem;
}

.right-4 {
  right: 1rem;
}

.right-5 {
  right: 1.25rem;
}

.right-7 {
  right: 1.75rem;
}

.right-\[10px\] {
  right: 10px;
}

.right-\[11px\] {
  right: 11px;
}

.right-\[15px\] {
  right: 15px;
}

.right-\[18px\] {
  right: 18px;
}

.right-\[3\%\] {
  right: 3%;
}

.right-\[30px\] {
  right: 30px;
}

.right-\[50px\] {
  right: 50px;
}

.right-\[60px\] {
  right: 60px;
}

.right-full {
  right: 100%;
}

.top-0 {
  top: 0px;
}

.top-1\/2 {
  top: 50%;
}

.top-10 {
  top: 2.5rem;
}

.top-4 {
  top: 1rem;
}

.top-\[11px\] {
  top: 11px;
}

.top-\[15\%\] {
  top: 15%;
}

.top-\[15px\] {
  top: 15px;
}

.top-\[30px\] {
  top: 30px;
}

.top-\[45\%\] {
  top: 45%;
}

.top-full {
  top: 100%;
}

.-z-1 {
  z-index: -1;
}

.-z-\[2\] {
  z-index: -2;
}

.z-0 {
  z-index: 0;
}

.z-1 {
  z-index: 1;
}

.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

.z-high {
  z-index: 99999999;
}

.z-small {
  z-index: 999999;
}

.z-xl {
  z-index: 999999999;
}

.z-xsmall {
  z-index: 99999;
}

.z-xxl {
  z-index: 9999999999;
}

.float-right {
  float: right;
}

.float-left {
  float: left;
}

.clear-both {
  clear: both;
}

.m-2 {
  margin: 0.5rem;
}

.m-5 {
  margin: 1.25rem;
}

.-mx-15px {
  margin-left: -0.9375rem;
  margin-right: -0.9375rem;
}

.mx-15px {
  margin-left: 0.9375rem;
  margin-right: 0.9375rem;
}

.mx-5 {
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.my-30px {
  margin-top: 1.875rem;
  margin-bottom: 1.875rem;
}

.my-5 {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.my-50px {
  margin-top: 3.125rem;
  margin-bottom: 3.125rem;
}

.my-6 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.\!-ml-1 {
  margin-left: -0.25rem !important;
}

.\!-ml-1\.5 {
  margin-left: -0.375rem !important;
}

.-mb-1 {
  margin-bottom: -0.25rem;
}

.-mb-10px {
  margin-bottom: -0.625rem;
}

.-mb-\[180px\] {
  margin-bottom: -180px;
}

.-ml-0 {
  margin-left: -0px;
}

.-ml-0\.5 {
  margin-left: -0.125rem;
}

.-mt-0 {
  margin-top: -0px;
}

.-mt-0\.5 {
  margin-top: -0.125rem;
}

.-mt-3 {
  margin-top: -0.75rem;
}

.-mt-60px {
  margin-top: -3.75rem;
}

.-mt-\[2px\] {
  margin-top: -2px;
}

.mb-0 {
  margin-bottom: 0px;
}

.mb-0\.5 {
  margin-bottom: 0.125rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-1\.5 {
  margin-bottom: 0.375rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.mb-10px {
  margin-bottom: 0.625rem;
}

.mb-15px {
  margin-bottom: 0.9375rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-20 {
  margin-bottom: 5rem;
}

.mb-22px {
  margin-bottom: 1.375rem;
}

.mb-25px {
  margin-bottom: 1.5625rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-30 {
  margin-bottom: 7.5rem;
}

.mb-30px {
  margin-bottom: 1.875rem;
}

.mb-35px {
  margin-bottom: 2.1875rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-45px {
  margin-bottom: 2.8125rem;
}

.mb-5 {
  margin-bottom: 1.25rem;
}

.mb-50px {
  margin-bottom: 3.125rem;
}

.mb-5px {
  margin-bottom: 0.3125rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-60px {
  margin-bottom: 3.75rem;
}

.mb-65px {
  margin-bottom: 4.0625rem;
}

.mb-6px {
  margin-bottom: 0.375rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-9 {
  margin-bottom: 2.25rem;
}

.ml-0 {
  margin-left: 0px;
}

.ml-1 {
  margin-left: 0.25rem;
}

.ml-10px {
  margin-left: 0.625rem;
}

.ml-15px {
  margin-left: 0.9375rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.ml-25px {
  margin-left: 1.5625rem;
}

.ml-3 {
  margin-left: 0.75rem;
}

.ml-4 {
  margin-left: 1rem;
}

.ml-43px {
  margin-left: 2.6875rem;
}

.ml-5 {
  margin-left: 1.25rem;
}

.mr-0 {
  margin-right: 0px;
}

.mr-0\.5 {
  margin-right: 0.125rem;
}

.mr-1 {
  margin-right: 0.25rem;
}

.mr-10px {
  margin-right: 0.625rem;
}

.mr-15px {
  margin-right: 0.9375rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mr-25px {
  margin-right: 1.5625rem;
}

.mr-3 {
  margin-right: 0.75rem;
}

.mr-43px {
  margin-right: 2.6875rem;
}

.mr-5 {
  margin-right: 1.25rem;
}

.mr-5px {
  margin-right: 0.3125rem;
}

.mt-0 {
  margin-top: 0px;
}

.mt-0\.5 {
  margin-top: 0.125rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-1\.5 {
  margin-top: 0.375rem;
}

.mt-10px {
  margin-top: 0.625rem;
}

.mt-150px {
  margin-top: 9.375rem;
}

.mt-15px {
  margin-top: 0.9375rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-20 {
  margin-top: 5rem;
}

.mt-25px {
  margin-top: 1.5625rem;
}

.mt-30 {
  margin-top: 7.5rem;
}

.mt-30px {
  margin-top: 1.875rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-5 {
  margin-top: 1.25rem;
}

.mt-50px {
  margin-top: 3.125rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-95px {
  margin-top: 5.9375rem;
}

.mt-\[100px\] {
  margin-top: 100px;
}

.box-border {
  box-sizing: border-box;
}

.box-content {
  box-sizing: content-box;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.inline {
  display: inline;
}

.flex {
  display: flex;
}

.table {
  display: table;
}

.grid {
  display: grid;
}

.contents {
  display: contents;
}

.hidden {
  display: none;
}

.h-0 {
  height: 0px;
}

.h-0\.5 {
  height: 0.125rem;
}

.h-1 {
  height: 0.25rem;
}

.h-10 {
  height: 2.5rem;
}

.h-140px {
  height: 8.75rem;
}

.h-20 {
  height: 5rem;
}

.h-30px {
  height: 1.875rem;
}

.h-350px {
  height: 21.875rem;
}

.h-360px {
  height: 22.5rem;
}

.h-4 {
  height: 1rem;
}

.h-45px {
  height: 2.8125rem;
}

.h-5 {
  height: 1.25rem;
}

.h-50px {
  height: 3.125rem;
}

.h-60px {
  height: 3.75rem;
}

.h-65px {
  height: 4.0625rem;
}

.h-8 {
  height: 2rem;
}

.h-80 {
  height: 20rem;
}

.h-9 {
  height: 2.25rem;
}

.h-\[560px\] {
  height: 560px;
}

.h-\[70px\] {
  height: 70px;
}

.h-\[800px\] {
  height: 800px;
}

.h-auto {
  height: auto;
}

.h-full {
  height: 100%;
}

.max-h-\[calc\(100\%-\(360px\)\)\] {
  max-height: calc(100% - (360px));
}

.min-h-80 {
  min-height: 20rem;
}

.min-h-\[150px\] {
  min-height: 150px;
}

.min-h-\[300px\] {
  min-height: 300px;
}

.min-h-\[400px\] {
  min-height: 400px;
}

.min-h-screen {
  min-height: 100vh;
}

.w-0 {
  width: 0px;
}

.w-10 {
  width: 2.5rem;
}

.w-100px {
  width: 6.25rem;
}

.w-125px {
  width: 7.8125rem;
}

.w-130px {
  width: 8.125rem;
}

.w-14 {
  width: 3.5rem;
}

.w-140px {
  width: 8.75rem;
}

.w-150px {
  width: 9.375rem;
}

.w-15px {
  width: 0.9375rem;
}

.w-20 {
  width: 5rem;
}

.w-250px {
  width: 15.625rem;
}

.w-300px {
  width: 18.75rem;
}

.w-30px {
  width: 1.875rem;
}

.w-4 {
  width: 1rem;
}

.w-45px {
  width: 2.8125rem;
}

.w-5 {
  width: 1.25rem;
}

.w-50 {
  width: 12.5rem;
}

.w-50px {
  width: 3.125rem;
}

.w-60px {
  width: 3.75rem;
}

.w-70px {
  width: 4.375rem;
}

.w-8 {
  width: 2rem;
}

.w-80 {
  width: 20rem;
}

.w-9 {
  width: 2.25rem;
}

.w-\[10px\] {
  width: 10px;
}

.w-\[270px\] {
  width: 270px;
}

.w-\[426px\] {
  width: 426px;
}

.w-\[48\%\] {
  width: 48%;
}

.w-\[68px\] {
  width: 68px;
}

.w-\[85px\] {
  width: 85px;
}

.w-\[880px\] {
  width: 880px;
}

.w-\[95px\] {
  width: 95px;
}

.w-dropdown {
  width: 14.375rem;
}

.w-full {
  width: 100%;
}

.w-screen {
  width: 100vw;
}

.min-w-\[110px\] {
  min-width: 110px;
}

.min-w-\[120px\] {
  min-width: 120px;
}

.min-w-\[500px\] {
  min-width: 500px;
}

.max-w-350px {
  max-width: 21.875rem;
}

.max-w-450px {
  max-width: 28.125rem;
}

.max-w-500px {
  max-width: 31.25rem;
}

.max-w-\[130px\] {
  max-width: 130px;
}

.max-w-\[2126px\] {
  max-width: 2126px;
}

.max-w-\[255px\] {
  max-width: 255px;
}

.max-w-\[27\%\] {
  max-width: 27%;
}

.max-w-\[34\%\] {
  max-width: 34%;
}

.max-w-\[400px\] {
  max-width: 400px;
}

.max-w-\[460px\] {
  max-width: 460px;
}

.max-w-\[550px\] {
  max-width: 550px;
}

.max-w-\[95\%\] {
  max-width: 95%;
}

.max-w-full {
  max-width: 100%;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.flex-grow {
  flex-grow: 1;
}

.basis-1\/2 {
  flex-basis: 50%;
}

.basis-\[42px\] {
  flex-basis: 42px;
}

.basis-full {
  flex-basis: 100%;
}

.table-fixed {
  table-layout: fixed;
}

.border-collapse {
  border-collapse: collapse;
}

.\!-translate-y-1 {
  --tw-translate-y: -0.25rem !important;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
}

.\!-translate-y-1\.5 {
  --tw-translate-y: -0.375rem !important;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
}

.-translate-x-1\/2 {
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-translate-x-3 {
  --tw-translate-x: -0.75rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-translate-x-5 {
  --tw-translate-x: -1.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-translate-y-1\/2 {
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-translate-y-20 {
  --tw-translate-y: -5rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.translate-x-1\/2 {
  --tw-translate-x: 50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.translate-x-3 {
  --tw-translate-x: 0.75rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.translate-x-5 {
  --tw-translate-x: 1.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.translate-y-1 {
  --tw-translate-y: 0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.translate-y-1\/2 {
  --tw-translate-y: 50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.translate-y-2 {
  --tw-translate-y: 0.5rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.translate-y-4 {
  --tw-translate-y: 1rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.translate-y-\[5px\] {
  --tw-translate-y: 5px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-rotate-\[45deg\] {
  --tw-rotate: -45deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.rotate-90 {
  --tw-rotate: 90deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.rotate-\[45deg\] {
  --tw-rotate: 45deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

@keyframes pulse1 {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0.8);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
  }
}

.animate-pulse1 {
  animation: pulse1 1s infinite;
}

@keyframes pulse2 {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 90, 60, 0.6);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(255, 90, 60, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 90, 60, 0);
  }
}

.animate-pulse2 {
  animation: pulse2 1s infinite;
}

.cursor-default {
  cursor: default;
}

.cursor-pointer {
  cursor: pointer;
}

.cursor-zoom-out {
  cursor: zoom-out;
}

.resize {
  resize: both;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.flex-row {
  flex-direction: row;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.flex-col {
  flex-direction: column;
}

.flex-col-reverse {
  flex-direction: column-reverse;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

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

.items-stretch {
  align-items: stretch;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-1 {
  gap: 0.25rem;
}

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

.gap-15px {
  gap: 0.9375rem;
}

.gap-18px {
  gap: 1.125rem;
}

.gap-25px {
  gap: 1.5625rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-30px {
  gap: 1.875rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-5 {
  gap: 1.25rem;
}

.gap-50px {
  gap: 3.125rem;
}

.gap-5px {
  gap: 0.3125rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-x-10px {
  -moz-column-gap: 10px;
  column-gap: 10px;
}

.gap-x-15px {
  -moz-column-gap: 0.9375rem;
  column-gap: 0.9375rem;
}

.gap-x-2 {
  -moz-column-gap: 0.5rem;
  column-gap: 0.5rem;
}

.gap-x-25px {
  -moz-column-gap: 1.5625rem;
  column-gap: 1.5625rem;
}

.gap-x-3 {
  -moz-column-gap: 0.75rem;
  column-gap: 0.75rem;
}

.gap-x-30px {
  -moz-column-gap: 1.875rem;
  column-gap: 1.875rem;
}

.gap-x-5 {
  -moz-column-gap: 1.25rem;
  column-gap: 1.25rem;
}

.gap-x-\[18px\] {
  -moz-column-gap: 18px;
  column-gap: 18px;
}

.gap-y-1 {
  row-gap: 0.25rem;
}

.gap-y-10 {
  row-gap: 2.5rem;
}

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

.gap-y-15px {
  row-gap: 0.9375rem;
}

.gap-y-3 {
  row-gap: 0.75rem;
}

.gap-y-30px {
  row-gap: 1.875rem;
}

.gap-y-4 {
  row-gap: 1rem;
}

.gap-y-5 {
  row-gap: 1.25rem;
}

.gap-y-50px {
  row-gap: 3.125rem;
}

.space-y-1> :not([hidden])~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
}

.space-y-10> :not([hidden])~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2.5rem * var(--tw-space-y-reverse));
}

.space-y-2> :not([hidden])~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}

.space-y-4> :not([hidden])~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}

.space-y-5> :not([hidden])~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.25rem * var(--tw-space-y-reverse));
}

.space-y-\[15px\]> :not([hidden])~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(15px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(15px * var(--tw-space-y-reverse));
}

.overflow-auto {
  overflow: auto;
}

.overflow-hidden {
  overflow: hidden;
}

.\!overflow-visible {
  overflow: visible !important;
}

.overflow-visible {
  overflow: visible;
}

.overflow-y-auto {
  overflow-y: auto;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.hyphens-none {
  -webkit-hyphens: none;
  hyphens: none;
}

.whitespace-normal {
  white-space: normal;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.text-nowrap {
  text-wrap: nowrap;
}

.rounded-100\% {
  border-radius: 100%;
}

.rounded-10px {
  border-radius: 0.625rem;
}

.rounded-\[25px\] {
  border-radius: 25px;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-none {
  border-radius: 0px;
}

.rounded-sm {
  border-radius: 0.125rem;
}

.border {
  border-width: 1px;
}

.border-0 {
  border-width: 0px;
}

.border-2 {
  border-width: 2px;
}

.border-3px {
  border-width: 3px;
}

.border-8 {
  border-width: 8px;
}

.border-\[7px\] {
  border-width: 7px;
}

.border-y {
  border-top-width: 1px;
  border-bottom-width: 1px;
}

.border-b {
  border-bottom-width: 1px;
}

.border-b-0 {
  border-bottom-width: 0px;
}

.border-b-2 {
  border-bottom-width: 2px;
}

.border-l {
  border-left-width: 1px;
}

.border-l-0 {
  border-left-width: 0px;
}

.border-l-2 {
  border-left-width: 2px;
}

.border-l-4 {
  border-left-width: 4px;
}

.border-r {
  border-right-width: 1px;
}

.border-r-0 {
  border-right-width: 0px;
}

.border-r-2 {
  border-right-width: 2px;
}

.border-r-4 {
  border-right-width: 4px;
}

.border-t {
  border-top-width: 1px;
}

.border-t-0 {
  border-top-width: 0px;
}

.border-t-\[5px\] {
  border-top-width: 5px;
}

.\!border-dashed {
  border-style: dashed !important;
}

.border-black {
  --tw-border-opacity: 1;
  border-color: rgb(0 0 0 / var(--tw-border-opacity));
}

.border-border-color-1 {
  --tw-border-opacity: 1;
  border-color: rgb(229 234 238 / var(--tw-border-opacity));
}

.border-border-color-10 {
  --tw-border-opacity: 1;
  border-color: rgb(235 238 238 / var(--tw-border-opacity));
}

.border-border-color-11 {
  --tw-border-opacity: 1;
  border-color: rgb(237 237 237 / var(--tw-border-opacity));
}

.border-border-color-12 {
  --tw-border-opacity: 1;
  border-color: rgb(225 230 255 / var(--tw-border-opacity));
}

.border-border-color-13 {
  --tw-border-opacity: 1;
  border-color: rgb(241 248 255 / var(--tw-border-opacity));
}

.border-border-color-14 {
  --tw-border-opacity: 1;
  border-color: rgb(87 100 102 / var(--tw-border-opacity));
}

.border-border-color-15 {
  --tw-border-opacity: 1;
  border-color: rgb(244 250 255 / var(--tw-border-opacity));
}

.border-border-color-16 {
  --tw-border-opacity: 1;
  border-color: rgb(147 149 158 / var(--tw-border-opacity));
}

.border-border-color-17 {
  --tw-border-opacity: 1;
  border-color: rgb(222 226 230 / var(--tw-border-opacity));
}

.border-border-color-18 {
  --tw-border-opacity: 1;
  border-color: rgb(32 51 54 / var(--tw-border-opacity));
}

.border-border-color-3 {
  --tw-border-opacity: 1;
  border-color: rgb(92 97 127 / var(--tw-border-opacity));
}

.border-border-color-8 {
  --tw-border-opacity: 1;
  border-color: rgb(246 246 246 / var(--tw-border-opacity));
}

.border-border-color-9 {
  --tw-border-opacity: 1;
  border-color: rgb(228 236 242 / var(--tw-border-opacity));
}

.border-border-dashed {
  --tw-border-opacity: 1;
  border-color: rgb(221 221 221 / var(--tw-border-opacity));
}

.border-border-primary {
  --tw-border-opacity: 1;
  border-color: rgb(238 238 238 / var(--tw-border-opacity));
}

.border-primary-color {
  --tw-border-opacity: 1;
  border-color: rgb(0 0 0 / var(--tw-border-opacity));
}

.border-secondary-color {
  --tw-border-opacity: 1;
  border-color: rgb(255 90 60 / var(--tw-border-opacity));
}

.border-section-bg-1 {
  --tw-border-opacity: 1;
  border-color: rgb(242 246 247 / var(--tw-border-opacity));
}

.border-transparent {
  border-color: transparent;
}

.border-white {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
}

.border-white-4 {
  --tw-border-opacity: 1;
  border-color: rgb(230 236 240 / var(--tw-border-opacity));
}

.border-white-5 {
  --tw-border-opacity: 1;
  border-color: rgb(240 244 247 / var(--tw-border-opacity));
}

.border-white-6 {
  --tw-border-opacity: 1;
  border-color: rgb(241 241 241 / var(--tw-border-opacity));
}

.border-opacity-20 {
  --tw-border-opacity: 0.2;
}

.border-opacity-25 {
  --tw-border-opacity: 0.25;
}

.bg-black {
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity));
}

.bg-color-6 {
  --tw-bg-opacity: 1;
  background-color: rgb(245 223 220 / var(--tw-bg-opacity));
}

.bg-gray1 {
  --tw-bg-opacity: 1;
  background-color: rgb(126 126 126 / var(--tw-bg-opacity));
}

.bg-green {
  --tw-bg-opacity: 1;
  background-color: rgb(119 199 32 / var(--tw-bg-opacity));
}

.bg-heading-color {
  --tw-bg-opacity: 1;
  background-color: rgb(7 28 31 / var(--tw-bg-opacity));
}

.bg-lightBlack {
  background-color: rgba(0, 0, 0, 0.7);
}

.bg-orange {
  --tw-bg-opacity: 1;
  background-color: rgb(255 165 0 / var(--tw-bg-opacity));
}

.bg-overlay {
  background-color: rgba(7, 28, 31, 0.6);
}

.bg-overlay-primary {
  --tw-bg-opacity: 1;
  background-color: rgba(7, 28, 31, var(--tw-bg-opacity));
}

.bg-primary-color {
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity));
}

.bg-primary-color-3 {
  --tw-bg-opacity: 1;
  background-color: rgb(19 50 54 / var(--tw-bg-opacity));
}

.bg-secondary-color {
  --tw-bg-opacity: 1;
  background-color: rgb(220 34 83 / var(--tw-bg-opacity));
}

.bg-secondary-color-2 {
  --tw-bg-opacity: 1;
  background-color: rgb(203 52 33 / var(--tw-bg-opacity));
}

.bg-section-bg-1 {
  --tw-bg-opacity: 1;
  background-color: #8686860f;
}

.bg-section-bg-2 {
  --tw-bg-opacity: 1;
  background-color: rgb(23 27 42 / var(--tw-bg-opacity));
}

.bg-section-bg-5 {
  --tw-bg-opacity: 1;
  background-color: rgb(255 242 240 / var(--tw-bg-opacity));
}

.bg-section-bg-6 {
  padding: 3px;
  background-color: #1c0f63;
}

/* Responsive Styles */
@media (max-width: 600px) {
  .bg-section-bg-6 {
    padding: 1px;
  }
}

.bg-section-bg-7 {
  --tw-bg-opacity: 1;
  background-color: rgb(40 43 56 / var(--tw-bg-opacity));
}

.bg-table-bg {
  --tw-bg-opacity: 1;
  background-color: rgb(247 248 250 / var(--tw-bg-opacity));
}

.bg-transparent {
  background-color: transparent;
}

.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

.bg-white-5 {
  --tw-bg-opacity: 1;
  background-color: rgb(240 244 247 / var(--tw-bg-opacity));
}

.bg-opacity-10 {
  --tw-bg-opacity: 0.1;
}

.bg-opacity-100 {
  --tw-bg-opacity: 1;
}

.bg-opacity-30 {
  --tw-bg-opacity: 0.3;
}

.bg-opacity-5 {
  --tw-bg-opacity: 0.05;
}

.bg-opacity-75 {
  --tw-bg-opacity: 0.75;
}

.bg-opacity-90 {
  --tw-bg-opacity: 0.9;
}

.bg-\[url\(\'\.\.\/img\/bg\/13\.jpg\'\)\] {
  background-image: url("../img/bg/13.jpg");
}

.bg-\[url\(\'\.\.\/img\/bg\/14\.jpg\'\)\] {
  background-image: url("../img/bg/14.jpg");
}

.bg-\[url\(\'\.\.\/img\/bg\/15\.jpg\'\)\] {
  background-image: url("../img/bg/15.jpg");
}

.bg-\[url\(\'\.\.\/img\/bg\/19\.jpg\'\)\] {
  background-image: url("../img/bg/19.jpg");
}

.bg-\[url\(\'\.\.\/img\/bg\/20\.jpg\'\)\] {
  background-image: url("/assets/img/20.jpg");
}

.bg-\[url\(\'\.\.\/img\/bg\/22\.jpg\'\)\] {
  background-image: url("../img/bg/22.jpg");
}

.bg-\[url\(\'\.\.\/img\/bg\/23\.jpg\'\)\] {
  background-image: url("../img/bg/23.jpg");
}

.bg-\[url\(\'\.\.\/img\/bg\/6\.jpg\'\)\] {
  background-image: url("../img/bg/6.jpg");
}

.bg-\[url\(\'\.\.\/img\/bg\/7\.jpg\'\)\] {
  background-image: url("../img/bg/7.jpg");
}

.bg-\[url\(\'\.\.\/img\/bg\/8\.jpg\'\)\] {
  background-image: url("../img/bg/8.jpg");
}

.bg-\[url\(\'\.\.\/img\/blog\/2\.jpg\'\)\] {
  background-image: url("../img/blog/2.jpg");
}

.bg-\[url\(\'\.\.\/img\/blog\/3\.jpg\'\)\] {
  background-image: url("../img/blog/3.jpg");
}

.bg-\[url\(\'\.\.\/img\/gallery\/2\.jpg\'\)\] {
  background-image: url("../img/gallery/2.jpg");
}

.bg-\[url\(\'\.\.\/img\/gallery\/3\.jpg\'\)\] {
  background-image: url("../img/gallery/3.jpg");
}

.bg-\[url\(\'\.\.\/img\/gallery\/7\.jpg\'\)\] {
  background-image: url("../img/gallery/7.jpg");
}

.bg-\[url\(\'\.\.\/img\/gallery\/8\.jpg\'\)\] {
  background-image: url("../img/gallery/8.jpg");
}

.bg-\[url\(\'\.\.\/img\/gallery\/9\.jpg\'\)\] {
  background-image: url("../img/gallery/9.jpg");
}

.bg-\[url\(\'\.\.\/img\/others\/5\.jpg\'\)\] {
  background-image: url("../img/others/5.jpg");
}

.bg-\[url\(\'\.\.\/img\/slider\/11\.jpg\'\)\] {
  background-image: url("../img/slider/11.jpg");
}

.bg-\[url\(\'\.\.\/img\/slider\/111\.jpeg\'\)\] {
  background-image: url("../img/slider/111.jpg");
}

.bg-\[url\(\'\.\.\/img\/slider\/12\.jpg\'\)\] {
  background-image: url("../img/slider/12.jpg");
}

.bg-\[url\(\'\.\.\/img\/slider\/13\.jpg\'\)\] {
  background-image: url("../img/slider/13.jpg");
}

.bg-\[url\(\'\.\.\/img\/slider\/14\.jpg\'\)\] {
  background-image: url("../img/slider/14.jpg");
}

.bg-\[url\(\'\.\.\/img\/slider\/52\.jpg\'\)\] {
  background-image: url("../img/slider/52.jpg");
}

.bg-\[url\(\'\.\.\/img\/slider\/62\.jpg\'\)\] {
  background-image: url("../img/slider/62.jpg");
}

.bg-gradient-color-2 {
  background-image: linear-gradient(to top,
      rgba(7, 28, 31, 0) 0%,
      rgba(7, 28, 31, 1) 90%);
}

.bg-gradient-color-3 {
  background-image: linear-gradient(to bottom,
      rgba(7, 28, 31, 0) 0%,
      rgba(7, 28, 31, 1) 90%);
}

.bg-gradient-color-5 {
  background-image: linear-gradient(to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.8) 70%);
}

.bg-cover {
  background-size: cover;
}

.bg-fixed {
  background-attachment: fixed;
}

.bg-center {
  background-position: center;
}

.bg-top {
  background-position: top;
}

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

.object-cover {
  -o-object-fit: cover;
  object-fit: cover;
}

.p-1 {
  padding: 0.25rem;
}

.p-10 {
  padding: 2.5rem;
}

.p-10px {
  padding: 0.625rem;
}

.p-15px {
  padding: 0.9375rem;
}

.p-1px {
  padding: 1px;
}

.p-2 {
  padding: 0.5rem;
}

.p-25px {
  padding: 1.5625rem;
}

.p-30px {
  padding: 1.875rem;
}

.p-35px {
  padding: 2.1875rem;
}

.p-5 {
  padding: 1.25rem;
}

.p-50px {
  padding: 3.125rem;
}

.px-0 {
  padding-left: 0px;
  padding-right: 0px;
}

.px-0\.5 {
  padding-left: 0.125rem;
  padding-right: 0.125rem;
}

.px-10 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.px-10px {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}

.px-15px {
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
}

.px-18px {
  padding-left: 1.125rem;
  padding-right: 1.125rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-22px {
  padding-left: 1.375rem;
  padding-right: 1.375rem;
}

.px-25px {
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-30px {
  padding-left: 1.875rem;
  padding-right: 1.875rem;
}

.px-35px {
  padding-left: 2.1875rem;
  padding-right: 2.1875rem;
}

.px-3px {
  padding-left: 3px;
  padding-right: 3px;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.px-5px {
  padding-left: 0.3125rem;
  padding-right: 0.3125rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-7px {
  padding-left: 0.4375rem;
  padding-right: 0.4375rem;
}

.py-0 {
  padding-top: 0px;
  padding-bottom: 0px;
}

.py-0\.5 {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.py-100px {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}

.py-10px {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

.py-110px {
  padding-top: 6.875rem;
  padding-bottom: 6.875rem;
}

.py-14px {
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}

.py-15px {
  padding-top: 0.9375rem;
  padding-bottom: 0.9375rem;
}

.py-1px {
  padding-top: 1px;
  padding-bottom: 1px;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-21px {
  padding-top: 1.3125rem;
  padding-bottom: 1.3125rem;
}

.py-22px {
  padding-top: 1.375rem;
  padding-bottom: 1.375rem;
}

.py-23px {
  padding-top: 1.4375rem;
  padding-bottom: 1.4375rem;
}

.py-25px {
  padding-top: 1.5625rem;
  padding-bottom: 1.5625rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-30 {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
}

.py-30px {
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
}

.py-35px {
  padding-top: 2.1875rem;
  padding-bottom: 2.1875rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.py-50px {
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
}

.py-5px {
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
}

.py-6px {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}

.py-7 {
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}

.py-7px {
  padding-top: 0.4375rem;
  padding-bottom: 0.4375rem;
}

.pb-0 {
  padding-bottom: 0px;
}

.pb-0\.5 {
  padding-bottom: 0.125rem;
}

.pb-1 {
  padding-bottom: 0.25rem;
}

.pb-10 {
  padding-bottom: 2.5rem;
}

.pb-100px {
  padding-bottom: 6.25rem;
}

.pb-10px {
  padding-bottom: 0.625rem;
}

.pb-110px {
  padding-bottom: 6.875rem;
}

.pb-115px {
  padding-bottom: 7.1875rem;
}

.pb-140px {
  padding-bottom: 8.75rem;
}

.pb-15px {
  padding-bottom: 0.9375rem;
}

.pb-2 {
  padding-bottom: 0.5rem;
}

.pb-20 {
  padding-bottom: 5rem;
}

.pb-21px {
  padding-bottom: 1.3125rem;
}

.pb-25px {
  padding-bottom: 1.5625rem;
}

.pb-3 {
  padding-bottom: 0.75rem;
}

.pb-30 {
  padding-bottom: 7.5rem;
}

.pb-30px {
  padding-bottom: 1.875rem;
}

.pb-35px {
  padding-bottom: 2.1875rem;
}

.pb-4 {
  padding-bottom: 1rem;
}

.pb-5 {
  padding-bottom: 1.25rem;
}

.pb-50px {
  padding-bottom: 3.125rem;
}

.pb-55px {
  padding-bottom: 3.4375rem;
}

.pb-60px {
  padding-bottom: 3.75rem;
}

.pb-65px {
  padding-bottom: 4.0625rem;
}

.pb-70px {
  padding-bottom: 4.375rem;
}

.pb-8 {
  padding-bottom: 2rem;
}

.pb-90px {
  padding-bottom: 5.625rem;
}

.pb-\[104px\] {
  padding-bottom: 104px;
}

.pb-\[105px\] {
  padding-bottom: 105px;
}

.pb-\[75px\] {
  padding-bottom: 75px;
}

.pl-0 {
  padding-left: 0px;
}

.pl-0\.5 {
  padding-left: 0.125rem;
}

.pl-1 {
  padding-left: 0.25rem;
}

.pl-1\.5 {
  padding-left: 0.375rem;
}

.pl-10px {
  padding-left: 0.625rem;
}

.pl-15px {
  padding-left: 0.9375rem;
}

.pl-25px {
  padding-left: 1.5625rem;
}

.pl-30px {
  padding-left: 1.875rem;
}

.pl-35px {
  padding-left: 2.1875rem;
}

.pl-5 {
  padding-left: 1.25rem;
}

.pl-50px {
  padding-left: 3.125rem;
}

.pl-5px {
  padding-left: 0.3125rem;
}

.pl-7 {
  padding-left: 1.75rem;
}

.pl-8 {
  padding-left: 2rem;
}

.pr-0 {
  padding-right: 0px;
}

.pr-0\.5 {
  padding-right: 0.125rem;
}

.pr-1 {
  padding-right: 0.25rem;
}

.pr-1\.5 {
  padding-right: 0.375rem;
}

.pr-10 {
  padding-right: 2.5rem;
}

.pr-10px {
  padding-right: 0.625rem;
}

.pr-15px {
  padding-right: 0.9375rem;
}

.pr-18px {
  padding-right: 1.125rem;
}

.pr-25px {
  padding-right: 1.5625rem;
}

.pr-3 {
  padding-right: 0.75rem;
}

.pr-30px {
  padding-right: 1.875rem;
}

.pr-35px {
  padding-right: 2.1875rem;
}

.pr-4 {
  padding-right: 1rem;
}

.pr-5 {
  padding-right: 1.25rem;
}

.pr-50px {
  padding-right: 3.125rem;
}

.pr-6 {
  padding-right: 1.5rem;
}

.pr-7 {
  padding-right: 1.75rem;
}

.pr-8 {
  padding-right: 2rem;
}

.pt-10 {
  padding-top: 2.5rem;
}

.pt-100px {
  padding-top: 6.25rem;
}

.pt-10px {
  padding-top: 0.625rem;
}

.pt-115px {
  padding-top: 7.1875rem;
}

.pt-140px {
  padding-top: 8.75rem;
}

.pt-15px {
  padding-top: 0.9375rem;
}

.pt-187px {
  padding-top: 11.6875rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.pt-20 {
  padding-top: 5rem;
}

.pt-22px {
  padding-top: 1.375rem;
}

.pt-25px {
  padding-top: 1.5625rem;
}

.pt-3 {
  padding-top: 0.75rem;
}

.pt-30 {
  padding-top: 7.5rem;
}

.pt-300px {
  padding-top: 18.75rem;
}

.pt-30px {
  padding-top: 1.875rem;
}

.pt-35px {
  padding-top: 2.1875rem;
}

.pt-3px {
  padding-top: 3px;
}

.pt-4 {
  padding-top: 1rem;
}

.pt-5 {
  padding-top: 1.25rem;
}

.pt-50px {
  padding-top: 3.125rem;
}

.pt-5px {
  padding-top: 0.3125rem;
}

.pt-60px {
  padding-top: 3.75rem;
}

.pt-6px {
  padding-top: 0.375rem;
}

.pt-70px {
  padding-top: 4.375rem;
}

.pt-90px {
  padding-top: 5.625rem;
}

.pt-\[290px\] {
  padding-top: 290px;
}

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

.text-start {
  text-align: start;
}

.align-item {
  align-items: center;
}

.text-end {
  text-align: end;
}

.font-poppins {
  font-family: "Poppins", sans-serif;
}

.text-10px {
  font-size: 0.625rem;
}

.text-11px {
  font-size: 0.6875rem;
}

.text-13px {
  font-size: 0.8125rem;
}

.text-17px {
  font-size: 1.0625rem;
}

.text-22px {
  font-size: 1.375rem;
}

.text-25px {
  font-size: 1.5625rem;
}

.text-26px {
  font-size: 1.625rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-34px {
  font-size: 2.125rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-40px {
  font-size: 2.5rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text-50px {
  font-size: 3.125rem;
}

.text-65px {
  font-size: 4.0625rem;
}

.text-6xl {
  font-size: 3.75rem;
  line-height: 1;
}

.text-80px {
  font-size: 5rem;
}

.text-\[110px\] {
  font-size: 110px;
}

.text-\[12\.25px\] {
  font-size: 12.25px;
}

.text-\[120px\] {
  font-size: 120px;
}

.text-\[12px\] {
  font-size: 12px;
}

.text-\[14px\] {
  font-size: 14px;
}

.text-\[240px\] {
  font-size: 240px;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.font-bold {
  font-weight: 700;
}

.font-extrabold {
  font-weight: 800;
}

.font-medium {
  font-weight: 500;
}

.font-normal {
  font-weight: 400;
}

.font-semibold {
  /* font-weight: 600; */
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

.\!leading-22px {
  line-height: 1.375rem !important;
}

.leading-1 {
  line-height: 1;
}

.leading-1\.2 {
  line-height: 1.2;
}

.leading-1\.3 {
  line-height: 1.3;
}

.leading-1\.5 {
  line-height: 1.5;
}

.leading-1\.8 {
  line-height: 1.8;
}

.leading-10 {
  line-height: 2.5rem;
}

.leading-12 {
  line-height: 3rem;
}

.leading-15px {
  line-height: 0.9375rem;
}

.leading-22px {
  line-height: 1.375rem;
}

.leading-23px {
  line-height: 1.4375rem;
}

.leading-25px {
  line-height: 1.5625rem;
}

.leading-30px {
  line-height: 1.875rem;
}

.leading-5 {
  line-height: 1.25rem;
}

.leading-50px {
  line-height: 3.125rem;
}

.leading-60px {
  line-height: 3.75rem;
}

.leading-65px {
  line-height: 4.0625rem;
}

.leading-9 {
  line-height: 2.25rem;
}

.leading-\[0\] {
  line-height: 0;
}

.leading-\[70px\] {
  line-height: 70px;
}

.tracking-\[3px\] {
  letter-spacing: 3px;
}

.\!text-white {
  --tw-text-opacity: 1 !important;
  color: rgb(255 255 255 / var(--tw-text-opacity)) !important;
}

.text-black {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}

.text-color-1 {
  --tw-text-opacity: 1;
  color: rgb(140 178 178 / var(--tw-text-opacity));
}

.text-color-7 {
  --tw-text-opacity: 1;
  color: rgb(33 37 41 / var(--tw-text-opacity));
}

.text-green {
  --tw-text-opacity: 1;
  color: rgb(119 199 32 / var(--tw-text-opacity));
}

.text-heading-color {
  --tw-text-opacity: 1;
  color: rgb(7 28 31 / var(--tw-text-opacity));
}

.text-paragraph-color {
  --tw-text-opacity: 1;
  color: rgb(92 114 125 / var(--tw-text-opacity));
}

.text-primary-color {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}

.text-ratings {
  --tw-text-opacity: 1;
  color: rgb(255 184 0 / var(--tw-text-opacity));
}

.text-secondary-color {
  color: rgb(220 34 83);
}

.secondary-colour-hover:hover {
  color: rgb(220 34 83);
}

.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.text-white-7 {
  --tw-text-opacity: 1;
  color: rgb(247 247 247 / var(--tw-text-opacity));
}

.underline {
  text-decoration-line: underline;
}

.opacity-0 {
  opacity: 0;
}

.opacity-10 {
  opacity: 0.1;
}

.opacity-100 {
  opacity: 1;
}

.opacity-25 {
  opacity: 0.25;
}

.opacity-40 {
  opacity: 0.4;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-60 {
  opacity: 0.6;
}

.shadow {
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color),
    0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-box-shadow-1 {
  --tw-shadow: 0 16px 32px 0 rgba(7, 28, 31, 0.1);
  --tw-shadow-colored: 0 16px 32px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-box-shadow-2 {
  --tw-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  --tw-shadow-colored: 0 0 4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-box-shadow-3 {
  --tw-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.28);
  --tw-shadow-colored: 0 1px 6px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-box-shadow-4 {
  --tw-shadow: 0 5px 20px 0 rgba(23, 44, 82, 0.1);
  --tw-shadow-colored: 0 5px 20px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-box-shadow-5 {
  --tw-shadow: 0 8px 16px 0 rgba(93, 93, 93, 0.1);
  --tw-shadow-colored: 0 8px 16px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.outline-none {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.outline {
  outline-style: solid;
}

.outline-4 {
  outline-width: 4px;
}

.outline-offset-\[15px\] {
  outline-offset: 15px;
}

.outline-border-color-9 {
  outline-color: #e4ecf2;
}

.blur {
  --tw-blur: blur(8px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.invert {
  --tw-invert: invert(100%);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.transition {
  transition-property: color, background-color, border-color,
    text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter,
    -webkit-backdrop-filter;
  transition-property: color, background-color, border-color,
    text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter,
    backdrop-filter;
  transition-property: color, background-color, border-color,
    text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter,
    backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-none {
  transition-property: none;
}

.duration-200 {
  transition-duration: 200ms;
}

.duration-300 {
  transition-duration: 300ms;
}

.duration-500 {
  transition-duration: 500ms;
}

.duration-700 {
  transition-duration: 700ms;
}

/*============= vaiables =============*/

[dir="rtl"] {
  /* position */
  --left--5: 5px;
  --left-auto: auto;
  --left-3-per: -3%;
  --left-10-per: -10%;
  --left-15-per: -15%;
  --left-half: -50%;
  --right--14: 14px;
  --right--20: 20px;
  --right-16: -16px;
  --right-20: -20px;
  --right-100: -100px;
  --right-1-per: -1%;
  --right-3-per: -3%;
  --right-8-per: -8%;
  --right-15-per: -15%;
  --righ-half: -50%;
  /* transform */
  --x--6: translateX(6px);
  --x--10: translateX(10px);
  --x--30: translateX(30px);
  --x--37: translateX(37px);
  --x--40: translateX(40px);
  --x--50: translateX(50px);
  --x--60: translateX(60px);
  --x--half: translateX(50%);
  --x-6: translateX(-6px);
  --x-10: translateX(-10px);
  --x-30: translateX(-30px);
  --x-37: translateX(-37px);
  --x-40: translateX(-40px);
  --x-50: translateX(-50px);
  --x-60: translateX(-60px);
  --x-half: translateX(-50%);
  --x-3d-half: translate3d(50%, -50%, 0);
}

/*============= default style =============*/

/* typography */

body {
  color: var(--paragraph-color);
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  font-family: var(--body-font);
  line-height: 1.8;
  z-index: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  clear: both;
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
}

h1 {
  font-size: 24px;
}

h2 {
  font-size: 20px;
}

h3 {
  font-size: 18px;
}

h4 {
  font-size: 17px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 14px;
}

a,
button,
input,
span {
  display: inline-block;
}

p {
  color: var(--paragraph-color);
  font-size: 14px;
  -webkit-hyphens: auto;
  hyphens: auto;
}

a {
  color: inherit;
  text-decoration: none;
  color: var(--paragraph-color);
  transition: all 0.3s ease 0s;
  display: inline-block;
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none;
  color: inherit;
}

a:hover {
  color: var(--secondary-color);
}

button,
input,
optgroup,
select,
textarea {
  font-family: var(--body-font);
  transition: all 0.3s ease 0s;
}

pre,
code,
kbd,
tt,
var,
samp {
  font-family: var(--body-font);
}

h1 button,
h2 button,
h3 button,
h4 button,
h5 button,
h6 button {
  font-family: var(--heading-font);
  line-height: 1.5;
}

pre {
  word-break: break-word;
}

a i {
  padding: 0 2px;
}

img {
  max-width: 100%;
}

/*============= header =============*/

.sticky-header.active {
  display: none;
}

.sticky-secondary.active {
  background: var(--heading-color);
}

.sticky-header.active .container {
  padding-top: 10px;
  padding-bottom: 10px;
}

.sticky-secondary.active .container {
  padding-top: 17px;
  padding-bottom: 17px;
}

.sticky-header.active .navbar-container {
  justify-content: space-between;
}

.sticky-header.active .header-logo {
  display: block;
}

.sticky-header.active .navbar {
  justify-content: flex-end;
}

.mobile-menu-container.active .drawer {
  left: 0;
}

[dir="rtl"] .mobile-menu-container.active .drawer {
  right: 0;
  left: auto;
}

.cart-container.active .drawer {
  right: 0;
}

[dir="rtl"] .cart-container.active .drawer {
  left: 0;
  right: auto;
}

.drawer-container.active .drawer-overlay {
  opacity: 0.4;
  visibility: visible;
  z-index: 999999;
}

.language::before {
  content: "\e911";
  font-size: 14px;
  position: absolute;
  top: 36%;
  right: var(right--14);
  transform: translateY(-50%);
  font-family: "icomoon";
  color: var(--secondary-color);
}

[dir="rtl"] .language::before {
  left: -14px;
}

/* mobile menu */

.show-drawer svg {
  position: absolute;
  top: 50%;
  left: var(--left-half);
  width: 50px;
  height: 60px;
  margin-top: -2px;
  margin-left: -2px;
  cursor: pointer;
  transform: var(--x-3d-half);
}

.show-drawer svg path {
  transition: stroke-dashoffset 0.5s cubic-bezier(0.25, -0.25, 0.75, 1.25),
    stroke-dasharray 0.5s cubic-bezier(0.25, -0.25, 0.75, 1.25);
  fill: none;
  stroke: #333;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  stroke-width: 30px;
}

.show-drawer svg path#top,
.show-drawer svg path#bottom {
  stroke-dasharray: 240px 950px;
}

.show-drawer svg path#middle {
  stroke-dasharray: 240px 240px;
}

.show-drawer .close svg path#top,
.show-drawer .close svg path#bottom {
  stroke-dasharray: -650px;
  stroke-dashoffset: -650px;
}

.show-drawer .close svg path#middle {
  stroke-dasharray: 1px 220px;
  stroke-dashoffset: -115px;
}

/*============= banner =============*/

.breadcrumb .home::after {
  position: absolute;
  content: "\f054";
  font-family: "Font Awesome\ 5 Free";
  font-weight: 900;
  font-size: 10px;
  right: var(--right--20);
  top: 50%;
  transform: translateY(-50%);
}

[dir="rtl"] .breadcrumb .home::after {
  left: -20px;
  right: auto;
  content: "\f053";
}

/* search form */

.search-form-container.active .search-form {
  height: 90px;
}

.search-form-container.active .for-search-show {
  display: none;
}

.search-form-container.active .for-search-close {
  display: block;
}

/*============= scrollbar  =============*/

/* width */

.drawer ::-webkit-scrollbar {
  width: 2px;
}

/* Track */

.drawer ::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */

.drawer ::-webkit-scrollbar-thumb {
  background: #dedede;
}

/*============= swiper slider  =============*/

.swiper-container .swiper-button-prev::after,
.swiper-container .swiper-button-next::after {
  display: none;
}

.swiper-container .swiper-button-prev,
.swiper-container .swiper-button-next {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  text-align: center;
  z-index: 9999 !important;
  border: 1px solid var(--border-color-1);
  color: var(--primary-color);
  font-size: 20px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.swiper-container .swiper-button-prev {
  transform: translateX(0);
}

.swiper-container .swiper-button-next {
  transform: translateX(0);
}

.swiper-container:hover .swiper-button-prev {
  transform: var(--x-6);
}

.swiper-container:hover .swiper-button-next {
  transform: var(--x--6);
}

.swiper-container:hover .swiper-button-prev,
.swiper-container:hover .swiper-button-next {
  opacity: 100;
  visibility: visible;
}

.swiper-container .swiper-button-prev:hover,
.swiper-container .swiper-button-next:hover {
  background: var(--secondary-color);
  color: white;
  border-color: var(--secondary-color);
}

.swiper-container .swiper-pagination,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  position: absolute;
  bottom: 40px;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  transition: 0.3s;
}

.home-3 .swiper-pagination-bullet {
  background: white;
  opacity: 0.6;
}

.swiper-pagination-bullet:hover {
  background: var(--secondary-color);
  width: 15px;
  height: 15px;
  opacity: 1;
}

.home-3 .swiper-pagination-bullet-active,
.swiper-pagination-bullet-active {
  background: var(--secondary-color);
  width: 15px;
  height: 15px;
  margin-bottom: -2px !important;
}

/* hero slider */

.hero-slider-container .swiper-button-prev,
.hero-slider-container .swiper-button-next {
  width: 60px;
  height: 60px;
  border-radius: 1px;
}

.hero-slider-container .swiper-button-prev {
  transform: var(--x-30);
}

.hero-slider-container .swiper-button-next {
  transform: var(--x--30);
}

.hero-slider-container:hover .swiper-button-prev {
  transform: var(--x-10);
}

.hero-slider-container:hover .swiper-button-next {
  transform: var(--x--10);
}

.hero-slider2 .swiper-button-prev,
.hero-slider2 .swiper-button-next {
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: var(--paragraph-color);
  background-color: var(--section-bg-1);
  font-size: 14px;
  transform: translate(0);
  opacity: 1;
  visibility: visible;
  border: none;
  transition: all 0.3s;
  position: relative;
}

.hero-slider2 .swiper-button-next {
  right: 0;
}

[dir="rtl"] .hero-slider2 .swiper-button-next {
  left: 0;
}

.hero-slider2:hover .swiper-button-prev,
.hero-slider2:hover .swiper-button-next {
  transform: translate(0);
}

.hero-slider2 .swiper-button-prev:hover,
.hero-slider2 .swiper-button-next:hover {
  background: var(--section-bg-1);
  color: var(--secondary-color);
}

/* .hero-slider2-tumbs_slider .swiper-wrapper {
  max-width: calc(100%);
}
.hero-slider2-tumbs_slider .swiper-slide {
  width: calc((100% / 3));
} */

/* testimonials slider*/

.testimonial-quote-menu {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  z-index: 10;
}

.testimonial-quote-menu2 {
  z-index: 9;
  display: none;
}

.testimonial-quote-menu li img {
  position: absolute;
  cursor: pointer;
}

.testimonial-quote-menu li:nth-child(1) img {
  width: 105px;
  top: -14%;
  left: var(--left--5);
}

[dir="rtl"] .testimonial-quote-menu li:nth-child(1) img {
  right: -5px;
}

.testimonial-quote-menu li:nth-child(2) img {
  width: 65px;
  top: -15px;
  left: auto;
  right: var(--right-1-per);
}

[dir="rtl"] .testimonial-quote-menu li:nth-child(2) img {
  right: auto;
  left: 1%;
}

.testimonial-quote-menu li:nth-child(3) img {
  width: 65px;
  top: 69.23%;
  left: var(--left-10-per);
}

[dir="rtl"] .testimonial-quote-menu li:nth-child(3) img {
  left: auto;
  right: 10%;
}

.testimonial-quote-menu li:nth-child(4) img {
  width: 125px;
  top: 58.1%;
  left: auto;
  right: var(--right-8-per);
}

[dir="rtl"] .testimonial-quote-menu li:nth-child(4) img {
  right: auto;
  left: 8%;
}

.testimonial-quote-menu li:nth-child(5) img {
  width: 75px;
  top: 40%;
  left: var(--left-3-per);
}

[dir="rtl"] .testimonial-quote-menu li:nth-child(5) img {
  right: 3%;
}

.testimonial-quote-menu li:nth-child(6) img {
  width: 75px;
  top: 25%;
  left: auto;
  right: var(--right-15-per);
}

[dir="rtl"] .testimonial-quote-menu li:nth-child(7) img {
  right: 15%;
}

.testimonial-quote-menu li:nth-child(8) img {
  width: 55px;
  top: 40%;
  left: auto;
  right: var(--right-3-per);
}

[dir="rtl"] .testimonial-quote-menu2 li img {
  width: 125px !important;
  visibility: hidden;
  opacity: 0;
}

.testimonial-quote-menu2 li.active img {
  opacity: 0.8;
  visibility: visible;
  z-index: 10000000;
}

.testimonial-quote-menu li:nth-child(1).active img {
  animation: imgAnimation1 0.3s ease-in-out;
}

.testimonial-quote-menu li:nth-child(2).active img {
  animation: imgAnimation2 0.3s ease-in-out;
}

.testimonial-quote-menu li:nth-child(3).active img {
  animation: imgAnimation3 0.3s ease-in-out;
}

.testimonial-quote-menu li:nth-child(4).active img {
  animation: imgAnimation4 0.3s ease-in-out;
}

.testimonial-quote-menu li:nth-child(5).active img {
  animation: imgAnimation5 0.3s ease-in-out;
}

.testimonial-quote-menu li:nth-child(6).active img {
  animation: imgAnimation6 0.3s ease-in-out;
}

.testimonial-quote-menu li:nth-child(7).active img {
  animation: imgAnimation7 0.3s ease-in-out;
}

.testimonial-quote-menu li:nth-child(8).active img {
  animation: imgAnimation8 0.3s ease-in-out;
}

[dir="rtl"] .testimonial-quote-menu li:nth-child(1).active img {
  animation: imgAnimation1_rtl 0.3s ease-in-out;
}

[dir="rtl"] .testimonial-quote-menu li:nth-child(2).active img {
  animation: imgAnimation2_rtl 0.3s ease-in-out;
}

[dir="rtl"] .testimonial-quote-menu li:nth-child(3).active img {
  animation: imgAnimation3_rtl 0.3s ease-in-out;
}

[dir="rtl"] .testimonial-quote-menu li:nth-child(4).active img {
  animation: imgAnimation4_rtl 0.3s ease-in-out;
}

[dir="rtl"] .testimonial-quote-menu li:nth-child(5).active img {
  animation: imgAnimation5_rtl 0.3s ease-in-out;
}

[dir="rtl"] .testimonial-quote-menu li:nth-child(6).active img {
  animation: imgAnimation6_rtl 0.3s ease-in-out;
}

[dir="rtl"] .testimonial-quote-menu li:nth-child(7).active img {
  animation: imgAnimation7_rtl 0.3s ease-in-out;
}

[dir="rtl"] .testimonial-quote-menu li:nth-child(8).active img {
  animation: imgAnimation8_rtl 0.3s ease-in-out;
}

@keyframes imgAnimation1 {
  0% {
    top: -14%;
    left: var(--left--5);
  }

  100% {
    top: 8%;
    left: var(--left-half);
    transform: var(--x--half);
  }
}

@keyframes imgAnimation2 {
  0% {
    top: -15px;
    left: auto;
    right: var(--right-1-per);
  }

  100% {
    top: 8%;
    left: auto;
    right: var(--right-half);
    transform: var(--x-half);
  }
}

@keyframes imgAnimation3 {
  0% {
    top: 70%;
    left: var(--left-10-per);
  }

  100% {
    top: 8%;
    left: var(--left-half);
    transform: var(--x--half);
  }
}

@keyframes imgAnimation4 {
  0% {
    top: 58%;
    left: auto;
    right: var(--right-8-per);
  }

  100% {
    top: 8%;
    left: auto;
    right: var(--right-half);
    transform: var(--x-half);
  }
}

@keyframes imgAnimation5 {
  0% {
    top: 40%;
    left: var(--left-3-per);
  }

  100% {
    top: 8%;
    left: var(--left-half);
    transform: var(--x--half);
  }
}

@keyframes imgAnimation6 {
  0% {
    top: 25%;
    right: var(--right-15-per);
  }

  100% {
    top: 8%;
    right: var(--right-half);
    transform: var(--x-half);
  }
}

@keyframes imgAnimation7 {
  0% {
    top: 20%;
    left: var(--left-15-per);
  }

  100% {
    top: 8%;
    left: var(--left-half);
    transform: var(--x--half);
  }
}

@keyframes imgAnimation8 {
  0% {
    top: 40%;
    right: var(--right-3-per);
  }

  100% {
    top: 8%;
    right: var(--right-half);
    transform: var(--x-half);
  }
}

@keyframes imgAnimation1_rtl {
  0% {
    top: -14%;
    right: -5px;
  }

  100% {
    top: 8%;
    right: 50%;
    transform: var(--x--half);
  }
}

@keyframes imgAnimation2_rtl {
  0% {
    top: -15px;
    left: 1%;
  }

  100% {
    top: 8%;
    left: 50%;
    transform: var(--x-half);
  }
}

@keyframes imgAnimation3_rtl {
  0% {
    top: 70%;
    right: 10%;
  }

  100% {
    top: 8%;
    right: 50%;
    transform: var(--x--half);
  }
}

@keyframes imgAnimation4_rtl {
  0% {
    top: 58%;
    left: 8%;
  }

  100% {
    top: 8%;
    left: 50%;
    transform: var(--x-half);
  }
}

@keyframes imgAnimation5_rtl {
  0% {
    top: 40%;
    right: 3%;
  }

  100% {
    top: 8%;
    right: 50%;
    transform: var(--x--half);
  }
}

@keyframes imgAnimation6_rtl {
  0% {
    top: 25%;
    left: 15%;
  }

  100% {
    top: 8%;
    left: 50%;
    transform: var(--x-half);
  }
}

@keyframes imgAnimation7_rtl {
  0% {
    top: 20%;
    right: 15%;
  }

  100% {
    top: 8%;
    right: 50%;
    transform: var(--x--half);
  }
}

@keyframes imgAnimation8_rtl {
  0% {
    top: 40%;
    left: 3%;
  }

  100% {
    top: 8%;
    left: 50%;
    transform: var(--x-half);
  }
}

/* upcoming project slider */

.upcoming-project-slider-container .swiper-button-prev,
.upcoming-project-slider-container .swiper-button-next {
  width: 60px;
  height: 60px;
  border-radius: 0;
  bottom: auto;
  left: auto;
  top: -97px;
  transform: translate(0);
  opacity: 1;
  visibility: visible;
  font-size: 16px;
}

.upcoming-project-slider-container:hover .swiper-button-prev,
.upcoming-project-slider-container:hover .swiper-button-next {
  transform: translate(0);
}

.upcoming-project-slider-container .swiper-button-prev {
  right: var(--right-100);
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: white;
}

[dir="rtl"] .upcoming-project-slider-container .swiper-button-prev {
  left: 100px;
  right: auto;
}

.upcoming-project-slider-container .swiper-button-next {
  right: var(--right-16);
}

[dir="rtl"] .upcoming-project-slider-container .swiper-button-next {
  left: 16px;
  right: auto;
}

/* neibour slider */

.neighbour-slider-tumbs_slider .swiper-slide-thumb-active {
  opacity: 0.6;
}

/* portfolio slider */

.portfolio-slider-container:hover .swiper-button-prev {
  transform: var(--x-37);
}

.portfolio-slider-container:hover .swiper-button-next {
  transform: var(--x--37);
}

/*============= Slider Animation   =============*/

.slide-animation {
  position: relative;
  z-index: 9;
}

.slide-animation>* {
  opacity: 0;
  visibility: hidden;
  animation-name: fadeOutUp;
}

.slide-animation>*:nth-child(1) {
  animation-delay: 0.5s;
  animation-duration: 0.5s;
}

.slide-animation>*:nth-child(2) {
  animation-delay: 1s;
  animation-duration: 1s;
}

.slide-animation>*:nth-child(3) {
  animation-delay: 1.5s;
  animation-duration: 1.5s;
}

.slide-animation>*:nth-child(4) {
  animation-delay: 2s;
  animation-duration: 2s;
}

.slide-animation>*:nth-child(5) {
  animation-delay: 2.5s;
  animation-duration: 2.5s;
}

.slide-animation>*:nth-child(6) {
  animation-delay: 3s;
  animation-duration: 3s;
}

.slide-animation>*:nth-child(7) {
  animation-delay: 3.5s;
  animation-duration: 3.5s;
}

.slide-animation>*:nth-child(8) {
  animation-delay: 4s;
  animation-duration: 4s;
}

.slide-animation>*:nth-child(9) {
  animation-delay: 4.5s;
  animation-duration: 4.5s;
}

.slide-animation>*:nth-child(11) {
  animation-delay: 5s;
  animation-duration: 5s;
}

.swiper-slide-active .slide-animation>*,
.slide-animation-active .slide-animation>* {
  opacity: 1;
  visibility: visible;
  animation-name: fadeInUp;
}

/*============= accordion   =============*/

.neighbour-accordion .active button span {
  background: var(--secondary-color);
}

/*============= nice select    =============*/

.nice-select {
  margin: 0;
  height: 60px;
  line-height: 58px;
  padding-right: 40px;
  padding-left: 20px;
  border-radius: 0;
  min-width: 200px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  width: 100%;
  color: #000000;
}

[dir="rtl"] .nice-select {
  text-align: right !important;
  direction: rtl !important;
  padding-right: 20px !important;
  padding-left: 40px !important;
}

[dir="rtl"] .nice-select::after {
  right: auto;
  left: 12px;
}

.nice-select .list {
  width: 100%;
  z-index: 99;
  max-height: 250px;
  overflow-y: auto;
}

.nice-select .option {
  line-height: 48.8px;
}

[dir="rtl"] .nice-select .option {
  text-align: right;
  padding-left: 29px;
  padding-right: 18px;
}

.form-primary .nice-select {
  font-family: var(--body-font);
  height: 65px;
  border: 2px solid var(--border-color-9);
  font-size: 14px;
  font-weight: bold;
  color: var(--paragraph-color);
  padding: 0 38px 0 18px;
}

.form-loacation .nice-select {
  min-width: 300px;
}

.form-primary .nice-select .list {
  max-height: 400px;
}

.form-primary .nice-select .option {
  line-height: 45.2px;
}

.property-form .nice-select {
  min-width: 190px;
  height: 50px;
  border-color: #ededed;
  line-height: 50px;
}

.add-property-form .nice-select {
  min-width: auto;
}

.form-primary .nice-select::before {
  content: "\f063";
  font-size: 14px;
  position: absolute;
  top: 50%;
  right: var(--right-20);
  transform: translateY(-50%);
  font-family: "Font Awesome\ 5 Free";
  font-weight: 900;
  color: var(--secondary-color);
}

[dir="rtl"] .form-primary .nice-select::before {
  right: auto;
  left: 20px;
}

.form-primary .nice-select::after {
  display: none;
}

.property-form .nice-select::after {
  display: block;
}

.hero-form .nice-select {
  color: var(--paragraph-color);
}

.hero-form .nice-select::before {
  font-family: "Font Awesome\ 5 Free";
  font-weight: 900;
  margin-right: 10px;
  color: var(--secondary-color);
}

.property-form .nice-select::before {
  display: none;
}

.hero-form .apartment-select::before {
  content: "\f073";
}

.hero-form .location-select::before {
  content: "\f1b9";
}

.hero-form .sub-location-select::before {
  content: "\f3fd";
}

.hero-form .bedrooms-select::before {
  content: "\f1cd";
}

[dir="rtl"] .hero-form .selectize::before {
  margin-right: 0;
  margin-left: 15px;
}

/*=============  nice checkbox =============*/

.checkmark.active {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.checkmark.active::after {
  opacity: 1;
}

/*============= range    =============*/

.range-slider .slider {
  height: 8px;
  background-color: white;
  overflow: visible;
}

.range-slider .progress {
  height: 8px;
  background-color: var(--secondary-color);
  border-radius: 20px;
  position: relative;
  overflow: visible;
}

.range input::-webkit-slider-thumb {
  width: 12px;
  height: 12px;
  background: var(--secondary-color);
}

/* Internet Explorer */

input[type="range"]::-ms-thumb {
  width: 12px;
  height: 12px;
  background: var(--secondary-color);
}

.range input:nth-child(2)::-webkit-slider-thumb {
  position: relative;
  overflow: visible;
}

/* .range input:nth-child(2)::-webkit-slider-thumb::after {
  content: url("../img/icons/car.png");
  width: 125px !important;
  height: 50px;
  position: absolute;
  right: -111px;
  top: -10px;
  transform: translateY(-40%);
} */

/* .range input:nth-child(2)::-moz-range-thumb {
  width: 100px !important;
  height: 50px;
  background: url("../img/icons/car.png") no-repeat right;
  border: none;
  border-radius: 0;
  position: relative;
} */

.range input:nth-child(2)::-webkit-slider-thumb {
  width: 100px !important;
  height: 50px;
  background: url("../img/icons/car.png") no-repeat right;
  border-radius: 0;
  transform: translate(6px);
}

/*============= service cards    =============*/

.service-cards .service-card.active .hover-line {
  width: 100% !important;
}

.service-cards .service-card.active .find-service {
  color: var(--secondary-color);
}

.service-cards .service-card-2.active>div {
  box-shadow: var(--box-shadow-1);
}

/*============= tab  =============*/

.plan-tab .active {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.plan-tab .active::after {
  background-color: var(--secondary-color);
}

.hero-tab .tab-links .active button {
  background: var(--secondary-color);
  color: white;
}

.property-tab .tab-links .active button {
  color: var(--secondary-color);
}

/* my account */

.account-tab .tab-links .active button {
  background: var(--section-bg-2);
  color: white;
}

/* history */

.history-tab .tab-links .active button {
  background: var(--secondary-color);
  color: white;
  border-color: var(--secondary-color);
}

/*============= popup gallery =============*/

.goverlay {
  background: var(--section-bg-2);
  opacity: 0.9;
}

.gcontainer {
  cursor: pointer;
}

.gslide-media {
  margin: 0 50px;
}

.gslide-count {
  font-size: 11px;
  color: #8cb2b2;
}

.plyr__control--overlaid {
  border-radius: 15px;
  background: red !important;
  padding: 15px 25px;
}

.plyr--video .plyr__control:hover {
  background: red;
}

.plyr--full-ui input[type="range"] {
  color: red;
}

.plyr--full-ui input[type="range"]:last-child {
  color: white;
}

.gprev,
.gnext,
.gclose {
  width: 24px !important;
  height: 24px !important;
  border: 1px solid white;
  border-radius: 100% !important;
  background: transparent;
  opacity: 0.5;
}

.glightbox-clean .gnext,
.glightbox-clean .gprev {
  top: 90%;
}

.gclose {
  width: 24px !important;
  height: 24px !important;
}

.gprev:hover,
.gnext:hover,
.gclose:hover {
  box-shadow: 0 0 19px rgba(255, 255, 255, 0.4) !important;
  opacity: 1;
}

.glightbox-clean button {
  background: transparent;
}

.gprev svg,
.gnext svg,
.gclose svg {
  width: 10px;
  height: auto;
}

.gclose svg {
  width: 10px !important;
  height: auto;
}

.gslide-inline {
  overflow: visible;
  background-color: transparent;
}

.gslide-inline .ginlined-content {
  background-color: white;
  overflow: auto;
}

.gslide-external {
  overflow: visible;
  background-color: transparent;
}

/*=============  scroll up =============*/

.scroll-up {
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  transition: all 0.3s;
}

.scroll-up.active {
  opacity: 1;
  visibility: visible;
  z-index: 99999;
}

/*=============  brands =============*/

.brands .glightbox2:hover {
  outline: outset;
}

/* letest appartment */

/* .apart-card .card-quick-area.active {
  top: 150px;
} */

/* portfolio filter */

.filter-controllers .is-checked {
  background-color: var(--primary-color);
  color: white;
}

/*============= Google Map Locations  ============= */

.google-map-locations-area #gmap {
  height: 90vh;
}

.google-map-locations-area #gmap .gm-ui-hover-effect {
  top: 0 !important;
  right: 0 !important;
}

[dir="rtl"] .google-map-locations-area #gmap .gm-ui-hover-effect {
  left: 0 !important;
}

.google-map-locations-area #gmap .gm-style .gm-style-iw-c {
  padding: 10px 8px 25px 25px;
  border-radius: 0;
}

[dir="rtl"] .google-map-locations-area #gmap .gm-style .gm-style-iw-c {
  padding: 10px 25px 25px 8px !important;
  border-radius: 0;
}

.map-item {
  padding: 30px 25px 35px;
  box-shadow: var(--box-shadow-4);
}

.map-item .location-name {
  border-bottom: 2px solid var(--border-color-1);
  margin-bottom: 25px;
  color: var(--secondary-color);
  font-size: 20px;
}

.map-item .location-single-info {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
}

.map-item .location-single-info i {
  margin-right: 10px;
  background: var(--secondary-color);
  color: var(--white);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
}

.map-item .btn-wrapper {
  display: flex;
  justify-content: space-between;
}

.map-item .btn {
  padding: 10px 10px;
  font-size: 13px;
  margin-right: 10px;
}

.google-map-locations-list-area .map-item {
  margin-bottom: 50px;
}

.location-search h3 {
  float: left;
  margin-right: 30px;
  margin-bottom: 0;
  line-height: 63px;
  color: var(--white);
}

.location-search .input-item {
  float: left;
  width: 300px;
}

.location-search form {
  padding: 50px 50px 20px;
  background-color: var(--secondary-color);
}

.state-location-title {
  padding: 15px 30px;
  background-color: var(--secondary-color);
  color: var(--white);
  margin: 50px 0;
}

.map-product-item {
  max-width: 260px;
}

.map-product-item img {
  max-width: 100%;
  margin-bottom: 25px;
}

.map-product-item .map-product-title {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
}

.map-product-item .map-product-price {
  color: var(--secondary-color);
}

.map-product-item .map-product-location {
  font-weight: 500;
}

.map-product-item .map-product-location i {
  color: var(--secondary-color);
  margin-right: 2px;
}

.map-product-item .map-product-info {
  font-weight: 500;
}

.map-product-item .map-product-info span {
  margin-right: 10px;
}

.gmap_controls .dropdown {
  color: var(--primary-color);
  outline: 1px solid var(--primary-color);
}

.gmap_controls .dropdown:focus {
  outline-color: rgba(0, 0, 0, 0.2);
}

/*=============  Price Filter Widget ============= */

.price_filter {
  padding-bottom: 13px;
}

.price_slider_amount {
  overflow: hidden;
}

.price_slider_amount>input[type="text"],
.price_slider_amount>input[type="submit"] {
  background: transparent none repeat scroll 0 0;
  border: medium none;
  box-shadow: none;
  float: left;
  height: 25px;
  padding: 0;
  text-align: left;
  width: 140px;
  margin-bottom: 20px;
}

.price_slider_amount>input[type="text"]:focus {
  border: 0;
  outline: none;
}

[dir="rtl"] .price_slider_amount>input[type="text"],
[dir="rtl"] .price_slider_amount>input[type="submit"] {
  float: right;
  text-align: right;
}

.price_slider_amount>input[type="text"] {
  font-weight: 700;
}

.price_filter .ui-widget-content {
  background-color: var(--primary-color);
  border: medium none;
  color: #222;
  height: 3px;
  width: 98%;
  background-image: none;
}

.price_filter .ui-slider .ui-slider-range {
  background-color: var(--secondary-color);
  background-image: none;
}

.price_filter .ui-state-default,
.price_filter .ui-widget-content .ui-state-default,
.price_filter .ui-widget-header .ui-state-default {
  background-color: var(--secondary-color);
  border: medium none;
  border-radius: 100%;
  height: 12px;
  margin-left: 0;
  margin-top: -6px;
  top: 50%;
  width: 12px;
  background-image: none;
  outline: none;
}

.car-price-filter-range .price_filter .ui-widget-content {
  height: 8px;
  background-color: var(--white);
  margin-top: 20px;
}

.car-price-filter-range .price_filter .ui-state-default:last-child::before {
  position: absolute;
}

.car-price-filter-range .price_filter .ui-state-default:last-child::after {
  position: absolute;
  content: "";
  top: -30px;
  left: var(--left--5);
  background-image: url(../img/icons/car.png);
  z-index: 99;
  width: 125px;
  height: 50px;
  background-repeat: no-repeat;
  display: none;
}

.car-price-filter-range .price_slider_amount>input[type="text"],
.car-price-filter-range .price_slider_amount>input[type="submit"] {
  font-weight: 700;
  margin-bottom: 0px;
}

/* 
/*============= responsiveness =============*/

/* tablet  */

@media (min-width: 768px) {
  /* default */

  body {
    font-size: 16px;
    line-height: 1.8;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    line-height: 1.3;
  }

  h1 {
    font-size: 26px;
  }

  h2 {
    font-size: 22px;
  }

  h3 {
    font-size: 20px;
  }

  h4 {
    font-size: 18px;
  }

  h5 {
    font-size: 16px;
  }

  h6 {
    font-size: 15px;
  }

  p {
    line-height: 1.8 !important;
  }

  .glightbox-clean .gbtn:hover {
    background: transparent;
  }

  .plyr__control--overlaid {
    background: red !important;
  }

  .gslide-media {
    margin: 0 50px;
  }

  .gprev,
  .gnext,
  .gclose {
    width: 38px !important;
    height: 38px !important;
  }

  .glightbox-clean .gnext,
  .glightbox-clean .gprev {
    top: 45%;
  }

  .gprev svg,
  .gnext svg,
  .gclose svg {
    width: 18px;
    height: auto;
  }

  .gclose svg {
    width: 13px !important;
    height: auto;
  }

  .gclose {
    width: 38px !important;
    height: 38px !important;
  }

  /* range */

  .car-price-filter-range .price_filter .ui-state-default:last-child::after {
    display: block;
  }
}

/* desktop normal */

@media (min-width: 992px) {
  /* default */

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    line-height: 1.3;
  }

  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 22px;
  }

  h4 {
    font-size: 20px;
  }

  h5 {
    font-size: 18px;
  }

  h6 {
    font-size: 16px;
  }

  p {
    font-size: 16px;
    line-height: 1.8 !important;
  }

  .sticky-header.active {
    display: block;
    box-shadow: var(--box-shadow-8);
  }

  .swiper-container:hover .product-details-slider .swiper-button-prev,
  .swiper-container:hover .news-single-slider .swiper-button-prev {
    transform: var(--x-40);
  }

  .swiper-container:hover .product-details-slider .swiper-button-next,
  .swiper-container:hover .news-single-slider .swiper-button-next {
    transform: var(--x--40);
  }

  .testimonial-quote-menu2 {
    display: block;
  }
}

/*  desktop xl */

@media screen and (min-width: 1200px) {
  /* default */

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    line-height: 1.3;
  }

  h1,
  .h1 {
    font-size: 36px;
  }

  h2,
  .h2 {
    font-size: 30px;
  }

  h3,
  .h3 {
    font-size: 24px;
  }

  h4,
  .h4 {
    font-size: 20px;
  }

  h5,
  .h5 {
    font-size: 18px;
  }

  h6,
  .h6 {
    font-size: 16px;
  }

  p {
    line-height: 1.8 !important;
  }

  /* sticky header */

  .sticky-header.active .container {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}

/*  desktop xxxl */

@media screen and (min-width: 1400px) {

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    line-height: 1.3;
  }

  p {
    line-height: 1.8 !important;
  }

  /* swiper slider */

  .swiper-container:hover .swiper-button-prev {
    transform: var(--x--60);
  }

  .swiper-container:hover .swiper-button-next {
    transform: var(--x-60);
  }

  .hero-slider-container:hover .swiper-button-prev {
    transform: var(--x-50);
  }

  .hero-slider-container:hover .swiper-button-next {
    transform: var(--x--50);
  }

  .hero-slider2 .swiper-button-prev,
  .hero-slider2 .swiper-button-next {
    transform: translate(0);
  }

  .hero-slider2 .swiper-button-next {
    right: 0;
  }

  [dir="rtl"] .hero-slider2 .swiper-button-next {
    left: 0;
  }

  .hero-slider2:hover .swiper-button-prev,
  .hero-slider2:hover .swiper-button-next {
    transform: translate(0);
  }

  /* upcoming project slider */

  .upcoming-project-slider-container:hover .swiper-button-prev,
  .upcoming-project-slider-container:hover .swiper-button-next {
    transform: translate(0);
  }

  /* portfolio slider */

  .portfolio-slider-container:hover .swiper-button-prev {
    transform: var(--x-37);
  }

  .portfolio-slider-container:hover .swiper-button-next {
    transform: var(--x--37);
  }
}

.placeholder\:text-sm::-moz-placeholder {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.placeholder\:text-sm::placeholder {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.placeholder\:text-heading-color::-moz-placeholder {
  --tw-text-opacity: 1;
  color: rgb(7 28 31 / var(--tw-text-opacity));
}

.placeholder\:text-heading-color::placeholder {
  --tw-text-opacity: 1;
  color: rgb(7 28 31 / var(--tw-text-opacity));
}

.placeholder\:text-paragraph-color::-moz-placeholder {
  --tw-text-opacity: 1;
  color: rgb(92 114 125 / var(--tw-text-opacity));
}

.placeholder\:text-paragraph-color::placeholder {
  --tw-text-opacity: 1;
  color: rgb(92 114 125 / var(--tw-text-opacity));
}

.placeholder\:text-white::-moz-placeholder {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.placeholder\:text-white::placeholder {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.placeholder\:text-opacity-50::-moz-placeholder {
  --tw-text-opacity: 0.5;
}

.placeholder\:text-opacity-50::placeholder {
  --tw-text-opacity: 0.5;
}

.placeholder\:text-opacity-60::-moz-placeholder {
  --tw-text-opacity: 0.6;
}

.placeholder\:text-opacity-60::placeholder {
  --tw-text-opacity: 0.6;
}

.placeholder\:text-opacity-85::-moz-placeholder {
  --tw-text-opacity: 0.85;
}

.placeholder\:text-opacity-85::placeholder {
  --tw-text-opacity: 0.85;
}

.placeholder\:opacity-100::-moz-placeholder {
  opacity: 1;
}

.placeholder\:opacity-100::placeholder {
  opacity: 1;
}

.placeholder\:opacity-50::-moz-placeholder {
  opacity: 0.5;
}

.placeholder\:opacity-50::placeholder {
  opacity: 0.5;
}

.placeholder\:opacity-60::-moz-placeholder {
  opacity: 0.6;
}

.placeholder\:opacity-60::placeholder {
  opacity: 0.6;
}

.placeholder\:opacity-70::-moz-placeholder {
  opacity: 0.7;
}

.placeholder\:opacity-70::placeholder {
  opacity: 0.7;
}

.before\:absolute::before {
  content: var(--tw-content);
  position: absolute;
}

.before\:relative::before {
  content: var(--tw-content);
  position: relative;
}

.before\:left-0::before {
  content: var(--tw-content);
  left: 0px;
}

.before\:left-1\/2::before {
  content: var(--tw-content);
  left: 50%;
}

.before\:right-0::before {
  content: var(--tw-content);
  right: 0px;
}

.before\:top-0::before {
  content: var(--tw-content);
  top: 0px;
}

.before\:top-1\/2::before {
  content: var(--tw-content);
  top: 50%;
}

.before\:top-\[-46\%\]::before {
  content: var(--tw-content);
  top: -46%;
}

.before\:top-\[5px\]::before {
  content: var(--tw-content);
  top: 5px;
}

.before\:-z-1::before {
  content: var(--tw-content);
  z-index: -1;
}

.before\:mb-10px::before {
  content: var(--tw-content);
  margin-bottom: 0.625rem;
}

.before\:block::before {
  content: var(--tw-content);
  display: block;
}

.before\:hidden::before {
  content: var(--tw-content);
  display: none;
}

.before\:h-0::before {
  content: var(--tw-content);
  height: 0px;
}

.before\:h-0\.5::before {
  content: var(--tw-content);
  height: 0.125rem;
}

.before\:h-1::before {
  content: var(--tw-content);
  height: 0.25rem;
}

.before\:h-\[72\%\]::before {
  content: var(--tw-content);
  height: 72%;
}

.before\:h-\[84px\]::before {
  content: var(--tw-content);
  height: 84px;
}

.before\:h-full::before {
  content: var(--tw-content);
  height: 100%;
}

.before\:w-0::before {
  content: var(--tw-content);
  width: 0px;
}

.before\:w-0\.5::before {
  content: var(--tw-content);
  width: 0.125rem;
}

.before\:w-1::before {
  content: var(--tw-content);
  width: 0.25rem;
}

.before\:w-full::before {
  content: var(--tw-content);
  width: 100%;
}

.before\:-translate-x-1\/2::before {
  content: var(--tw-content);
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.before\:-translate-y-1\/2::before {
  content: var(--tw-content);
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.before\:border-b::before {
  content: var(--tw-content);
  border-bottom-width: 1px;
}

.before\:border-dashed::before {
  content: var(--tw-content);
  border-style: dashed;
}

.before\:border-color-1::before {
  content: var(--tw-content);
  --tw-border-opacity: 1;
  border-color: rgb(140 178 178 / var(--tw-border-opacity));
}

.before\:border-white::before {
  content: var(--tw-content);
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
}

.before\:bg-heading-color::before {
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(7 28 31 / var(--tw-bg-opacity));
}

.before\:bg-overlay2::before {
  content: var(--tw-content);
  background-color: rgba(7, 28, 31, 0.9);
}

.before\:bg-secondary-color::before {
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(255 90 60 / var(--tw-bg-opacity));
}

.before\:bg-secondary-color-2::before {
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(203 52 33 / var(--tw-bg-opacity));
}

.before\:bg-section-bg-1::before {
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(242 246 247 / var(--tw-bg-opacity));
}

.before\:bg-white::before {
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

.before\:bg-white-6::before {
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(241 241 241 / var(--tw-bg-opacity));
}

.before\:bg-opacity-90::before {
  content: var(--tw-content);
  --tw-bg-opacity: 0.9;
}

.before\:text-center::before {
  content: var(--tw-content);
  text-align: center;
}

.before\:font-fontawesome::before {
  content: var(--tw-content);
  font-family: "Font Awesome 5 Free";
}

.before\:font-icomoon::before {
  content: var(--tw-content);
  font-family: icomoon;
}

.before\:text-3xl::before {
  content: var(--tw-content);
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.before\:text-6xl::before {
  content: var(--tw-content);
  font-size: 3.75rem;
  line-height: 1;
}

.before\:text-xs::before {
  content: var(--tw-content);
  font-size: 0.75rem;
  line-height: 1rem;
}

.before\:font-\[900\]::before {
  content: var(--tw-content);
  font-weight: 900;
}

.before\:font-bold::before {
  content: var(--tw-content);
  font-weight: 700;
}

.before\:text-heading-color::before {
  content: var(--tw-content);
  --tw-text-opacity: 1;
  color: rgb(7 28 31 / var(--tw-text-opacity));
}

.before\:text-white::before {
  content: var(--tw-content);
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.before\:opacity-0::before {
  content: var(--tw-content);
  opacity: 0;
}

.before\:transition-all::before {
  content: var(--tw-content);
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.before\:duration-300::before {
  content: var(--tw-content);
  transition-duration: 300ms;
}

.before\:content-\[\'\\e94d\'\]::before {
  --tw-content: "\e94d";
  content: var(--tw-content);
}

.before\:content-\[\'\\f00c\'\]::before {
  --tw-content: "\f00c";
  content: var(--tw-content);
}

.after\:invisible::after {
  content: var(--tw-content);
  visibility: hidden;
}

.after\:absolute::after {
  content: var(--tw-content);
  position: absolute;
}

.after\:bottom-0::after {
  content: var(--tw-content);
  bottom: 0px;
}

.after\:bottom-\[-51\%\]::after {
  content: var(--tw-content);
  bottom: -51%;
}

.after\:left-0::after {
  content: var(--tw-content);
  left: 0px;
}

.after\:left-1::after {
  content: var(--tw-content);
  left: 0.25rem;
}

.after\:left-1\/2::after {
  content: var(--tw-content);
  left: 50%;
}

.after\:right-0::after {
  content: var(--tw-content);
  right: 0px;
}

.after\:right-1::after {
  content: var(--tw-content);
  right: 0.25rem;
}

.after\:top-0::after {
  content: var(--tw-content);
  top: 0px;
}

.after\:top-1\/2::after {
  content: var(--tw-content);
  top: 50%;
}

.after\:-z-1::after {
  content: var(--tw-content);
  z-index: -1;
}

.after\:z-1::after {
  content: var(--tw-content);
  z-index: 1;
}

.after\:z-10::after {
  content: var(--tw-content);
  z-index: 10;
}

.after\:m-\[1px\]::after {
  content: var(--tw-content);
  margin: 1px;
}

.after\:inline-block::after {
  content: var(--tw-content);
  display: inline-block;
}

.after\:hidden::after {
  content: var(--tw-content);
  display: none;
}

.after\:h-10px::after {
  content: var(--tw-content);
  height: 10px;
}

.after\:h-\[11px\]::after {
  content: var(--tw-content);
  height: 11px;
}

.after\:h-\[84px\]::after {
  content: var(--tw-content);
  height: 84px;
}

.after\:h-\[85\%\]::after {
  content: var(--tw-content);
  height: 85%;
}

.after\:h-full::after {
  content: var(--tw-content);
  height: 100%;
}

.after\:w-0::after {
  content: var(--tw-content);
  width: 0px;
}

.after\:w-0\.5::after {
  content: var(--tw-content);
  width: 0.125rem;
}

.after\:w-10px::after {
  content: var(--tw-content);
  width: 10px;
}

.after\:w-30px::after {
  content: var(--tw-content);
  width: 1.875rem;
}

.after\:w-\[11px\]::after {
  content: var(--tw-content);
  width: 11px;
}

.after\:w-\[5px\]::after {
  content: var(--tw-content);
  width: 5px;
}

.after\:w-full::after {
  content: var(--tw-content);
  width: 100%;
}

.after\:-translate-x-1\/2::after {
  content: var(--tw-content);
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.after\:-translate-y-1\/2::after {
  content: var(--tw-content);
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.after\:translate-y-1\/2::after {
  content: var(--tw-content);
  --tw-translate-y: 50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.after\:rotate-\[-45deg\]::after {
  content: var(--tw-content);
  --tw-rotate: -45deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.after\:rotate-\[45deg\]::after {
  content: var(--tw-content);
  --tw-rotate: 45deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.after\:rounded-100\%::after {
  content: var(--tw-content);
  border-radius: 100%;
}

.after\:border::after {
  content: var(--tw-content);
  border-width: 1px;
}

.after\:border-3px::after {
  content: var(--tw-content);
  border-width: 3px;
}

.after\:border-l-0::after {
  content: var(--tw-content);
  border-left-width: 0px;
}

.after\:border-r-0::after {
  content: var(--tw-content);
  border-right-width: 0px;
}

.after\:border-t-0::after {
  content: var(--tw-content);
  border-top-width: 0px;
}

.after\:border-white::after {
  content: var(--tw-content);
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
}

.after\:bg-\[rgba\(7\2c 28\2c 31\2c 0\.9\)\]::after {
  content: var(--tw-content);
  background-color: rgba(7, 28, 31, 0.9);
}

.after\:bg-heading-color::after {
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(7 28 31 / var(--tw-bg-opacity));
}

.after\:bg-primary-color::after {
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity));
}

.after\:bg-secondary-color::after {
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(255 90 60 / var(--tw-bg-opacity));
}

.after\:bg-transparent::after {
  content: var(--tw-content);
  background-color: transparent;
}

.after\:bg-white::after {
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

.after\:bg-opacity-30::after {
  content: var(--tw-content);
  --tw-bg-opacity: 0.3;
}

.after\:font-icomoon::after {
  content: var(--tw-content);
  font-family: icomoon;
}

.after\:text-3xl::after {
  content: var(--tw-content);
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.after\:text-secondary-color::after {
  content: var(--tw-content);
  --tw-text-opacity: 1;
  color: rgb(220 34 83 / var(--tw-text-opacity));
}

.after\:opacity-0::after {
  content: var(--tw-content);
  opacity: 0;
}

.after\:opacity-30::after {
  content: var(--tw-content);
  opacity: 0.3;
}

.after\:opacity-40::after {
  content: var(--tw-content);
  opacity: 0.4;
}

.after\:outline::after {
  content: var(--tw-content);
  outline-style: solid;
}

.after\:outline-1::after {
  content: var(--tw-content);
  outline-width: 1px;
}

.after\:outline-offset-\[2px\]::after {
  content: var(--tw-content);
  outline-offset: 2px;
}

.after\:outline-heading-color::after {
  content: var(--tw-content);
  outline-color: #071c1f;
}

.after\:transition-all::after {
  content: var(--tw-content);
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.after\:duration-300::after {
  content: var(--tw-content);
  transition-duration: 300ms;
}

.after\:content-\[\'\\e958\'\]::after {
  --tw-content: "\e958";
  content: var(--tw-content);
}

.checked\:after\:bg-heading-color:checked::after {
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(7 28 31 / var(--tw-bg-opacity));
}

.hover\:translate-x-0:hover {
  --tw-translate-x: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:scale-110:hover {
  --tw-scale-x: 1.1;
  --tw-scale-y: 1.1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:border-heading-color:hover {
  --tw-border-opacity: 1;
  border-color: rgb(7 28 31 / var(--tw-border-opacity));
}

.hover\:border-primary-color:hover {
  --tw-border-opacity: 1;
  border-color: rgb(0 0 0 / var(--tw-border-opacity));
}

.hover\:border-secondary-color:hover {
  --tw-border-opacity: 1;
  border-color: rgb(255 90 60 / var(--tw-border-opacity));
}

.hover\:bg-heading-color:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(7 28 31 / var(--tw-bg-opacity));
}

.hover\:bg-primary-color:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity));
}

.hover\:bg-secondary-color:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(255 90 60 / var(--tw-bg-opacity));
}

.hover\:bg-secondary-color-2:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(203 52 33 / var(--tw-bg-opacity));
}

.hover\:bg-section-bg-1:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(242 246 247 / var(--tw-bg-opacity));
}

.hover\:bg-opacity-20:hover {
  --tw-bg-opacity: 0.2;
}

.hover\:bg-opacity-60:hover {
  --tw-bg-opacity: 0.6;
}

.hover\:text-primary-color:hover {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}

.hover\:text-secondary-color:hover {
  --tw-text-opacity: 1;
  color: rgb(220 34 83 / var(--tw-text-opacity));
}

.hover\:text-white:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.hover\:underline:hover {
  text-decoration-line: underline;
}

.hover\:shadow-box-shadow-1:hover {
  --tw-shadow: 0 16px 32px 0 rgba(7, 28, 31, 0.1);
  --tw-shadow-colored: 0 16px 32px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.hover\:before\:h-4\/5:hover::before {
  content: var(--tw-content);
  height: 80%;
}

.hover\:before\:opacity-100:hover::before {
  content: var(--tw-content);
  opacity: 1;
}

.focus\:border:focus {
  border-width: 1px;
}

.focus\:border-0:focus {
  border-width: 0px;
}

.focus\:border-secondary-color:focus {
  --tw-border-opacity: 1;
  border-color: rgb(255 90 60 / var(--tw-border-opacity));
}

.focus\:shadow-none:focus {
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.disabled\:cursor-not-allowed:disabled {
  cursor: not-allowed;
}

.disabled\:bg-primary-color:disabled {
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity));
}

.disabled\:opacity-65:disabled {
  opacity: 0.65;
}

.group\/nested:hover .group-hover\/nested\:visible {
  visibility: visible;
}

.group:hover .group-hover\:visible {
  visibility: visible;
}

.group:hover .group-hover\:bottom-0 {
  bottom: 0px;
}

.group:hover .group-hover\:top-\[35\%\] {
  top: 35%;
}

.group\/nested:hover .group-hover\/nested\:w-0 {
  width: 0px;
}

.group:hover .group-hover\:w-0 {
  width: 0px;
}

.group:hover .group-hover\:w-full {
  width: 100%;
}

.group\/nested:hover .group-hover\/nested\:translate-y-0 {
  --tw-translate-y: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group:hover .group-hover\:-translate-y-4 {
  --tw-translate-y: -1rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group:hover .group-hover\:translate-y-0 {
  --tw-translate-y: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group:hover .group-hover\:scale-110 {
  --tw-scale-x: 1.1;
  --tw-scale-y: 1.1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group\/nested:hover .group-hover\/nested\:bg-primary-color {
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-black {
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-primary-color {
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-secondary-color {
  --tw-bg-opacity: 1;
  background-color: rgb(255 90 60 / var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-secondary-color-3 {
  --tw-bg-opacity: 1;
  background-color: rgb(251 65 42 / var(--tw-bg-opacity));
}

.group:hover .group-hover\:bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

.group\/nested:hover .group-hover\/nested\:text-heading-color {
  --tw-text-opacity: 1;
  color: rgb(7 28 31 / var(--tw-text-opacity));
}

.group\/nested:hover .group-hover\/nested\:text-secondary-color {
  --tw-text-opacity: 1;
  color: rgb(220 34 83 / var(--tw-text-opacity));
}

.group:hover .group-hover\:text-heading-color {
  --tw-text-opacity: 1;
  color: rgb(7 28 31 / var(--tw-text-opacity));
}

.group:hover .group-hover\:text-paragraph-color {
  --tw-text-opacity: 1;
  color: rgb(92 114 125 / var(--tw-text-opacity));
}

.group:hover .group-hover\:text-secondary-color {
  --tw-text-opacity: 1;
  color: rgb(220 34 83 / var(--tw-text-opacity));
}

.group:hover .group-hover\:text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.group\/nested:hover .group-hover\/nested\:opacity-100 {
  opacity: 1;
}

.group:hover .group-hover\:opacity-100 {
  opacity: 1;
}

.group:hover .group-hover\:after\:visible::after {
  content: var(--tw-content);
  visibility: visible;
}

.group:hover .group-hover\:after\:opacity-90::after {
  content: var(--tw-content);
  opacity: 0.9;
}

.group:hover .disabled\:group-hover\:text-white:disabled {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

@media (min-width: 480px) {
  .xs\:-left-\[400px\] {
    left: -400px;
  }

  .xs\:-right-\[400px\] {
    right: -400px;
  }

  .xs\:w-100 {
    width: 25rem;
  }

  .xs\:px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

@media (min-width: 576px) {
  .sm\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }

  .sm\:block {
    display: block;
  }

  .sm\:hidden {
    display: none;
  }

  .sm\:w-1\/2 {
    width: 50%;
  }

  .sm\:max-w-500px {
    max-width: 31.25rem;
  }

  .sm\:basis-1\/2 {
    flex-basis: 50%;
  }

  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sm\:whitespace-nowrap {
    white-space: nowrap;
  }

  .sm\:px-15px {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }

  .sm\:pb-0 {
    padding-bottom: 0px;
  }

  .sm\:pt-3px {
    padding-top: 3px;
  }

  .sm\:text-13px {
    font-size: 0.8125rem;
  }

  .sm\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .sm\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .sm\:leading-1 {
    line-height: 1;
  }

  .sm\:leading-1\.3 {
    line-height: 1.3;
  }

  .sm\:leading-25px {
    line-height: 1.5625rem;
  }
}

@media (min-width: 768px) {
  .md\:absolute {
    position: absolute;
  }

  .md\:bottom-10 {
    bottom: 2.5rem;
  }

  .md\:left-0 {
    left: 0px;
  }

  .md\:right-0 {
    right: 0px;
  }

  .md\:top-0 {
    top: 0px;
  }

  .md\:col-span-1 {
    grid-column: span 1 / span 1;
  }

  .md\:col-span-2 {
    grid-column: span 2 / span 2;
  }

  .md\:col-start-1 {
    grid-column-start: 1;
  }

  .md\:row-span-2 {
    grid-row: span 2 / span 2;
  }

  .md\:row-start-1 {
    grid-row-start: 1;
  }

  .md\:row-start-2 {
    grid-row-start: 2;
  }

  .md\:mb-0 {
    margin-bottom: 0px;
  }

  .md\:mb-10 {
    margin-bottom: 2.5rem;
  }

  .md\:mb-30px {
    margin-bottom: 1.875rem;
  }

  .md\:mb-6 {
    margin-bottom: 1.5rem;
  }

  .md\:ml-10 {
    margin-left: 2.5rem;
  }

  .md\:ml-\[70px\] {
    margin-left: 70px;
  }

  .md\:mr-10 {
    margin-right: 2.5rem;
  }

  .md\:mr-30px {
    margin-right: 1.875rem;
  }

  .md\:mr-\[70px\] {
    margin-right: 70px;
  }

  .md\:mt-0 {
    margin-top: 0px;
  }

  .md\:box-border {
    box-sizing: border-box;
  }

  .md\:block {
    display: block;
  }

  .md\:table-cell {
    display: table-cell;
  }

  .md\:hidden {
    display: none;
  }

  .md\:h-100px {
    height: 6.25rem;
  }

  .md\:h-20 {
    height: 5rem;
  }

  .md\:h-350px {
    height: 21.875rem;
  }

  .md\:h-50px {
    height: 3.125rem;
  }

  .md\:h-full {
    height: 100%;
  }

  .md\:min-h-350px {
    min-height: 21.875rem;
  }

  .md\:min-h-\[350px\] {
    min-height: 350px;
  }

  .md\:w-1\/3 {
    width: 33.333333%;
  }

  .md\:w-100px {
    width: 6.25rem;
  }

  .md\:w-20 {
    width: 5rem;
  }

  .md\:w-300px {
    width: 18.75rem;
  }

  .md\:w-50px {
    width: 3.125rem;
  }

  .md\:w-\[110px\] {
    width: 110px;
  }

  .md\:w-\[164px\] {
    width: 164px;
  }

  .md\:w-\[180px\] {
    width: 180px;
  }

  .md\:w-auto {
    width: auto;
  }

  .md\:max-w-\[70\%\] {
    max-width: 70%;
  }

  .md\:basis-1\/3 {
    flex-basis: 33.333333%;
  }

  .md\:basis-2\/5 {
    flex-basis: 40%;
  }

  .md\:basis-3\/5 {
    flex-basis: 60%;
  }

  .md\:basis-auto {
    flex-basis: auto;
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:flex-nowrap {
    flex-wrap: nowrap;
  }

  .md\:items-center {
    align-items: center;
  }

  .md\:justify-start {
    justify-content: flex-start;
  }

  .md\:justify-between {
    justify-content: space-between;
  }

  .md\:gap-x-30px {
    -moz-column-gap: 1.875rem;
    column-gap: 1.875rem;
  }

  .md\:gap-x-35px {
    -moz-column-gap: 2.1875rem;
    column-gap: 2.1875rem;
  }

  .md\:border-l {
    border-left-width: 1px;
  }

  .md\:border-r {
    border-right-width: 1px;
  }

  .md\:border-border-color-17 {
    --tw-border-opacity: 1;
    border-color: rgb(222 226 230 / var(--tw-border-opacity));
  }

  .md\:border-border-color-7 {
    --tw-border-opacity: 1;
    border-color: rgb(209 218 224 / var(--tw-border-opacity));
  }

  .md\:border-transparent {
    border-color: transparent;
  }

  .md\:bg-transparent {
    background-color: transparent;
  }

  .md\:p-10 {
    padding: 2.5rem;
  }

  .md\:p-30px {
    padding: 1.875rem;
  }

  .md\:p-50px {
    padding: 3.125rem;
  }

  .md\:p-70px {
    padding: 4.375rem;
  }

  .md\:px-0 {
    padding-left: 0px;
    padding-right: 0px;
  }

  .md\:px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .md\:px-10px {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }

  .md\:px-15px {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }

  .md\:px-25px {
    padding-left: 1.5625rem;
    padding-right: 1.5625rem;
  }

  .md\:px-30px {
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }

  .md\:px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .md\:px-50px {
    padding-left: 3.125rem;
    padding-right: 3.125rem;
  }

  .md\:py-0 {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .md\:py-10px {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }

  .md\:py-15px {
    padding-top: 0.9375rem;
    padding-bottom: 0.9375rem;
  }

  .md\:py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .md\:py-30px {
    padding-top: 1.875rem;
    padding-bottom: 1.875rem;
  }

  .md\:py-50px {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
  }

  .md\:py-60px {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }

  .md\:pb-10 {
    padding-bottom: 2.5rem;
  }

  .md\:pb-22px {
    padding-bottom: 1.375rem;
  }

  .md\:pb-30 {
    padding-bottom: 7.5rem;
  }

  .md\:pb-5 {
    padding-bottom: 1.25rem;
  }

  .md\:pl-10 {
    padding-left: 2.5rem;
  }

  .md\:pl-30px {
    padding-left: 1.875rem;
  }

  .md\:pl-35px {
    padding-left: 2.1875rem;
  }

  .md\:pl-45px {
    padding-left: 2.8125rem;
  }

  .md\:pl-60px {
    padding-left: 3.75rem;
  }

  .md\:pl-70px {
    padding-left: 4.375rem;
  }

  .md\:pr-10 {
    padding-right: 2.5rem;
  }

  .md\:pr-30px {
    padding-right: 1.875rem;
  }

  .md\:pr-45px {
    padding-right: 2.8125rem;
  }

  .md\:pr-50px {
    padding-right: 3.125rem;
  }

  .md\:pr-70px {
    padding-right: 4.375rem;
  }

  .md\:pt-0 {
    padding-top: 0px;
  }

  .md\:pt-10 {
    padding-top: 2.5rem;
  }

  .md\:pt-25px {
    padding-top: 1.5625rem;
  }

  .md\:pt-30px {
    padding-top: 1.875rem;
  }

  .md\:pt-50 {
    padding-top: 12.5rem;
  }

  .md\:text-start {
    text-align: start;
  }

  .md\:text-end {
    text-align: end;
  }

  .md\:text-15px {
    font-size: 0.9375rem;
  }

  .md\:text-22px {
    font-size: 1.375rem;
  }

  .md\:text-26px {
    font-size: 1.625rem;
  }

  .md\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .md\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .md\:text-40px {
    font-size: 2.5rem;
  }

  .md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .md\:text-50px {
    font-size: 3.125rem;
  }

  .md\:text-\[160px\] {
    font-size: 160px;
  }

  .md\:text-\[70px\] {
    font-size: 70px;
  }

  .md\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .md\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }

  .md\:text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }

  .md\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  .md\:leading-1 {
    line-height: 1;
  }

  .md\:leading-1\.3 {
    line-height: 1.3;
  }

  .md\:leading-1\.8 {
    line-height: 1.8;
  }

  .md\:leading-10 {
    line-height: 2.5rem;
  }

  .md\:leading-50px {
    line-height: 3.125rem;
  }

  .md\:leading-9 {
    line-height: 2.25rem;
  }

  .md\:leading-90px {
    line-height: 5.625rem;
  }

  .md\:before\:absolute::before {
    content: var(--tw-content);
    position: absolute;
  }

  .md\:before\:left-\[45px\]::before {
    content: var(--tw-content);
    left: 45px;
  }

  .md\:before\:right-\[45px\]::before {
    content: var(--tw-content);
    right: 45px;
  }

  .md\:before\:top-1\/2::before {
    content: var(--tw-content);
    top: 50%;
  }

  .md\:before\:mb-0::before {
    content: var(--tw-content);
    margin-bottom: 0px;
  }

  .md\:before\:text-start::before {
    content: var(--tw-content);
    text-align: start;
  }

  .md\:before\:text-150px::before {
    content: var(--tw-content);
    font-size: 9.375rem;
  }

  .md\:before\:text-50px::before {
    content: var(--tw-content);
    font-size: 3.125rem;
  }
}

@media (min-width: 992px) {
  .lg\:absolute {
    position: absolute;
  }

  .lg\:bottom-10 {
    bottom: 2.5rem;
  }

  .lg\:bottom-\[70px\] {
    bottom: 70px;
  }

  .lg\:left-\[10\%\] {
    left: 10%;
  }

  .lg\:left-\[35px\] {
    left: 35px;
  }

  .lg\:right-\[10\%\] {
    right: 10%;
  }

  .lg\:right-\[35px\] {
    right: 35px;
  }

  .lg\:top-5 {
    top: 1.25rem;
  }

  .lg\:z-xl {
    z-index: 999999999;
  }

  .lg\:col-span-1 {
    grid-column: span 1 / span 1;
  }

  .lg\:col-span-2 {
    grid-column: span 2 / span 2;
  }

  .lg\:col-span-3 {
    grid-column: span 3 / span 3;
  }

  .lg\:col-span-4 {
    grid-column: span 4 / span 4;
  }

  .lg\:col-span-5 {
    grid-column: span 5 / span 5;
  }

  .lg\:col-span-7 {
    grid-column: span 7 / span 7;
  }

  .lg\:col-span-8 {
    grid-column: span 8 / span 8;
  }

  .lg\:col-start-1 {
    grid-column-start: 1;
  }

  .lg\:col-start-2 {
    grid-column-start: 2;
  }

  .lg\:col-start-3 {
    grid-column-start: 3;
  }

  .lg\:col-start-5 {
    grid-column-start: 5;
  }

  .lg\:col-start-6 {
    grid-column-start: 6;
  }

  .lg\:col-start-8 {
    grid-column-start: 8;
  }

  .lg\:col-start-9 {
    grid-column-start: 9;
  }

  .lg\:row-span-1 {
    grid-row: span 1 / span 1;
  }

  .lg\:row-start-1 {
    grid-row-start: 1;
  }

  .lg\:-mx-15px {
    margin-left: -0.9375rem;
    margin-right: -0.9375rem;
  }

  .lg\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }

  .lg\:my-6 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .lg\:mb-0 {
    margin-bottom: 0px;
  }

  .lg\:mb-10 {
    margin-bottom: 2.5rem;
  }

  .lg\:mb-25px {
    margin-bottom: 1.5625rem;
  }

  .lg\:mb-50px {
    margin-bottom: 3.125rem;
  }

  .lg\:mb-6 {
    margin-bottom: 1.5rem;
  }

  .lg\:mb-9 {
    margin-bottom: 2.25rem;
  }

  .lg\:ml-30px {
    margin-left: 1.875rem;
  }

  .lg\:ml-5 {
    margin-left: 1.25rem;
  }

  .lg\:mr-3 {
    margin-right: 0.75rem;
  }

  .lg\:mr-30px {
    margin-right: 1.875rem;
  }

  .lg\:mr-5 {
    margin-right: 1.25rem;
  }

  .lg\:mt-0 {
    margin-top: 0px;
  }

  .lg\:mt-10 {
    margin-top: 2.5rem;
  }

  .lg\:mt-5 {
    margin-top: 1.25rem;
  }

  .lg\:block {
    display: block;
  }

  .lg\:hidden {
    display: none;
  }

  .lg\:h-10 {
    height: 2.5rem;
  }

  .lg\:h-20 {
    height: 5rem;
  }

  .lg\:h-\[450px\] {
    height: 450px;
  }

  .lg\:h-\[650px\] {
    height: 650px;
  }

  .lg\:h-full {
    height: 100%;
  }

  .lg\:min-h-\[550px\] {
    min-height: 550px;
  }

  .lg\:w-10 {
    width: 2.5rem;
  }

  .lg\:w-100px {
    width: 6.25rem;
  }

  .lg\:w-2\/3 {
    width: 66.666667%;
  }

  .lg\:w-20 {
    width: 5rem;
  }

  .lg\:w-42px {
    width: 2.625rem;
  }

  .lg\:w-\[120px\] {
    width: 120px;
  }

  .lg\:w-\[420px\] {
    width: 420px;
  }

  .lg\:w-\[45\%\] {
    width: 45%;
  }

  .lg\:w-full {
    width: 100%;
  }

  .lg\:max-w-980px {
    max-width: 61.25rem;
  }

  .lg\:max-w-\[45\%\] {
    max-width: 45%;
  }

  .lg\:max-w-\[920px\] {
    max-width: 920px;
  }

  .lg\:basis-1\/2 {
    flex-basis: 50%;
  }

  .lg\:basis-1\/3 {
    flex-basis: 33.333333%;
  }

  .lg\:basis-1\/4 {
    flex-basis: 25%;
  }

  .lg\:translate-x-0 {
    --tw-translate-x: 0px;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .lg\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lg\:flex-row {
    flex-direction: row;
  }

  .lg\:items-start {
    align-items: flex-start;
  }

  .lg\:items-center {
    align-items: center;
  }

  .lg\:justify-start {
    justify-content: flex-start;
  }

  .lg\:justify-end {
    justify-content: flex-end;
  }

  .lg\:justify-center {
    justify-content: center;
  }

  .lg\:justify-between {
    justify-content: space-between;
  }

  .lg\:gap-0 {
    gap: 0px;
  }

  .lg\:gap-30px {
    gap: 1.875rem;
  }

  .lg\:gap-4 {
    gap: 1rem;
  }

  .lg\:gap-5 {
    gap: 1.25rem;
  }

  .lg\:gap-9 {
    gap: 2.25rem;
  }

  .lg\:gap-x-30px {
    -moz-column-gap: 1.875rem;
    column-gap: 1.875rem;
  }

  .lg\:bg-white {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  }

  .lg\:bg-opacity-35 {
    --tw-bg-opacity: 0.35;
  }

  .lg\:p-30px {
    padding: 1.875rem;
  }

  .lg\:px-0 {
    padding-left: 0px;
    padding-right: 0px;
  }

  .lg\:px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .lg\:px-25px {
    padding-left: 1.5625rem;
    padding-right: 1.5625rem;
  }

  .lg\:px-30px {
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }

  .lg\:px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .lg\:px-60px {
    padding-left: 3.75rem;
    padding-right: 3.75rem;
  }

  .lg\:py-15px {
    padding-top: 0.9375rem;
    padding-bottom: 0.9375rem;
  }

  .lg\:py-17px {
    padding-top: 1.0625rem;
    padding-bottom: 1.0625rem;
  }

  .lg\:py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .lg\:py-2\.5 {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }

  .lg\:pb-100px {
    padding-bottom: 6.25rem;
  }

  .lg\:pb-13px {
    padding-bottom: 0.8125rem;
  }

  .lg\:pb-25px {
    padding-bottom: 1.5625rem;
  }

  .lg\:pb-30 {
    padding-bottom: 7.5rem;
  }

  .lg\:pb-70px {
    padding-bottom: 4.375rem;
  }

  .lg\:pl-20 {
    padding-left: 5rem;
  }

  .lg\:pl-35px {
    padding-left: 2.1875rem;
  }

  .lg\:pr-17px {
    padding-right: 1.0625rem;
  }

  .lg\:pr-20 {
    padding-right: 5rem;
  }

  .lg\:pr-30px {
    padding-right: 1.875rem;
  }

  .lg\:pr-35px {
    padding-right: 2.1875rem;
  }

  .lg\:pt-0 {
    padding-top: 0px;
  }

  .lg\:pt-15px {
    padding-top: 0.9375rem;
  }

  .lg\:pt-30 {
    padding-top: 7.5rem;
  }

  .lg\:pt-5 {
    padding-top: 1.25rem;
  }

  .lg\:text-start {
    text-align: start;
  }

  .lg\:text-22px {
    font-size: 1.375rem;
  }

  .lg\:text-26px {
    font-size: 1.625rem;
  }

  .lg\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .lg\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .lg\:text-42px {
    font-size: 2.625rem;
  }

  .lg\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .lg\:text-50px {
    font-size: 3.125rem;
  }

  .lg\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }

  .lg\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .lg\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }

  .lg\:text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }

  .lg\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  .lg\:leading-1 {
    line-height: 1;
  }

  .lg\:leading-1\.3 {
    line-height: 1.3;
  }

  .lg\:leading-1\.5 {
    line-height: 1.5;
  }

  .lg\:leading-1\.8 {
    line-height: 1.8;
  }

  .lg\:leading-11 {
    line-height: 2.75rem;
  }

  .lg\:leading-50px {
    line-height: 3.125rem;
  }

  .lg\:before\:absolute::before {
    content: var(--tw-content);
    position: absolute;
  }

  .lg\:before\:top-2::before {
    content: var(--tw-content);
    top: 0.5rem;
  }

  .lg\:before\:mb-0::before {
    content: var(--tw-content);
    margin-bottom: 0px;
  }

  .before\:lg\:block::before {
    content: var(--tw-content);
    display: block;
  }

  .after\:lg\:block::after {
    content: var(--tw-content);
    display: block;
  }
}

@media (min-width: 1200px) {
  .xl\:left-\[150px\] {
    left: 150px;
  }

  .xl\:right-\[150px\] {
    right: 150px;
  }

  .xl\:col-span-2 {
    grid-column: span 2 / span 2;
  }

  .xl\:col-span-3 {
    grid-column: span 3 / span 3;
  }

  .xl\:col-start-1 {
    grid-column-start: 1;
  }

  .xl\:col-start-10 {
    grid-column-start: 10;
  }

  .xl\:col-start-4 {
    grid-column-start: 4;
  }

  .xl\:col-start-6 {
    grid-column-start: 6;
  }

  .xl\:col-start-8 {
    grid-column-start: 8;
  }

  .xl\:mb-0 {
    margin-bottom: 0px;
  }

  .xl\:mb-27px {
    margin-bottom: 27px;
  }

  .xl\:mb-30px {
    margin-bottom: 1.875rem;
  }

  .xl\:mb-50px {
    margin-bottom: 3.125rem;
  }

  .xl\:ml-10 {
    margin-left: 2.5rem;
  }

  .xl\:mr-10 {
    margin-right: 2.5rem;
  }

  .xl\:block {
    display: block;
  }

  .xl\:flex {
    display: flex;
  }

  .xl\:hidden {
    display: none;
  }

  .xl\:h-100px {
    height: 6.25rem;
  }

  .xl\:h-\[500px\] {
    height: 500px;
  }

  .xl\:h-\[600px\] {
    height: 600px;
  }

  .xl\:h-screen {
    height: 100vh;
  }

  .xl\:min-h-0 {
    min-height: 0px;
  }

  .xl\:w-100px {
    width: 6.25rem;
  }

  .xl\:w-90px {
    width: 5.625rem;
  }

  .xl\:w-\[180px\] {
    width: 180px;
  }

  .xl\:basis-1\/3 {
    flex-basis: 33.333333%;
  }

  .xl\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .xl\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .xl\:gap-30px {
    gap: 1.875rem;
  }

  .xl\:gap-5 {
    gap: 1.25rem;
  }

  .xl\:gap-x-5 {
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
  }

  .xl\:gap-x-50px {
    -moz-column-gap: 3.125rem;
    column-gap: 3.125rem;
  }

  .xl\:px-30px {
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }

  .xl\:px-35px {
    padding-left: 2.1875rem;
    padding-right: 2.1875rem;
  }

  .xl\:py-21px {
    padding-top: 1.3125rem;
    padding-bottom: 1.3125rem;
  }

  .xl\:py-50px {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
  }

  .xl\:pl-100px {
    padding-left: 6.25rem;
  }

  .xl\:pl-30px {
    padding-left: 1.875rem;
  }

  .xl\:pl-35px {
    padding-left: 2.1875rem;
  }

  .xl\:pr-100px {
    padding-right: 6.25rem;
  }

  .xl\:pr-30px {
    padding-right: 1.875rem;
  }

  .xl\:pt-100px {
    padding-top: 6.25rem;
  }

  .xl\:text-15px {
    font-size: 0.9375rem;
  }

  .xl\:text-22px {
    font-size: 1.375rem;
  }

  .xl\:text-26px {
    font-size: 1.625rem;
  }

  .xl\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .xl\:text-35px {
    font-size: 2.1875rem;
  }

  .xl\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .xl\:text-44px {
    font-size: 2.75rem;
  }

  .xl\:text-45px {
    font-size: 2.8125rem;
  }

  .xl\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .xl\:text-50px {
    font-size: 3.125rem;
  }

  .xl\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }

  .xl\:text-\[56px\] {
    font-size: 56px;
  }

  .xl\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  .xl\:leading-1 {
    line-height: 1;
  }

  .xl\:leading-1\.3 {
    line-height: 1.3;
  }

  .xl\:leading-110px {
    line-height: 6.875rem;
  }

  .xl\:before\:top-7::before {
    content: var(--tw-content);
    top: 1.75rem;
  }

  .xl\:before\:text-80px::before {
    content: var(--tw-content);
    font-size: 5rem;
  }
}

@media (min-width: 1300px) {
  .\32xl\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 1400px) {
  .\33xl\:block {
    display: block;
  }

  .\33xl\:w-auto {
    width: auto;
  }

  .\33xl\:px-35px {
    padding-left: 2.1875rem;
    padding-right: 2.1875rem;
  }

  .\33xl\:px-\[2\%\] {
    padding-left: 2%;
    padding-right: 2%;
  }

  .\33xl\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }

  .\33xl\:leading-1 {
    line-height: 1;
  }

  .\33xl\:leading-1\.3 {
    line-height: 1.3;
  }
}

@media (min-width: 1600px) {
  .\34xl\:absolute {
    position: absolute;
  }

  .\34xl\:-mt-65px {
    margin-top: -4.0625rem;
  }

  .\34xl\:ml-auto {
    margin-left: auto;
  }

  .\34xl\:mr-auto {
    margin-right: auto;
  }

  .\34xl\:block {
    display: block;
  }

  .\34xl\:h-\[70\%\] {
    height: 70%;
  }

  .\34xl\:h-\[800px\] {
    height: 800px;
  }

  .\34xl\:h-full {
    height: 100%;
  }

  .\34xl\:h-screen {
    height: 100vh;
  }

  .\34xl\:min-h-\[780px\] {
    min-height: 780px;
  }

  .\34xl\:min-h-\[800px\] {
    min-height: 800px;
  }

  .\34xl\:w-100 {
    width: 25rem;
  }

  .\34xl\:w-\[45\%\] {
    width: 45%;
  }

  .\34xl\:max-w-500px {
    max-width: 31.25rem;
  }

  .\34xl\:border-\[5px\] {
    border-width: 5px;
  }

  .\34xl\:px-10px {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }

  .\34xl\:px-\[5\%\] {
    padding-left: 5%;
    padding-right: 5%;
  }

  .\34xl\:px-\[9\%\] {
    padding-left: 9%;
    padding-right: 9%;
  }

  .\34xl\:text-65px {
    font-size: 4.0625rem;
  }

  .\34xl\:text-7xl {
    font-size: 4.5rem;
    line-height: 1;
  }

  .\34xl\:text-80px {
    font-size: 5rem;
  }

  .\34xl\:text-90px {
    font-size: 5.625rem;
  }

  .\34xl\:text-\[46px\] {
    font-size: 46px;
  }

  .\34xl\:leading-1 {
    line-height: 1;
  }

  .\34xl\:leading-1\.3 {
    line-height: 1.3;
  }

  .\34xl\:leading-65px {
    line-height: 4.0625rem;
  }
}

.ltr\:-left-\[300px\]:where([dir="ltr"], [dir="ltr"] *) {
  left: -300px;
}

.ltr\:-right-\[300px\]:where([dir="ltr"], [dir="ltr"] *) {
  right: -300px;
}

.ltr\:left-0:where([dir="ltr"], [dir="ltr"] *) {
  left: 0px;
}

.ltr\:-translate-x-1\/2:where([dir="ltr"], [dir="ltr"] *) {
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.ltr\:border-l:where([dir="ltr"], [dir="ltr"] *) {
  border-left-width: 1px;
}

@media (min-width: 480px) {
  .ltr\:xs\:-left-\[400px\]:where([dir="ltr"], [dir="ltr"] *) {
    left: -400px;
  }

  .ltr\:xs\:-right-\[400px\]:where([dir="ltr"], [dir="ltr"] *) {
    right: -400px;
  }
}

.rtl\:-left-3:where([dir="rtl"], [dir="rtl"] *) {
  left: -0.75rem;
}

.rtl\:-left-\[300px\]:where([dir="rtl"], [dir="rtl"] *) {
  left: -300px;
}

.rtl\:-right-2:where([dir="rtl"], [dir="rtl"] *) {
  right: -0.5rem;
}

.rtl\:-right-\[300px\]:where([dir="rtl"], [dir="rtl"] *) {
  right: -300px;
}

.rtl\:right-0:where([dir="rtl"], [dir="rtl"] *) {
  right: 0px;
}

.rtl\:right-5:where([dir="rtl"], [dir="rtl"] *) {
  right: 1.25rem;
}

.rtl\:right-\[10px\]:where([dir="rtl"], [dir="rtl"] *) {
  right: 10px;
}

.rtl\:right-\[60px\]:where([dir="rtl"], [dir="rtl"] *) {
  right: 60px;
}

.rtl\:ml-25px:where([dir="rtl"], [dir="rtl"] *) {
  margin-left: 1.5625rem;
}

.rtl\:ml-3:where([dir="rtl"], [dir="rtl"] *) {
  margin-left: 0.75rem;
}

.rtl\:block:where([dir="rtl"], [dir="rtl"] *) {
  display: block;
}

.rtl\:hidden:where([dir="rtl"], [dir="rtl"] *) {
  display: none;
}

.rtl\:translate-x-1\/2:where([dir="rtl"], [dir="rtl"] *) {
  --tw-translate-x: 50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.rtl\:border-l:where([dir="rtl"], [dir="rtl"] *) {
  border-left-width: 1px;
}

.rtl\:border-r:where([dir="rtl"], [dir="rtl"] *) {
  border-right-width: 1px;
}

.rtl\:border-r-4:where([dir="rtl"], [dir="rtl"] *) {
  border-right-width: 4px;
}

.rtl\:pl-15px:where([dir="rtl"], [dir="rtl"] *) {
  padding-left: 0.9375rem;
}

.rtl\:pr-10px:where([dir="rtl"], [dir="rtl"] *) {
  padding-right: 0.625rem;
}

.rtl\:pr-15px:where([dir="rtl"], [dir="rtl"] *) {
  padding-right: 0.9375rem;
}

@media (min-width: 480px) {
  .rtl\:xs\:-left-\[400px\]:where([dir="rtl"], [dir="rtl"] *) {
    left: -400px;
  }

  .rtl\:xs\:-right-\[400px\]:where([dir="rtl"], [dir="rtl"] *) {
    right: -400px;
  }
}

@media (min-width: 1200px) {
  .rtl\:xl\:right-\[150px\]:where([dir="rtl"], [dir="rtl"] *) {
    right: 150px;
  }

  .rtl\:xl\:pl-30px:where([dir="rtl"], [dir="rtl"] *) {
    padding-left: 1.875rem;
  }

  .rtl\:xl\:pr-30px:where([dir="rtl"], [dir="rtl"] *) {
    padding-right: 1.875rem;
  }
}

.homeaboutright {
  padding: 0px 0px !important;

  @media (max-width: 991px) {
    padding: 0px 50px !important;
  }

  @media (max-width: 600px) {
    padding: 0px 20px !important;
  }
}

.project.about-us-banner .banner-background {
  width: 100%;
  height: 385px;
}

.project.about-us-banner .banner-background .banner-content .banner-title {
  font-size: 4rem;
  color: #dc2253;
  margin-top: 23px;
  padding-left: 20px;
}

.logo-inquiry {
  max-width: 250px;
  margin-bottom: 10px;
}

.w-100 {
  width: 100% !important;
}

.project-detail .sidebar .sidebar-card {
  background: #f9fafb !important;
}

.contactus-btn {
  display: flex;
  align-items: center;
  padding: 0.3rem 1rem;
  background: var(--secondary-color);
  color: white !important;
  border: none;
  border-radius: 10px;
  font-weight: 400 !important;
  transition: all 0.2s ease;
  margin-top: -1px;
  margin-left: 10px;
  font-size: 17px !important;
}

.box-house .image-wrap>a {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
}

.contactus-btn:hover {
  transform: scale(1.1);
}

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

.icon-items {
  display: flex;
  align-items: center;
  gap: 7px;
  transition: 0.2s;
}

.icon-items svg {
  transition: 0.2s;
}

.icon-items:hover svg {
  transform: rotate(181deg);
}

.highlight-item,
.amenity-item {
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.highlight-item:hover,
.amenity-item:hover {
  transform: scale(1.1) !important;
}

.project-detail .amenities-section .amenities-grid .amenity-item.featured {
  background: #dc22533d !important;
  font-weight: 600 !important;
  color: black !important;
}

.project-detail .project-overview .developer-info {
  background: #f7cad6 !important;
  color: black !important;
}

.pb-0 {
  padding-bottom: 0px !important;
}

button.wh-ap-btn {
  outline: none;
  width: 51px;
  height: 51px;
  border: 0;
  background-color: #2ecc71;
  padding: 0;
  border-radius: 100%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  transition: opacity 0.3s, background 0.3s, box-shadow 0.3s;
}

button.wh-ap-btn::after {
  content: "";
  background-image: url("//i.imgur.com/cAS6qqn.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 60%;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 1;
}

button.wh-ap-btn:hover {
  opacity: 1;
  background-color: #20bf6b;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.wh-api {
  position: fixed;
  z-index: 100;
  bottom: 0;
  right: 0;
}

.wh-fixed {
  margin-right: 15px;
  margin-bottom: 15px;
}

.wh-fixed>a {
  display: block;
  text-decoration: none;
}

button.wh-ap-btn::before {
  text-transform: uppercase;
  content: "Chat with me";
  display: block;
  position: absolute;
  margin-left: -138px;
  margin-top: -1px;
  height: 25px;
  background: transparent !important;
  color: #2ecc71;
  font-weight: 400;
  font-size: 15px;
  border-radius: 3px;
  width: 0;
  opacity: 0;
  padding: 0;
  transition: opacity 0.4s, width 0.4s, padding 0.5s;
  padding-top: 7px;
  border-radius: 30px;
  box-shadow: none;
  background: red;
  font-weight: bold;
}

.wh-fixed>a:hover button.wh-ap-btn::before {
  opacity: 1;
  width: auto;
  padding-top: 7px;
  padding-left: 10px;
  padding-right: 10px;
  width: 140px;
}

/* animacion pulse */

.whatsapp-pulse {
  width: 51px;
  height: 51px;
  right: 14px;
  bottom: 10px;
  background: #10b418;
  position: fixed;
  text-align: center;
  color: #ffffff;
  cursor: pointer;
  border-radius: 50%;
  z-index: 99;
  display: inline-block;
  line-height: 65px;
}

.whatsapp-pulse:before {
  position: absolute;
  content: " ";
  z-index: -1;
  bottom: -13px;
  right: -13px;
  background-color: #10b418;
  width: 80px;
  height: 80px;
  border-radius: 100%;
  animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
  opacity: 0.6;
  -webkit-animation: pulse 1s ease-out;
  animation: pulse 1.8s ease-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0);
    opacity: 0;
  }

  25% {
    -webkit-transform: scale(0.3);
    opacity: 1;
  }

  50% {
    -webkit-transform: scale(0.6);
    opacity: 0.6;
  }

  75% {
    -webkit-transform: scale(0.9);
    opacity: 0.3;
  }

  100% {
    -webkit-transform: scale(1);
    opacity: 0;
  }
}

@keyframes pulse {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  25% {
    transform: scale(0.3);
    opacity: 1;
  }

  50% {
    transform: scale(0.6);
    opacity: 0.6;
  }

  75% {
    transform: scale(0.9);
    opacity: 0.3;
  }

  100% {
    transform: scale(1);
    opacity: 0;
  }
}

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

.table-custom {
  position: relative;
}

.relative {
  position: relative;
}

.plot-hover {
  top: 15px;

  left: 10px;

  width: 105px;

  z-index: 1000;

  height: auto !important;

  border-radius: 6px;
}

/* Hover Effect: Small to Big Boom */

.plot-wrapper:hover .plot-open {
  opacity: 1;

  visibility: visible;

  transform: scale(1.15);

  /* Expand slightly bigger first */

  transition: transform 0.15s cubic-bezier(0.1, 2, 0.3, 1),
    opacity 0.15s ease-in;
}

/* Settle Down After Boom */

.plot-wrapper:hover .plot-open {
  animation: settleSmallToBig 0.2s ease-out 0.15s forwards;
}

.plot-wrapper {
  position: relative;

  display: block;
}

.plot-wrapper:hover img {
  background: #252525;

  transform: scale(1.4);
}

.plot-open span {
  color: black;
}

.plot-open div {
  color: black;

  display: flex;

  justify-content: space-between;

  border-bottom: 1px dotted #342d2d80;

  padding: 3px;

  border-style: dotted;
}

.plot-open {
  left: 20px;

  position: absolute;

  width: 313px;

  opacity: 0;

  transform: scale(0.5);

  transition: opacity 0.1s ease-out,
    transform 0.25s cubic-bezier(0.2, 1.8, 0.3, 1);

  font-size: 1.0625rem;

  font-weight: 500;

  line-height: 1.4;

  visibility: hidden;

  background: red;

  z-index: 1000;

  padding: 9px;

  border-radius: 10px;

  color: white !important;

  /* top: 13px;

    border:2px solid #000;

    box-shadow: 0px 2px 5px 2px #5a5757; */

  /* top: 10px; */

  border: 3px solid #000;

  /* box-shadow: 0px 2px 5px 2px #5a5757; */

  background: white !important;
}

.plot-open::before {
  content: "";

  position: absolute;
}

@keyframes settleSmallToBig {
  0% {
    transform: scale(1.15);
  }

  50% {
    transform: scale(0.98);
  }

  100% {
    transform: scale(1);
  }
}

.hippocity.plots {
  display: flex;

  position: absolute;

  bottom: 188px;

  left: 0;
}

.plot-item {
  text-align: center;

  /* border-right: 1px solid; */
  /* border-bottom: 1px solid black; */

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 8px;

  color: black !important;

  cursor: pointer;

  font-weight: bold;

  background: transparent !important;
  /* background: red; */

  font-size: 0;

  border: none !important;
}

.plot-item::after {
  content: "";

  position: absolute;

  width: 5px;

  height: 5px;

  top: 5px;

  left: 2px;

  border-radius: 41px;
}

.hippocity .colony-container {
  display: flex;

  height: 40px;

  /* width: 100%; */
  width: fit-content;
}

.hippocity .colony-group-containerm {
  display: flex;

  height: 40px;

  width: 100%;
}

.group-container-1 {
  position: absolute;

  left: 18px;

  bottom: 0;
}

.group-container-1 .rowColony-container-1 {
  margin-left: 138px;

  position: relative;

  top: 402px;
}

.group-container-1 .rowColony-container-2 {
  margin-left: 133px;

  position: relative;

  top: 307px;
}

.group-container-1 .rowColony-container-3 {
  margin-left: 128px;

  position: relative;

  top: 175px;
}

.group-container-1 .rowColony-container-4 {
  margin-left: 126px;

  position: relative;

  top: 78px;
}

.group-container-1 .rowColony-container-5 {
  margin-left: 111px;

  position: relative;

  top: -53px;
}

.group-container-1 .rowColony-container-6 {
  margin-left: 110px;

  position: relative;

  top: -150px;
}

.group-container-1 .rowColony-container-7 {
  margin-left: 175px;

  position: relative;

  top: -282px;
}

.group-container-1 .rowColony-container-8 {
  margin-left: 173px;

  position: relative;

  top: -378px;
}

.group-container-1 .rowColony-container-9 {
  margin-left: 88px;

  position: relative;

  top: -505px;
}

.group-container-1 .rowColony-container-10 {
  margin-left: 85px;

  position: relative;

  top: -605px;
}

.group-container-1 .rowColony-container-11 {
  margin-left: 71px;

  position: relative;

  top: -736px;
}

.group-container-1 .rowColony-container-12 {
  margin-left: 135px;

  position: relative;

  top: -833px;
}

.group-container-1 .rowColony-container-13 {
  margin-left: 131px;

  position: relative;

  top: -965px;
}

.group-container-1 .rowColony-container-14 {
  margin-left: 49px;

  position: relative;

  top: -1061px;
}

.group-container-1 .rowColony-container-15 {
  margin-left: 44px;

  position: relative;

  top: -1192px;
}

.group-container-2 {
  position: absolute;

  left: 475px;

  bottom: 412px;
}

.group-container-2 .rowColony-container-14 {
  position: relative;

  top: 201px;

  margin-left: -44px;
}

.group-container-2 .rowColony-container-13 {
  position: relative;

  top: 145px;

  margin-left: -35px;
}

.group-container-2 .rowColony-container-12 {
  position: relative;

  top: 130px;

  margin-left: -35px;
}

.group-container-2 .rowColony-container-11 {
  position: relative;

  top: 78px;

  margin-left: -35px;
}

.group-container-2 .rowColony-container-10 {
  position: relative;

  top: 62px;

  margin-left: -37px;
}

.group-container-2 .rowColony-container-9 {
  position: relative;

  top: 10px;

  margin-left: -36px;
}

.group-container-2 .rowColony-container-8 {
  position: relative;

  top: -5px;

  margin-left: -36px;
}

.group-container-2 .rowColony-container-7 {
  position: relative;

  top: -56px;

  margin-left: -36px;
}

.group-container-2 .rowColony-container-6 {
  position: relative;

  top: -74px;

  margin-left: -36px;
}

.group-container-2 .rowColony-container-5 {
  position: relative;

  top: -125px;

  margin-left: -36px;
}

.group-container-2 .rowColony-container-4 {
  position: relative;

  top: -141px;

  margin-left: -36px;
}

.group-container-2 .rowColony-container-3 {
  position: relative;

  top: -192px;

  margin-left: -36px;
}

.group-container-2 .rowColony-container-2 {
  position: relative;

  top: -209px;

  margin-left: -33px;
}

.group-container-2 .rowColony-container-1 {
  position: relative;

  top: -261px;

  margin-left: -39px;
}

.group-container-2 .rowColony-container-1 img {
  margin-top: -6px;

  margin-left: 5px;
}

.group-container-2 .rowColony-container-2 img {
  margin-top: 24px;

  margin-left: 0px;
}

.group-container-2 .rowColony-container-3 img {
  margin-top: -19px;

  margin-left: -1px;
}

.group-container-2 .rowColony-container-4 img {
  margin-top: 29px;

  margin-left: 2px;
}

.group-container-2 .rowColony-container-5 img {
  margin-top: -20px;

  margin-left: -1px;
}

.group-container-2 .rowColony-container-6 img {
  margin-top: 22px;

  margin-left: -1px;
}

.group-container-2 .rowColony-container-7 img {
  margin-top: -20px;

  margin-left: -1px;
}

.group-container-2 .rowColony-container-8 img {
  margin-top: 30px;

  margin-left: -1px;
}

.group-container-2 .rowColony-container-9 img {
  margin-top: -20px;

  margin-left: -1px;
}

.group-container-2 .rowColony-container-10 img {
  margin-top: 26px;

  margin-left: 1px;
}

.group-container-2 .rowColony-container-11 img {
  margin-top: -19px;

  margin-left: 1px;
}

.group-container-2 .rowColony-container-12 img {
  margin-top: 23px;

  margin-left: 1px;
}

.group-container-2 .rowColony-container-13 img {
  margin-top: -19px;

  margin-left: 1px;
}

.group-container-2 .rowColony-container-14 img {
  margin-top: 5px;

  margin-left: -3px;
}

.group-container-1 .rowColony-container-15 img {
  margin-top: -14px;

  margin-left: -2px;
}

.group-container-1 .rowColony-container-14 img {
  margin-top: 23px;

  margin-left: -3px;
}

.group-container-1 .rowColony-container-13 img {
  margin-top: -17px;

  margin-left: 0px;
}

.group-container-1 .rowColony-container-12 img {
  margin-top: 19px;

  margin-left: -4px;

  width: 18px;
}

.group-container-1 .rowColony-container-11 img {
  margin-top: -17px;

  margin-left: -5px;

  width: 19px;
}

.group-container-1 .rowColony-container-10 img {
  margin-top: 20px;

  margin-left: -2px;
}

.group-container-1 .rowColony-container-9 img {
  margin-top: -17px;

  margin-left: -3px;
}

.group-container-1 .rowColony-container-8 img {
  margin-top: 18px;

  margin-left: -1px;
}

.group-container-1 .rowColony-container-7 img {
  margin-top: -2px;

  margin-left: -1px;
}

.group-container-1 .rowColony-container-6 img {
  margin-top: 22px;

  margin-left: -3px;
}

.group-container-1 .rowColony-container-5 img {
  margin-top: -12px;

  margin-left: -1px;
}

.group-container-1 .rowColony-container-4 img {
  margin-top: 0px;

  margin-left: 0px;
}

.group-container-1 .rowColony-container-3 img {
  margin-top: -13px;

  margin-left: 0px;
}

.group-container-1 .rowColony-container-2 img {
  margin-top: 0px;

  margin-left: 0px;
}

.group-container-1 .rowColony-container-1 img {
  margin-top: 12px;

  margin-left: -1px;
}

#plot_190 img {
  margin-top: 9px;
}

#plot_99 img {
  margin-top: 6px;
}

#plot_191 img {
  margin-top: -25px;

  margin-left: 5px;

  width: 14px;
}

#plot_68 img {
  margin-top: 9px;
}

#plot_87 img,
#plot_112 img {
  margin-top: -23px;

  margin-left: -5px;
}

#plot_133 img {
  margin-top: 9px;

  margin-left: -5px;
}

#plot_113 img {
  margin-left: -6px;

  margin-top: 6px;
}

#plot_132 img {
  margin-top: -23px;

  width: 17px;

  margin-left: -3px;
}

#plot_210 img,
#plot_254 img,
#plot_262 img,
#plot_289 img,
#plot_281 img {
  margin-top: 16px;
}

#plot_211 img,
#plot_223 img,
#plot_290 img {
  margin-top: -27px;
}

#plot_235 img,
#plot_271 img,
#plot_11 img {
  margin-top: 11px;
}

#plot_224 img,
#plot_289 img {
  margin-top: 8px;
}

#plot_236 img,
#plot_255 img,
#plot_272 img,
#plot_297 img {
  margin-top: -27px;
}

#plot_247 img {
  margin-top: -24px;
}

#plot_280 img {
  margin-top: -30px;

  margin-left: -1px;
}

#plot_303 img {
  margin-top: -2px;

  margin-left: 13px;

  width: 15px;
}

#plot_298 img {
  margin-top: -1px;

  margin-left: -8px;

  width: 23px;
}

#plot_18 img,
#plot_76 img {
  margin-top: -21px;
}

#plot_88 img {
  margin-top: 5px;

  margin-left: -4px;
}

.available img {
  /* filter: drop-shadow(2px 4px 6px black);

     */

  width: 17px;

  background: white;

  border-radius: 38px;

  pointer-events: none;
}

.inquiry-btn {
  background: #b0103a !important;

  padding: 6px;

  border-radius: 5px;

  /* width: 140px; */

  text-transform: uppercase;

  color: white;

  margin: auto;

  display: block;
  flex: 1;

  margin-top: 16px;

  margin-bottom: 9px;
}

.avl {
  /* background: #008000a8; */

  padding: 4px;

  color: green !important;

  border-radius: 3px;

  margin-right: 14px;

  text-transform: inherit;
}

.booked {
  /* background: red; */

  padding: 4px;

  color: red !important;

  border-radius: 3px;

  text-transform: inherit;
}

.avl img {
  background: transparent !important;

  position: absolute;

  margin-top: -4px !important;

  width: 31px;

  right: 0;

  transform: scale(1) !important;
}

.select-control {
  width: 100%;

  padding: 10px 36px;

  border: 1px solid #ccc;

  border-radius: 5px;

  font-size: 15px;

  background-color: #fff;
}

/* ===================== */
/* map-----05 */
.hippocity .colony-container5 {
  display: flex;
  height: 40px;

  width: 100%;
}

.group-container5-1 {
  position: absolute;
  left: 0;
  bottom: 0;
}

.group-container5-1 .rowColony-container5-1 {
  position: relative;
  top: 441px;
  left: 533px;
}

.group-container5-1 .rowColony-container5-2 {
  position: relative;
  top: 441px;
  left: 87px;
}

.group-container5-1 .rowColony-container5-3 {
  position: relative;
  top: 494px;
  left: 540px;
}

.group-container5-1 .rowColony-container5-4 {
  left: 98px;
  position: relative;
  top: 454px;
}

.group-container5-1 .rowColony-container5-5 {
  left: 540px;
  position: relative;
  top: 484px;
}

.group-container5-1 .rowColony-container5-6 {
  left: 94px;
  position: relative;
  top: 445px;
}

.group-container5-1 .rowColony-container5-7 {
  left: 539px;
  position: relative;
  top: 469px;
}

.group-container5-1 .rowColony-container5-8 {
  left: 95px;
  position: relative;
  top: 429px;
}

.group-container5-1 .rowColony-container5-9 {
  left: 645px;
  position: relative;
  top: 461px;
}

.group-container5-1 .rowColony-container5-10 {
  left: 101px;
  position: relative;
  top: 421px;
}

.group-container5-1 .rowColony-container5-11 {
  left: 645px;
  position: relative;
  top: 446px;
}

.group-container5-1 .rowColony-container5-12 {
  left: 100px;
  position: relative;
  top: 406px;
}

.group-container5-1 .rowColony-container5-13 {
  left: 541px;
  position: relative;
  top: 438px;
}

.group-container5-1 .rowColony-container5-14 {
  left: 95px;
  position: relative;
  top: 398px;
}

.group-container5-1 .rowColony-container5-15 {
  left: 540px;
  position: relative;
  top: 410px;
}

.group-container5-1 .rowColony-container5-16 {
  left: 109px;
  position: relative;
  top: 369px;
}

.group-container5-1 .rowColony-container5-17 {
  left: 635px;
  position: relative;
  top: 407px;
}

.group-container5-1 .rowColony-container5-18 {
  left: 114px;
  position: relative;
  top: 373px;
}

.group-container5-1 .rowColony-container5-19 {
  left: 635px;
  position: relative;
  top: 383px;
}

.group-container5-1 .rowColony-container5-20 {
  left: 113px;
  position: relative;
  top: 344px;
}

.group-container5-1 .rowColony-container5-21 {
  left: 547px;
  position: relative;
  top: 390px;
}

.group-container5-1 .rowColony-container5-22 {
  left: 109px;
  position: relative;
  top: 350px;
}

.group-container5-1 .rowColony-container5-23 {
  left: 547px;
  position: relative;
  top: 361px;
}

.group-container5-1 .rowColony-container5-24 {
  left: 111px;
  position: relative;
  top: 321px;
}

.group-container5-1 .rowColony-container5-25 {
  left: 107px;
  position: relative;
  top: 365px;
}

.group-container5-1 .rowColony-container5-26 {
  left: 186px;
  position: relative;
  top: 326px;
  display: flex;
  flex-direction: column;
}

.group-container5-1 .rowColony-container5-27 {
  left: 263px;
  position: relative;
  top: 286px;
  display: flex;
  flex-direction: column;
}

.group-container5-1 .rowColony-container5-28 {
  left: 339px;
  position: relative;
  top: 246px;
  display: flex;
  flex-direction: column;
}

.group-container5-1 .rowColony-container5-29 {
  left: 469px;
  position: relative;
  top: 205px;
  display: flex;
  flex-direction: column;
}

.group-container5-1 .rowColony-container5-30 {
  left: 542px;
  position: relative;
  top: 168px;
  display: flex;
  flex-direction: column;
}

.group-container5-1 .rowColony-container5-31 {
  left: 729px;
  position: relative;
  top: 130px;
  display: flex;
  flex-direction: column;
}

.group-container5-1 .rowColony-container5-32 {
  left: 783px;
  position: relative;
  top: 86px;
  display: flex;
  flex-direction: column;
}

.group-container5-1 .rowColony-container5-33 {
  left: 854px;
  position: relative;
  top: 47px;
  display: flex;
  flex-direction: column;
}

.group-container5-1 .rowColony-container5-34 {
  left: 995px;
  position: relative;
  top: -688px;
  display: flex;
  flex-direction: column;
}

.group-container5-1 .rowColony-container5-35 {
  left: 854px;
  position: relative;
  top: 47px;
  display: flex;
  flex-direction: column;
}

#plot5_95 img {
  margin-right: 4px;
}

#plot5_109 img {
  margin-right: 7px;
}

#plot5_122 img {
  margin-right: 6px;
}

#plot5_151 img {
  margin-right: 4px;
}

#plot5_165 img {
  margin-right: 7px;
}

#plot5_210 img {
  margin-right: 7px;
}

#plot5_202 img {
  margin-left: 7px;
}

#plot5_219 img {
  margin-right: 7px;
}

#plot5_201 img {
  margin-left: 7px;
}

#plot5_220 img {
  margin-right: 7px;
}

#plot5_51 img {
  margin-right: 7px;
}

#plot5_94 img {
  margin-right: 4px;
}

#plot5_123 img {
  margin-right: 4px;
}

#plot5_136 img {
  margin-right: 4px;
}

#plot5_150 img {
  margin-right: 4px;
}

#plot5_137 img {
  margin-right: 4px;
}

#plot5_192 img {
  margin-right: 1px;
}

#plot5_179 img {
  margin-right: 3px;
}

#plot5_246 img {
  margin-right: 7px;
}

#plot5_285 img {
  margin-right: 7px;
}

#plot5_229 img {
  margin-right: 2px;
}

#plot5_302 img {
  margin-right: 1px;
}

#plot5_343 img {
  margin-right: 6px;
}

#plot5_303 img {
  margin-right: 12px;
}

#plot5_354 img {
  margin-right: 10px;
}

#plot5_371 img {
  margin-right: 8px;
}

#plot5_410 img {
  margin-right: 8px;
}

#plot5_409 img {
  margin-right: 5px;
}

#plot5_390 img {
  margin-right: 8px;
}

#plot5_372 img {
  margin-right: 7px;
}

#plot5_329 img {
  margin-right: 8px;
}

#plot5_328 img {
  margin-right: 8px;
}

#plot5_266 img {
  margin-right: 8px;
}

#plot5_284 img {
  margin-right: 4px;
}

#plot5_247 img {
  margin-right: 4px;
}

#plot5_211 img {
  margin-right: 8px;
}

#plot5_315 img {
  margin-bottom: 8px;
}

#plot5_342 img {
  margin-bottom: 8px;
}

/* ===================== */
/* map-----02 */
.hippocity .colony-container2 {
  /* display: flex; */
  height: 40px;

  width: 100%;
}

.group-container2-1 {
  position: absolute;

  left: 0;

  bottom: 0px;
}

.group-container2-1 .rowColony-container2-1 {
  left: 143px;
  position: relative;
  top: 195px;
}

.group-container2-1 .rowColony-container2-2 {
  left: 240px;
  position: relative;
  top: 163px;
}

.group-container2-1 .rowColony-container2-3 {
  left: 358px;
  position: relative;
  top: 111px;
}

.group-container2-1 .rowColony-container2-4 {
  left: 445px;
  position: relative;
  top: 76px;
}

.group-container2-1 .rowColony-container2-5 {
  left: 480px;
  position: relative;
  top: 36px;
}

.group-container2-1 .rowColony-container2-6 {
  left: 565px;
  position: relative;
  top: -2px;
}

.group-container2-1 .rowColony-container2-7 {
  left: 600px;
  position: relative;
  top: -43px;
}

.group-container2-1 .rowColony-container2-8 {
  left: 682px;
  position: relative;
  top: -82px;
}

.group-container2-1 .rowColony-container2-9 {
  left: 716px;
  position: relative;
  top: -122px;
}

.group-container2-1 .rowColony-container2-10 {
  left: 797px;
  position: relative;
  top: -162px;
}

.group-container2-1 .rowColony-container2-11 {
  left: 832px;
  position: relative;
  top: -202px;
}

.group-container2-1 .rowColony-container2-12 {
  left: 715px;
  position: relative;
  top: 331px;
}

.group-container2-1 .rowColony-container2-13 {
  left: 716px;
  position: relative;
  top: 248px;
}

.group-container2-1 .rowColony-container2-14 {
  left: 717px;
  position: relative;
  top: 162px;
}

.group-container2-1 .rowColony-container2-15 {
  left: 760px;
  position: relative;
  top: 69px;
}

.group-container2-1 .rowColony-container2-16 {
  left: 711px;
  position: relative;
  top: 30px;
}

.group-container2-1 .rowColony-container2-17 {
  left: 680px;
  position: relative;
  top: 14px;
}

.group-container2-1 .rowColony-container2-18 {
  left: 598px;
  position: relative;
  top: -27px;
}

.group-container2-1 .rowColony-container2-19 {
  left: 565px;
  position: relative;
  top: -67px;
}

.group-container2-1 .rowColony-container2-20 {
  left: 479px;
  position: relative;
  top: -107px;
}

.group-container2-1 .rowColony-container2-21 {
  left: 446px;
  position: relative;
  top: -147px;
}

.group-container2-1 .rowColony-container2-22 {
  left: 358px;
  position: relative;
  top: -194px;
}

.group-container2-1 .rowColony-container2-23 {
  left: 240px;
  position: relative;
  top: -234px;
}

.group-container2-1 .rowColony-container2-24 {
  left: 140px;
  position: relative;
  top: -290px;
}

.group-container2-1 .rowColony-container2-25 {
  left: 239px;
  position: relative;
  top: -520px;
}

#plot2_145 img {
  margin-right: 4px;
  margin-top: 22px;
}

#plot2_259 img {
  margin-top: 14px;
}

#plot2_260 img {
  margin-top: 10px;
}

#plot2_261 img {
  margin-top: 7px;
}

#plot2_262 img {
  margin-top: 5px;
}

#plot2_263 img {
  margin-top: 3px;
}

#plot2_280 img {
  margin-right: 8px;
}

#plot2_279 img {
  margin-right: 8px;
}

#plot2_277 img {
  margin-right: 8px;
}

#plot2_276 img {
  margin-right: 8px;
}

#plot2_275 img {
  margin-right: 8px;
}

/* ===================== */
/* map-----01 */
.hippocity .colony-container1 {
  /* display: flex; */
  height: 40px;

  width: 100%;
}

.group-container1-1 {
  position: absolute;

  left: 0;

  bottom: 0px;
}

.group-container1-1 .rowColony-container1-1 {
  left: 82px;
  position: relative;
  top: 456px;
}

.group-container1-1 .rowColony-container1-2 {
  left: 82px;
  position: relative;
  top: 306px;
}

.group-container1-1 .rowColony-container1-3 {
  left: 81px;
  position: relative;
  top: -109px;
}

.group-container1-1 .rowColony-container1-4 {
  left: 81px;
  position: relative;
  top: -259px;
}

.group-container1-1 .rowColony-container1-5 {
  left: 81px;
  position: relative;
  top: -695px;
}

.group-container1-1 .rowColony-container1-6 {
  left: 213px;
  position: relative;
  top: -734px;
}

.group-container1-1 .rowColony-container1-7 {
  left: 213px;
  position: relative;
  left: 208px;
  position: relative;
  top: -290px;
}

.group-container1-1 .rowColony-container1-8 {
  left: 256px;
  position: relative;
  top: -330px;
}

.group-container1-1 .rowColony-container1-9 {
  left: 257px;
  position: relative;
  top: -855px;
}

.group-container1-1 .rowColony-container1-10 {
  left: 356px;
  position: relative;
  top: -895px;
}

.group-container1-1 .rowColony-container1-11 {
  left: 357px;
  position: relative;
  top: -450px;
}

.group-container1-1 .rowColony-container1-12 {
  left: 397px;
  position: relative;
  top: -490px;
}

.group-container1-1 .rowColony-container1-13 {
  left: 399px;
  position: relative;
  top: -1016px;
}

.group-container1-1 .rowColony-container1-14 {
  left: 495px;
  position: relative;
  top: -1056px;
}

.group-container1-1 .rowColony-container1-15 {
  left: 495px;
  position: relative;
  top: -609px;
}

.group-container1-1 .rowColony-container1-16 {
  left: 499px;
  position: relative;
  top: -164px;
}

.group-container1-1 .rowColony-container1-18 {
  left: 398px;
  position: relative;
  top: -204px;
}

.group-container1-1 .rowColony-container1-19 {
  left: 358px;
  position: relative;
  top: -245px;
}

.group-container1-1 .rowColony-container1-20 {
  left: 254px;
  position: relative;
  top: -285px;
}

.group-container1-1 .rowColony-container1-21 {
  left: 212px;
  position: relative;
  top: -324px;
}

.topnavbarhide {
  display: block;
  /* Show by default (for small screens) */
}

@media (max-width: 500px) {
  .topnavbarhide {
    display: none;
    /* Hide for screens ≥560px */
  }
}

.map-wrapper {
  /* width: 100%; */
  /* max-width: 900px; */
  /* margin-bottom: 20px; */
}

.map-image {
  width: 100% !important;
  height: auto;
  border-radius: 8px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.dark-overlay .overlay {
  background: rgb(66 38 38 / 41%) !important;
}

.text-secondary-color.bg-secondary-color {
  text-transform: uppercase;
  font-style: normal;
}

.vmq-section .vmq-title .highlight {
  color: white;
}

.swiper-slide {
  margin-bottom: 10px !important;
}

.aboutImage {
  height: 500px;
  border-radius: 13px;
  filter: drop-shadow(2px 4px 6px gray);
}

.headercontainer-sticky {
  background-color: var(--white);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0px 4px 18px rgb(0 0 0 / 21%);
}

@media (max-width: 767px) {
  .project-detail .main-content {
    display: flex !important;
    flex-direction: column !important;
  }

  .contact-container {
    flex-direction: column-reverse !important;
  }

  .pt-20 {
    padding-top: 0rem;
  }

  .about-us-banner .banner-background {
    height: 200px !important;
    background-size: cover !important;
  }

  .project.about-us-banner .banner-background .banner-content .banner-title {
    display: none !important;
  }

  .headerlogo {
    width: 77px !important;
    height: auto !important;
  }
}

.border-shadow {
  filter: drop-shadow(2px 4px 6px gray);
  border-radius: 18px;
  margin-left: 9px;
}

.text-capitalize {
  text-transform: capitalize;
}

.content-project .content {
  width: 970px !important;
  padding: 32px 1px 8px 0px !important;
}

.project-section .content .item p {
  display: flex;
  align-items: center;
  gap: 6px;
}

.shadow-bg {
  background: #00000070;
  border-radius: 8px;
  left: 10px;
  height: 152px;
  top: -158px;
}

.aboutDropdown {
  top: 55px !important;
  left: -204px !important;
}

.ReactModal__Overlay {
  background-color: rgb(40 38 38 / 75%) !important;
  z-index: 1000 !important;
}

.modal-logo-hero {
  height: 129px;
  /* width: 100%; */
  object-fit: contain;
  border: 0px solid gray;
  margin-top: -38px;
  overflow: hidden;
  background: white;
  margin-bottom: 10px;
  border-radius: 7px;
}

.css-13cymwt-control,
.css-t3ipsp-control {
  min-height: 49px !important;
}

.project-section.section-container .topicon {
  left: 66% !important;
}

.project-section {
  left: auto !important;
  right: -271px;
  top: 45px !important;
}

.khandwaCity.plots {
  display: flex;
  position: absolute;
  bottom: 188px;
  left: 0;
}

.khandwaCity .colony-container {
  position: absolute;
  right: 0;
}

.khandwaCity .rowColony-container-1 {
  top: -174px;
  left: -14px;
}

.khandwaCity .rowColony-container-2 {
  top: -173px;
  left: 81px;
}

.khandwaCity .rowColony-container-2 #plot_10 {
  position: absolute;
  /* z-index: 10000; */
  top: -78px;
}

.khandwaCity .rowColony-container-3 {
  left: 196px;
  top: -173px;
}

.khandwaCity .rowColony-container-4 {
  left: 197px;
  top: -330px;
}

.khandwaCity .rowColony-container-5 {
  left: 283px;
  top: -362px;
}

.khandwaCity .rowColony-container-6 {
  left: 284px;
  top: -173px;
}

.khandwaCity .rowColony-container-7 {
  left: 330px;
  top: -179px;
}

.khandwaCity .rowColony-container-7 #plot_51 .plot-item {
  height: 38px !important;
}

.khandwaCity .rowColony-container-7 .plot-item {
  height: 26.5px !important;
}

.khandwaCity .rowColony-container-8 {
  left: 331px;
  top: -436px;
}

.khandwaCity .rowColony-container-8 #plot_58 .plot-item {
  height: 38px !important;
}

.khandwaCity .rowColony-container-8 #plot_52 .plot-item {
  height: 44px !important;
}

.khandwaCity .rowColony-container-8 .plot-item {
  height: 25.5px !important;
  width: 70px !important;
}

.khandwaCity .rowColony-container-9 {
  left: 487px;
  top: -455px;
}

.khandwaCity .rowColony-container-9 .plot-item {
  height: 26.6px !important;
  width: 70px !important;
}

.khandwaCity .rowColony-container-9 #plot_66 .plot-item {
  height: 45px !important;
}

.khandwaCity .rowColony-container-10 {
  left: 491px;
  top: -179px;
}

.khandwaCity .rowColony-container-11 {
  left: 614px;
  top: -181px;
}

.khandwaCity .rowColony-container-10 #plot_67 .plot-item {
  height: 38px !important;
}

.khandwaCity .rowColony-container-10 #plot_74 .plot-item {
  height: 38px !important;
}

.khandwaCity .rowColony-container-10 .plot-item {
  height: 26.7px !important;
  width: 70px !important;
}

.khandwaCity .rowColony-container-11 .plot-item {
  height: 25.5px !important;
  width: 66px !important;
}

.khandwaCity .rowColony-container-11 .plot-item {
  height: 24px !important;
}

.khandwaCity .rowColony-container-11 #plot_75 .plot-item {
  height: 36px !important;
}

.khandwaCity .rowColony-container-11 #plot_82 .plot-item {
  height: 38px !important;
}

.khandwaCity .rowColony-container-12 {
  left: 550px;
  top: -519px;
}

.khandwaCity .rowColony-container-13 {
  left: 618px;
  top: -570px;
}

.khandwaCity .rowColony-container-13 .plot-item {
  height: 23.7px !important;
  width: 61px !important;
}

.khandwaCity .rowColony-container-13 #plot_92 .plot-item {
  height: 43px !important;
}

.khandwaCity .rowColony-container-13 #plot_104 .plot-item {
  height: 39px !important;
}

.khandwaCity .rowColony-container-14 {
  left: 702px;
  top: -181px;
}

.khandwaCity .rowColony-container-14 .plot-item {
  width: 68px !important;
  height: 24px !important;
}

.khandwaCity .rowColony-container-14 #plot_105 .plot-item {
  height: 38px !important;
}

.khandwaCity .rowColony-container-14 #plot_112 .plot-item {
  height: 25px !important;
}

.khandwaCity .rowColony-container-15 {
  left: 824px;
  top: -183px;
}

.khandwaCity .rowColony-container-15 .plot-item {
  height: 19px !important;
  width: 56px !important;
}

.khandwaCity .rowColony-container-15 #plot_113 .plot-item {
  height: 50px !important;
}

.khandwaCity .rowColony-container-16 .plot-item {
  left: 771px;
  top: -609px;
}

.khandwaCity .rowColony-container-16 #plot_121 .plot-item {
  height: 20px !important;
}

.khandwaCity .rowColony-container-16 #plot_122 .plot-item {
  height: 34px !important;
}

.khandwaCity .rowColony-container-16 {
  top: -339px;
  left: 851px;
}

.khandwaCity .rowColony-container-16 .plot-item {
  height: 24px !important;
  width: 61px !important;
}

.khandwaCity .rowColony-container-16 #plot_114 .plot-item {
  height: 39px !important;
}

.khandwaCity .rowColony-container-17 {
  left: 850px;
  top: -482px;
}

.khandwaCity .rowColony-container-17 .plot-item {
  height: 24px !important;
  width: 61px !important;
}

.khandwaCity .rowColony-container-18 {
  left: 851px;
  top: -609px;
}

.khandwaCity .rowColony-container-18 .plot-item {
  height: 24px !important;
  width: 61px !important;
}

.khandwaCity .rowColony-container-18 #plot_122 .plot-item {
  height: 28px !important;
}

/* .khandwaCity .rowColony-container-17 #plot_L4 .plot-item   {
    position: absolute;
    top: -72px;
    left: 63px;
   } */

/* .khandwaCity .plot-item {
    text-align: center;
    border-right: 1px solid;
    border-bottom: 1px solid black;
    display: flex ;
    align-items: center;
    justify-content: center;
    font-size: 13px !important;
    color: black !important;
    cursor: pointer;
    font-weight: bold;
    background: red !important;
    font-size: 0;
    border: 1px solid black !important;
} */

.khandwaCity .rowColony-container-1 .plot-item img {}

.khandwaCity .rowColony-container-2 .plot-item img {}

.khandwaCity .rowColony-container-3 .plot-item img {
  margin-top: 1px;
  margin-left: 10px;
}

.khandwaCity .rowColony-container-4 .plot-item img {}

.khandwaCity .rowColony-container-5 .plot-item img {
  margin-top: -9px;
  margin-left: 2px;
}

.khandwaCity .rowColony-container-6 .plot-item img {
  margin-top: 6px;
  margin-left: -3px;
}

.khandwaCity .rowColony-container-6 #plot_36 .plot-item img,
.khandwaCity .rowColony-container-6 #plot_37 .plot-item img {
  margin-top: 13px;
  margin-left: -3px;
}

.khandwaCity .rowColony-container-7 .plot-item img {}

.khandwaCity .rowColony-container-8 .plot-item img {
  margin-top: -1px;
  margin-left: 2px;
}

.khandwaCity .rowColony-container-8 #plot_58 .plot-item img {
  margin-top: 2px;
  margin-left: -1px;
}

.khandwaCity .rowColony-container-9 .plot-item img {
  margin-top: 6px !important;
  margin-left: -2px !important;
}

.khandwaCity .rowColony-container-10 .plot-item img {
  margin-top: 8px;
  margin-left: -1px;
}

.khandwaCity .rowColony-container-11 .plot-item img {
  margin-top: 3px !important;
  margin-left: -3px !important;
}

.khandwaCity .rowColony-container-12 .plot-item img {
  margin-top: 1px !important;
  margin-left: 11px !important;
  width: 17px;
}

.khandwaCity .rowColony-container-13 .plot-item img {
  margin-top: 2px !important;
  margin-left: -3px !important;
}

.khandwaCity .rowColony-container-13 #plot_92 .plot-item img {
  margin-top: 13px !important;
}

.khandwaCity .rowColony-container-14 .plot-item img {
  margin-top: 3px !important;
  margin-left: -13px !important;
  width: 26px !important;
}

.khandwaCity .rowColony-container-14 #plot_111 .plot-item img,
.khandwaCity .rowColony-container-14 #plot_110 .plot-item img {
  margin-top: -9px !important;
}

.khandwaCity .rowColony-container-15 .plot-item img {
  margin-left: 12px !important;
  margin-top: -3px !important;
}

.khandwaCity .rowColony-container-16 .plot-item img {}

/* -------------------- */
/* ===================== */
/* map-----mohhamadpur */
.hippocity .colony-containermohhamadpur {
  /* display: flex; */
  height: 40px;

  width: 100%;
}

.mohammadpur-1 {
  position: absolute;

  left: 0;

  bottom: 0px;
}

.mohammadpur-1 .rowColony-container-1 {
  left: 643px;
  position: relative;
  top: 21px;
  transform: rotate(11deg);
}

.mohammadpur-1 .rowColony-container-2 {
  display: flex;
  left: 543px;
  position: relative;
  top: 2px;
  transform: rotate(11deg);
}

.mohammadpur-1 .rowColony-container-3 {
  left: 478px;
  position: relative;
  top: -125px;
}

.mohammadpur-1 .rowColony-container-4 {
  left: 395px;
  position: relative;
  top: -126px;
}

.mohammadpur-1 .rowColony-container-5 {
  left: 351px;
  position: relative;
  top: -231px;
}

.mohammadpur-1 .rowColony-container-6 {
  left: 347px;
  position: relative;
  top: -477px;
}

.mohammadpur-1 .rowColony-container-7 {
  left: 281px;
  position: relative;
  top: -477px;
}

.mohammadpur-1 .rowColony-container-8 {
  left: 281px;
  position: relative;
  top: -231px;
}

.mohammadpur-1 .rowColony-container-9 {
  left: 242px;
  position: relative;
  top: -229px;
}

.mohammadpur-1 .rowColony-container-10 {
  left: 242px;
  position: relative;
  top: -476px;
}

.mohammadpur-1 .rowColony-container-11 {
  left: 174px;
  position: relative;
  top: -447px;
}

.mohammadpur-1 .rowColony-container-12 {
  left: 178px;
  position: relative;
  top: -133px;
}

.mohammadpur-1 .rowColony-container-13 {
  left: 138px;
  position: relative;
  top: -133px;
}

.mohammadpur-1 .rowColony-container-14 {
  left: 138px;
  position: relative;
  top: -437px;
}

.mohammadpur-1 .rowColony-container-15 {
  left: 75px;
  position: relative;
  top: -432px;
}

.mohammadpur-1 .rowColony-container-16 {
  left: 75px;
  position: relative;
  top: -231px;
}

.mohammadpur-1 .rowColony-container-17 {
  display: flex;
  left: 71px;
  position: relative;
  top: 0px;
  transform: rotate(11deg);
}

.mohammadpur-1 .rowColony-container-18 {
  left: 622px;
  position: relative;
  top: 111px;
  transform: rotate(11deg);
}

.mohammadpur-1 .rowColony-container-1 .plot-item img {
  margin-left: 14px !important;
}

.mohammadpur-1 .rowColony-container-2 .plot-item img {
  margin-top: 19px !important;
}

.mohammadpur-1 .rowColony-container-3 .plot-item img {
  margin-right: 26px !important;
}

.mohammadpur-1 .rowColony-container-4 .plot-item img {
  margin-left: 12px !important;
}

.mohammadpur-1 .rowColony-container-5 .plot-item img {
  margin-right: 6px !important;
}

.mohammadpur-1 .rowColony-container-6 .plot-item img {
  margin-right: 0px !important;
}

.mohammadpur-1 .rowColony-container-7 .plot-item img {
  margin-right: 10px !important;
}

.mohammadpur-1 .rowColony-container-8 .plot-item img {
  margin-right: 7px !important;
}

.mohammadpur-1 .rowColony-container-9 .plot-item img {
  margin-left: 2px !important;
}

.mohammadpur-1 .rowColony-container-10 .plot-item img {
  margin-left: 6px !important;
}

.mohammadpur-1 .rowColony-container-11 .plot-item img {
  margin-right: 12px !important;
}

.mohammadpur-1 .rowColony-container-12 .plot-item img {
  margin-right: 6px !important;
}

.mohammadpur-1 .rowColony-container-13 .plot-item img {
  margin-left: 24px !important;
}

.mohammadpur-1 .rowColony-container-14 .plot-item img {
  margin-right: 20px !important;
}

.mohammadpur-1 .rowColony-container-15 .plot-item img {
  margin-right: 14px !important;
}

.mohammadpur-1 .rowColony-container-16 .plot-item img {
  margin-right: 9px !important;
}

.mohammadpur-1 .rowColony-container-18 .plot-item img {
  margin-left: 9px !important;
  margin-top: 2px;
}

.mohammadpur-1 .rowColony-container-1 .plot-wrapper .plot-open {
  transform: rotate(-11deg) !important;
  z-index: 100000 !important;
  opacity: 2000000 !important;
  /* top: -10px; */
  bottom: 30px !important;
}

.mohammadpur-1 .rowColony-container-2 .plot-wrapper .plot-open {
  transform: rotate(-11deg) !important;
  z-index: 100000 !important;
  opacity: 2000000 !important;
  bottom: 30px !important;
  left: -10px !important;
}

.mohammadpur-1 .rowColony-container-17 .plot-wrapper .plot-open {
  transform: rotate(-11deg) !important;
  z-index: 1100000 !important;
  opacity: 22000000 !important;
  bottom: 30px !important;
  left: -10px !important;
}

.mohammadpur-1 .rowColony-container-18 .plot-wrapper .plot-open {
  transform: rotate(-11deg) !important;
  /* z-index: 1000 !important; */
  /* opacity: 20000 !important; */
  bottom: 30px !important;
}

/* Extension 4 */

.khandwaCity.extension-4.plots {
  display: flex;
  position: absolute;
  bottom: auto;
  top: 50%;
  left: 0;
}

.khandwaCity.extension-4 .colony-container {
  position: absolute;
  right: 0;
}

.khandwaCity.extension-4 .rowColony-container-1 {
  top: -313px;
  left: 4px;
}

.khandwaCity.extension-4 .rowColony-container-2 {
  top: -310px;
  left: 111px;
}

.khandwaCity.extension-4 .rowColony-container-2 #plot_18 {
  top: 13px;
}

.khandwaCity.extension-4 .rowColony-container-2 #plot_11 {
  top: -3px;
}

.khandwaCity.extension-4 .rowColony-container-2 #plot_10 {
  position: absolute;
  /* z-index: 10000; */
  top: -78px;
}

.khandwaCity.extension-4 .rowColony-container-3 {
  left: 174px;
  top: -310px;
}

.khandwaCity.extension-4 .rowColony-container-4 {
  left: 282px;
  top: -183px;
}

.khandwaCity.extension-4 .rowColony-container-5 {
  left: 358px;
  top: -180px;
}

.khandwaCity.extension-4 .rowColony-container-6 {
  left: 461px;
  top: -197px;
}

.khandwaCity.extension-4 .rowColony-container-6 .plot-wrapper {
  height: 23.7px;
}

.khandwaCity.extension-4 .rowColony-container-6 #plot_50 {
  margin-top: 4px;
}

.khandwaCity.extension-4 .rowColony-container-7 {
  left: 460px;
  top: -309px;
}

.khandwaCity.extension-4 .rowColony-container-7 .plot-wrapper,
.khandwaCity.extension-4 .rowColony-container-8 .plot-wrapper,
.khandwaCity.extension-4 .rowColony-container-9 .plot-wrapper {
  height: 23.7px;
}

.khandwaCity.extension-4 .rowColony-container-7 #plot_51 {
  margin-top: -1px;
}

.khandwaCity.extension-4 .rowColony-container-7 .plot-item {
  height: 26.5px !important;
}

.khandwaCity.extension-4 .rowColony-container-8 {
  left: 560px;
  top: -309px;
}

.khandwaCity.extension-4 .rowColony-container-8 #plot_76 {
  margin-top: 15px;
}

.khandwaCity.extension-4 .rowColony-container-8 #plot_68 {
  top: -5px;
}

.khandwaCity.extension-4 .rowColony-container-9 {
  left: 713px;
  top: -313px;
}

.khandwaCity.extension-4 .rowColony-container-9 .plot-item {
  height: 26.6px !important;
  width: 70px !important;
}

.khandwaCity.extension-4 .rowColony-container-9 #plot_66 .plot-item {
  height: 45px !important;
}

.khandwaCity.extension-4 .rowColony-container-9 #plot_77 {
  margin-top: 3px;
}

.khandwaCity.extension-4 .rowColony-container-10 {
  left: 795px;
  top: -276px;
}

.khandwaCity.extension-4 .rowColony-container-10 .plot-wrapper,
.khandwaCity.extension-4 .rowColony-container-11 .plot-wrapper {
  height: 64px;
}

.khandwaCity.extension-4 .rowColony-container-11 {
  left: 813px;
  top: 105px;
}

.khandwaCity.extension-4 .rowColony-container-11 .plot-item {
  height: 25.5px !important;
  width: 66px !important;
}

.khandwaCity.extension-4 .rowColony-container-11 .plot-item {
  height: 24px !important;
}

.khandwaCity.extension-4 .rowColony-container-11 #plot_75 .plot-item {
  height: 36px !important;
}

.khandwaCity.extension-4 .rowColony-container-11 #plot_82 .plot-item {
  height: 38px !important;
}

.khandwaCity.extension-4 .rowColony-container-12 {
  left: 655px;
  top: 86px;
}

.khandwaCity.extension-4 .rowColony-container-12 .plot-wrapper,
.khandwaCity.extension-4 .rowColony-container-13 .plot-wrapper,
.khandwaCity.extension-4 .rowColony-container-14 .plot-wrapper,
.khandwaCity.extension-4 .rowColony-container-15 .plot-wrapper {
  height: 23.5px;
}

.khandwaCity.extension-4 .rowColony-container-13 {
  left: 613px;
  top: 89px;
}

.khandwaCity.extension-4 .rowColony-container-13 #plot_131 {
  margin-top: 5px;
}

.khandwaCity.extension-4 .rowColony-container-13 .plot-item {
  height: 23.7px !important;
  width: 61px !important;
}

.khandwaCity.extension-4 .rowColony-container-14 {
  left: 595px;
  top: 90px;
}

.khandwaCity.extension-4 .rowColony-container-14 .plot-item {
  width: 68px !important;
  height: 24px !important;
}

.khandwaCity.extension-4 .rowColony-container-15 {
  left: 533px;
  top: 94px;
}

.khandwaCity.extension-4 .rowColony-container-16 .plot-item {
  left: 771px;
  top: -609px;
}

.khandwaCity.extension-4 .rowColony-container-16 #plot_121 .plot-item {
  height: 20px !important;
}

.khandwaCity.extension-4 .rowColony-container-16 #plot_122 .plot-item {
  height: 34px !important;
}

.khandwaCity.extension-4 .rowColony-container-16 {
  top: 85px;
  left: 468px;
}

.khandwaCity.extension-4 .rowColony-container-16 .plot-item,
.khandwaCity.extension-4 .rowColony-container-17 .plot-item,
.khandwaCity.extension-4 .rowColony-container-18 .plot-item,
.khandwaCity.extension-4 .rowColony-container-19 .plot-item,
.khandwaCity.extension-4 .rowColony-container-20 .plot-item {
  height: 31px !important;
  width: 61px !important;
}

.khandwaCity.extension-4 .rowColony-container-17 {
  left: 420px;
  top: 85px;
}

.khandwaCity.extension-4 .rowColony-container-18 {
  left: 303px;
  top: 85px;
}

.khandwaCity.extension-4 .rowColony-container-19 {
  left: 255px;
  top: 85px;
}

.khandwaCity.extension-4 .rowColony-container-20 {
  left: 140px;
  top: 85px;
}

.khandwaCity.extension-4 .rowColony-container-18 #plot_122 .plot-item {
  height: 28px !important;
}

.khandwaCity.extension-4 .rowColony-container-3 .plot-item img {
  margin-top: 1px;
  margin-left: 10px;
}

.khandwaCity.extension-4 .rowColony-container-5 .plot-item img {
  margin-top: -9px;
  margin-left: 2px;
}

.khandwaCity.extension-4 .rowColony-container-6 .plot-item img {
  margin-top: 6px;
  margin-left: -3px;
}

.khandwaCity.extension-4 .rowColony-container-6 #plot_36 .plot-item img,
.khandwaCity.extension-4 .rowColony-container-6 #plot_37 .plot-item img {
  margin-top: 13px;
  margin-left: -3px;
}

.khandwaCity.extension-4 .rowColony-container-8 .plot-item img {
  margin-top: -1px;
  margin-left: 2px;
}

.khandwaCity.extension-4 .rowColony-container-8 #plot_58 .plot-item img {
  margin-top: 2px;
  margin-left: -1px;
}

.khandwaCity.extension-4 .rowColony-container-9 .plot-item img {
  margin-top: 6px !important;
  margin-left: -2px !important;
}

.khandwaCity.extension-4 .rowColony-container-10 .plot-item img {
  margin-top: 8px;
  margin-left: -1px;
}

.khandwaCity.extension-4 .rowColony-container-11 .plot-item img {
  margin-top: 3px !important;
  margin-left: -3px !important;
}

.khandwaCity.extension-4 .rowColony-container-12 .plot-item img {
  margin-top: 1px !important;
  margin-left: 11px !important;
  width: 17px;
}

.khandwaCity.extension-4 .rowColony-container-13 .plot-item img {
  margin-top: 2px !important;
  margin-left: -3px !important;
}

.khandwaCity.extension-4 .rowColony-container-13 #plot_92 .plot-item img {
  margin-top: 13px !important;
}

.khandwaCity.extension-4 .rowColony-container-14 .plot-item img {
  margin-top: 3px !important;
  margin-left: -13px !important;
  width: 26px !important;
}

.khandwaCity.extension-4 .rowColony-container-14 #plot_111 .plot-item img,
.khandwaCity.extension-4 .rowColony-container-14 #plot_110 .plot-item img {
  margin-top: -9px !important;
}

.khandwaCity.extension-4 .rowColony-container-15 .plot-item img {
  margin-left: 12px !important;
  margin-top: -3px !important;
}

/* ================== */
.colony-container-home {
  display: flex;
  flex-direction: column;
  height: 40px;

  width: 100%;
}

.group-container-home123-1 .rowColony-container-1 {
  position: relative;
  top: -99px;
  left: 458px;
}

.group-container-home123-1 .rowColony-container-2 {
  position: relative;
  top: -74px;
  left: 547px;
}

.group-container-home123-1 .rowColony-container-3 {
  position: relative;
  top: -113px;
  left: 704px;
}

.group-container-home123-1 .rowColony-container-4 {
  position: relative;
  top: -221px;
  left: 800px;
}

/* End */

.aboutuscontainer {
  max-width: 1350px;
  width: 100%;
  margin: auto;
  padding: 80px 40px 0px 40px;
}

.aboutusorg {
  margin-top: 80px;
}

.aboutImageorg {
  height: 500px;
  border-radius: 10px;
}

.orgbox {
  padding: "0px 50px";
  display: flex;
  flex-direction: row;
  /* Default layout */
  gap: 20px !important;
}

@media (max-width: 991px) {
  .aboutuscontainer {
    padding: 60px 30px 0px 30px;
  }
}

@media (max-width: 776px) {
  .orgbox {
    flex-direction: column;
    gap: 0px !important;
  }

  .aboutImage {
    height: auto;
  }

  .aboutImageorg {
    height: 300px;
    border-radius: 10px;
  }

  .aboutusorg {
    margin-top: 65px;
  }
}

@media (max-width: 550px) {
  .aboutuscontainer {
    padding: 40px 20px 0px 20px;
  }

  .orgbox {
    flex-direction: column;
  }

  .aboutusorg {
    margin-top: 40px;
  }

  .aboutImage {
    height: auto;
  }
}

.highlightbottommargin {
  margin-bottom: 80px;
}

@media (max-width: 776px) {
  .highlightbottommargin {
    margin-bottom: 65px;
  }
}

@media (max-width: 500px) {
  .highlightbottommargin {
    margin-bottom: 60px;
  }
}

.fixedpopup {
  height: 430px;
  /* margin: auto; */
  /* width: 94% !important; */
  /* padding: 11px; */
  border-radius: 16px;
  overflow: hidden;
  /* margin-top: 30px; */
  /* margin-bottom: 30px; */
}

@media (max-width: 500px) {
  .fixedpopup {
    height: 150px;
  }
}

.project-card {
  height: 100%;
}

.projects-slider {
  padding-top: 10px;
  /* anything to ensure it's visible */
}

.slide-controls {
  display: flex;
  gap: 15px;
  justify-content: end;
  padding-right: 30px;
  padding-bottom: 25px;

  @media (max-width: 550px) {
    padding-right: 0px;
    padding-bottom: 10px;
  }
}

.slide-arrow {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #071c1f;
  cursor: pointer;
  transition: background 0.3s ease-in-out, transform 0.2s ease;
}

.slide-arrow:hover {
  background-color: var(--secondary-color);
  transform: scale(1.1);
}

.arrow-icon {
  color: white;
  font-size: 18px;
}

.project-card {
  background: white;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

.project-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.project-card .project-image {
  position: relative;
  height: 200px;
  margin-bottom: 10px;
}

.project-card .project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card .project-image .status-badge {
  position: absolute;
  top: 7px;
  right: 2px;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  background: #dc2253;
  color: white;
}

.project-card .project-image .status-badge.under-development {
  background: #dbeafe;
  color: #1e40af;
}

.project-card .project-image .status-badge.ready-to-move {
  background: #dcfce7;
  color: #166534;
}

.project-card .project-image .status-badge.pre-launch {
  background: #fef3c7;
  color: #92400e;
}

.project-card .project-content {
  padding: 10px;
}

.project-card .project-content .project-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.project-card .project-content .project-info .developer {
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 5px;
}

.project-card .project-content .project-info .location {
  display: flex;
  align-items: center;
  color: #4b5563;
  margin-bottom: 8px;
  font-size: 0.9375rem;
}

.project-card .project-content .project-info .location svg {
  margin-right: 0.5rem;
  color: var(--secondary-color);
}

.project-card .project-content .project-info .specs {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 12px;
}

.project-card .project-content .project-info .specs .spec-item {
  display: flex;
  align-items: center;
  color: #4b5563;
  font-size: 0.875rem;
}

.project-card .project-content .project-info .specs .spec-item svg {
  margin-right: 0.5rem;
  color: var(--secondary-color);
}

.project-card .project-content .project-info .price-tag {
  font-size: 0.9375rem;
  color: #4b5563;
}

.project-card .project-content .project-info .price-tag span {
  font-weight: 700;
  font-size: 1.25rem;
}

.project-card .project-content .project-footer .view-btn {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: var(--secondary-color);
  color: white !important;
  border: none;
  border-radius: 25px 0px 25px 0px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.project-card .project-content .project-footer .view-btn:hover {
  color: black;
  transform: scale(1.02);
}

.testicardpadding {
  padding: 30px;
}

@media (max-width: 500px) {
  .testicardpadding {
    padding: 15px;
  }
}

.map_scroll_right {
  width: 110px;
  display: none;
}

@media (max-width: 1075px) {
  .map_scroll_right {
    display: flex;
  }
}

.description-text {
  max-width: 1320px;
  margin: auto;
  padding: 0 20px;
  margin-bottom: 30px;
}

.description-text-p {
  font-size: 16px;
  line-height: 1.4;
  color: #555;
}

.error-text {
  color: var(--secondary-color);
  font-size: 14px;
  margin-top: 4px;
}

.truncate-10 {
  display: -webkit-box;
  -webkit-line-clamp: 10;
  /* change to 3 or more as needed */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ai-agent-chat-avatar {
  width: 50px !important;
  height: 50px !important;
}

.embedded-agent-container {
  right: 16px !important;
  bottom: 82px !important;
  z-index: 999 !important;
}

.icons svg path {
  stroke: #dc2253;
}

.icons svg {
  height: 34px;
  width: 26px;
}

.icons svg {
  height: 34px;
  width: 26px;
}

.listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.listing-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.listing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-header {
  position: relative;
}

.featured-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.sale-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--accent-color);
  color: var(--text-dark);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.property-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.card-body {
  padding: 0px 0px 8px 25px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.property-title {
  /* font-size: 2.5rem; */
  margin-bottom: 10px;
  font-weight: 800;
  text-transform: capitalize !important;
}

.property-address {
  color: var(--text-light);
  margin-bottom: 10px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}

.property-address svg {
  margin-right: 5px;
}

.property-details {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.detail-item {
  text-align: center;
}

.detail-value {
  font-size: 1.1rem;
  font-weight: 500;
}

.detail-label {
  font-size: 0.8rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 25px 25px;
}

.price {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary-color);
}

.price::before {
  content: "$";
}

.actions {
  display: flex;
  gap: 10px;
}

.btn {
  padding: 8px 15px;
  border-radius: 4px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-solid {
  border: 1px solid var(--primary-color);
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-solid:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.leading-1\.3 {
  line-height: 1.3;
  font-family:  ;
}

.shadow-box-shadow-1.bg-white {
  border-radius: 10px !important;
}

.effec-icon:hover .tf-icon svg {
  transform: rotateY(360deg);
}

/* .count_box_section
{
        background: #fef7f1 !important;
    padding: 28px 150px  !important;
    max-width: 100%  !important;
    padding-top: 42px;
} */
.uppercase.relative.text-white {
  border-radius: 14px;
  overflow: hidden;
}

.banner-title {
  display: none !important;
}

.values-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 8px 40px;
  position: relative;
}

.values-header {
  text-align: center;
  margin-bottom: 80px;
}

.values-header h1 {
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.values-header h1:after {
  content: "";
  position: absolute;
  width: 60%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  bottom: -15px;
  left: 20%;
  border-radius: 2px;
}

.values-header p {
  font-size: 1.2rem;
  color: var(--text);
  max-width: 700px;
  margin: 30px auto 0;
  opacity: 0.9;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
}

.value-column {
  display: flex;
  flex-direction: column;
  position: relative;
}

.value-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  z-index: 1;
}

.value-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, rgb(223 56 100), rgb(220, 34, 83));
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.value-icon {
  font-size: 2.8rem;
  color: rgb(220, 34, 83);
  margin-bottom: 25px;
  opacity: 0.9;
}

.value-card h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: rgb(223 56 100);
  margin-bottom: 20px;
  position: relative;
}

.value-card h2:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background: rgb(220 34 83 / 44%);
  border-radius: 3px;
}

.value-card p {
  margin: 25px 0;
  color: var(--text);
  font-weight: 400;
  font-size: 1.05rem;
}

.vertical-connector {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(to bottom,
      transparent 0%,
      rgb(220 34 83 / 44%) 20%,
      rgb(220 34 83 / 44%) 80%,
      transparent 100%);
  transform: translateX(-50%);
  z-index: 0;
}

.center-image {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.center-image img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  border-radius: 50%;
  border: 5px solid white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, rgb(220 34 83 / 0%), rgb(220 34 83 / 6%));
}

@media (max-width: 1200px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .vertical-connector {
    display: none;
  }

  .center-image {
    grid-column: 1;
    margin: 30px 0;
  }

  .value-column {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .values-header h1 {
    font-size: 2.5rem;
  }

  .value-card {
    padding: 30px;
  }
}

@media (max-width: 767px) {
  .header-right {
    display: none !important;
  }
}

@media (max-width: 600px) {
  .header-right .phone-number .icons {
    display: none;
  }

  .header-right .phone-number p {
    display: none;
  }

  .header-right .contactus-btn {
    display: none;
  }

  .header-right {
    margin-right: -15px !important;
  }

  .values-container {
    padding: 8px 1px !important;
  }

  .value-card {
    padding: 20px;
  }

  .value-card {
    margin: 30px auto 0px !important;
    margin-bottom: 0px !important;
  }
}

.luxury-stats {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 40px;
  position: relative;
}

.header-group {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.subtitle {
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 300;
  /* font-family: 'Montserrat', sans-serif; */
}

.title {
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}

.title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: var(--gold);
}

.stats-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.stat-item.active,
.stat-item:hover {
  border-radius: 16px;
  background-color: #dc2253;
  box-shadow: 0 1px 6px #0000002e;
}

.stat-item.active .stat-number,
.stat-item.active .elegant-stat-number,
.stat-item.active .stat-label {
  color: white !important;
}

.stat-item:hover .stat-number,
.stat-item:hover .elegant-stat-number,
.stat-item:hover .stat-label {
  color: white !important;
}

.stat-item {
  flex: 1;
  min-width: 250px;
  text-align: center;
  padding: 40px 20px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  position: relative;
}

.stat-number {
  font-size: 72px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 15px;
  /* font-family: 'Montserrat', sans-serif; */
}

.stat-number::after {
  /* content: "+"; */
  font-size: 36px;
  position: relative;
  top: -10px;
  margin-left: 5px;
}

.stat-label {
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #dc2253;
  /* font-family: 'Montserrat', sans-serif; */
  font-weight: 500;
  position: relative;
}

.stat-label::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 1px;
  background: var(--stone);
}

@media (max-width: 768px) {
  .luxury-stats {
    padding: 60px 20px;
  }

  .title {
    font-size: 36px;
  }

  .stats-container {
    flex-direction: column;
    gap: 60px;
  }

  .stat-item {
    padding: 30px 10px;
  }

  .stat-number {
    font-size: 60px;
  }
}

.content-project .content .item {
  white-space: pre !important;
}

.content-project .content {
  width: 100% !important;
}

.project-section {
  right: -867px !important;
}

.project-section.section-container .topicon {
  left: 32% !important;
}

/* ===== OUR OFFERINGS ===== */
.section {
  padding: 0px 10px 30px 10px;
  max-width: 1450px;
  margin: auto;
  text-align: center;
}

/* Card Layout */
.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.card {
  flex: 1 1 280px;
  background: #f9f9f9;
  padding: 20px 15px !important;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.card h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
  color: #333;
}

.card p {
  font-size: 0.95rem;
  color: #555;
}

/* ===== WHY CHOOSE US ===== */
.why-choose-us {
  background-color: #f7f9fc;
  padding: 60px 20px;
}

.why-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1260px;
  margin: 0 auto;
  gap: 40px;
  align-items: center;
}

.why-text {
  flex: 1 1 500px;
}

.why-text h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--secondary-color);
}

/* Reason Grid */
.reasons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.reason-card {
  display: flex;
  align-items: flex-start;
  background: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  gap: 10px;
}

.reason-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.reason-card p {
  margin: 0;
  font-size: 0.95rem;
  color: #444;
}

/* Image Column */
.why-image {
  flex: 1 1 400px;
  text-align: center;
  position: relative;
}

.why-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/* CTA Inside Why Choose Us */
.cta-inner {
  margin-top: 40px;
  padding: 30px;
  background: #4f46e5;
  color: white;
  border-radius: 12px;
  text-align: center;
}

.cta-inner h3 {
  margin-bottom: 15px;
  font-size: 1.6rem;
  color: white;
}

.cta-inner p {
  margin-bottom: 20px;
  font-size: 1rem;
  color: white;
}

.white-btn {
  background: white;
  color: #4f46e5;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: bold;
}

.white-btn:hover {
  background: #e4e4e4;
}

/* ===== FOOTER ===== */
.footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .why-container {
    flex-direction: column;
  }

  .reasons-grid {
    grid-template-columns: 1fr;
  }

  .why-image {
    display: none;
    margin-top: 20px;
  }

  .offerings-intro h1 {
    font-size: 2rem;
  }
}

.wculogo {
  width: 150px;
  height: auto;
  position: absolute;
  bottom: 30px;
  left: 384px;
}

/* ------FAQ */

.faq-section {
  background: linear-gradient(to bottom right, #f7f9fb, #e8eef5);
  padding: 60px 40px;
}

.faq-container {
  max-width: 1350px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.faq-left {
  flex: 1;
  min-width: 320px;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.faq-img {
  width: 100%;
  max-width: 600px;
  height: 530px !important;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.faq-img:hover {
  transform: scale(1.03);
}

.faq-right {
  flex: 1;
  min-width: 350px;
}

.faq-heading {
  font-size: 36px;
  color: rgb(220, 34, 83);
  font-weight: 800;
  margin-bottom: 10px;
}

.faq-subtext {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  height: 450px;
  overflow-y: scroll !important;
}

.faq-list::-webkit-scrollbar {
  display: none;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e3e3e3;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.faq-item.itemopen {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  cursor: pointer;
  background: #f9fafc;
  transition: background 0.3s;
}

.faq-question.openquestion {
  background-color: #f1f4f7;
}

.faq-question:hover {
  background-color: #f1f4f7;
}

.faq-question h3 {
  font-size: 18px;
  margin: 0;
  color: #222;
}

.arrow {
  font-size: 26px;
  color: #666;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  padding: 0 24px;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer.open {
  max-height: 300px;
  padding-bottom: 16px;
}

.faq-answer p {
  font-size: 16px;
  color: #555;
  padding: 16px 0;
  margin: 0;
  line-height: 1.6;
}

/* Responsive tweaks */
@media (max-width: 980px) {
  .faq-container {
    flex-direction: column;
    gap: 40px;
  }

  .faq-img {
    max-height: 450px;
    /* object-fit: cover; */
  }
}

@media (max-width: 600px) {
  .faq-section {
    padding: 70px 20px;
  }

  .faq-img {
    height: auto !important;
  }
}

/* ===================== */
/* Base Styles */
.hippo-enhanced-container {
  color: #333;
  line-height: 1.6;
  max-width: 1440px;
  margin: 30px auto;
}

/* Content Cards */
.content-cards-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-bottom: 50px;
  margin-top: 40px;
}

.content-card {
  padding: 10px 20px;
  border-radius: 10px;
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08); */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: white;
  /* border: 1px solid #e0e0e0; */
}

.content-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.residential-card {
  border-top: 4px solid var(--secondary-color);
}

.land-card {
  border-top: 4px solid var(--secondary-color);
}

.commercial-card {
  border-top: 4px solid var(--secondary-color);
}

.investment-card {
  border-top: 4px solid var(--secondary-color);
}

.card-icon {
  font-size: 47px;
  margin-bottom: 15px;
}

.content-card h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #1e293b;
}

.content-card p {
  color: #64748b;
  margin-bottom: 10px;
}

/* Responsive Design */
@media (min-width: 768px) {
  .content-cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .content-cards-container {
    grid-template-columns: repeat(4, 1fr);
  }

  .hippo-hero-section {
    padding: 80px 20px;
  }

  .hippo-hero-section h1 {
    font-size: 3rem;
  }
}

/* --------------------------------------- */
/* Trust Banner Styles */
.trust-banner {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
  color: white;
  /* padding: 3rem 1rem; */
  margin: 3rem 0;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
}

.trust-banner-container {
  max-width: 1300px;
  margin: 0 auto;
}

.trust-banner-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.trust-banner-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  color: var(--secondary-color);
}

.trust-banner-description {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  color: white;
}

.trust-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.trust-feature {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  backdrop-filter: blur(5px);
}

.trust-icon {
  font-size: 1.2rem;
  margin-right: 0.7rem;
  color: var(--secondary-color);
}

.trust-feature-text {
  font-weight: 500;
}

.trust-cta {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 12px;
  margin-top: 2rem;
}

.trust-cta-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: white;
}

.trust-cta-button {
  background: white;
  color: var(--secondary-color);
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-cta-button:hover {
  background: #f0f4ff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.cta-arrow {
  transition: transform 0.3s ease;
}

.trust-cta-button:hover .cta-arrow {
  transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .trust-banner {
    padding: 2rem 1rem;
  }

  .trust-banner-title {
    font-size: 1.7rem;
  }

  .trust-features {
    flex-direction: column;
    align-items: center;
  }

  .trust-feature {
    width: 100%;
    justify-content: center;
  }
}

/* ======== */
.trust-banner {
  background-image: url("https://images.unsplash.com/photo-1580587771525-78b9dba3b914?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: white;
  /* padding: 2.5rem 1rem;  */
  margin: 2rem 0;
  /* Slightly tighter */
}

.trust-banner-overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 2rem 1rem;
  /* Reduced padding */
}

.trust-banner-title {
  font-size: 2rem;
  /* Reduced from 2.5rem */
  font-weight: 700;
  margin-bottom: 1rem;
}

.trust-banner-description {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  /* Reduced spacing */
  line-height: 1.5;
  color: #e0e7ff;
}

.trust-features {
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.trust-feature {
  padding: 0.7rem 1.2rem;
  /* Tighter pill shape */
}

.trust-cta {
  padding: 1.2rem;
  margin-top: 1.5rem;
  /* Reduced */
}

.trust-cta-text {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.contact-heading {
  text-align: center;
  margin: 2rem 0;
  padding: 0 1rem;
}

.contact-title {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 2.25rem;
  font-weight: 600;
  color: #222;
  line-height: 1.3;
  margin: 0;
}

.contact-subtitle {
  font-weight: 400;
  color: #444;
  display: block;
  margin-top: 0.5rem;
}

/* Small screen adjustment */
@media (max-width: 640px) {
  .contact-title {
    font-size: 1.75rem;
  }
}

.trust-banner-subheading12 {
  font-size: 1rem;
  color: #e2e8f0;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.dholera-portal {
  padding: 0px;
  border-radius: 8px;
}

.property-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  column-gap: 14px;
  row-gap: 12px;
}

.property-card {
  display: flex;
  align-items: center !important;
  padding: 10px 11px;
  background: #f8fafc;
  border-radius: 6px;
  transition: all 0.2s ease;
  border-left: 2px solid transparent;
  border: 1px solid #ebe8e8;
}

.property-card:hover {
  border-left: 2px solid rgb(220, 34, 83);
}

.property-card .property-icon {
  width: 30px;
  height: 30px;
  min-width: 24px;
  background: rgb(220, 34, 83);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-size: 14px;
}

.property-title {
  font-size: 20px;
  color: #4a5568;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0px;
}

.hyperlink {
  color: rgb(220, 34, 83);
  /* text-decoration: underline; */
  display: inline;
}

.hyperlink:hover {
  text-decoration: underline;
}

.group-container4-1 {
  position: absolute;

  left: 600px;

  bottom: 0;
}

.group-container4-1 .rowColony-container-1 {
  margin-left: 93px;
  bottom: 953px;
  position: relative;
}

.group-container4-1 .rowColony-container-2 {
  margin-left: 95px;
  bottom: 906px;
  position: relative;
}

.group-container4-1 .rowColony-container-3 {
  margin-left: -20px;
  bottom: 947px;
  position: relative;
}

.group-container4-1 .rowColony-container-4 {
  margin-left: 0px;
  bottom: 867px;
  position: relative;
}

.group-container4-1 .rowColony-container-5 {
  margin-left: 0px;
  bottom: 827px;
  position: relative;
}

.hyperlink:hover {
  text-decoration: underline;
}

.group-container4-1 .rowColony-container-6 {
  margin-left: 0px;
  bottom: 741px;
  position: relative;
}

.group-container4-1 .rowColony-container-7 {
  margin-left: 0px;
  bottom: 703px;
  position: relative;
}

.group-container4-1 .rowColony-container-8 {
  margin-left: 0px;
  bottom: 603px;
  position: relative;
}

.group-container4-1 .rowColony-container-9 {
  margin-left: 0px;
  bottom: 582px;
  position: relative;
}

.group-container4-1 .rowColony-container-10 {
  margin-left: 0px;
  bottom: 497px;
  position: relative;
}

.group-container4-1 .rowColony-container-11 {
  margin-left: 0px;
  bottom: 459px;
  position: relative;
}

.group-container4-1 .rowColony-container-12 {
  margin-left: 0px;
  bottom: 375px;
  position: relative;
}

.group-container4-1 .rowColony-container-13 {
  margin-left: 0px;
  bottom: 339px;
  position: relative;
}

.group-container4-1 .rowColony-container-14 {
  margin-left: 0px;
  bottom: 246px;
  position: relative;
}

.group-container4-2 {
  position: absolute;

  left: 50px;

  bottom: 0;
}

.group-container4-2 .rowColony-container-15 {
  margin-left: 298px;
  bottom: 749px;
  position: relative;
}

.group-container4-2 .rowColony-container-16 {
  margin-left: 298px;
  bottom: 705px;
  position: relative;
}

.group-container4-2 .rowColony-container-17 {
  margin-left: 142px;
  bottom: 747px;
  position: relative;
}

.group-container4-2 .rowColony-container-18 {
  margin-left: 88px;
  bottom: 662px;
  position: relative;
}

.group-container4-2 .rowColony-container-19 {
  margin-left: 89px;
  bottom: 623px;
  position: relative;
}

.group-container4-2 .rowColony-container-20 {
  margin-left: 176px;
  bottom: 539px;
  position: relative;
}

.group-container4-2 .rowColony-container-21 {
  margin-left: 176px;
  bottom: 503px;
  position: relative;
}

.group-container4-2 .rowColony-container-22 {
  margin-left: 60px;
  bottom: 417px;
  position: relative;
}

.group-container4-2 .rowColony-container-23 {
  margin-left: 60px;
  bottom: 380px;
  position: relative;
}

.group-container4-2 .rowColony-container-24 {
  margin-left: 30px;
  bottom: 296px;
  position: relative;
}

.group-container4-2 .rowColony-container-25 {
  margin-left: 148px;
  bottom: 260px;
  position: relative;
}

.group-container4-2 .rowColony-container-26 {
  margin-left: 148px;
  bottom: 173px;
  position: relative;
}

.group-container4-2 .rowColony-container-27 {
  margin-left: 3px;
  bottom: 136px;
  position: relative;
}

.group-container4-2 .rowColony-container-28 {
  margin-left: 3px;
  bottom: 52px;
  position: relative;
}

.group-container5new-1 {
  position: absolute;

  left: 0px;

  bottom: 0;
}

.group-container5new-1 .rowColony-container-1 {
  margin-left: 535px;
  bottom: -830px;
  position: relative;
}

.group-container5new-1 .rowColony-container-2 {
  margin-left: 90px;
  bottom: -790px;
  position: relative;
}

.group-container5new-1 .rowColony-container-3 {
  margin-left: 541px;
  bottom: -815px;
  position: relative;
}

.group-container5new-1 .rowColony-container-4 {
  margin-left: 103px;
  bottom: -775px;
  position: relative;
}

.group-container5new-1 .rowColony-container-5 {
  margin-left: 542px;
  bottom: -811px;
  position: relative;
}

.group-container5new-1 .rowColony-container-6 {
  margin-left: 99px;
  bottom: -779px;
  position: relative;
}

.group-container5new-1 .rowColony-container-7 {
  margin-left: 543px;
  bottom: -791px;
  position: relative;
}

.group-container5new-1 .rowColony-container-8 {
  margin-left: 97px;
  bottom: -752px;
  position: relative;
}

.group-container5new-1 .rowColony-container-9 {
  margin-left: 672px;
  bottom: -781px;
  position: relative;
}

.group-container5new-1 .rowColony-container-10 {
  margin-left: 102px;
  bottom: -742px;
  position: relative;
}

.group-container5new-1 .rowColony-container-11 {
  margin-left: 672px;
  bottom: -768px;
  position: relative;
}

.group-container5new-1 .rowColony-container-12 {
  margin-left: 102px;
  bottom: -728px;
  position: relative;
}

.group-container5new-1 .rowColony-container-13 {
  margin-left: 542px;
  bottom: -758px;
  position: relative;
}

.group-container5new-1 .rowColony-container-14 {
  margin-left: 96px;
  bottom: -717px;
  position: relative;
}

.group-container5new-1 .rowColony-container-15 {
  margin-left: 541px;
  bottom: -744px;
  position: relative;
}

.group-container5new-1 .rowColony-container-16 {
  margin-left: 110px;
  bottom: -702px;
  position: relative;
}

.group-container5new-1 .rowColony-container-16 {
  margin-left: 110px;
  bottom: -702px;
  position: relative;
}

.group-container5new-1 .rowColony-container-17 {
  margin-left: 657px;
  bottom: -734px;
  position: relative;
}

.group-container5new-1 .rowColony-container-18 {
  margin-left: 114px;
  bottom: -694px;
  position: relative;
}

.group-container5new-1 .rowColony-container-19 {
  margin-left: 657px;
  bottom: -720px;
  position: relative;
}

.group-container5new-1 .rowColony-container-20 {
  margin-left: 115px;
  bottom: -678px;
  position: relative;
}

.group-container5new-1 .rowColony-container-21 {
  margin-left: 548px;
  bottom: -709px;
  position: relative;
}

.group-container5new-1 .rowColony-container-22 {
  margin-left: 111px;
  bottom: -670px;
  position: relative;
}

.group-container5new-1 .rowColony-container-23 {
  margin-left: 548px;
  bottom: -696px;
  position: relative;
}

.group-container5new-1 .rowColony-container-24 {
  margin-left: 111px;
  bottom: -659px;
  position: relative;
}

.group-container5new-1 .rowColony-container-25 {
  margin-left: 111px;
  bottom: -688px;
  position: relative;
}

.group-container5new-1 .rowColony-container-26 {
  display: flex;
  flex-direction: column !important;
  margin-left: 198px;
  bottom: -646px;
  position: relative;
}

.group-container5new-1 .rowColony-container-27 {
  display: flex;
  flex-direction: column !important;
  margin-left: 270px;
  bottom: -607px;
  position: relative;
}

.group-container5new-1 .rowColony-container-28 {
  display: flex;
  flex-direction: column !important;
  margin-left: 323px;
  bottom: -566px;
  position: relative;
}

.group-container5new-1 .rowColony-container-29 {
  display: flex;
  flex-direction: column !important;
  margin-left: 461px;
  bottom: -532px;
  position: relative;
}

.group-container5new-1 .rowColony-container-30 {
  display: flex;
  flex-direction: column !important;
  margin-left: 542px;
  bottom: -493px;
  position: relative;
}

.group-container5new-1 .rowColony-container-31 {
  display: flex;
  flex-direction: column !important;
  margin-left: 722px;
  bottom: -450px;
  position: relative;
}

.group-container5new-1 .rowColony-container-32 {
  display: flex;
  flex-direction: column !important;
  margin-left: 786px;
  bottom: -410px;
  position: relative;
}

.group-container5new-1 .rowColony-container-33 {
  display: flex;
  flex-direction: column !important;
  margin-left: 848px;
  bottom: -370px;
  position: relative;
}

.group-container5new-1 .rowColony-container-36 {
  margin-left: 539px;
  bottom: 296px;
  position: relative;
}

.group-container5new-1 .rowColony-container-37 {
  margin-left: 461px;
  bottom: 336px;
  position: relative;
}

.group-container5new-1 .rowColony-container-38 {
  margin-left: 539px;
  bottom: 315px;
  position: relative;
}

.group-container5new-1 .rowColony-container-39 {
  margin-left: 461px;
  bottom: 356px;
  position: relative;
}

.group-container5new-1 .rowColony-container-40 {
  margin-left: 539px;
  bottom: 176px;
  position: relative;
}

.group-container5new-1 .rowColony-container-41 {
  margin-left: 465px;
  bottom: 217px;
  position: relative;
}

.group-container5new-1 .rowColony-container-42 {
  margin-left: 539px;
  bottom: 201px;
  position: relative;
}

.group-container5new-1 .rowColony-container-43 {
  margin-left: 463px;
  bottom: 241px;
  position: relative;
}

.group-container5new-1 .rowColony-container-34 {
  display: flex;
  flex-direction: column !important;
  margin-left: 972px;
  bottom: 367px;
  position: relative;
}

.group-container5new-1 .rowColony-container-35 {
  display: flex;
  flex-direction: column !important;
  margin-left: 942px;
  bottom: 535px;
  position: relative;
}

.group-container-indira-1 {
  position: absolute;

  left: 600px;

  bottom: 0;
}

.group-container-indira-1 .rowColony-container-1 {
  margin-left: 3px;
  bottom: 167px;
  left: 97px;
  position: relative;
}

.group-container-indira-1 .rowColony-container-2 {
  margin-left: -4px;
  bottom: 0px;
  right: 564px;
  position: relative;
}

.group-container-indira-1 .rowColony-container-3 {
  margin-left: -4px;
  bottom: 215px;
  right: 566px;

  position: relative;
}

#plot_indra_3 {
  display: flex;
  justify-content: flex-end;
  padding-right: 25px;
}

.group-container-indira-1 .rowColony-container-4 {
  margin-left: -4px;
  bottom: 338px;
  right: 566px;

  position: relative;
}

#plot_indra_4 {
  display: flex;
  justify-content: flex-end;
  padding-right: 25px;
}

.group-container-indira-1 .rowColony-container-5 {
  margin-left: -4px;
  bottom: 553px;
  right: 567px;


  position: relative;
}

#plot_indra_5 {
  display: flex;
  justify-content: flex-end;
  padding-right: 25px;
}

.group-container-indira-1 .rowColony-container-6 {
  margin-left: -4px;
  bottom: 713px;
  right: 427px;


  position: relative;
}

#plot_indra_6 {
  display: flex;
  justify-content: center;
  align-items: flex-start;

  padding-top: 25px;
}

.group-container-indira-1 .rowColony-container-7 {
  margin-left: -4px;
  bottom: 753px;
  right: -106px;



  position: relative;
}

#plot_indra_7 {
  display: flex;
  justify-content: center;
  align-items: flex-start;

  padding-top: 25px;
}

.group-container-indira-1 .rowColony-container-8 {
  margin-left: -4px;
  bottom: 664px;
  right: -106px;



  position: relative;
}

#plot_indra_8 {
  display: flex;
  justify-content: center;
  align-items: flex-start;

  padding-top: 15px;
}


.hero-video-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
}


/* ---------- Responsive ---------- */


/* Mobile */
@media (max-width: 768px) {
  .hero-video-container {
    height: auto;

  }
}

/* Small phones */
@media (max-width: 480px) {
  .hero-video-container {
    height: auto;
  }
}

.HorizontalCards {
  position: relative;
  width: 100%;
  min-height: 420px;      /* enough for cards */
  padding: 0 0 40px 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  /* align-items: flex-end;*/
}

/* Viewport */
.cards-viewport {
  width: 100%;
  overflow: hidden;
}

/* Horizontal layout */
.cards-track {
  display: flex;
  gap: 30px;
  padding: 0 20px;
  will-change: transform;
}

/* Bigger cards */
.listing-card {
  min-width: 400px;
  max-width: 400px;
  flex-shrink: 0;
}

/* Remove extra vertical gaps */
.card-header img {
  height: 160px;
  object-fit: fill;
}

/* .HorizontalCards {
  width: 100%;
  height: 100vh;  
  overflow: hidden;

  display: flex;
  flex-direction: column;
} */

/* HEADER — TOP */
.horizontal-header {
  flex: 0 0 auto;
  padding: 80px 0 40px;
  text-align: center;
}

/* CARDS — BOTTOM */
.cards-viewport {
  flex: 1;                  /* takes remaining space */
  display: flex;
  align-items: flex-end;    /* cards sit at bottom */
  overflow: hidden;
  padding-bottom: 60px;
}

/* HORIZONTAL TRACK */
.cards-track {
  display: flex;
  gap: 30px;
  padding: 0 40px;
  will-change: transform;
}

/* CARD SIZE */
.listing-card {
  min-width: 400px;
  max-width: 400px;
  flex-shrink: 0;
}

.listing-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.listing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}


/* ===============================
   HIPPO ENHANCED CARDS
   =============================== */

.hippo-enhanced-container {
  margin-top: 60px;
}

.content-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

/* Card base */
.content-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 26px;
  transition: all 0.35s ease;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

/* Hover / Active */
.content-card:hover,
.content-card.active {
  background: #f2fbf8;
  /* light mint like image */
  transform: translateY(-8px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

/* Icons */
.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
  background: #f3f4f6;
}

.card-icon.land {
  background: #d1fae5;
  color: #047857;
}

.card-icon.home {
  background: #fee2e2;
  color: #b91c1c;
}

.card-icon.commercial {
  background: #dbeafe;
  color: #1d4ed8;
}

.card-icon.invest {
  background: #fef3c7;
  color: #92400e;
}

/* Title */
.content-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111827;
}

/* Short text (visible initially) */
.card-short {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

/* Hover text (hidden initially) */
.card-hover {
  font-size: 14px;
  color: #374151;
  line-height: 1.7;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Reveal on hover */
.content-card:hover .card-hover,
.content-card.active .card-hover {
  opacity: 1;
  max-height: 200px;
  margin-top: 10px;
}

/* Hide short text on hover */
.content-card:hover .card-short,
.content-card.active .card-short {
  display: none;
}

/* Learn more */
.learn-more {
  display: inline-block;
  margin-top: 14px;
  font-weight: 600;
  color: var(--primary-color);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.content-card:hover .learn-more,
.content-card.active .learn-more {
  opacity: 1;
}

.card-icon svg {
  width: 26px;
  height: 26px;
}

/* ===== Ideology Timeline Section ===== */

.ideology-section {
  padding: 80px 40px;
  background: #fafafa;
}

/* Header */
.ideology-badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 20px;
  background: rgba(220, 34, 83, 0.1);
  color: #dc2253;
  font-weight: 600;
  margin-bottom: 12px;
}

.ideology-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.ideology-subtitle {
  max-width: 600px;
  margin: 0 auto 60px;
  color: #6b7280;
  font-size: 16px;
}

/* Timeline */
.ideology-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

/* Connecting line */
.ideology-timeline::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(220, 34, 83, 0.4),
    transparent
  );
}

/* Steps */
.ideology-step {
  background: white;
  border-radius: 18px;
  padding: 40px 30px;
  text-align: left;
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
  position: relative;
  transition: all 0.35s ease;
}

.ideology-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.20);
}

/* Highlight middle step */
.ideology-step.highlight {
  border: 2px solid #dc2253;
}

/* Step number */
.step-count {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #dc2253;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.ideology-step h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #111827;
}

.ideology-step p {
  color: #4b5563;
  line-height: 1.7;
  font-size: 15px;
}

/* ===== Mobile: Vertical Timeline ===== */
@media (max-width: 900px) {
  .ideology-timeline {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .ideology-timeline::before {
    display: none;
  }

  .ideology-step {
    text-align: center;
  }
}

