*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --primary-color: #3EAEFF;
  --secondary-color: #12114C;
}

main {
  overflow: hidden;
  width: 100%;
}

html {
  scroll-behavior: smooth;
}

/* ------------------Typography------------------ */
html {
  font-size: 0.725vw;
}

body {
  /* font-family: "Livvic", sans-serif; */
  font-family: sans-serif;
  color: #444;
  font-size: 1.6rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  /* font-family: "Livvic", sans-serif; */
  line-height: 1.2;
  margin: 1rem 0;
  font-weight: 600;
  color: #000;
}

h1 {
  font-size: 7rem;
}

h2 {
  font-size: 3.6rem;
}

h3 {
  font-size: 2.2rem;
}

h4 {
  font-size: 1.6rem;
}

p {
  font-size: 1.6rem;
  line-height: 1.4;
}

a {
  text-decoration: none;
  color: #444;
}

img {
  vertical-align: middle;
  object-fit: contain;
}

.d-none {
  display: none !important;
}

.d-flex {
  display: flex;
}

.grid {
  display: -ms-grid;
  display: grid;
}

.grid-col90 {
  -ms-grid-rows: auto;
  -ms-grid-columns: 5fr 90fr 5fr;
  grid-template: auto / 5fr 90fr 5fr;
}

.grid-col80 {
  -ms-grid-rows: auto;
  -ms-grid-columns: 10fr 80fr 10fr;
  grid-template: auto / 10fr 80fr 10fr;
}

.grid-col70 {
  -ms-grid-rows: auto;
  -ms-grid-columns: 15fr 70fr 15fr;
  grid-template: auto / 15fr 70fr 15fr;
}

.block {
  padding: 8rem 0;
}

.block__inner {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
}

.block1x2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 5rem;
}

.block1x2 .left,
.block1x2 .right {
  width: 50%;
}

.grid2_ {
  gap: 2rem;
  grid-template: auto/repeat(2, 1fr);
}

.block1x3 {
  gap: 2rem;
  -ms-grid-rows: auto;
  /* -ms-grid-columns: (1fr)[3]; */
  grid-template: auto/repeat(3, 1fr);
}

.block1x4 {
  gap: 2rem;
  -ms-grid-rows: auto;
  grid-template: auto/repeat(4, 1fr);
}

.block1x5 {
  gap: 2rem;
  -ms-grid-rows: auto;
  /* -ms-grid-columns: (1fr)[4]; */
  grid-template: auto/repeat(5, 1fr);
}

.block1x6 {
  gap: 2rem;
  grid-template: auto/repeat(6, 1fr);
}

.padding-vertical {
  padding: 8rem 0;
}

.list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.list__item {
  line-height: 1.5;
}

.list-inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.list-inline .list__item {
  font-weight: 600;
  text-transform: uppercase;
}

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

.media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

@-webkit-keyframes topToBottom {
  from {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes topToBottom {
  from {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.btn {
  padding: 1.4rem 2.5rem;
  display: inline-block;
  color: #fff;
  /* border-radius: 0.8rem; */
  position: relative;
  overflow: hidden;
  border: none;
  outline: none;
}

.btn span {
  z-index: 9;
  position: relative;
  line-height: 1 !important;
  margin: 0 !important;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.btn-secondary {
  background: var(--secondary-color);
  color: #fff;
}

.header .block {
  padding: 0;
}

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

.header__top__inner {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header__top__inner ul li,
.header__top__inner a {
  margin: 0.8rem 0;
  display: inline-block;
  color: #fff;
  font-size: 1.4rem;
}

.header__top__inner ul {
  gap: 2rem;
}

.header__top__inner ul li {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header__top__inner .socialIcons .list {
  gap: 2rem;
}

.header__top__inner .socialIcons .list i {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 1.6rem;
}

.header__top__inner .socialIcons .list i:hover {
  color: var(--primary-color);
}

.header__bottom nav .main_mmenu {
  z-index: 99999999999999;
}

.header__bottom nav .menuBar {
  -webkit-filter: invert(1);
  filter: invert(1);
  display: none;
}

.header__bottom nav .list {
  /* padding-left: 2rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; */
  position: relative;
}

/* .header__bottom nav .list__item + .list__item {
  border-left: 1px solid #f7f1e5;
} */

.header__bottom nav .list__item {
  position: relative;
}

.header__bottom nav ul .list__item.innerList::after {
  content: '\f107';
  position: absolute;
  right: -1.5rem;
  font-weight: 900;
  color: #000;
  font-family: 'Font Awesome 6 Free';
  font-size: 1.5rem;
  cursor: pointer;
}

.header__bottom nav .list__item a {
  position: relative;
}

.header__bottom nav .list__item.active .subMenu,
.header__bottom nav .list__item:hover .subMenu {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
}

.header__bottom nav .list__item .btn {
  -webkit-box-shadow: 0 0 1rem #ccc;
  box-shadow: 0 0 1rem #ccc;
  font-weight: 700;
}

.subMenu {
  -webkit-box-shadow: 0rem 0 0.5rem #ccc6;
  box-shadow: 0rem 0 0.5rem #ccc6;
  border-top: 1px solid #ccc;
  z-index: 999999;
  position: absolute;
  top: 2.5rem;
  background-color: #fff;
  left: -60%;
  overflow: hidden;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top;
  transform-origin: top;
  gap: 3rem;
  min-width: 26rem;
  width: 100%;
}

.subMenu img {
  width: 100%;
}

.subMenu h3 {
  font-size: 2rem;
  font-weight: 400;
  color: #4e4a41;
  margin-top: 0;
  font-weight: 600;
}

.subMenu .list {
  padding: 0 !important;
}

.subMenu .list__item {
  line-height: normal;
  border-bottom: 1px solid #ccc6;
  border-left: none !important;
}

.subMenu .list__item:hover {
  background: #00008041;
}

.subMenu a {
  border: none;
  font-size: 1.4rem;
  text-align: center;
  width: 100%;
  white-space: nowrap;
  padding: 0 1.5rem 0 1.5rem !important;
  display: block;
  line-height: 3;
  margin: 0;
}

.subMenu a::after {
  display: none;
}

.subMenu p {
  font-weight: 500;
  font-size: 1.4rem;
  text-transform: capitalize;
}

.header__bottom__inner {
  padding: 1rem 0;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header__bottom__inner img {
  width: 20rem;
}

.header__bottom__inner nav .list {
  gap: 4rem;
}

.header__bottom__inner nav .list a {
  font-size: 1.6rem;
  font-weight: 500;
  text-transform: capitalize;
  position: relative;
  padding-bottom: 1rem;
}

.header__bottom__inner nav .list a::after {
  content: "";
  position: absolute;
  width: 0%;
  left: 0;
  bottom: 0;
  height: 2px;
  background-color: var(--primary-color);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.header__bottom__inner nav .list a.active::after {
  width: 100%;
}

.header__bottom__inner nav .list a:hover::after {
  width: 100%;
}

.header__bottom__inner .searchBar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 2rem;
}

.header__bottom__inner .searchBar .search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  padding: 0.3rem 0;
  border-radius: 5rem;
  padding-right: 0.3rem;
}

.header__bottom__inner .searchBar .search a {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.header__bottom__inner .searchBar .search a i {
  font-size: 1.6rem;
}

.footer {
  background-color: var(--secondary-color);
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  padding-bottom: 3rem;
  padding-top: 4rem;
}

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

/* footer .left {
  width: 30% !important;
} */

footer .right {
  /* width: 70% !important; */
  align-items: flex-start;
}


.footer .block__inner h2 {
  color: #fff;
}

.footer .block__inner p {
  font-size: 1.5rem;
  color: #fff;
}

.footer .block__inner h3 {
  color: #fff;
}

.footer .block__inner .list {
  margin: 1rem auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;

}

.footer .block__inner .list a {
  color: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.footer .block__inner .list a:hover {
  color: var(--primary-color);
}

.footer .block__inner .socialIcons {
  margin-bottom: 5rem;
}

.footer .block__inner .socialIcons ul {
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.footer .block__inner .socialIcons a {
  display: inline-block;
  width: 5rem;
  height: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.footer .block__inner .socialIcons a:hover i {
  color: var(--primary-color);
}

.footer .block__inner .socialIcons a i {
  font-size: 2rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.footer .block__inner .pages {
  align-items: start !important;
}

.footer .block__inner .pages ul,
.footer .block__inner .contact ul {
  gap: 1rem;
  flex-direction: column;
  padding: 0;
  margin: 0;
}

.footer .block__inner ul.address li {
  display: flex;
  align-items: center;
  gap: 1.5rem !important;
  margin-bottom: 2rem;
  height: 100%;
}

.footer .block__inner ul.address li .icon i {
  background-color: var(--secondary-color);
  text-align: center;
  color: #fff;
  font-size: 2rem;
  display: flex;
  min-width: 2rem;
  height: 5rem;
  align-items: center;
  justify-content: center;
}

.footer .block__inner ul.address li .details h5,
.footer .block__inner ul.address li .details span,
.footer .block__inner ul.address li .details a {
  margin: 0;
  color: #fff;
  display: block;
  font-size: 1.4rem;
  font-weight: normal;
  text-transform: lowercase;
}

.footer .block__inner ul.address li .details h5 {
  font-weight: 700;
  font-size: 1.4rem;
  text-transform: uppercase;
}

footer .block__inner .pages li {
  font-size: 1.4rem;
}

.backToTop {
  opacity: 1;
  width: 4.5rem;
  height: 4.5rem;
  display: -ms-grid;
  display: grid;
  place-items: center;
  position: fixed;
  right: 3rem;
  bottom: 3rem;
  z-index: 9;
  background: var(--primary-color);
  border-radius: 50%;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.backToTop i {
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
}

.backToTop:hover {
  border-color: var(--secondary-color);
}

.footer__bottom {
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid #ccc;
  text-align: center;
}

.footer__bottom p {
  font-size: 1.4rem !important;
}

.footer__bottom a {
  color: #fff;
  font-weight: bold;
}

.banner {
  height: 90vh;
  position: relative;
}

.banner .banner_inner {
  position: relative;
  top: 0;
  right: 0;
  z-index: 99;
  height: 90vh;
}

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

.banner .banner_inner::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  left: 0;
  top: 0;
  background: #000;
}

.banner__content {
  z-index: 9;
  width: 60%;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0 auto;
  text-align: center;
}

.banner__content h1 {
  color: #fff;
  text-transform: capitalize;
  font-size: 4rem;
}

.banner__content p {
  color: #fff;
  font-weight: 500;
  font-size: 2rem;
  font-family: sans-serif !important;
}

.banner__content .btn {
  margin-right: 1rem;
  width: 22%;
  text-align: center;
}

/*  */

.innerbanner {
  height: 45vh;
  position: relative;
  overflow: hidden;
}

.innerbanner .banner__img {
  height: 100%;
}

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

.innerbanner::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  left: 0;
  top: 0;
  background: #000;
}

.innerbanner .banner__content {
  z-index: 9;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* z-index: 999; */
}

.innerbanner .banner__content h1 {
  color: #fff;
  text-shadow: 1px 1px 1rem #000;
  text-transform: capitalize;
}

.innerbanner .banner__content .btn {
  margin-right: 1rem;
}


/* product banner */

.product-page .banner h1 {
  width: 65%;
  margin: auto;
  font-size: 5rem;
}

.product-page .banner p {
  font-size: 1.8rem;
}


.inner_heading h2 {
  color: var(--secondary-color);
  font-weight: bold;
}

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

.compilance .inner_heading p {
  margin-top: 0;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}

.compilance .inner_main {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}


.compilance .inner_main .box img {
  width: 100%;
  height: 100px !important;
  height: auto;
}


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

.products .inner_heading p {
  margin-top: 0;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}

.products .block__inner .item {
  position: relative;
  overflow: hidden;
}

.products .block__inner .item img {
  width: 100%;
  height: auto;
  display: block;
}

.products .inner_main .overlay-container {
  position: relative;
}

.products .inner_main .overlay {
  z-index: -1;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: white;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.products .inner_main .overlay .title {
  font-size: 2rem !important;
  font-weight: bold;
}

.products .inner_main .overlay .circle-button {
  background-color: #3EAEFF;
  border: none;
  color: white;
  width: 32px;
  height: 32px;
  transform: rotate(-30deg);
  border-radius: 50%;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.products .block__inner .inner_heading {
  margin-bottom: 3rem;
}

.products .inner_main .item:hover .overlay {
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}


.product-page .products .inner_main .overlay {
  z-index: 1;
  background: linear-gradient(to top, rgba(53, 87, 235, 0.459), transparent);
}

.product-page .products .inner_main .item:hover .overlay {
  background: linear-gradient(to top, rgba(53, 87, 235, 0.459), transparent);
}



.about .block__inner {
  align-items: start !important;
}

.about .block__inner .inner_heading p {
  width: 50%;
  margin: auto;
  margin-bottom: 5rem;
}

.about .left {
  position: relative;
}

.about .left::before {
  content: "";
  position: absolute;
  background: var(--primary-color);
  width: 100%;
  height: 100%;
  bottom: -12%;
  left: -10%;
  z-index: -1;
  color: #fff;
}

.about .left img {
  width: 100%;
}

.about .right h2 {
  color: var(--secondary-color);
  font-weight: bold;
}

.about .right.d-flex {
  align-items: flex-start;
  gap: 1rem;
}

.about .right a {
  min-width: 35%;
  text-align: center;
}

.about .icon {
  width: 20rem;
}


.about.reverse .left {
  order: 2;
}

.about.reverse .left::before {
  left: initial;
  right: -10%;
}

.about.reverse .right {
  order: 1;
}


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


.value-sec .inner_heading p {
  width: 70%;
  margin: auto;
  font-size: 1.4rem;
}

.value-sec .inner_main {
  margin-top: 5rem;
}

.value-sec .inner_main h3,
.value-sec .inner_main h5 {
  color: var(--secondary-color);
  margin: 0;
  padding: 0;
  line-height: 1;
}

.value-sec .inner_main h3 {
  font-size: 5rem;
  font-weight: bold;
  margin: .5rem 0;
}

.value-sec .inner_main h5 {
  font-size: 2rem;
}

.value-sec .inner_main p {
  font-size: 1.3rem;
  margin: 0;
}


.facilities-sec .inner_heading h2 {
  text-transform: uppercase;
  font-weight: bold;
}

.facilities-sec .inner_main {
  margin: 5rem 0;
}

.facilities-sec .inner_main .box .img {
  width: 100%;
  height: 150px;
  display: block;
}

.facilities-sec .inner_main .box .img img {
  object-fit: cover;
}

.facilities-sec .inner_main .box h3 a {
  color: var(--secondary-color) !important;
}

.facilities-sec .inner_main .box p {
  font-size: 1.5rem;
}

.scroll::-webkit-scrollbar-thumb {
  background: #5269ae85;
  border-radius: 15px 0px 15px 0px;
}

.scroll::-webkit-scrollbar {
  width: 1rem;
  background-color: none;
}

.story h2 {
  font-size: 4rem;
  margin-bottom: 5rem;
}

.process-sec .inner_heading {
  text-align: center;
  margin: auto;
  width: 100;
}

.process-sec .process-grid {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  overflow: hidden;
  gap: 0.3rem;
}

.process-sec .process-box {
  position: relative;
  width: 20%;
  min-width: 200px;
  height: 70vh;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
  padding: 4rem !important;
}

.process-sec .process-box:hover {
  transform: scale(1.02);
}

.process-sec .spinning {
  background-image: url('../webImages/media/4.png');
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  align-items: flex-start;
  justify-content: end;
  width: 40%;
}

.process-sec .spinning .process-text p {
  margin-bottom: 10px;
  max-width: 80%;
}

.process-sec .see-more-btn {
  background-color: var(--primary-color);
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 4px;
  margin-top: 1rem;
  display: block;
  width: fit-content;
}

.process-sec .knitting {
  background-image: url('../webImages/media/5.png');
}

.process-sec .processing {
  background-image: url('../webImages/media/6.png');
}

.process-sec .stitching {
  background-image: url('../webImages/media/7.png');
}

.process-sec .process-label {
  position: absolute;
  bottom: 5rem;
  right: 0;
  font-size: 2rem;
  color: #fff;
  transform: rotate(-90deg);
  font-weight: bold;
}


.contact .inner_heading {
  text-align: center;
  width: 70%;
  margin: auto;
}


.contact .inner_main {
  align-items: start;
}

.contact .inner_main .head {
  color: var(--secondary-color);
  font-size: 2rem;
  text-transform: uppercase;
  position: relative;
  border-bottom: 3px solid var(--secondary-color);
  width: fit-content;
  line-height: 1.5;
  margin-bottom: 3rem;
}

.contact .inner_main .form .block1x2 {
  gap: 1rem;
  align-items: start !important;
}

.contact .inner_main .form .form_group {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 2rem;
}

.contact .inner_main .form .form_group.half {
  width: 50%;
}

.contact .inner_main .form .form_group label {
  color: var(--secondary-color);
  font-weight: 500;
}

.contact .inner_main .form .form_group label span {
  color: red;
}

.contact .inner_main .form .form_group input {
  color: var(--secondary-color);
  width: 100%;
  padding: 1rem;
  border-radius: .5rem;
  border: 1px solid #DADBDD;
  outline: none;
  font-size: 1.3rem;
}

.contact .inner_main .form .form_group input::placeholder {
  color: var(--secondary-color);
  line-height: 1;
}

.contact .inner_main .form .form_group input:focus {
  border-color: var(--primary-color);
}

.contact .inner_main .form button {
  padding: 1.2rem 5rem 1rem 5rem;
  font-size: 1.8rem;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
}

.contact .left {
  color: var(--secondary-color);
}

.contact .left h4 {
  font-size: 2.7rem;
  color: var(--secondary-color);
}

.contact .left p {
  font-size: 1.5rem;
}

.contact .left ul.address li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  height: 100%;
}

.contact .left ul.address li .icon i {
  background-color: var(--secondary-color);
  text-align: center;
  color: #fff;
  font-size: 2rem;
  display: flex;
  min-width: 5rem;
  height: 5rem;
  align-items: center;
  justify-content: center;
}

.contact .left ul.address li .details h5,
.contact .left ul.address li .details span,
.contact .left ul.address li .details a {
  margin: 0;
  color: var(--secondary-color);
  display: block;
  font-size: 1.5rem;
}

.contact .left ul.address li .details h5 {
  font-size: 1.8rem;
}


.contact .left .socialIcons {
  margin-bottom: 5rem;
}

.contact .left .socialIcons ul.list {
  gap: 1rem;
}

.contact .left .socialIcons ul.list li a i {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--secondary-color) !important;
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  color: var(--secondary-color);
}

/* inner products */

.products-section .block__inner {
  align-items: start;
}

/* Sidebar Styling */
.products-section .sidebar {
  width: 20%;
  background: #f4f4f4;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.products-section .sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.products-section .sidebar ul li {
  margin-bottom: 10px;
}

.products-section .sidebar ul li a {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  text-decoration: none;
  color: #444;
  background: #fff;
  transition: all 0.3s ease;
  font-size: 1.4rem;
  border-radius: 20px 0 !important;
}

.products-section .sidebar ul li a i {
  margin-right: 10px;
  color: var(--primary-color);
}

.products-section .sidebar ul li a.active,
.products-section .sidebar ul li a:hover {
  background: var(--primary-color);
  color: #fff;
  font-weight: bold;
}

.products-section .content {
  width: 70%;
}

.products-section .content .box {
  cursor: pointer;
}
 

/*# sourceMappingURL=main.css.map */


.header .main_mmenu {
  display: none;
}

/* ------------------Responnsive------------------ */

@media only screen and (max-width: 1200px) {
  .process-sec .process-grid {
    flex-direction: column;
  }

  .process-sec .process-box {
    height: 100%;
    background-size: cover;
    padding: 0;
  }

  .process-sec .process-box,
  .process-sec .spinning {
    width: 100% !important;
  }

  .process-sec .process-label {
    transform: rotate(-0deg);
    right: 1rem;
    bottom: 0.5rem;
  }

}


@media only screen and (max-width: 1000px) {
  html {
    font-size: 62.5%;
  }

  .header__top {
    display: none;
  }

  .header__bottom__inner .header__logo h2 {
    font-size: 1.8rem;
  }

  .header__bottom__inner nav .list {
    display: none;
  }

  .header__bottom__inner .searchBar .search {
    padding: 0.5rem 0;
    padding-right: 0.3rem;
    display: none;
  }

  .header__bottom__inner .searchBar .search .btn {
    padding: 0.5rem;
  }

  .header__bottom__inner .searchBar .search .btn i {
    font-size: 1.6rem;
  }


  .header .main_mmenu {
    display: block;
    z-index: 9999999;
    margin-left: 10px;
  }

  .menu_icn img {
    width: 100%;
  }

  .banner__content {
    width: 80%;
    text-align: center;
  }

  .banner__content .btn {
    width: 50% !important;
    display: block;
    margin: auto !important;
  }

  .banner__content h1 {
    font-size: 5rem !important;
  }


  .about .left::before {
    content: none;
  }

  .about.reverse .left {
    order: 1;
  }

  .about.reverse .right {
    order: 2;
  }

  .block1x2 {
    flex-direction: column;
  }

  .block1x2 .left,
  .block1x2 .right {
    width: 100%;
  }

  .quote .section .card .card-txt p {
    font-size: 1.8rem;
  }

  .news .right .media .media__img,
  .news .right .media .media__body {
    width: 100%;
  }

  .news .right .media__img {
    height: 20rem;
  }

  .blogs .inner_heading {
    width: 100%;
  }

  .blogs .inner_main .blog__card {
    gap: 1rem;
  }

  .blogs .inner_main .blog__card .blog__img {
    width: 100%;
  }

  .blogs .inner_main .blog__card .blog__img img {
    object-fit: cover;
  }

  .blogs .inner_main .blog__card .blog__content {
    width: 100%;
  }

  .blogs .inner_main .blog__card .blog__content a {
    width: 40%;
  }


  .quote .section .inner__main {
    grid-template: auto/repeat(2, 1fr);
  }

  .quote .section .inner__main .card {
    width: 100%;
  }


  footer .block__inner .pages {
    flex-direction: row;
  }

  .footer .block__inner {
    grid-template: auto/repeat(2, 1fr);
  }

  .products .inner_heading p {
    width: 100%;
  }

  .products.griding .inner_main {
    grid-template: auto/repeat(2, 1fr);
  }

  .products.griding .inner_main .overlay {
    width: 100%;
    padding: 1rem;
  }

  .products.griding .inner_main .item .title {
    font-size: 2.5rem;
  }

  .contact .inner_heading {
    width: 100%;
    margin-bottom: 5rem;
  }

  .contact .inner_main .form .form_group.half {
    width: 100%;
  }

  .facilities-sec .block1x4 {
    grid-template: auto/repeat(2, 1fr);
  }



  .products-section .block__inner {
    flex-direction: row;
  }
  .products-section .sidebar {
    width: 30%;
  }

  .products-section .content {
    width: 60%;
    grid-template: auto/repeat(2, 1fr);
  }

  .contact .right iframe {
    height: 400px;
  }

}

@media only screen and (max-width: 800px) {


  .product-page .banner h1 {
    width: 100%;
  }

  .quote .section .inner__heading h2 {
    font-size: 3rem;
  }

  .quote .section .card {
    width: 80%;
  }

  .quote .section .card .card-img {
    width: 100%;
  }

  .quote .section .card .card-img img {
    width: 100%;
  }

  .quote .section .card .card-txt p {
    font-size: 1.8rem;
  }

  .gallery .section .block1x4 {
    grid-template: auto/repeat(3, 1fr);
  }

  .banner__content .btn {
    width: 100%;
    margin: 10px 0;
    text-align: center;
  }

  .quote .section .inner__main {
    grid-template: auto/repeat(1, 1fr);
  }

  .media_inner .section {
    grid-template: auto/10fr 80fr 10fr;
  }

  .products .inner_main .overlay {
    z-index: 1;
  }

  .about .block__inner .inner_heading p {
    width: 100%;
  }

  .footer .block__inner {
    grid-template: auto/repeat(1, 1fr);
    align-items: center !important;
    text-align: center !important;
  }

  .footer .block__inner ul {
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: wrap;
  }

  .footer .about,
  .footer .contact,
  .footer .pages,
  .footer ul,
  .footer .contact ul li {
    width: 100% !important;
  }

  .footer .contact ul li .details {
    width: 100%;
  }

  .footer .contact h3 {
    display: none;
  }

}

@media only screen and (max-width: 630px) {

  .block {
    padding: 5rem 0;
  }

  .service_inner .section .inner__heading h2 {
    font-size: 2.5rem;
  }

  .footer .block__inner p {
    font-size: 1.2rem;
  }

  .footer .block__inner .socialIcons ul {
    justify-content: center;
    width: 100%;
  }

  .footer .block__inner ul li {
    font-size: 1.4rem;
  }

  .innerbanner .banner__content {
    z-index: 9;
    position: absolute;
    top: 40%;
    left: 30%;
    transform: translate(-8%, -40%);
  }

  .product-page .banner h1 {
    font-size: 3rem !important;
  }

  .product-page .banner p {
    font-size: 1.3rem;
  }

  .about .right p {
    font-size: 1.2rem;
  }


  .value-sec .inner_heading h2 {
    font-size: 2.5rem;
  }

  .value-sec .inner_heading p {
    font-size: 1.2rem;
    width: 100%;
  }

  .value-sec .inner_main h5 {
    font-size: 1.8rem;
  }

  .value-sec .inner_main h3 {
    font-size: 4rem;
  }

  .value-sec .inner_main p {
    font-size: 1.2rem;
  }



  .compilance .inner_heading h2 {
    font-size: 2.5rem;
  }

  .compilance .inner_heading p {
    width: 100%;
    font-size: 1.2rem;
  }

  .process-sec h2,
  .process-sec .process-label {
    font-size: 2rem;
  }

  .process-sec p {
    font-size: 1.2rem;
  }

  .btn {
    font-size: 1.2rem !important;
  }

  .products .inner_heading h2 {
    font-size: 2.5rem;
  }

  .products .inner_heading p {
    font-size: 1.2rem;
  }


  .blogs .inner_heading h2 {
    font-size: 2rem;
  }

  .blogs .inner_heading p {
    font-size: 1.2rem;
  }

  .blogs .inner_main .blog__card .blog__content h3 {
    font-size: 2rem;
  }

  .blogs .inner_main .blog__card .blog__content span {
    font-size: 1rem;
  }

  .blogs .inner_main .blog__card .blog__content p {
    font-size: 1.2rem;
  }

  .blogs .inner_main .blog__card .blog__content a {
    width: 40%;
    font-size: 1.2rem !important;
  }

  .contact .inner_heading h2 {
    font-size: 3rem;
  }

  .contact .inner_heading p {
    font-size: 1.2rem;
  }

  .contact .inner_main h3.head {
    font-size: 1.5rem;
  }

  .contact .inner_main .form .form_group label {
    font-size: 1.5rem;
  }

  .contact .inner_main .form .form_group.half {
    width: 100%;
  }

  .about .block__inner .inner_heading h2 {
    font-size: 3rem;
  }

  .about .block__inner .inner_heading p {
    font-size: 1.2rem;
    width: 100%;
  }

  .facilities-sec h2 {
    font-size: 2rem;
  }

  .facilities-sec h3 {
    font-size: 1.8rem !important;
  }

  .facilities-sec p {
    font-size: 1.2rem !important;
  }

  .products-section .block__inner {
    flex-direction: column;
  }
  .products-section .sidebar {
    width: 100%;
    order: 2;
  }

  .products-section .content {
    width: 100%;
    grid-template: auto/repeat(2, 1fr);
  }

}

@media only screen and (max-width: 500px) {
  .btn {
    padding: 1rem 2rem;
  }



  .banner {
    height: 70vh;
    overflow: hidden;
  }

  .banner .banner__content {
    top: 40%;
    width: 100%;
    padding: 1rem 0;
  }

  .banner .banner__content h1 {
    font-size: 3rem !important;
  }

  .banner .banner__content p {
    font-size: 1.4rem !important;
  }

  .innerbanner {
    height: 25vh;
  }

  .product-page .banner .banner__content {
    width: 95%;
  }

  .banner .banner__content .btn {
    width: 100%;
  }

  .banner__content {
    margin: 0 auto;
  }

  .banner__content h1 {
    font-size: 4rem;
  }

  .banner__content p {
    font-size: 1.8rem;
  }

  .innerbanner .banner__content {
    z-index: 9;
    position: absolute;
    top: 40%;
    left: 30%;
    transform: translate(-8%, -40%);
  }

  .banner__content .btn {
    width: 100%;
    margin: 10px auto;
  }

  .innerbanner .banner__content h1 {
    font-size: 4rem;
  }



  .service_inner .section .main_img {
    margin: 50px 0;
  }

  .service_inner .section .main_img img img {
    width: 100%;
  }

  .service_inner .section .main_txt {
    padding: 0 10px;
  }

  .service_inner .section .main_txt p {
    font-size: 1.8rem;
  }

  .quote .section .card {
    width: 100%;
  }

  .quote .section .inner__heading h2 {
    font-size: 2.2rem;
  }

  .quote .section .inner__heading h4 {
    font-size: 1.3rem;
  }

  .quote .section .card .card-txt p {
    font-size: 1.6rem;
  }

  .gallery .section .block1x4 {
    grid-template: auto/repeat(2, 1fr);
  }

  .grid-col90,
  .grid-col80,
  .grid-col70 {
    grid-template: auto/5fr 90fr 5fr;
  }

  .media_inner .section {
    grid-template: auto/5fr 90fr 5fr;
    padding: 0;
  }

  .media_inner .section .main_btn {
    text-align: center;
  }


  .value-sec .inner_main {
    grid-template: auto/repeat(2, 1fr);
  }

  .products.griding .inner_main .item .title {
    font-size: 1.8rem !important;
  }


  .about .icon {
    width: 10rem;
    margin-top: 1rem;
  }


  .facilities-sec .block1x4 {
    grid-template: auto/repeat(1, 1fr);
  }

  .facilities-sec .inner_main .box .img {
    height: 200px !important;
  }

}

@media only screen and (max-width: 400px) {
  .compilance .inner_main .box {
    width: 100%;
  }

  .value-sec .inner_main {
    grid-template: auto/repeat(1, 1fr);
  }

  .value-sec .inner_main .value-box {
    text-align: center;
    gap: 1rem;
    padding-bottom: 3rem;
  }

  .products.griding .inner_main {
    grid-template: auto/repeat(1, 1fr);
  }
}

@media only screen and (max-width: 350px) {

  .product-page .about .right {
    align-items: baseline;
  }

  .product-page .about .right h2 {
    font-size: 3rem;
  }

  .footer .pages {
    flex-direction: column !important;
  }

}

/* ------------------Responnsive------------------ */





.carousel-container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

.owl-nav {
  position: absolute;
  top: 40%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.owl-nav button {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  font-size: 1.5rem;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  pointer-events: all;
  transition: background 0.3s ease;
}

.owl-dots {
  text-align: center;
  margin-top: 10px;
}

.owl-dot span {
  width: 10px;
  height: 10px;
  background: #333;
  display: inline-block;
  margin: 5px;
  border-radius: 50%;
}

.owl-dot.active span {
  background: #000080;
}