@import url("https://fonts.googleapis.com/css2?family=Noto+Serif:wght@100;200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:wght@100;200;300;400;500;600;700&display=swap");

:root {
  --primary: #047038;/*#0f143e;*/
  --dark-primary: #e4fff1;
  --dark-blue: #0a0a34;
  --white: #ffffff;
  --black: #000;
  --gray: #606062;
  --light_blue: #00a3e4;
  --sky_light: #e6f6fe;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Jost", sans-serif;
  background-color: var(--sky_light);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

h1 {
  font-weight: 600;
  font-size: 64px;
  line-height: 140%;
}

h2 {
  font-weight: 500;
  font-size: 48px;
  line-height: 58px;
}

h3 {
  font-weight: 500;
  font-size: 40px;
  line-height: 58px;
}

h4 {
  font-weight: 500;
  font-size: 36px;
  line-height: 52px;
}

h5 {
  font-weight: 500;
  font-size: 28px;
  line-height: 40px;
}

p {
  font-weight: 400;
  font-size: 24px;
  line-height: 34px;
}

.page-link:focus {
  box-shadow: none;
}

:focus-visible {
  outline: 0;
}

.border_blue {
  display: inline-block;
  padding: 14px 30px;
  font-weight: 500;
  font-size: 16px;
  line-height: 23px;
  color: var(--primary);
  background: transparent;
  border: 1px solid var(--primary);
  border-radius: 50px;
  transition: 0.5s ease;
}
.border_blue:hover {
  background: var(--primary);
  color: var(--white);
  transition: 0.5s ease;
}

.bg_blue {
  display: inline-block;
  padding: 14px 30px;
  font-weight: 500;
  font-size: 16px;
  line-height: 23px;
  color: var(--white);
  background: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 50px;
  transition: 0.5s ease;
  white-space: nowrap;
}
.bg_blue:hover {
  background:transparent;
  color:  var(--primary);
  transition: 0.5s ease;
}

.border_white {
  display: inline-block;
  padding: 14px 30px;
  font-weight: 500;
  font-size: 16px;
  line-height: 23px;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--white);
  transition: 0.5s ease;
  border-radius: 50px;
  letter-spacing: 1px;
}
.border_white:hover {
  background: var(--white);
  color: var(--primary);
  transition: 0.5s ease;
}

.btn_arrow {
  position: relative;
  padding: 14px 50px 14px 30px;
}
.btn_arrow::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 12px;
  top: 50%;
  right: 30px;
  background-image: url(/Content/WebStoreFrontContent/images/right_arrow.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  transform: translate(0, -50%);
}

.border_white.btn_arrow:hover::after {
  filter: brightness(0.2);
  transition: 0.5s;
}

.p_120 {
  padding: 120px 0;
}

.p_small {
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
}

.container {
  max-width: 1600px;
}

.title_blue {
  color: var(--primary);
  margin-bottom: 20px;
}

/*********************************************
 header css start 
*********************************************/
/* header css start */
header {
  background: var(--primary) /*#0f143e*/;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 10px 0;
  border-bottom: 0.5px solid var(--white);
  z-index: 9999;
}
header .navbar .navbar-nav li .dropdown-menu li a {
  color: var(--primary) !important;
  padding: 5px 15px !important;
}

header .navbar .navbar-nav li .dropdown-menu li a.active {
  color: var(--dark-primary) !important;
  background-color: transparent !important;
}

header .navbar .navbar-nav li {
  padding: 0 20px !important;
  position: relative;
}
header .navbar .navbar-nav li:last-child::after {
  display: none;
}
header .navbar .navbar-nav li::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(127, 130, 161, 0) 0%,
    #7f82a1 48.44%,
    rgba(127, 130, 161, 0) 100%
  );
  border-radius: 5px;
}
header .navbar .navbar-nav li a {
  padding: 0 !important;
  color: var(--white) !important;
  font-weight: 500;
  font-size: 16px;
  line-height: 23px;
  position: relative;
  transition: 0.5s ease;
    letter-spacing: 1px;
}
header .navbar .navbar-nav li a.active,
header .navbar .navbar-nav li a:hover {
  color: var(--dark-primary) !important;
  transition: 0.5s ease;
}
.header_btn_wrap .btn_dmnd {
  margin-left: 30px;
}
.btn_dmnd {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--white);
  border-radius: 50%;
  transition: 0.5s ease;
}
.btn_dmnd img {
  width: 25px;
  transition: 0.5s ease;
}
.btn_dmnd:hover {
  background: var(--white);
  transition: 0.5s ease;
}
.btn_dmnd:hover img {
  filter: invert(0) brightness(1);
  transition: 0.5s ease;
}

header .navbar .navbar-nav li a:hover.dropdown-toggle::after,
header .navbar .navbar-nav li a.active.dropdown-toggle::after {
  filter: initial;
  transition: 0.5s ease;
}

header .dropdown-toggle::after {
  background-image: url(/Content/WebStoreFrontContent/images/bottom_arrow.svg);
  border: 0 !important;
  width: 10px;
  height: 6px;
  transform: translate(0, 5px);
  background-size: 100%;
  background-repeat: no-repeat;
  filter: brightness(0) invert(1);
  transition: 0.5s ease;
}

header .navbar-brand img {
  max-width: 315px;
}

header .navbar-nav .dropdown-menu {
  top: 58px;
}
header .navbar .navbar-nav .dropdown-menu li {
  padding: 0 !important;
}

/* header css end */
/*********************************************
 header css end 
*********************************************/
/*********************************************
 Home page css start 
*********************************************/

/* home page css start */
.banner_sec {
  /* background: var(--primary);
  padding: 200px 0 120px;
  color: var(--white); */
  position: relative;
  margin-top: 99px;
  color: var(--white);
}
.banner_img_wrap {
  background-image: url(/Content/WebStoreFrontContent/images/banner_img2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 800px;
}
.banner_bottom_img {
  position: absolute;
  bottom: -15px;
  width: 100%;
}

.banner_left {
  padding: 180px 0 270px;
}

.banner_left h1 {
  margin-bottom: 35px;
}

.banner_left p {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 28px;
  max-width: 585px;
}

.banner_left a {
  display: flex;
}

.banner_left a span {
  display: inline-block;
  color: var(--white);
  padding-left: 15px;
  transition: 0.5s ease;
}

.banner_left a:hover span {
  padding-left: 25px;
  transition: 0.5s ease;
}

.lab_grown_sec {
  padding: 80px 0;
}

.lab_grown_list ul li {
  text-align: center;
  margin: 30px 25px 0;
}

.lab_grown_list ul li img {
  margin-bottom: 16px;
}

.lab_grown_list ul li p {
  font-weight: 500;
  font-size: 26px;
  line-height: 38px;
  color: var(--primary);
}

.about_sec {
  padding-bottom: 100px;
}

.about_left ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about_left ul li {
  padding: 0 10px;
  margin-bottom: 20px;
}
.about_left ul li h3 {
  font-size: 40px;
  line-height: 58px;
  margin-bottom: 15px;
}
.about_left ul li p {
  font-size: 18px;
  line-height: 26px;
  color: var(--gray);
  font-weight: 500;
}

.collection_sec {
  background-image: url(/Content/WebStoreFrontContent/images/collection_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 170px 0 80px;
  color: var(--white);
  position: relative;
}

.collection_after {
  position: absolute;
  top: -45px;
}

.collection_wrap ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.collection_wrap ul li {
  width: calc(100% / 8);
  text-align: center;
  margin-bottom: 20px;
}
.collection_wrap ul li p {
  margin-bottom: 0;
}
.collection_wrap ul li img {
  /*height: 115px;
  width: 115px;*/
  object-fit: contain;
  margin-bottom: 40px;
  transition: 0.5s ease;
}
.collection_wrap ul li img:hover {
  transform: scale(1.3);
  transition: 0.5s ease;
}
.collection_sec h2 {
  margin-bottom: 60px;
}
.choice_sec {
  background-image: url(/Content/WebStoreFrontContent/images/choice_bg.jpg);
  background-size: cover;
  padding: 100px 0 100px;
  color: var(--white);
}
.choice_box_wrap {
  margin-bottom: 30px;
  text-align: center;
}

.choice_box {
  background: #242425;
  box-shadow: inset 5px 2px 18px #00a3e4;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 175px;
  height: 175px;
  margin: 0 auto 22px;
}
.choice_box img {
  height: 78px;
  object-fit: contain;
}
.choice_title {
  margin-bottom: 60px;
}
.event_sec {
  padding: 90px 0 130px;
  background: var(--primary);
  color: var(--white);
  position: relative;
}
.event_bg_img {
  position: absolute;
  bottom: -46px;
}

.event_sec_wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.light_blue_box {
  background: #e6f6fe;
  padding: 12px 30px;
  box-shadow: 0px 14px 24px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  text-align: center;
  margin-bottom: 10px;
}
.associated_wrap {
  margin-bottom: 60px;
}
.associated_wrap .light_blue_box img {
  height: 50px;
  object-fit: contain;
}
.event_wrap .light_blue_box img {
  height: 95px;
  object-fit: contain;
}

.event_sec h2 {
  margin-bottom: 30px;
}

.event_wrap p {
  font-size: 14px;
  line-height: 22px;
  margin-top: 10px;
}

.our_gallery_sec {
  padding: 60px 0 100px;
  position: relative;
}

.our_gallery_wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.our_gallery_wrap .nav-tabs {
  justify-content: center;
  margin-bottom: 40px;
}

.our_gallery_wrap .nav-tabs .nav-link {
  background: #bedff6;
  border-radius: 8px;
  padding: 10px 30px;
  color: var(--primary);
  margin: 0 10px;
  font-size: 20px;
  line-height: 29px;
  transition: 0.5s ease;
}
.our_gallery_wrap .nav-tabs .nav-link.active,
.our_gallery_wrap .nav-tabs .nav-link:hover {
  background: var(--primary);
  color: var(--white);
  transition: 0.5s ease;
}
.nav-tabs {
  border: non;e
}
.galley_img_wrap ul {
  display: flex;
  flex-wrap: wrap;
}
.galley_img_wrap ul li {
  width: calc(20% - 20px);
  margin: 0 10px 20px;
  overflow: hidden;
}
.galley_img_wrap ul li .gallery_img_box {
  height: 210px;
  overflow: hidden;
  border-radius: 14px;
}
.galley_img_wrap ul li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}
.galley_img_wrap ul li .gallery_img_box:hover img {
  transform: scale(1.05);
  transition: 0.5s ease;
}

.footer_upper {
  background-image: url(/Content/WebStoreFrontContent/images/map.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 30px 0 60px;
  position: relative;
  z-index: 1;
  color: var(--white);
}
.footer_upper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: radial-gradient(
    156.69% 967.95% at 186.87% 42.98%,
    rgba(15, 20, 62, 0.15) 0%,
    var(--primary) 100%);
  );
  z-index: -1;
}

.contact_box ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 8px;
}
.contact_box ul li img {
  width: 15px;
  filter: brightness(0) saturate(100%) invert(97%) sepia(27%) saturate(434%) hue-rotate(61deg) brightness(108%) contrast(101%);
  transition: 0.5s ease;
  margin-top: 3px;
}
.contact_box ul li:hover img{
  filter: brightness(0);
  transition: 0.5s ease;
}
.contact_box ul li a {
  width: calc(100% - 22px);
  margin-left: 20px;
  font-size: 18px;
  line-height: 26px;
  color: var(--white);
  display: block;
  transition: 0.5s ease;
}

.contact_box ul li:hover a{
  color: var(--black);
  transition: 0.5s ease;
}

.contact_box {
  max-width: 318px;
}

.contact_box .contact_box_title {
  font-weight: 500;
  font-size: 24px;
  line-height: 35px;
  color: var(--dark-primary);
  margin-bottom: 17px;
}

.mumbai_box {
  margin-bottom: 20px;
}

/* home page css end */

/*********************************************
 Home page css end 
*********************************************/
/*********************************************
 Education page css start 
*********************************************/

/* education page css start */
.shape_sec {
  padding: 70px 0 80px;
}

.shape_wrap {
  margin: 70px 60px 0;
}

.shape_wrap ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.shape_wrap ul li {
  text-align: center;
}

.shape_wrap ul li img {
  height: 78px;
  width: 78px;
  object-fit: contain;
  margin-bottom: 40px;
  transition: 0.5s ease;
}

.shape_wrap ul li span {
  display: block;
  font-weight: 600;
  font-size: 16px;
  line-height: 23px;
  color: var(--primary);
}

/*.shape_wrap ul li img:hover {
  transform: scale(1.05);
  transition: 0.5s ease;
}*/

.dmd_detail {
  margin-top: 80px;
}

.dmd_tab .nav-tabs {
  justify-content: center;
  margin-bottom: -120px;
}
.dmd_tab .nav-tabs .nav-item {
  margin: 0 20px;
}
.dmd_tab .nav-tabs .nav-link {
  background: rgba(190, 223, 246, 0.3);
  border-radius: 8px;
  font-weight: 500;
  color: var(--white);
  padding: 10px 30px;
  font-size: 26px;
  line-height: 38px;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  transition: 0.5s ease;
}
.dmd_tab .nav-tabs .nav-link img {
  height: 26px;
  margin-right: 10px;
  filter: brightness(0) invert(1);
  transition: 0.5s ease;
}
.dmd_tab .nav-tabs .nav-link.nav-link.active,
.dmd_tab .nav-tabs .nav-link.nav-link:hover {
  background: #bedff6;
  color: var(--primary);
  font-weight: 500;
  transition: 0.5s ease;
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
.dmd_tab .nav-tabs .nav-link.nav-link.active {
  transform: scale(1.2);
}
.dmd_tab .nav-tabs .nav-link.nav-link.active img,
.dmd_tab .nav-tabs .nav-link.nav-link:hover img {
  /* height: 34px; */
  filter: initial;
  transition: 0.5s ease;
}

.tab_content_top {
  background-image: url(/Content/WebStoreFrontContent/images/education_tab_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 180px 0 80px;
  color: var(--white);
  text-align: center;
}
.tab_content_top_inner p {
  margin: 40px 0 60px;
  padding: 0 80px;
}
.tab_content_bottom {
  position: relative;
  padding: 100px 0;
}
.tab_content_bottom::after {
  content: "";
  position: absolute;
  right: 50%;
  top: 0;
  height: 100%;
  width: 100%;
  background-image: url(/Content/WebStoreFrontContent/images/tab_bottom_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
.tab_content_bottom::before {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  background: var(--white);
  z-index: -1;
}
.tab_bottom_img_wrap {
  position: relative;
  max-width: 560px;
  margin-right: -50px;
  margin-left: auto;
  z-index: 1;
}
.tab_bottom_img_wrap::after {
  content: "";
  position: absolute;
  left: -50px;
  top: -40px;
  height: calc(100% + 80px);
  width: calc(100% - 30px);
  background: transparent;
  border: 10px solid var(--white);
  z-index: -1;
}
.tab_content_bottom_right {
  padding-left: 100px;
}
.tab_content_bottom_right h2 {
  display: flex;
  align-items: center;
  width: fit-content;
  position: relative;
}
.tab_content_bottom_right h2 span {
  display: block;
  position: relative;
}
.tab_content_bottom_right h2 span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 28px;
  bottom: 0;
  right: 0;
  left: 30px;
  background: #bedff6;
  opacity: 0.4;
  z-index: -1;
}
.tab_content_bottom_right h2 img {
  margin-right: 10px;
}
/* education page css end */

/*********************************************
 Education page css end 
*********************************************/

/*********************************************
 who we are css start 
 *********************************************/

/* Page Title */
.page_title {
  background-image: url(/Content/WebStoreFrontContent/images/inner_banner_img.png);
  background-size: cover;
  padding: 70px 0;
  background-position-x: center;
  margin-top: 99px;
}
.page_title nav ol .breadcrumb-item a,
.page_title nav ol .breadcrumb-item {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--white);
  transition: 0.5s;
}
.page_title nav ol .breadcrumb-item a:hover {
  color: var(--dark-primary);
  transition: 0.5s;
}
.banner_title {
  color: var(--white);
    letter-spacing: 0.5px;
}
.page_title .breadcrumb-item + .breadcrumb-item::before {
  color: var(--white);
}

/* Why Choode */
.why_choose {
  background-image: url(/Content/WebStoreFrontContent/images/why-choose-img.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 120px 0;
}
.why_choose_info p {
  color: var(--gray);
  margin: 20px 0;
}
.why_choose_img img {
  box-shadow: 0px 24px 32px rgba(15, 20, 62, 0.1);
}
.why_choose_info {
  margin-left: 30px;
}

/* Lab Grown  */

.lab_grown {
  background-color: var(--primary);
}
.lab_grown .our_box .icon {
  margin-right: 11px;
  margin-top: 5px;
}
.lab_grown .our_box h4 {
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  max-width: fit-content;
  color: var(--white);
  font-family: "Jost";
}
.lab_grown .our_box h4::before {
  content: "";
  position: absolute;
  width: 95%;
  height: 28px;
  right: -19px;
  bottom: -6px;
  background: #bedff6;
  opacity: 0.4;
  /* z-index: -1; */
}
.lab_wrapper {
  margin-top: 70px;
  margin-left: 40px;
}
.lab_grown_info h3 {
  color: var(--white);
  font-size: 50px;
  line-height: 72px;
}
.lab_grown_info p {
  color: var(--white);
  margin: 15px 0 0;
}

/* count_wrap */
.count_wrap {
  background: #e6f6fe;
}
.count_wrap h2 {
  color: #242425;
  margin: 10px 0 10px;
}
.count_wrap p {
  font-weight: 500;
  font-size: 24px;
  line-height: 35px;
  color: #242425;
}
.count_img {
  width: 50px;
  height: 50px;
}

/* Why Choose Icon */
.why_choose_icon {
  background: #10153e;
  padding: 47px 0;
}
.why_choose_icon .icon_box {
  width: 110px;
  height: 110px;
  border: 2px solid #ffffff;
  box-shadow: 0px 10px 10px rgba(15, 20, 62, 0.15);
  margin: 0 auto;
  background-color: var(--dark-blue);
}
.why_choose_icon p {
  font-size: 24px;
  line-height: 35px;
  letter-spacing: 0.01em;
  color: #ffffff;
  margin-top: 44px;
}

/* video section css */
.video_div video {
  height: 650px;
  width: 100%;
  object-fit: cover;
  object-position: center;
  margin-bottom: -7px;
}

/* footer bottom section */
.footer_bottom_sec {
  background-color: var(--primary);
}
.footer-left p {
  font-size: 18px;
  line-height: 26px;
  color: var(--white);
}

.footer-left p span {
  color: var(--dark-primary);
}

.footer_right ul li a:hover img {
  filter: opacity(0.7);
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  -webkit-filter: opacity(0.7);
}
.footer_right p{
    color:var(--white);
}
/*********************************************
 who we are css end 
*********************************************/

/*********************************************
 our process page css start 
*********************************************/

.process_section {
  background-color: var(--primary);
  position: relative;
}

.process_section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 390px;
  height: 280px;
  background-image: url(/Content/WebStoreFrontContent/images/process_right.png);
  background-repeat: no-repeat;
  background-size: 100%;
}

.process_section::before {
  content: "";
  position: absolute;
  bottom: 230px;
  left: 0;
  width: 390px;
  height: 280px;
  background-image: url(/Content/WebStoreFrontContent/images/process_left.png);
  background-repeat: no-repeat;
  background-size: 100%;
}

.process_left {
  margin: 50px 0;
}

.process_left h2 {
  font-weight: 700;
  font-size: 56px;
  line-height: 65px;
}

.process_left p {
  font-size: 22px;
  line-height: 31px;
  margin: 18px 0;
}

.our_process_head {
  color: var(--primary);
  font-family: "Jost";
  font-size: 40px;
  line-height: 58px;
  margin-bottom: 90px;
}

.our_process_center {
  background-color: var(--sky_light);
}

.process-right {
  max-width: 160px;
  margin: 70px 0 70px auto;
  font-size: 16px;
  line-height: 23px;
}

.our_process_center {
  padding: 30px 0;
}

.process-left {
  margin: 70px 0;
  max-width: 140px;
  font-size: 24px;
  line-height: 35px;
}

.process_one {
  background-image: url(/Content/WebStoreFrontContent/images/process-1.png);
}
.process_two {
  background-image: url(/Content/WebStoreFrontContent/images/process-2.png);
}
.process_three {
  background-image: url(/Content/WebStoreFrontContent/images/process-3.png);
}
.process_four {
  background-image: url(/Content/WebStoreFrontContent/images/process-4.png);
}
.process_five {
  background-image: url(/Content/WebStoreFrontContent/images/process-5.png);
}
.process_six {
  background-image: url(/Content/WebStoreFrontContent/images/process-6.png);
}
.process_seven {
  background-image: url(/Content/WebStoreFrontContent/images/process-7.png);
}
.process_eight {
  background-image: url(/Content/WebStoreFrontContent/images/process-8.png);
}
.process_nine {
  background-image: url(/Content/WebStoreFrontContent/images/process-9.png);
}

.process_one,
.process_two,
.process_three,
.process_four,
.process_five,
.process_six,
.process_seven,
.process_eight,
.process_nine {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0;
  position: relative;
  padding: 0 40px;
}

.process_one::after,
.process_two::after,
.process_three::after,
.process_four::after,
.process_five::after,
.process_six::after,
.process_seven::after,
.process_eight::after,
.process_nine::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-image: url(/Content/WebStoreFrontContent/images/divider_img.png);
  background-repeat: no-repeat;
  background-size: contain;
}

/*********************************************
 our process page css end
*********************************************/

/*********************************************
 Blog page css start
*********************************************/

.blog_section {
  padding: 100px 0;
}

.blog_text {
  border: 1px solid #cccccc;
  padding: 30px;
  background-color: var(--white);
}

.blog_text a {
  font-weight: 500;
  font-size: 28px;
  line-height: 36px;
  color: var(--white);
  margin-bottom: 20px;
  display: block;
  transition: 0.5s;
}

.blog_text a:hover {
  color: var(--dark-primary);
  transition: 0.5s;
}

.blog_text p {
  color: var(--gray);
  font-size: 18px;
  line-height: 26px;
  margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}

.blog_img {
  overflow: hidden;
}

.blog_img_wrapper {
  position: relative;
}

.blog_img img {
  width: 100%;
  transition: 0.5s;
}

.blog_wrapper:hover .blog_img_wrapper .blog_img img {
  transform: scale(1.2);
  transition: 0.5s;
}

.blog_wrapper {
  margin-bottom: 60px;
}

.blog_img_wrapper h5 {
  font-size: 18px;
  line-height: 26px;
  width: 55px;
  background-color: var(--dark-primary);
  padding: 8px;
  position: absolute;
  top: -13px;
  left: 23px;
  color: var(--white);
}

.blog_img_wrapper h5::after {
  content: "";
  position: absolute;
  top: 0;
  left: -8px;
  width: 0;
  height: 0;
  border: 0 solid transparent;
  border-right-width: 0;
  border-left-width: 8px;
  border-bottom: 14px solid white;
}

.blog_img_wrapper h5::before {
  content: "";
  position: absolute;
  top: 0;
  right: -8px;
  width: 0;
  height: 0;
  border: 0 solid transparent;
  border-right-width: 8px;
  border-left-width: 0;
  border-bottom: 14px solid white;
}

/* pagination css start */

.pagination_box p {
  font-size: 16px;
  line-height: 26px;
}

.pagination_box nav .pagination .page-item .page-link {
  padding: 8px 16px;
  font-size: 18px;
  line-height: 26px;
  border: 1px solid #cccccc;
  color: var(--primary);
}

.pagination_box nav .pagination .page-item .page-link:hover {
  border: 1px solid #cccccc;
  color: var(--sky_light);
  background-color: var(--dark-primary);
}

.pagination_box nav .pagination .page-item .page-link span img {
  filter: brightness(0);
}

.pagination_box nav .pagination .page-item .page-link:hover span img {
  filter: none;
  -webkit-filter: none;
}

/*********************************************
 Blog page css end
*********************************************/
/*********************************************
 Blog details page css start
*********************************************/

.blog_details_sec {
  padding: 130px 0;
}

.blog-details-img {
  height: 520px;
}
.blog-details-img img {
  height: 100%;
  object-fit: cover;
}
.blog_details_txt {
  margin: 30px 0 0;
}

.blog_details_txt h4 {
  font-weight: 500;
  font-size: 32px;
  line-height: 46px;
}

.blog-icon-txt h6 {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: var(--gray);
}

.blog_icon {
  width: 25px;
  height: 25px;
}

.blog_details_txt ul li {
  margin-right: 25px;
}

.blog_discription p {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: var(--gray);
    margin: 10px 0;
}

.blog_discription ul li{
    list-style: disc;
    margin: 5px 0;
}

.blog_discription ul{
    padding-left: 30px;
}

.blog_replay {
    margin-top: 160px;
}

.blog_input {
  width: 100%;
  margin: 0 0 20px;
  max-width: 650px;
}

.blog_input label {
  font-weight: 400;
  font-size: 17px;
  line-height: 24px;
  margin-bottom: 5px;
}

.blog_input textarea {
  resize: none;
  height: 120px;
}

.blog_input textarea,
.blog_input input {
  border: 0;
  padding: 14px;
  border: 1px solid #cccccc;
  border-radius: 8px;
}

.blog_form h4 {
  font-weight: 500;
  margin-bottom: 40px;
}

/*********************************************
 Blog details page css end
*********************************************/
/*********************************************
 Discover Diamond page css start
*********************************************/

/* Discover Diamond Start*/
.discover_diamonds {
  padding: 100px 0 0;
  background-color: var(--sky_light);
}
.diamond_info {
  padding-bottom: 30px;
}
.diamond_info_box p {
  max-width: 780px;
  color: var(--gray);
  margin: 12px 0 28px;
}
/* Discover Diamond End */

/*********************************************
 Discover Diamond page css end
*********************************************/
/*********************************************
 lab Grown diamond page css start
*********************************************/

/* lab_sec_section css */
.lab_sec_txt {
  max-width: 1220px;
  margin: 0 auto;
}

.lab_sec_txt p {
  font-weight: 500;
  font-size: 28px;
  line-height: 35px;
  margin: 10px 0 0;
}

.lab_sec_section {
  padding: 60px 0 30px;
}

/* why_leb_secttion css start */

.why_leb_secttion {
  background-image: url(/Content/WebStoreFrontContent/images/why_leb.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

/* diamond_quality_section css start */

.diamond_quality_section {
  padding: 50px 0;
  background-image: url(/Content/WebStoreFrontContent/images/diamond_quality_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

/* .mining_img img {
  width: 100px;
  height: 100px;
} */

.mining_img {
  background: #ffffff;
  opacity: 0.9;
  box-shadow: 0px 49.7887px 49.7887px rgba(0, 0, 0, 0.15),
    inset 0px -17.3682px 34.7363px rgba(0, 0, 0, 0.25);
  /* padding: 30px; */
  border-radius: 50%;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mining_img_wrapper {
  background: linear-gradient(
    153.22deg,
    rgb(255 255 255 / 33%) 15.27%,
    rgb(255 255 255 / 3%) 95.92%
  );
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: inline-block;
  padding: 8px;
}

.mining_main {
  margin-top: 30px;
}

/* natural_diamond_sec css start */

.natural_diamond_sec {
  background-image: url(/Content/WebStoreFrontContent/images/natural_bg.jpg);
  padding: 200px 0 90px;
}

.natural_main {
  background: rgba(15, 20, 62, 0.8);
  padding: 80px;
}

.natural_center {
  background-image: url(/Content/WebStoreFrontContent/images/natural_center_img.jpg);
  padding: 40px 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.netural_inner_wrapper .mining_img {
  width: 100px;
  height: 100px;
}
.netural_inner_wrapper .mining_img_wrapper {
  padding: 5px;
}
.netural_inner_wrapper .mining_txt h4 {
  font-weight: 400;
  font-size: 20px;
  line-height: 29px;
}
.natural_mining_wrapper {
  margin-bottom: 40px;
}
.natural_center .natural_mining_wrapper:last-child {
  margin-bottom: 0;
}
.netural_inner_wrapper {
  margin-top: 60px;
}
.natur_left_main h3 {
  margin-bottom: 50px;
  color: var(--white);
}
.natur_left_main p {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: var(--dark-primary);
  margin-bottom: 25px;
}
.natural_btn {
  margin-top: 40px;
}
.btn_white_bg {
  display: inline-block;
  font-weight: 700;
  font-size: 24px;
  line-height: 35px;
  color: var(--primary);
  background: var(--white);
  opacity: 0.9;
  box-shadow: 0px 49.7887px 49.7887px rgba(0, 0, 0, 0.15),
    inset 0px -17.3682px 34.7363px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  padding: 25px 55px;
}
/*********************************************
 Lab Grown Diamond page css end
*********************************************/
/*********************************************
 login page css end
*********************************************/

.page_title.login_section {
  background-image: url(/Content/WebStoreFrontContent/images/inner_banner_img4.png);
  padding: 0;
  display: flex;
  align-items: center;
}

.input-box {
    max-width: 500px;
    margin: 40px auto 0;
    width: 100%;
}

.input-box form .input-inner input {
  width: 100%;
  border: 0 solid var(--dark-primary);
  background-color: var(--white);
  color: var(--black);
  font-weight: 400;
  padding: 12px 15px;
  border-radius: 8px;
  font-size: 16px;
  line-height: 20px;
    letter-spacing: 1px;
}

.input-box form .input-inner{
  margin: 10px 0;
  text-align: left;
}

.input-box form .input-inner .field-validation-error{
    color:#fff !important;
    display: inline-block;
    /*margin: 10px 0 0;*/
    /*text-shadow: 2px 2px #ff0000;*/
    
    text-shadow: 1px 1px 2px white, 0 0 25px #ff0000, 0 0 5px #ff0101;
}



.input-box form a {
  color: var(--white);
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
    letter-spacing: 1px;
}

.input-box form button {
  margin-top: 15px;
  color:var(--white);
  border-color:var(--white);
}

.login_left_img img {
  object-fit: cover;
  height: 100%;
}

/*.login_left_img {
  height: 780px;
}*/

.login_right {
    padding: 50px;
    min-height: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.already_login h6 {
  color: var(--white);
    letter-spacing: 0.5px;
}

.already_login h6 a {
  color: var(--dark-primary);
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 1px;
    font-weight: 600;
}

.already_login {
  margin-top: 15px;
}
.login_heading {
  color: var(--dark-primary);
  font-size: 26px;
  line-height: 32px;
    letter-spacing: 1px;
}

/*********************************************
 login page css end
*********************************************/


/*********************************************
 solitaire page css start
*********************************************/
.search_diamond_wrap {
    padding: 150px 0 60px;
    background-color: #DAF1FE;
}

.search_diamond_wrap .title {
    margin: 0 0 20px;
    text-align: center;
}

    .search_diamond_wrap .title h2 {
        font-weight: 500;
        font-size: 36px;
        line-height: 64px;
        color: var(--primary);
        position: relative;
        margin: 0;
        display: inline;
        z-index: 9;
        text-transform: capitalize;
    }

.search_diamond_wrap .search_diamond_inner_wrap {
    padding: 35px;
    border: 3px solid #ccc;
    background: #fff;
}

.search_diamond_wrap .search_filter_wrap .shape_wrap {
    margin-bottom: 20px;
}

.search_diamond_wrap .search_filter_wrap .shape_left_wrap{
    width: 260px;
}

.search_diamond_wrap .search_filter_wrap .shape_right_wrap{
    width: calc(100% - 260px);
}

    .search_diamond_wrap .search_filter_wrap .nav-tabs .nav-link {
        color: var(--primary);
        padding: 2px 8px;
        font-size: 15px;
        line-height: 100%;
        border: 0;
        margin-bottom: 5px;
        border-radius: 0;
        font-weight: 500;
    } 

.search_diamond_wrap .search_filter_wrap .nav-tabs .nav-link.active{
    color: var(--dark-primary);
}

.search_diamond_wrap .search_filter_wrap .nav-tabs .nav-link:first-child{
    padding-left: 0;
    border-right: 1px solid var(--primary);
}

.search_diamond_wrap .search_filter_wrap h4 {
    font-weight: 500;
    font-size: 20px;
    line-height: 22px;
    color: var(--primary);
    margin: 0 0 5px;
}

.search_diamond_wrap .search_filter_wrap h4 span {
    font-size: 14px;
    line-height: 25px;
    color: #0F143E;
}

.search_diamond_wrap .search_filter_wrap h4 .text-blue{
    color: var(--dark-primary) !important;
}

.search_diamond_wrap .search_filter_wrap .dragscroll {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    white-space: nowrap;
    flex-wrap: nowrap;
    padding-bottom: 10px;
    margin-bottom: 5px;
    justify-content: flex-start;
    overflow: auto;
    cursor: pointer;
}

.search_diamond_wrap .search_filter_wrap .shape_wrap.display-wrap ul li input {
    display: block;
    margin-bottom: 15px;
}

.search_diamond_wrap .search_filter_wrap ul.working {
    height: auto !important;
    transition: 0.5s ease;
    overflow: inherit;
}

    .search_diamond_wrap .search_filter_wrap ul li {
        margin-right: 7px !important;
    }

.search_diamond_wrap .search_filter_wrap ul li input {
    display: none;
}

.custom-input,
.search_diamond_wrap .search_filter_wrap ul li label {
    background: #F2F2F2;
    color: #848484;
    border: 2px solid #ccc;
    font-weight: 500;
    display: block;
    padding: 0;
    width: 100px;
    height: 48px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-direction: column;
    padding: 10px 18px;
}

.search_diamond_wrap .search_filter_wrap ul.dmnd_shape li label{
    height: 100px;
}

.search_diamond_wrap .search_filter_wrap ul li label img {
    filter: grayscale(1);
    margin-bottom: 10px;
}

.search_diamond_wrap .search_filter_wrap ul li label img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

    .search_diamond_wrap .search_filter_wrap ul li label span {
        font-size: 12px;
        text-transform: capitalize;
        white-space: break-spaces;
        line-height: 20px;
        font-weight: 600;
        letter-spacing: 1px;
    }

.search_diamond_wrap .search_filter_wrap ul li label svg {
    opacity: 0.5;
    width: 40px;
    margin-bottom: 10px;
    height: 40px;
}

    .search_diamond_wrap .search_filter_wrap .shape_wrap {
        margin: 0 0 15px !important;
        display: flex;
        align-items: center;
        border-bottom: 1px solid #CCC;
    }

    .search_diamond_wrap .search_filter_wrap .shap_btn_wrap{
        position: relative;
    }

    .search_diamond_wrap .search_filter_wrap .shap_btn_wrap .less_btn_wrap{
        /*position: absolute;
        top: 0;
        right: 0;*/
        width: 100%;
        text-align: end;
        margin-bottom: 20px;
        border:0;
        padding: 0;
        background-color: transparent;
    }

.search_diamond_wrap .advance_search h3 {
    font-weight: 500;
    font-size: 24px;
    line-height: 24px;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 15px;
    margin: 0 0 30px;
    position: relative;
    border-bottom: 1px solid var(--primary);
    user-select: none;
}

.search_diamond_wrap .advance_search h3 span {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.search_diamond_wrap .advance_search h3 img {
    transform: rotate(180deg);
    transition: 0.5s ease;
}

.search_diamond_wrap .advance_search_content {
    display: none;
}

.search_diamond_wrap .search_filter_wrap .form-control {
    padding: 10px 18px;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    border: 1px solid #dddddd;
    width: 100%;
    margin-bottom: 12px;
}

    .search_diamond_wrap .search_filter_wrap ul li input:checked + label {
        border: 2px solid var(--primary);
        color: var(--primary);
    }

.search_diamond_wrap .search_filter_wrap ul li input:checked + label svg {
    opacity: 1;
}

.input_d_wrap input{
    display: none !important;
}

.shape_wrap.display-wrap .dragscroll {
    /*flex-direction: column;*/
    align-items: flex-start;
}

.search_diamond_wrap .search_filter_wrap .shape_wrap.display-wrap .dragscroll li .size-inner-wrap li label {
    min-width: auto;
    font-size: 14px;
    line-height: 20px;
    width: auto;
    padding: 0 5px;
}

.search_diamond_wrap .search_filter_wrap .shape_wrap.display-wrap .dragscroll li .size-inner-wrap{
    justify-content: flex-start
}

.custom-input {
    width: auto;
    height: auto;
    padding: 7px 10px;
    text-align: left;
}

.search_diamond_wrap .search_filter_wrap .shape_wrap.color-inner-wrap .dragscroll li label {
    width: auto;
    height: 40px;
    font-size: 14px;
    line-height: 20px;
}


.search_diamond_wrap .search_filter_wrap .shape_wrap.color-inner-wrap li.color_custom_li ul{
    white-space: nowrap;
}

.shape_wrap.clarity_wrap .dragscroll li label {
    width: auto;
    height: 40px;
    font-size: 14px;
    line-height: 20px;
}

.shape_wrap.shap-overflow-wrap.arity_wrap .dragscroll{
    overflow: inherit !important;
    flex-wrap: nowrap;
}


.search_diamond_wrap .search_filter_wrap ul li .select-flex-box li{
    width: 33.33%;
}

.search_diamond_wrap .search_filter_wrap ul li .select-flex-box li .select-inner-wrapper .dropdown {
    width: 100%;
}

.search_diamond_wrap .search_filter_wrap ul li .select-flex-box li .select-inner-wrapper h4{
    font-size:16px;
    line-height: 24px;
    text-align: left;
    margin: 0 0 5px;
}

.search_diamond_wrap .search_filter_wrap ul li .select-flex-box li .select-inner-wrapper .dropdown .btn.dropdown-toggle{
    background-color: #f2f2f2;
    border: 1px solid #ccc;
    padding: 12px;
    border-radius: 0;
}

.search_diamond_wrap .search_filter_wrap ul li .select-flex-box li .select-inner-wrapper .dropdown .btn.dropdown-toggle:focus{
    outline: 0 !important;
    outline-offset: 0;
    box-shadow: none;
}

.search_diamond_wrap .search_filter_wrap ul li .select-flex-box li .select-inner-wrapper .dropdown .dropdown-menu{
    max-height: 350px !important;
}

.search_diamond_wrap .search_filter_wrap ul li .select-flex-box li .select-inner-wrapper .dropdown .dropdown-menu li{
    width: 100%;
    text-align: left;
    margin-bottom: 8px;
}

.search_diamond_wrap .search_filter_wrap ul li .select-flex-box li .select-inner-wrapper .dropdown .dropdown-menu li a span{
    font-size: 16px;
    line-height: 24px;
}

.search_diamond_wrap .search_filter_wrap ul li .select-flex-box li input{
    display: block;
}

.search_diamond_wrap .search_filter_wrap ul li .select-flex-box li input:focus{
    box-shadow: none;
}

.search_diamond_wrap .search_filter_wrap .shape_wrap.color-inner-wrap .dragscroll li .cutting_multiy_box h4 {
    width: 100%;
    margin: 0 0 10px;
    text-align: left;
    font-size: 16px;
    line-height: 24px;
}

.search_diamond_wrap .search_filter_wrap .shape_wrap.color-inner-wrap .dragscroll li .cutting_multiy_box ul li label {
    width: 63px;
    height: 48px;
    margin-bottom: 10px;
}

.search_diamond_wrap .search_filter_wrap .shape_wrap.color-inner-wrap .dragscroll li .cutting_multiy_box ul{
    overflow: auto;
}

.search_diamond_wrap .search_filter_wrap .shape_wrap.color-inner-wrap .dragscroll li .cutting_size_wrap li{
    width: 25%;
}

.search_diamond_wrap .search_filter_wrap .shape_wrap.color-inner-wrap .dragscroll li .cutting_size_wrap li label{
    width: 100%;
}

.search_diamond_wrap .search_filter_wrap .shape_wrap.color-inner-wrap .dragscroll li .cutting_size_wrap li input:checked + label {
    border-color: var(--dark-primary);
    background-color: var(--dark-primary);
    color: var(--white)
}

.search_diamond_wrap .search_filter_wrap .Fluorescence_wrap ul li label {
    width: 84px;
    height: 40px;
    font-size: 14px;
    line-height: 20px;
}

.search_diamond_wrap .search_filter_wrap .Fluorescence_wrap .dragscroll{
    height: auto;
}

.search_diamond_wrap .top_button_wrap{
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.search_diamond_wrap .top_button_wrap .left_button_wrap ul{
    display: flex;
    column-gap: 15px;
    margin-bottom: 10px;
}

.search_diamond_wrap .all_diamond_wrap h6{
    padding-bottom: 15px;
    border-bottom: 1px solid var(--primary);
    margin-bottom: 30px;
}

.diamond_search_table .jqx-widget-header {
    background: var(--primary);
    color: var(--white);
    letter-spacing: 1px;
    font-weight: 500;
}

.diamond_search_table .jqx-grid-cell-middle-align{
    color: var(--primary);
}

.jqx-widget .jqx-grid-cell, .jqx-widget .jqx-grid-column-header, .jqx-widget .jqx-grid-group-cell{
    border: none !important;
    border-bottom: 1px solid #ddd !important;
}

.shape_icon {
    margin-top: 13px;
}

.dsbtn {
    color: #fff;
    border: none;
    cursor: pointer;
    width: 100%;
    height: 30px;
    background: transparent;
}

.jqx-widget-content,
.jqx-widget-header{
  border-color: transparent !important;
}

.diamond_search_table .jqx-grid-cell-pinned {
    background-color: transparent;
}

.search_diamond_wrap .diamond_search_table a{
    color: #00A3E4;
}

::-webkit-scrollbar {
  width: 7px;
  height: 3px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
    background: #b6b6b6;
}

/* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #b6b6b6;
    }

.top_button_wrap .left_button_wrap .bg_blue {
    padding: 12px 22px;
    font-size: 18px;
    line-height: 23px;
    letter-spacing: 1px;
}



/*********************************************
 solitaire page css end
*********************************************/

/* responsive css start */
@media (max-width: 1600px) {
  .container {
    max-width: 1320px;
  }
  h2 {
    font-weight: 500;
    font-size: 43px;
    line-height: 50px;
  }
  h4 {
    font-size: 30px;
    line-height: 38px;
  }
  h3 {
    font-size: 37px;
    line-height: 45px;
  }
  p {
    font-size: 20px;
    line-height: 28px;
  }
  .why_choose_icon p {
    font-size: 22px;
    line-height: 30px;
    margin-top: 30px;
  }
  .process_left h2 {
    font-size: 47px;
    line-height: 54px;
  }
  .blog_text a {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 10px;
  }
  .blog_text {
    padding: 15px;
  }
  .blog_text p {
    font-size: 16px;
    line-height: 23px;
  }

  /* vishal css */
  .banner_img_wrap {
    min-height: 680px;
  }
  .banner_bottom_img {
    bottom: -10px;
  }
  .banner_left {
    padding: 150px 0 210px;
  }
  h1 {
    font-size: 60px;
    line-height: 70px;
  }
    .gallery-section .galley_img_wrap ul li .gallery_img_box {
        height: 270px !important;
    }
}

@media (max-width: 1400px) {
    .shape_wrap.clarity_wrap .dragscroll li label {
        width: 90px;
        height: 40px;
    }

    .search_diamond_wrap .search_filter_wrap .shape_wrap.color-inner-wrap .dragscroll li .cutting_multiy_box ul li label {
        width: 60px;
        height: 40px;
    }

    .search_diamond_wrap .search_filter_wrap .shape_wrap.color-inner-wrap .dragscroll li label {
        height: auto;
    }

    .search_diamond_wrap .search_filter_wrap .Fluorescence_wrap ul li label {
        width: auto;
        height: 40px;
    }

   .search_diamond_wrap .search_filter_wrap ul li label{
        width: 90px;
    }

   .search_diamond_wrap .search_filter_wrap .shap_btn_wrap .less_btn_wrap{
       margin-bottom: 10px;
   }

   .search_diamond_wrap .search_filter_wrap h4{
      font-size: 18px;
   }

   .search_diamond_wrap .search_filter_wrap .shape_left_wrap{
       width: 230px;
   }

   .search_diamond_wrap .search_filter_wrap ul.dmnd_shape li label {
    height: 80px;
}

   .search_diamond_wrap .search_filter_wrap .shape_right_wrap{
       width: calc(100% - 230px);
   }

  .container {
    max-width: 1140px;
  }
    header .navbar .navbar-nav li {
        padding: 0 15px !important;
    }
  h2 {
    font-size: 35px;
    line-height: 42px;
  }
  header .navbar-brand img {
    max-width: 215px;
  }
  .why_choose {
    padding: 70px 0;
  }
  .border_white,
  .border_blue,
  .bg_blue {
    padding: 12px 30px;
    font-size: 14px;
    line-height: 22px;
  }
  .dmd_tab .nav-tabs .nav-link {
    font-size: 16px;
    line-height: 26px;
  }
  .shape_wrap ul li img {
    height: 60px;
    width: 60px;
    margin-bottom: 20px;
  }
  .header_btn_wrap .btn_dmnd {
    margin-left: 15px;
  }
  .lab_wrapper {
    margin-top: 40px;
    margin-left: 20px;
  }
  .lab_grown .our_box h4 {
    font-size: 30px;
    line-height: 38px;
  }
  .lab_grown_info h3 {
    font-size: 42px;
    line-height: 52px;
  }
  .p_120 {
    padding: 70px 0;
  }
  .count_wrap p {
    font-size: 22px;
    line-height: 30px;
  }
  .count_wrap h2 {
    margin: 10px 0 0;
  }
  .process_one,
  .process_two,
  .process_three,
  .process_four,
  .process_five,
  .process_six,
  .process_seven,
  .process_eight,
  .process_nine {
    background-size: 140px;
  }
  .process_left p {
    font-size: 19px;
    line-height: 28px;
  }
  .process-left {
    font-size: 22px;
    line-height: 30px;
  }
  .process_section::before {
    width: 260px;
    height: 180px;
  }
  .process_section::after {
    width: 320px;
    height: 220px;
  }
  .our_process_head {
    font-size: 34px;
    line-height: 42px;
    margin-bottom: 40px;
  }
  .process_left h2 {
    font-size: 37px;
    line-height: 46px;
  }
  .process_left p {
    font-size: 18px;
    line-height: 27px;
  }
  .page_title {
    margin-top: 87px;
  }
  .blog_details_sec {
    padding: 60px 0;
  }
  .blog-details-img {
    height: 370px;
  }

  /* vishal css */

  h1 {
    font-size: 55px;
    line-height: 65px;
  }

  h5 {
    font-size: 25px;
    line-height: 35px;
  }
  p {
    font-size: 22px;
    line-height: 32px;
  }
  .banner_sec {
    margin-top: 87px;
  }
  .banner_left {
    padding: 130px 0 180px;
  }
  .banner_img_wrap {
    min-height: 620px;
  }
  .lab_grown_sec {
    padding: 50px 0 60px;
  }
  .banner_left p {
    max-width: 445px;
  }
  .lab_grown_list ul li p {
    font-size: 24px;
    line-height: 36px;
  }
  .collection_wrap ul li img {
    height: 95px;
    width: 95px;
    margin-bottom: 20px;
  }
  .collection_sec {
    padding: 140px 0 60px;
  }
  .about_sec {
    padding-bottom: 60px;
  }
  .collection_after {
    top: -34px;
  }
  .choice_sec {
    padding: 90px 0;
  }
  .event_sec {
    padding: 80px 0 120px;
  }
  .event_bg_img {
    bottom: -33px;
  }
  .our_gallery_sec {
    padding: 40px 0 70px;
  }
  .contact_box .contact_box_title {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 15px;
  }
  .choice_box {
    width: 155px;
    height: 155px;
  }
  .choice_box img {
    height: 58px;
  }
  .shape_sec {
    padding: 60px 0 60px;
  }
  .shape_wrap {
    margin: 50px 0 0;
  }
  .about_left ul li h3 {
    font-size: 35px;
    line-height: 45px;
    margin-bottom: 10px;
  }
  .tab_content_top {
    padding: 160px 0 80px;
  }
  /*header .navbar-nav .dropdown-menu {
    top: 52px;
  }*/
  .tab_bottom_img_wrap {
    max-width: 500px;
  }
  .btn_arrow {
    padding: 12px 40px 12px 25px !important;
  }
  .btn_arrow::after {
    right: 20px;
  }
   .search_diamond_wrap{
        padding: 130px 0 60px;
    }
}

@media (max-width: 1200px) {
 

    .search_diamond_wrap .title h2{
        font-size: 32px;
        line-height: 40px;
    }

    .search_diamond_wrap .search_filter_wrap ul li label {
    width: 80px;
    font-size: 14px;
    }

    .search_diamond_wrap .search_filter_wrap ul li label img {
    width: 35px;
    height: 35px;
    font-size: 14px;
    }

    .search_diamond_wrap .search_filter_wrap .shape_wrap.color-inner-wrap .dragscroll li label{
        width: auto;
        font-size: 14px;
    }

    .shape_wrap.clarity_wrap .dragscroll li label {
    width: auto;
    height: 40px;
    font-size: 14px;
}

    .search_diamond_wrap .search_diamond_inner_wrap{
        padding: 25px;
    }

  .container {
    max-width: 960px;
  }

    .gallery-section .galley_img_wrap ul li .gallery_img_box {
        height: 190px !important;
    }

    .gallery-section {
        padding: 70px 0 !important;
    }
  .page_title {
    margin-top: 79px;
    padding: 30px 0;
  }
  .banner_title {
    font-size: 22px;
    line-height: 30px;
  }
  .count-main {
    margin-bottom: 40px;
  }
  p {
    font-size: 18px;
    line-height: 25px;
  }
  header .navbar .navbar-nav li {
    padding: 0 10px !important;
  }
  header .navbar-brand img {
    max-width: 175px;
  }
  header .navbar .navbar-nav li a {
    font-size: 14px;
    line-height: 22px;
  }
  .header_btn_wrap .btn_dmnd {
    width: 45px;
    height: 45px;
  }
  .border_white,
  .border_blue,
  .bg_blue {
    padding: 10px 30px;
    font-size: 14px;
    line-height: 20px;
  }
  .btn_dmnd img {
    width: 20px;
  }
  .why_choose_info {
    margin-left: 0;
  }
  .why_choose_icon p {
    font-size: 18px;
    line-height: 25px;
  }
  .why_choose_icon .icon_box {
    width: 100px;
    height: 100px;
  }
  .process_one,
  .process_two,
  .process_three,
  .process_four,
  .process_five,
  .process_six,
  .process_seven,
  .process_eight,
  .process_nine {
    background-size: auto;
  }
  .process_section::before,
  .process_section::after {
    display: none;
  }
  .blog_replay {
    margin-top: 90px;
  }
  .blog_form h4 {
    margin-bottom: 20px;
  }
  .blog_input textarea,
  .blog_input input {
    padding: 8px 10px;
  }
  .blog_input {
    margin: 0 0 10px;
    max-width: 100%;
  }
  .blog_input label {
    margin-bottom: 0;
  }
  .lab_sec_txt p {
    font-size: 22px;
    line-height: 30px;
  }
  h2 {
    font-size: 30px;
    line-height: 36px;
  }
  .natural_main {
    background: rgba(15, 20, 62, 0.8);
    padding: 50px;
  }
  .natur_left_main h3 {
    margin-bottom: 40px;
    font-size: 28px;
    line-height: 36px;
  }
  .natural_diamond_sec {
    padding: 100px 0;
  }
  .natur_left_main p {
    font-size: 18px;
    line-height: 25px;
  }
  .netural_inner_wrapper .mining_txt h4 {
    font-size: 18px;
    line-height: 25px;
  }

  /* vishal css */

  .banner_sec {
    margin-top: 82px;
  }
  h1 {
    font-size: 50px;
    line-height: 60px;
  }
  .lab_grown_list ul li p {
    font-size: 22px;
    line-height: 32px;
  }
  .title_blue {
    margin-bottom: 10px;
  }
  .collection_sec {
    padding: 120px 0 60px;
  }
  .choice_sec {
    padding: 70px 0 50px;
  }
  .galley_img_wrap ul li .gallery_img_box {
    height: 170px;
  }
  .our_gallery_sec {
    padding: 40px 0 60px;
  }
  .collection_sec h2 {
    margin-bottom: 40px;
  }
  .event_sec {
    padding: 60px 0 100px;
  }
  .about_sec {
    padding-bottom: 60px;
  }
  .light_blue_box {
    padding: 12px;
  }
  .event_wrap .light_blue_box img {
    height: 85px;
  }
  .collection_wrap ul li img {
    height: 85px;
    width: 85px;
  }
  .choice_box {
    width: 130px;
    height: 130px;
    margin: 0 auto 15px;
  }
  .choice_box img {
    height: 50px;
  }
  .tab_content_top {
    padding: 140px 0 60px;
  }
  .tab_content_bottom {
    padding: 80px 0 60px;
  }
  .shape_wrap ul li img {
    height: 50px;
    width: 50px;
    margin-bottom: 15px;
  }
  .tab_bottom_img_wrap {
    max-width: 450px;
  }
  .banner_img_wrap {
    min-height: 600px;
  }
  .about_left ul li h3 {
    font-size: 30px;
    line-height: 40px;
  }
  .about_left ul li p {
    font-size: 16px;
    line-height: 26px;
  }
  .about_left ul li {
    margin-bottom: 10px;
  }
  .lab_grown_list ul li p {
    font-size: 20px;
    line-height: 30px;
  }
  .lab_grown_list ul {
    justify-content: space-between !important;
  }
  .lab_grown_list ul li {
    margin: 20px 15px 0;
  }
  .p_small {
    font-size: 16px;
    line-height: 26px;
  }
  .our_gallery_wrap .nav-tabs .nav-link {
    font-size: 18px;
    line-height: 25px;
  }
  .contact_box ul li a {
    font-size: 16px;
    line-height: 26px;
  }
  .tab_content_top_inner p {
    margin: 30px 0 50px;
  }
  /* .dmd_tab .nav-tabs .nav-link.nav-link.active,
  .dmd_tab .nav-tabs .nav-link.nav-link:hover {
    font-size: 18px;
    line-height: 28px;
  } */
  .dmd_tab .nav-tabs {
    margin-bottom: -100px;
  }
  .dmd_detail {
    margin-top: 60px;
  }
  /*header .navbar-nav .dropdown-menu {
    top: 48px;
  }*/
}

@media (max-width: 1120px) {
  .lab_wrapper {
    margin-left: 0;
  }
  .lab_grown_info h3 {
    font-size: 37px;
    line-height: 45px;
  }
  .lab_grown .our_box h4 {
    font-size: 27px;
    line-height: 36px;
  }
  .video_div video {
    height: 440px;
  }
  .blog_section {
    padding: 50px 0;
  }
  .mining_txt h4 {
    font-size: 24px;
    line-height: 32px;
  }
}

@media (max-width: 991px) {
    
  .container {
    max-width: 100%;
  }
    .gallery-section .galley_img_wrap ul li {
        width: calc(33% - 20px) !important;
    }
        .gallery-section .galley_img_wrap ul li .gallery_img_box {
            height: 240px !important;
        }
  .page_title.login_section {
    height: auto;
  }
  .login_left_img {
    display: none;
  }
  header .navbar-light .navbar-toggler-icon {
    filter: invert(1);
  }
  header .navbar-toggler:focus {
    box-shadow: none;
  }
  header .navbar-brand {
    margin-right: auto;
  }
  header .navbar {
    justify-content: end;
  }
  header .navbar-collapse {
    position: fixed;
    top: 78px;
    right: -300px;
    bottom: 0;
    width: 300px;
    height: 100%;
    background: var(--white);
    transition: 0.5s ease;
  }
  header .navbar-collapse.show {
    right: 0;
    transition: 0.5s ease;
  }

  header .navbar .navbar-nav li {
    padding: 15px 0 !important;
  }
  header .navbar .navbar-nav li::after {
    display: none;
  }
  header .navbar .navbar-nav li a {
    text-align: center;
    color: var(--primary) !important;
  }
  .footer_upper {
    padding: 30px 0;
  }
  .why_choose_img {
    margin-bottom: 30px;
  }
  .lab_grown_info {
    margin-top: 30px;
  }
  .blog_details_txt h4 {
    font-size: 26px;
    line-height: 32px;
  }
  .mining_img {
    width: 130px;
    height: 130px;
  }
  .mining_img img {
    width: 80px;
  }
  .quality_inner h3 {
    font-size: 30px;
    line-height: 38px;
  }
  .natural_mining_wrapper {
    margin-bottom: 0;
  }
  .natural_mining_wrapper .mining_img img {
    width: auto;
  }
  .natur_left_main h3 {
    margin-bottom: 20px;
  }
  .natur_left_main p {
    margin-bottom: 12px;
  }
  .natural_main h3 {
    font-size: 30px;
    line-height: 38px;
  }

  /* vishal css */

  .lab_grown_sec {
    padding: 50px 0;
  }
  .lab_grown_right,
  .about_right {
    max-width: 500px;
    margin: 0 auto;
  }
  .about_sec {
    padding-bottom: 50px;
  }
  .collection_after {
    display: none;
  }
  .collection_sec {
    padding: 50px 0 30px;
  }
  .choice_sec {
    padding: 50px 0 30px;
  }
  .event_sec {
    padding: 50px 0 40px;
  }
  .event_wrap .light_blue_box img {
    height: 65px;
  }
  .galley_img_wrap ul li {
    width: calc(25% - 20px);
  }

  .collection_wrap ul li img {
    margin-bottom: 10px;
  }

  .collection_wrap ul {
    flex-wrap: wrap;
  }

  .collection_wrap ul li {
    width: calc(100% / 4);
    margin-bottom: 30px;
  }

  .shape_wrap ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .shape_wrap ul li {
    width: calc(100% / 6);
    margin-bottom: 30px;
  }

  .dmd_tab .nav-tabs .nav-link {
    font-size: 14px;
    line-height: 24px;
  }
  .tab_content_top_inner p {
    margin: 20px 0 40px;
    padding: 0;
  }
  .tab_bottom_img_wrap {
    margin-right: auto;
    margin-left: auto;
  }
  .tab_bottom_img_wrap::after,
  .tab_content_bottom::before
  /* .tab_content_bottom::after */ {
    display: none;
  }

  .tab_bottom_img_wrap::after {
    left: -50px;
    top: -40px;
    height: calc(100% - 100px);
    width: calc(100% - -100px);
  }

  .tab_content_bottom::after {
    right: 0;
    top: 0;
    height: 400px;
    width: 100%;
  }
  .tab_content_bottom_right {
    padding-left: 0;
    margin-top: 30px;
  }
  .tab_content_bottom {
    padding: 60px 0 50px;
  }
  .banner_img_wrap {
    z-index: 9;
    position: relative;
    background-position: center;
    min-height: 550px;
  }
  .banner_img_wrap:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 1) 0%,
      rgba(73, 123, 233, 0) 100%
    );
    z-index: -1;
  }
  .banner_slide {
    z-index: 99;
    position: relative;
  }
  .banner_bottom_img {
    bottom: -6px;
  }
  .about_left ul li h3 {
    font-size: 28px;
    line-height: 35px;
  }
  .lab_grown_list ul {
    justify-content: start !important;
  }
  .our_gallery_wrap .nav-tabs .nav-link {
    font-size: 16px;
    line-height: 22px;
  }
  .contact_box .contact_box_title {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 10px;
  }
  .our_gallery_sec {
    padding: 40px 0 50px;
  }
  .event_bg_img {
    display: none;
  }
  .dmd_tab .nav-tabs .nav-link img {
    height: 22px;
  }
  header .navbar .navbar-nav li a {
    font-size: 18px;
    line-height: 28px;
  }
  .shape_sec {
    padding: 50px 0 30px;
  }
  .tab_content_top {
    padding: 130px 0 60px;
  }
  p {
    font-size: 18px;
    line-height: 28px;
  }
  .shape_wrap {
    margin: 30px 0 0;
  }
  .event_sec h2 {
    margin-bottom: 20px;
  }
  .associated_wrap {
    margin-bottom: 40px;
  }
  .choice_title {
    margin-bottom: 40px;
  }
  header .dropdown-toggle::after {
    filter: invert(1) brightness(0);
  }
  header .navbar .navbar-nav .dropdown-menu {
    width: calc(100% - 30px);
    margin: 10px auto 0;
    box-shadow: 0 0 10px 0px #0000002e;
    border: 0;
  }
  .search_diamond_wrap .search_filter_wrap .shape_wrap.color-inner-wrap li.color_custom_li ul{
    flex-wrap: nowrap;
}

    .search_diamond_wrap .search_filter_wrap ul li .select-flex-box li {
    width: calc(50% - 15px);
    margin-bottom: 15px;
}

    .search_diamond_wrap .search_filter_wrap h4 {
        width: 100%;
    }

    .search_diamond_wrap .search_filter_wrap .shape_wrap{
        flex-wrap: wrap;
    }

    .search_diamond_wrap .search_filter_wrap .shape_left_wrap{
    width: 100%;
    margin-bottom: 2px;
    }

    .search_diamond_wrap .search_filter_wrap .shape_right_wrap {
    width: 100%;
    }

    .search_diamond_wrap .search_filter_wrap ul li{
        width: auto;
        margin-bottom: 0;
    }

    .shape_wrap.color-inner-wrap ul{
        justify-content: flex-start;
    }

    .shape_wrap.color-inner-wrap ul.select-flex-box{
        justify-content: space-between;
    }
}

@media (max-width: 767px) {
    .login_right {
        min-height: inherit;
    }
  .count-main:last-child {
    margin-bottom: 0;
  }
    .gallery-section .galley_img_wrap ul li {
        width: calc(50% - 20px) !important;
    }
        .gallery-section .galley_img_wrap ul li .gallery_img_box {
            height: auto !important;
        }
  .input-box {
    margin: 20px auto 0px;
}
  .login_right {
    padding: 30px 50px;
}
  .tab_bottom_img_wrap::after {
    left: -30px;
    top: -40px;
    height: calc(100% - 100px);
    width: calc(100% - -60px);
  }
  .process_one,
  .process_two,
  .process_three,
  .process_four,
  .process_five,
  .process_six,
  .process_seven,
  .process_eight,
  .process_nine {
    background-size: 125px;
    background-position: center left 45%;
  }
  .discover_diamonds {
    padding: 40px 0 0;
  }
  .diamond_info {
    padding-bottom: 40px;
  }
  .blog_text a {
    font-size: 20px;
    line-height: 25px;
  }
  .blog_img_wrapper h5 {
    font-size: 16px;
    line-height: 22px;
    width: 49px;
  }
  .blog-main .row .blog-m-wrapper:last-child .blog_wrapper {
    margin-bottom: 0;
  }
  .pagination_box {
    margin-top: 20px;
  }
  .blog-details-img {
    height: 230px;
  }
  .blog_details_txt h4 {
    font-size: 22px;
    line-height: 30px;
  }
  .blog_replay_img {
    margin-bottom: 30px;
  }
  .blog_input {
    margin: 0 0 20px;
  }
  .blog_input label {
    margin-bottom: 5px;
  }
  .lab_sec_txt p {
    font-size: 18px;
    line-height: 25px;
  }
  .lab_sec_txt h2 {
    font-size: 26px;
    line-height: 32px;
  }
  .p_120 {
    padding: 50px 0;
  }
  .natural_mining_wrapper {
    margin-bottom: 30px;
  }
  .natural_center {
    padding: 40px 0 0;
  }
  .natural_diamond_sec {
    padding: 50px 0;
  }

  /* vishal css */

  h1 {
    font-size: 45px;
    line-height: 55px;
  }
  h2 {
    font-size: 30px;
    line-height: 40px;
  }
  .galley_img_wrap ul li {
    width: calc(33.33% - 20px);
  }
  .our_gallery_wrap .nav-tabs .nav-link {
    font-size: 14px;
    line-height: 20px;
    padding: 10px 20px;
  }
  .dmd_tab .nav-tabs .nav-item {
    margin: 0 10px;
  }
  .dmd_tab .nav-tabs .nav-link {
    padding: 10px 15px;
  }
  .shape_wrap ul li {
    width: calc(100% / 4);
  }
}

@media (max-width: 575px) {
    .search_diamond_wrap .title h2{
    font-size: 25px;
    line-height: 36px;
    }

    .search_diamond_wrap{
       padding: 120px 0 50px;
    }

    .search_diamond_wrap .search_filter_wrap ul.dmnd_shape li label {
       height: 70px;
    }

    .search_diamond_wrap .search_filter_wrap h4 {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .search_diamond_wrap .search_filter_wrap .shape_wrap{
        margin: 0 0 10px !important;
    }

    .search_diamond_wrap .search_filter_wrap .shape_wrap.color-inner-wrap .dragscroll li label {
          width: 60px;
    }

    .shape_wrap.clarity_wrap .dragscroll li label{
        width: 60px;
    }

    .search_diamond_wrap .search_filter_wrap .Fluorescence_wrap ul li label{
    width: 80px;
    height: 35px;
    }

    .search_diamond_wrap .search_filter_wrap .shap_btn_wrap .less_btn_wrap {
    margin-bottom: 5px;
}

  .border_blue,
  .border_white {
    padding: 10px 25px;
    font-size: 14px;
    line-height: 20px;
  }

  .tab_bottom_img_wrap::after {
    display: none;
  }

  .video_div video {
    height: 230px;
  }

  .process-left {
    font-size: 18px;
    line-height: 26px;
  }
  .process-right {
    font-size: 14px;
    line-height: 20px;
  }
  .process-right {
    max-width: 160px;
    margin: 20px 0 30px 0;
  }
  .process-left {
    margin: 20px 0;
  }
  .process_one,
  .process_two,
  .process_three,
  .process_four,
  .process_five,
  .process_six,
  .process_seven,
  .process_eight,
  .process_nine {
    background-size: 130px;
    background-position: center right 21%;
  }
  .blog_discription p {
    font-size: 16px;
    line-height: 24px;
  }
  .blog-icon-txt h6 {
    font-size: 15px;
    line-height: 22px;
  }
  .quality_inner h3 {
    font-size: 26px;
    line-height: 34px;
  }
  .natural_center {
    padding: 40px 0;
  }
  .natural_main h3 {
    font-size: 25px;
    line-height: 30px;
  }
  .netural_inner_wrapper {
    margin-top: 40px;
  }

  /* vishal css */

  h1 {
    font-size: 35px;
    line-height: 45px;
  }
  h2 {
    font-size: 25px;
    line-height: 35px;
  }
  h5 {
    font-size: 23px;
    line-height: 30px;
  }

  .banner_left p {
    font-size: 18px;
    line-height: 28px;
  }

  .banner_left p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 28px;
    max-width: 585px;
  }

  .galley_img_wrap ul li {
    width: calc(50% - 20px);
  }
  .associated_wrap .light_blue_box img {
    height: 70px;
  }
  .event_wrap .light_blue_box img {
    height: 80px;
  }
  .collection_wrap ul li {
    width: calc(100% / 2);
  }
  .banner_left {
    padding: 80px 0 120px;
  }
  .banner_img_wrap {
    min-height: 450px;
  }
  .banner_left h1 {
    margin-bottom: 25px;
  }
  .choice_wrap .custom_col {
    width: 50%;
  }
  .our_gallery_wrap .nav-tabs .nav-link {
    font-size: 12px;
    line-height: 18px;
    padding: 10px 18px;
  }
  .our_gallery_sec {
    padding: 40px 0;
  }
  .event_sec {
    padding: 50px 0 50px;
  }
  .associated_wrap {
    margin-bottom: 40px;
  }
  .banner_bottom_img {
    min-width: 650px;
  }
  .banner_sec {
    overflow: hidden;
  }
  .dmd_tab .nav-tabs .nav-item {
    width: calc(50% - 20px);
    margin: 0 10px 20px;
  }
  .dmd_tab .nav-tabs .nav-item .nav-link {
    width: 100%;
    justify-content: center;
  }
  .tab_content_top {
    padding: 180px 0 60px;
  }
  .dmd_tab .nav-tabs {
    margin-bottom: -170px;
  }
  .shape_sec {
    padding: 50px 0 30px;
  }
  .associated_wrap {
    margin-bottom: 30px;
  }
  .tab_content_bottom_right h2 img {
    width: 25px;
  }
  /* .dmd_tab .nav-tabs .nav-link.nav-link.active,
  .dmd_tab .nav-tabs .nav-link.nav-link:hover {
    font-size: 16px;
    line-height: 26px;
  }
  .dmd_tab .nav-tabs .nav-link img {
    height: 20px;
  } */
  .dmd_tab .nav-tabs .nav-link.nav-link.active {
    transform: scale(1.1);
  }
  header .navbar .navbar-nav li a {
    font-size: 16px;
    line-height: 26px;
  }
}

@media (max-width: 480px) {
  header .navbar-brand img {
    max-width: 145px;
  }
    .gallery-section .galley_img_wrap ul li {
        width: 100% !important;
    }
  .login_right {
    padding: 15px;
  }
  .tab_content_bottom::after {
    right: 0;
    top: 0;
    height: 300px;
    width: 100%;
  }
  .header_btn_wrap .btn_dmnd {
    display: none;
  }
  .why_choose_info p {
    margin: 10px 0 20px;
  }
  h1 {
    font-size: 32px;
    line-height: 42px;
  }
  h2 {
    font-size: 25px;
    line-height: 35px;
  }
  p {
    font-size: 16px;
    line-height: 26px;
  }
  .lab_grown_info h3 {
    font-size: 30px;
    line-height: 38px;
  }
  .footer-left p {
    font-size: 16px;
    line-height: 22px;
    color: var(--white);
  }
  .process_one,
  .process_two,
  .process_three,
  .process_four,
  .process_five,
  .process_six,
  .process_seven,
  .process_eight,
  .process_nine {
    padding: 0;
  }
  .our_process_head {
    font-size: 27px;
    line-height: 35px;
    margin-bottom: 30px;
  }
  .page_title {
    margin-top: 79px;
  }
  .process_left h2 {
    font-size: 32px;
    line-height: 40px;
  }
  .process_left p {
    font-size: 16px;
    line-height: 25px;
    margin: 10px 0 18px;
  }
  .pagination_box p {
    font-size: 15px;
    line-height: 26px;
  }
  .pagination_box nav .pagination .page-item .page-link {
    padding: 5px 12px;
    font-size: 15px;
    line-height: 23px;
  }
  .pagination_box nav .pagination .page-item .page-link img {
    width: 8px;
  }
  .blog_details_txt {
    margin: 20px 0 0;
  }
  .blog_icon {
    width: 20px;
    /* height: 20px; */
  }
  .blog_details_txt ul {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 5px;
  }
  .lab_sec_txt p {
    font-size: 16px;
    line-height: 22px;
  }
  .lab_sec_txt h2 {
    font-size: 22px;
    line-height: 27px;
  }
  .lab_sec_section {
    padding: 30px 0 10px;
  }
  .natural_main {
    padding: 30px 15px;
  }
  .natural_main h3 {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 13px;
  }

  /* vishal css */

  .banner_sec {
    margin-top: 79px;
  }
  .banner_bottom_img {
    bottom: -4px;
  }
  .about_left ul {
    flex-wrap: wrap;
  }
  .about_left ul li {
    width: 100%;
    padding: 0;
  }
  .about_left ul li h3 {
    font-size: 25px;
    line-height: 35px;
    margin-bottom: 5px;
  }
  .lab_grown_list ul {
    flex-wrap: wrap;
    justify-content: center !important;
  }
  .lab_grown_list ul li {
    width: 50%;
    margin: 0 0 20px;
  }
  .lab_grown_sec {
    padding: 40px 0 20px;
  }
  .our_gallery_wrap .nav-tabs .nav-link {
    width: calc(50% - 20px);
    margin: 0 10px 20px;
    font-size: 14px;
  }
  .our_gallery_wrap .nav-tabs {
    margin-bottom: 20px;
  }
  .contact_box ul li a {
    font-size: 14px;
    line-height: 24px;
    margin-left: 15px;
  }
  .contact_box ul li img {
    width: 12px;
    margin-top: 5px;
  }
  p {
    font-size: 18px;
    line-height: 26px;
  }
  .shape_wrap ul li {
    width: calc(100% / 3);
  }
  .shape_sec {
    padding: 40px 0 20px;
  }
  .dmd_detail {
    margin-top: 20px;
  }
  header .navbar-collapse.show {
    top: 79px;
  }
}

@media (max-width: 400px) {
    .search_diamond_wrap .search_diamond_inner_wrap {
    padding: 15px;
}

  h1 {
    font-size: 30px;
    line-height: 40px;
  }
  .galley_img_wrap ul li {
    width: 100%;
  }
  .galley_img_wrap ul li .gallery_img_box {
    height: 250px;
  }
  .banner_img_wrap {
    min-height: 400px;
  }
  .banner_left {
    padding: 70px 0 80px;
  }
  .choice_wrap .custom_col {
    width: 100%;
  }
  .event_sec {
    padding: 40px 0;
  }
  .tab_content_bottom {
    padding: 40px 0;
  }
  .shape_wrap ul li {
    width: calc(100% / 2);
  }
  p {
    font-size: 16px;
    line-height: 26px;
  }
}

@media (max-width: 380px) {
    .search_diamond_wrap .search_filter_wrap ul li .select-flex-box li{
    width: 100%;
}

  .why_choose {
    padding: 50px 0;
  }
  .process_one,
  .process_two,
  .process_three,
  .process_four,
  .process_five,
  .process_six,
  .process_seven,
  .process_eight,
  .process_nine {
    background-size: 110px;
    background-position: center right 13%;
  }
  .pagination_box {
    gap: 12px;
    flex-direction: column;
  }
  .blog-details-img {
    height: 160px;
  }
  .blog_img_wrapper h5 {
    font-size: 14px;
    line-height: 19px;
    width: 44px;
  }
  .blog_details_sec {
    padding: 40px 0;
  }
  .diamond_info_box h2 {
    font-size: 23px;
    line-height: 30px;
  }
  .why_choose_info h2 {
    font-size: 22px;
    line-height: 30px;
  }
  p {
    font-size: 16px;
    line-height: 22px;
  }

  /* vishal css */
  .our_gallery_wrap .nav-tabs .nav-link {
    width: calc(50% - 10px);
    margin: 0 5px 20px;
  }
  header .navbar-brand img {
    max-width: 135px;
  }
}

/* responsive css end */

.modal-body{
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 1px;
}

.modal-title{
    color: var(--primary);
    text-transform: capitalize;
}

header .navbar .navbar-nav li a.show {
  color: var(--dark-primary) !important;
}
header .dropdown-toggle.show::after {
  filter: inherit;
}
header .navbar-nav .dropdown-menu {
  top: 30px;
}

.msg_text_red{
    color: #fff;
    text-shadow: 1px 1px 2px white, 0 0 25px #ff0000, 0 0 5px #ff0101;
}

.msg_text_green{
    color: #fff;
    text-shadow: 1px 1px 2px white, 0 0 25px #00ff6d, 0 0 5px #00ff6d;
}

.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-results__option--highlighted[aria-selected] {
    background-color: var(--primary) !important;
    color: white;
}

.view-more-gallery{
    margin-top: 40px;
}

.gallery-section {
    padding: 120px 0;
}

.gallery-section .galley_img_wrap ul li .gallery_img_box {
    height: 340px;
}

.gallery-section .galley_img_wrap ul li{
    width: calc(25% - 20px);
}

.overflow-inherit{
    overflow: inherit !important;
}
.loader {
    top: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    overflow: hidden;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 40px;
}
.loader .loader_inner {
    width: 120px;
    height: 120px;
    display: inline-block;
    padding: 0px;
    text-align: left;
    position: relative;
}
.loader .loader_inner img {
    position: absolute;
    width: 70px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-filter: invert(1) brightness(55);
    filter: invert(1) brightness(55);
    z-index: 99;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
}
.loader .loader_inner span {
    position: absolute;
    display: inline-block;
    width: 120px;
    height: 120px;
    border-radius: 100%;
    background: #00a3e4;
    -webkit-animation: loader_inner 1.5s linear infinite;
    animation: loader_inner 1.5s linear infinite;
}

@keyframes loader_inner {
  0% {
    transform: scale(0, 0);
    opacity: 0.8;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
@-webkit-keyframes loader_inner {
  0% {
    -webkit-transform: scale(0, 0);
    opacity: 0.8;
  }
  100% {
    -webkit-transform: scale(1, 1);
    opacity: 0;
  }
}

.loader .loader_inner span:last-child {
    animation-delay: -0.9s;
    -webkit-animation-delay: -0.9s;
}

.CheckedRowSelection {
    background: #0f143e12 !important;
}

.login_left_img {
    height: 800px;
}