* {
  padding: 0;
  margin: 0;
}

body {
  font-family: "Prumo Deck";
  overflow-x: hidden;
  scroll-behavior: smooth;
}

:root {
  --black: #050505;
  --white: #fff;
  --red-gradiant: linear-gradient(180deg, #95141d 0%, #dd000f 100%);
  --light-grey: #858585;
  --grey: #2b2b2b;
  --dark-grey: #222121;
  --input-bg: #fff7e5;
  --red: #dd000f;
  --dark-red: #891c21;
  --border-color: #dbe1e5;
}

h1 {
  font-size: 72px;
  line-height: 86px;
  font-weight: 400;
}

h2 {
  font-size: 64px;
  line-height: 76px;
  font-weight: 400;
}

h3 {
  font-size: 40px;
  line-height: 48px;
  font-weight: 600;
}

h4 {
  font-size: 36px;
  line-height: 43px;
  font-weight: 600;
}

h5 {
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
}

h6 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: "Aspekta";
  letter-spacing: 0.6px;
}

.container {
  max-width: 1600px;
  margin: 0 auto;
}

textarea,
/* select, */
input {
  width: 100%;
  border: 1px solid var(--input-bg);
  background-color: var(--input-bg);
  font-family: "Aspekta";
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.5px;
  font-weight: 500;
  padding: 14px 26px;
  color: var(--black);
}

/* select:focus, */
input:focus {
  outline: 0;
  border: 1px solid var(--black);
}

::placeholder {
  color: var(--light-grey);
}

label {
  font-family: "Aspekta";
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
  color: var(--light-grey);
  letter-spacing: 1px;
}

/* aspekta font */

@font-face {
  font-family: "Aspekta";
  font-style: normal;
  font-weight: 250;
  font-display: swap;
  src: url("../font/Aspekta-250.woff2") format("woff2");
}

@font-face {
  font-family: "Aspekta";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../font/Aspekta-400.woff2") format("woff2");
}

@font-face {
  font-family: "Aspekta";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../font/Aspekta-500.woff2") format("woff2");
}

/* Prumo Deck Font */

@font-face {
  font-family: "Prumo Deck";
  src: url("../font/PrumoDeck-Medium.eot");
  src:
    local("Prumo Deck Medium"),
    local("PrumoDeck-Medium"),
    url("../font/PrumoDeck-Medium.eot?#iefix") format("embedded-opentype"),
    url("../font/PrumoDeck-Medium.woff2") format("woff2"),
    url("../font/PrumoDeck-Medium.woff") format("woff"),
    url("../font/PrumoDeck-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Prumo Deck";
  src: url("../font/PrumoDeck-Light.eot");
  src:
    local("Prumo Deck Light"),
    local("PrumoDeck-Light"),
    url("../font/PrumoDeck-Light.eot?#iefix") format("embedded-opentype"),
    url("../font/PrumoDeck-Light.woff2") format("woff2"),
    url("../font/PrumoDeck-Light.woff") format("woff"),
    url("../font/PrumoDeck-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Prumo Deck";
  src: url("../font/PrumoDeck-SemiBold.eot");
  src:
    local("Prumo Deck Semi Bold"),
    local("PrumoDeck-SemiBold"),
    url("../font/PrumoDeck-SemiBold.eot?#iefix") format("embedded-opentype"),
    url("../font/PrumoDeck-SemiBold.woff2") format("woff2"),
    url("../font/PrumoDeck-SemiBold.woff") format("woff"),
    url("../font/PrumoDeck-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

/*************************** Button css start ***************************/

.btn_border,
.common_btn {
  padding: 12px 20px;
  background: var(--red-gradiant);
  color: var(--white);
  text-decoration: none;
  font-family: "Aspekta";
  text-align: center;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  display: inline-block;
  transition: 0.5s;
}

.common_btn:hover {
  color: var(--white);
  /* transition: 0.5s; */
}

.btn_border {
  border: 1.5px solid #e6e6e6;
  background: transparent;
  color: var(--black);
  /* transition: 0.5s; */
}

.btn_border:hover {
  border: 1.5px solid #e6e6e6;
  background: var(--red-gradiant);
  color: var(--white);
  /* transition: 0.5s; */
}

.arrow_span {
  display: inline-block;
  position: relative;
  width: 22px;
  border-left: 2px solid var(--white);
  height: 14px;
  margin-left: 7px;
  transition: 0.5s;
}

.arrow_span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  transition: 0.5s;
}

.arrow_span::before {
  content: "\f105";
  position: absolute;
  bottom: 9px;
  right: -4px;
  width: 16px;
  height: 2px;
  color: var(--white);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 16px;
  line-height: 20px;
  transition: 0.5s;
}

.common_btn:hover span {
  width: 27px;
  transition: 0.5s;
}

/*************************** Button css end ***************************/
/*************************** login page css start ***************************/

.login-section {
  /* height: 100vh; */
  padding: 50px 0;
  background-image: url(../Images/Login/Login-bg.png);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.login-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 411px;
  height: 292px;
  background-image: url(../Images/Login/login-shap.png);
    background-repeat: no-repeat;
  background-size: 100%;
}

.login-section::before {
  content: "";
  position: absolute;
  bottom: 40px;
  left: 40px;
  width: 306px;
  height: 160px;
  background-image: url(../Images/Login/login-shap-1.png);
    background-repeat: no-repeat;
  background-size: 100%;
}

.login_wrapper {
  max-width: 526px;
  margin: 0 auto;
}

.login_wrapper.register_wrapper{
    max-width: 860px;
}

.login_wrapper.register_wrapper .login_form{
    z-index: 99;
    position: relative;
}

.login_form {
  background-color: var(--white);
  padding: 40px 50px;
  box-shadow: 0px 4px 24px 0px #00000014;
  z-index: 3;
  position: relative;
}

.login_form h5 {
  font-weight: 500;
  text-align: center;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 50px;
}

.input_box {
  margin-bottom: 15px;
  position: relative;
}

/*.input_box:last-child {
  margin-bottom: 0;
}*/

.input_box label {
  margin-bottom: 8px;
}

.input_box .pass_show {
  position: absolute;
    top: 51px;
  right: 15px;
}

.field-validation-error{
    font-family: "Aspekta";
    font-weight: 500;
    letter-spacing: 0.5px;
    font-size: 13px;
    line-height: 20px;
}

.forgot_pass {
  text-align: end;
  margin-top: 8px;
}

.forgot_pass a {
  color: var(--light-grey);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: "Aspekta";
  text-decoration: none;
  letter-spacing: 0.6px;
}

.sign_up_box {
  margin-top: 24px;
  text-align: center;
}

.sign_up_box h6 {
  font-family: "Aspekta";
  margin: 0;
  color: var(--black);
  font-weight: 500;
}

.sign_up_box h6 a {
  color: var(--black);
  transition: 0.5s;
}

.sign_up_box h6 a:hover {
  color: var(--red);
  transition: 0.5s;
}

.login_form .common_btn:hover {
  opacity: 0.8;
  transition: 0.5s;
}

.logo_wrap img {
  width: 196px;
}

.logo_wrap {
  text-align: center;
  margin-bottom: 40px;
}

.back_to_site a {
  width: 48px;
  height: 48px;
  background: var(--red-gradiant);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--white);
  font-size: 24px;
  position: absolute;
  top: 50px;
  left: 50px;
}

.back_to_site a:hover {
  opacity: 0.8;
  transition: 0.5s;
}

.otp_section .login_form h5 {
  margin-bottom: 10px;
}

.otp_section .login_form p {
  font-size: 14px;
  line-height: 24px;
  color: var(--light-grey);
  text-align: center;
  font-family: "Aspekta";
  margin-bottom: 50px;
}

.otp_wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 290px;
  margin: 0 auto;
  margin-bottom: 20px;
}

.otp_wrapper .otp_input {
  width: 25%;
  padding: 14px 0;
  text-align: center;
}

.resend_otp_txt {
  color: var(--black);
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  text-align: center;
  font-family: "Aspekta";
  letter-spacing: 0.7px;
}

.resend_otp {
  margin-bottom: 30px;
}

.btn_transparent {
    border: 0;
    background: transparent;
}

.successpopup .modal-header .close span {
    font-size: 19px;
    line-height: 20px;
}

.simple-white-btn {
    font-family: "Aspekta";
    border: 1px solid var(--red);
    background-color: var(--white);
    padding: 13px 25px;
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.5s;
}

.simple-white-btn:hover {
    border: 1px solid var(--red);
    background: var(--red-gradiant);
    color: var(--white);
    transition: 0.5s;
}

.successpopup .common_btn{
    letter-spacing: 0.5px;
    font-family: "Aspekta";
}

/*************************** login page css end ***************************/
/*************************** Site_header css start ***************************/

.site_header {
  /* position: fixed;
    top: 0;
    left: 0; */
  width: 100%;
  padding: 25px 0;
  background-color: var(--white);
  z-index: 9999;
  position: relative;
}

.site_logo img {
  width: 168px;
}

.header_wrapper .navbar .navbar-nav .nav-item .nav-link {
  font-size: 16px;
  line-height: 22px;
  color: var(--black);
  font-weight: 500;
  font-family: "Aspekta";
  padding: 0;
  position: relative;
}

.header_wrapper .navbar .navbar-nav .nav-item .nav-link.show {
  color: var(--red);
}

.header_wrapper .navbar .navbar-nav .nav-item .nav-link.active {
  color: var(--red);
}

.header_wrapper .navbar .navbar-nav .nav-item .nav-link:hover {
  color: var(--red);
}

.header_wrapper .navbar .navbar-nav .nav-item {
  padding-right: 46px;
  position: inherit;
}

.header_wrapper .navbar .navbar-nav .nav-item .dropdown-menu {
  width: 100%;
  border: 0;
  background-color: transparent;
}

.header_wrapper .navbar .navbar-nav .nav-item .dropdown-menu.show {
  display: flex;
  max-width: 867px;
  right: 0;
  top: 60px;
  margin-left: auto;
}

.header_wrapper .navbar .navbar-nav .nav-item .dropdown-menu li {
  padding-right: 46px;
  position: relative;
}

.header_wrapper .navbar .navbar-nav .nav-item .dropdown-menu li:last-child {
  padding-right: 0;
}

.header_wrapper .navbar .navbar-nav .nav-item .dropdown-menu li a {
  padding: 0;
  font-family: "Aspekta";
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  color: var(--black);
  transition: 0.5s;
  position: relative;
}

.header_wrapper .navbar .navbar-nav .nav-item .dropdown-menu li a.active{
    background-color: transparent;
    color: var(--red);
}

.header_wrapper .navbar .navbar-nav .nav-item .dropdown-menu li a:hover {
  background-color: transparent;
  color: var(--red);
  transition: 0.5s;
}

.header_wrapper .navbar .navbar-nav .nav-item:last-child {
  padding-right: 0;
}

.header_wrapper .navbar .navbar-nav .nav-item .dropdown-menu li a::before,
.header_wrapper .navbar .navbar-nav .nav-item a::before {
  content: "/";
  position: absolute;
  top: 0;
  right: -30px;
  width: 10px;
  height: 22px;
  font-size: 23px;
  font-weight: 100;
  line-height: 25px;
  overflow: hidden;
  color: #7e7e7e;
}

.header_wrapper .navbar .navbar-nav .nav-item .dropdown-menu li:last-child a::before,
.header_wrapper .navbar .navbar-nav .nav-item:last-child .nav-link::before {
  display: none;
}

.site_button {
  margin-left: 30px;
  min-width: 150px;
}

.site_header .container {
  max-width: 1680px;
  margin: 0 auto;
}

/*************************** Site_header css end ***************************/
/*************************** banner css start ***************************/
/* 
.main_wrapper{
    margin-top: 102px;
} */

/* .diamond_make_section, */
.sustainblity_banner,
.left-right-section,
.inner_banner,
/* .professionals_section, */
.lab_grown_section,
.Eco_section,
.scolling_section,
.total_solution_sec,
.banner_section {
  height: 100vh;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  /*overflow: auto;
  padding: 130px 0;*/
}

.video_wrapper {
  height: 100%;
}

.video_wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*************************** banner css end ***************************/
/*************************** master_cut_sec css start ***************************/

.total_solution_sec {
  /* background-image: url(../Images/Home/total-solution-bg.jpg); */
  background-repeat: no-repeat;
  /* background-size: 1900px; */
  background-size: cover;
  /* position: relative; */
}

.section_overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: -1;
  opacity: 0;
}

.common_white.common_btn {
  background: var(--white);
  color: var(--black);
}

.common_white.common_btn .arrow_span {
  border-color: var(--black);
}

.common_white.common_btn .arrow_span::before {
  color: var(--black);
}

.common_white.common_btn .arrow_span::after {
  background-color: var(--black);
}

.lab_text h2 {
  color: var(--white);
  margin-top: 50px;
}

.lab_text p {
  color: var(--white);
  margin: 20px 0 50px;
}

.lab_text img {
  width: 54px;
  height: 54px;
}

/* .master_cut_sec{
    background-image: url(../Images/Home/master-cut-bg.jpg);
} */

/*************************** master_cut_sec css end ***************************/
/*************************** scolling_section css start ***************************/

.scrolling_swipe-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: visible;
}

.scolling_section{
  background-color: #fff4f4;
}

.scrolling_swipe-section .panel {
  position: absolute;
}

.scrolling_main_wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #14151d;
  overflow: hidden;
}

.scrolling_main_wrapper .slide4,
.scrolling_main_wrapper .slide3,
.scrolling_main_wrapper .slide2,
.scrolling_main_wrapper .slide {
  overflow: hidden;
  z-index: 50;
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
}

.scrolling_main_wrapper .slide4:first-child,
.scrolling_main_wrapper .slide3:first-child,
.scrolling_main_wrapper .slide2:first-child,
.scrolling_main_wrapper .slide:first-child {
  width: 100%;
}

.scrolling_main_wrapper .slide4 > div,
.scrolling_main_wrapper .slide3 > div,
.scrolling_main_wrapper .slide2 > div,
.scrolling_main_wrapper .slide > div {
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-image: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/710995/transparent-noise.png);
}

.scrolling_main_wrapper .slide4 .vis,
.scrolling_main_wrapper .slide3 .vis,
.scrolling_main_wrapper .slide2 .vis,
.scrolling_main_wrapper .slide .vis {
  width: 600px;
  height: 600px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: calc(50% - 300px);
  left: calc(50% - 300px);
  opacity: 0.5;
  filter: grayscale(1);
  mix-blend-mode: overlay;
}

.paggination_wrapper {
  display: table;
  z-index: 999;
  position: absolute;
  bottom: 50px;
  right: 22%;
}

.pagination_inner > div {
  text-align: right;
  display: flex;
  align-items: center;
  height: 40px;
  overflow: hidden;
}
.pagination_inner b {
  color: var(--black);
  font-size: 24px;
  line-height: 180px;
}
.pagination_inner b > span {
  display: inline-block;
  text-align: center;
  height: 104px;
  overflow: hidden;
}
.pagination_inner i {
  color: var(--black);
  line-height: 20px;
  font-size: 15px;
  font-style: normal;
  display: inline-block;
  vertical-align: top;
}

.scrolling_main_wrapper .line span {
  display: inline-block;
  position: relative;
  line-height: 18px;
  height: 18px;
  vertical-align: top;
}
.scrolling_main_wrapper .line .scroll {
  overflow: hidden;
  color: #ffffff;
}

.scrolling_main_wrapper .line > div > span:first-child:before {
  content: "";
  display: block;
  height: 1px;
  width: 20px;
  right: calc(100% + 4px);
  bottom: 4px;
  position: absolute;
  background: #14151d;
}
.scrolling_main_wrapper .line > div > span:first-child:after {
  content: "";
  display: block;
  height: 1px;
  width: 100vw;
  right: calc(100% + 34px);
  bottom: 4px;
  background: #ffffff;
  position: absolute;
  opacity: 0.4;
}

.proccest-time {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 50px;
  /*background-color: #fff4f4;*/
}

.proccest-time img {
  width: 220px;
  height: 220px;
  margin-bottom: 50px;
  mix-blend-mode: multiply;
}

.line_pagination {
  font-size: 24px;
  line-height: 34px;
  color: var(--black);
  font-weight: 900;
}

.Scrolling_Left_right .proccest-time {
  text-align: left;
  align-items: flex-start;
}

.Scrolling_Left_right .proccest-time h3 {
  margin-bottom: 15px;
}

.Scrolling_Left_right .proccest-time img {
  width: 54px;
  height: 54px;
  margin-bottom: 50px;
}

.Scrolling_Left_right .slide4,
.Scrolling_Left_right .slide3,
.Scrolling_Left_right .slide2 {
  background-repeat: no-repeat;
  background-size: auto;
}

.dark_font {
  font-size: 20px;
  line-height: 28px;
}

.proccest-time-inner {
  margin-bottom: 210px;
}

/*************************** scolling_section css end ***************************/
/*************************** diamond_make_section css start ***************************/

.diamond_make_section{
  /* background-color: #fff4f4; */
  position: sticky;
  top: 0;
  z-index: 3;
  height: 100vh;
  /*overflow: auto;
  padding: 60px 0;*/
}

.diamond_make_section .proccest-time h3{
  text-align: center;
}

.diamond_make_section .proccest-time{
    background-color: #fff4f4;
}

.diamond_make_section .swiper-pagination{
  display: inline-flex;
  align-items: flex-end;
  width: auto;
  right: 460px;
  left: auto;
  bottom: 80px;
  gap: 5px;
  color: var(--dark-grey);
}

.diamond_make_section .swiper-pagination .swiper-pagination-current{
  font-size: 24px;
  line-height: 28.8px;
  font-weight: 600;
  /* font-family: "Aspekta"; */
}

.diamond_make_section .swiper-pagination .swiper-pagination-total{
  font-size: 15px;
  line-height: 22px;
  font-weight: 600;
  /* font-family: "Aspekta"; */
}

/*************************** diamond_make_section css end ***************************/
/*************************** suppoter_section css start ***************************/

.suppoter_section{
  position: sticky;
  top: 0;
  z-index: 3;
  height: 100vh;
}

.suppoter_section .proccest-time {
  text-align: left;
  align-items: flex-start;
  padding: 0;
}

.suppoter_section .proccest-time h3 {
  margin-bottom: 15px;
}

.suppoter_section .proccest-time img {
  width: 54px;
  height: 54px;
  margin-bottom: 50px;
}

.swiper-button-prev:after{
  content: "\f177";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 25px;
}

.swiper-button-next:after {
  content: "\f178";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 25px;
}

.swiper-button-next,
.swiper-button-prev {
  left: 170px;
  bottom: 150px;
  top: inherit;
  color: var(--dark-grey);
  width: auto;
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
}

.swiper-button-next:focus,
.swiper-button-prev:focus{
  outline: none;
}

.swiper-button-prev{
  gap: 10px;
  flex-direction: row-reverse;
}

.swiper-button-next {
  right: 170px;
  left: inherit;
  gap: 10px;
}

/*************************** suppoter_section css end ***************************/
/*************************** Eco_section css start ***************************/

.eco_main_wrapper {
  width: 100%;
  height: 100%;
}

.eco_img {
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: 0.5s;
}

.eco_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.eco_img:hover img {
  transform: scale(1.1);
  transition: 0.5s;
}

.eco_img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  /* z-index: -1; */
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}

.eco_img:hover::after {
  opacity: 0.3;
  visibility: visible;
  transition: 0.5s;
}

.eco_img h3,
.eco_img h2 {
  color: var(--white);
  padding-bottom: 20px;
  text-align: center;
  position: relative;
  margin: 0;
  transition: 0.5s;
}

.eco_img h3::after,
.eco_img h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100px;
  height: 2px;
  background: var(--red-gradiant);
  transform: translate(-50%, 0);
  transition: 0.5s;
}

.eco_img h3 {
  max-width: 670px;
  margin: 0 auto;
}

.eco_img:hover h2::after {
  width: 200px;
  transition: 0.5s;
}

.eco_img p {
  color: var(--white);
  text-align: center;
  opacity: 0;
  visibility: visible;
  transition: 0.5s;
  max-width: 681px;
  margin: 30px auto 0;
}

.eco_img:hover p {
  opacity: 1;
  visibility: visible;
  transition: 0.5s;
}

.eco_inner_txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 100%;
  text-align: center;
  padding: 0 30px;
}

.double_img {
  height: 100vh;
}

.double_img .box_height {
  height: 50% !important;
}

.non_hover.eco_img {
  background-color: var(--white);
}

.non_hover .eco_inner_txt h3 {
  background: var(--red-gradiant);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.non_hover .eco_inner_txt h3::after {
  width: 200px;
}

.non_hover .eco_inner_txt p {
  opacity: 1;
  visibility: visible;
  color: var(--black);
}

.non_hover.eco_img::after {
  display: none;
}

.non_hover.eco_img:hover .eco_inner_txt img {
  transform: none;
}

.eco_inner_txt img {
  width: 54px;
  height: 54px;
  margin-bottom: 30px;
}

/*************************** Eco_section css end ***************************/
/*************************** professionals_section css start ***************************/

.professionals_section {
  padding: 70px 0 100px;
  background-color: var(--white);
  position: relative;
  z-index: 3;
}

.professionals_section .common_head h2{
  margin-top: 0;
  margin-bottom: 50px;
}

.client_img_wrapper img{
    width: 100%;
}

.client_img_wrapper{
    position: relative;
}

.professional_inner_wrap {
  display: flex;
  align-items: flex-end;
  margin-top: auto;
  justify-content: center;
}

.professional_wrap {
  width: 456px;
  height: 593px;
  margin: 0 -40px;
  position: relative;
  transition: 0.5s;
}

.professional_wrap img {
  width: 100%;
  height: 100%;
  opacity: 0.3;
  transition: 0.5s;
}

.professional_wrap:hover img {
  opacity: 1;
  z-index: 9;
  position: relative;
  transition: 0.5s;
}

.common_head h2 {
  text-align: center;
  margin-bottom: 100px;
  margin-top: 70px;
}

.professional_main_wrapper {
  display: flex;
  flex-direction: column;
}

.team_details {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, 0);
  text-align: center;
  /*background-color: var(--white);*/
  background: #FFFFFFCC;
  padding: 10px;
  width: 100%;
  max-width: 90%;
  /*width: 210px;*/
  /*opacity: 0;
  visibility: hidden;*/
  transition: 0.5s;
}

.professional_wrap:hover .team_details {
  opacity: 1;
  visibility: visible;
  z-index: 99;
  transition: 0.5s;
}

.team_details h4 {
  font-size: 30px;
  line-height: 36px;
  font-weight: 600;
  color: var(--dark-grey);
  margin-bottom: 5px;
}

.team_details h6 {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: var(--dark-grey);
  margin-bottom: 0;
  font-family: "Aspekta";
}

/*************************** professionals_section css end ***************************/
/*************************** newsletter_sec css start ***************************/

.newsletter_sec {
  background-color: var(--dark-grey);
  padding: 50px 0;
  z-index: 9;
  position: relative;
}

.news_text h4 {
  color: var(--white);
  margin-bottom: 12px;
}

.news_text p {
  color: var(--white);
  font-weight: 400;
  margin-bottom: 0;
}

.news_text {
  padding-left: 60px;
}

.news-img {
  padding-right: 60px;
  border-right: 1px solid var(--border-color);
}

.news-img img {
  width: 97px;
}

.newsletter_wrapper {
  display: flex;
  align-items: center;
}

.news_input input:focus,
.news_input input {
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid var(--border-color);
  border-radius: 0;
  color: var(--white);
  padding: 10px !important;
  height: calc(3rem + 2px) !important;
}

.news_input input:focus {
  box-shadow: none;
}

.news_input label {
  color: var(--white);
  font-size: 14px;
  line-height: 20px;
  font-family: "Aspekta";
}

.send-btn {
  background-color: transparent;
  border: 0;
}

.news_input .form-floating > .form-control:focus ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-22px) translateX(6px);
}

.news_input {
  position: relative;
}

.news_input .send-btn {
  position: absolute;
  right: 10px;
  bottom: 10px;
}

.news_input .send-btn img {
  width: 22px;
  height: 22px;
}

/*************************** newsletter_sec css end ***************************/
/*************************** footer_sec css start ***************************/

.footer_sec {
  background-color: var(--white);
  padding: 60px 0 70px;
  position: relative;
  z-index: 9;
}

.footer-logo img {
  width: 168px;
}

.footer_txt p {
  margin: 20px 0 30px;
  max-width: 360px;
}

.social-icon ul {
  padding: 0;
  list-style: none;
  display: flex;
  gap: 20px;
}

.social-icon ul li a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--red-gradiant);
  text-decoration: none;
}

.social-icon ul li a i {
  color: var(--white);
}

.footer_menu h5 {
  margin-bottom: 20px;
  font-weight: 600;
}

.footer_menu ul {
  padding: 0;
  list-style: none;
}

.footer_menu ul li {
  margin-bottom: 10px;
}

.footer_menu ul li:last-child {
  margin-bottom: 0;
}

.footer_menu ul li a {
  text-decoration: none;
  color: var(--grey);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: "Aspekta";
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  transition: 0.5s;
}

.footer_menu ul li a:hover {
  color: var(--red);
  transition: 0.5s;
}

.footer_menu ul li a img {
  margin-right: 16px;
}

.footer_contect ul li {
  display: flex;
  align-items: flex-start;
  gap: 17px;
  margin-bottom: 25px;
}

.footer_contect ul li img {
  margin-top: 5px;
}

/*************************** footer_sec css end ***************************/
/*************************** footer_bottom_sec css start ***************************/

.footer_bottom_sec {
  background-color: var(--dark-grey);
  padding: 18px 0;
  position: relative;
  z-index: 9;
}

.footer_bottom_txt p {
  text-align: center;
  color: var(--white);
  margin: 0;
  letter-spacing: 1px;
}

/*************************** footer_bottom_sec css end ***************************/
/*************************** inner_banner css Start ***************************/

.inner_banner {
  background-image: url(../Images/about-us/inner-banner-img.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.banner_text {
  max-width: 800px;
}

.banner_text h1 {
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--black);
}

.banner_text img {
  width: 54px;
  height: 54px;
  margin-bottom: 50px;
}

/*************************** inner_banner css end ***************************/
/*************************** left-right-section css start ***************************/

.left-right-section {
  background-color: var(--white);
}

.left_right_txt {
  max-width: 730px;
  margin: 0 auto;
  padding: 30px;
}

.left_right_txt h2 {
  margin-bottom: 20px;
  color: var(--black);
}

.left_right_txt img {
  margin-bottom: 50px;
  width: 54px;
  height: 54px;
}

.left_img img {
  object-fit: cover;
}

/*************************** left-right-section css end ***************************/
/*************************** milestone_section css start ***************************/

.milestone_section {
  background-color: var(--white);
  padding: 140px 0 80px;
  z-index: 3;
  position: relative;
}

.milestone_head h2 {
  margin-bottom: 60px;
  color: var(--black);
}

.milestone_inner {
  /* max-width: 1100px; */
  margin-bottom: 80px;
  position: relative;
}

.milestone_inner::after {
  content: "";
  position: absolute;
  bottom: -170px;
  left: 310px;
  width: 2px;
  height: 100%;
  background-color: var(--dark-red);
  z-index: -1;
}

.milestone_inner:last-child:after {
  display: none;
}

.milestone_inner:last-child {
  margin-bottom: 0;
}

.milestone_inner:nth-child(even) {
  padding-left: 200px;
}

.milestone_img img {
  width: 380px;
  height: 380px;
}

.milestone_text h3 {
  color: var(--dark-red);
  font-weight: 800;
  margin-bottom: 10px;
}

.milestone_details_wrap {
  display: flex;
  align-items: center;
}

.milestone_text {
  padding: 50px 0 50px 50px;
}

.milestone_text p {
  color: var(--dark-grey);
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  max-width: 720px;
}

.milestone_text p strong {
  font-weight: 600;
}

/* .milestone_wrapper {
    padding-right: 270px;
} */

.milestone_wrapper {
  padding-left: 150px;
}

/*************************** milestone_section css end ***************************/
/*************************** milestone_section css end ***************************/

.milestone_banner .professional_wrap img {
  opacity: 1;
  position: relative;
}

.milestone_banner .professional_wrap:hover img {
  z-index: inherit;
}

.milestone_banner .team_details {
  opacity: 1;
  visibility: visible;
}

/*************************** milestone_section css end ***************************/
/*************************** mission_section css start ***************************/

.mission_section {
  background-color: var(--dark-red);
  z-index: 4;
  position: relative;
  padding: 100px 0 250px;
}

.mission_left p {
  color: var(--white);
  font-size: 20px;
  line-height: 30px;
  font-weight: 300;
}

.mission_left h2 {
  color: var(--white);
}

.diamond_img img {
  width: 54px;
  height: 54px;
  margin-bottom: 50px;
  filter: invert(1) brightness(10);
}

.mission_img {
  margin-top: 55px;
  margin-bottom: -520px;
}

/*************************** mission_section css end ***************************/
/*************************** mission_description css start ***************************/

.mission_description {
  background-color: var(--white);
  position: relative;
  z-index: 3;
  padding: 70px 0 140px;
}

.mission_description_txt p {
  margin: 0;
  font-size: 20px;
  line-height: 30px;
}

.sustain_banner_text {
  text-align: center;
}

.sustain_banner_text h1 {
  color: var(--white);
  margin-bottom: 50px;
}

.sustain_banner_text p {
  color: var(--white);
  font-size: 20px;
  line-height: 32px;
  font-weight: 300;
  text-transform: capitalize;
  padding: 0 30px;
}

/*************************** mission_description css end ***************************/
/*************************** sustainblity_banner css start ***************************/

.sustainblity_banner {
  background-image: url(../Images/about-us/sustainblitie_banner.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/*************************** sustainblity_banner css end ***************************/
/*************************** news_banner css start ***************************/

.news_banner {
  background-color: #fafafa;
  background-image: none;
}

.news_banner .banner_text {
  max-width: 100%;
}

.banner-right-img img {
  width: 100%;
}

.banner-right-img.max_img {
    max-width: 400px;
    margin: 0 auto;
}

/*************************** news_banner css end ***************************/
/*************************** tab_section css start ***************************/

.tab_section {
  background-color: var(--white);
  position: relative;
  z-index: 3;
  padding: 0 0 80px;
}

/* .tabs_wrapper{
    display: flex;
}

.tabs_heading{
    width: 50%;
} */

.tabs_heading ul {
  border: 0;
  flex-direction: column;
}

.tabs_heading ul li .nav-link {
  width: 100%;
  text-align: start;
  border: 0;
  margin: 56px 0;
  padding: 0;
  transition: 0.5s;
}

.tabs_heading ul li .nav-link:focus-visible {
  border: 0;
  outline: none;
}

.tabs_heading ul li {
  border-bottom: 1px solid #dedede;
}

.tabs_heading ul li:last-child {
  border-bottom: 0;
}

.date_box {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.date_box h5 {
  margin: 0;
  font-size: 24px;
  line-height: 28px;
  color: var(--black);
}

.date_box h6 {
  margin: 0;
  font-size: 18px;
  line-height: 18px;
  font-weight: 500;
  color: #d6d6d6;
  font-family: "Aspekta";
}

.tab_inner_heading h4 {
  font-size: 32px;
  line-height: 40px;
  font-family: "Aspekta";
  color: var(--black);
  font-weight: 500;
  margin: 0;
}

.tabs_inner_wrapper {
  padding: 0 0 0 60px;
  position: relative;
}

.tabs_inner_wrapper::after {
  content: "\f178";
  position: absolute;
  top: 5px;
  left: 10px;
  width: 40px;
  height: 30px;
  font-size: 30px;
  line-height: 29px;
  color: #d6d6d6;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  /* background: var(--red-gradiant);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
  transform: rotate(45deg);
  transition: 0.5s;
}

.tabs_heading ul li .nav-link.active .tabs_inner_wrapper::after {
  background: var(--red-gradiant);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: rotate(0);
  transition: 0.5s;
}

/* .tabs_details{
    width: 50%;
} */

.tabs_heading {
    padding-right: 70px;
    max-width: 780px;
    margin-left: auto;
}

.news_details {
  padding: 24px;
  width: 100%;
  box-shadow: 0px 4px 20px 0px #00000014;
}

/*.tab_section .container {
  max-width: 100%;
  padding: 0;
}*/

.news_img img {
  width: 100%;
}

/*.tabs_details {
    margin-right: -150px;
}*/

.news_details p {
  max-width: 760px;
  margin-bottom: 20px;
  color: var(--black);
  font-weight: 250;
  letter-spacing: 1px;
}

.news_details h5 {
  font-size: 24px;
  line-height: 28px;
  font-weight: 500;
  font-family: "Aspekta";
  margin-bottom: 10px;
}

.profile_img img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.profile_name {
  margin-left: 12px;
}

.profile_name h6 {
  font-size: 16px;
  line-height: 28px;
  font-weight: 500;
  font-family: "Aspekta";
  color: var(--black);
  margin-bottom: 2px;
}

.profile_name span {
  font-size: 14px;
  line-height: 20px;
  font-weight: 250;
  font-family: "Aspekta";
  color: var(--black);
  letter-spacing: 1px;
}

.news_profile {
  display: flex;
}

/*************************** tab_section css end ***************************/
/*************************** innovation_banner css start ***************************/

.innovation_banner {
  /* background-image: url(../Images/innovation-banner.jpg); */
  background: url(../Images/innovation-banner.jpg), linear-gradient(0deg, #f2f2f4, #f6f6f6);
  background-position: center;
  background-color: #f6f6f6;
  background-size: contain;
  background-repeat: no-repeat;
}

.left_right_txt h5 {
  font-family: "Aspekta";
  color: var(--black);
  margin-bottom: 10px;
}

.left_right_txt p {
  color: var(--dark-grey);
  letter-spacing: 0.8px;
}

.left_right_txt p:last-child{
    margin-bottom: 0;
}

.left_right_txt ul {
  margin-bottom: 0;
  list-style: auto;
  padding-left: 20px;
  font-family: "Aspekta";
  color: var(--dark-grey);
}

.left_right_txt ul li {
  letter-spacing: 0.9px;
    font-size: 16px;
    line-height: 24px;
}

/*************************** innovation_banner css end ***************************/
/*************************** loos-diamond_banner css start ***************************/

.loos-diamond_banner {
  /* background-image: url(../Images/loose-diamond-banner.jpg); */
  background: url(../Images/loose-diamond-banner.jpg),
    linear-gradient(271deg, #dee4e8 0%, #e5ebf5 21.02%, #f3f8fc 36.08%, #f4f9fd 76.16%, #f3f9fd 100%);
  background-position-y: top;
  background-size: contain;
  background-repeat: no-repeat;
}

/*************************** loos-diamond_banner css end ***************************/
/*************************** Labgrown-diamond_banner css start ***************************/

.Labgrown-diamond_banner {
  background-color: #f5f5f5;
}

.why_choose_banner {
  background-color: #f6f6f6;
}

.our_promise_banner {
  background-color: #f6f4f5;
}

/*************************** Labgrown-diamond_banner css end ***************************/
/*************************** certified_section css start ***************************/

.certified_section {
  background-image: url(../Images/certified-bg.jpg);
  padding: 210px 0 270px;
  position: relative;
  z-index: 3;
}

.certified_text h2 {
  color: var(--white);
  margin-bottom: 10px;
}

.certified_text p {
  color: var(--white);
  margin-bottom: 40px;
}

.certified_text img {
  width: 54px;
  height: 54px;
  margin-bottom: 50px;
  filter: invert(3) brightness(10);
}

.certified_text ul {
  padding-left: 30px;
}

.certified_text li {
  color: var(--white);
  font-family: "Aspekta";
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  letter-spacing: 0.8px;
}

/*************************** certified_section css end ***************************/
/*************************** ceritifed_description css start ***************************/

.ceritifed_description {
  padding: 45px 0 125px;
  background-color: var(--white);
  position: relative;
  z-index: 3;
}

.certified_logo_wrapper {
  background-color: #f5f5f5;
  padding: 60px 50px;
  display: flex;
  align-items: center;
  gap: 50px;
  justify-content: space-between;
  margin-top: -190px;
}

.certified_logo_wrapper img {
  width: 100%;
}

.certified_logo_wrapper .certified-logo {
  width: 180px;
  height: 180px;
}

/*************************** ceritifed_description css end ***************************/
/*************************** get_in_touch_banner css start ***************************/

.get_in_touch_banner {
  position: relative;
}

/*************************** get_in_touch_banner css start ***************************/
/*************************** map_sec css start ***************************/
.map_sec {
  padding: 30px 0 100px;
}

.contact_box_wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 32px;
  box-shadow: 0px 4px 20px 0px #00000014;
}

.form_group {
  margin: 0 0 20px;
}

.form_control {
  padding: 15px;
  width: 100%;
  border: 1px solid transparent;
  border-bottom: 1px solid var(--border-color);
  background: transparent;
  font-size: 16px;
  line-height: 20px;
    font-weight: 500;
    color: var(--black);
    font-family: "Aspekta";
}

.form_control::placeholder {
  color: var(--black);
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.8px;
}

.form_control:focus {
  border: 1px solid transparent;
  border-bottom: 1px solid var(--border-color);
}

.form_group:last-child {
  margin-top: 32px;
  margin-bottom: 0;
}

/*.location_dot {
  position: absolute;
  padding-left: 25px;
  padding-bottom: 10px;
}*/

.location_dot::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid var(--red);
  border-radius: 50%;
}

.location_dot::before {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 5px;
  width: 10px;
  height: 10px;
  background-color: var(--red);
  border-radius: 50%;
}

.location_dot h6 {
  font-family: "Aspekta";
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  color: var(--white);
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 0;
  border-radius: 20px 20px 20px 0;
}

.map_img_wrap {
    position: relative;
    max-width: 770px;
    margin: 0 auto;
}

.location_dot {
  position: absolute;
    top: 120px;
    left: 83px;
  padding-left: 25px;
  padding-bottom: 10px;
}

.hover_box {
  padding: 10px 12px;
  background-color: #efefef;
  display: flex;
  align-items: center;
  /* width: 190px; */
  position: absolute;
  bottom: 0;
  left: 10px;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}

.hover_box.show {
  opacity: 1;
  visibility: visible;
  transition: 0.5s;
}

.hover_logo {
  width: 40px;
  height: 40px;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hover_logo img {
  width: 26px;
}

.hover_txt {
  margin-left: 6px;
}

.hover_txt h5 {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: var(--black);
  margin: 0;
  font-family: "Aspekta";
}

.hover_txt h6 {
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  color: var(--black);
  margin: 0;
  font-family: "Aspekta";
}

/*************************** map_sec css start ***************************/
/*************************** privacy_section css start ***************************/

.privacy_section {
  padding: 30px 0 80px;
}

.priavcy_heading h2 {
  text-transform: uppercase;
  text-align: center;
  font-weight: 400;
  color: var(--black);
}

.priavay_details h5 {
  font-family: "Aspekta";
  margin-bottom: 5px;
  margin-top: 45px;
  font-size: 24px;
  line-height: 34px;
  color: var(--black);
}

.priavay_details p {
  font-size: 18px;
  line-height: 27px;
  color: var(--dark-grey);
  margin: 0;
}

/*************************** privacy_section css end ***************************/
/*************************** commitment_section css start ***************************/

.commitment_section {
  position: relative;
  background-color: var(--white);
  z-index: 3;
  padding: 80px 0;
}

.common_heading h3 {
  text-transform: uppercase;
  text-align: center;
  font-size: 48px;
  line-height: 58px;
  margin-bottom: 50px;
}

.commitment_box{
    border: 1px solid #DBDBDB;
    width: 50%;
    padding: 40px
}

.commitment_box p{
    margin: 0;
    color: var(--light-grey)
}

.commitment_heading{
    display: flex;
    gap: 12px;
    align-items: center;
  margin-bottom: 12px;
}

.commitment_wrapper {
    display: flex;
    flex-wrap: wrap;
}

.commitment_heading img{
    width: 40px;
    height: 40px;
}

.commitment_heading h5{
    margin: 0;
    font-size: 28px;
    line-height: 36px;
    text-transform: capitalize;
}

/*************************** commitment_section css end ***************************/
/*************************** recent_blog_sec css start ***************************/

.recent_blog_sec .common_heading {
  margin-bottom: 80px;
}

.blog_box_Wrap {
  box-shadow: 0px 4px 20px 0px #0000000f;
}

.blog_box_img_wrap {
  height: 340px;
  position: relative;
  overflow: hidden;
}

.blog_box_img_wrap:hover img {
  transform: scale(1.1);
  transition: 0.5s ease;
}

.blog_box_img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.blog_box_content_wrap {
  padding: 32px 16px 20px;
}

.blog_box_content_wrap h6,
.blog_box_content_wrap a {
  font-size: 20px;
  line-height: 30px;
  font-family: "Aspekta";
}

.blog_box_content_wrap p {
  color: var(--light-grey);
}

.blog_box_content_wrap a {
  background: -webkit-linear-gradient(180deg, #95141d 0%, #dd000f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.blog_box_content_wrap a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: -webkit-linear-gradient(180deg, #95141d 0%, #dd000f 100%);
}

.date_wrap {
  padding: 8px;
  background: var(--white);
  position: absolute;
  right: 10px;
  top: 10px;
}

.date_wrap ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.date_wrap ul li {
  font-family: "Aspekta";
  padding: 5px 0;
  font-size: 14px;
  line-height: 18px;
  position: relative;
}

.date_wrap ul li::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 15px;
  height: 1px;
  background: var(--black);
  transform: translate(-50%, 0);
}

.date_wrap ul li:last-child::after{
    display: none;
}

/*************************** recent_blog_sec css end ***************************/
/*************************** force_scrolling css start ***************************/

.force_scrolling {
    display: block;
    padding: 80px 0;
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 3;
    height: 100vh;
}

.force_scrolling .slide4 {
  background-color: var(--white);
}

.force_scrolling .slide4 > div {
  background-image: none;
}

.force_scrolling .common_heading {
  z-index: 333;
  position: relative;
}

.force_right_wrapper {
  box-shadow: 0px 4px 12px 0px #00000014;
  padding: 40px;
  height: 100%;
  margin-left: 50px;
}

.force_right_wrapper.force_left_wrapper{
  margin-left: 0;
  margin-right: 50px;
}

.force_right_head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.force_right_head img {
  width: 54px;
  height: 54px;
}

.force_right_list {
  margin-top: 65px;
}

.force_right_list ul {
  padding-left: 30px;
  list-style: auto;
  font-family: "Aspekta";
}

.force_right_list p,
.force_right_list ul li {
  font-size: 20px;
  line-height: 30px;
  color: var(--black);
  font-weight: 500;
  margin: 0 0 5px;
}

.force_right_head h3{
    margin: 0;
    font-weight: 400;
}

/*************************** force_scrolling css end ***************************/
/*************************** blog_details_section css start ***************************/

.blog_details_section{
    padding: 30px 0 80px;
}

.blog_details_inner{
    max-width: 1200px;
    margin: 0 auto;
}

.back_blog_btn {
    background: var(--red-gradiant);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 32px;
    line-height: 40px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 20px;
}

.back_blog_btn img{
    width: 15px;
    height: 30px;
}

.back_to_blog_btn {
    margin-bottom: 60px;
}

.blog_details_head{
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.blog_details_head img{
    width: 32px;
    height: 32px;
}

.blog_details_head h5{
    margin: 0;
    font-size: 28px;
    line-height: 36px;
}

.blog_sub_details h6{
    margin-bottom: 12px;
    font-size: 24px;
    line-height: 34px;
    font-weight: 500;
    font-family: "Aspekta";
}

.blog_sub_details p{
    margin: 0;
    color: var(--dark-grey);
}

.blog_sub_details {
    margin-bottom: 50px;
}

.blog_details_content_wrapper:last-child,
.blog_sub_details:last-child {
    margin-bottom: 0;
}

.blog_details_content_wrapper {
    margin-bottom: 55px;
}

.blog_recent{
    padding-top: 80px;
}

.blog_user_wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.blog_user_img img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.blog_user_details h5{
    margin-bottom: 8px;
  font-size: 24px;
  line-height: 34px;
  font-weight: 500;
  font-family: "Aspekta";
}

.blog_user_details h6{
  font-size: 18px;
  line-height: 27px;
  font-weight: 400;
  font-family: "Aspekta";
  margin: 0;
    color: var(--dark-grey);
}

/*************************** blog_details_section css end ***************************/
/*************************** Select2 css start ***************************/

.select2-container .select2-selection--single {
  width: 100%;
  border: 1px solid var(--input-bg);
  background-color: var(--input-bg);
  font-family: "Aspekta";
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 14px 26px;
  color: var(--black);
  height: auto;
}

.select2-container{
  width: 100% !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 50%;
  right: 16px;
  transform: translate(0, -50%);
}

.select2-container .select2-selection--single .select2-selection__rendered{
  padding: 0;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable,
.select2-container--default .select2-results__option--selected {
  background-color: var(--red);
  color: var(--white);
}

.select2-results__option--selectable {
  font-family: "Aspekta";
}

.select2-dropdown{
  border: 1px solid var(--border-color) !important;
  border-radius: 0;
}

/*************************** Select2 css end ***************************/
