.wow {
  visibility: hidden;
}

@-webkit-keyframes fade_top {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fade_top {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fade_top {
  -webkit-animation-name: fade_top;
  animation-name: fade_top;
}

.swiper-pagination-progressbar {
  background: rgb(0 0 0 / 3%);
}

@-webkit-keyframes slide_left {
  0% {
    left: 0%;
  }

  100% {
    left: -30%;
  }
}

@keyframes slide_left {
  0% {
    left: 0%;
  }

  100% {
    left: -30%;
  }
}

.slide_left {
  -webkit-animation-name: slide_left;
  animation-name: slide_left;
}

@-webkit-keyframes slide_right {
  0% {
    right: 0%;
  }

  100% {
    right: -30%;
  }
}

@keyframes slide_right {
  0% {
    right: 0%;
  }

  100% {
    right: -30%;
  }
}

.slide_right {
  -webkit-animation-name: slide_right;
  animation-name: slide_right;
}

@font-face {
  font-family: "Poppins-SemiBold";
  src: url("../fonts/poppins/Poppins-SemiBold.woff2") format("woff2"),
    url("../fonts/poppins/Poppins-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins-Black";
  src: url("../fonts/poppins/Poppins-Black.woff2") format("woff2"),
    url("../fonts/poppins/Poppins-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins-Bold";
  src: url("../fonts/poppins/Poppins-Bold.woff2") format("woff2"),
    url("../fonts/poppins/Poppins-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins-Light";
  src: url("../fonts/poppins/Poppins-Light.woff2") format("woff2"),
    url("../fonts/poppins/Poppins-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins-Medium";
  src: url("../fonts/poppins/Poppins-Medium.woff2") format("woff2"),
    url("../fonts/poppins/Poppins-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins-Regular";
  src: url("../fonts/poppins/Poppins-Regular.woff2") format("woff2"),
    url("../fonts/poppins/Poppins-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Baskervville-Regular";
  src: url("../fonts/baskervville/Baskervville-Regular.woff2") format("woff2"),
    url("../fonts/baskervville/Baskervville-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Baskervville-Italic";
  src: url("../fonts/baskervville/Baskervville-Italic.woff2") format("woff2"),
    url("../fonts/baskervville/Baskervville-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Baskervville-SemiBold";
  src: url("../fonts/baskervville/Baskervville-SemiBold.woff2") format("woff2"),
    url("../fonts/baskervville/Baskervville-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Switzer-Medium";
  src: url("../fonts/switzer/Switzer-Medium.woff2") format("woff2"),
    url("../fonts/switzer/Switzer-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Switzer-Regular";
  src: url("../fonts/switzer/Switzer-Regular.woff2") format("woff2"),
    url("../fonts/switzer/Switzer-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Switzer-Bold";
  src: url("Switzer-Bold.woff2") format("woff2"),
    url("Switzer-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

:root {
  /* colors */
  --primary-color: #191919;
  --secondary-color: #404040;
  --white-color: #ffffff;
  --pure-black-color: #000000;
  --highlight-color: #8e2827;
  --background-smoke: #fafbfc;
  --background-gray: #f5f5f5;
  --primary-highlight-color: #007b3a;
  --secondary-highlight-color: #0366d6;
  /* font-sizes */
  --section-big-font-size: 6rem;
  --banner-title-font-size: 5rem;
  --section-title-font-size-common: 3rem;
  --section-title-font-size: 2.5rem;
  --section-subtitle-font-size: 2rem;
  --paragraph-font-size: 1.5rem;
  --content-font-size: 1.15rem;
  --link-font-size: 1rem;
  /* font-families */

  /* --light-font-family: "Poppins-Light";
    --regular-font-family: "Poppins-Regular";
    --medium-font-family: "Poppins-Medium";
    --semibold-font-family: "Poppins-SemiBold";
    --bold-font-family: "Poppins-Bold";
    --black-font-family: "Poppins-Black"; */

  --semibold-font-family: "Baskervville-SemiBold";
  --regular-font-family: "Switzer-Regular";
  --medium-font-family: "Switzer-Medium";
  --bold-font-family: "Switzer-Bold";
  --Baskervville-Regular: "Baskervville-Regular";
  --Baskervville-Italic: "Baskervville-Italic";

  /* other */
  --common-transition: all 0.6s ease;
  --web-border-radius: 0.625rem;
  --mobile-border-radius: 0.6rem;
  --common-gap-size: 1rem;
  --small-gap-size: 1.5rem;
  --small-gap-sec-paregraph-size: 2.188rem;
  --header-link-gap-size: 2rem;
  --gap-size-2_5rem: 2.5rem;
  --medium-gap-size: 3.25rem;
  --medium-gap-3rem: 3rem;
  --medium-gap-4rem: 4rem;
  --gap-size-5rem: 5rem;
  --big-gap-size: 6rem;
}

/* Custom scrollbar for Webkit browsers (Chrome, Safari) */
::-webkit-scrollbar {
  width: 4px;
  /* Width of the vertical scrollbar */
  height: 4px;
  /* Height of the horizontal scrollbar */
}

/* Remove the up/down arrow buttons on the scrollbar */
::-webkit-scrollbar-button {
  display: none;
}

/* The scrollbar track (background of the scrollbar) */
::-webkit-scrollbar-track {
  background-color: transparent;
  /* Transparent background */
}

/* The draggable part of the scrollbar (thumb) */
::-webkit-scrollbar-thumb {
  background-color: var(--highlight-color);
  /* Color of the scrollbar thumb */
  border-radius: 2px;
  /* Rounded corners */
}

/* Scrollbar thumb on hover */
::-webkit-scrollbar-thumb:hover {
  background-color: var(--highlight-color);
  /* Darker color when hovered */
}

/* Custom scrollbar for Firefox */
* {
  scrollbar-width: thin;
  /* Thin scrollbar */
  scrollbar-color: var(--highlight-color) transparent;
  /* Thumb color and track color */
}

.semibold-fonts {
  font-family: var(--semibold-font-family);
}

.Baskervville-SemiBold {
  font-family: "Baskervville-SemiBold";
}

.Switzer-Regular {
  font-family: var(--regular-font-family);
}

.bold-fonts {
  font-family: var(--bold-font-family) !important;
}

.Baskervville-Regular {
  font-family: var(--Baskervville-Regular) !important;
}

.Baskervville-Italic {
  /* font-family: var(--Baskervville-Regular) !important; */
  font-family: var(--Baskervville-Italic) !important;
  font-style: italic;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  font-family: var(--regular-font-family);
  color: var(--primary-color);
}

html {
  height: auto;
  font-size: 16px;
  scroll-behavior: smooth;
}

* {
  line-height: 1.2;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  line-height: 1.2;
  width: 100%;
}

body.no-scroll-body {
  overflow-y: hidden;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  background-color: transparent;
  color: unset;
  outline: none;
  text-decoration: none;
  -webkit-transition: all ease-in-out 0.4s;
  -moz-transition: all ease-in-out 0.4s;
  -ms-transition: all ease-in-out 0.4s;
  -o-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}

a:focus,
a:hover {
  outline: 0;
  text-decoration: unset;
  color: unset;
}

img {
  max-width: 100%;
  transition: var(--common-transition);
  width: 100%;
  object-fit: cover;
  cursor: pointer;
  display: block;
}

.relative {
  position: relative;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

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

.p0 {
  padding: 0 !important;
}

.pt0 {
  padding-top: 0 !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

.w100 {
  width: 100% !important;
}

.w50 {
  width: 50% !important;
}

.w40 {
  width: 40% !important;
}

.w60 {
  width: 60% !important;
}

.w65 {
  width: 65% !important;
}

.w85 {
  width: 85% !important;
}

.w90 {
  width: 90% !important;
}

.wfc {
  width: fit-content !important;
}

.main-container-fluid {
  width: 91.66%;
  margin: 0 auto;
}

.medium-container {
  width: 87%;
  margin: 0 auto;
}

.main-container {
  width: 75%;
  margin: 0 auto;
}

.mini-container {
  width: 65%;
  margin: 0 auto;
}

.content_accordian {
  display: none;
}

.section-padding {
  padding: 10rem 0;
}

.section-padding-small {
  padding: 2rem 0;
}

.hover-enable {
  display: none;
}

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

.mobile-image {
  display: none;
}

.web-image {
  display: block;
}

div:focus-visible,
img:focus-visible,
button:focus-visible {
  outline: none;
  border: none;
}

.visible-tab-mobile {
  display: none !important;
}

.visible-mobile-only {
  display: none !important;
}

.flex-row {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}

.flex55 {
  flex-basis: 55%;
}

.flex50 {
  flex-basis: 50%;
}

.flex40 {
  flex-basis: 40%;
}

.flex25 {
  flex-basis: 25%;
}

.flex30 {
  flex-basis: 30%;
}

.flex35 {
  flex-basis: 35%;
}

.flex60 {
  flex-basis: 60%;
}

.flex65 {
  flex-basis: 65%;
}

.m0l {
  margin: 0 0 0 auto !important;
}

.m0r {
  margin: 0 auto 0 0 !important;
}

.m0auto {
  margin: 0 auto !important;
}

.ale {
  align-items: end;
}

.als {
  align-items: start;
}

.alc {
  align-items: center;
}

.j-c-s-b {
  justify-content: space-between;
}

.fwb {
  font-weight: bold;
}

.pointer-cursor {
  cursor: pointer;
}

.inner-flex {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.inner-flex.inner-flex-small {
  gap: var(--small-gap-size);
}

.inner-flex.small-gap-sec-paregraph-size {
  gap: var(--small-gap-sec-paregraph-size);
}

.inner-flex.inner-flex-smallest {
  gap: 0.875rem;
}

.inner-flex.inner-flex-medium {
  gap: var(--medium-gap-size);
}

.inner-flex.medium-gap-3rem {
  gap: var(--medium-gap-3rem);
}

.inner-flex.medium-gap-4rem {
  gap: var(--medium-gap-4rem);
}

.inner-flex.header-link-gap-size {
  gap: var(--header-link-gap-size);
}

.inner-flex.gap-size-2_5rem {
  gap: var(--gap-size-2_5rem);
}

.inner-flex.inner-flex-big {
  gap: var(--big-gap-size);
}

.inner-flex.gap-size-5rem {
  gap: var(--gap-size-5rem);
}

.big-gap {
  gap: var(--big-gap-size) !important;
}

.inner-flex.inner-flex-large {
  gap: 10rem;
}

.inner-flex.inner-flex-common {
  gap: var(--common-gap-size);
}

.inner-flex.inner-flex-center {
  text-align: center;
  align-items: center;
}

.white-color {
  color: var(--white-color) !important;
}

.black-color {
  color: var(--pure-black-color) !important;
}

.highlight-color {
  color: var(--highlight-color) !important;
}

.primary-highlight-color {
  color: var(--primary-highlight-color) !important;
}

.secondary-color {
  color: var(--secondary-color) !important;
}

.secondary-highlight-color {
  color: var(--secondary-highlight-color) !important;
}

/* fonts css */

.material-symbols-outlined {
  font-family: "Material Symbols Outlined" !important;
}

.banner-title h1,
.banner-title h1 span,
.banner-title h2,
.banner-title h2 span {
  font-size: var(--banner-title-font-size);
  /* font-family: var(--bold-font-    family); */
  font-family: "Baskervville-Regular";
}

.banner-title h1 span,
.banner-title h2 span {
  color: var(--secondary-color);
}

.section-big-font-size h1,
.section-big-font-size h1 span,
.section-big-font-size h2,
.section-big-font-size h2 span {
  font-size: var(--section-big-font-size);
  /* font-family: var(--bold-font-family); */
  font-family: var(--regular-font-family);
}

.section-big-font-size h1 span,
.section-big-font-size h2 span {
  color: #700a0a;
}

.section-title h1,
.section-title h1 span,
.section-title h2,
.section-title h2 span {
  font-size: var(--section-title-font-size);
  font-family: var(--Baskervville-Regular);
}

.section-title h1,
.section-title h2,
.section-title h1 span,
.section-title h2 span {
  color: var(--white-color);
}

.section-title-font-size-common h1,
.section-title-font-size-common h1 span,
.section-title-font-size-common h2,
.section-title-font-size-common h2 span {
  font-size: var(--section-title-font-size-common);
  font-family: var(--Baskervville-Regular);
}

.section-title-font-size-common h1,
.section-title-font-size-common h2 {
  color: var(--primary-color);
}

.section-title-font-size-common h1 span,
.section-title-font-size-common h2 span {
  color: var(--highlight-color);
  font-family: var(--Baskervville-Italic) !important;
  font-style: italic;
}

.section-content p,
.section-content p span {
  font-size: var(--content-font-size);
  line-height: 1.5;
}

.section-content p span {
  color: var(--secondary-color);
}

.section-paragraph p,
.section-paragraph p span {
  font-size: var(--paragraph-font-size);
  line-height: 1.5;
}

.section-paragraph p,
.section-paragraph p span {
  color: var(--pure-black-color);
}

.section-text p,
.section-text span,
.section-text p span {
  font-size: 1.25rem !important;
  line-height: 1.25;
}

.section-text p,
.section-text p span {
  color: var(--secondary-color);
}

.section-subtitle h4,
.section-subtitle h4 span {
  font-size: var(--section-subtitle-font-size);
  /* font-family: var(--semibold-font-family); */
  color: var(--primary-color);
}

.section-subtitle h4 span {
  color: var(--secondary-color);
}

.smallest-font p {
  font-size: 0.85rem;
}

.link-font-size a p,
.link-font-size a p span.material-symbols-outlined,
.link-font-size span,
.link-font-size p {
  font-size: var(--link-font-size);
}

.vardhman-timber-button {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.813rem 1.5rem;
  transition: var(--common-transition);
  /* border-radius: 0.5rem; */
  width: fit-content;
  justify-content: center;
  cursor: pointer;
}

.vardhman-timber-button p,
.vardhman-timber-button span {
  line-height: 1 !important;
}

.button-style-primary {
  border: 1px solid var(--primary-highlight-color);
  background-color: var(--primary-highlight-color);
}

.button-style-primary span,
.button-style-primary p {
  color: var(--white-color);
  transition: var(--common-transition);
  font-size: 1rem;
}

.button-style-primary:hover {
  border: 1px solid var(--primary-highlight-color);
  background-color: var(--white-color);
  transition: var(--common-transition);
}

.button-style-primary:hover span,
.button-style-primary:hover p {
  color: var(--primary-highlight-color);
  transition: var(--common-transition);
}

.button-style-primary2 {
  border: 1px solid var(--primary-highlight-color);
  background-color: transparent;
}

.button-style-primary2 span,
.button-style-primary2 p {
  color: var(--primary-highlight-color);
  transition: var(--common-transition);
  font-size: 1rem;
}

.button-style-primary2:hover {
  border: 1px solid var(--primary-highlight-color);
  background-color: var(--primary-highlight-color);
  transition: var(--common-transition);
}

.button-style-primary2:hover span,
.button-style-primary2:hover p {
  color: var(--white-color);
  transition: var(--common-transition);
}

.button-style-secondary {
  border: 1px solid var(--white-color);
  background-color: transparent;
}

.button-style-secondary span,
.button-style-secondary p {
  color: var(--white-color);
  transition: var(--common-transition);
  /* font-size: 1.15rem; */
}

.button-style-secondary:hover {
  border: 1px solid var(--white-color);
  background-color: var(--white-color);
  transition: var(--common-transition);
}

.button-style-secondary:hover span,
.button-style-secondary:hover p {
  color: var(--primary-color);
  transition: var(--common-transition);
}



.button-style-black {
  border: 1px solid var(--primary-color);
  background-color: transparent;
}

.button-style-black span,
.button-style-black p {
  color: var(--pure-black-color);
  transition: var(--common-transition);
  /* font-size: 1.15rem; */
}

.button-style-black:hover {
  border: 1px solid var(--pure-black-color);
  background-color: var(--pure-black-color);
  transition: var(--common-transition);
}

.button-style-black:hover span,
.button-style-black:hover p {
  color: var(--white-color);
  transition: var(--common-transition);
}



.button-style-white {
  border: 1px solid var(--white-color);
  background-color: var(--white-color);
}

.button-style-white span,
.button-style-white p {
  color: var(--primary-color);
  transition: var(--common-transition);
  font-size: 1.15rem;
}

.button-style-white:hover {
  border: 1px solid var(--white-color);
  background-color: transparent;
  transition: var(--common-transition);
}

.button-style-white:hover span,
.button-style-white:hover p {
  color: var(--white-color);
  transition: var(--common-transition);
}

/* CSS STarts here */

.header-wrapper {
  /* position: sticky; */
  position: fixed;
  top: 0;
  background-color: transparent;
  transition: var(--common-transition);
  top: 0rem;
  border-bottom: 0px solid var(--primary-color);
  left: 0;
  width: 100%;
  padding: 1rem 0rem;
  z-index: 99999;
}

.header-wrapper.webmenu_hidden {
  top: -100%;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  gap: var(--small-gap-size);
  align-items: center;
  padding-right: 0;
  z-index: 99;
  /* padding: 1rem 0rem; */
}

.header-links-ul ul {
  display: flex;
  align-items: center;
  /* gap: var(--medium-gap-size); */
  gap: var(--header-link-gap-size);
}

.header-links-ul ul li a,
.header-links-ul ul li span,
.header-links-ul ul li p {
  color: var(--white-color);
}

.header-links-ul ul li a {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  color: var(--primary-color);
}

.header-logo {
  width: 12.382rem;
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }

  100% {
    background-position: 1000px 0;
  }
}

.nav-toggle {
  cursor: pointer;
  display: none;
}

.mob-link-font-size {
  display: none;
}

.mobile-navigation-wrapper {
  display: none;
}

.form-input-icon.form-input-icon-left {
  left: 1rem;
}

.form-title-label {
  margin-bottom: 0.5rem;
}

.form-input-icon.form-input-icon-right {
  right: 1rem;
}

.form-control-vardhman-timber {
  padding: 1rem 2rem 1rem 3.5rem;
  border: 1px solid var(--highlight-color);
  resize: none;
  background-color: var(--white-color);
  margin: 0 !important;
  outline: none;
  line-height: 1;
  font-size: 1rem;
  width: 100%;
  font-family: var(--medium-font-family);
  border-radius: 0.5rem;
}

.form-control-vardhman-timber.form-control-vardhman-timber-search {
  padding: 1rem 3.5rem 1rem 2rem;
}

.form-input-icon {
  height: 24px;
  width: 24px;
  font-size: 24px;
  line-height: 24px;
  position: absolute;
  top: 1rem;
  transform: unset;
}

.form-input-icon.form-input-icon-search {
  right: 1rem;
}

.form-control-vardhman-timber:focus,
.form-control-vardhman-timber:focus-visible {
  border-color: var(--primary-color);
}

/* home page  */

.swiper-common-btn {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

/* .swiper-pagination.product-swiper-pagination.swiper-pagination-bullets {
  position: relative;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  z-index: 10;
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 3px;
}

span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  background: #000000b3;
} */

.swiper-scrollbar {
  height: 2px;
  width: 30%;
  margin: 0 auto;
  margin-top: 5rem;
}

.swiper-scrollbar.swiper-scrollbar-services .swiper-scrollbar-drag {
  background: #b5191c;

}

.swiper-common-btn>div.swiper-button-next.swiper-button-disabled,
.swiper-common-btn>div.swiper-button-prev.swiper-button-disabled {
  background-color: #b5191c66;
}

.swiper-common-btn>div.swiper-button-prev,
.swiper-common-btn>div.swiper-button-next {
  position: relative;
  top: unset;
  left: unset;
  right: unset;
  bottom: unset;
  margin: 0;
  transform: unset;
  background-image: unset;
  height: 3rem;
  width: 3rem;
  border-radius: 50%;
  background-color: #b5191c;
  display: flex;
  align-items: center;
  transition: var(--common-transition);
  opacity: 1;
  justify-content: center;
}

.swiper-common-btn>div img {
  width: 1.5rem;
  height: 1.5rem;
}

/* .homeBannerSwiper .slide-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-size: cover;
    background-position: center;
} */
.swiper-pagination.homeSwiperPagination {
  /* justify-content: start; */
  position: absolute;
  bottom: -30%;
  width: 95%;
  left: 50%;
  transform: translateX(-50%);
  /* max-width: calc(1920px - 160px); */
  display: flex;
  gap: 0.5rem;
  transform: rotate(90deg);
}

.swiper-pagination.homeSwiperPagination .swiper-pagination-bullet {
  background-color: #ffffff7a;
  border-radius: 1rem;
  position: relative;
  overflow: hidden;
  opacity: 1;
  height: 6px !important;
  width: 6px;
}

.swiper-pagination.homeSwiperPagination .swiper-pagination-bullet::after {
  content: "";
  width: 0;
  height: 100%;
  overflow: hidden;
  background-color: #fff;
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.1s linear;
}

.swiper-pagination.homeSwiperPagination .swiper-pagination-bullet-active.swiper-pagination-bullet-active {
  background-color: #ffffff20;
  /* width: 5rem; */
  width: 16.25rem;
  opacity: 1;
}

.swiper-pagination.homeSwiperPagination .swiper-pagination-bullet-active.swiper-pagination-bullet-active::after {
  width: 100%;
  transition: 3.5s linear;
}

.bannerText {
  align-items: start;
  text-align: left;
  bottom: 45%;
  left: 52%;
  transform: translateX(-50%);
  width: 95%;
  position: absolute;
  z-index: 9;
}

.bannerCard {
  width: 100%;
}

.vardhman-timber-sec2 {
  background-color: #1e1e1e;
}

.home-page-about-grid {
  display: grid;
  grid-template-columns: 30% 60%;
  /* align-items: center; */
  justify-content: space-between;
}

.top-border {
  /* border-top: 1px solid var(--white-color); */
  border-top: 1px solid var(--white-color);
}

.bottom-border-highlight-color {
  /* border-bottom: 1px solid var(--primary-color); */
  position: relative;
  text-decoration: none;
  display: inline-block;
}

.bottom-border-highlight-color::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background-color: var(--highlight-color);
  /* Use desired color */
  transition: width 0.3s ease-in-out;
}

a:hover .bottom-border-highlight-color::after {
  width: 100%;
}

a:hover .hover-tanform {
  transform: translateX(4px);
  transition: transform 0.3s ease;
}

.bottom-border-white {
  /* border-bottom: 1px solid var(--white-color); */
  position: relative;
  text-decoration: none;
  display: inline-block;
}

.bottom-border-white::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background-color: var(--white-color);
  /* Use desired color */
  transition: width 0.3s ease-in-out;
}

.scrolldiv:hover .bottom-border-white::after,
a:hover .bottom-border-white::after {
  width: 100%;
}

.ulDottedList {
  list-style: disc !important;
  padding-left: 1.5rem;
}

.home-sec2_about {
  position: absolute;
  left: 0;
  bottom: -42%;
  width: 23rem;
}

.bottom-border-sec2 {
  border-bottom: 1px solid var(--white-color);
}

.vardhman-home-section4 {
  background-color: #8e28271a;
}

/* .home-lagacy-grid {
    display: grid;
    grid-template-rows: 50% 50%;
    gap: 2rem;
} */
.home-lagacy-grid {
  display: grid;
  grid-template-columns: 30% 50%;
  justify-content: space-between;
}

.home-lagacy-grid>div:nth-child(2) {
  border-top: 1px solid var(--highlight-color);
}

.out-product-grid .product-image {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
}

.product-swiper .product-image {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
}

.out-product-grid .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--common-transition, 0.3s ease);
  aspect-ratio: 1.5;
}

.product-swiper .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--common-transition, 0.3s ease);
  aspect-ratio: 1.5;
}

.out-product-grid .inner-flex:hover img {
  transform: scale(1.1);
}

.product-swiper .inner-flex:hover img {
  transform: scale(1.1);
}

.out-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.our-product-text-padding {
  padding-left: 1.375rem;
}

.section7-text-abs {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 25%;
  padding-top: 1rem;
}

.vardhman-timber-home-section8 {
  background-color: #1e1e1e;
}

.vardhman-timber-home-section8-grid {
  display: grid;
  grid-template-columns: calc(30% - 5rem) calc(63% - 2rem);
  gap: 4rem;
  justify-content: space-between;
  align-items: center;
}

.vardhman-timber-home-section8-product-detail-grid {
  display: grid;
  grid-template-columns: calc(32% - 4rem) calc(50% - 4rem);
  gap: 8rem;
  /* justify-content: space-between; */
  align-items: center;
}

.vardhman-timber-home-section8-product-detail-grid .form-control {
  border-radius: 0px;
}

.vardhman-timber-home-section8-product-detail-grid label.error {
  color: #ff6666;
  /* color: #ffff; */
  font-size: 12px;
  position: absolute;
  top: calc(50% + 1.4rem);
  left: 0.6rem;
  z-index: 2;
  pointer-events: none;
}

.vardhman-timber-home-section8-product-detail-grid .product-detail-form-img img {
  aspect-ratio: 0.7;
}

.vardhman-timber-home-section8-product-detail-grid .form_button {
  width: fit-content;
  margin: 0;
}

/* footer  */
.footer-title-color {
  color: var(--primary-color) !important;
}

.footer-text-color:hover {
  color: var(--highlight-color) !important;
}

/* .footer-link-grid ul li:hover {
  list-style-type: disc !important;
  list-style-position: outside !important;
} */

.footer-link-grid ul li:hover p::after {
  content: '';
  display: inline-block;
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background-color: var(--primary-color);
  position: absolute;
  top: 37%;
  left: -18px;

}


.footer-logo {
  width: 21.188rem;
  margin: 0 auto;
}

.contactDetailFlex {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.contactDetailFlex span.material-symbols-outlined {
  font-size: 1.25rem;
  color: var(--secondary-color);
}

.footer-link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.footer-grid>div:nth-child(1) {
  flex-basis: 25%;
}

/* .footer-grid{
    border-bottom: 1px solid #D9D9D9;
} */
.footer-grid>div:nth-child(2) {
  flex-basis: 65%;
}

.top-footer-sec {
  display: flex;
  flex-direction: column;
  gap: 7.5rem;
}

.footer-inner-flex-main {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.social-icon-list-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-icon-list-footer li img {
  transition: filter 0.3s ease;
  width: 1.5rem;
}

/* .social-icon-list-footer li:hover img {
  filter: invert(12%) sepia(91%) saturate(743%) hue-rotate(341deg) brightness(94%) contrast(101%);
} */

.social-icon-list-footer li:hover img {
  filter: invert(0%) sepia(181%) saturate(616%) hue-rotate(319deg) brightness(58%) contrast(101%);
}


.footer-bottom-sec {
  /* border-bottom: 1px solid #D9D9D9; */
  border-top: 1px solid #d9d9d9;
  padding-top: 2rem;
  padding-bottom: 2.5rem;
}

.manu-accordian-downarrow {
  display: block;
}

.manu-accordian-uparrow {
  display: none;
}

.accordion_click.active .manu-accordian-downarrow {
  display: none;
}

.accordion_click.active .manu-accordian-uparrow {
  display: block;
}

.accordion_click {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #707070;
}

/* .footer-link-grid ul li.active_page{
  list-style-type: disc !important;
  list-style-position: outside !important;
} */

/* .footer-link-grid ul li.active_page{
  background-color: #000000;
} */

.footer-link-grid ul li.active_page::after {
  content: '';
  /* Required */
  display: inline-block;
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background-color: var(--primary-color);
  position: absolute;
  top: 37%;
  left: -18px;
}


.footer-link-grid ul li {
  width: fit-content;
  position: relative;
}

.footer-link-grid ul li.active_page a p {
  color: #1e1e1e !important;
  /* font-weight: bold; */
}

.footer-bottom-left p {
  color: #707070 !important;
}

.footer-bottom-left p a:hover {
  color: var(--primary-color) !important;
}

/* .whatsapp-icon {
    position: fixed;
    bottom: 2.799rem;
    right: 2.799rem;
    width: 2.728rem;
    z-index: 99999;
    cursor: pointer;
} */

@keyframes grow {
  0% {
    transform: scale(1, 1);
    opacity: 1;
  }

  100% {
    transform: scale(1.8, 1.8);
    opacity: 0;
  }
}

.whatsapp-btn {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  width: 3rem;
  z-index: 999;
}

.whatsappbutton .circle {
  position: absolute;
  top: 0;
  left: 0;
  /* -webkit-transform: translate(-50%, -50%); */
  /* transform: translate(-50%, -50%); */
  width: 3rem;
  height: 3rem;
  background-color: #c7c8cc;
  color: #fff;
  border-radius: 50%;
  opacity: 0.5;
  z-index: -1;
}

.whatsappbutton .circle::after {
  background: rgba(200, 199, 204);
}

.whatsappbutton .circle::before {
  background: rgba(200, 199, 204);
  /* -webkit-animation-delay: -.5s; */
  animation-delay: -0.5s;
}

.whatsappbutton .circle::after,
.whatsappbutton .circle::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  z-index: -1;
  /* -webkit-animation: 1s ease-in-out infinite grow; */
  animation: 1s ease-in-out infinite grow;
}

.content_accordian ul {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.content_accordian ul li {
  width: fit-content;
}

/* ----------- footer end --------------- */

/* .components_title_content {
  opacity: 0;
} */

/* .components_title_content.active {
  opacity: 1;
  transition: var(--common-transition);
} */

.components_title_content p {
  color: #700a0a !important;
}

.components_title_text.active {
  opacity: 1;
  color: #700a0a !important;
  transition: var(--common-transition);
}

/* .components_title_text h2 {
  color: #700a0a1a;
  opacity: 10%;
} */

.components_title_text.active h2 {
  color: #700a0a !important;
}

#imageBox {
  display: flex;
  gap: 1rem;
}

#imageBox img {
  height: 28.188rem;
}

.home-sec5-grid-item1 {
  width: 65%;
  transition: var(--common-transition);
}

.home-sec5-grid-item2 {
  width: 45%;
  transition: var(--common-transition);
}


/* .video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  border-radius: 5px;
  cursor: pointer;
  z-index: 2;
} */

/* #imageBox:hover .home-sec5-grid-item1:hover {
  width: 65%;
  transition: var(--common-transition);
}

#imageBox:hover .home-sec5-grid-item1:hover~.home-sec5-grid-item2 {
  width: 35%;
  transition: var(--common-transition);
}

#imageBox:hover .home-sec5-grid-item2:hover {
  width: 80%;
  transition: var(--common-transition);
}

#imageBox:hover .home-sec5-grid-item2:hover~.home-sec5-grid-item1 {
  width: 20%;
  transition: var(--common-transition);
} */

.sec7-bg-img {
  background-image: url(../images/aerial-view-container-cargo-ship-sea1.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100svh;
}

/* product-listing-page start  */

.product-listing-banner-text {
  align-items: start;
  text-align: left;
  bottom: 2.5rem;
  left: 52%;
  transform: translateX(-50%);
  width: 95%;
  position: absolute;
  z-index: 9;
}

.product-listing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--medium-gap-3rem);
}

.product-listing-grid .product-image {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  /* aspect-ratio: 1.6; */
}

.product-listing-grid .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--common-transition, 0.3s ease);
  aspect-ratio: 1.5;
  /* fallback if variable not set */
}

.product-listing-grid .product-image:hover img,
.product-listing-grid .inner-flex:hover img {
  transform: scale(1.1);
}

/* product-listing-page end  */

/* product-detail-page  start*/

.product-detail-banner-overly {
  top: 0;
  height: 100%;
  transition: var(--common-transition);
  z-index: 1;
  position: absolute;
  width: 100%;
  left: 0;
  background-color: #00000048;
}

.vardhman-timber-product-detail-sec2 .home-sec2_about {
  position: absolute;
  left: 0;
  bottom: -4%;
  width: 23rem;
}

.buton-flex-gap {
  display: flex;
  align-items: center;
  gap: 2.188rem;
}

.detail-sec2-bottom-border>.inner-flex>.flex-row:nth-of-type(1),
.detail-sec2-bottom-border>.inner-flex>.flex-row:nth-of-type(2),
.detail-sec2-bottom-border>.inner-flex>.flex-row:nth-of-type(3) {
  padding-bottom: 1.5rem;
  position: relative;
  /* needed for pseudo-element positioning */
}

.detail-sec2-bottom-border>.inner-flex>.flex-row:nth-of-type(1)::after,
.detail-sec2-bottom-border>.inner-flex>.flex-row:nth-of-type(2)::after,
.detail-sec2-bottom-border>.inner-flex>.flex-row:nth-of-type(3)::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 95%;
  border-bottom: 1px solid #ffffff21;
}

.product-detail-sec-bg {
  background-color: #fafafa !important;
}

.teak-table {
  width: 100%;
  border-collapse: collapse;
}

.teak-table thead th {
  background-color: var(--highlight-color);
  color: var(--white-color);
  padding: 1.5rem;
  font-weight: bold;
}

/* .teak-table tbody tr:nth-child(2) td {
  border-bottom: none;
  } */

/* .teak-table tbody tr:last-child td {
  border-bottom: none;
} */


.teak-table tbody tr:nth-child(2) td:first-child {
  border-bottom-left-radius: 12px;
}

.teak-table tbody tr:nth-child(2) td:last-child {
  border-bottom-right-radius: 12px;
}

.teak-table thead th:first-child {
  border-top-left-radius: 12px;
}

.teak-table thead th:last-child {
  border-top-right-radius: 12px;
}

.teak-table thead th {
  font-size: 1.125rem;
}

.teak-table td,
.teak-table th {
  border-bottom: 1px solid #ddd;
  padding: 10px;
  text-align: center;
  vertical-align: middle;
  font-size: 1.063rem;
  font-weight: bold;
}

.teak-table tbody {
  background-color: var(--white-color);
}

.length-row-box {
  background-color: #8e28271a;
  padding: 10px;
  text-align: center;
  color: var(--highlight-color);
  font-weight: 600;
  border-radius: 12px;
}

.peroduct-detail-sec-bg {
  background-image: url(../images/product-detail-sec-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.dressed-table {
  border-collapse: separate;
  border-spacing: 0;
  text-align: center;
  width: 80%;
  margin: 0 auto;
}

.dressed-table tbody {
  background-color: var(--white-color);
}

.dressed-table thead th {
  background-color: var(--highlight-color);
  color: var(--white-color);
  padding: 1.375;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
}

.dressed-table thead th {
  font-size: 1.125rem
}

.dressed-table td,
.dressed-table th {
  border: 1px solid #1b191833;
  padding: 1.375rem;
  vertical-align: middle;
  font-size: 1.063rem;
  font-weight: bold;
}

.dressed-table thead th:first-child {
  border-top-left-radius: 12px;
}

.dressed-table thead th:last-child {
  border-top-right-radius: 12px;
}

.dressed-table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 12px;
}

.dressed-table tbody .length-cell {
  border-bottom-right-radius: 12px;
}

.detail-section5-text-abs {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 25%;
}

.vardhman-timber-home-section-categories {
  background-color: #f8f8f8;
}

.categories-text-pading>div:nth-child(1),
.categories-text-pading>div:nth-child(2),
.categories-text-pading>div:nth-child(3) {
  padding: 2.5rem 4rem;
  background-color: var(--white-color);
  border-radius: 12px;
}

.detail-parallax-sec {
  /* background-image: url(../images/beautiful-mountain-forest-landscape1.jpg); */
  /* background-image: url(../images/beautiful-mountain-forest-landscape1.jpg); */
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100svh;
}

.product-detail-sec6-sticky {
  position: sticky;
  top: 10%;
}

/* product-detail-page  end */

/* ----- .contact us start --------- */

.contact-bg {
  background-color: #fafafa;
}

.contact_section {
  max-width: 75%;
  margin: 0 auto;
  display: flex;
  /* flex-wrap: wrap; */
  background-color: #8e2827;
  border-radius: 12px;
  padding: 5rem;
  gap: 5.5rem;
  /* overflow: hidden; */
}

.contact_section-bg {
  position: absolute;
  left: 47%;
  width: 23%;
  top: 61%;
  transform: translate(-50%, -50%);
  /* z-index: 4; */
}

.contact_info_box {
  flex: 1 1 35%;
  background-color: #600e0e;
  padding: 2.5rem;
  border-radius: 10px;
}

.contact_info_box>div:nth-child(1) {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #ffffff66;
}

.contact_info_box>div:nth-child(2) {
  padding-top: 1.25rem;
}

.contact_form {
  flex: 1 1 60%;
  display: flex;
  flex-direction: column;
}

.input_wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
}

.phone_input_group {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.phone_input_group .flag {
  position: absolute;
  display: block;
  left: 1rem;
}

.phone_input_group .flag span {
  font-size: 1.25rem;
}

.phone_input_group input {
  flex: 1;
}

.back_marque {
  position: absolute;
  /* z-index: 1; */
  top: 50%;
  transform: translateY(-50%);
}

.contact_section,
.contact_info_box {
  position: relative;
  z-index: 3;
}

.contect-us-hover a:hover {
  opacity: 0.5;
  transition: var(--common-transition);
}

@-webkit-keyframes slide_left {
  0% {
    left: 0;
  }

  100% {
    left: -30%;
  }
}

@keyframes slide_left {
  0% {
    left: 0;
  }

  100% {
    left: -30%;
  }
}

.slide_left {
  -webkit-animation-name: slide_left;
  animation-name: slide_left;
}

@-webkit-keyframes slide_left_infi {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-80%);
  }
}

@keyframes slide_left_infi {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-80%);
  }
}

.slide_left_infi {
  -webkit-animation-name: slide_left_infi;
  animation-name: slide_left_infi;
  animation-duration: 300s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@-webkit-keyframes slide_right {
  from {
    transform: translateX(70vw);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slide_right {
  from {
    transform: translateX(70vw);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.slide_right {
  -webkit-animation-name: slide_right;
  animation-name: slide_right;
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@keyframes slide_right_infi {
  from {
    transform: translateX(-80%);
  }

  to {
    transform: translateX(0%);
  }
}

.slide_right_infi {
  -webkit-animation-name: slide_right_infi;
  animation-name: slide_right_infi;
  animation-duration: 300s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.back_marque .slide_left_infi,
.back_marque .slide_right_infi {
  display: flex;
  text-wrap: nowrap;
  align-items: center;
  list-style: none;
  gap: 2rem;
}

.back_marque .slide_left_infi li h1 {
  font-size: 4rem;
  color: #8e2827;
  opacity: 0.4;
  font-family: "Baskervville-Regular";
}

.back_marque .slide_right_infi li h1 {
  font-size: 4rem;
  color: #8e2827;
  font-family: "Baskervville-Regular";
}

/* ----- .contact us end --------- */

/* ------- about page start -----------  */

.about-us-section5-text-abs {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 35%;
  padding-top: 1rem;
}

.about-us-sec5-bg-img {
  background-image: url(../images/interior-design-zoom-calls-with-chair1.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100svh;
}

/* ------- about page end -----------  */

/* form css */

.common-list-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all ease 0.4s;
  background: rgb(0, 0, 0);
  background: -moz-linear-gradient(180deg, #00000001 25%, #00000060 100%);
  background: -webkit-linear-gradient(180deg, #00000001 25%, #00000060 100%);
  background: linear-gradient(180deg, #00000001 25%, #00000060 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00000060", endColorstr="#00000000", GradientType=1);
  z-index: 0;
}

.common-banner-title-abs {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
}

.page-list-2-col-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--medium-gap-size);
  align-items: start;
}

.form_wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.form_wrapper>div:nth-child(5),
.form_wrapper>div:nth-child(4),
.form_wrapper>div:nth-child(1) {
  grid-area: span 1 / span 2;
}

.form-control {
  position: relative;
  border-radius: 0;
  /* font-size: var(--link-font-size); */
  font-size: 1.25rem;
  border: 0;
  border-bottom: 1px solid #ffffff66;
  /* border-radius: 7px; */
  width: 100%;
  height: unset !important;
  resize: none;
  /* border-radius: 0.5rem; */
  /* padding: 1.25rem 0; */
  padding: 1rem 0 1rem 0.6rem;
  font-family: var(--jost-medium-family);
  background-color: unset;
  -webkit-box-shadow: unset;
  box-shadow: unset;
  color: var(--white-color);
}

/* .form-icon-input {
    border-bottom: 1px solid #ffffff16;
} */

.upload-button-wrapper-input {
  position: relative;

  z-index: 2;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  padding: 1.25rem 1.5rem;
}

.contact_lable {
  position: relative;
}

.contact_lable .contact-form {
  padding-left: 9.5rem !important;
}

.conatct_number_input {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  /* padding: 1.25rem 1.5rem; */
}

form .md-lable.contact_code,
form .md-lable.contact_code #contact_no {
  left: 7.5rem;
}

.select_apr .fa-icon {
  position: absolute;
  top: 50%;
  right: 20px;
  font-size: 22px;
  transform: translateY(-50%);
}

.md-lable {
  color: var(--white-color);
  text-transform: capitalize;
  padding: 4px 6px;
  position: absolute;
  top: 50%;
  transition: all 0.1s ease;
  transform: translateY(-50%);
  left: 0;
  /* font-size: var(--link-font-size); */
  font-family: var(--regular-font-family);
  line-height: 1;
  /* cursor: pointer; */
  pointer-events: none;
  /* background-color: white!important; */
}

.contact_lable input:focus-visible~label.md-lable,
.contact_lable select:focus-visible~label.md-lable,
.contact_lable textarea:focus-visible~label.md-lable,
.contact_lable input.not_required~label.md-lable,
.contact_lable select.not_required~label.md-lable,
.contact_lable textarea.not_required~label.md-lable {
  transition: all 0.1s ease;
  top: 5%;
  transform: translateY(-50%);
  left: 0.3rem;
  /* background: var(--white-color); */
  z-index: 5;
  /* color: var(--black-color); */
  font-size: 12px;
  /* display: none !important; */
}

.contact_lable input.ng-not-empty~label.md-lable,
.contact_lable textarea.ng-not-empty~label.md-lable,
.contact_lable select.ng-not-empty~label.md-lable {
  transition: all 0.1s ease;
  top: 5%;
  transform: translateY(-50%);
  left: 0.3rem;
  /* background: var(--white-color); */
  z-index: 5;
  /* color: var(--black-color); */
  /* font-size: 14px; */
  font-size: 12px;
  /* display: none !important; */
}

.default_lable {
  transition: all 0.1s ease !important;
  /* top: 5% !important; */
  transform: translateY(-50%) !important;
  left: 0.3rem !important;
  /* background: var(--white-color) !important; */
  z-index: 5 !important;
  color: var(--black-color) !important;
  /* font-size: 14px !important; */
}

.select_apr select {
  -webkit-appearance: none;
  appearance: none;
}

.form-control:focus,
.form-control:focus-visible {
  border-color: var(--white-color);
  outline: 0;
  -webkit-box-shadow: unset !important;
  box-shadow: unset !important;
}

.form-control.error~label {
  /* color: #ff0000 !important; */
  display: block !important;
  text-transform: capitalize !important;
}

label.error {
  position: absolute;
  margin-top: 0.7rem;
  display: block;
  padding-left: unset;
  font-size: 0.9rem;
  /* color: #ff0000; */
  color: var(--white-color);
  left: 0;
  display: none !important;
}

.contact_lable.commentbox .md-lable {
  top: 2rem;
}

.display_country_code {
  width: 35px;
}

.contact_country_flag img {
  width: 1.688rem;
  border-radius: 3px;
}

.country_code_data {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 5px;
  /* font-size: var(--moblink-size); */
  justify-content: center;
  /* background-color: var(--white-color); */
  border-radius: 2.5rem;
  width: fit-content;
  padding: 0.75rem 1rem;
}

.country_code_list_data ul {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.country_code_list_data ul li {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  transition: all ease 0.2s;
}

.country_code_list_data ul li:hover {
  background-color: #dddddd;
}

.country_code_list_data li>div {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.country_code_list_data {
  position: absolute;
  top: 100%;
  left: 0;
  height: 40vh;
  overflow-y: scroll;
  width: 300px;
  z-index: 99999;
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
  border: 1px solid #999999;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  font-size: 16px;
}

.search_c-code {
  padding: 0 1rem;
  padding-bottom: 0.5rem;
}

.search_c-code input {
  position: relative;
  border-radius: var(--border-radius);
  border: 1px solid #999999;
  width: 100%;
  padding: 0.7rem;
}

.country_code_overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  display: none;
}

.country_code_overlay.code_overlay {
  display: block;
  /* z-index: 999; */
}

.country_code_list_data {
  display: none;
}

.country_code_list_data.active {
  display: block;
}

.country_code_list_data img {
  width: 25px !important;
}

/* 

.form_button button span {
  font-size: 1rem;
}

.form_button button p {
  position: relative;
  display: inline-block;
}

.form_button button p::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  transition: width 0.3s ease-in-out;
  border-bottom: 1px solid var(--white-color);
}

.form_button button:hover p::after {
  width: 100%;
}
.form_button button {
  background-color: transparent;
  border: none;
  outline: none;
} */

.form_button button:hover span {
  transition: var(--common-transition);
  transform: translateX(3px);
}

.form_button button p,
.form_button button span {
  font-size: 1.25rem;
}

.form_button {
  width: fit-content;
  margin: 0 auto;
}

/* ----   */

/* .scroll-container {
    height: 100vh;
    /* Enough space for scrolling 
    position: relative;
} */

#animatedSection {
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 50px;
  padding: 40px;
  transition: all 0.5s ease-in-out;
}

.animate-item {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
  font-size: 2rem;
  transition: all 0.5s ease-in-out;
}

.animate-item.hiddenAnimate {
  opacity: 0;
  transform: translateY(-50px);
  pointer-events: none;
}

/* .animate-item.active {
    border-left: 4px solid #007bff;
    padding-left: 10px;
} */

.animate-item .components_title_text h2 {
  color: var(--highlight-color);
}

.animate-item.active .components_title_content p,
.animate-item.active .components_title_content {
  color: var(--highlight-color);
  opacity: 1;
}

/* ----- inquiry pop-up start -----  */

.inquiry_popup {
  padding: 3rem 1.5rem;
  position: fixed;
  top: 0;
  right: -100%;
  width: 30%;
  background: var(--white-color);
  /* background-color: #000000; */
  /* background-color: var(--highlight-color); */
  height: 100%;
  overflow-y: scroll;
  scrollbar-width: none;
  z-index: 99999;
  transition: var(--common-transition);
}

.inquiry_popup.inqury_active {
  right: 0%;
}

.inquiry_popup .form_wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--gap-size-2_5rem);
}

.inquiry_popup .close_icon {
  display: flex;
  margin: 0 0 0 auto;
  width: fit-content;
  cursor: pointer;
}

.inquiry_popup .contact_lable input.ng-not-empty~label.md-lable,
.inquiry_popup .contact_lable textarea.ng-not-empty~label.md-lable,
.inquiry_popup .contact_lable select.ng-not-empty~label.md-lable {
  transition: all 0.1s ease;
  top: 5%;
  transform: translateY(-50%);
  left: 0.3rem;
  z-index: 5;
  font-size: 16px;
}

.inquiry_popup .contact_lable input:focus-visible~label.md-lable,
.inquiry_popup .contact_lable select:focus-visible~label.md-lable,
.inquiry_popup .contact_lable textarea:focus-visible~label.md-lable,
.inquiry_popup .contact_lable input.not_required~label.md-lable,
.inquiry_popup .contact_lable select.not_required~label.md-lable,
.inquiry_popup .contact_lable textarea.not_required~label.md-lable {
  font-size: 16px;
}

.inquiry_popup .form-control {
  border-bottom: 1px solid #00000073;
  padding: 1rem 0 1rem 0.6rem;
  color: var(--pure-black-color);
}

.inquiry_popup .md-lable {
  color: var(--pure-black-color);
}

.inquiry_popup label.error {
  color: #ff0000;
}

/* .inquiry_popup .form_button button p::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  transition: width 0.3s ease-in-out;
  border-bottom: 1px solid var(--highlight-color);
}

.inquiry_popup .form_button button:hover p::after {
  width: 100%;
} */

.inquiry_popup .form-control:focus,
.inquiry_popup .form-control:focus-visible {
  border-color: var(--pure-black-color);
}

.inquiry-popup-overlay {
  height: 100%;
  width: 100%;
  /* display: none; */
  position: fixed;
  top: 0;
  left: 0;
  background-color: #00000030;
  z-index: 999;
  backdrop-filter: blur(4px);

}

/* ----- inquiry pop-up end -----  */


/* CFT calculator start */

.caclculator_wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.calculator-control {
  border: 0;
  border-bottom: 1px solid #ffffff66;
  /* border-radius: 7px; */
  width: 100%;
  font-size: 1.25rem;
  padding: 1rem 0 1rem 0.6rem;
  font-family: var(--jost-medium-family);
  background-color: transparent;
  box-shadow: none;
  color: var(--white-color);
  resize: none;
  outline: none;
}

.calculator-control:focus,
.calculator-control:focus-visible {
  border-color: var(--white-color);
}

.calculator_lable {
  position: relative;
  /* margin-bottom: 2.2rem; */
}

.calculator_md-lable {
  color: var(--white-color);
  text-transform: capitalize;
  position: absolute;
  left: 0.6rem;
  padding: 4px 6px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  font-family: var(--regular-font-family);
  pointer-events: none;
  transition: all 0.2s ease-in-out;
  z-index: 1;
}

.calculator-control:focus~.calculator_md-lable,
.calculator-control.ng-not-empty~.calculator_md-lable,
.calculator-control.ng-dirty~.calculator_md-lable {
  top: 5%;
  font-size: 12px;
  left: 0.3rem;
  z-index: 5;
}

label.error {
  /* color: #ff6666; */
  color: #ffff;
  font-size: 12px;
  position: absolute;
  top: calc(50% + 1.4rem);
  left: 0.6rem;
  z-index: 2;
  pointer-events: none;
}

.calculator-control.error {
  border-color: #ff0000;
}

.caclculator_wrapper .validation-message small {
  color: #fff;
  font-size: 0.9rem;
}

.caclculator_wrapper .validation-message {
  /* margin-top: 0.7rem; */
  position: absolute;
  top: calc(50% + 2rem);
  left: 0.6rem;
  z-index: 2;
  pointer-events: none;
}

.calculator-control::-webkit-outer-spin-button,
.calculator-control::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.calculator-control {
  -moz-appearance: textfield;
}

.calculator-info {
  max-width: 75%;
  margin: 0 auto;
  /* display: flex; */
  /* flex-direction: column; */
  /* flex-wrap: wrap; */
  background-color: #8e2827;
  border-radius: 12px;
  padding: 5rem;
  /* gap: 5.5rem; */
  /* overflow: hidden; */
}

.calculator-sec {
  display: flex;
  /* flex-wrap: wrap; */
  /* background-color: #8e2827;
        border-radius: 12px; */
  /* padding: 5rem; */
  gap: 5.5rem;
  /* overflow: hidden; */
}

.calculator-info .contact_info_box {
  margin: auto 0;
}

.calculator-info .contact_info_box>div:nth-child(1) {
  padding-bottom: 8px;
  border-bottom: unset;
}

.calculator-info .contact_info_box>div:nth-child(2) {
  padding-top: 0;
  margin-top: 0;
}

/* CFT calculator end */

/* thank-you-page */
#pdf-viewer-container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 999;
}

.thank-you-page-button {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

/* thanku page */
.thankyou-title h1 {
  /* line-height: 0.4; */
  font-size: 7rem;
  font-family: var(--bold-font-family);
}

.thankyou_wrapper {
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.BacktoHome a p {
  transition: var(--common-transition);
}

.BacktoHome a p:hover {
  transition: var(--common-transition);
  color: #1e5724;
}

/* thank-you page end */

/* vtm -express start */

.vtm-express-video video {
  width: 100%;
  height: auto;
}

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  border-radius: 5px;
  cursor: pointer;
  z-index: 2;
}

/* vtm -express end */

/* gallery start */

/* .masonry-grid {
  column-count: 4;
  column-gap: 1rem;
} */

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  grid-template-areas: 'one two three four' 'five six three seaven' 'eight six nine ten' 'eleven twelve thirteen fourteen' 'fifteen sixteen thirteen seventeen' 'eighteen sixteen nineteen twenty';
  /* grid-template-areas: 'one two three four' 'five six three seaven' 'eight six nine ten' ''; */
  /* grid-template-areas: '1 2 3 4 ' '5 6 3 7' '8 6 9 10' '11 12  13 14' '15 12 16 14' '17 18 16 19' '17 20 21 22'; */
}

.masonry-grid>div:nth-child(1) {
  grid-area: one;
}

.masonry-grid>div:nth-child(2) {
  grid-area: two;
}

.masonry-grid>div:nth-child(3) {
  grid-area: three;
}

.masonry-grid>div:nth-child(4) {
  grid-area: four;
}

.masonry-grid>div:nth-child(5) {
  grid-area: five;
}

.masonry-grid>div:nth-child(6) {
  grid-area: six;
}

.masonry-grid>div:nth-child(7) {
  grid-area: seaven;
}

.masonry-grid>div:nth-child(8) {
  grid-area: eight;
}

.masonry-grid>div:nth-child(9) {
  grid-area: nine;
}

.masonry-grid>div:nth-child(10) {
  grid-area: ten;
}

.masonry-grid>div:nth-child(11) {
  grid-area: eleven;
}

.masonry-grid>div:nth-child(12) {
  grid-area: twelve;
}

.masonry-grid>div:nth-child(13) {
  grid-area: thirteen;
}

.masonry-grid>div:nth-child(14) {
  grid-area: fourteen;
}

.masonry-grid>div:nth-child(15) {
  grid-area: fifteen;
}

.masonry-grid>div:nth-child(16) {
  grid-area: sixteen;
}

.masonry-grid>div:nth-child(17) {
  grid-area: seventeen;
}

.masonry-grid>div:nth-child(18) {
  grid-area: eighteen;
}

.masonry-grid>div:nth-child(19) {
  grid-area: nineteen;
}

.masonry-grid>div:nth-child(20) {
  grid-area: twenty;
}

.masonry-grid>div:nth-child(1),
.masonry-grid>div:nth-child(2),
.masonry-grid>div:nth-child(4),
.masonry-grid>div:nth-child(5),
.masonry-grid>div:nth-child(7),
.masonry-grid>div:nth-child(8),
.masonry-grid>div:nth-child(9),
.masonry-grid>div:nth-child(10),
.masonry-grid>div:nth-child(11),
.masonry-grid>div:nth-child(12),
.masonry-grid>div:nth-child(14),
.masonry-grid>div:nth-child(15),
.masonry-grid>div:nth-child(17),
.masonry-grid>div:nth-child(18),
.masonry-grid>div:nth-child(19),
.masonry-grid>div:nth-child(20) {
  height: 18.75rem;
  object-fit: cover;
}
.masonry-grid>div:nth-child(3),
.masonry-grid>div:nth-child(6),
.masonry-grid>div:nth-child(13),
.masonry-grid>div:nth-child(16){
  height: 38.75rem;
  object-fit: cover;
}

.masonry-item {
  overflow: hidden;
}

.masonry-item img {
  width: 100%;
  display: block;
  height: 100%;
  object-fit: cover;
}

.fancybox__container {
  z-index: 999999;
}

.carousel__button {
  color: var(--white-color);
}

.fancybox__counter,
.fancybox__counter span {
  color: var(--white-color);
}

.masonry-item:hover img {
  transform: scale(1.1);
  overflow: hidden;
}

/* gallery  end*/