/* Cera-GR */

@font-face {

  font-family: "Cera-GR-Medium";

  src: url("../fonts/cera-GR/Cera-GR-Medium.ttf");

  font-display: swap;

}



/* Gilroy */

@font-face {

  font-family: "Gilroy-Light";

  src: url("../fonts/Gilroy/Gilroy-Light.ttf");

  font-display: swap;

}



@font-face {

  font-family: "Gilroy-Regular";

  src: url("../fonts/Gilroy/Gilroy-Regular.ttf");

  font-display: swap;

}



@font-face {

  font-family: "Gilroy-Medium";

  src: url("../fonts/Gilroy/Gilroy-Medium.ttf");

  font-display: swap;

}



@font-face {

  font-family: "Gilroy-SemiBold";

  src: url("../fonts/Gilroy/Gilroy-SemiBold.ttf");

  font-display: swap;

}



@font-face {

  font-family: "Gilroy-Bold";

  src: url("../fonts/Gilroy/Gilroy-Bold.ttf");

  font-display: swap;

}



@font-face {

  font-family: "Gilroy-Black";

  src: url("../fonts/Gilroy/Gilroy-Black.ttf");

  font-display: swap;

}



@font-face {

  font-family: "Gilroy-Heavy";

  src: url("../fonts/Gilroy/Gilroy-Heavy.ttf");

  font-display: swap;

}



:root {

  --white: #fff;

  --black: #000;

  --bg_clr: #F2F6FA;

  --gray_7E7E7E: #7E7E7E;

  --gray_717171: #717171;

  --black_1D1F22: #1D1F22;

  --black_1C2931: #1C2931;

  --red: #A01616;

  --border_clr: #D3D3D3;

  --cream-bg: #F3C495;

}



.white {

  color: var(--white);

}



.black {

  color: var(--black);

}



* {

  margin: 0;

  padding: 0;

  box-sizing: border-box;

  -moz-box-sizing: border-box;

  -webkit-box-sizing: border-box;

}



*::before,
*::after {

  box-sizing: border-box;

}



.common::after {

  content: '';

  position: absolute;

  width: 100%;

  height: 100%;

  left: 0;

  top: 0;

  background: #000;

}



body {

  background: var(--bg_clr);

  font-family: "Gilroy-SemiBold";

}



body.show {

  position: fixed;

  top: 0;

  width: 100%;

}



h1,
h2,
h3,
h4,
h5,
h6 {

  margin: 0;

  padding: 0;

  margin-bottom: 15px;

  line-height: 1.2;

  color: var(--black);

  font-weight: 700;

}



h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {

  margin-bottom: 0;

}



h1 {

  font-size: 52px;

}



h2 {

  font-size: 44px;

}



h3 {

  font-size: 36px;

}



h4 {

  font-size: 28px;

}



h5 {

  font-size: 24px;

}



h6 {

  font-size: 20px;

}



p {

  margin: 0;

  padding: 0;

  font-size: 20px;

  line-height: 1.6;

  margin-bottom: 25px;

  color: var(--black);

}



p:last-child {

  margin-bottom: 0;

}



.small {

  font-size: 16px;

}



ul,
ol {

  list-style-type: none;

  margin: 0;

  padding: 0;

}



a {

  text-decoration: none;

  text-transform: capitalize;

  display: inline-block;

  line-height: 1.2;

  color: inherit;

  font-family: inherit;

}



span {

  display: inline-block;

}



.section-heading {

  text-align: center;

  margin-bottom: 50px;

}



.btn-common {

  font-size: 20px;

  padding: 12px 40px;

  background: #000a20;

  color: #cbccd0 !important;

  border-radius: 10px;

  border: 1px solid transparent;

  display: inline-flex;

  align-items: center;

  justify-content: center;

}



.btn-common img {

  max-width: 30px;

  margin-right: 10px;

}



.cream-btn {

  background: var(--cream-bg);

  border-radius: 0;

  color: var(--black) !important;

  text-transform: capitalize;

  padding: 10px 50px;

}



section {

  padding-bottom: 100px;

  overflow: hidden;

}



.bg {

  padding: 100px 0;

}



.mobile {

  display: none !important;

}



.desktop {

  display: block !important;

}



img,
video {

  max-width: 100%;

}



.button-box {

  padding-top: 20px;

}



.button-box ul {

  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 15px;

}



.owl-theme .owl-dots .owl-dot span {

  background: var(--black);

}



.owl-theme .owl-dots .owl-dot.active span,

.owl-theme .owl-dots .owl-dot:hover span {

  background: var(--white);

  outline: 2px solid var(--white);

  outline-offset: 3px;

}



.owl-nav {

  margin-top: 0;

}



.owl-nav button {

  position: absolute;

  top: 50%;

  transform: translateY(-50%);

}



.owl-nav button.owl-prev {

  left: 0;

}



.owl-nav button.owl-next {

  right: 0;

}



.form-control-common {

  background: var(--white);

  border: 1px solid var(--border_clr);

  font-size: 20px;

  padding: 15px 20px 15px 20px;

  width: 100%;

  appearance: textfield;

  color: var(--black);

  border-radius: 8px;

  box-shadow: none;

  resize: none;

  outline: none;

  font-family: "Cera-GR-Medium";

}



.form-control-common::placeholder {

  color: var(--black);

  text-transform: capitalize;

}



.input-group {

  padding-bottom: 30px;

}



.section-heading h2 {

  color: var(--black_1C2931);

  font-family: "Gilroy-SemiBold";

  letter-spacing: 16px;

  text-transform: uppercase;

}



.border-btm {

  border-bottom: 1px solid #707070;

}



.gold-btn {

  padding: 20px 50px;

  border-radius: 50px;

  background: linear-gradient(217deg, #D0B773, #936D00);

  color: black !important;

  text-transform: uppercase;

  letter-spacing: 4px;

  border: none;

}



/* header css start ******************************************************************************/

@keyframes smoothScroll {

  0% {

    transform: translateY(-60px);

    opacity: 0;

  }



  100% {

    transform: translateY(0px);

    opacity: 1;

  }

}



/* #header.show {

    position: fixed;

    top: 0; 

    left: 0;

    width: 100%;

    animation: smoothScroll 1s forwards;

    z-index: 1000;

    box-shadow: 0 0 10px 2px #000;

    background: var(--black);

} */

#header {

  background: transparent;

  padding: 15px 0;

  transition: .5s all;

  position: relative;

  z-index: 99;

}



#header .header-box {

  display: flex;

  align-items: center;

  justify-content: space-between;

}



#header .logo-box img {

  max-width: 100%;

  width: 100%;

}



#header.show .logo-box img {

  max-width: 100%;

  width: 70%;

}



#header .main-nav .click-menu,

#header .main-nav .cancel-menu {

  display: none;

  cursor: pointer;

  position: relative;

  z-index: 11;

  width: 45px;

  height: 28px;

}



#header .main-nav .click-menu span,

#header .main-nav .cancel-menu span {

  width: 35px;

  height: 3px;

  background: var(--white);

  transition: .5s all ease-in-out;

  position: relative;

  border-radius: 5px;

}



#header .main-nav .click-menu span:nth-child(2) {

  width: 45px;

}





#header .main-nav .cancel-menu span {

  position: absolute;

  height: 4px;

}



#header .main-nav .cancel-menu span:first-child {

  transform: rotate(45deg);

}



#header .main-nav .cancel-menu span:last-child {

  transform: rotate(-45deg);

}



#header .main-nav {

  display: flex;

  align-items: center;

  flex-wrap: wrap;

  padding-left: 20px;

}



#header .button-box {

  margin-left: 20px;

  padding-top: 0;

}



#header .main-nav nav ul li {

  display: inline-block;

  position: relative;

  margin-right: 40px;

}



#header .main-nav nav ul li:last-child {

  margin-right: 0;

}



#header .main-nav nav ul li a {

  color: var(--white);

  padding: 5px;

  font-size: 20px;

  font-family: "Gilroy-Light";

  transition: .5s all;

}



#header .main-nav nav ul li a:hover {

  color: var(--cream-bg);

}



/* homeBanner css ******************************************************************************/

#homeBanner .homeBanner-part {

  /*  background: url("../images/bannerBg.png") no-repeat;
*/
  background-size: 100% 100%;

  background-position: center;

  min-height: 1000px;

  display: flex;

  align-items: center;

}



#homeBanner {

  margin-top: -180px;

}



#homeBanner .swiper-slide {

  text-align: center;

  font-size: 18px;

}



#homeBanner .swiper-slide .text-box {

  margin-bottom: 80px;

}



#homeBanner .swiper-slide .text-box h1 {

  color: var(--white);

  letter-spacing: 8px;

}



#homeBanner .swiper-pagination {

  position: relative;

  top: 180px;

  width: auto !important;

  left: auto !important;

  margin: 0;

  display: flex;

  justify-content: space-between;

}



#homeBanner .swiper-pagination-bullet {

  border-radius: 0;

  width: auto;

  height: auto;

  text-align: center;

  opacity: 1;

  background: transparent;

}



#homeBanner h2.letter {

  font-size: 80px;

  font-family: "Gilroy-Black";

  color: var(--gray_7E7E7E);

}



#homeBanner .swiper-pagination-bullet p {

  color: var(--gray_7E7E7E);

  text-transform: uppercase;

  letter-spacing: 4px;

}



#homeBanner .swiper-pagination-bullet-active h2.letter {

  color: var(--white);

}



#homeBanner .swiper-pagination-bullet-active p {

  color: var(--white);

}

#homeBanner .swiper-pagination-bullet:hover p,
#homeBanner .swiper-pagination-bullet:hover h2.letter {

  color: var(--white);

}





#homeBanner .swiper-slide .button-box ul {

  justify-content: center;

}



.swiper-button-next,

.swiper-button-prev {

  width: auto;

  height: auto;

  color: transparent;

  opacity: 1;

}



#homeBanner .swiper-button-next img,

.swiper-button-prev img {

  width: 100%;

  max-width: 60%;

}

video.mobile-video {
  display: none;
}

/* craft-section css ******************************************************************************/

#craft-section .img-box {

  position: relative;

  right: -300px;

}



#craft-section .craft-box .box.box2 {

  padding-left: 380px;

}



#craft-section .craft-box .text-box h2 {

  color: var(--black_1D1F22);

  font-family: "Gilroy-SemiBold";

  letter-spacing: 16px;

  line-height: 1.9;

  text-transform: uppercase;

  font-size: 34px;

}



#craft-section .craft-box .text-box p {

  font-size: 26px;

  font-family: "Gilroy-Light";



}



/* catalogue css ******************************************************************************/

#catalogue .nav-tabs {

  justify-content: space-between;

  padding: 0 50px;

}



#catalogue .nav-tabs .nav-link {

  border: none;

  background: transparent;

  font-family: "Gilroy-SemiBold";

  font-size: 26px;

  padding: 20px 20px;

  color: var(--black_1C2931);

  position: relative;

  transition: all 0.6ms ease-in;

}



#catalogue .nav-tabs .nav-item.show .nav-link::after,

#catalogue .nav-tabs .nav-link.active::after {

  content: '';

  position: absolute;

  width: 100%;

  height: 5px;

  left: 50%;

  bottom: -3px;

  border-left: none;

  background: var(--red);

  transform: translateX(-50%);

  border-radius: 50px;

}



#catalogue .scale {

  transform: scaleY(1.05);

  padding-top: 5px;

}



#catalogue .gallery-box-inner {

  margin-top: 80px;



}



#catalogue .gallery-box-inner .img-column {

  display: flex;

  flex-direction: column;

  height: 100%;

}



#catalogue .gallery-box-inner .img-column .img-box {

  position: relative;

  margin: 5px;

  height: 100%;

}



#catalogue .gallery-box-inner .img-column .img-box img {

  height: 100%;

}



#catalogue .gallery-box-inner .img-column .img-box .title {

  position: absolute;

  width: 100%;

  height: 100%;

  left: 0;

  top: 0;

  right: 0;

  bottom: 0;

  display: flex;

  align-items: center;

  justify-content: center;

  vertical-align: middle;

  background: #00000087;

  padding: 0 12px;

  text-align: center;

  opacity: 0;

}



#catalogue .gallery-box-inner .img-column .img-box .title p {

  text-transform: uppercase;

  color: var(--white);

  line-height: 1.3;

  opacity: 0;
  transition: 0.2s ease-in;

}

#catalogue .gallery-box-inner .img-column .img-box:hover .title {
  opacity: 1;
}

#catalogue .gallery-box-inner .img-column .img-box:hover .title p {
  opacity: 1;
}



#catalogue .catalogue-gallery-box .button-box {

  padding-top: 60px;

  display: none;

}



#catalogue .catalogue-gallery-box .button-box ul {

  justify-content: center;

}



#catalogue .catalogue-gallery-box .button-box ul li a {

  font-size: 24px;

  text-transform: uppercase;

  color: var(--gray_717171);

}



/* Our story css  *******************************************************************************/

#ourStory .our-story-part {

  background: url('../images/ourstory-bg.png');

  background-position: center;

  background-size: cover;

  padding: 200px 0 0;

  height: 750px;

}



#ourStory .our-story-part .section-heading h2 {

  color: var(--white);

}



#ourStory .content-box {

  width: 70%;

  margin: 0 auto;

  background: linear-gradient(transparent, #ffff);

  padding: 130px 100px;

  text-align: center;

  font-family: "Gilroy-Light";

  backdrop-filter: blur(20px);

  border: 1px solid #c5c4c4;

  margin-top: -380px;

}



/* client css  **********************************************************************************/

#client {

  overflow: visible;

  margin-top: 140px;

}



#client .client-part {

  background: url('../images/client-bg.png');

  background-size: cover;

  background-position: center;

}



#client .client-part .client-box {

  margin-top: 0;

  position: relative;

  top: -120px;

}



#client .client-box .img-box {

  position: relative;

  display: flex;

  justify-content: center;

}



#client .client-box .img-box img {

  width: 100%;

  max-width: 80%;

}



#client .client-box .img-box h4 {

  position: absolute;

  height: 100%;

  width: 100%;

  left: 50%;

  top: 50%;

  transform: translate(-50%, -50%);

  color: var(--white);

  font-family: "Gilroy-Heavy";

  display: flex;

  justify-content: center;

  align-items: center;

  font-size: 70px;

}



#client .client-box .title-text {

  text-align: center;

  margin-top: 30px;

}



#client .client-box .title-text h3 {

  color: var(--white);

  text-transform: capitalize;

  font-family: "Cera-GR-Medium";

  font-weight: normal;

}



/* enquireForm css ******************************************************************************/

#enquireForm .form-box .input-group .cream-btn {

  margin-top: 50px;

}



section#enquireForm .form-box .section-heading {

  margin-bottom: 100px;

}



section#enquireForm .form-box .section-heading h2 {

  text-transform: uppercase;

  font-size: 30px;

}

/******/
#enquireForm .form-box .input-group p {
  width: 100%;
}

#enquireForm .form-box .input-group p .wpcf7-form-control-wrap {
  width: 100%;
}

.input-group.p-0.justify-content-center p {
  width: auto;
  text-align: center;
}

.wpcf7-spinner {
  display: none;
}



/* footer css ******************************************************************************/

#footer {

  background: var(--black_1D1F22);

}



#footer .footer-part {

  padding: 50px 0 0;

}



#footer .top-box .logo-box img {

  max-width: 220px;

  margin-bottom: 30px;

}



#footer .top-box h5 {

  color: var(--white);

  height: 36px;

}



#footer .top-box p {

  color: var(--white);

  font-family: "Gilroy-Light";

  line-height: 2;

}

#footer .top-box p a {
  text-transform: lowercase;
}

#footer .top-box p a:hover {
  color: var(--white);
}



#footer .top-box p span {
  text-transform: capitalize;

  font-family: "Gilroy-SemiBold";



}



#footer .top-box .list-box li:not(:last-child) {

  margin-bottom: 20px;

}



#footer .top-box .link-box ul {

  display: flex;

  align-items: center;

  flex-wrap: wrap;

  column-gap: 10px;

  row-gap: 10px;

  column-gap: 30px;

}



#footer .top-box .link-box ul img {

  max-width: 40px;

}



#footer .end-box {

  margin-top: 20px;

  padding: 20px 0;

  border-top: 1px solid var(--gray_7E7E7E);

}



#footer .end-box .text-box.text-center p {

  color: var(--white);

  font-family: "Gilroy-Light";

}



.contact-box p {

  margin-bottom: 0;

}



.link-box {

  margin-bottom: 15px;

}



/*         /* Full-page banner styling */
.video-banner {
  position: relative;
  height: 100vh;
  /* Full height */
  width: 100%;
  overflow: hidden;
  min-height: 1080px;
  display: flex;
  align-items: center;
  background: url('./wp-content/uploads/2024/10/pc.mp4');
  background-size: cover;
  background-position: center;
}

/* Styling for the desktop video element */
.video-banner .desktop-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  transform: translate(-50%, -50%);
}

/* Styling for the mobile video element */
.video-banner .mobile-video {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  transform: translate(-50%, -50%);
}

/* Overlay content styling */
.banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 1;
}

/* Optional styling for text */
.banner-content h1 {
  font-size: 4rem;
  margin: 0;
}

.banner-content p {
  font-size: 1.5rem;
}

.video-container {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .video-banner {

    min-height: auto;

  }

  /* Hide desktop video and show mobile video */
  .video-banner .desktop-video {
    display: none;
  }

  .video-banner .mobile-video {
    display: block;
  }

  /* Adjust text size for smaller screens */
  .banner-content h1 {
    font-size: 2.5rem;
  }

  .banner-content p {
    font-size: 1rem;
  }
}