@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --white: #fff;
  --yellow: #d2ab67;
  --blue: #161f3b;
  --black: #101010;
  --dark-blue: #1f2027;
  --light: #919191;
}

@font-face {
  font-family: "Casual";
  src: url("../fonts/casual-regular/Casual-Regular.woff2") format("woff2"),
    url("../fonts/casual-regular/Casual-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Proxima Nova Rg";
  src: url("../fonts/Proxima-Nova-Font/ProximaNova-Regular.woff2")
      format("woff2"),
    url("../fonts/Proxima-Nova-Font/ProximaNova-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Casual";
  font-weight: 400;
}

body {
  font-family: "Proxima Nova Rg";
  overflow-x: hidden;
}

.container {
  max-width: 1400px;
}

h1 {
  font-size: 60px;
  line-height: 74px;
}

h2 {
  font-size: 50px;
  line-height: 60px;
}

h3 {
  font-size: 40px;
  line-height: 50px;
}

h4 {
  font-size: 30px;
  line-height: 40px;
}

h5 {
  font-size: 25px;
  line-height: 35px;
}

h6 {
  font-size: 20px;
  line-height: 30px;
}

p {
  font-weight: 400;
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 28px;
}

.text_yellow {
  color: #d2ab67;
}

textarea {
  resize: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* global css start */

.btn_yellow {
  display: inline-block;
  padding: 15px 40px;
  text-align: center;
  font-weight: 400;
  font-size: 20px;
  line-height: 25px;
  color: var(--black);
  border: 2px solid var(--yellow);
  background: var(--yellow);
  transition: 0.5s ease;
}

.btn_yellow:hover {
  background: transparent;
  color: var(--yellow);
  transition: 0.5s ease;
}

.btn_border_yellow {
  display: inline-block;
  padding: 15px 40px;
  text-align: center;
  font-weight: 400;
  font-size: 20px;
  line-height: 25px;
  color: var(--yellow);
  border: 2px solid var(--yellow);
  background: transparent;
  transition: 0.5s ease;
}

.btn_border_yellow:hover {
  background: var(--yellow);
  color: var(--black);
  transition: 0.5s ease;
}

.btn_border_black {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 15px 40px;
  text-align: center;
  font-weight: 400;
  font-size: 20px;
  line-height: 25px;
  color: var(--black);
  border: 1.5px solid var(--black);
  background: transparent;
  transition: 0.5s ease;
}

.btn_border_black:hover {
  color: var(--white);
  border: 1.5px solid var(--black);
  background: var(--black);
  transition: 0.5s ease;
}

.btn_border_black:hover img {
  filter: invert(1);
  transition: 0.5s ease;
  transform: translateX(7px);
}

.btn_border_black img {
  padding-left: 5px;
  transition: 0.5s ease;
}

.btn_border_white {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 15px 40px;
  text-align: center;
  font-weight: 400;
  font-size: 20px;
  line-height: 25px;
  color: var(--white);
  border: 1.5px solid var(--white);
  background: transparent;
  transition: 0.5s ease;
}

.btn_border_white:hover {
  color: var(--black);
  border: 1.5px solid var(--white);
  background: var(--white);
  transition: 0.5s ease;
}

.btn_border_white:hover img {
  filter: brightness(0);
  transition: 0.5s ease;
  transform: translateX(7px);
}

.btn_border_white img {
  padding-left: 5px;
  transition: 0.5s ease;
}
.subtitle {
  display: inline-block;
  font-weight: 400;
  font-size: 15px;
  line-height: 77.1%;
  padding: 6px;
  position: relative;
  font-weight: 600;
  margin-bottom: 20px;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

.subtitle.yellow {
  border-top: 1px solid var(--yellow);
  border-bottom: 1px solid var(--yellow);
}

.subtitle.black {
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
}

.title h1 {
  margin-bottom: 32px;
}

.title h2 {
  margin-bottom: 28px;
  text-transform: capitalize;
}

.title h3 {
  margin-bottom: 20px;
}

.title img {
  display: block;
  margin-bottom: 28px;
}

/* global css start */

/* header css start */
.header_wrap {
  position: fixed;
  left: 0;
  right: 0;
  top: 0px;
  padding: 24px 0;
  z-index: 99;
}

.header_wrap .navbar-nav {
  width: 100%;
  justify-content: flex-end;
  align-items: center;
}

.header_wrap .navbar-nav .nav-link {
  font-weight: 400;
  font-size: 22px;
  line-height: 22px;
  padding: 6px 15px;
  color: var(--white);
  position: relative;
}

.header_wrap .navbar-nav .nav-link::after {
  content: "";
  height: 100%;
  width: 0;
  background: linear-gradient(
    90deg,
    rgba(210, 171, 103, 0.5) 0%,
    rgba(210, 171, 103, 0) 100%
  );
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  transition: 0.5s ease;
  z-index: -1;
}

.header_wrap .navbar-nav .nav-link:hover:after {
  width: 100%;
  transition: 0.5s ease;
}

.header_wrap .navbar-nav .nav-item {
  margin-right: 15px;
}

.header_wrap .navbar-nav .nav-link.active {
  background: linear-gradient(
    90deg,
    rgba(210, 171, 103, 0.5) 0%,
    rgba(210, 171, 103, 0) 100%
  );
}

header .header_wrap .navbar-brand img {
  transition: 0.5s ease;
  height: 100px;
}

header.fixed {
  z-index: 99;
  position: relative;
}

header .header_wrap {
  transition: 0.5s ease;
}

header.fixed .header_wrap {
  padding: 10px 0;
  background: #161f3b url(../images/header-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

header.fixed .header_wrap .navbar-brand img {
  height: 60px;
}
.header_wrap .header_btn {
  line-height: 20px;
}

/* banner css start */
.banner_sec_wrap {
  background: #161f3b url(../images/banner_bg.png) no-repeat;
  padding-top: 240px;
  color: var(--white);
  background-size: cover;
}

.banner_left_wrap .banner_left_wrap h1 {
  margin-bottom: 32px;
}

.banner_left_wrap {
  padding-bottom: 50px;
}

.banner_left_wrap .subtitle {
  margin-bottom: 22px;
}

.banner_right_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  padding: 160px 15px 15px;
  border-radius: 800px 800px 0 0;
  max-width: 500px;
  margin-left: auto;
  margin-right: 30px;
  margin-bottom: -60px;
  position: relative;
  z-index: 9;
}

.banner_right_wrap:after {
  content: "";
  position: absolute;
  left: -25px;
  top: -25px;
  width: calc(100% + 50px);
  background: rgba(255, 255, 255, 0.1);
  height: calc(100% - 35px);
  border-radius: 800px 800px 0 0;
  z-index: -1;
}

.banner_right_wrap img {
  border-radius: 800px 800px 0 0;
}

.banner_left_wrap h1 {
 font-size: 70px;
 max-width: 580px
}
.banner_left_wrap .btn_border_yellow {
  color: var(--white);
}

/* our feature css start */
.our_feature_sec {
  background: var(--yellow);
  color: var(--white);
}

.feature_box {
  background: var(--white);
  color: var(--black);
  padding: 22px;
  border-radius: 20px 20px 0 0;
  text-align: center;
  position: relative;
}

.feature_box p {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 6px;
}

.feature_box span {
  font-weight: 400;
  font-size: 10px;
  line-height: 14px;
  letter-spacing: 0.22em;
  color: #a3a3a3;
}

.feature_box img {
  height: 210px;
  object-fit: contain;
}

.feature_box.odd {
  margin-top: 140px;
}

.feature_box.odd::after {
  content: "";
  width: 154px;
  height: 150px;
  background-image: url(../images/net.svg);
  background-size: 154px;
  background-repeat: no-repeat;
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: -1;
}

.feature_box.even {
  margin-bottom: 140px;
  border-radius: 0 0 20px 20px;
}

.feature_box.even::after {
  content: "";
  width: 154px;
  height: 150px;
  background-image: url(../images/net.svg);
  background-size: 154px;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -70px;
  left: 50%;
  transform: translate(-50%, 0);
      z-index: -1;
}

.our_feature_right .subtitle {
  margin-bottom: 10px;
}

.our_feature_right {
  padding-left: 30px;
  padding-top: 50px;
}

/* our feature css start */

/* section_shape_odd sec start */
.section_shape_odd {
  background-image: url(../images/shape_odd_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--black);
}

.product_detail_left,
.product_detail_right {
  padding: 100px 0 85px;
}

.product_detail_left .shape_odd_left,
.product_detail_right .shape_odd_left {
  position: relative;
}

/* .product_detail_right .shape_img_wrap {
  margin-right: 0;
  margin-left: 60px;
} */

/* .section_shape_even .shape_img_wrap::after {
  content: "";
  position: absolute;
  left: -40px;
  top: -26px;
  bottom: 0;
  border: 2px solid var(--yellow);
  border-radius: 300px 300px 0 0;
  width: 100%;
  height: 100%;
  z-index: -1;
} */

.product_detail_left .shape_small_img {
  position: absolute;
  bottom: 10px;
  right: -105px;
  z-index: 1;
}
.shape_small_img img {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  object-fit: cover;
}

.product_detail_right .shape_small_img {
  position: absolute;
  bottom: 10px;
  z-index: 1;
  left: -105px;
}

/* .shape_img_wrap {
  margin-right: 80px;
  position: relative;
  z-index: 1;
} */

/* .shape_img_wrap img {
  border-radius: 300px 300px 0 0;
} */

/* .shape_img_wrap::after {
  content: "";
  position: absolute;
  left: -40px;
  top: -26px;
  bottom: 0;
  border: 2px solid var(--blue);
  border-radius: 300px 300px 0 0;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
} */

.product_detail_left .product_detail_left > img {
  width: 100%;
  height: 100%;
  position: relative;
}

/*.product_detail_left .shape_odd_right {
  padding-left: 30px;
}

.product_detail_right .shape_odd_right {
  padding-right: 20px;
}*/

/* try css */

.product_detail_left .shape_odd_left,
.product_detail_right .shape_odd_left {
  position: relative;
}
.product_detail_left .shape_odd_left {
     margin-right: 105px;
  margin-left: 40px;
}
.product_detail_right .shape_odd_left {
      margin-left: 105px;
    margin-right: auto;
}

.shape_odd_left {
  z-index: 1;
  position: relative;
}
.shape_odd_left .shape_img_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d5cec8;
  border-radius: 400px 400px 0 0;
  height: 550px;
  overflow: hidden;
}
.shape_odd_left .shape_img_wrap img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.product_detail_right .shape_odd_left::after,
.product_detail_left .shape_odd_left::after {
  content: "";
  position: absolute;
  left: -40px;
  top: -16px;
  bottom: 0;
  border: 2px solid var(--blue);
  border-radius: 300px 300px 0 0;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
}
.section_shape_even.product_detail_right .shape_odd_left::after {
  border: 2px solid var(--yellow);
}
.section_shape_even .shape_odd_left .shape_img_wrap img,
.section_shape_odd .shape_odd_left .shape_img_wrap img {
  height: 350px;
  object-fit: contain;
}

.section_shape_even {
  background-image: url(../images/shape_even_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--white);
}

.manufactur_section {
  background-image: url(../images/manufactur-bg.png);
  background-size: cover;
  padding: 70px 0;
}

.manufactur_section .shape_odd_right h3 {
  max-width: 450px;
}

.black_txt {
  font-size: 20px;
  line-height: 23px;
  color: var(--dark-blue);
  margin-bottom: 10px;
  display: block;
}

.diamond_img_wrap {
  margin-right: 60px;
}

.certified_sec {
  background-image: url(../images/certified-bg.png);
  background-size: cover;
  padding: 170px 0 140px;
}

.certified_sec .certified_img {
  height: 180px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.certified_sec .certified_img img {
  object-fit: contain;
  height: 100%;
}

.certified_main {
  max-width: 750px;
  margin: 0 auto;
}

.certified_inner p {
  color: var(--light);
  margin: 40px 0 50px;
}

.certifid-last-img {
  margin-top: 60px;
}

.main_wrapper {
  padding-bottom: 50px;
  border-bottom: 1px solid #cbcbcb;
}

.main_wrapper:last-child {
  padding-bottom: 0;
  border-bottom: 0;
  padding-top: 50px;
}

.home_contect_us_sec {
  background-image: url(../images/contact_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 110px;
  color: var(--white);
}

.get_touch_wrap {
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
}

.get_touch_top {
  padding: 26px 0;
  text-align: center;
  background: rgba(210, 171, 103, 0.6);
}

.get_touch_bottom {
  position: relative;
  z-index: 1;
  padding: 0 150px;
  text-align: center;
  padding-bottom: 200px;
}

.get_touch_bottom::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-top: 240px solid rgba(210, 171, 103, 0.6);
  border-left: solid 425px transparent;
  border-right: solid 425px transparent;
  /* backdrop-filter: blur(4px); */
  z-index: -1;
}

.home_contact_form_wrap {
  background: var(--blue);
  padding: 100px;
  color: var(--white);
  margin-top: 60px;
}

.home_contact_form_wrap .form_control {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #3a4553;
  padding-bottom: 15px;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  color: var(--white);
}

.home_contact_form_wrap ::placeholder {
  color: var(--white);
}

.home_contact_form_wrap ul li {
  margin-bottom: 30px;
}

.home_contact_form_wrap ul li:last-child {
  margin-bottom: 0;
}

.home_contact_form_wrap textarea {
  width: 100%;
  height: 190px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--yellow);
  backdrop-filter: blur(5px);
  color: var(--white);
  padding: 24px;
  margin-bottom: 25px;
}

textarea:focus {
  outline: none;
}

.footer {
  background: var(--blue);
  color: var(--white);
}

/* .hr_wrap {
  max-width: 662px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding-top: 18px;
}

.hr_wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--yellow);
}

.hr_wrap::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  width: 0;
  height: 0;
  border-top: solid 18px var(--yellow);
  border-left: solid 18px transparent;
  border-right: solid 18px transparent;
  transform: translate(-50%, 0);
} */

.footer_first_row,
.footer_second_row {
  padding: 60px 0;
}

.footer_second_row ul li {
  margin-bottom: 5px;
}

.social_icon_wrap ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.social_icon_wrap ul li {
  padding-right: 20px;
}

.footer .footer_contact_wrap ul li a,
.footer .insta_feed_wrap a{
  color: var(--white);
  transition: 0.5s ease;
}

.footer .footer_contact_wrap ul li a:hover,
.footer .insta_feed_wrap a:hover {
  color: var(--yellow);
  transition: 0.5s ease;
}
.footer_address a {
 text-transform: capitalize;
}

.footrt_email_wrap p {
  max-width: 320px;
  margin: 0 auto 30px;
  text-align: center;
}

.email_input_wrap {
  position: relative;
}

.email_input_wrap .subscribe_wrap {
  position: absolute;
  right: 0;
  top: 0;
}

.email_input_wrap .subscribe_wrap .btn_yellow {
  padding: 20px 30px;
}

.email_input_wrap input {
  padding: 20px;
  border: 1px solid #858585;
  font-size: 22px;
  line-height: 28px;
  width: 100%;
  background: transparent;
  color: var(--white);
}
.email_input_wrap input::placeholder {
  color: var(--white);
}

.footer_bottom_wrap {
  padding: 30px 0;
  border-top: 1px solid #575b62;
}

.footer_bottom_wrap ul {
  display: flex;
  justify-content: space-around;
}

.footer_working_hour ul li {
  color: var(--yellow);
  font-size: 18px;
  line-height: 28px;
}

.footer_contact_wrap ul li a {
  font-size: 18px;
  line-height: 28px;
}

input:focus {
  outline: none;
}

.contact_form_right {
  padding-left: 40px;
}

.testimonial_sec {
  background-image: url(../images/testimonial_bg.png);
  padding: 150px 0;
  background-size: cover;
  color: var(--white);
}

.testimonial_sec .title h5 {
  margin-bottom: 50px;
}

.testimonial_slider_wrap {
  background: var(--white);
  padding: 24px;
  border-radius: 24px;
  box-shadow: 0px 115.103px 230.206px rgba(1, 23, 54, 0.1);
  color: var(--black);
  margin: 15px 0 30px 30px;
  position: relative;
}

.testimonial_slider_wrap .slick-prev,
.testimonial_slider_wrap .slick-next {
  width: 56px;
  height: 56px;
  background: rgba(210, 171, 103, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.5s ease;
}

.testimonial_slider_wrap .slick-prev:hover,
.testimonial_slider_wrap .slick-next:hover {
  background: var(--yellow);
  transition: 0.5s ease;
}

.testimonial_slider_wrap .slick-prev {
  position: absolute;
  bottom: -80px;
  left: calc(50% - 36px);
  transform: translate(-50%, 0);
  top: inherit;
}

.testimonial_slider_wrap .slick-prev::before {
  content: "\f053";
  font-family: "Font Awesome 6 Free";
  font-weight: 700;
  font-size: 20px;
}

.testimonial_slider_wrap .slick-next::before {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 700;
  font-size: 20px;
}

.testimonial_slider_wrap .slick-next {
  left: calc(50% + 36px);
  position: absolute;
  bottom: -80px;
  transform: translate(-50%, 0);
  top: inherit;
}

.testimonial_slide p {
  font-family: "Jost", sans-serif;
  font-size: 20px;
  line-height: 29px;
  font-style: italic;
  margin-bottom: 0;
}

.test_profile_wrap {
  margin-bottom: 18px;
}

.test_profile_wrap > img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.test_profile_wrap .test_rate_wrap {
  width: calc(100% - 70px);
  padding-left: 18px;
}

.test_profile_wrap h6 {
  font-family: "Proxima Nova Rg";
  font-weight: 600;
  font-size: 22px;
  line-height: 28px;
}

.test_profile_wrap .test_rate_wrap ul li {
  margin-right: 10px;
}

.test_profile_wrap .test_rate_wrap ul li i {
  color: #ff9900;
}

.inner_banner {
  background-image: url(../images/about-bg.jpg);
  background-size: cover;
  background-position: center;
  padding: 210px 0 60px;
  color: var(--white);
  text-align: center;
}

.inner_banner.about {
  background-image: url(../images/we_are_bg.jpg);
}
.inner_banner.our_diamond {
  background-image: url(../images/our_diamond_bg.jpg);
}
.inner_banner.blog {
  background-image: url(../images/blog_bg.jpg);
}
.inner_banner.contact_us {
  background-image: url(../images/contact_us_bg.jpg);
}
.inner_banner.login {
  background-image: url(../images/breadcrumb.jpg);
}

.inner_banner h2 {
  padding: 10px;
  font-size: 50px;
  line-height: 50px;
  font-weight: 400;
  border-top: 1px solid var(--yellow);
  border-bottom: 1px solid var(--yellow);
  margin-bottom: 20px;
  display: inline-block;
  text-align: center;
  margin: 0 0 30px;
}

.breadcrumbs ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

.breadcrumbs ul li {
  padding: 0 25px;
  font-weight: 400;
  font-size: 25px;
  line-height: 40px;
}

.breadcrumbs ul li a {
  font-weight: 400;
  font-size: 27px;
  line-height: 40px;
  color: #fff;
  position: relative;
  transition: 0.5s ease;
}
.breadcrumbs ul li a:hover {
   color: var(--yellow);
    transition: 0.5s ease;
}

.breadcrumbs ul li a:after {
  content: "";
  position: absolute;
  right: -32px;
  top: 3px;
  width: 13px;
  height: 20px;
  background: url(../images/right-arrow.svg);
  background-repeat: no-repeat;
  background-size: 13px;
}

.services_quality_content_inner {
  max-width: 650px;
}

/* ===============================================================
blog page css start
=============================================================== */
.blog_sec {
  padding-top: 80px;
}

.gradiant_box {
  padding: 10px;
  background: linear-gradient(
    90deg,
    rgba(210, 171, 103, 0.5) 0%,
    rgba(210, 171, 103, 0) 100%
  );
  border: 1px solid #ffffff;
}

.dmd_blog_content h4 {
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 36px;
}

.dmd_blog_content > p {
  padding-bottom: 26px;
  margin-bottom: 0;
}

.dmd_blog_content .gradiant_box {
  margin-bottom: 20px;
}

.hr_line {
  width: 100%;
  height: 1px;
  background: var(--yellow);
  position: relative;
}

.hr_line::after {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--yellow);
  display: inline-block;
  position: absolute;
  top: -2px;
  left: 0;
  transform: rotate(45deg);
}

.hr_line::before {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--yellow);
  display: inline-block;
  position: absolute;
  top: -2px;
  right: 0;
  transform: rotate(45deg);
}

.dmd_blog_content .gradiant_box {
  margin-top: 15px;
}

.dmd_blog_wrap {
  padding-bottom: 60px;
}

.blog_box_sec .blog_box_wrap {
  margin-top: 80px;
}

.blog_box_wrap .dmd_blog_img,
.dmd_blog_left_img {
  overflow: hidden;
  transition: 0.5s ease;
}

.blog_box_wrap .dmd_blog_img img,
.dmd_blog_left_img img {
  transition: 0.5s ease;
}

.blog_box_wrap .dmd_blog_img img:hover,
.dmd_blog_left_img img:hover {
  transform: scale(1.05);
  transition: 0.5s ease;
}

.blog_box_wrap .dmd_blog_content > p {
  color: var(--yellow);
  margin-top: 30px;
}

.blog_box_wrap .gradiant_box p {
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}

.dmd_blog_content h6 {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 20px;
  padding-right: 30px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}

.insta_gallery_title {
  padding-top: 100px;
}

.insta_gallery_title .title.center h2 {
  margin-bottom: 0;
}

.insta_gallery_img_sec .container {
  max-width: 1600px;
}

.gallery_slider_wrap {
  padding: 60px 0;
}

.gallery_slider_wrap .gallery_slider .slick-track {
  display: flex;
  align-items: center;
  width: 100%;
}

.gallery_slider_wrap .gallery_slider .gallery_slide {
  margin: 0 15px;
}
.gallery_slider_wrap .gallery_slider .gallery_slide img{
  object-fit: cover;
  margin: 0 auto;
  width: 100%;
}
.gallery_slider_wrap .gallery_slider .gallery_slide:nth-child(even) img{
  height: 200px;
}
.gallery_slider_wrap .gallery_slider .gallery_slide:nth-child(odd) img{
  height: 300px;
}

/* ===============================================================
blog page css end
=============================================================== */

/* ===============================================================
blog detail page css start
=============================================================== */
.blog_detail_wrap,
.contact_info_wrap,
.diamond_product {
  padding: 80px 0;
}

.blog_detail_title,
.blog_detail_content {
  max-width: 800px;
  margin: 0 auto;
}

.blog_detail_img {
  margin: 40px 0;
}

.blog_detail_content h1,
.blog_detail_content h2,
.blog_detail_content h3,
.blog_detail_content h4,
.blog_detail_content h5,
.blog_detail_content h6 {
  margin-bottom: 20px;
}

.blog_detail_content ul {
  padding-left: 50px;
  list-style: disc;
  margin-bottom: 20px;
}

.blog_detail_content ol {
  padding-left: 50px;
  margin-bottom: 20px;
}

.blog_detail_content ol li {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 28px;
}

.blog_detail_content ul li {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 28px;
}

.blog_detail_content blockquote {
  background: #f8f2e8;
  padding: 65px 72px;
  margin: 30px 0;
  font-size: 25px;
  line-height: 35px;
  font-family: "Casual";
}

/* ===============================================================
blog detail page css end
=============================================================== */

/* ===============================================================
conact us page css start
=============================================================== */

.contact_info_left {
  padding: 70px;
  background-image: url(../images/manufactur-bg.png);
  background-size: cover;
}

.contact_info_detail_wrap ul li {
  margin-bottom: 30px;
}

.contact_info_detail_wrap ul li .left_img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  border: 1px solid var(--blue);
  font-size: 20px;
  line-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s ease;
}
.contact_info_detail_wrap ul li .left_img:hover {
  background: rgba(41, 46, 54, 0.1);
  color: var(--blue);
  transition: 0.5s ease;
}
.contact_info_detail_wrap ul li .left_img img {
  filter: invert(1) brightness(10);
  width: 18px;
  transition: 0.5s ease;
}
.contact_info_detail_wrap ul li .left_img:hover img {
  filter: inherit;
  transition: 0.5s ease;
}

.contact_info_social_wrap ul {
  display: flex;
  align-items: center;
}

.contact_info_social_wrap ul li a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(41, 46, 54, 0.1);
  color: var(--blue);
  font-size: 20px;
  line-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 13px;
  transition: 0.5s ease;
}

.contact_info_social_wrap ul li a:hover {
  background: var(--blue);
  color: var(--white);
  transition: 0.5s ease;
}

.contact_info_detail_wrap ul li .right_content {
  width: calc(100% - 50px);
  padding-left: 10px;
}

.contact_info_detail_wrap ul li .right_content a {
  font-size: 20px;
  line-height: 25px;
  color: #4a4a4a;
  transition: 0.5s ease;
}

.contact_info_detail_wrap ul li .right_content a:hover {
  color: var(--yellow);
  transition: 0.5s ease;
}

.contact_info_left_inner {
  max-width: 440px;
}

.contact_info_right {
  padding: 0 20px;
}

.form_control_grey {
  padding: 20px;
  font-size: 22px;
  line-height: 28px;
  color: var(--black);
  background: #f8f8f8;
  border: 1px solid #c4c4c4;
  width: 100%;
}

.textarea_grey {
  padding: 20px;
  font-size: 22px;
  line-height: 28px;
  color: var(--black);
  background: #f8f8f8;
  border: 1px solid #c4c4c4;
  width: 100%;
  height: 150px;
}

.form_group {
  margin-bottom: 30px;
}

.contact_info_right h5 {
  margin-bottom: 40px;
  font-size: 40px;
  line-height: 48px;
}

.visit_up_box {
  border: 1px solid #c4c4c4;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.visit_up_social ul li .visit_up_social_left a {
  width: 17px;
  height: 17px;
  color: var(--yellow);
  transition: 0.5s ease;
  font-size: 16px;
  line-height: 20px;
}

.visit_up_social ul li a:hover {
  color: var(--blue);
  transition: 0.5s ease;
}

.visit_up_social ul li {
  margin-bottom: 30px;
}

.visit_up_social ul li .visit_up_social_right {
  width: calc(100% - 17px);
  padding-left: 17px;
}

.visit_up_social ul li .visit_up_social_right a {
  font-size: 16px;
  line-height: 20px;
  color: #333333;
  transition: 0.5s ease;
}

.visit_up_social ul li .visit_up_social_right a:hover {
  color: var(--yellow);
  transition: 0.5s ease;
}

.visit_up_box h6 {
  font-size: 26px;
  line-height: 30px;
  margin-bottom: 12px;
}

.visit_up_wrap_inner {
  padding: 50px 0 80px;
}

.question_sec {
  background: #f8f2e8;
  padding: 80px 0;
}

.title_after_wrap h3 {
  display: inline-block;
  position: relative;
  padding-bottom: 22px;
  margin-bottom: 30px;
}

.title_after_wrap h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  max-width: 322px;
  height: 3px;
  background: var(--yellow);
  left: 50%;
  transform: translate(-50%, 0);
}

.section_heading {
  font-size: 40px;
  line-height: 48px;
  font-family: "Casual";
  font-weight: 400;
}

.brance_img {
  overflow: hidden;
}
.brance_img img {
  transition: 0.5s ease;
  width: 100%;
}
.brance_img img:hover {
  transform: scale(1.02);
  transition: 0.5s ease;
}

.question_wrapper .faq_wrapper .accordion-header .accordion-button {
  padding: 12px 16px 16px 25px;
  font-size: 22px;
  font-family: "Proxima Nova Rg";
  font-weight: 600;
}
.question_wrapper .accordion-button::after {
  display: none;
}
.question_wrapper .accordion-button::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--white);
  border: 3px solid var(--yellow);
  position: absolute;
  left: 0;
  top: 45%;
  transform: translate(0, -50%);
}
.question_wrapper .accordion-button.collapsed::before {
  background-color: var(--yellow);
}
.question_wrapper .faq_wrapper .accordion-body {
  padding: 0 25px 20px;
  margin-bottom: 30px;
  background: transparent;
  margin: 0;
}
.question_wrapper .faq_wrapper .accordion-item {
  border-bottom: 1px solid rgb(16 16 16 / 20%);
}

.title.center h2 {
  margin-bottom: 50px;
}

.sign_up_link:hover {
  color: inherit;
  transition: 0.5s ease;
}
.sign_up_link {
  transition: 0.5s ease;
}

/* ===============================================================
conact us page css end
=============================================================== */

/* kaushik css */

.title.center {
  text-align: center;
}

.title.center .subtitle {
  margin-bottom: 15px;
}

.diamond_box {
  height: 300px;
  position: relative;
  overflow: hidden;
  z-index: 9;
}

.diamond_box.big {
  height: 616px;
}

.diamond_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: 0.5s ease;
}

.diamond_box:hover img {
  transform: scale(1.08);
}

.diamond_name {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s ease;
}

.diamond_box:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(22, 31, 59, 0.8);
  border: 3px solid var(--yellow);
  box-shadow: -5px 7px 77px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: 0.5s ease;
  z-index: 1;
}

.diamond_box:hover:before {
  opacity: 1;
}

.diamond_name h3 {
  color: #fff;
}

.diamond_name p {
  font-weight: 500;
  font-size: 22px;
  line-height: 32px;
  color: #e1b168;
  margin: 0;
}

.diamond_box:hover .diamond_name {
  opacity: 1;
  visibility: visible;
}

.diamond_features {
  background: url(../images/shape_even_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  color: var(--white);
}

.diamond_feature_img {
  text-align: center;
}

.diamond_features_box h6 {
  margin: 0 0 15px;
  text-transform: uppercase;
  position: relative;
}

.diamond_features_box {
  position: relative;
}

.diamond_features_box:before {
  content: "";
  position: absolute;
  left: -180px;
  top: 17px;
  width: 160px;
  height: 1px;
  background: var(--yellow);
}

.diamond_features_box:after {
  content: "";
  position: absolute;
  left: -186px;
  top: 12px;
  width: 12px;
  height: 12px;
  background: var(--yellow);
  border-radius: 50%;
}

.diamond_features_box.five:before {
  left: -80px;
  width: 60px;
}

.diamond_features_box.five:after {
  left: -86px;
}

.diamond_features_box.six:before {
  left: -110px;
  width: 90px;
}

.diamond_features_box.six:after {
  left: -116px;
}

.diamond_features_box.one:before {
  left: inherit;
  width: 160px;
  right: -180px;
}

.diamond_features_box.one:after {
  left: inherit;
  right: -186px;
}

.diamond_features_box.two:before {
  left: inherit;
  width: 60px;
  right: -80px;
}

.diamond_features_box.two:after {
  left: inherit;
  right: -86px;
}

.diamond_features_box.three:before {
  left: inherit;
  width: 80px;
  right: -90px;
}

.diamond_features_box.three:after {
  left: inherit;
  right: -96px;
}

.diamond_features_box.left_box {
  text-align: right;
}

.diamond_features_box p {
  line-height: 24px;
  margin: 0;
  height: 72px;
  overflow: hidden;
}

.diamond_features_wrap {
  display: flex;
  flex-direction: column;
  row-gap: 50px;
}

.diamond_features .title {
  margin-bottom: 50px;
}

.popular_shape_wrap {
  padding: 80px 0;
}

.faq_wrapper .accordion-header {
  line-height: inherit;
}

.faq_wrapper .accordion-header .accordion-button {
  font-weight: 400;
  font-size: 25px;
  padding: 20px 0;
  box-shadow: none !important;
  background-color: transparent;
}

.faq_wrapper .accordion-item {
  border: 0;
  border-bottom: 1px solid var(--yellow);
  background-color: transparent;
}
.faq_wrapper .accordion-item:last-of-type {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.faq_wrapper .accordion-button:not(.collapsed) {
  color: inherit;
  background-color: transparent;
  box-shadow: none;
}

.faq_wrapper .accordion-body {
  padding: 16px;
  background: linear-gradient(
    90deg,
    rgba(210, 171, 103, 0.5) 0%,
    rgba(210, 171, 103, 0) 100%
  );
  margin: 0;
}

.accordian_wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.faq_wrapper .accordion-button::after {
  filter: grayscale(1);
}

.shape_slider_Wrap {
  background: #f4f7fe;
  padding: 90px 0 40px;
  overflow: hidden;
}

.shape_img {
  text-align: center;
  background: #fff;
  box-shadow: 0px 18px 108px rgba(173, 181, 188, 0.12);
  padding: 20px 15px;
  border-radius: 26px;
}
.shape_img img {
  margin: 0 auto;
}

.shape_slide {
  padding: 0;
  transform: scale(0.8);
}

.shape_slide.slick-current {
  transform: scale(1.1);
}

.shape_slide.slick-current .shape_img {
  background: #161f3b;
  color: #fff;
  border-radius: 26px;
  margin: 0 15px;
}

.shape_slider_Wrap .slick-list {
  padding: 20px 0 !important;
}

.services_wrap {
  background: url(../images/shape_even_bg.jpg);
  padding: 70px 0;
}

.services_box {
  text-align: center;
  color: #fff;
  padding: 50px 40px;
  position: relative;
  border-right: 1px solid var(--yellow);
  height:100%;
}

.services_box p{
    margin: 0;
}

.services_box img {
  height: 70px;
}

.services_box h5 {
  font-weight: 400;
  font-size: 30px;
  line-height: 36px;
  padding: 25px 0 15px;
}

.services_box h5 span {
  font-family: "Proxima Nova Rg";
}

.services_quality_content {
  padding: 70px 0 70px 80px;
  background: url(../images/yellow-shape.jpg);
  height: 100%;
}

.services_quality_img {
  height: 100%;
}

.services_quality_img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.services_quality_content h3 {
  color: #1f2732;
  margin: 0 0 50px;
}

.services_quality_content p {
  margin: 0 0 50px;
  text-align: justify;
}

.services_quality_range {
  max-width: 470px;
  margin: 0 0 30px;
}

.services_quality_range .range_label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 20px;
  color: #161f3b;
  margin: 0 0 10px;
}

.range_slider span {
  width: 100%;
  height: 4px;
  background: #fff;
  border-radius: 10px;
  display: block;
  position: relative;
}

.range_slider span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 75%;
  height: 4px;
  background: #161f3b;
  border-radius: 10px;
}

.range_slider span:after {
  content: "";
  position: absolute;
  left: 75%;
  top: -7px;
  width: 19px;
  height: 19px;
  background: #161f3b;
  border-radius: 50%;
}

.services_quality_range.eighty .range_slider span:before {
  width: 80%;
}

.services_quality_range.eighty .range_slider span:after {
  left: 80%;
}

.services_quality_range.seventy .range_slider span:before {
  width: 70%;
}

.services_quality_range.seventy .range_slider span:after {
  left: 70%;
}

.services_quality_range.ninety .range_slider span:before {
  width: 90%;
}

.services_quality_range.ninety .range_slider span:after {
  left: 90%;
}

.call_to_action {
  padding: 90px 0;
  background: #f4f7fe url(../images/ctc-shape.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.ctc_wrap {
  position: relative;
  z-index: 9;
  max-width: 1170px;
  margin: 0 auto;
}

.ctc_wrap_inner {
  background: #ffffff;
  box-shadow: 0px 18px 108px rgba(173, 181, 188, 0.12);
  padding: 34px 70px;
  text-align: center;
}

.ctc_wrap:after {
  content: "";
  position: absolute;
  left: -10px;
  top: 0;
  width: 100%;
  height: calc(100% + 10px);
  background: linear-gradient(
    90deg,
    rgba(210, 171, 103, 0.5) 0%,
    rgba(210, 171, 103, 0) 100%
  );
  z-index: -1;
}

.ctc_wrap_inner h3 {
  color: #161f3b;
  max-width: 800px;
  margin: 0 auto 40px;
}

.ctc_wrap_inner ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ctc_wrap_inner ul li {
  padding: 0 25px;
}

.ctc_wrap_inner ul li a {
  font-weight: 700;
  font-size: 30px;
  color: var(--yellow);
}

.btn_gradient {
  background: linear-gradient(
    90deg,
    rgba(210, 171, 103, 0.5) 0%,
    rgba(210, 171, 103, 0) 100%
  );
  padding: 20px 25px;
  border-radius: 10px;
  font-weight: 400;
  font-size: 20px;
  color: #161f3b;
  display: inline-flex;
}

.btn_gradient:hover {
  background: linear-gradient(
    90deg,
    rgba(210, 171, 103, 0.5) 0%,
    rgba(210, 171, 103, 0.5) 100%
  );
}

.ctc_wrap_inner ul li a.btn_gradient {
  font-weight: 400;
  font-size: 20px;
  color: #161f3b;
}

.btn_gradient img {
  padding-left: 10px;
}

.faq_img img {
  width: 100%;
}

.header_wrap .navbar-nav .nav-item .btn_yellow {
  padding: 10px 40px;
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
}

.navbar {
  padding: 0;
}

/*.login_wrapper {
  margin-top: 158px;
}*/

.bg_header .header_wrap {
  background: #161f3b url(../images/header-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.login_wrapper {
  background: url(../images/login-img.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.login_form_wrap {
  background: url(../images/form-bg_login.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 170px 0;
}

.login_form_wrap form,
.login_form_inner .title {
  width: 100%;
  max-width: 615px;
  margin: 0 auto;
}

.form-group label {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  display: inline-block;
  margin: 0 0 10px;
}

.form-group .input-group-text {
  background: transparent;
  border: 0;
  padding: 20px;
}
.form-group .form-control {
  background: transparent;
  border: 0;
  padding: 20px;
  padding-left: 0;
  color: #fff;
  box-shadow: none !important;
}

.login_form_inner {
  width: 100%;
}

.form-group .input-group {
    border: 1px solid var(--yellow);
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    justify-content: end;
}

.form-group .input-group .select2{    
    width: 1% !important;
    flex: 1 1 auto;
    margin-left: 0 !important;
    height: 100%;
    background: transparent !important;
}

.form-group .input-group .select2 .selection .select2-selection{
    background-color: transparent;
    border: 0;
    padding: 17px 0;
    height: auto;
}

.form-group .input-group .select2 .selection .select2-selection:focus-visible {
    outline: 0;
}

.form-group .input-group .select2 .selection .select2-selection .select2-selection__arrow b{
    border-color: #fff transparent transparent transparent;
    border-width: 7px 6px 0 6px
}

.form-group .input-group .select2 .selection .select2-selection .select2-selection__arrow{
    top: 18px;
    right: 22px;
}

.form-group .input-group .select2 .selection .select2-selection .select2-selection__rendered {
    color: #fff;
}

.form-group .input-group select{
    background-color: transparent;
    border: 0;
    filter: brightness(100);
}

.form-group .input-group select option[value=""] {
    color:white
}

.form-select:focus {
    box-shadow: none;
}


.form-group .input-group .toggle-password {
  position: absolute;
  right: 15px;
  top: 22px;
  color: var(--yellow);
  z-index: 9;
}

.form-group .input-group .field-validation-error{
position: absolute;
    bottom: -24px;
    left: 0;
    font-size: 14px;
    color: var(--yellow);
}

.checkbox {
  display: flex;
  align-items: center;
}
.checkbox input {
  position: absolute;
  width: 0;
  left: 50px;
  height: 0;
  opacity: 0;
  cursor: pointer;
}

.checkbox .checkmark {
  position: relative;
  display: block;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 23px;
  outline: 1px solid #acacac;
  transition: all 0.2s ease;
  margin-right: 10px;
}
.checkbox a {
  color: var(--yellow);
  padding: 0 5px;
}

.checkbox:hover .checkmark {
  background: #f4f4f5;
  transition: all 0.2s ease;
}

.checkbox input:checked ~ .checkmark {
  background: var(--yellow);
  outline: 1px solid var(--yellow);
}

.checkbox .checkmark::after {
  position: absolute;
  display: block;
  content: "";
  left: 50%;
  top: 40%;
  width: 4px;
  height: 8px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -moz-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  opacity: 0;
  transition: all 0.2s ease;
}

.checkbox input:checked ~ .checkmark::after {
  opacity: 1;
  transition: all 0.2s ease;
}

.forgit_pass {
  color: var(--yellow);
  transition: 0.5s ease;
}

.forgit_pass:hover {
  color: #fff;
}

.login_form_inner .btn_yellow {
  padding: 10px 40px;
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  margin: 30px 0 10px;
}

.dont_have_account p {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  margin: 0;
}
.dont_have_account p a {
  color: var(--yellow);
}
.dont_have_account p a:hover {
  color: #fff;
}

.register_model .btn_border_black{
    padding: 12px 30px;
    font-size: 16px;
    line-height: 16px;
    border: 1px solid var(--blue);
    color: var(--blue);
}
.register_model .btn_border_black:hover{
    background: var(--blue);
    border: 1px solid var(--blue);
    color: var(--white);
}

.register_model .modal-title{
    color: var(--blue);
}
button:focus{
    outline: 0;
    box-shadow: 0;
}
.btn-close:focus {
    outline: 0;
    box-shadow: none;
}

.footer_logo_wrap  img{
    height:95px;
    margin: 0 0 50px;
}
ul.social_icon {
    display:flex;
    align-items:center;
    justify-content:flex-end;
}
ul.social_icon li{
    padding-left:15px;
}
.footer ul.social_icon li a{
   color: var(--white);
    font-size:24px;
    transition: 0.5s ease;
}
.footer ul.social_icon li a:hover{
    color: var(--yellow);
    transition: 0.5s ease;
}
.footer_bottom_wrap p{
    font-weight: 400;
font-size: 20px;
margin:0;
line-height:28px;
}
.footer_bottom_wrap p a{
   color: var(--white);
    transition: 0.5s ease;
    position: relative;
}
.footer_bottom_wrap p a:after{
   content: "";
   position: absolute;
   bottom: -2px;
   left: 0;
   right: 0;
   width: 0;
   height: 2px;
   background: var(--yellow);
   transition: 0.5s ease;
}
.footer_bottom_wrap p a:hover:after{
   left: 0;
   width: 100%;
}
.footer_bottom_wrap p a:hover{
   color: var(--yellow);
    transition: 0.5s ease;
}

/* media query start */
@media (max-width: 1600px) {
  /*.product_detail_left .shape_odd_left,*/
  /*.product_detail_right .shape_odd_left {*/
  /*  max-width: 500px;*/
  /*}*/
  .shape_odd_left .shape_img_wrap {
    height: 500px;
  }
  .manufactur_section .diamond_img_left {
    max-width: 520px;
    margin: 0 auto;
  }
}

@media (max-width: 1501px) {
    .product_detail_left .shape_odd_left {
    margin-left: 30px;
        margin-right: 90px;
}
    .product_detail_right .shape_odd_left {
    margin-left: 90px;
}

    .gallery_slider_wrap .gallery_slider .gallery_slide:nth-child(even) img {
    height: 180px;
}
    .gallery_slider_wrap .gallery_slider .gallery_slide:nth-child(odd) img {
    height: 250px;
}
  .container {
    max-width: 1200px;
  }

  .banner_right_wrap {
    max-width: 500px;
  }

  h1 {
    font-size: 55px;
    line-height: 65px;
  }

  h2 {
    font-size: 45px;
    line-height: 55px;
  }

  h3 {
    font-size: 35px;
    line-height: 45px;
  }

  h4 {
    font-size: 28px;
    line-height: 35px;
  }

  h5 {
    font-size: 25px;
    line-height: 35px;
  }

  h6 {
    font-size: 20px;
    line-height: 30px;
  }

  .title h1 {
    margin-bottom: 28px;
  }

  .title h2 {
    margin-bottom: 25px;
  }

  .header_wrap {
    padding: 15px 0;
  }

  .banner_left_wrap .subtitle {
    margin-bottom: 20px;
  }

  header .header_wrap .navbar-brand img {
    height: 80px;
  }

  .banner_sec_wrap {
    padding-top: 180px;
  }

  .header_wrap .navbar-nav .nav-link {
    font-size: 20px;
    line-height: 22px;
  }

  .banner_right_wrap {
    max-width: 360px;
    padding: 120px 20px 20px;
  }

  .feature_box img {
    height: 180px;
  }

  .banner_right_wrap:after {
    height: calc(100% - -5px);
  }

  .shape_small_img img {
    width: 180px;
    height: 180px;
  }

  .home_contact_form_wrap {
    padding: 60px;
  }

  .email_input_wrap .subscribe_wrap .btn_yellow {
    padding: 14px 30px;
    font-size: 22px;
    line-height: 28px;
  }

  .email_input_wrap input {
    padding: 15px;
  }

  .certified_sec {
    padding: 100px 0;
  }

  .inner_banner {
    padding: 160px 0 50px;
  }

  .inner_banner h2 {
    font-size: 45px;
    line-height: 45px;
  }

  .breadcrumbs ul li,
  .breadcrumbs ul li a {
    font-size: 25px;
    line-height: 40px;
  }

  .services_box h5 {
    font-size: 25px;
    line-height: 30px;
  }

  .services_box {
    padding: 40px 40px;
  }

  .services_quality_content {
    padding: 50px;
  }

  .services_quality_content h3 {
    margin: 0 0 30px;
  }

  .call_to_action {
    padding: 80px 0;
  }

  .diamond_box {
    height: 250px;
  }

  .diamond_box.big {
    height: 516px;
  }
  .question_wrapper .faq_wrapper .accordion-header .accordion-button {
    font-size: 20px;
  }

  .diamond_features_box.one:before {
    width: 120px;
    right: -130px;
  }
  .diamond_features_box.one:after {
    right: -135px;
  }
  .diamond_features_box:before {
    left: -131px;
    width: 120px;
  }
  .diamond_features_box:after {
    left: -137px;
  }
  .diamond_features_box.two:after {
    right: -44px;
  }
  .diamond_features_box.two:before {
    width: 30px;
    right: -40px;
  }
  .diamond_features_box.five:before {
    left: -40px;
    width: 30px;
  }
  .diamond_features_box.five:after {
    left: -44px;
  }
  .diamond_features_box.three:before {
    width: 50px;
    right: -60px;
  }
  .diamond_features_box.three:after {
    right: -70px;
  }
  .diamond_features_box.six:before {
    left: -60px;
    width: 50px;
  }
  .diamond_features_box.six:after {
    left: -70px;
  }
  .shape_slider_Wrap {
    padding: 80px 0 40px;
  }
  .login_form_wrap form,
  .login_form_inner .title {
    max-width: 500px;
  }
  .login_form_wrap {
    padding: 150px 0;
  }
  .form-group .form-control {
    padding: 15px;
  }
  .header_wrap .header_btn {
    padding: 10px 40px;
    font-size: 20px;
    line-height: 25px;
  }
  .login_form_inner .btn_yellow {
    margin: 20px 0 10px;
  }
  .banner_left_wrap h1 {
    /*max-width: 530px;*/
    font-size: 60px;
  }
  .ctc_wrap_inner h3 {
    max-width: 730px;
  }
  .product_detail_left .shape_small_img {
    right: -90px;
  }
    .product_detail_right .shape_small_img {
    left: -90px;
    }
  .section_shape_even .shape_odd_left .shape_img_wrap img,
  .section_shape_odd .shape_odd_left .shape_img_wrap img {
    height: 300px;
  }
  .product_detail_right .shape_odd_left::after,
  .product_detail_left .shape_odd_left::after {
    left: -30px;
  }
}

@media (max-width: 1281px) {

  .container {
    max-width: 1120px;
  }

  .privacy-sec .privacy-inner-content p {
    font-size: 22px;
    line-height: 35px;
}

  h1 {
    font-size: 50px;
    line-height: 60px;
  }

  h2 {
    font-size: 40px;
    line-height: 50px;
  }

  h3 {
    font-size: 30px;
    line-height: 40px;
  }

  h4 {
    font-size: 25px;
    line-height: 35px;
  }

  h5 {
    font-size: 23px;
    line-height: 35px;
  }

  h6 {
    font-size: 20px;
    line-height: 30px;
  }

  p {
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 22px;
  }

  .shape_img_wrap::after {
    left: -20px;
    top: -16px;
  }

  .section_shape_even .shape_img_wrap::after {
    left: -20px;
    top: -16px;
  }

  .shape_small_img img {
    width: 160px;
    height: 160px;
  }
  .product_detail_left .shape_small_img {
    right: -80px;
  }

  .banner_right_wrap {
    padding: 140px 20px 20px;
    margin-bottom: -30px;
  }
  .product_detail_left .shape_small_img {
    right: -80px;
  }
  .product_detail_right .shape_small_img {
    left: -80px;
}

  .banner_right_wrap:after {
    height: calc(100% - 4px);
  }

  .btn_border_black {
    padding: 14px 30px;
    font-size: 18px;
    line-height: 22px;
  }
  .btn_border_black img {
    width: 28px;
  }
  .btn_border_white img {
    width: 28px;
  }

  .btn_border_white {
    padding: 14px 30px;
    font-size: 18px;
    line-height: 22px;
  }

  .btn_border_yellow {
    padding: 14px 30px;
    font-size: 18px;
    line-height: 22px;
  }

  .btn_yellow {
    padding: 14px 30px;
    font-size: 18px;
    line-height: 22px;
  }

  .banner_sec_wrap {
    padding-top: 180px;
  }

  .title h2 {
    margin-bottom: 15px;
  }

  .subtitle {
    margin-bottom: 15px;
  }

  .title img {
    margin-bottom: 20px;
  }

  .feature_box img {
    height: 150px;
  }

  .feature_box p {
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 5px;
  }

  .certified_sec,
  .testimonial_sec {
    padding: 80px 0;
  }

  .certifid-last-img {
    margin-top: 30px;
  }

  .testimonial_slider_wrap .slick-prev,
  .testimonial_slider_wrap .slick-next {
    width: 46px;
    height: 46px;
  }

  .testimonial_slider_wrap .slick-prev,
  .testimonial_slider_wrap .slick-next {
    bottom: -70px;
  }

  .home_contact_form_wrap {
    padding: 40px;
  }

  .home_contect_us_sec {
    padding-bottom: 80px;
  }

  .get_touch_bottom {
    padding-bottom: 150px;
  }

  .get_touch_bottom::after {
    border-top: 170px solid rgba(210, 171, 103, 0.6);
  }

  .footer_logo_wrap {
    max-width: 320px;
    margin: 0 auto;
  }

  .email_input_wrap .subscribe_wrap .btn_yellow {
    padding: 7px 26px;
    font-size: 18px;
    line-height: 24px;
  }

  .email_input_wrap input {
    padding: 10px;
    font-size: 18px;
    line-height: 20px;
  }

  .feature_box.odd::after {
    width: 125px;
    height: 125px;
    background-size: 125px;
    top: -60px;
  }

  .feature_box.even::after {
    width: 125px;
    height: 125px;
    background-size: 125px;
    bottom: -60px;
  }

  .inner_banner h2 {
    font-size: 35px;
    line-height: 35px;
    margin-bottom: 20px;
  }

  .breadcrumbs ul li a:after {
    background-size: 11px;
  }

  .breadcrumbs ul li,
  .breadcrumbs ul li a {
    font-size: 23px;
  }

  .services_box {
    padding: 20px 30px;
  }

  .ctc_wrap_inner ul li a {
    font-size: 25px;
  }

  .blog_sec {
    padding-top: 60px;
  }

  .insta_gallery_title {
    padding-top: 60px;
  }

  .dmd_blog_wrap {
    padding-bottom: 60px;
    /* padding-top: 40px; */
  }

  .blog_box_sec .blog_box_wrap {
    margin-top: 60px;
  }

  .dmd_blog_content > p {
    padding-bottom: 16px;
  }

  .dmd_blog_content h4 {
    font-size: 38px;
    line-height: 46px;
    margin-bottom: 26px;
  }

  .blog_detail_wrap,
  .contact_info_wrap,
  .diamond_product,
  .question_sec,
  .popular_shape_wrap,
  .diamond_features {
    padding: 60px 0;
  }

  .visit_up_wrap_inner {
    padding: 40px 0 60px;
  }

  .contact_info_right h5 {
    margin-bottom: 35px;
    font-size: 35px;
    line-height: 40px;
  }

  .section_heading {
    font-size: 35px;
    line-height: 42px;
  }

  .visit_up_box h6 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 10px;
  }
  .services_quality_content {
    padding: 30px;
  }
  .services_quality_content h3 {
    margin: 0 0 25px;
  }
  .shape_slider_Wrap {
    padding: 70px 0 40px;
  }
  .contact_info_left {
    padding: 50px;
  }
  .custom-inner-row {
    flex-direction: column-reverse;
  }
  .custom-inner-row .col-6 {
    width: 100%;
  }
  .header_wrap .header_btn {
    padding: 10px 30px;
    font-size: 18px;
    line-height: 22px;
  }
  .manufactur_section .shape_odd_right h3 {
    max-width: 410px;
  }
  .ctc_wrap_inner h3 {
    max-width: 560px;
    margin: 0 auto 20px;
  }

  .product_detail_right .shape_odd_left::after,
  .product_detail_left .shape_odd_left::after {
    left: -20px;
  }
   .product_detail_left .shape_odd_left {
    margin-left: 20px;
    margin-right: 80px;
}
       .product_detail_right .shape_odd_left {
    margin-left: 80px;
}

    .gallery_slider_wrap .gallery_slider .gallery_slide:nth-child(even) img {
    height: 170px;
}
    .gallery_slider_wrap .gallery_slider .gallery_slide:nth-child(odd) img {
    height: 230px;
}
}

@media (max-width: 1200px) {
  .title h2 {
    margin-bottom: 15px;
  }
  .title h3 {
    margin-bottom: 15px;
  }
  .title h1 {
    margin-bottom: 18px;
  }

  .banner_right_wrap {
    max-width: 340px;
    padding: 120px 20px 20px;
  }

  .banner_left_wrap a {
    margin-top: 0;
  }

  .banner_sec_wrap {
    padding-top: 170px;
  }

  header .header_wrap .navbar-brand img {
    height: 70px;
  }

  .header_wrap .navbar-nav .nav-link {
    font-size: 18px;
    line-height: 20px;
  }

  .btn_border_black {
    padding: 14px 40px;
    font-size: 20px;
    line-height: 22px;
  }

  .btn_border_white {
    padding: 14px 40px;
    font-size: 20px;
    line-height: 22px;
  }

  .btn_border_yellow {
    padding: 14px 40px;
    font-size: 20px;
    line-height: 22px;
  }

  .btn_yellow {
    padding: 14px 40px;
    font-size: 20px;
    line-height: 22px;
  }

  .feature_box img {
    height: 100px;
  }

  .footer_first_row,
  .footer_second_row {
    padding: 50px 0;
  }

  .services_quality_content p {
    margin: 0 0 30px;
  }

  .services_quality_range .range_label {
    font-size: 18px;
    margin: 0 0 5px;
  }

  .range_slider span:after {
    top: -8px;
    width: 17px;
    height: 17px;
  }

  .product_detail_left,
  .product_detail_right {
    padding: 80px 0 85px;
  }

  .contact_info_left {
    padding: 40px;
  }

  .contact_info_detail_wrap ul li .right_content a {
    font-size: 18px;
    line-height: 25px;
  }

  .contact_info_detail_wrap ul li {
    margin-bottom: 25px;
  }

  .contact_info_right {
    padding: 0;
  }

  .form_control_grey {
    padding: 10px 15px;
    font-size: 20px;
    line-height: 25px;
  }

  .contact_info_right h5 {
    margin-bottom: 20px;
  }

  .textarea_grey {
    padding: 10px 15px;
    font-size: 20px;
    height: 150px;
  }

  .visit_up_box {
    padding: 20px;
  }

  .visit_up_wrap_inner {
    padding: 40px 0 60px;
  }

  .inner_banner {
    padding: 150px 0 50px;
  }

  .faq_wrapper .accordion-header .accordion-button {
    font-size: 20px;
    padding: 15px 0;
  }

  .diamond_box.big {
    height: 416px;
  }

  .diamond_box {
    height: 200px;
  }
  .footer_working_hour ul li,
  .footer_contact_wrap ul li a {
    font-size: 16px;
    line-height: 25px;
  }

  .testimonial_left img {
    height: 270px;
    object-fit: cover;
  }
  .title.center h2 {
    margin-bottom: 30px;
  }
 
  .login_form_wrap form,
  .login_form_inner .title {
    max-width: 450px;
  }
  .shape_odd_left .shape_img_wrap {
    height: 460px;
  }
  .shape_small_img img {
    width: 140px;
    height: 140px;
  }
  .product_detail_left .shape_small_img {
    right: -70px;
  }
  .product_detail_right .shape_small_img {
    left: -70px;
  }
  .banner_left_wrap h1 {
    font-size: 50px;
    max-width: 480px;
}
  .product_detail_left .shape_odd_left {
    margin-right: 70px;
}
  .product_detail_right .shape_odd_left {
    margin-left: 70px;
}
  .section_shape_even .shape_odd_left .shape_img_wrap img, .section_shape_odd .shape_odd_left .shape_img_wrap img {
    height: 260px;
}
  .shape_odd_left .shape_img_wrap {
    height: 480px;
}
}

@media (max-width: 1171px) {
  .container {
    max-width: 950px;
  }

  .feature_box.odd::after {
    width: 104px;
    height: 104px;
    background-size: 104px;
    top: -50px;
  }

  .feature_box.even::after {
    width: 104px;
    height: 104px;
    background-size: 104px;
    bottom: -50px;
  }

  .services_box {
    padding: 30px 15px;
  }

  .services_box h5 {
    font-size: 22px;
    line-height: 30px;
  }

  .dmd_blog_content h6 {
    padding-right: 0;
    font-size: 22px;
    line-height: 30px;
  }

  .blog_detail_content blockquote {
    padding: 60px;
  }

  .visit_up_box {
    padding: 15px;
  }

  .diamond_features_wrap {
    row-gap: 30px;
  }

  .diamond_features_box h6 {
    margin: 0 0 10px;
  }

  .custom-inner-row {
    flex-direction: column-reverse;
  }

  .custom-inner-row > .col-6 {
    width: 100%;
  }

  .brance_img img {
    height: 350px;
    object-fit: cover;
  }

  .question_wrapper .faq_wrapper .accordion-header .accordion-button {
    font-size: 18px;
  }
  .diamond_features_box.two:after {
    right: -39px;
  }
  .diamond_features_box.two:before {
    width: 20px;
    right: -30px;
  }
  .diamond_features_box.five:after {
    left: -34px;
  }
  .diamond_features_box.five:before {
    left: -30px;
    width: 20px;
  }
  .diamond_features_box.one:after {
    right: -125px;
  }
  .diamond_features_box.one:before {
    width: 110px;
    right: -120px;
  }
  .diamond_features_box:after {
    left: -127px;
  }
  .diamond_features_box:before {
    left: -121px;
    width: 110px;
  }
    .section_shape_even .shape_odd_left .shape_img_wrap img, .section_shape_odd .shape_odd_left .shape_img_wrap img {
    height: 260px;
}
  .shape_odd_left .shape_img_wrap {
    height: 440px;
}
}

@media (max-width: 991px) {
  .container {
    max-width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }

  h1 {
    font-size: 48px;
    line-height: 58px;
  }

  h2 {
    font-size: 38px;
    line-height: 48px;
  }

  h3 {
    font-size: 28px;
    line-height: 38px;
  }

  h4 {
    font-size: 25px;
    line-height: 35px;
  }

  h5 {
    font-size: 22px;
    line-height: 32px;
  }

  h6 {
    font-size: 20px;
    line-height: 30px;
  }

  .header_wrap .navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none;
  }

  .header_wrap .navbar-collapse {
    position: absolute;
    top: 90px;
    background: var(--black);
    color: var(--white);
    transition: 0.5s ease;
    z-index: 99;
    width: 100%;
  }

  .header_wrap .navbar-nav {
    width: 100%;
    justify-content: center;
    align-items: self-start;
  }

  .header_wrap .navbar-dark .navbar-toggler {
    color: rgba(255, 255, 255, 0.55);
    border-color: rgba(255, 255, 255, 0.1);
    z-index: 999;
    padding: 0;
    border: 0;
  }
  .header_wrap .navbar-nav .nav-item {
    width: 100%;
  }

  .header_wrap .navbar-nav .nav-link {
    padding: 15px 15px;
  }

  header.fixed .header_wrap .navbar-collapse {
    top: 75px;
  }

  .banner_custom_row,
  .product_detail_right .row {
    flex-direction: column-reverse;
  }

  .diamond_img_wrap {
    max-width: 450px;
    margin: 0 auto;
  }

  .certified_sec {
    padding: 70px 0;
  }

  .banner_right_wrap {
    margin: 0 auto;
    margin-bottom: 30px;
    max-width: 330px;
    padding: 100px 20px 20px;
  }

  .banner_left_wrap {
    padding-bottom: 0;
  }

  .feature_box {
    border-radius: 20px 20px 20px 20px;
  }

  .our_feature_right {
    padding-left: 0;
    padding-top: 40px;
  }

  .shape_img_wrap {
    margin: 0 auto;
  }

  .product_detail_right .shape_img_wrap {
    margin: 0 auto;
  }

  .our_feature_sec {
    padding: 50px 0 30px 0;
  }

  .feature_box.even {
    border-radius: 20px;
  }

  .home_contact_form_wrap {
    padding: 30px;
  }

  .home_contact_form_wrap textarea {
    height: 160px;
  }

  .home_contact_form_wrap .form_control {
    font-size: 16px;
    line-height: 18px;
  }

  .banner_sec_wrap {
    padding-top: 140px;
    padding-bottom: 50px;
  }

  .product_detail_left .shape_odd_left,
  .product_detail_right .shape_odd_left {
    max-width: 450px;
    margin: 0 auto;
  }

  .product_detail_left .shape_small_img {
    right: -70px;
  }

  .product_detail_left,
  .product_detail_right {
    padding: 70px 0;
  }

  .testimonial_sec {
    padding: 70px 0;
  }

  .feature_box img {
    height: 140px;
  }

  .product_detail_left .shape_odd_right {
    padding-left: 0;
    margin-top: 30px;
  }

  .product_detail_right .shape_odd_right {
    padding-right: 0;
    margin-top: 30px;
  }

  .footrt_email_wrap {
    margin: 20px 0;
  }

  .footrt_email_wrap p {
    max-width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }

  .footer_second_row {
    padding-top: 50px;
    padding-bottom: 30px;
  }
  .footer_logo_wrap img {
    margin: 0 0 10px;
}
  .footer_contact_wrap,
  .footer_working_hour {
    padding: 20px 0;
}
  .footer_bottom_wrap p {
    margin: 0 0 10px;
    text-align: center;
}
  .footer_first_row {
    padding: 50px 0 40px 0;
  }
  ul.social_icon {
    justify-content: center;
}

  .email_input_wrap {
    max-width: 450px;
    margin: 0 auto;
}

  .footer_bottom_wrap {
    padding: 20px 0;
  }

  .footer_logo_wrap {
    max-width: 280px;
  }

  .product_detail_right .shape_small_img {
    left: auto;
    right: -90px;
  }

  .feature_box {
    padding: 15px;
  }

  .feature_box.odd::after {
    width: 154px;
    height: 150px;
    background-size: 154px;
    top: -70px;
    left: 50%;
  }

  .feature_box.even::after {
    width: 154px;
    height: 150px;
    background-size: 154px;
    bottom: -70px;
    left: 50%;
  }

  .header_wrap {
    padding: 15px 0;
  }

  .get_touch_wrap {
    max-width: 450px;
  }

  .get_touch_bottom::after {
    border-left: solid 225px transparent;
    border-right: solid 225px transparent;
  }

  .get_touch_bottom::after {
    border-top: 120px solid rgba(210, 171, 103, 0.6);
  }

  .get_touch_bottom {
    padding-bottom: 90px;
  }

  .testimonial_box {
    max-width: 600px;
    margin: 0 auto;
    margin-top: 40px;
  }

  .testimonial_slider_wrap {
    margin: 30px 0;
  }

  .services_box {
    margin-bottom: 20px;
  }

  .inner_banner {
    padding: 120px 0 40px;
  }

  .inner_banner h2 {
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 20px;
  }

  .services_wrap .row .custom_col:nth-child(even) .services_box {
    border-right: 0;
  }

  .services_wrap {
    padding: 70px 0 50px;
  }

  .services_quality_img img {
    height: 500px;
  }

  .services_quality_content_inner {
    max-width: 100%;
  }

  .services_quality_content h3 {
    margin: 0 0 20px;
  }

  .services_quality_range {
    max-width: 100%;
  }

  .ctc_wrap_inner ul li a.btn_gradient {
    font-size: 18px;
    padding: 18px 25px;
  }

  .ctc_wrap_inner ul li a {
    font-size: 23px;
  }

  .ctc_wrap_inner h3 {
    margin: 0 auto 25px;
  }

  .dmd_blog_content h4 {
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 20px;
  }

  .dmd_blog_wrap {
    padding-bottom: 50px;
    /* padding-top: 20px; */
  }

  .blog_sec {
    padding-top: 50px;
  }

  .blog_box_sec .blog_box_wrap {
    margin-top: 50px;
  }

  .dmd_blog_content > p {
    padding-bottom: 10px;
  }

  .blog_box_wrap .dmd_blog_content > p {
    margin-top: 15px;
    font-size: 16px;
    line-height: 24px;
  }

  .dmd_blog_content h6 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 10px;
  }

  .dmd_blog_content p {
    font-size: 16px;
    line-height: 24px;
  }

  .dmd_blog_content .gradiant_box {
    margin-bottom: 10px;
  }

  .dmd_blog_content .btn_yellow {
    padding: 10px 20px;
    font-size: 16px;
    line-height: 20px;
  }

  .gallery_slider_wrap,
  .blog_detail_wrap,
  .diamond_product,
  .contact_info_wrap,
  .question_sec,
  .popular_shape_wrap,
  .diamond_features {
    padding: 50px 0;
  }

  .blog_detail_content blockquote {
    padding: 50px;
  }

  .contact_info_left {
    padding: 30px;
  }

  .contact_info_left_inner {
    max-width: 100%;
  }

  .contact_info_detail_wrap ul li .right_content a {
    font-size: 18px;
  }

  .form_control_grey {
    padding: 10px 12px;
    font-size: 18px;
    line-height: 22px;
  }

  .form_group {
    margin-bottom: 20px;
  }

  .contact_info_detail_wrap ul li .left_img {
    width: 42px;
    height: 42px;
  }

  .faq_wrapper .accordion-header .accordion-button {
    font-size: 20px;
    padding: 15px 0;
  }

  .visit_up_wrap_inner {
    padding: 30px 0 50px;
  }

  .brance_img img {
    height: 300px;
  }

  .contact_info_right h5 {
    margin-bottom: 15px;
    font-size: 30px;
    line-height: 40px;
  }

  .section_heading {
    font-size: 32px;
    line-height: 40px;
  }

  .diamond_box {
    height: 350px;
  }

  .diamond_box.big {
    height: 716px;
  }

  .grid_second_row {
    flex-direction: row-reverse;
  }
  .subtitle {
    font-size: 14px;
  }
  .banner_left_wrap .subtitle {
    margin-bottom: 15px;
  }
  .services_quality_content {
    padding: 20px;
  }
  .title.center .subtitle {
    margin-bottom: 10px;
  }
  .title_after_wrap h3 {
    margin-bottom: 10px;
    padding-bottom: 12px;
  }
  .question_wrapper .faq_wrapper .accordion-header .accordion-button {
    padding: 12px 12px 12px 25px;
  }
  .question_wrapper .faq_wrapper .accordion-body {
    padding: 0 25px 15px;
  }
  .diamond_features_box.two:after,
  .diamond_features_box.two:before,
  .diamond_features_box.five:after,
  .diamond_features_box.five:before,
  .diamond_features_box.one:after,
  .diamond_features_box.one:before,
  .diamond_features_box:after,
  .diamond_features_box:before {
    display: none;
  }
  .diamond_features_box.left_box {
    text-align: left;
  }
  .diamond_features_box p {
    height: auto;
  }
  .diamond_feature_img {
    margin: 15px 0;
  }
  .shape_slider_Wrap {
    padding: 60px 0 40px;
  }
  .home_contect_us_sec {
    padding-bottom: 60px;
  }
  .header_wrap .navbar {
    justify-content: end;
  }
  .header_wrap .navbar-brand {
    margin-right: auto;
  }
  .header_wrap .header_btn {
    margin-left: 15px;
  }
  .banner_left_wrap h1 {
    max-width: 100%;
  }
  .manufactur_section .shape_odd_right h3 {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 46px;
    line-height: 56px;
  }

  h2 {
    font-size: 36px;
    line-height: 46px;
  }

  h3 {
    font-size: 26px;
    line-height: 36px;
  }

  h4 {
    font-size: 23px;
    line-height: 34px;
  }

  h5 {
    font-size: 20px;
    line-height: 32px;
  }

  h6 {
    font-size: 20px;
    line-height: 30px;
  }

  .shape_small_img img {
    width: 130px;
    height: 130px;
  }

  .contact_form_right {
    padding-left: 0;
    margin-top: 30px;
  }


  .footer_bottom_wrap ul li {
    font-size: 14px;
  }

  .product_detail_left,
  .product_detail_right {
    padding: 60px 0 40px;
  }

  .banner_right_wrap {
    padding: 90px 20px 20px;
    max-width: 300px;
  }

  .product_detail_right .shape_small_img {
    right: -60px;
  }

  .product_detail_left .shape_small_img {
    right: -60px;
  }

  .product_detail_left .shape_odd_left,
  .product_detail_right .shape_odd_left {
    max-width: 400px;
  }

  .certified_sec .certified_img img {
    object-fit: contain;
  }

  .feature_box img {
    height: 120px;
  }

  .feature_box.odd::after {
    width: 120px;
    height: 120px;
    background-size: 120px;
    top: -60px;
  }

  .feature_box.even::after {
    width: 120px;
    height: 120px;
    background-size: 120px;
    bottom: -60px;
  }

  .feature_box.even {
    margin-bottom: 80px;
  }

  .feature_box.odd {
    margin-top: 80px;
  }

  .certified_inner p {
    margin: 30px 0;
  }

  .certified_sec {
    padding: 60px 0;
  }

  header .header_wrap .navbar-brand img {
    height: 60px;
  }

  .header_wrap .navbar-collapse {
    top: 80px;
  }

  .header_wrap .navbar-nav .nav-link {
    padding: 12px 12px;
    font-size: 16px;
    line-height: 20px;
  }

  .get_touch_wrap {
    max-width: 100%;
  }

  .get_touch_bottom::after {
    display: none;
  }

  .get_touch_bottom {
    padding-bottom: 0;
    padding: 30px 0;
  }

  .home_contact_form_wrap {
    margin-top: 0;
  }

  .services_box {
    padding: 20px 15px;
  }

  .services_quality_content {
    padding: 30px;
  }

  .services_quality_content h3 {
    margin: 0 0 20px;
  }

  .services_quality_img img {
    height: 400px;
  }

  .call_to_action {
    padding: 60px 0;
  }

  .ctc_wrap_inner {
    padding: 45px 40px;
  }

  .ctc_wrap_inner ul li {
    padding: 0 15px;
  }

  .ctc_wrap_inner ul li a {
    font-size: 20px;
  }

  .ctc_wrap_inner ul li a.btn_gradient {
    font-size: 18px;
    padding: 16px 22px;
  }

  .dmd_blog_left_img {
    margin-bottom: 15px;
  }

  .dmd_blog_left_img {
    margin-bottom: 15px;
  }

  .dmd_blog_wrap {
    padding-bottom: 40px;
    padding-top: 10px;
  }

  .blog_detail_content blockquote {
    padding: 30px;
    font-size: 22px;
    line-height: 35px;
  }

  .contact_info_left {
    padding: 20px;
    margin-bottom: 20px;
  }

  .btn_border_black {
    padding: 12px 30px;
    font-size: 18px;
    line-height: 22px;
  }

  .btn_border_white {
    padding: 12px 30px;
    font-size: 18px;
    line-height: 22px;
  }

  .btn_border_yellow {
    padding: 12px 30px;
    font-size: 18px;
    line-height: 22px;
  }

  .btn_yellow {
    padding: 12px 30px;
    font-size: 18px;
    line-height: 22px;
  }

  .accordian_wrapper > .acc_custom_row {
    flex-direction: column-reverse;
  }

  .faq_img img {
    height: 450px;
    object-fit: cover;
  }

  .faq_wrapper .accordion-header .accordion-button {
    font-size: 18px;
    padding: 10px 0;
  }

  .brance_img img {
    height: 300px;
  }

  .section_heading {
    font-size: 28px;
    line-height: 35px;
  }

  .visit_up_box h6 {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 10px;
  }

  .inner_banner h2 {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 15px;
  }

  .dmd_blog_content h6 {
    font-size: 18px;
    line-height: 27px;
  }

  .diamond_box {
    height: 250px;
  }
  .diamond_box.big {
    height: 516px;
  }
  .form_group {
    margin-bottom: 15px;
  }
 
  .login_form_inner .btn_yellow {
    font-size: 20px;
  }
  .banner_left_wrap h1 {
    font-size: 45px;
    line-height: 56px;
}
}

@media (max-width: 575px) {
    .gallery_slider_wrap .gallery_slider .gallery_slide:nth-child(even) img {
    height: 250px;
}
    .gallery_slider_wrap .gallery_slider .gallery_slide:nth-child(odd) img {
    height: 250px;
}

    .footer_bottom_wrap p {
    font-size: 16px;
    line-height: 24px;
}
  .shape_small_img img {
    width: 110px;
    height: 110px;
  }

  .certified_sec .certified_img {
    margin: 10px auto;
    max-width: 300px;
  }

  .certifid-last-img {
    max-width: 300px;
    margin: 0 auto;
  }

  .footer_bottom_wrap ul li {
    text-align: center;
  }

  .container {
    padding-right: 15px;
    padding-left: 15px;
  }

  .btn_border_black {
    padding: 10px 30px;
    font-size: 16px;
    line-height: 20px;
  }

  .btn_border_white {
    padding: 10px 30px;
    font-size: 16px;
    line-height: 20px;
  }

  .btn_border_yellow {
    padding: 10px 30px;
    font-size: 16px;
    line-height: 20px;
  }

  .btn_yellow {
    padding: 10px 30px;
    font-size: 16px;
    line-height: 20px;
  }

  .certified_sec,
  .manufactur_section {
    padding: 50px 0;
  }

  .product_detail_left,
  .product_detail_right {
    padding: 60px 0 50px 0;
  }

  .product_detail_right .shape_small_img {
    right: -30px;
  }

  .product_detail_left .shape_small_img {
    right: -30px;
  }

  .feature_box.odd::after,
  .feature_box.even::after {
    display: none;
  }

  .feature_box.odd {
    margin-top: 0;
  }

  .feature_box.even {
    margin-bottom: 0;
  }

  .feature_box {
    max-width: 300px;
    margin: 10px auto !important;
  }

  .our_feature_sec {
    padding: 40px 0 30px 0;
  }

  .get_touch_top {
    padding: 15px 0;
  }

  .social_icon_wrap ul {
    justify-content: start;
  }

  .footer_logo_wrap {
    max-width: 150px;
    margin: 0 auto;
  }

  .home_contact_form_wrap textarea {
    height: 110px;
  }

  .services_box {
    border-right: 0;
    max-width: 400px;
    margin: 0 auto;
  }

  .services_box h5 {
    font-size: 22px;
    line-height: 30px;
    padding: 15px 0 5px;
  }

  .services_box img {
    height: 60px;
  }

  .ctc_wrap_inner {
    padding: 20px;
  }

  .ctc_wrap_inner ul li a {
    font-size: 18px;
  }

  .ctc_wrap_inner ul li a.btn_gradient {
    font-size: 16px;
    padding: 14px 18px;
  }

  .services_wrap {
    padding: 50px 0 30px;
  }

  .blog_box_wrap .dmd_blog_img img {
    height: 360px;
  }

  .gallery_slider_wrap,
  .blog_detail_wrap,
  .diamond_product,
  .contact_info_wrap,
  .question_sec,
  .popular_shape_wrap {
    padding: 40px 0;
  }

  .insta_gallery_title {
    padding-top: 50px;
  }

  .blog_sec {
    padding-top: 40px;
  }

  .blog_detail_content blockquote {
    padding: 25px;
    font-size: 20px;
    line-height: 30px;
    margin: 20px 0;
  }

  .visit_up_wrap_inner {
    padding: 15px 0 40px;
  }

  .contact_info_right h5 {
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 32px;
  }

  .title.center .subtitle {
    margin-bottom: 10px;
    font-size: 14px;
  }

  .section_heading {
    font-size: 24px;
    line-height: 30px;
  }

  .visit_up_social ul li .visit_up_social_right a {
    font-size: 14px;
    line-height: 20px;
  }

  .visit_up_box h6 {
    font-size: 20px;
    line-height: 28px;
  }
  .testimonial_slider_wrap .slick-prev,
  .testimonial_slider_wrap .slick-next {
    bottom: -60px;
  }
  .testimonial_slider_wrap .slick-prev,
  .testimonial_slider_wrap .slick-next {
    width: 40px;
    height: 40px;
  }
  .testimonial_slider_wrap .slick-prev::before,
  .testimonial_slider_wrap .slick-next::before {
    font-size: 18px;
  }
  .testimonial_slide p {
    font-size: 18px;
    line-height: 25px;
  }
  .testimonial_slider_wrap {
    padding: 15px;
  }
  .test_profile_wrap h6 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 0;
  }
  .test_profile_wrap {
    margin-bottom: 10px;
  }
  .title.center h2 {
    margin-bottom: 20px;
  }
  .diamond_box {
    height: auto;
  }
  .login_form_wrap form,
  .login_form_inner .title {
    max-width: 360px;
  }
  .form-group label {
    font-size: 18px;
    line-height: 26px;
    margin: 0 0 5px;
  }
  .login_form_inner .btn_yellow {
    font-size: 18px;
    line-height: 22px;
    margin: 15px 0 10px;
  }
  .dont_have_account p {
    font-size: 16px;
    line-height: 26px;
  }
  .visit_up_box {
    margin-bottom: 20px;
  }
      footer_bottom_wrap p {
    font-size: 16px;
    line-height: 26px;
}
          .footer_contact_wrap, .footer_working_hour {
    padding: 15px 0;
}
          .footer_second_row {
    padding-top: 30px;
    padding-bottom: 20px;
}
}

@media (max-width: 480px) {
    .testimonial_slide p {
    font-size: 16px;
    line-height: 25px;
}

    .privacy-sec .privacy-inner-content p {
    font-size: 15px;
    line-height: 20px;
}

        .gallery_slider_wrap .gallery_slider .gallery_slide:nth-child(even) img {
    height: 200px;
}
    .gallery_slider_wrap .gallery_slider .gallery_slide:nth-child(odd) img {
    height: 200px;
}
    .footer ul.social_icon li a {
    font-size: 16px;
}

  h1 {
    font-size: 28px;
    line-height: 38px;
  }

  h2 {
    font-size: 26px;
    line-height: 34px;
  }

  h3 {
    font-size: 24px;
    line-height: 30px;
  }

  h4 {
    font-size: 22px;
    line-height: 28px;
  }

  h5 {
    font-size: 20px;
    line-height: 26px;
  }

  h6 {
    font-size: 18px;
    line-height: 24px;
  }

  p {
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 15px;
  }

  .product_detail_left .shape_odd_left,
  .product_detail_right .shape_odd_left {
    max-width: 300px;
  }

  .banner_right_wrap {
    padding: 70px 20px 20px;
    max-width: 250px;
  }

  .banner_left_wrap .subtitle {
    margin-bottom: 15px;
    font-size: 14px;
  }

  .subtitle {
    margin-bottom: 15px;
  }

  .title h1,
  .title h2,
  .title h3,
  .title h4,
  .title h5 {
    margin-bottom: 10px;
  }

  .title img {
    margin-bottom: 15px;
    width: 55px;
  }

  .product_detail_left,
  .product_detail_right {
    padding: 50px 0 40px 0;
  }

  .diamond_img_wrap {
    max-width: 300px;
  }

  .certified_sec,
  .manufactur_section {
    padding: 35px 0;
  }

  .testimonial_sec {
    padding: 40px 0 60px;
  }

  .certified_inner p {
    margin: 15px 0;
  }

  .main_wrapper {
    padding-bottom: 30px;
  }

  .main_wrapper:last-child {
    padding-top: 30px;
  }

  .certifid-last-img {
    margin-top: 20px;
  }

  .home_contact_form_wrap .form_control {
    padding-bottom: 10px;
    font-size: 14px;
    line-height: 20px;
  }

  .home_contact_form_wrap {
    padding: 20px;
  }

  .home_contact_form_wrap textarea {
    margin-bottom: 15px;
    padding: 15px;
    font-size: 14px;
    line-height: 18px;
  }

  .email_input_wrap .subscribe_wrap .btn_yellow {
    padding: 7px 20px;
    font-size: 16px;
    line-height: 24px;
  }

  .footer_bottom ul li {
    font-size: 14px;
    line-height: 20px;
  }

  header .header_wrap .navbar-brand img {
    height: 50px;
  }

  header.fixed .header_wrap .navbar-brand img {
    height: 50px;
  }

  .banner_sec_wrap {
    padding-top: 120px;
    padding-bottom: 40px;
  }
  .our_feature_right {
    padding-top: 30px;
}

  .shape_img_wrap::after {
    left: -15px;
    top: -13px;
  }

  .header_wrap .navbar-collapse {
    top: 70px;
  }

  .header_wrap .navbar-nav .nav-link {
    padding: 10px;
    font-size: 14px;
    line-height: 18px;
  }

  .services_quality_content h3 {
    margin: 0 0 15px;
  }

  .services_quality_range .range_label {
    font-size: 16px;
    margin: 0 0 5px px;
  }

  .range_slider span:after {
    top: -6px;
    width: 15px;
    height: 15px;
  }

  .services_quality_img img {
    height: 300px;
  }

  .services_quality_content {
    padding: 20px;
  }

  .ctc_wrap_inner ul {
    flex-direction: column;
  }

  .ctc_wrap_inner ul li {
    padding: 0 0 15px 0;
  }

  .ctc_wrap_inner h3 {
    margin: 0 0 15px;
  }

  .ctc_wrap_inner {
    padding: 15px;
  }

  .inner_banner h2 {
    font-size: 26px;
    line-height: 26px;
    margin-bottom: 10px;
    padding: 5px;
  }

  .breadcrumbs ul li,
  .breadcrumbs ul li a {
    font-size: 18px;
  }

  .breadcrumbs ul li a:after {
    background-size: 10px;
    right: -30px;
    top: 1px;
  }

  .breadcrumbs ul li {
    padding: 0 20px;
  }

  .inner_banner {
    padding: 120px 0 30px;
  }

  .services_wrap {
    padding: 40px 0 30px;
  }

  .blog_box_wrap .dmd_blog_img img {
    height: 300px;
  }

  .dmd_blog_content h4 {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 10px;
  }

  .blog_detail_img {
    margin: 20px 0;
  }

  .blog_detail_content ul li,
  .blog_detail_content ol li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 22px;
  }

  .blog_detail_content ul,
  .blog_detail_content ol {
    padding-left: 30px;
  }

  .form_group {
    margin-bottom: 15px;
  }

  .form_control_grey {
    font-size: 16px;
    line-height: 18px;
  }

  .contact_info_detail_wrap ul li .right_content a {
    font-size: 14px;
    line-height: 18px;
  }

  .contact_info_left {
    padding: 15px;
  }

  .title.center .subtitle {
    font-size: 12px;
    line-height: 15px;
  }

  .subtitle {
    font-size: 12px;
    line-height: 15px;
  }
  .footer_first_row {
    padding: 30px 0 30px 0;
  }
  .footrt_email_wrap {
    margin: 10px 0;
  }
  .question_wrapper .faq_wrapper .accordion-header .accordion-button {
    font-size: 16px;
    padding: 12px 10px 10px 25px;
  }
  .question_wrapper .accordion-button::before {
    top: 52%;
    width: 12px;
    height: 12px;
  }
  .question_wrapper .faq_wrapper .accordion-body {
    padding: 0 25px 10px;
    font-size: 14px;
  }
  .contact_info_detail_wrap ul li .left_img img {
    width: 22px;
  }
  .faq_wrapper .accordion-body {
    font-size: 14px;
  }
  .faq_wrapper .accordion-header .accordion-button {
    font-size: 16px;
    padding: 8px 0;
  }
  .faq_img img {
    height: 350px;
  }
  .shape_slider_Wrap {
    padding: 40px 0 40px;
  }

  .dmd_blog_wrap {
    padding-bottom: 30px;
  }
  .insta_gallery_title {
    padding-top: 40px;
  }
  .home_contect_us_sec {
    padding-bottom: 50px;
  }
  .test_profile_wrap > img {
    width: 60px;
    height: 60px;
  }
  .banner_right_wrap:after {
    content: "";
    position: absolute;
    left: -15px;
    top: -16px;
    width: calc(100% + 30px);
    height: calc(100% - 15px);
  }
  .form-group .form-control {
    padding: 10px;
  }
  .form-group label {
    font-size: 16px;
  }
  .login_form_wrap {
    padding: 130px 0;
  }
  .header_wrap .header_btn {
    padding: 8px 30px;
    font-size: 16px;
    line-height: 20px;
    margin-left: 10px;
  }
  .shape_odd_left .shape_img_wrap {
    height: 340px;
  }
  .section_shape_even .shape_odd_left .shape_img_wrap img,
  .section_shape_odd .shape_odd_left .shape_img_wrap img {
    height: 210px;
  }
    .banner_left_wrap h1 {
   font-size: 32px;
    line-height: 45px;
}

}

@media (max-width: 400px) {
  .product_detail_left .shape_small_img,
  .product_detail_right .shape_small_img {
    right: -10px;
    bottom: -25px;
  }

  .product_detail_left .shape_odd_left,
  .product_detail_right .shape_odd_left {
    max-width: 260px;
  }

  .shape_small_img img {
    width: 90px;
    height: 90px;
  }

  .shape_img_wrap::after {
    left: -10px;
    top: -12px;
  }
  .login_form_wrap form,
  .login_form_inner .title {
    max-width: 300px;
  }
}

/* media query end */


section.privacy-sec {
    padding: 40px 0;
}

.privacy-inner-content h2{
    font-size: 40px;
    line-height: 48px;
    font-family: "Casual";
    color: #000;
    font-weight: 400;
    margin: 30px 0 10px;
}


.privacy-inner-content p{
font-size: 22px;
    line-height: 30px;
    margin: 10px 0;
}

span.select2.select2-container.select2-container--default.select2-container--disabled {
    background-color: #010101 !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--yellow) !important;
    color: white;
}