@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");

@font-face {
  font-family: "";
  src: url("NotoSerifJP-ExtraLight-Alphabetic.woff2") format("woff2"),
    url("NotoSerifJP-ExtraLight-Alphabetic.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "";
  src: url("NotoSerifJP-Light-Alphabetic.woff2") format("woff2"),
    url("NotoSerifJP-Light-Alphabetic.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "";
  src: url("NotoSerifJP-Medium-Alphabetic.woff2") format("woff2"),
    url("NotoSerifJP-Medium-Alphabetic.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "";
  src: url("NotoSerifJP-Regular-Alphabetic.woff2") format("woff2"),
    url("NotoSerifJP-Regular-Alphabetic.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "";
  src: url("NotoSerifJP-SemiBold-Alphabetic.woff2") format("woff2"),
    url("NotoSerifJP-SemiBold-Alphabetic.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "";
  src: url("NotoSerifJP-Black-Alphabetic.woff2") format("woff2"),
    url("NotoSerifJP-Black-Alphabetic.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "";
  src: url("NotoSerifJP-Bold-Alphabetic.woff2") format("woff2"),
    url("NotoSerifJP-Bold-Alphabetic.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
}

ul {
  padding: 0;
  margin: 0;
}

img {
  width: 100%;
}

body {
  box-sizing: border-box;
  font-family: "Inter";
  overflow-x: hidden !important;
}

body.home {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Serif JP";
  margin: 0;
}

:root {
  --black: #000;
  --white: #fff;
  --yellow: #e0a428;
  --gray: #d1d1d1;
  --text-gray: #787878;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  display: inline-block;
}

h1 {
  font-weight: 700;
  font-size: 70px;
  line-height: 70px;
  color: var(--black);
}

h2 {
  font-weight: 700;
  font-size: 48px;
  line-height: 70px;
  color: var(--black);
}

h3 {
  font-weight: 700;
  font-size: 38px;
  line-height: 55px;
  color: var(--black);
}

h4 {
  font-weight: 700;
  font-size: 56px;
  line-height: 67px;
  color: var(--black);
}

h5 {
  font-family: "Noto Serif JP";
  line-height: 55px;
  font-weight: 700;
  font-size: 38px;
  color: var(--black);
}

h6 {
  font-family: "Inter";
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
  color: var(--black);
}

p {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: var(--text-gray);
  margin: 0;
}

:focus-visible {
  outline: 0;
}

.container {
  max-width: 1620px;
  padding: 0 15px;
}

.border-black-btn {
  color: var(--black);
  border: 1px solid var(--black);
  padding: 13px 20px;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  transition: all 0.5s;
}

.border-black-btn:hover {
  background-color: var(--black);
  color: var(--white);
  transition: all 0.5s;
}

.border-black-btn:hover span {
  color: var(--white);
  transition: all 0.5s;
}

.border-black-btn span {
  margin-left: 10px;
}

/* header css start */

.header-sec {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background-color: var(--black);
  padding: 20px 0;
}

.dropdown-menu.show {
  margin-top: 30px;
}

.header-sec .navbar-light .navbar-toggler-icon {
  background-image: none;
  position: relative;
  border-bottom: 2px solid var(--white);
}

.header-sec .navbar-light .navbar-toggler-icon::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--white);
}

.header-sec .navbar-light .navbar-toggler-icon::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--white);
}

.dropdown-item:hover {
  color: var(--yellow);
  background-color: transparent;
  transition: 0.5s;
}

.dropdown-item {
  transition: 0.5s;
}

.active-two {
  color: var(--yellow);
}

.header-sec .navbar-nav .nav-item .nav-link {
  color: var(--white);
  padding: 0;
  font-size: 14px;
  line-height: 17px;
}

.header-sec .navbar-nav .nav-item {
  padding: 0 20px;
}

.header-sec .navbar-light .navbar-nav .nav-link:focus,
.header-sec .navbar-light .navbar-nav .nav-link:hover {
  color: var(--yellow);
}

.header-sec .navbar-nav .nav-item .nav-link.active {
  position: relative;
  color: var(--yellow);
}

.header-sec .nav-link.active::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  width: 22px;
  height: 14px;
  background-image: url(../images/header-dia.svg);
  background-repeat: no-repeat;
  transition: 0.5s;
  transform: translate(-50%, 0);
}

.header-sec .nav-link.active:hover::before {
  transform: translate(-50%, 0) rotateY(360deg);
  transition: 0.5s;
}

.header-logo {
  width: 230px;
}

.nav-inner {
  width: calc(100% - 230px);
}

.border-btn {
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: var(--white);
  border: 1px solid var(--white);
  border-radius: 0;
  padding: 12px 20px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.border-btn:hover {
  background-color: var(--white);
  color: var(--black);
  transition: 0.5s;
}

/* header css end */

/* banner css start */

.banner-sec {
  position: relative;
  height: 100vh;
}

.swiper,
.slider-wrapr {
  height: 100%;
}

.bg-three,
.bg-two,
.bg-one {
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
  height: 100%;
}

.bg-one {
  background-image: url(../images/slider-1.png);
}

.bg-two {
  background-image: url(../images/slider-2.png);
}

.bg-three {
  background-image: url(../images/slider-3.png);
}

.swiper_box {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}

.swiper_box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 24%;
  height: 100%;
  background-color: var(--black);
  z-index: -1;
}

.slide-inner-txt {
  width: 100%;
  max-width: 690px;
}

.slide-inner-txt h1 {
  color: var(--white);
}

.slide-inner-txt p {
  margin: 22px 0 60px;
  color: var(--gray);
}

.banner-sec .swiper .swiper-button-prev {
  right: 230px;
  left: inherit;
}

.banner-sec .swiper-button-prev,
.banner-sec .swiper-button-next {
  width: 46px;
  right: 160px;
  bottom: 40px;
  top: inherit;
}

.banner-sec .swiper-button-prev:after {
  color: transparent;
  background-image: url(../images/arrow-left.svg);
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  background-position: 13px;
  transition: 0.5s ease;
}

.banner-sec .swiper-button-prev,
.banner-sec .swiper-button-next {
  background-color: transparent;
  border: 1px solid var(--white);
  border-radius: 50%;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.banner-sec .swiper-button-next:after {
  color: transparent;
  background-image: url(../images/arrow-right.svg);
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  background-position: 17px;
  transition: 0.5s ease;
}

.banner-sec .swiper-button-prev:hover,
.banner-sec .swiper-button-next:hover {
  background-color: #fff;
  background-position: 17px;
  transition: 0.5s ease;
}

.banner-sec .swiper-button-prev:hover::after,
.banner-sec .swiper-button-next:hover::after {
  filter: invert(1);
  -webkit-filter: invert(1);
}

.banner-sec .swiper-button-prev.swiper-button-disabled,
.banner-sec .swiper-button-next.swiper-button-disabled {
  opacity: 1;
  cursor: pointer;
  pointer-events: auto;
}

.scroll-sec {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translate(0, -50%);
  z-index: 9;
}

.scroll-img img {
  max-width: 30px;
}

.scroll-txt h5 {
  font-weight: 400;
  font-size: 19px;
  line-height: 24px;
  color: var(--white);
  margin-bottom: 10px;
}

/* banner css end */

/* certified-sec css star */

.certified-sec {
  padding: 70px 0;
}

.certified-txt h3 {
  color: var(--black);
  text-align: center;
  margin-bottom: 20px;
}

.certi-img-main {
  display: flex;
  justify-content: center;
}

.certi-img img {
  max-width: 300px;
}

/* certified-sec css end */

/* polish-sec css start */

.polish-sec {
  background-color: var(--black);
}

.font_white {
  color: var(--white);
  position: relative;
}

.polish-txt p {
  color: #787878;
  font-size: 16px;
}

.polish-txt h4 {
  margin-bottom: 30px;
  display: inline-block;
}
.polish-sec a:hover img {
  filter: brightness(0.5);
}
.polish-sec a img {
  margin-left: 10px;
}

.font_white::after {
  content: "";
  position: absolute;
  background-image: url(../images/Divider.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  width: 100%;
  height: 24px;
  bottom: -10px;
  left: 0;
}

.font_white span {
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 700;
  font-size: 75px;
  color: transparent;
  line-height: 130%;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: white;
}
.font_black::after {
  content: "";
  position: absolute;
  background-image: url(../images/black-Divider.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  width: 325px;
  height: 24px;
  bottom: -10px;
  left: 50%;
  transform: translate(-50%, 0);
}

.font_black {
  position: relative;
  display: inline-block;
  color: var(--black);
}

.font_black span {
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 700;
  font-size: 75px;
  color: transparent;
  line-height: 130%;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: rgb(0, 0, 0);
}

.journey_diamond_wrap {
  background-color: var(--white);
}

.journey_diamond_inner {
  background-image: linear-gradient(
    to top,
    rgba(255, 255, 255, 0),
    rgb(255, 255, 255)
  );
  text-align: center;
  padding-bottom: 50px;
}

.journey_diamond_wrap h6 {
  font-family: "Inter";
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
  color: #787878;
  margin-top: 71px;
  margin-bottom: 70px;
}
.journey_diamond_wrap .row {
  border-bottom: 1px solid #787878;
}

.journey_diamond_wrap .row:first-child {
  border-bottom: 0px solid #787878;
}

.diamond_img1,
.diamond_img2,
.diamond_img3,
.diamond_img4,
.diamond_img5 {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0;
}
.diamond_img1 {
  background-image: url(../images/diamond_img1.png);
  height: auto !important;
}
.diamond_img2 {
  background-image: url(../images/diamond_img2.png);
  height: auto !important;
}
.diamond_img3 {
  background-image: url(../images/diamond_img3.png);
  height: auto !important;
}
.diamond_img4 {
  background-image: url(../images/diamond_img4.png);
  height: auto !important;
}
.diamond_img5 {
  background-image: url(../images/diamond_img5.png);
  height: auto !important;
}
.img_dimond_put img {
  width: 100%;
}
.img_dimond_put {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  max-width: 370px;
}
/* polish-sec css end */
/* our_story_section css start */
.our_story_section {
  padding: 100px 0;
}

.diamond_slider_img img {
  max-width: 178px;
}
.owl-carousel .owl-item img {
  display: inherit;
  width: inherit;
  margin: 20px auto 0;
  mix-blend-mode: darken;
  transition: 0.5s;
}
.our_story_section .owl-item:hover .diamond_slider_img img {
  transform: scale(1.2);
  transition: 0.5s;
}
.diamond_slider_img {
  width: 285px;
  height: 285px;
  background: #f9f9f9;
  text-align: center;
  border-radius: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  transition: 0.5s;
}
.owl-theme .owl-dots {
  display: none;
}
.our_story_section .owl-carousel .owl-nav {
  margin-top: 70px;
}
.our_story_section .owl-carousel .owl-nav button.owl-next {
  position: relative;
  font-size: 0;
  width: 45px;
  height: 20px;
  margin-left: 15px;
  background-color: transparent;
}

.owl-prev:hover::after,
.owl-next:hover::after {
  transform: scale(1.2);
  transition: 0.5s;
}

.our_story_section .owl-carousel .owl-nav button.owl-next::after {
  content: "";
  background-image: url(../images/right_arrow_slider.svg);
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.5s;
}
.our_story_section .owl-carousel .owl-nav button.owl-prev {
  position: relative;
  font-size: 0;
  margin-right: 15px;
  width: 45px;
  height: 20px;
  background-color: transparent;
}

.our_story_section .owl-carousel .owl-nav button.owl-prev::after {
  content: "";
  background-image: url(../images/left_arrow_slider.svg);
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.5s;
}
/* our_story_section css end */

/* Export_section css start */
.export_section {
  background-image: url(../images/export_section_bg_img.png);
  padding: 40px 0;
  text-align: center;
}
.export_section_inner {
  position: relative;
  width: 900px;
  margin: 0 auto;
  height: 900px;
}
.export_section_inner .Export_img_1,
.export_section_inner .Export_img_2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
}
.Export_img_3 {
  overflow: hidden;
}
.export_section_inner > div img {
  width: 100%;
  height: 100%;
}
.Export_img_1 {
  width: 130px;
}
.Export_img_2 {
  width: 200px;
}
.Export_img_2 img {
  animation: spintwo 20s linear infinite;
  border-radius: 100%;
}
.Export_img_3 img {
  animation: spin 50s linear infinite;
  border-radius: 100%;
  -webkit-animation: spin 50s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spintwo {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

/* Export_section css end */

/* why_lab_grown_section css start   */
.why_lab_grown_section {
  padding: 100px 0;
}
.why_lab_grown_hedding h2 {
  margin-bottom: 40px;
}
.why_lab_grown_wrap {
  padding: 15px;
  border: 1px solid #ececec;
  height: 100%;
  border-radius: 5px;
  transition: 0.5s;
}
.why_lab_grown_wrap:hover {
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.08);
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.why_lab_grown_wrap p {
  font-size: 14px;
  line-height: 24px;
  color: var(--text-gray);
}
.why_lab_grown_wrap h5 {
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 5px;
}
.why_lab_grown_wrap img {
  margin-bottom: 20px;
  max-width: 50px;
}
/* why_lab_grown_section css end */

/* diamond-real-sec css start */

.diamond-real-sec {
  padding: 90px 0 100px;
}

.diamond-real-sec .font_black::after {
  display: none;
}

.real-txt h2 {
  margin-bottom: 10px;
}

.real-main {
  position: relative;
  z-index: 1;
  height: 100%;
}

.real-main::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -150px;
  width: 560px;
  height: 420px;
  background-image: url(../images/real-after-img.png);
  background-repeat: no-repeat;
  z-index: -1;
}

/* diamond-real-sec css end */

/* gallery_sec css start */

.gallery_sec {
  background-color: var(--black);
  padding: 80px 0 30px;
}

.gallry-txt h2 span {
  -webkit-text-stroke-color: var(--white);
}

.gallry-txt h2 {
  color: var(--white);
}

.gallry-txt .font_black::after {
  background-image: url(../images/white-Divider.svg);
}

.gallery_sec .swiper-slide.swiper-slide-active {
  transform: scale(0.8);
  transition: 0.5s;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
}

.gallery_sec .swiper-slide {
  transform: scale(0.5);
  transition: 0.5s;
  position: relative;
  z-index: 1;
  -webkit-transform: scale(0.5);
  -moz-transform: scale(0.5);
  -ms-transform: scale(0.5);
  -o-transform: scale(0.5);
}

.gallery_sec .swiper-slide.swiper-slide-active::after {
  content: "";
  position: absolute;
  top: -36px;
  right: -108px;
  width: 625px;
  height: 900px;
  background-image: url(../images/galley-fram.svg);
  background-repeat: no-repeat;
  background-size: 630px;
  z-index: -1;
}
.gallery_sec .swiper-slide.swiper-slide-active::before {
  content: "";
  position: absolute;
  top: 32%;
  right: -41px;
  width: 93px;
  height: 155px;
  background-image: url(../images/leaf.svg);
  background-repeat: no-repeat;
  background-size: 93px;
  z-index: 1;
}

.gallery-img {
  position: relative;
}

.gallery_sec .swiper-slide.swiper-slide-active .gallery-img::before {
  content: "";
  position: absolute;
  bottom: -45px;
  left: -6px;
  width: 202px;
  height: 202px;
  background-image: url(../images/Export_img_2.png);
  background-repeat: no-repeat;
  background-size: 170px;
  animation: spinn 20s linear infinite;
  background-position: center;
  -webkit-animation: spingalley 10s linear infinite;
}

@keyframes spingalley {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.gallery_sec .swiper-slide.swiper-slide-active .gallery-img::after {
  content: "";
  position: absolute;
  bottom: 14px;
  left: 11%;
  width: 82px;
  height: 82px;
  background-image: url(../images/Export_img_1.png);
  background-repeat: no-repeat;
  background-size: 79px;
}

/* 
.gallery-slider {
    margin-top: 50px;
} */

.gallery_sec.banner-sec {
  height: auto;
  margin-top: 0;
}

.gallery_sec.banner-sec .swiper-button-prev,
.gallery_sec.banner-sec .swiper-button-next {
  top: 40px;
  bottom: auto;
}

/* gallery_sec css end */

/* testimonial css start */

.testimonials_sec {
  padding: 80px 0 0;
}

.testi-inner-main {
  background: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: 5px;
  padding: 30px;
  transition: 0.5s;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  height: 100%;
}

.test-first-img img {
  max-width: 80px;
}

.testimonials_sec .testi-inner-main {
  border-radius: 21px;
  -webkit-border-radius: 21px;
  -moz-border-radius: 21px;
  -ms-border-radius: 21px;
  -o-border-radius: 21px;
}

.testimonials_sec .swiper {
  padding: 0 0 150px;
}

.testi-head {
  text-align: center;
  margin-bottom: 80px;
}

.testi-inner-main:hover {
  background: #fafafa;
  box-shadow: 0px 5.2579px 61.4px rgba(21, 21, 21, 0.15);
  transition: 0.5s;
}

.test-profile {
  margin-top: 50px;
}

.test-first-img {
  margin-bottom: 20px;
}

.test-profile h4 {
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  color: var(--black);
}

.test-profile p {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: var(--black);
}

.testimonials_sec .swiper-button-next::after {
  background-image: url(../images/tast-right-dark.svg);
  color: transparent;
  background-repeat: no-repeat;
}

.testimonials_sec .swiper-button-prev::after {
  background-image: url(../images/tast-left-dark.svg);
  color: transparent;
  background-repeat: no-repeat;
}

.testimonials_sec .swiper-button-next {
  left: 50%;
  transform: translate(-9%, 0);
}

.testimonials_sec .swiper-button-prev {
  left: 50%;
  transform: translate(-81%, 0);
  -webkit-transform: translate(-81%, 0);
  -moz-transform: translate(-81%, 0);
  -ms-transform: translate(-81%, 0);
  -o-transform: translate(-81%, 0);
}

.testimonials_sec .swiper-button-prev,
.testimonials_sec .swiper-button-next {
  top: inherit;
  bottom: 50px;
  width: 50px;
  height: 50px;
}

.testimonials_sec .swiper-button-prev::after,
.testimonials_sec .swiper-button-next::after {
  border: 1px solid var(--black);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: 0.5s;
  background-position: 19px;
  background-size: 12px;
}

.testimonials_sec .swiper-button-prev:hover:after,
.testimonials_sec .swiper-button-next:hover::after {
  background-color: var(--black);
  transition: 0.5s;
}

.testimonials_sec .swiper-button-prev:hover:after {
  background-image: url(../images/tast-left-light.svg);
}

.testimonials_sec .swiper-button-next:hover:after {
  background-image: url(../images/tast-right-light.svg);
}

.testimonials_sec .swiper-button-next::after,
.testimonials_sec .swiper-button-prev::after {
  transform: inherit;
  -webkit-transform: inherit;
  -moz-transform: inherit;
  -ms-transform: inherit;
  -o-transform: inherit;
}

.testimonials_sec .swiper-button-prev::after {
  background-position: 17px;
}

/* testimonial css end */

/* footer css start */

.footer_sec {
  background-color: var(--black);
  padding: 100px 0 70px;
}

.footer-logo img {
  width: 100%;
  max-width: 250px;
}

.contact-main {
  margin-top: 60px;
}

.contact-main ul li {
  margin-bottom: 20px;
}

.contact-main ul li a span img {
  width: auto;
}

.contact-main ul li a {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #ffffff;
  display: flex;
  padding-right: 130px;
  transition: 0.5s;
}

.contact-main ul li a:hover {
  color: var(--yellow);
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.footer-head h3 {
  font-weight: 500;
  font-size: 23px;
  line-height: 32px;
  color: var(--white);
}

.footer_menu ul {
  margin-top: 20px;
}

.footer_menu ul li {
  margin: 10px 0;
}

.footer_menu ul li a {
  color: var(--white);
  transition: 0.5s;
  display: inline-block;
}

.footer_menu ul li a:hover {
  color: var(--yellow);
  transition: 0.5s;
}

.footer_menu ul li a span {
  width: 45px;
  height: 45px;
  color: var(--white);
  border: 1px solid var(--white);
  border-radius: 50%;
  display: inline-block;
  font-size: 21px;
  line-height: 43px;
  text-align: center;
  transition: 0.5s;
  margin-right: 15px;
}

.footer_menu.footer-right ul li {
  margin: 16px 0;
}

.footer_menu.footer-right ul li a {
  display: flex;
  align-items: center;
}

.footer_menu.footer-right ul li a:hover span {
  background-color: var(--white);
  color: var(--black);
  transition: 0.5s;
}

.email-txt h3 {
  text-align: center;
  color: var(--white);
}

.email-txt p {
  font-size: 15px;
  line-height: 22px;
  text-align: center;
  color: var(--white);
  margin-bottom: 40px;
}

.submit-btn,
.input-form input {
  width: 100%;
}

.input-form input {
  margin-bottom: 30px;
  padding: 11px 13px;
}

.submit-btn {
  border: 1px solid var(--white);
  background-color: transparent;
  color: var(--white);
  font-family: "Inter";
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  padding: 11px 13px;
  transition: all 0.5s;
}

.submit-btn:hover {
  background-color: var(--white);
  color: var(--black);
  transition: all 0.5s;
}

.right-footer .footer-head {
  margin-top: 40px;
}

.right-footer .footer_menu ul {
  margin: 10px 0 0;
}

.left-footer {
  position: relative;
  z-index: 1;
}

.left-footer::after {
  content: "";
  position: absolute;
  top: -16px;
  right: 30px;
  width: 80px;
  height: 80px;
  background-size: 80px;
  background-image: url(../images/mishwa-round.png);
  background-repeat: no-repeat;
  animation: spin 50s linear infinite;
  z-index: -1;
}

.footer-bottom {
  border-top: 1.5px solid #424242;
  background-color: var(--black);
  padding: 19px 0;
}

.footer-bottom-txt p {
  color: var(--white);
  text-align: center;
}

/* footer css end */

/* inner banner css start */

.inner-bnner {
  background-image: url(../images/banner-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0;
  margin-top: 88px;
}

.banner-inner-txt h3 {
  text-align: center;
  color: var(--white);
}
/* inner banner css end */

/* our-vision css strat */

.our-inner-txt p {
  margin-top: 20px;
}

.our-txt {
  margin-bottom: 50px;
  padding-right: 110px;
}

.our-vision {
  padding: 80px 0;
}

/* our-vision css strat */

/* our-story-sec css start */

.our-story-sec {
  background-image: url(../images/our-story-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 0;
}

.our-story-main {
  background-image: url(../images/bluer-bg.png);
  padding: 70px 65px;
  position: relative;
  border-image-source: linear-gradient(to left, #eabfff, #98f9ff) !important;
  border: 5px solid;
  border-image-slice: 1;
  border-width: 2px;
  background-size: cover;
}

.story-txt {
  margin-top: 40px;
}

.story-txt p {
  margin: 15px 0;
  font-size: 18px;
  line-height: 28px;
  color: var(--gray);
}

/* our-story-sec css end */

/* why_choos_sec css start */

.why_choos_sec {
  padding: 100px 0;
}

.why_choos_head {
  margin-bottom: 50px;
}

.why-immer-img img {
  max-width: 50px;
}

.why_choos_sec .testi-inner-main h5 {
  font-weight: 900;
  font-size: 25px;
  line-height: 36px;
  margin: 20px 0 5px;
}

/* why_choos_sec css end */

/* year-sec css start */

.year-sec {
  padding: 90px 0;
}

.year-txt .count-nbr {
  display: flex;
  justify-content: center;
  align-items: center;
}

.year-txt .count-nbr span {
  font-size: 27px;
  line-height: 30px;
  margin-left: 10px;
}

/* year-sec css end */

/* video_sec css start */

.video_sec .container{
  max-width: 100%;
}

/* video_sec css end*/

/* spread_sec css start */

.spread_sec {
  padding: 100px 0;
}

.spread-txt p {
  padding-right: 80px;
}

.spread-inner {
  margin-top: 40px;
}

.spread-img {
  text-align: center;
}

/* spread_sec css end */

/* shopping-sec css star */

.shopping-sec {
  background-color: var(--black);
  padding: 60px 0;
}

.shopping-inner {
  margin-top: 30px;
}

.shopping-inner p{
  color: var(--gray);
}

.shopping-img img {
  max-width: 540px;
}

.shopping-inner h6 {
  color: var(--gray);
  margin-bottom: 15px;
}

/* shopping-sec css end */

/* service_sec css start */

.service-head p {
  width: 100%;
  max-width: 950px;
  margin: 30px auto 0;
}

.service_sec {
  padding: 90px 0;
}

.service-inner {
  margin-top: 100px;
}

.service-txt h5 {
  font-size: 18px;
  line-height: 24px;
  margin-top: 25px;
}

.service-txt p {
  margin-top: 5px;
  font-size: 14px;
  line-height: 24px;
}

/* service_sec css end */

/* clarity_sec css start */

.tab-inner ul {
  justify-content: center;
}

.clarity-main {
  display: flex;
  align-items: center;
}

.clarity-img {
  width: 70px;
  position: relative;
}

.clarity-img h6 {
  font-family: "Noto Serif JP";
  font-weight: 600;
  font-size: 27px;
  line-height: 39px;
  position: absolute;
  top: -20px;
  right: 15px;
  color: var(--text-gray);
}

.clarity-txt h6 {
  color: var(--text-gray);
}

.clarity_sec .nav-link.active .clarity-txt h6 {
  color: var(--white);
}

.clarity_sec .nav-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -13px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--yellow);
  border-radius: 2px;
}

.clarity_sec .nav-link.active .clarity-img h6 {
  color: var(--white);
}

.clarity-txt h6 {
  margin-left: 25px;
}

.clarity_sec .nav-tabs {
  border-bottom: 0;
}

.clarity_sec .nav-tabs .nav-link.active {
  position: relative;
  color: var(--white);
  background-color: transparent;
  border-color: transparent;
}

.clarity_sec .nav-tabs .nav-link {
  color: var(--text-gray);
}

.clarity_sec .nav-tabs .nav-link:hover {
  border-color: transparent;
}

.clarity_sec {
  background-color: var(--black);
  padding: 40px 0 50px;
  background-image: url(../images/tab-bg.png);
}

.tab-inner ul .nav-item {
  width: 100%;
  max-width: 280px;
}

.tab-txt {
  margin-top: 60px;
}

.tab-txt .gallry-txt p {
  text-align: center;
  margin: 30px 0 0;
  color: var(--gray);
}

.tab--inner-img {
  margin-top: 70px;
}

.tab--inner-img img {
  max-width: 1410px;
}

.clarity-text {
  width: 100%;
  max-width: 1270px;
  margin: 70px auto 0;
}

.clarity-text .row {
  background: rgb(68 68 68 / 27%);
  border: 1px solid #ffffff;
  box-shadow: 0px 4px 14px rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12.5px);
  align-items: center;
}

.clarity-inner-text {
  padding: 25px 55px;
}

.clarity-inner-text h4 {
  color: var(--white);
}

.clarity-inner-text p {
  font-size: 16px;
  line-height: 24px;
  margin: 15px 0;
  color: var(--gray);
}

/* clarity_sec css end */

/* customize_sec css start*/

.customize_sec .real-main::after {
  display: none;
}

.btn-main {
  margin-top: 60px;
}

/* customize_sec css end*/

/* different-sec css strat */

.different-txt p span {
  font-weight: 700;
  display: block;
}

.different-txt p {
  text-align: center;
  width: 100%;
  max-width: 800px;
  margin: 0 auto 0;
}

.different-txt {
  margin: 40px 0 70px;
}

.between-txt h4 {
  color: var(--white);
}

.between-box-mian {
  border: 6px solid #787878;
  background-color: var(--black);
  padding: 40px;
  height: 100%;
}

.between-img img {
  min-height: 440px;
}

.bottom-txt p {
  color: var(--white);
  margin-top: 30px;
}

.diference_sec {
  padding-bottom: 80px;
}

.vs-txt h4 {
  color: var(--black);
}

.vs-txt {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
}

/* different-sec css end */

/* grown_sec css start */

.grown_sec {
  padding: 100px 0;
}


.grown-txt h3{
    color: var(--white);
}

.grown_sec.grow_dark{
    background-color: var(--black);
}

.grown-head h6 {
  font-family: "Inter";
  font-style: normal;
  color: #787878;
  margin-top: 40px;
}

.grown-inner {
  margin-top: 50px;
}

.grown-gif {
  border: 1px solid #000000;
  border-radius: 203px;
  padding: 36px 54px;
  box-shadow: 0 -16px 0 -1px rgba(0, 0, 0, 1);
  position: relative;
}

.grow_dark .grown-gif::after {
    filter: contrast(0);
}

.grow_dark .grown-txt p{
    color: var(--gray);
}

.grow_dark .grown-gif {
  border: 1px solid #000000;
  background-color: var(--white);
  border-radius: 203px;
  padding: 36px 54px;
  box-shadow: 0 -16px 0 -1px #fff;
  position: relative;
}

.grown-wrap {
  padding: 40px 0;
  position: relative;
  z-index: 1;
}

.grow_dark .grown-wrap::after{
  background-image: url(../images/right-shap-white.svg);
}

.grow_dark .grown-wrap::before{
  background-image: url(../images/left-shap-white.svg);
}

.grown-wrap::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 50%;
  width: 160px;
  height: 120px;
  background-image: url(../images/right-shap.svg);
  background-repeat: no-repeat;
  transform: translate(-50%, 0);
  z-index: -1;
  display: none;
}

.grown-wrap::before {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 50%;
  width: 160px;
  height: 120px;
  background-image: url(../images/left-shap.svg);
  background-repeat: no-repeat;
  transform: translate(-50%, 0);
  z-index: -1;
  display: none;
}

.grown-wrap:nth-child(odd)::after {
  display: block;
}

.grown-wrap:nth-child(even)::before {
  display: block;
}

.grown-wrap:last-child::after,
.grown-wrap:last-child::before {
  display: none;
}

.grown-gif::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 84px;
  background-repeat: no-repeat;
  background-image: url(../images/star.png);
}

/* grown_sec css end */

/* prefer_sec css start */

.prefer_sec {
  padding-bottom: 80px;
}

.prefer_sec.prefer_dark{
    background-color: var(--black);
}

.prefer_head p {
  width: 100%;
  max-width: 960px;
  margin: 30px auto 0;
}

.prefer_dark .table-bottom p,
.prefer_dark .prefer_head p{
    color: var(--gray);
}

.prefer_dark .tabl-box tbody tr td{
    background-color: var(--white);
}
.prefer_dark .table-bottom h6{
    color: var(--white);
}

.tabl-box {
  width: 100%;
  max-width: 1170px;
  margin: 50px auto 0;
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.07);
}

.tabl-box thead tr {
  text-align: center;
}

.tabl-box tr td {
  vertical-align: middle;
}

.tabl-box table {
  border: 1px solid #ededed;
}

.table-img img {
  max-width: 160px;
}

.table-txt h6 {
  font-family: "Inter";
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #333333;
}

.table-img {
  text-align: center;
}

.tabl-box tbody tr td {
  padding: 15px 25px;
}

.tabl-box thead tr th {
  background-color: var(--black);
  padding: 12px 25px;
}

.tabl-box thead tr th:first-child {
  border-radius: 10px 0 0 0;
}

.tabl-box thead tr th:last-child {
  border-radius: 0 5px 0 0;
}

.table-bottom {
  width: 100%;
  max-width: 990px;
  margin: 80px auto 0;
}

.table-bottom h6 {
  color: var(--black);
  margin-bottom: 10px;
  font-weight: 700;
}

/* prefer_sec css end */

/* our-office-sec css start */

.our-office-sec {
  padding: 90px 0 60px;
}

.address-txt h6,
.location-txt h4 {
  color: var(--black);
}

.address-txt ul li h6 {
  margin: 15px 0;
    width: calc(100% - 30px);
    padding-left: 14px;
}

.address-txt ul li{
  display: flex;
  align-items: center;
}

.office-img{
    position: relative;
}

.location-txt{
    position: absolute;
    bottom: 25px;
    left: 25px;
}

.location-txt h4{
    color: var(--white);
    font-size: 56px;
    line-height: 67px;
}

.offic_main{
    margin-bottom: 40px;
}

.location-txt h6{
    color: var(--white);
    font-size: 20px;
    line-height: 27px;
}

.address-txt ul li span{
    width: 30px;
}

.address-txt ul li a,
.address-txt ul li h6 {
  color: var(--text-gray);
  font-size: 20px;
  line-height: 27px;
  transition: 0.5s;
}

.address-txt ul li a:hover h6 {
  color: var(--black);
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.address-txt ul li a:hover {
  color: var(--black);
  transition: 0.5s;
}

.main-location {
  margin-top: 50px;
}


.our-office-sec .swiper-pagination{
    bottom: 20px;
}

.our-office-sec .swiper{
    padding-bottom: 70px;
}

.our-office-sec .swiper-pagination-bullet-active {
    background: #000;
}

/* our-office-sec css end */

/* map_sec cs start */

.map-inner iframe {
  height: 650px;
}

/* map_sec cs end */

/* contact_form_sec css start */

.contact_form_sec {
  padding: 90px 0;
}


.contact-right ul li a span {
  width: 40px;
  height: 40px;
  display: inline-block;
  border-radius: 50px;
  background-color: var(--black);
  text-align: center;
  color: var(--white);
  line-height: 40px;
  margin-right: 20px;
  transition: 0.5s;
  border: 1px solid var(--black);
}

.contact-right ul li a span:hover {
  background-color: var(--white);
  color: var(--black);
  transition: 0.5s;
}

.contact-form form {
  box-shadow: 0px 6px 34px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 30px;
}

.input-inner-box {
  margin: 10px 0;
}

textarea,
input {
  border: 1px solid #ebebeb;
  padding: 10px;
}

.input-inner-box label {
  font-family: "Inter";
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  margin-bottom: 10px;
  color: #333333;
}

.form-btn {
  text-align: center;
  margin-top: 30px;
}

.fomt-txt {
  margin-bottom: 20px;
}

/* contact_form_sec css end */

/* login_sec css start */

.login_sec {
  background-image: url(../images/login-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 90px 0;
  margin-top: 84px;
}

.back-wrap h5 {
  display: flex;
  align-items: center;
  font-size: 30px;
  line-height: 43px;
  color: var(--white);
  margin-top: 100px;
}

.back-wrap h5 span {
  width: 35px;
  height: 48px;
  margin-right: 10px;
}

.log-form {
  background: #ffffff;
  box-shadow: 0px 6px 34px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  padding: 30px;
}

.log_main {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lod-txt {
  margin: 40px 0 50px;
}

.login_sec ::placeholder {
  font-size: 14px;
  line-height: 17px;
}

.login_sec .input-inner-box {
  margin: 0 0 30px;
}

.input-inner-box a {
  width: 100%;
  text-align: end;
}

.pass-show {
  position: relative;
}

.pass-show span {
    font-size: 13px;
    line-height: 17px;
    display: inline-block;
}

.pass-show span.toggle-password{
  position: absolute;
  right: 10px;
  top: 15px;
  font-size: 14px;
  color: var(--text-gray);
}

.register-txt {
  margin-top: 30px;
}

.register-txt p a {
  color: var(--black);
  text-decoration: revert;
  font-weight: 600;
  transition: 0.5s;
}

.register-txt p a:hover {
  color: var(--yellow);
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.lod-txt h4 {
  font-size: 48px;
  line-height: 53px;
}

/* login_sec css end */

/* register_sec css start */

.register_sec .lod-txt {
  margin: 10px 0 30px;
}

.register_sec .border-black-btn {
  padding: 10px 20px;
  font-size: 14px;
  line-height: 19px;
}

.register_sec input {
  padding: 8px 10px;
}

.register_sec .lod-txt h4 {
  font-size: 41px;
  line-height: 48px;
}

.register_sec .logo-login img {
  max-width: 180px;
}

.register_sec .pass-show input {
  padding: 8px 50px 8px 10px;
}

.register_sec .log-form {
  padding: 20px 30px;
}

.register_sec .register-txt {
  margin-top: 20px;
}

.register_sec.login_sec .input-inner-box {
  margin: 0 0 20px;
}

.register_sec .input-inner-box label {
  margin-bottom: 4px;
}

.form-select:focus {
  border-color: #ebebeb;
  outline: 0;
  box-shadow: none;
}

.form-select {
  color: var(--text-gray);
  border-color: #ebebeb;
  border-radius: 0;
  padding: 10px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

option {
  font-size: 14px;
}

/* register_sec css END */

/* loader css star */

.loader_video_sec video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.loader_video_sec {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999999;
  top: 0;
  left: 0;
}

.logo-video {
  position: absolute;
  top: 50px;
  left: 50px;
  z-index: 999999;
  width: 300px;
}

.skip-btn a {
  border-color: var(--white);
  color: var(--white);
}

.skip-btn a:hover {
  background-color: var(--white);
  color: var(--black);
}

.skip-btn {
  position: absolute;
  bottom: 50px;
  right: 50px;
  z-index: 99999999;
}

/* loader css end */

@media (max-width: 1620px) {
  .container {
    max-width: 1440px;
  }
  .our_story_section .owl-carousel .owl-nav {
    display: block;
  }
  .gallery_sec .swiper-slide.swiper-slide-active::after {
    top: -38px;
    right: -164px;
    background-size: 560px;
  }
  .gallery_sec .swiper-slide.swiper-slide-active .gallery-img::after {
    left: 12%;
  }
  .left-footer::after {
    right: 0;
  }
  .forgot_pass .lod-txt h4 {
    font-size: 38px;
    line-height: 44px;
  }
}

@media (max-width: 1440px) {
  .container {
    max-width: 1280px;
  }
  .address-txt ul li a, .address-txt ul li h6, .location-txt h6 {
    font-size: 17px;
    line-height: 25px;
}
  .contact-right h4 {
    font-size: 41px;
    line-height: 54px;
  }
  .contact-right p {
    font-size: 14px;
    line-height: 23px;
  }
  .our-office-sec {
    padding: 50px 0 60px;
  }
  .location-txt h4 {
    font-size: 40px;
    line-height: 55px;
  }
  .address-txt ul li h6,
  .location-txt h6 {
    font-size: 17px;
    line-height: 24px;
  }
  .between-img img {
    min-height: 360px;
  }
  .between-txt h4 {
    font-size: 40px;
    line-height: 48px;
  }
  .gallery_sec .swiper-slide.swiper-slide-active .gallery-img::after {
    left: 14%;
  }
  .left-footer::after {
    right: 0;
    top: -76px;
  }
  .gallery_sec .swiper-slide.swiper-slide-active::after {
    top: -36px;
    right: -90px;
    width: 495px;
    height: 710px;
    background-size: 500px;
  }

  h2 {
    font-weight: 700;
    font-size: 38px;
    line-height: 63px;
  }

  .real-main::after {
    bottom: -100px;
    left: -70px;
  }

  .slide-inner-txt p {
    max-width: 500px;
  }
}

@media (max-width: 1280px) {
  .container {
    max-width: 1120px;
  }
  .address-txt ul li span {
    width: 25px;
}
  
  .address-txt ul li a, .address-txt ul li h6, .location-txt h6 {
    font-size: 15px;
    line-height: 25px;
}
  .count {
    line-height: 55px;
    font-size: 38px;
  }
  .fomt-txt h5 {
    font-size: 37px;
    line-height: 45px;
  }
  .tab-inner ul .nav-item {
    max-width: 240px;
  }
  .clarity-txt h6 {
    margin-left: 20px;
    font-size: 18px;
    line-height: 22px;
  }
  .clarity-img {
    width: 60px;
  }
  .clarity-img h6 {
    font-size: 23px;
    line-height: 30px;
    top: -15px;
  }
  .tab-inner {
    width: 100%;
    overflow: auto;
  }
  .clarity_sec .nav-tabs {
    height: 90px;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .spread-txt p {
    padding-right: 0;
  }
  .contact-main ul li a {
    padding-right: 10px;
  }
  .why_choos_sec .testi-inner-main h5 {
    font-size: 21px;
    line-height: 33px;
  }
  .export_section_inner {
    width: 750px;
    height: 750px;
  }
  .why_choos_sec .row {
    justify-content: center;
  }
  .why_choos_sec .testi-inner-main {
    margin-top: 25px;
    height: auto;
  }
  .why_choos_sec .testi-inner-main p {
    font-size: 14px;
    line-height: 24px;
  }
  .Export_img_2 {
    width: 180px;
  }
  .Export_img_1 {
    width: 110px;
}
  h3 {
    font-size: 31px;
    line-height: 37px;
  }
  .email-txt p {
    font-size: 14px;
    line-height: 19px;
    margin-top: 10px;
  }
  .footer-head h3 {
    font-size: 20px;
    line-height: 25px;
  }
  .footer_menu ul li a {
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
  }
  .footer_menu ul li a span {
    width: 35px;
    height: 35px;
    font-size: 19px;
    line-height: 34px;
  }
  .gallery_sec .swiper-slide.swiper-slide-active .gallery-img::before {
    width: 142px;
    height: 152px;
    background-size: 140px;
  }
  .gallery_sec .swiper-slide.swiper-slide-active::after {
    top: -36px;
    right: -93px;
    width: 445px;
    height: 630px;
    background-size: 440px;
  }
  .gallery_sec .swiper-slide.swiper-slide-active .gallery-img::after {
    bottom: -6px;
    left: 9%;
    width: 72px;
    height: 72px;
    background-size: 69px;
  }
  .real-main::after {
    bottom: -100px;
    left: -70px;
    width: 410px;
    height: 300px;
    background-size: 100%;
  }

  h5 {
    line-height: 35px;
    font-size: 27px;
  }

  .diamond_slider_img {
    width: 245px;
    height: 235px;
  }

  .header-sec .navbar-nav .nav-item .nav-link {
    font-size: 13px;
    line-height: 17px;
  }

  .header-sec .navbar-nav .nav-item {
    padding: 0 15px;
  }

  .header-sec .nav-link.active::before {
    width: 17px;
    height: 14px;
    background-size: 17px;
  }

  .border-btn {
    font-size: 15px;
    line-height: 17px;
    padding: 10px 19px;
  }

  .slide-inner-txt h1 {
    font-size: 57px;
    line-height: 64px;
  }

  .slide-inner-txt p {
    max-width: 430px;
  }

  .bg-three,
  .bg-two,
  .bg-one {
    background-position: center;
  }

  .polish-txt h4 {
    font-size: 41px;
    line-height: 54px;
  }
}

@media (max-width: 1120px) {
  .container {
    max-width: 991px;
  }
  .address-txt ul li h6,
  .location-txt h6 {
    font-size: 15px;
    line-height: 22px;
  }
  .address-txt ul li h6 {
    margin: 10px 0;
  }
  .tabl-box thead tr th:last-child {
    border-radius: 0 13px 0 0;
  }
  .grown_sec {
    padding: 50px 0 100px;
  }
  .grown-inner {
    margin-top: 40px;
  }
  .grown-wrap::after {
    width: 120px;
    height: 90px;
    background-size: 100%;
  }
  .grown-wrap::before {
    bottom: -40px;
    width: 130px;
    height: 100px;
    background-size: 100%;
  }
  .between-box-mian {
    padding: 40px 20px;
  }
  .between-img img {
    min-height: 260px;
  }
  .between-txt h4 {
    font-size: 35px;
    line-height: 43px;
  }
  .bottom-txt p {
    font-size: 14px;
    line-height: 24px;
  }
  .testi-inner-main {
    padding: 20px;
  }
  .spread_sec {
    padding: 50px 0 100px;
  }
  .service_sec {
    padding: 40px 0 90px;
  }
  .our-txt {
    padding-right: 20px;
  }
  .banner-sec .swiper .swiper-button-prev {
    right: 70px;
  }
  .banner-sec .swiper-button-next {
    right: 10px;
  }
  .banner-sec .swiper-button-prev,
  .banner-sec .swiper-button-next {
    bottom: 20px;
  }
  .gallery_sec .swiper-slide.swiper-slide-active .gallery-img::before {
    bottom: -15px;
  }
  .gallery_sec .swiper-slide.swiper-slide-active .gallery-img::after {
    bottom: 26px;
    left: 7%;
    width: 69px;
    height: 67px;
    background-size: 63px;
  }
  .gallery_sec .swiper-slide.swiper-slide-active::after {
    top: -34px;
    right: -110px;
    width: 585px;
    height: 850px;
    background-size: 580px;
  }

  .why_lab_grown_section {
    padding: 100px 0 50px;
  }

  .diamond-real-sec {
    padding: 40px 0 100px;
  }

  h2 {
    font-size: 30px;
    line-height: 36px;
  }

  .real-txt p {
    font-size: 14px;
    line-height: 24px;
  }

  .font_black span {
    font-size: 63px;
  }

  .polish-txt p {
    font-size: 14px;
  }

  .header-sec .navbar-nav .nav-item {
    padding: 0 10px;
  }
  .font_white span {
    font-size: 66px;
  }
  .journey_diamond_wrap h6 {
    font-size: 21px;
    line-height: 23px;
  }
}

@media (max-width: 991px) {
  .container {
    max-width: 100%;
  }
  .dropdown-item {
    font-size: 13px;
    line-height: 22px;
  }
  .back-wrap h5 {
    font-size: 25px;
    line-height: 34px;
    margin-top: 40px;
  }
  .back-wrap h5 span {
    width: 29px;
    height: 38px;
  }
  .inner-bnner {
    padding: 60px 0;
  }
  .map-inner iframe {
    height: 450px;
  }
  .location-img img {
    height: 430px;
    object-fit: cover;
    max-width: 310px;
  }
  .location-box {
    margin-bottom: 50px;
  }
  .grown_sec {
    padding: 50px 0 40px;
  }
  .grown-wrap::after,
  .grown-wrap::before {
    display: none !important;
  }
  .grown-gif img {
    max-width: 460px;
  }
  .grown-txt {
    margin-top: 50px;
  }
  .location-img,
  .grown-gif {
    text-align: center;
  }
  .real-main {
    margin-top: 70px;
  }
  .vs-txt h4 {
    margin: 30px 0;
  }
  .btn-main {
    margin-top: 20px;
  }
  .tab-left-img {
    text-align: center;
  }
  .tab-left-img img {
    max-width: 430px;
  }
  .service-inner {
    margin-top: 40px;
  }
  .service_sec .testi-inner-main {
    margin-top: 30px;
    height: auto;
  }
  .spread-img img {
    max-width: 400px;
  }
  .col-lg-7 .spread-img img {
    max-width: 660px;
  }
  .our-txt {
    padding-right: 0;
  }
  .our-vision-img {
    text-align: center;
  }
  .our-vision {
    padding: 80px 0 30px;
  }
  .our-vision-img img {
    max-width: 500px;
    margin-bottom: 50px;
  }
  .footer-left {
    margin-top: 50px;
  }
  .emil-box {
    margin-top: 50px;
  }
  .footer-head h3 {
    font-size: 27px;
    line-height: 37px;
  }
  .contact-main {
    margin-top: 30px;
  }
  .footer_sec {
    padding: 50px 0 70px;
  }
  .gallery_sec .swiper-slide.swiper-slide-active::after {
    top: 0;
    right: -90px;
    width: 100%;
    height: 100%;
    background-size: 120%;
    background-position: right center;
  }
  .gallery_sec .swiper-slide.swiper-slide-active::before {
    right: -28px;
  }
  .diamond-real-sec {
    padding: 40px 0 60px;
  }
  .real-img {
    text-align: center;
    order: -1;
  }
  .real-img img {
    max-width: 500px;
  }
  .real-main::after {
    display: none;
  }
  .inner-wrap {
    justify-content: space-between;
  }
  .nav-inner {
    position: fixed;
    top: 0px;
    left: 0;
    height: 100vh;
    width: 100%;
    background-color: var(--black);
    transition: 0.1s;
    -webkit-transition: 0.1s;
    -moz-transition: 0.1s;
    -ms-transition: 0.1s;
    -o-transition: 0.1s;
    display: flex;
    flex-direction: column;
    justify-content: center !important;
    align-items: center;
  }
  .header-sec .nav-link.active::before {
    display: none;
  }
  .header-sec .navbar-nav .nav-item .nav-link {
    text-align: center;
  }
  .header-sec .navbar-nav .nav-item {
    padding: 0;
    margin: 10px 0;
  }
  .header-sec .navbar-nav .nav-item.dropdown {
    position: relative;
  }
  .dropdown-menu.show {
    position: absolute;
    left: 50%;
    top: 20px;
    transform: translate(-50%, 0);
  }
  .head-btn {
    display: flex;
    flex-direction: column;
  }
  .head-btn a {
    margin: 10px 0 !important;
  }
  .navbar-toggler {
    z-index: 9;
  }
  .navbar-toggler.pressed .navbar-toggler-icon {
    border: none;
  }
  .header-sec
    .navbar-light
    .navbar-toggler.pressed
    .navbar-toggler-icon::before {
    transform: rotate(46deg);
  }
  .header-sec
    .navbar-light
    .navbar-toggler.pressed
    .navbar-toggler-icon::after {
    top: 18px;
    transform: rotate(312deg);
  }
  .export_section_inner {
    width: 700px;
    height: 700px;
  }
  .Export_img_2 {
    width: 160px;
  }
 .Export_img_1 {
    width: 90px;
}
  .lab-right {
    text-align: center;
  }
  .lab-right img {
    max-width: 560px;
    margin-bottom: 30px;
  }
  .polish-sec {
    padding: 50px 0 30px;
  }
  .polish-txt {
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .export_section_inner {
    width: 530px;
    height: 530px;
  }
  .video_sec .modal-header {
    padding: 10px;
  }
  .log_main {
    display: block;
  }
  .contact_form_sec {
    padding: 50px 0 90px;
  }
  .location-img img {
    height: 330px;
  }
  .table-txt h6 {
    white-space: nowrap;
  }
  .tabl-box {
    overflow: auto;
  }
  .table-img img {
    max-width: 130px;
  }
  .grown-gif img {
    max-width: 430px;
  }
  .real-txt p {
    font-size: 13px;
    line-height: 22px;
  }
  h4 {
    font-size: 40px;
    line-height: 49px;
  }
  .year-txt.text-center {
    margin-top: 50px;
  }
  .year-sec {
    padding: 50px 0 90px;
  }
  .model-img img {
    max-width: 70px;
  }
  .video_sec {
    background-image: url(../images/video-bg.png);
    padding: 100px 0;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .story-txt {
    margin-top: 30px;
  }
  .story-txt p {
    margin: 10px 0;
    font-size: 14px;
    line-height: 25px;
  }
  .story-main .font_black::after {
    width: 175px;
  }
  .our-story-main {
    padding: 30px;
  }
  .left-footer::after {
    right: inherit;
    left: 0;
  }
  .testi-inner-main {
    padding: 20px;
  }
  .test-profile {
    margin-top: 20px;
  }
  .test-first-img img {
    max-width: 60px;
  }
  .test-txt p {
    font-size: 14px;
    line-height: 24px;
  }
  .gallery_sec {
    padding: 40px 0 30px;
  }
  .gallery_sec .swiper-slide.swiper-slide-active .gallery-img::after {
    bottom: 21px;
    left: 9%;
    width: 59px;
    height: 57px;
    background-size: 53px;
  }
  .gallery_sec .swiper-slide.swiper-slide-active .gallery-img::before {
    bottom: -15px;
    width: 122px;
    height: 132px;
    background-size: 120px;
  }
  .gallery_sec .swiper-slide.swiper-slide-active::after {
    right: -70px;
  }
  .polish-txt h4 {
    font-size: 34px;
    line-height: 53px;
  }
  .font_white span {
    font-size: 56px;
  }
  .our_story_section .owl-carousel .owl-nav {
    margin-top: 30px;
  }
  .our_story_section {
    padding: 50px 0;
  }
  .diamond_img5,
  .diamond_img4,
  .diamond_img3,
  .diamond_img2,
  .diamond_img1 {
    background-size: 110px;
  }
  .slide-inner-txt h1 {
    font-size: 47px;
    line-height: 51px;
  }
.Export_img_1 {
    width: 70px;
}
  .Export_img_2 {
    width: 130px;
  }
  h2 {
    font-size: 34px;
    line-height: 53px;
  }
  .font_black span {
    font-size: 56px;
  }
  h3 {
    font-size: 32px;
    line-height: 47px;
  }
  .certi-img-main {
    flex-wrap: wrap;
  }
  .banner-sec .swiper-button-prev,
  .banner-sec .swiper-button-next {
    width: 40px;
    height: 40px;
  }
  .banner-sec .swiper-button-prev:after,
  .banner-sec .swiper-button-next:after {
    background-position: 12px;
    background-size: 10px;
  }
}

@media (max-width: 575px) {
  .export_section_inner {
    width: 400px;
    height: 400px;
  }
    .address-txt ul li span {
    width: 20px;
}
  .skip-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
  }
  .logo-video {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 230px;
  }
  .video_sec .modal-body {
    padding: 8px 10px 3px;
  }
  .register_sec .back-wrap h5 {
    margin-bottom: 40px;
  }
  .register_sec.login_sec {
    height: auto;
  }
  .location-txt h4 {
    font-size: 33px;
    line-height: 44px;
  }
  .address-txt ul li h6 {
    margin: 6px 0;
  }
  .address-txt h6 {
    font-size: 20px;
    line-height: 25px;
  }
  .location-img img {
    height: 100%;
  }
  .location-img {
    text-align: left;
    margin-bottom: 10px;
  }
  .contact-right {
    margin-bottom: 30px;
  }
  .our-office-sec {
    padding: 50px 0 0;
  }
  .grown-txt h3 {
    margin-bottom: 10px;
    font-size: 26px;
    line-height: 32px;
  }
  .clarity-inner-text {
    padding: 25px 25px;
  }
  .tab--inner-img {
    margin-top: 30px;
  }
  .clarity-text {
    margin: 40px auto 0;
  }
  .testi-head {
    margin-bottom: 50px;
  }
  .testimonials_sec {
    padding: 40px 0 0;
  }
  .gallery_sec .swiper-slide.swiper-slide-active::before {
    right: -35px;
  }

  .diamond_slider_img {
    width: 195px;
    height: 195px;
  }

  .owl-carousel .owl-item img {
    max-width: 150px;
  }

  .Export_img_2 {
    width: 100px;
  }

  .Export_img_1 {
    width: 40px;
  }

  p {
    font-size: 15px;
    line-height: 24px;
  }

  .slide-inner-txt p {
    margin: 22px 0 40px;
  }

  .slide-inner-txt h1 {
    font-size: 41px;
    line-height: 45px;
  }
}

@media (max-width: 480px) {
  .export_section_inner {
    width: 300px;
    height: 300px;
  }
  #loader img {
    width: 70px !important;
    height: 70px !important;
}
  .forgot_pass .lod-txt h4 {
    font-size: 33px;
    line-height: 40px;
  }
  .lod-txt {
    margin: 10px 0 30px;
  }
  .lod-txt h4 {
    font-size: 40px;
    line-height: 46px;
  }
  .login_sec .input-inner-box {
    margin: 0 0 20px;
  }
  .contact_form_sec {
    padding: 50px 0 60px;
  }
  .grown-gif::after {
    width: 60px;
    height: 64px;
    background-size: 100%;
  }
  .real-txt p {
    font-size: 12px;
    line-height: 21px;
  }
  h4 {
    font-size: 34px;
    line-height: 44px;
  }
  .clarity-inner-text p {
    font-size: 14px;
    line-height: 23px;
  }
  .email-txt p {
    margin-bottom: 20px;
  }
  .input-form input {
    margin-bottom: 20px;
    padding: 10px 13px;
  }
  .submit-btn {
    font-size: 14px;
    line-height: 19px;
    padding: 9px 11px;
  }
  .banner-sec .swiper .swiper-button-prev {
    right: 60px;
  }
  .gallery_sec .swiper-slide.swiper-slide-active::after {
    right: -55px;
  }
  .gallery_sec .swiper-slide.swiper-slide-active::before {
    right: -59px;
    background-size: 60px;
  }
  .email-txt h3 {
    font-size: 30px;
    line-height: 38px;
  }
  .real-txt h2 {
    font-size: 25px;
    line-height: 22px;
  }

  .font_black::after {
    background-size: 75%;
  }

  .polish-txt h4 {
    font-size: 30px;
    line-height: 47px;
  }

  .font_white span {
    font-size: 47px;
  }

  h2 {
    font-size: 30px;
    line-height: 47px;
  }

  .font_black span {
    -webkit-text-stroke-width: 1px;
    font-size: 47px;
  }

  h5 {
    line-height: 34px;
    font-size: 28px;
  }

  .Export_img_2 {
    width: 80px;
  }

  .Export_img_1 {
    width: 30px;
  }
  .slide-inner-txt h1 {
    font-size: 34px;
    line-height: 40px;
  }
  p {
    font-size: 14px;
    line-height: 22px;
  }
  .journey_diamond_wrap h6 {
    font-size: 18px;
    line-height: 25px;
  }
  .diamond_img5,
  .diamond_img4,
  .diamond_img3,
  .diamond_img2,
  .diamond_img1 {
    background-size: 93px;
    background-position: center left 47%;
  }
}

@media (max-width: 380px) {
  .diamond_img5,
  .diamond_img4,
  .diamond_img3,
  .diamond_img2,
  .diamond_img1 {
    background-size: 67px;
    background-position: center left 45%;
  }
  .certified-txt h3 {
    font-size: 28px;
    line-height: 44px;
  }
  .certi-img img {
    max-width: 230px;
  }
  .nav-inner {
    height: 101vh;
  }
  .font_black::after {
    width: 305px;
  }
  .log-form {
    padding: 30px 20px;
  }
  .register_sec .log-form {
    padding: 20px 20px;
  }
  .contact-right p {
    font-size: 13px;
    line-height: 21px;
  }
  .contact-right h4 {
    font-size: 33px;
    line-height: 44px;
  }
  .form-btn {
    margin-top: 20px;
  }
  .input-inner-box {
    margin: 7px 0;
  }
  .input-inner-box label {
    margin-bottom: 5px;
  }
  .contact-form form {
    padding: 20px;
  }
  .border-black-btn {
    padding: 10px 26px;
    font-size: 14px;
    line-height: 19px;
  }
  .grown-gif {
    padding: 36px 34px;
  }
  .between-txt h4 {
    font-size: 30px;
    line-height: 38px;
  }
  .between-img img {
    min-height: 230px;
  }
  .bottom-txt p {
    font-size: 13px;
    line-height: 22px;
  }
  .our-story-main {
    padding: 30px 15px;
  }
  .journey_diamond_wrap h6 {
    font-size: 16px;
    line-height: 22px;
  }
  .gallery_sec .swiper-slide.swiper-slide-active::after {
    right: -30px;
    display: none;
  }
  .gallery_sec .swiper-slide.swiper-slide-active::before {
    display: none;
  }
}

@media (max-width: 340px) {
  .diamond_img5,
  .diamond_img4,
  .diamond_img3,
  .diamond_img2,
  .diamond_img1 {
    background-size: 54px;
    background-position: center left 49%;
  }
}


.modal-header .close{
    border: 0;
    background: transparent;
}


.modal-header .close span{
    font-size: 32px;
}

.border-black-btn.blank-btn{
    border: 0;
}

.border-black-btn.dark-btn{
    background: #000;
    color: #fff;
}

.modal-title{
    color: #6d6d6d;
    font-size: 25px;
    line-height: 30px;
}


#loader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
    z-index: 999999999;
    display:flex;
    align-items:center;
    justify-content:center;
}

#loader img {
    width: 100px;
    height: 100px;
    animation: spinload 2s linear infinite;
}

@keyframes spinload {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


.select2-container--default .select2-selection--single {
   height: 38px !important;
 }

:focus-visible {
    outline: 0;
}

   .select2-container--default .select2-selection--single .select2-selection__arrow {
     top: 6px !important;
   }

   .select2-container--default .select2-selection--single .select2-selection__rendered {
     margin-top: 4px;
   }

 .select2-container {
   width: 100% !important;
 }

 .select2-container--default.select2-container--disabled .select2-selection--single {
   background-color: #ddd !important;
 }
 .form-control:focus {
    box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 65%);
}

.select2-container.select2-container--default {
    width: -webkit-fill-available !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #11163c transparent transparent transparent !important;
    border-width: 6px 5px 0 5px !important;
    margin-left: -10px !important;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #11163c transparent !important;
    border-width: 0 5px 6px 5px !important;
    margin-left: -10px !important;
}
.select2-container--default .select2-selection--single {
    border: 1px solid #ddd !important;
    border-radius: 0 !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--black) !important;
    color: white;
}