@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Marcellus+SC&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inria+Serif:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css');

:root {
  --primary-color: #FF5C00;
  --dark-color: #000000;
  --light-color: #ffffff;
  --font-inter: "Inter", serif;
  --font-montserrat: "Montserrat", sans-serif;
  --font-poppins: "Poppins", serif;
  --font-marcellus: "Marcellus SC", serif;
  --font-inria: "Inria Serif", serif;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-montserrat);
  font-weight: 500;
  overflow-x: hidden;
}

.container {
  width: 80vw;
  margin: auto;
  padding: 0 1vw;
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
}

.navbar {
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 20px 30px;
  z-index: 99;
  transition: 1s all;
}

.navbar.bgwhite {
  transition: 1s all;
  background-color: var(--light-color);
  padding: 20px 30px;
}

.logo img {
  max-height: 65px;
}

.menu {
  /* width: 55%; */
}

.menu ul.nav li:last-child a {
  margin-left: 15px;
}

.menu .nav li a:not(.cta-btn) {
  font-size: 15px;
  padding: 0.5rem 1rem;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  font-family: var(--font-inter);
}

.navbar.bgwhite .menu .nav li a:not(.cta-btn) {
  color: var(--dark-color);
}

.menu .nav li a.active,
.menu .nav li a:hover {
  color: var(--primary-color);
}

.navbar.bgwhite .menu .nav li a.active,
.navbar.bgwhite .menu .nav li a:hover {
  color: var(--primary-color);
}

.cta-btn {
  border: 1px solid var(--primary-color);
  padding: 0.8rem 1rem;
  border-radius: 5px;
  color: var(--dark-color);
  text-transform: uppercase;
  background-color: var(--light-color);
  font-weight: bold;
  font-size: 15px;
  font-family: var(--font-inter);
  background-color: var(--primary-color);
  color: var(--light-color);
}

.navbar.bgwhite .cta-btn {
  border: 1px solid var(--primary-color);
}

.cta-btn:hover {
  color: var(--dark-color);
  background-color: var(--light-color);
}

.navbar.bgwhite .cta-btn {
  background-color: var(--primary-color);
  color: var(--light-color);
}

.navbar.bgwhite .cta-btn:hover {
  background-color: var(--light-color);
  border-color: var(--primary-color);
}

.hero-section {
  height: 700px;
  position: relative;
}

.hero-content {
  position: absolute;
  top: 0;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
}

.bannerImages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 100%;
}

.hero-content img.banner {
  width: 100%;
  height: 700px;
  object-fit: cover;
}

.hero-content #chainGroup {
  width: 5px;
  height: 5px;
  position: absolute;
  left: 51.2%;
  transform: translateX(-50%) scale(1.5);
  object-fit: contain;
  top: 185px;
  z-index: 0;
  /* background-color: aqua; */
}

.hero-content img#floatChain {
  width: 190px;
  object-fit: contain;
  position: absolute;
  transform: translate(-50%, 0%);
}

.hero-section .container {
  height: 100%;
}

section.section {
  padding: 65px 0px;
  /* height: 100vh; */
}

section.section .container-fluid {
  padding-left: 100px;
  padding-right: 100px;
}

section.section h2 {
  font-size: 36px;
  text-align: center;
  font-family: var(--font-marcellus);
  font-weight: 600;
  line-height: 44px;
  margin-bottom: 60px;
  position: relative;
  z-index: 3;
}

section.section:not(.whyram-section) h2+p.small {
  text-align: center;
  margin-top: -40px;
  margin-bottom: 40px;
  font-family: var(--font-inter);
  font-size: 20px;
  font-weight: 500;
  line-height: 45px;
  color: var(--primary-color);
}

section.wwd-section {
  background: url(../assets/images/bg.jpg) no-repeat;
  background-repeat: repeat;
  background-size: cover;
}

section.wwd-section video {
  border-bottom-right-radius: 100px;
  border-top-left-radius: 100px;
  height: 400px;
  object-fit: fill;
}

.col2-wrap {
  display: grid;
  grid-template-columns: 40% repeat(1, 1fr);
  gap: 40px;
  flex-wrap: wrap;
}

.vidImgwrap {
  position: relative;
  height: fit-content;
}

.vidImgwrap img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  position: absolute;
  bottom: -10%;
  right: 0%;
  border-bottom-right-radius: 60px;
  border-top-left-radius: 60px;
}


.col2-wrap .vidImgwrap img {
  bottom: 0px;
}

section.wwd-section p {
  margin-top: 50px;
  font-size: 24px;
  font-family: var(--font-inter);
  line-height: 41px;
  text-align: justify;
}

a.btn-primary {
  background-color: var(--primary-color);
  color: var(--light-color);
  font-family: var(--font-inter);
  font-weight: 700;
  line-height: 36px;
  padding: 2px 40px 2px 20px;
  border: none;
  text-transform: capitalize;
  font-size: 18px;
  position: relative;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  /* Subtle shadow */
}

a.btn-primary:hover,
a.btn-primary:active,
a.btn-primary:focus {
  background-color: #e25500;
  /* Slightly darker orange */
  transform: translateY(-2px);
  /* Lift effect */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

a.btn-primary::after {
  content: "\f061";
  font-family: FontAwesome;
  right: 15px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

section.unique-section,
section.unique-section.uProduct {
  background: url(../assets/images/bg.jpg) no-repeat;
  background-repeat: repeat;
  background-size: cover;
}

section.unique-section h2 {
  margin-bottom: 0;
}

.sectionWtabs .nav-tabs {
  border: none;
  gap: 25px;
  justify-content: center;
}

.sectionWtabs .nav-tabs li button {
  border: none;
  text-transform: uppercase;
  color: var(--dark-color);
  font-family: var(--font-poppins);
  font-size: 21px;
  font-weight: 400;
  padding: 0;
}

.sectionWtabs .nav-tabs li:last-child button {
  margin-right: 0;
}

.sectionWtabs .nav-tabs li button.active,
.sectionWtabs .nav-tabs li button:hover,
.sectionWtabs .nav-tabs li button:active {
  color: var(--primary-color);
  border-bottom: 3px solid var(--dark-color);
  background-color: transparent;
}

section.unique-section.uProduct .nav-tabs li button.active {
  background-color: transparent;
}

.history-section {
  background-image: url(../assets/images/history.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.history-section h2,
.history-section p {
  color: var(--light-color);
}

.history-section p {
  font-family: var(--font-inria);
  font-size: 30px;
  line-height: 60px;
  text-align: justify;
}

.history-section p+p {
  text-align: right;
}

section.section.craft-section {
  height: auto;
  position: relative;
}

.craft-section .craft_wrap ul {
  padding-left: 0;
}

.craft-section .craft_wrap ul div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.craft-section .craft_wrap ul div img {
  height: 100px;
  width: 100px;
  object-fit: contain;
  margin: 0px auto 20px;
}

.craft-section .craft_wrap ul div p {
  font-weight: 700;
  font-size: 26px;
  line-height: 24px;
  font-family: var(--font-inter);
  text-align: center;

}

.cat_alignment .item-img img {
  width: 100%;
  /* height: 860px; */
  object-fit: cover;
}

.cat_alignment div.item-img {
  text-align: center;
  position: relative;
}

.cat_alignment .item-img span {
  font-size: 28px;
  text-transform: uppercase;
  font-family: var(--font-marcellus);
  line-height: 60px;
  position: absolute;
  bottom: 40px;
  color: var(--light-color);
  Z-INDEX: 3;
  left: 50%;
  transform: translateX(-50%);
}

.slider_wrapper {
  margin-top: 100px;
  margin-bottom: 40px;
}

.slider_wrapper .imageitem:nth-child(even) {
  margin-top: 100px;
}

.imageitem {
  width: 96%;
  height: -moz-fit-content;
  height: fit-content;
  border: 2px solid var(--dark-color);
  border-top-left-radius: 80px;
  border-bottom-right-radius: 80px;
  position: relative;
  cursor: pointer;
}

.imageitem img {
  width: 100%;
  position: relative;
  border-top-left-radius: 80px;
  border-bottom-right-radius: 80px;
  pointer-events: none;
}

.imageitem:before {
  content: "";
  width: 100%;
  height: 100%;
  border: 2px solid var(--primary-color);
  border-top-left-radius: 90px;
  border-bottom-right-radius: 90px;
  position: absolute;
  z-index: 0;
  top: 15px;
  left: 15px;
  transition: 0.5s all;
}

.imageitem:hover::before {
  background-color: var(--primary-color);
  transition: 0.5s all;
}


.autoplay img {
  max-height: 90px;
  max-width: 150px;
  vertical-align: middle;
  display: flex;
  align-items: center;
}

.one-at-time {
  margin-bottom: 130px !important;
}

.sliderItem {
  display: flex;
  align-items: center;
}

.one-at-time img {
  border-top-right-radius: 80px;
  border-bottom-left-radius: 80px;
  max-width: 400px;
  min-height: 340px;
  object-fit: cover;
  margin-right: 50px;
}

.one-at-time span.title {
  font-size: 46px;
  line-height: 28px;
  letter-spacing: 0.1px;
  font-family: var(--font-marcellus);
  color: var(--primary-color);
  margin-bottom: 40px;
  display: block;
}

.one-at-time p {
  font-size: 24px;
  line-height: 41px;
  text-align: justify;
}

.one-at-time .btn.btn-primary {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}

.slick-dots {
  bottom: -50px;
}

.slick-dots li button:before {
  font-size: 12px;
  color: #D9D9D9;
}

.slick-dots li.slick-active button:before {
  color: var(--primary-color);
}

section.section.service-section {
  /* padding-bottom: 0; */
  position: relative;

}

section.download-section {
  background: url(../assets/images/bg.jpg) no-repeat;
  background-repeat: repeat;
  background-size: cover;
  padding: 150px 0px;
}

section.download-section .content_dwrap {
  border-radius: 40px;
  background-color: var(--light-color);
  background-image: url(../assets/images/repeatbg.png);
  background-position: center;
  background-repeat: repeat-x;
  padding: 40px;
  background-size: 440px;
  display: flex;
  position: relative;
}

section.download-section .content_dwrap>div {
  max-width: 55%;
}

section.download-section .content_dwrap>img {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  width: 26%;
  display: inline-block;
}

section.download-section .title {
  font-family: Marcellus SC;
  font-size: 36px;
  font-weight: 400;
  line-height: 60px;
  text-align: left;
  color: var(--primary-color);
  margin-bottom: 20px;
  display: block;
}

section.download-section p {
  font-family: Inter;
  font-size: 20px;
  font-weight: 400;
  line-height: 27px;
  text-align: left;
  margin-bottom: 20px;
}

section.download-section .buttonWrap a.btn.btn-primary {
  font-size: 17px;
  margin-right: 40px;
}

section.download-section a.gplay-btn {
  background: url(../assets/images/gplay.png);
  background-repeat: no-repeat;
  background-size: contain;
  line-height: 41px;
  padding: 0px;
  min-height: 51px;
  min-width: 160px;
}

section.download-section a.astore-btn {
  background: url(../assets/images/Astore.png);
  background-repeat: no-repeat;
  background-size: contain;
  line-height: 41px;
  padding: 0px;
  min-height: 51px;
  min-width: 160px;
}

footer.footer {
  padding: 70px 0px 0px;
  padding-left: 65px;
  padding-right: 65px;
  position: relative;
  background: var(--primary-color);
  margin-top: 122px;
  /* background-size: cover;
  background-position: top;
  margin-top: -1px; */
}

footer.footer::before {
  content: '';
  background: transparent url(../assets/images/wavess.png) no-repeat;
  position: absolute;
  top: -121px;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 122px;
  z-index: 1;
  background-size: cover;
}


footer.footer .footer_top {
  display: flex;
  color: var(--light-color);
}

footer.footer .footer_top .footer-left img {
  max-height: 80px;
  margin-bottom: 50px;
}

footer.footer .footer_top p {
  max-width: 50%;
  visibility: visible !important;
  opacity: 1 !important;
  transform: none !important;
}

footer.footer .footer_top .footer-right {
  display: flex;
  width: 18%;
  justify-content: space-between;
  column-gap: 20px;
}

footer.footer .footer_top .footer-right a {
  color: var(--light-color);
}

footer.footer .footer_top .footer-right ul {
  padding-left: 0;
  margin-bottom: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: Inter;
  font-size: 16px;
  line-height: 21.78px;
  text-align: left;

}

footer.footer .footer_top .footer-right ul+ul {
  justify-content: center;
  row-gap: 20px;
}

.footer_bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  color: var(--light-color);
  font-family: Inter;
  font-size: 16px;
  line-height: 19.36px;
  text-align: left;

}

.footer_bottom p {
  visibility: visible !important;
  opacity: 1 !important;
  transform: none !important;
}

.footer_bottom ul {
  display: flex;
  column-gap: 20px;
}

.footer_bottom ul a {
  color: var(--light-color);
}

.breadcrumb {
  margin-top: 102px;
  min-height: 300px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.breadcrumb h1 {
  color: var(--light-color);
  position: relative;
  z-index: 2;
  font-family: var(--font-montserrat);
  font-size: 2.125rem;
  text-transform: uppercase;
  margin-bottom: 0;
}

.breadcrumb:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.breadcrumb.about {
  background: url(../assets/images/bc1.png) no-repeat;
  background-position: center;
  background-size: cover;
}

.breadcrumb.service {
  background: url(../assets/images/bc2.png) no-repeat;
  background-position: center;
  background-size: cover;
}

.breadcrumb.product {
  background: url(../assets/images/bc3.png) no-repeat;
  background-position: center;
  background-size: cover;
}

.breadcrumb.contact {
  background: url(../assets/images/bc1.png) no-repeat;
  background-position: center;
  background-size: cover;
}

.lgImgwrap img {
  max-width: 80%;
  border-top-right-radius: 100px;
  border-bottom-left-radius: 100px;
}

/* About us Page Styles */
.about-section p {
  margin-top: 50px;
  font-size: 24px;
  font-family: var(--font-inter);
  line-height: 41px;
  text-align: justify;
}

.choose-section {
  background: url(../assets/images/bg.jpg) no-repeat;
  background-repeat: repeat;
  background-size: cover;
}

.choose-section:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 80px;
}

.choose-section p {
  font-size: 24px;
  font-family: var(--font-inter);
  line-height: 41px;
  text-align: justify;
}

.choose-section .choose_cards {
  padding-left: 0;
  margin-top: 50px;
}

.choose-section .card-choose {
  padding: 20px 15px;
  background-color: var(--light-color);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 3px 17px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 6px -8px;
  border-bottom: 10px solid var(--primary-color);
  text-align: center;
  border-radius: 5px;
  min-height: 545px;
}

.choose-section .card-choose:hover {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.choose-section .card-choose img {
  display: inline-block;
  width: 60px;
  height: 60px;
  border-radius: 10px;
  box-shadow: 0px 16px 32px -8px rgba(12, 12, 13, 0.4);
  /* padding: 10px; */
  margin-bottom: 15px;
  object-fit: contain;
}

.choose-section .card-choose:hover img {
  box-shadow: 0px 16px 12px -8px rgba(12, 12, 13, 0.4);
}

.choose-section .card-choose h3 {
  font-family: Marcellus SC;
  font-size: 22px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.10000000149011612px;
  text-align: center;
  margin-bottom: 30px;

}

.choose-section .card-choose p {
  font-family: Inter;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  text-align: center;
}


/* Services Page Styles */

.service-section p {
  margin-top: 50px;
  font-size: 24px;
  font-family: var(--font-inter);
  line-height: 41px;
  text-align: justify;
}

.alterbox-section {
  background: url(../assets/images/bg.jpg) no-repeat;
  background-repeat: repeat;
  background-size: contain;
}

.alterbox-section ul {
  display: flex;
  padding-left: 0;
  flex-direction: column;
  background: url(../assets/images/dotwave.png) no-repeat;
  background-size: 60% 80%;
  background-position: center;
}

.alterbox-section ul li .cardbox {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  background-color: #ffffff;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 3px 17px -5px,
    rgba(0, 0, 0, 0.3) 0px 3px 6px -8px;
  margin-bottom: 5%;
  border-radius: 5px;
  max-width: 65%;
  column-gap: 20px;
  position: relative;
}

.alterbox-section ul li .cardbox:hover {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.alterbox-section ul li:last-child .cardbox {
  margin-bottom: 0;
}

.alterbox-section ul li:nth-child(odd) .cardbox {
  flex-direction: row-reverse;
}

.alterbox-section ul li:nth-child(even) .cardbox {
  margin-left: auto;
}

.alterbox-section ul li:nth-child(odd) .cardbox:before {
  content: "";
  display: flex;
  position: absolute;
  width: 100px;
  height: 100px;
  left: 117%;
  background: url(../assets/images/full_star_1.png) no-repeat;
  background-size: contain;
  bottom: 0;
}

.alterbox-section ul li:nth-child(even) .cardbox:before {
  content: "";
  display: flex;
  position: absolute;
  width: 100px;
  height: 100px;
  left: -28%;
  background: url(../assets/images/full_star_1.png) no-repeat;
  background-size: contain;
  bottom: 0;
}

.alterbox-section ul li:nth-child(3) .cardbox:before {
  left: 111%;
}

.alterbox-section ul li:last-child .cardbox:before {
  background: transparent;
}

.alterbox-section ul li .cardbox img {
  max-height: 300px;
}

.cardbox .content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cardbox .content .title {
  font-family: Marcellus SC;
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.10000000149011612px;
  text-align: center;
  margin-bottom: 30px;
  display: inline-block;
}

.cardbox .content p {
  font-family: Inter;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  text-align: left;
}

.cardbox .content a.btn {
  width: -moz-fit-content;
  width: fit-content;
}

.whyram-section h2 {
  margin-bottom: 20px !important;
}

.whyram-section h2+p {
  font-family: var(--font-inter);
  font-size: 20px;
  font-weight: 500;
  line-height: 45px;
  text-align: justify;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 20px;
}

.whyram-section p.text {
  font-family: var(--font-inter);
  font-size: 24px;
  font-weight: 400;
  line-height: 45px;
  text-align: justify;

}

.dq-section ul {
  display: flex;
  flex-direction: column;
  padding-left: 0;
}

.dq-section ul .verticalbox {
  display: flex;
  column-gap: 20px;
}

.imgWraps {
  display: flex;
  position: relative;
}

.imgWraps .imgs {
  display: flex;
  flex-direction: column;
}

.imgWraps .imgs img {
  border-radius: 0px;
}


.tabsContent {
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.25);
  padding: 50px;
  position: absolute;
  max-width: 70%;
  right: 0%;
  z-index: 1;
  background: #fff;
  top: 50%;
  transform: translateY(-50%);
}

.tabsContent .tabtextContent h3 {
  color: rgba(255, 92, 0, 1);
  font-family: Marcellus SC;
  font-size: 20px;
  font-weight: 400;
  line-height: 25.08px;
  margin-bottom: 25px;
  margin-left: 40px;
  background-color: #ffffff;
  width: fit-content;
  position: relative;
  padding: 0px 15px;
}

.tabsContent .tabtextContent h3::before {
  content: "";
  width: 150%;
  height: 1px;
  background-color: #FF5C00;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  z-index: -1;
}

.tabsContent .tabtextContent h4 {
  font-family: Marcellus;
  font-size: 24px;
  font-weight: 400;
  line-height: 30.09px;
  text-align: justify;
  margin-bottom: 25px;
}

.tabsContent .tabtextContent h4 span {
  color: var(--primary-color);
}

.tabsContent .tabtextContent p {
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  text-align: justify;
}

.tabsContent>ul {
  flex-direction: row;
}

.tabsContent>ul li {
  width: 50%;
  background: rgba(240, 240, 240, 1);
  text-align: center;
}

.tabsContent>ul li button {
  width: 100%;
  font-family: Marcellus SC;
  font-size: 24px;
  font-weight: 400;
  line-height: 30.09px;
  text-align: center;
  color: #000000;
  border-radius: 5px !important;
  height: 100%;
}

.tabsContent>ul li button.active {
  background-color: #FF5C00 !important;
  color: #fff !important;
}

.tabsContent>ul li button.active:hover {
  color: #fff !important;
}

.tabsContent>ul li button:hover {
  color: #FF5C00 !important;
}

.tabsContent .verticalbox {
  margin-top: 30px;
  padding: 35px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 1);
  border-radius: 5px;
  background: url(../assets/images/repeatbg.png) repeat;
  background-size: 50%;
}

.tabsContent .verticalbox p {
  font-family: Inter;
  font-size: 17.5px;
  font-weight: 400;
  line-height: 19.36px;
  text-align: justify;
}

@media screen and (max-width: 1000px) {
  .tabsContent {
    max-width: 100%;
  }

  img#movedobj {
    max-width: 320px;
    width: 100%;
  }
}

@media screen and (max-width: 800px) {
  .tabsContent {
    position: relative;
    padding: 20px;
    top: auto;
    transform: none;
  }

  .tabsContent .verticalbox {
    padding: 20px;
  }

  .tabsContent>ul li button {
    font-size: 16px !important;
  }

  .imgWraps {
    flex-direction: column;
  }

  .about-section p,
  .choose-section p {
    font-size: 20px;
  }
}




/* Product Page */
.product-section {}

.product-section h2 {
  margin-bottom: 20px !important;
}

.product-section h2+p {
  font-family: var(--font-inter);
  font-size: 20px;
  font-weight: 500;
  line-height: 45px;
  text-align: justify;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 20px;
}

.collectionwrap .ccard {
  display: flex;
  flex-direction: column;
  background: #F8F8FF;
}

.collectionwrap .ccard {
  display: flex;
  justify-content: space-between;
  column-gap: 15px;
  padding-left: 0;
  margin-top: 50px;
}

.collectionwrap .ccard {
  flex-basis: 23%;
  padding: 20px 15px;
  background-color: #F8F8FF;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 3px 17px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 6px -8px;
  border-bottom: 10px solid var(--primary-color);
  text-align: center;
  border-radius: 5px;
}

.collectionwrap .ccard:hover {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.collectionwrap .ccard img {
  display: inline-block;
  width: 70px;
  height: 70px;
  padding: 0;
  margin-bottom: 18px;
  object-fit: contain;
  margin-left: auto;
  margin-right: auto;
}

.ccard span.coltitle {
  font-size: 20px;
  font-family: var(--font-marcellus);
}

.collectionwrap .ccard p {
  min-height: 100px;
  margin-top: 20px;
}

.altertxtbox-section ul {
  display: flex;
  padding-left: 0;
  flex-direction: column;
}

.altertxtbox-section ul .alterCard {
  max-width: 50%;
  border-left: 5px solid var(--primary-color);
  padding: 15px;
  border-radius: 8px;
  background-color: #F8F8FF;
  margin-bottom: 20px;
  box-shadow: 0px 0px 7.7px 0px rgba(0, 0, 0, 0.25);
  margin: 15px 0px 80px;
}

.altertxtbox-section ul li:last-child .alterCard {
  margin-bottom: 0;
}

.altertxtbox-section ul li:nth-child(even) .alterCard {
  margin-left: auto !important;
}

.alterCard .cardtitle {
  font-family: var(--font-marcellus);
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.10000000149011612px;
  text-align: left;
  display: inline-block;
  margin: 5px 0px 20px;
}

.alterCard p {
  font-family: var(--font-inter);
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
}

/* Contact Page */

.ourcontact-section h2 {
  margin-bottom: 25px;
}

.ourcontact-section h2+p {
  font-family: var(--font-inter);
  font-size: 24px;
  font-weight: 400;
  line-height: 45px;
  text-align: justify;
  margin-bottom: 40px;
}

.ourcontact-section .mapsection {
  overflow: hidden;
  margin-top: 65px;
  margin-bottom: 65px;
  border-radius: 15px;
  box-shadow: 0px 0px 10px 6px rgba(0, 0, 0, 0.25);
  width: 100%;
  height: 100%;
  position: relative;
}

.ourcontact-section .mapsection iframe {
  width: 100%;
}

.ourcontact-section .contactdetails ul {
  padding-left: 0;
}

.ourcontact-section .contactdetails ul .conBox {
  background-color: var(--light-color);
  border-top-right-radius: 50px;
  border-bottom-left-radius: 50px;
  box-shadow: 0px 5px 5px 1px rgba(0, 0, 0, 0.25);
  border-bottom: 5px solid var(--primary-color);
  text-align: center;
  padding: 30px 15px 15px;
}

.ourcontact-section .contactdetails ul .conBox:hover {
  box-shadow: 0px 0px 12px 1px rgba(0, 0, 0, 0.25);
}

.ourcontact-section .contactdetails ul .conBox .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--light-color);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  font-size: 20px;
}

.ourcontact-section .contactdetails ul .conBox .icon+p {
  font-weight: 600;
}

.ourcontact-section .contactdetails ul li .conBox>span:not(.icon) {
  min-height: 50px;
  display: inline-block;
}

.ourcontact-section .contactdetails ul li:last-child .conBox>span:not(.icon) {
  max-width: 75%;
}

.font-marc {
  font-family: var(--font-marcellus);
  font-size: 24px;
  font-weight: 400;
  line-height: 41px;
  text-align: center;
  margin: 80px 10px 0px;
}

.colThree-section .collectionwrap.column3_layout .ccard {
  gap: 20px;
}

.colThree-section .collectionwrap .ccard span.icon {
  width: 60px;
  height: 60px;
  text-align: center;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: var(--light-color);
  border-radius: 50%;
}

.colThree-section .ccard span.coltitle {
  color: var(--primary-color);
}

.colThree-section .collectionwrap.column3_layout .ccard p {
  margin: 0;
  font-family: var(--font-inter);
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0.20000000298023224px;
  text-align: center;

}

section.section.cato-section {
  padding: 0;
}

.column3_layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.column4_layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.column6_layout {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}

button.navbar-toggler,
button.navbar-toggler[aria-expanded=true] {
  background: #fff;
  border: none;
}

/* Responsive CSS */

section.section .container-fluid {
  padding-left: 65px;
  padding-right: 65px;
}

/* Check Points */

.checkPointWrap {
  width: 5px;
  height: 5px;
  /* background-color: #FF5C00; */
}

section.wwd-section video {
  width: 90%;
}

.vidImgwrap .checkPointImgWrap {
  width: 150px;
  height: 150px;
  object-fit: cover;
  position: absolute;
  bottom: -20px;
  right: 0%;
}

.vidImgwrap .checkPointImgWrap .checkPointWrap {
  position: absolute;
  right: 72px;
  top: 18px;
  z-index: 9;
}

.vidImgwrap img {
  width: 150px;
  height: 150px;
  border-bottom-right-radius: 60px;
  border-top-left-radius: 60px;
  object-fit: cover;
}

section.section.unique-section .imageitem {
  position: relative;
}

section.section.unique-section .checkPointWrap {
  position: absolute;
  left: 50.4%;
  transform: translateX(-50%);
  z-index: 9;
  top: 103px;
}

/* Star position updates */

img#movedobj {
  width: auto;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 80%;
  opacity: 0.1;
}

section.wwd-section,
section.download-section,
section.section.about-section,
section.section.choose-section,
section.section.dq-section .imgWraps .imgs,
section.unique-section.uProduct,
section.section.product-section,
.contactdetails {
  position: relative;
}

section.section.ourcontact-section {
  overflow-x: hidden;
}

.home .wwd-section:before {
  content: "";
  display: inline-block;
  width: 150px;
  height: 150px;
  position: absolute;
  top: 0;
  right: -12px;
  background: url(../assets/images/star_rt.png) no-repeat;
  background-size: contain;
  opacity: 20%;
  pointer-events: none;
}

.home .section.download-section:before {
  content: "";
  display: inline-block;
  width: 150px;
  height: 150px;
  position: absolute;
  bottom: 0;
  left: 0px;
  background: url(../assets/images/star_tl_home.png) no-repeat;
  background-size: contain;
  pointer-events: none;
}

section.section.choose-section:before {
  content: "";
  display: inline-block;
  width: 150px;
  height: 150px;
  position: absolute;
  top: 0;
  left: 0px;
  background: url(../assets/images/abt_tl.png) no-repeat;
  background-size: contain;
  pointer-events: none;
  opacity: 30%;
}

section.unique-section.uProduct:before {
  content: "";
  display: inline-block;
  width: 180px;
  height: 180px;
  position: absolute;
  top: 0;
  left: 0px;
  background: url(../assets/images/prod_star.png) no-repeat;
  background-size: contain;
  pointer-events: none;
  opacity: 30%;

}

section.section.dq-section .imgWraps .imgs:before {
  content: "";
  display: inline-block;
  width: 150px;
  height: 150px;
  position: absolute;
  top: 20px;
  right: -150px;
  background: url(../assets/images/full_star.png) no-repeat;
  background-size: contain;
  pointer-events: none;
  opacity: 30%;
}

.ourcontact-section .contactdetails:before {
  content: "";
  display: inline-block;
  width: 150px;
  height: 150px;
  position: absolute;
  bottom: -140px;
  right: -92px;
  background: url(../assets/images/conc_star_tr.png) no-repeat;
  background-size: contain;
  pointer-events: none;
  opacity: 30%;
}


@media screen and (max-width: 1280px) {
  section.section.unique-section .checkPointWrap {
    top: 79px;
  }
}

section.section.history-section .checkPointWrap {
  position: absolute;
  right: 20px;
  top: 50px;
}

section.section.service-section .checkPointWrap {
  position: absolute;
  right: 20px;
  top: 50px;
}

section.section.download-section .checkPointWrap {
  position: absolute;
  top: 30px;
  left: 30px;
}

section.section.cato-section .cat_alignment .checkPointWrap {
  position: absolute;
  top: 158px;
  left: 51.5%;
  transform: translateX(-50%) scale(1.4);
}

section.section.cato-section .column6_layout {
  display: grid;
  grid-template-columns: 210px repeat(5, 1fr);
  gap: 0;
}

section.section.cato-section .cat_alignment .item-img img {
  width: 100%;
  height: 650px;
  object-fit: cover;
}

section.section.craft-section .checkPointWrap {
  position: absolute;
  left: 20px;
  top: 50px;
}

@media screen and (min-width: 1600px) {
  .cat_alignment .item-img img {
    height: 700px;
  }
}

@media screen and (max-width: 1280px) {
  section.wwd-section video {
    width: 90%;
  }

  .vidImgwrap img {
    right: 0;
  }
}

@media screen and (max-width: 1100px) {

  body,
  main.smooth-scroll {
    overflow-x: hidden;
  }

  section.section .container-fluid {
    padding-left: 35px;
    padding-right: 35px;
  }

  .wwd-section .col2-wrap {
    grid-template-columns: 50% repeat(1, 1fr);
  }

  section.wwd-section p {
    margin-top: 0;
  }

  .craft-section .craft_wrap ul div p {
    font-size: 21px;
  }
}

@media screen and (max-width: 1024px) {

  .alterbox-section ul li .cardbox {
    max-width: 100%;
  }

  .alterbox-section ul li .cardbox img {
    max-height: 200px;
  }

  .altertxtbox-section ul .alterCard {
    max-width: 85%;
  }

  .one-at-time img {
    max-width: 330px;
    min-height: 300px;
  }

  .one-at-time span.title {
    font-size: 40px;
  }

  .cat_alignment .item-img span {
    top: 50%;
    z-index: 3;
    left: 50%;
    transform: translate(-50%, -50%);
    writing-mode: vertical-lr;
    bottom: auto;
    font-size: 22px;
  }

  .breadcrumb {
    min-height: 240px;
  }

  .buttonWrap {
    gap: 20px;
    display: flex;
    flex-direction: column;
  }

  section.download-section {
    padding: 90px 0px;
  }
}

@media screen and (max-width: 999px) {
  .navbar {
    padding: 10px 40px;
  }

  .navbar-nav.menu ul.nav {
    flex-direction: column;
    gap: 20px;
    /* background: #fff; */
    width: 100%;
  }

  div.navbar-collapse.show {
    padding-bottom: 30px;
  }

  section.section:not(.whyram-section) h2+p.small {
    margin-top: 0;
  }

  section.section .container-fluid,
  footer.footer {
    padding-left: 35px;
    padding-right: 35px;
  }

  section.unique-section .d-flex {
    flex-direction: column;
    align-items: flex-start !important;
    row-gap: 40px;
  }

  section.unique-section h2 {
    width: 100%;
  }

  section.section h2 {
    font-size: 30px;
  }

  .sectionWtabs .nav-tabs li button {
    font-size: 18px;
  }
}

@media screen and (max-width: 960px) {

  .history-section p {
    font-size: 24px;
    line-height: 40px;
  }

  section.wwd-section p {
    font-size: 21px;
  }

  section.service-section p {
    font-size: 21px;
    margin-top: 25px;
  }

  .one-at-time span.title {
    font-size: 33px;
    margin-bottom: 20px;
  }

}

@media screen and (max-width:800px) {
  section.section.unique-section .imageitem:last-child {
    grid-row: 1;
  }

  .history-section {
    background-position: left;
  }
}

@media (max-width: 768px) {

  .column3_layout,
  .column4_layout {
    grid-template-columns: repeat(2, 1fr);
  }

  .col2-wrap {
    grid-template-columns: 1fr;
  }

  footer.footer {
    background-size: contain;
  }

  .altertxtbox-section ul .alterCard {
    max-width: 100%;
  }

  .hero-content #chainGroup {
    top: 195px;
    left: 54.2%;
    transform: translateX(-50%) scale(1.3);
  }
}

@media screen and (max-width: 767px) {

  section.section.dq-section .imgWraps .imgs:before {
    right: 0px !important
  }

  .alterbox-section ul li:nth-child(odd) .cardbox:before {
    left: 0 !important;
    z-index: -1;
  }

  .breadcrumb h1 {
    text-align: center;
  }

  footer.footer::before {
    background-size: contain;
    top: -31px;
  }

  .navbar {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .homeNav {
    background-color: transparent;
    position: relative;
  }

  .menu .nav li a:not(.cta-btn) {
    color: #000;
  }

  .menu .nav li a:not(.cta-btn).active {
    color: var(--primary-color);
  }

  section.download-section .content_dwrap {
    padding-left: 20px;
    padding-right: 20px;
    flex-direction: column;
  }

  section.download-section .content_dwrap>div {
    max-width: 100%;
  }

  section.download-section .content_dwrap>img {
    position: relative;
    transform: none;
    top: 20px;
    width: 100%;
    right: 0px;
  }

  .bannerImages {
    grid-template-columns: repeat(1, 1fr);
  }

  .lgImgwrap img {
    max-width: 100%;
  }

  .bannerImages .banner:not(:nth-child(2)) {
    display: none;
  }

  .alterbox-section ul li .cardbox {
    flex-direction: column !important;
  }

  footer.footer .footer_top {
    flex-direction: column;
  }

  footer.footer .footer_top .footer-right {
    gap: 20px;
    width: 100%;
  }

  footer.footer .footer_top p {
    max-width: 100%;
    margin-bottom: 40px;
  }

  footer.footer .footer_top .footer-right ul {
    height: 200px;
  }

  .footer_bottom {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .footer_bottom ul {
    padding-left: 0;
  }
}

@media screen and (max-width: 650px) {

  button.navbar-toggler {
    outline: none !important;
    box-shadow: none !important;
  }

  .menu {
    padding-top: 30px;
  }

  .wwd-section .col2-wrap {
    grid-template-columns: repeat(1, 1fr);
  }

  section.wwd-section video {
    height: 250px;
  }

  section.section h2 {
    margin-bottom: 25px;
  }

  .sliderItem {
    flex-direction: column;
    row-gap: 40px;
  }

  .slider_wrapper .imageitem:nth-child(even),
  .slider_wrapper .imageitem {
    margin-top: 0px !important;
    margin-bottom: 40px !important;
    width: 65%;
    margin: auto;
  }

  section.download-section .content_dwrap>img {
    height: 400px;
    object-fit: contain;
  }
}

@media (max-width: 480px) {

  section.section .container-fluid,
  footer.footer {
    padding-left: 25px;
    padding-right: 25px;
  }

  .column3_layout,
  .column4_layout {
    grid-template-columns: 1fr;
  }

  section.section .container-fluid {
    padding-left: 25px;
    padding-right: 25px;
  }
}


/* 2560×1440
1920×1080
1600×900
1536×864
1440×900
1366×768
1280×720
810×1080

414×896
412×915
393×873
390×844
360×800 
360×780
360×640
375×812

https: //www.browserstack.com/guide/ideal-screen-sizes-for-responsive-design
*/

/* .textAnime {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
} */


section.video-section,
section.section.colThree-section {
  position: relative;
}

.textAnime,
p,
.title {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out 0.5s, transform 0.6s ease-out 0.5s;
}

.textAnime.visible,
p.visible,
.title {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 1280px) {
  .hero-content img#floatChain {
    width: 166px;
  }
}

@media screen and (min-width: 1920px) {

  section.section .container-fluid,
  footer.footer .container-fluid {
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-content #chainGroup {
    transform: translateX(-50%) scale(1.75);
    top: 240px;
  }

  .vidImgwrap .checkPointImgWrap .checkPointWrap {
    top: 22px;
  }

  footer.footer::before {
    background-repeat: repeat-x !important;
  }
}

@media screen and (min-width: 1620px) {

  .hero-content img.banner,
  .hero-section {
    height: 100vh;
  }
}

.buttonWrap a.btn.btn-primary {
  line-height: 43px;
}