/* GLOBAL_CSS_CHANGES_START_FROM_HERE */
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
ul,
li,
a,
.btn-default,
textarea,
label {
  margin: 0;
  padding: 0;
}
li {
  list-style: none;
}
a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
a:focus {
  text-decoration: none;
}
button,
input,
textarea,
select {
  outline: none !important;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
select.minimal {
  background-image: url(../images/selectArrow.png);
  background-position: calc(100% - 15px) calc(1em + 15px);
  background-repeat: no-repeat;
}
select.minimal1 {
  background-image: url(../images/selectArrow1.png);
  background-position: calc(100% - 15px) calc(1em + 5px);
  background-repeat: no-repeat;
}
/* GLOBAL_CSS_CHANGES_END_HERE */

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Chrome, Safari, Edge, Opera */

/* GLOBAL_VAR_CSS_START_FROM_HERE */
:root {
  --white: #ffffff;
  --black: #000000;
  --main-color: #dd541f;
  --futuraCyrillicHeavy: "FuturaCyrillicHeavy";
  --futuraCyrillicMedium: "FuturaCyrillicMedium";
  --futuraMediumBT: "FuturaMediumBT";
  --gilroy-extraBold: "Gilroy-ExtraBold";
  --gilroy-light: "Gilroy-Light";
  --inter-bold: "Inter-Bold";
  --inter-light: "Inter-Light";
  --inter-medium: "Inter-Medium";
  --inter-regular: "Inter-Regular";
  --inter-semiBold: "Inter-SemiBold";
}
/* GLOBAL_VAR_CSS_CSS_HERE */

/* FONT_CSS_START_FROM_HERE */
@font-face {
  font-family: "FuturaCyrillicHeavy";
  src: url("../webfonts/FuturaCyrillicHeavy.ttf");
  font-weight: regular;
  font-style: normal;
}
@font-face {
  font-family: "FuturaCyrillicMedium";
  src: url("../webfonts/FuturaCyrillicMedium.ttf");
  font-weight: regular;
  font-style: normal;
}
@font-face {
  font-family: "FuturaMediumBT";
  src: url("../webfonts/FuturaMediumBT.ttf");
  font-weight: regular;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy-ExtraBold";
  src: url("../webfonts/Gilroy-ExtraBold.ttf");
  font-weight: regular;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy-Light";
  src: url("../webfonts/Gilroy-Light.ttf");
  font-weight: regular;
  font-style: normal;
}
@font-face {
  font-family: "Inter-Bold";
  src: url("../webfonts/Inter-Bold.ttf");
  font-weight: regular;
  font-style: normal;
}
@font-face {
  font-family: "Inter-Light";
  src: url("../webfonts/Inter-Light.ttf");
  font-weight: regular;
  font-style: normal;
}
@font-face {
  font-family: "Inter-Medium";
  src: url("../webfonts/Inter-Medium.ttf");
  font-weight: regular;
  font-style: normal;
}
@font-face {
  font-family: "Inter-Regular";
  src: url("../webfonts/Inter-Regular.ttf");
  font-weight: regular;
  font-style: normal;
}
@font-face {
  font-family: "Inter-SemiBold";
  src: url("../webfonts/Inter-SemiBold.ttf");
  font-weight: regular;
  font-style: normal;
}
/* FONT_CSS_END_HERE */

/* SCROLL-CSS */
body::-webkit-scrollbar {
  width: 5px;
}
body::-webkit-scrollbar-track {
  background: var(--white);
}
body::-webkit-scrollbar-thumb {
  background-color: var(--black);
}
/* SCROLL-CSS */

/* COMMON-CSS */
.common_light_btn {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0px 0px 0px 30px;
  width: 200px;
  height: 55px;
  background-color: var(--white);
  border: none;
  border-radius: 36px;
  font-size: 12px;
  font-family: var(--inter-semiBold) !important;
  color: var(--black);
  z-index: 3;
  transition: 0.5s ease;
  position: relative;
}
.common_light_btn:hover {
  color: var(--white) !important;
}
.common_light_btn i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 7px;
  color: var(--white);
  transition: 0.5s ease;
}
.common_light_btn::after {
  content: "";
  position: absolute;
  width: 44px;
  height: 44px;
  background-color: var(--main-color);
  border-radius: 50px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 7px;
  z-index: -1;
  transition: width 0.25s ease, right 0.25s ease, height 0.1s ease,
    top 0.1s ease, transform 0.1s ease;
}
.common_light_btn:hover::after {
  width: 100%;
  right: 0;
  height: 100%;
  top: 0;
  transform: translateY(0);
}
.common_dark_btn {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0px 0px 0px 30px;
  width: 200px;
  height: 55px;
  background-color: var(--black);
  border: none;
  border-radius: 36px;
  font-size: 12px;
  font-family: var(--inter-semiBold) !important;
  color: var(--white);
  z-index: 3;
  transition: 0.5s ease;
  position: relative;
}
.common_dark_btn:hover {
  color: var(--white) !important;
}
.common_dark_btn i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 7px;
  color: var(--white);
  transition: 0.5s ease;
}
.common_dark_btn::after {
  content: "";
  position: absolute;
  width: 44px;
  height: 44px;
  background-color: var(--main-color);
  border-radius: 50px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 7px;
  z-index: -1;
  transition: width 0.25s ease, right 0.25s ease, height 0.1s ease,
    top 0.1s ease, transform 0.1s ease;
}
.common_dark_btn:hover::after {
  width: 100%;
  right: 0;
  height: 100%;
  top: 0;
  transform: translateY(0);
}
.main_heading {
  font-size: 60px;
  font-family: var(--futuraCyrillicHeavy);
  color: var(--black);
  line-height: 1;
  text-transform: capitalize;
}
.main_heading span {
  color: var(--main-color);
}
.desc {
  font-size: 16px;
  font-family: var(--inter-regular);
  background: linear-gradient(
    92deg,
    rgba(65, 65, 65, 0.66) 0.26%,
    rgba(27, 27, 27, 0.66) 104.97%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* COMMON-CSS */

/* LOADER-CSS */
/* LOADER-CSS */

/* HEADER-CSS */
.header-mob-flex {
  display: none;
}
.header_wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 0px;
  z-index: 999999999;
}
.header_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header_nav ul {
  display: flex;
  align-items: center;
  gap: 40px;
}
.header_nav ul li a {
  font-size: 16px;
  font-family: var(--inter-bold);
  color: var(--white);
  position: relative;
  transition: 0.25s ease;
}
.header_nav ul li a:hover {
  color: var(--main-color);
}
.header_nav ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background-color: var(--main-color);
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.25s ease;
  border-radius: 50px;
}
.header_nav ul li:last-child a {
  font-size: 12px;
  color: var(--black);
}
.header_nav ul li:last-child a::before {
  display: none;
}
.header_nav ul li a:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* HEADER-CSS */

/* INDEX-CSS */
.index_banner_wrapper {
  position: relative;
  padding: 150px 0px 100px 0px;
  height: 95vh;
  z-index: 2;
  display: flex;
  align-items: center;
}
.index_banner_wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgb(0 0 0 / 66%) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: -1;
}
.index_banner_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.index_banner_bg img,
.index_banner_bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index_banner_round {
  position: absolute;
  bottom: -92px;
  left: 50%;
  transform: translateX(-50%);
  filter: drop-shadow(0px 1.838px 18.38px rgba(0, 0, 0, 0.16));
  animation: rotate 7s infinite linear;
}
.index_banner_wrap_text h6 {
  font-size: 70px;
  font-family: var(--futuraCyrillicHeavy);
  color: var(--white);
  line-height: 1;
  margin: 0px 0px 10px 0px;
}
.index_banner_wrap_text p {
  font-size: 18px;
  font-family: var(--inter-medium);
  color: var(--white);
  margin: 0px 0px 30px 0px;
}
.index_banner_wrap_btn{
    display: flex;
    align-items: center;
    gap: 20px;
}
.long_btn {
    width: 230px;
}
.index_first_wrapper {
    padding: 160px 0px 100px 0px;
    background-image: url(../images/sections_bg.png);
    background-position: center;
    background-size: cover;
}
.index_first_wrap_img_box {
  display: flex;
  gap: 20px;
}
.index_first_wrap_img_box:hover img {
  transform: scale(1.05);
}
.index_first_wrap_img_2 {
  transform: translateY(-60px);
}
.index_first_wrap_img {
    width: 100%;
    height: 450px;
    overflow: hidden;
}
.index_first_wrap_img img,
.index_first_wrap_img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: 0.5s ease;
}
.index_first_wrap_text .main_heading {
  margin: 0px 0px 25px 0px;
}
.index_first_wrap_text .desc {
  margin: 0px 0px 25px 0px;
}
.index_second_wrapper {
  padding: 100px 0px;
  background-color: var(--black);
  position: relative;
  z-index: 3;
}
.index_second_wrap_top_glow,
.index_second_wrap_bottom_glow {
  position: absolute;
  z-index: -1;
}
.index_second_wrap_top_glow {
  top: 0;
  right: 0;
}
.index_second_wrap_bottom_glow {
  bottom: 0;
  left: 0;
}
.index_second_wrap_flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 0px 0px 50px 0px;
}
.index_second_wrap_text .main_heading {
  color: var(--white);
  max-width: 700px;
}
.sec_two_slider {
  padding: 0px 70px 110px 70px;
}
.sec_two_slider .swiper-wrapper{
    padding-bottom: 20px;
}
.sec_two_slider .swiper-slide:nth-child(even) {
  transform: translateY(70px);
}
.sec_two_slider .swiper-pagination {
    bottom: 0px;
}
.sec_two_slider .swiper-pagination-bullet {
    background-color: var(--white);   
}
.index_second_wrap_box_img {
  width: 100%;
  height: 440px;
  margin: 0px 0px 20px 0px;
  overflow: hidden;
}
.index_second_wrap_box_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}
.index_second_wrap_box:hover .index_second_wrap_box_img img {
  transform: scale(1.1);
}
.index_second_wrap_box_img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}
.index_second_wrap_box:hover .index_second_wrap_box_img video {
  transform: scale(1.1);
}
.sec_two_slider1 .swiper-slide:nth-child(even) {
  transform: translateY(70px);
}
.index_second_wrap_box_text h6 {
  font-size: 30px;
  font-family: var(--futuraMediumBT);
  color: var(--white);
  margin: 0px 0px 10px 0px;
}
.index_second_wrap_box_text p {
  font-size: 16px;
  font-family: var(--inter-regular);
  color: var(--white);
  margin: 0px 0px 30px 0px;
}
.index_second_wrap_box_btn a {
  font-size: 16px;
  font-family: var(--inter-medium);
  color: var(--white);
  line-height: 1;
}
.index_second_wrap_box_btn a i {
  color: var(--main-color);
  font-size: 14px;
  margin: 0px 0px 0px 5px;
}
.index_third_wrapper {
  padding: 100px 0px;
  background-image: url(../images/sections_bg.png);
  background-position: center;
  background-size: cover;
}
.index_third_wrap_text {
  text-align: center;
  margin: 0px 0px 50px 0px;
}
.index_third_wrap_box {
  border: 1px solid rgba(209, 209, 209, 0.42);
  background-color: #fff;
  padding: 40px 30px;
}
.index_third_wrap_box_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 5px;
  margin: 0px 0px 20px 0px;
}
.index_third_wrap_box_stars ul {
  display: flex;
  align-items: center;
  gap: 2px;
}
.index_third_wrap_box_stars ul li i {
  color: #ecbd00;
}
.index_third_wrap_box_text p {
  font-size: 16px;
  font-family: var(--inter-regular);
  color: #414141;
  margin: 0px 0px 30px 0px;
}
.index_third_wrap_box_text p:last-child {
  margin: 0;
}
.index_third_wrap_box_author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0px 5px;
  margin: 10px 0px 0px 0px;
}
.sec_three_slider_btn ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 70px 0px 0px 0px;
}
.sec_three_slider_btn ul li i {
  font-size: 40px;
  color: var(--black);
  transition: 0.5s ease;
}
.sec_three_slider_btn .swiper-button-disabled {
  color: #00000033;
}
.index_fourth_wrapper {
  padding: 100px 0px;
  background-color: var(--black);
  position: relative;
}
.index_fourth_wrap_text {
  margin: 0px 0px 50px 0px;
}
.index_fourth_wrap_text .main_heading {
  color: var(--white);
  margin: 0px 0px 20px 0px;
}
.index_fourth_wrap_text .desc {
  color: var(--white);
  -webkit-text-fill-color: var(--white);
  background: transparent;
  line-height: 30px;
  margin: 0px 0px 10px 0px;
}
.index_fourth_wrap_text .desc:last-child {
  margin: 0;
}
.index_fourth_wrap_progress_bar_box {
  margin: 0px 0px 30px 0px;
}
.index_fourth_wrap_progress_bar_box:last-child {
  margin: 0;
}
.index_fourth_wrap_progress_bar_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.index_fourth_wrap_progress_bar_flex h6 {
  font-size: 30px;
  font-family: var(--futuraCyrillicMedium);
  color: var(--white);
}
.index_fourth_wrap_progress_bar_flex p {
  font-size: 30px;
  font-family: var(--futuraCyrillicMedium);
  color: var(--white);
}
.index_fourth_wrap_progress_bar {
  width: 100%;
  height: 7px;
  background-color: #d9d9d9;
}
.index_fourth_wrap_progress_bar span {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  background-color: var(--main-color);
}
.index_fourth_wrap_form {
  background-color: var(--white);
  padding: 50px 30px;
  width: 90%;
  margin: 0 0 0 auto;
}
.index_fourth_wrap_form_text h6 {
  font-size: 35px;
  font-family: var(--futuraCyrillicHeavy);
  color: var(--black);
  text-align: center;
  margin: 0px 0px 35px 0px;
}
.index_fourth_wrap_form_input input {
  width: 100%;
  height: 65px;
  border-radius: 60px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  padding: 0px 25px;
  font-size: 14px;
  font-family: var(--inter-light);
  color: var(--black);
  margin: 0px 0px 20px 0px;
  position: relative;
}
.index_fourth_wrap_form_input input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
}
.index_fourth_wrap_form_input select {
  width: 100%;
  height: 55px;
  border-radius: 60px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  padding: 0px 25px;
  font-size: 14px;
  font-family: var(--inter-light);
  color: var(--black);
  margin: 0px 0px 20px 0px;
}
.index_fourth_wrap_form_input input::placeholder {
  color: #11111180;
}
.index_fourth_wrap_form_input textarea {
  width: 100%;
  height: 165px;
  border-radius: 20px;
  resize: none;
  border: 1px solid rgba(17, 17, 17, 0.16);
  padding: 25px 25px;
  font-size: 14px;
  font-family: var(--inter-light);
  color: var(--black);
  margin: 0px 0px 40px 0px;
}
.index_fourth_wrap_form_input textarea::placeholder {
  color: #11111180;
}
.index_fourth_wrap_form_btn {
  display: flex;
  justify-content: center;
  align-items: center;
}
.index_fifth_wrapper {
  padding: 100px 0px;
  background-image: url(../images/sections_bg.png);
  background-position: center;
  background-size: cover;
}
.index_fifth_wrap_text {
  text-align: center;
  margin: 0px 0px 50px 0px;
}
.index_fifth_wrap_box {
  position: relative;
}
.index_fifth_wrap_flex {
  display: flex;
  gap: 30px;
}
.index_fifth_wrap_box_1,
.index_fifth_wrap_box_3 {
  width: 400px;
}
.index_fifth_wrap_box_1 img, .index_fifth_wrap_box_3 img {
    height: 350px;
}
.index_fifth_wrap_box_2 {
  max-width: calc(100% - 800px);
}
.index_fifth_wrap_box_date_box span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  padding: 0px 20px;
  height: 45px;
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #ffffff90;
  font-size: 16px;
  font-family: var(--futuraCyrillicMedium);
  color: var(--black);
  z-index: 9999;
}
.index_fifth_wrap_box_text {
  text-align: center;
}
.index_fifth_wrap_box_text h6 {
  font-size: 33px;
  font-family: var(--futuraMediumBT);
  color: var(--black);
  margin: 0px 0px 10px 0px;
}
.index_fifth_wrap_box_2 .index_fifth_wrap_box_text h6 {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.index_fifth_wrap_box_2 .index_fifth_wrap_box_text .desc {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.index_fifth_wrap_box_text .desc {
  font-size: 14px;
  margin: 0px 0px 10px 0px;
}
.index_fifth_wrap_box_btn {
  text-align: center;
}
.index_fifth_wrap_box_btn a {
  font-size: 16px;
  font-family: var(--inter-medium);
  color: var(--black);
  line-height: 1;
}
.index_fifth_wrap_box_btn a i {
  color: var(--main-color);
  font-size: 14px;
  margin: 0px 0px 0px 5px;
}
.index_fifth_wrap_box_img {
  width: 100%;
  overflow: hidden;
  margin: 0px 0px 20px 0px;
}
.index_fifth_wrap_box_1 img,
.index_fifth_wrap_box_3 img {
    height: 350px !important;
}
.index_fifth_wrap_box_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}
.index_fifth_wrap_box_img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}
.index_fifth_wrap_box_img:hover img {
  transform: scale(1.1);
}
.index_fifth_wrap_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px 0px 0px 0px;
}
/* INDEX-CSS */

/* INNER-CSS */
/* ABOUTUS-START */
.inner_banner_wrapper {
  height: 60vh;
}
.index_first_wrap_ttext {
  padding: 50px 0px 0px 0px;
  text-align: center;
  background-color: var(--black);
  margin: 0 0 20px 0;
}
.inner_banner_wrap_text h6 {
  font-size: 70px;
  font-family: var(--futuraCyrillicHeavy);
  color: var(--white);
  text-transform: uppercase;
  margin: 0px 0px 10px 0px;
}
.aboutus_first_wrapper {
  padding: 100px 0px 50px 0px;
}
.aboutus_first_wrap_ttext {
  width: 65%;
  margin: 0 auto 20px auto;
  text-align: center;
}
.aboutus_first_wrap_ttext h6 {
  font-size: 50px;
  font-family: var(--futuraCyrillicMedium);
  color: var(--black);
  text-transform: capitalize;
  margin: 0px 0px 10px 0px;
  text-align: center;
}
.aboutus_first_wrap_ttext h6 span {
  color: var(--main-color);
}
.aboutus_first_wrap_main {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.aboutus_first_wrap_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    height: 360px;
    padding: 15px 20px;
}
.aboutus_first_wrap_box_text h6 {
  font-size: 22px;
  font-family: var(--futuraCyrillicMedium);
  color: var(--main-color);
  text-transform: uppercase;
  margin: 0px 0px 10px 0px;
}
.aboutus_first_wrap_box_text p {
  font-size: 18px;
  font-family: var(--inter-light);
  color: #000000a6;
}
.aboutus_second_wrapper {
  padding: 100px 0px;
  background-image: url(../images/sections_bg.png);
  background-position: center;
  background-size: cover;
}
.about_sec_wrap_img {
  width: 90%;
  height: 550px;
  margin: 0 auto;
  overflow: hidden;
}
.about_sec_wrap_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s all;
}
.about_sec_wrap_img:hover img {
  transform: scale(1.1);
}
/* ABOUTUS-END */

/* BLOGS-STSRT */
.blog_first_wrapper {
  padding: 100px 0px 0px 0px;
}
.blog_first_wrap_ttext {
  width: 70%;
  margin: 0px auto 50px auto;
  text-align: center;
}
.blog_first_wrap_ttext h6 {
  font-size: 50px;
  font-family: var(--futuraCyrillicMedium);
  color: var(--black);
  text-transform: capitalize;
  margin: 0px 0px 10px 0px;
}
.blog_first_wrap_ttext h6 span {
  color: var(--main-color);
}
.blog_first_wrap_main {
  background-color: var(--black);
  padding: 50px 0px;
}
.blog_first_wrap_main_ttext h6 {
  font-size: 50px;
  font-family: var(--futuraCyrillicMedium);
  color: var(--white);
  text-transform: capitalize;
  margin: 0px 0px 50px 0px;
  text-align: center;
}
.blog_first_wrap_main_ttext h6 span {
  color: var(--main-color);
}
.blog_first_wrap {
  display: flex;
  align-items: center;
  gap: 50px;
  margin: 0 0 30px 0;
}
.blog_first_wrap_img {
  width: 30%;
  height: 300px;
  overflow: hidden;
}
.blog_first_wrap_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s all;
}
.blog_first_wrap_img:hover img {
  transform: scale(1.1);
}
.blog_first_wrap_text {
  width: 60%;
}
.blog_first_wrap_text h5 {
  font-size: 18px;
  font-family: var(--futuraCyrillicMedium);
  background-color: var(--main-color);
  color: var(--white);
  text-transform: uppercase;
  display: inline-block;
  padding: 10px 20px;
  margin: 0px 0px 40px 0px;
}
.blog_first_wrap_text h6 {
  font-size: 40px;
  font-family: var(--futuraMediumBT);
  color: var(--white);
  text-transform: capitalize;
  margin: 0px 0px 20px 0px;
}
.blog_first_wrap_text h6 span {
  color: var(--main-color);
}
.blog_first_wrap_text p {
  font-size: 20px;
  font-family: var(--futuraCyrillicMedium);
  color: #ffffffad;
}
/* BLOGS-END */

/* SERVICE-START */
.service_first_wrapper {
  padding: 100px 0px 50px 0px;
  background-image: url(../images/sections_bg.png);
  background-position: center;
  background-size: cover;
}
.service_first_wrap_ttext {
  text-align: center;
  width: 65%;
  margin: 0 auto 50px auto;
}
.service_first_wrap_ttext h6 {
  font-size: 50px;
  font-family: var(--futuraCyrillicMedium);
  color: var(--black);
  text-transform: capitalize;
  margin: 0px 0px 10px 0px;
}
.service_first_wrap_ttext h6 span {
  color: var(--main-color);
}
.service_first_wrap_card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.service_first_warp_card_img {
  width: 100%;
  height: 500px;
  overflow: hidden;
  margin: 0px 0px 10px 0px;
}
.service_first_warp_card_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s all;
}
.service_first_warp_card_img:hover img {
  transform: scale(1.1);
}
.service_first_warp_card_text {
    padding: 0px 0px 0px 5px;
    margin: 10px 0px 20px 0px;
    height: 160px;
}
.service_first_warp_card_text h6 {
  font-size: 30px;
  font-family: var(--futuraMediumBT);
  color: var(--main-color);
  margin: 0px 0px 10px 0px;
}
.service_first_warp_card_btn a {
  width: 370px;
  height: 65px;
  font-size: 18px;
}
/* SERVICE-END */

/* CONTACT-START */
.contact_first_wrapper {
  padding: 100px 0px 50px 0px;
  background-image: url(../images/sections_bg.png);
  background-position: center;
  background-size: cover;
}
.contact_first_wrap_ttext {
  width: 65%;
  margin: 0 auto 50px auto;
  text-align: center;
}
.contact_first_wrap_ttext h6 {
  font-size: 50px;
  font-family: var(--futuraCyrillicMedium);
  color: var(--black);
  text-transform: capitalize;
  margin: 0px 0px 10px 0px;
  text-align: center;
}
.contact_first_wrap_ttext h6 span {
  color: var(--main-color);
}
.contact_first_wrap_main {
  width: 80%;
  margin: 0 auto;
}
.contact_first_wrap_box_ttext {
  margin: 0 0 50px 0;
  text-align: center;
}
.contact_first_wrap_box_ttext h6 {
  font-size: 35px;
  font-family: var(--futuraCyrillicMedium);
  color: var(--black);
  text-transform: capitalize;
  display: inline-block;
  margin: 0px 0px 10px 0px;
}
.contact_first_wrap_box {
  width: 80%;
  margin: 0 auto 50px auto;
}
.contact_first_wrap_box_text h6 {
  font-size: 25px;
  font-family: var(--futuraCyrillicMedium);
  color: var(--main-color);
  text-transform: capitalize;
  display: inline-block;
  margin: 0px 0px 20px 0px;
}
.contact_first_wrap_box_text ul {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact_first_wrap_box_text ul li a {
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 30px;
  background-color: var(--white);
  color: var(--black);
  transition: 0.5s all;
}
.contact_first_wrap_box_text ul li a:hover {
  transform: rotate(360deg);
  background-color: var(--main-color);
  color: var(--white);
}
/* CONTACT-END */
/* INNER-CSS */

/* FOOTER-CSS */
.footer_wrapper {
  padding: 100px 0px 0px 0px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  /*background: url(../images/new_banner_bg.webp);*/
  /*background-size: cover;*/
  /*background-position: center;*/
}
.footer_wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--black);
  opacity: 0.6;
  z-index: 1;
}
.footer_logo {
  margin: 0px 0px 30px 0px;
  position: relative;
  z-index: 3;
}
.footer_info_nav ul li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
  font-family: var(--inter-light);
  color: var(--white);
  margin: 0px 0px 25px 0px;
}
.footer_info_nav ul li i {
  font-size: 25px;
}
.footer_info_nav ul li a {
  font-size: 16px;
  font-family: var(--inter-light);
  color: var(--white);
}
.footer_links h6,
.footer_text h6 {
  font-size: 24px;
  font-family: var(--futuraCyrillicHeavy);
  color: var(--white);
  margin: 0px 0px 20px 0px;
}
.footer_links ul {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 15px;
  height: 170px;
}
.footer_links ul li a {
  font-size: 18px;
  font-family: var(--inter-light);
  color: var(--white);
}
.footer_text p {
  font-size: 16px;
  font-family: var(--inter-light);
  color: var(--white);
  width: 85%;
  margin: 0px 0px 20px 0px;
}
.footer_form {
  position: relative;
  z-index: 3;
}
.footer_form input {
  width: 100%;
  height: 65px;
  background-color: transparent;
  border-radius: 60px;
  border: 1px solid #dfe2e9;
  padding: 0px 70px 0px 20px;
  font-size: 14px;
  font-family: var(--inter-light);
  color: var(--white);
}
.footer_form input::placeholder {
  color: #ffffffb2;
}
.footer_form button {
  background-color: transparent;
  border: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  max-width: 70px;
}
.copyright {
  border-top: 1px solid var(--white);
  padding: 20px 0px;
  margin: 100px 0px 0px 0px;
  position: relative;
  z-index: 3;
}
.copyright_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.copyright_text p {
  font-size: 16px;
  font-family: var(--gilroy-light);
  color: var(--white);
}
.copyright_text p span {
  font-family: var(--gilroy-extraBold);
}
.footer_bg_wrap {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: -1;
}
.footer_bg_wrap img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  animation: ScaleUpToDown 5s alternate infinite ease-in;
  transform: scale(1.1);
}
.footer_info_nav {
  position: relative;
  z-index: 3;
}
.footer_links {
  position: relative;
  z-index: 3;
}
.footer_text {
  position: relative;
  z-index: 3;
}
/* FOOTER-CSS */

/* ANIMATIONS */
@keyframes rotate {
  0% {
    transform: translateX(-50%) rotate(0deg);
  }
  50% {
    transform: translateX(-50%) rotate(180deg);
  }
  100% {
    transform: translateX(-50%) rotate(360deg);
  }
}
@keyframes ScaleUpToDown {
  100% {
    transform: scale(1);
  }
}
/* ANIMATIONS */

/*ADDITIONAL CSS*/
.dashboard-main-thead-f {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--black);
  position: fixed;
  z-index: 9;
  top: 0;
  left: 0;
  width: 100%;
}
.dashboard-main-thead-text h6 {
  font-size: 50px;
  font-family: var(--futuraCyrillicHeavy);
  color: #0e0e0e;
  line-height: 1;
}
.dashboard-main-th-userm-f {
  display: flex;
  align-items: center;
  gap: 30px;
}
.dashboard-main-th-user-f {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  position: relative;
  padding: 0px 30px 0px 0px;
}
.dashboard-main-th-user-name p {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--futuraCyrillicHeavy);
  color: var(--white);
}
.dashboard-main-th-user-img {
    width: 60px;
    height: 60px;
}
.dashboard-main-th-user-img img {
  border-radius: 50px;
  overflow: hidden;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.dashboard-main {
  position: relative;
}
.dashboard-side-box {
  position: fixed;
  left: 0px;
  top: 0px;
  background-color: var(--black);
  height: 100vh;
  width: 300px;
  padding: 115px 0px 0px 0px;
}
.dashboard-main-content-box {
  width: calc(100% - 300px);
  margin: 115px 0px 0px 300px;
  padding: 25px;
  background-image: url(../images/sections_bg.png);
  background-position: center;
  background-size: cover;
}
.nav-pills .nav-link {
  border-radius: 0px;
  text-align: start;
  font-family: var(--futuraCyrillicMedium);
  font-size: 16px;
  color: var(--white);
  padding: 15px 20px;
  display: flex;
  align-items: center;
  border-radius: 0px 50px 50px 0px;
}
.nav-pills .nav-link:hover {
  background-color: var(--main-color);
  color: var(--white);
}
.nav-pills .nav-link:hover img {
  filter: brightness(0) invert(1);
}
.nav-pills .nav-link.active img {
  filter: brightness(0) invert(1);
}
.nav-pills .nav-link img {
  margin: 0px 10px 0px 0px;
  filter: brightness(0) invert(1);
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: var(--main-color);
}
.d-main-box1-f {
  background-color: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px;
  transition: 0.4s ease;
  border-radius: 20px;
  cursor: pointer;
}
.d-main-box1-f:hover {
  box-shadow: 4px 4px 11px 0px #00000024;
}
.d-main-content {
  height: 85.22222vh;
}
.d-main-top-box {
  background-color: var(--white);
  padding: 20px;
  margin: 0px 0px 25px 0px;
  border-radius: 20px;
}
.d-main-top-box-text h6 {
  font-family: var(--futuraCyrillicHeavy);
  font-size: 33px;
  color: var(--black);
  margin: 0px 0px 20px 0px;
}
.d-main-box-ico-f {
  display: flex;
  align-items: center;
  gap: 10px;
}
.d-main-box-ico-text h6 {
  font-family: var(--futuraCyrillicHeavy);
  font-size: 30px;
  color: var(--white);
  margin: 0px 0px 5px 0px;
}
.d-main-box-ico-text p {
  font-family: var(--futuraMediumBT);
  font-size: 20px;
  color: var(--white);
}
.d-main-box1-s-select select {
  display: flex;
  align-items: center;
  padding: 0px 10px;
  width: 100%;
  height: 45px;
  font-family: var(--futuraMediumBT);
  font-size: 14px;
  border-radius: 30px;
  background-color: var(--white);
  color: var(--black);
  border: 1px solid #e9e9e9;
}
.d-main-box1-s-select select option {
  color: var(--black);
}
.d-main-box1-s-text p {
  font-family: var(--gilroy-light);
  font-size: 15px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}
.d-main-box1-s-text p i {
  color: #1bb50e;
  font-size: 16px;
}
.d-main-box1-s-select {
  margin: 0px 0px 15px 0px;
}
.d-main-mid-box {
  background-color: var(--white);
  padding: 20px;
  border-radius: 20px;
}
.d-main-mid-box-text-f {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0px 0px 30px 0px;
}
.d-main-mid-select {
  width: 140px;
}
.d-main-mid-select select {
  display: flex;
  align-items: center;
  padding: 0px 10px;
  width: 100%;
  height: 45px;
  font-family: var(--times-new-roman);
  font-size: 14px;
  border-radius: 10px;
  background-color: #fff;
  color: #777777;
  border: 1px solid #e9e9e9;
}
.d-main-mid-box-text h6 {
  font-family: var(--futuraCyrillicHeavy);
  font-size: 33px;
  color: var(--black);
}
.d-main-acc-content {
  background-color: var(--white);
  padding: 40px;
  height: 85.22222vh;
}
.d-main-acc-main-text {
  margin: 0px 0px 20px 0px;
}
.d-main-acc-main-text h6 {
  font-family: var(--futuraCyrillicHeavy);
  font-size: 30px;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 10px;
}
.avatar-upload {
  position: relative;
  margin: 0px 0px 30px 0px;
  overflow: hidden;
}
.avatar-upload .avatar-edit {
  position: absolute;
  left: 17%;
  z-index: 1;
  bottom: 0%;
}
.avatar-upload .avatar-preview {
  width: 110px;
  height: 110px;
  position: relative;
  border-radius: 100%;
}
.avatar-upload .avatar-preview > div {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.avatar-upload .avatar-edit input {
  display: none;
}
.avatar-upload .avatar-edit input + label {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-bottom: 0;
  border-radius: 100%;
  background-color: var(--black);
  border: 1px solid var(--white);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.avatar-upload .avatar-edit input + label:hover {
  background: #f1f1f1;
  border-color: #d6d6d6;
}
.avatar-upload .avatar-edit input + label:hover::after {
  color: var(--black);
}
.avatar-upload .avatar-edit input + label::after {
  content: "\f030";
  font-family: "FontAwesome";
  color: var(--white);
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  text-align: center;
  margin: auto;
  font-size: 15px;
  transition: 0.5s all;
}
.d-main-acc-main-ptexts {
  margin: 0px 0px 20px 0px;
  position: relative;
}
.d-main-acc-main-ptexts h6 {
  font-family: var(--futuraCyrillicHeavy);
  font-size: 14px;
  color: var(--black);
  margin: 0px 0px 5px 0px;
}
.d-main-acc-main-ptexts p {
  font-family: var(--black);
  font-size: 14px;
  color: var(--main-color);
  font-family: var(--gilroy-light);
}
.d-main-acc-main-p-btn {
  display: flex;
  align-items: center;
  gap: 10px;
}
.d-main-acc-main-ptexts input {
  width: 100%;
  height: 65px;
  border-radius: 60px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  padding: 0px 25px;
  font-size: 14px;
  font-family: var(--inter-light);
  color: var(--black);
  margin: 10px 0px 0px 0px;
}
.d-main-acc-main-ptexts input::placeholder {
  color: #11111180;
}

.d-main-acc-main-wrap.edit-none {
  width: 30%;
}
span.toggle-password2 {
  position: absolute;
  right: 16px;
  bottom: 25px;
  font-size: 15px;
  cursor: pointer;
}
span.toggle-password3 {
  position: absolute;
  right: 16px;
  bottom: 25px;
  font-size: 15px;
  cursor: pointer;
}
.edit-none,
.change-none {
  display: none;
}
#back-btn,
#back-btn1 {
  cursor: pointer;
}
.d-main-acc-main-wrap.change-none {
  width: 20%;
}
.navDropNoti {
  background: var(--white);
  display: flex;
  flex-direction: column;
  width: 400px;
  position: absolute;
  top: 40px;
  left: -170px;
  transform: translateX(-50%);
  border-radius: 10px;
  border: 1px solid #eee;
  padding: 10px 0px;
  display: none;
  overflow: hidden;
}
.navDropNoti-head h5 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--times-new-roman);
  font-weight: 700;
  font-size: 18px;
  color: var(--black);
  border-bottom: 1px solid #eee;
  padding: 0px 10px 5px 10px;
}
.navDropNoti-head h5 p {
  color: #bd0c0c;
  background-color: #eeee;
  padding: 5px;
  border-radius: 5px;
  font-size: 14px;
}
.navDropNoti-m-flex {
  display: flex;
  align-items: normal;
  gap: 10px;
  padding: 10px;
  border-bottom: 1px solid #eee;
}
.navDropNoti-m-text h6 {
  font-family: var(--times-new-roman);
  font-size: 15px;
  color: var(--black);
}
.navDropNoti-m-text p {
  font-family: var(--times-new-roman);
  font-size: 14px;
  color: #999999;
  margin: 0px 0px 5px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navDropNoti-m-text p a {
  font-family: var(--times-new-roman);
  font-size: 16px;
  color: var(--black);
}
.navDropNoti-m-text p a:hover {
  text-decoration: underline;
}
.d-logout-Drop {
  background: var(--white);
  display: flex;
  flex-direction: column;
  width: 170px;
  position: absolute;
  top: 54px;
  left: 0px;
  border-radius: 10px;
  border: 1px solid #eee;
  padding: 10px 10px;
  display: none;
}
.d-logout-Drop button {
  font-family: var(--futuraMediumBT);
  background-color: transparent;
  color: var(--black);
  font-size: 17px;
  border: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.bb-none {
  border-bottom: none !important;
}
#myTable_filter,
#myTable_length {
  display: none !important;
}
#myTable1_filter,
#myTable1_length {
  display: none !important;
}
#myTable2_filter,
#myTable2_length {
  display: none !important;
}
#myTable3_filter,
#myTable3_length {
  display: none !important;
}
#myTable4_filter,
#myTable4_length {
  display: none !important;
}
.custom-table th {
  font-family: var(--futuraMediumBT);
  color: var(--black);
  font-size: 14px;
}
.custom-table thead,
.custom-table tbody {
  border-bottom: 1px solid #eeee;
}
.table > :not(:last-child) > :last-child > * {
  border-bottom-color: #eeee;
}
.table > :not(caption) > * > * {
  border-bottom-width: 0px;
}
table.dataTable tbody th,
table.dataTable tbody td {
  padding: 15px 10px !important;
  font-family: var(--gilroy-light);
  color: var(--main-color);
  font-size: 14px;
}
.dataTable tbody td {
  border-bottom: 1px solid #eeee;
}
table.dataTable.no-footer {
  border-bottom: 1px solid transparent !important;
}
table.dataTable tbody tr {
  background-color: #fdfdfd !important;
}
.dataTables_wrapper .dataTables_info {
  font-family: var(--futuraCyrillicHeavy);
  font-size: 16px;
  color: var(--black2);
}
table.dataTable {
  margin: 0px 0px 30px 0px !important;
}

.dataTables_wrapper .dataTables_paginate {
  border: 1px solid #d7d9dd;
  border-radius: 10px;
  padding: 0px 0px 0px 0px !important;
  font-size: 14px;
  font-family: var(--times-new-roman);
  font-weight: 600;
  overflow: hidden;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  background-color: var(--black) !important;
  color: var(--white) !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  background: var(--black) !important;
  color: var(--white) !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover {
  background-color: var(--black) !important;
  color: var(--white) !important;
  font-family: var(--gilroy-extraBold);
  font-size: 14px;
}
.dataTables_wrapper .dataTables_paginate .paginate_button {
  margin: 0px;
  border-radius: 0px;
  padding: 10px 15px;
  border-right: 1px solid var(--white);
}
a#myTable_previous {
  border-right: 1px solid var(--white);
}
a#myTable_next {
  border-left: 1px solid var(--white);
}
.d-sales-main-ttext-f {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.d-sales-main-ttext {
  display: flex;
  align-items: center;
  gap: 10px;
}
.d-sales-main-ttext a {
  font-family: var(--times-new-roman);
  font-size: 25px;
  color: var(--black);
}
.d-sales-main-ttext a:hover {
  text-decoration: underline;
}
.d-sales-main-ttext span {
  font-family: var(--times-new-roman);
  font-size: 25px;
  color: var(--black);
}
.notification-main-wrap {
  display: none;
}
.d-main-notifi-select {
  width: 150px;
}
.d-main-notifi-select select {
  display: flex;
  align-items: center;
  padding: 0px 10px;
  width: 100%;
  height: 45px;
  font-family: var(--times-new-roman);
  font-size: 14px;
  border-radius: 10px;
  background-color: #f9f9f9;
  color: #777777;
  border: 1px solid #e9e9e9;
}
.notification-main-box-f {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 20px;
  background-color: var(--white);
  border-radius: 20px;
  box-shadow: 1px 2px 7px 0px #00000038;
  margin: 0px 0px 20px 0px;
  transition: 0.4s ease;
}
.notification-main-box-f:hover {
  background-color: #f5f5f5;
}
.notification-main-box-usr-img img {
  border-radius: 40px;
  object-fit: cover;
  overflow: hidden;
}
.notification-main-box-usr-f {
  display: flex;
  align-items: center;
  gap: 10px;
}
.notification-main-box-usr-text h6 {
  font-family: var(--times-new-roman);
  font-size: 18px;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 5px;
}
.notification-main-box-usr-text h6 p {
  font-size: 16px;
  color: #5f5e61;
}
.notification-main-box-usr-text span {
  font-family: var(--times-new-roman);
  font-size: 14px;
  color: var(--black2);
}
.d-notification-main-ttext-f {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0px 0px 30px 0px;
}
.d-notification-main-text h6 {
  font-family: var(--times-new-roman);
  font-size: 30px;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 10px;
}
.notification-main-box-btn a {
  font-family: var(--times-new-roman);
  font-size: 18px;
  color: #666666;
  transition: 0.4 ease;
}
.notification-main-box-btn a:hover {
  text-decoration: underline;
  color: var(--black);
}
.notification-main-wrap-box {
  overflow-y: scroll;
  height: 670px;
  padding: 10px 10px;
}
.notification-main-wrap-box::-webkit-scrollbar {
  width: 5px;
  border-radius: 20px;
  overflow: hidden;
}
.notification-main-wrap-box::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.notification-main-wrap-box::-webkit-scrollbar-thumb {
  background: var(--black2);
  border-radius: 20px;
}
.notification-main-wrap-box::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.custom-modal .modal-dialog {
  max-width: 420px;
  margin: 1.75rem auto;
}
.custom-btn-c i {
  background-color: var(--black);
  color: var(--white);
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  transition: 0.4s ease;
}
.custom-btn-c i:hover {
  background-color: var(--white);
  box-shadow: 0px 0px 10px var(--black);
  color: var(--black);
}
.modal-backdrop {
  background: rgb(0 0 0 / 75%);
  backdrop-filter: blur(6px);
}
.modal-backdrop.show {
  opacity: 0.7;
}
.update-modal-main-wrap {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  padding: 30px 0px;
}
.update-modal-main-wrap h6 {
  font-family: var(--times-new-roman);
  font-size: 30px;
  color: var(--black);
}
.update-modal-main-wrap p {
  font-family: var(--times-new-roman);
  font-size: 18px;
  color: #333333;
  width: 50%;
  margin: 0 auto;
}
.custom-modal .modal-dialog {
  max-width: 420px;
  margin: 1.75rem auto;
}
.custom-btn-c i {
  background-color: var(--main-color);
  color: var(--white);
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  transition: 0.4s ease;
  margin: 0 0 0 auto;
}
.custom-btn-c i:hover {
  background-color: var(--white);
  box-shadow: 0px 0px 10px var(--black);
  color: var(--black);
}
.dashboard-main-thead-text {
  width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0px;
}
    /*ADDITIONAL CSS*/
    .login-main-wrapper {
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      padding: 200px 0px 150px 0px;
      background: var(--black);
      background-position: center;
      background-size: cover;
    }
    .login-main-wrap {
      width: 50%;
      margin: 0 auto;
    }
    .login-wrap-text h6 {
      font-size: 60px;
      font-family: var(--futuraCyrillicMedium);
      color: var(--white);
      line-height: 1;
      margin: 0px 0px 10px 0px;
    }
    .login-wrap-text h5 {
      font-size: 35px;
      font-family: var(--times-new-roman);
      color: #111111;
      text-transform: uppercase;
      line-height: 1;
      margin: 0px 0px 15px 0px;
    }
    .login-wrap-text p {
      font-size: 20px;
      font-family: var(--futuraCyrillicMedium);
      color: var(--white);
      line-height: 1;
      margin: 0px 0px 10px 0px;
    }
    .login-wrap-input p {
      font-size: 18px;
      font-family: var(--futuraCyrillicMedium);
      color: var(--white);
      line-height: 1;
      margin: 0px 0px 10px 0px;
      padding: 0px 0px 0px 10px;
    }
    .login-wrap-input p span {
      color: #ff0000;
    }
    .login-wrap-input {
      margin: 0px 0px 15px 0px;
      position: relative;
    }
    .login-wrap-input input {
      width: 100%;
      height: 65px;
      border-radius: 60px;
      border: 1px solid rgba(17, 17, 17, 0.16);
      padding: 0px 25px;
      font-size: 14px;
      font-family: var(--inter-light);
      color: var(--black);
      margin: 10px 0px 0px 0px;
    }
    .login-wrap-input input::placeholder {
      color: var(--black);
    }
    .login-wrap-input .toggle-password1 {
      bottom: 20px;
    }
    .login-wrap-pass-f {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin: 0px 0px 25px 0px;
    }
    .login-wrap-pass-btn a {
      font-size: 18px;
      font-family: var(--futuraCyrillicMedium);
      color: var(--white);
      line-height: 1;
      margin: 0px 0px 10px 0px;
      transition: 0.5s all;
    }
    .login-wrap-pass-btn a:hover {
      text-decoration: underline;
    }
    .login-wrap-text {
      margin: 0px 0px 30px 0px;
    }
    span.toggle-password1 {
      position: absolute;
      right: 18px;
      bottom: 25px;
      font-size: 20px;
      cursor: pointer;
    }
    .login-wrap-btns {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 15px;
      margin: 0px 0px 20px 0px;
    }
    .login-wrap-btns a {
      font-family: var(--futuraCyrillicMedium);
      font-size: 18px;
      color: var(--white);
      transition: 0.4s ease;
    }
    .login-wrap-btns a:hover {
      text-decoration: underline;
    }
    .login-wrap-social-btn1 {
      position: relative;
      overflow: hidden;
      margin: 0px 0px 10px 0px;
    }
    .login-wrap-social-btn1 img {
      position: absolute;
      left: 0px;
    }
    .login-wrap-social-btn1 button {
      width: 100%;
      height: 75px;
      background-color: #3d5a98;
      color: var(--white);
      font-family: var(--times-new-roman);
      font-size: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: none;
    }
    .login-wrap-social-btn2 {
      position: relative;
      overflow: hidden;
    }
    .login-wrap-social-btn2 img {
      position: absolute;
      left: 0px;
    }
    .login-wrap-social-btn2 button {
      width: 100%;
      height: 75px;
      background-color: #ea4335;
      color: var(--white);
      font-family: var(--times-new-roman);
      font-size: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: none;
    }
    .forgot-main-wrap-slider ul {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .forgot-slide-1 {
      left: 0;
      animation: slideUp 10s linear infinite alternate;
      margin: 0px 20px 0px 0px;
    }
    .forgot-main-wrapper {
      width: 100%;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      background-color: var(--black);
    }
    .forgot-wrap-input p {
      font-size: 18px;
      font-family: var(--futuraCyrillicMedium);
      color: var(--white);
      line-height: 1;
      margin: 0px 0px 10px 0px;
      padding: 0px 0px 0px 10px;
    }
    .forgot-wrap-input p span {
      color: #ff0000;
    }
    .forgot-wrap-input {
      margin: 0px 0px 25px 0px;
      position: relative;
      width: 100%;
    }
    .forgot-wrap-input input {
      width: 100%;
      height: 65px;
      border-radius: 60px;
      border: 1px solid rgba(17, 17, 17, 0.16);
      padding: 0px 25px;
      font-size: 14px;
      font-family: var(--inter-light);
      color: var(--black);
      margin: 10px 0px 0px 0px;
    }
    .forgot-wrap-input input::placeholder {
      color: var(--black);
    }
    .forgot-wrap-btns {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 15px;
      margin: 0px 0px 20px 0px;
    }
    .forgot-wrap-btns a {
      font-family: var(--futuraCyrillicMedium);
      font-size: 18px;
      color: var(--white);
      transition: 0.4s ease;
    }
    .forgot-wrap-btns a:hover {
      text-decoration: underline;
    }
    .forgot-main-wrap {
      width: 50%;
      margin: 0 auto;
    }
    .forgot2-wrap-inputf {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin: 0px 0px 20px 0px;
    }
    .forgot2-wrap-inputf input {
      width: 120px;
      height: 100px;
      background-color: var(--white);
      color: var(--black);
      font-family: var(--inter-regular);
      font-size: 35px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      border: none;
      text-align: center;
      border-radius: 20px;
    }
    .forgot2-wrap-inputb-btn {
      text-align: end;
    }
    .forgot2-wrap-inputb-btn a {
      font-family: var(--times-new-roman);
      font-size: 18px;
      color: #ff0000;
      transition: 0.4s ease;
    }
    .forgot2-wrap-inputb-btn a:hover {
      text-decoration: underline;
    }
    .custom-btn-c {
      position: absolute;
      right: 10px;
      top: 10px;
      background-color: transparent;
      border: 0;
    }
    .modal-backdrop {
      background: rgb(0 0 0 / 75%);
      backdrop-filter: blur(6px);
    }
    .modal-backdrop.show {
      opacity: 0.7;
    }
    .update-modal-main-wrap {
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 20px;
      padding: 80px 0px;
    }
    .update-modal-main-wrap h6 {
      font-family: var(--times-new-roman);
      font-size: 30px;
      color: var(--black);
    }
    .update-modal-main-wrap p {
      font-family: var(--times-new-roman);
      font-size: 18px;
      color: #333333;
      width: 50%;
      margin: 0 auto;
    }
    .custom-modal .modal-dialog {
      max-width: 420px;
      margin: 1.75rem auto;
    }
    .custom-btn-c i {
      background-color: var(--black);
      color: var(--white);
      height: 30px;
      width: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 40px;
      transition: 0.4s ease;
    }
    .custom-btn-c i:hover {
      background-color: var(--white);
      box-shadow: 0px 0px 10px var(--black);
      color: var(--black);
    }
    .checkbox-wrapper-4 * {
      box-sizing: border-box;
      color: var(--black);
      font-family: var(--futuraMediumBT);
      font-size: 16px;
    }
    .checkbox-wrapper-4 .cbx {
      -webkit-user-select: none;
      user-select: none;
      cursor: pointer;
      padding: 6px 8px;
      border-radius: 6px;
      overflow: hidden;
      transition: all 0.2s ease;
      display: inline-block;
    }
    .checkbox-wrapper-4 .cbx:not(:last-child) {
      margin-right: 6px;
    }
    .checkbox-wrapper-4 .cbx span {
      float: left;
      vertical-align: middle;
      transform: translate3d(0, 0, 0);
    }
    .checkbox-wrapper-4 .cbx span:first-child {
      position: relative;
      width: 18px;
      height: 18px;
      border-radius: 4px;
      transform: scale(1);
      border: 1px solid var(--black);
      transition: all 0.2s ease;
    }
    .checkbox-wrapper-4 .cbx span:first-child svg {
      position: absolute;
      top: 3px;
      left: 2px;
      fill: none;
      stroke: #fff;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
      stroke-dasharray: 16px;
      stroke-dashoffset: 16px;
      transition: all 0.3s ease;
      transition-delay: 0.1s;
      transform: translate3d(0, 0, 0);
    }
    .checkbox-wrapper-4 .cbx span:last-child {
      padding-left: 8px;
      line-height: 18px;
    }
    .checkbox-wrapper-4 .inp-cbx {
      position: absolute;
      visibility: hidden;
    }
    .checkbox-wrapper-4 .inp-cbx:checked + .cbx span:first-child {
      background: var(--black);
      border-color: var(--black);
      animation: wave-4 0.4s ease;
    }
    .checkbox-wrapper-4 .inp-cbx:checked + .cbx span:first-child svg {
      stroke-dashoffset: 0;
    }
    .index_third_wrap_box_author_img {
      border-radius: 50px;
      overflow: hidden;
    }
    .index_third_wrap_box_author_img img {
      width: 60px;
      height: 60px;
      object-fit: cover;
    }
    .checkbox-wrapper-4 .inline-svg {
      position: absolute;
      width: 0;
      height: 0;
      pointer-events: none;
      user-select: none;
    }
    @media screen and (max-width: 640px) {
      .checkbox-wrapper-4 .cbx {
        width: 100%;
        display: inline-block;
      }
    }
    @-moz-keyframes wave-4 {
      50% {
        transform: scale(0.9);
      }
    }
    @-webkit-keyframes wave-4 {
      50% {
        transform: scale(0.9);
      }
    }
    @-o-keyframes wave-4 {
      50% {
        transform: scale(0.9);
      }
    }
    @keyframes wave-4 {
      50% {
        transform: scale(0.9);
      }
    }
    
    .service_detail_modal .modal-body {
      padding: 50px 50px;
      height: 300px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .service_detail_modal_text h6 {
      font-size: 35px;
      font-family: var(--futuraCyrillicHeavy);
      color: var(--black);
      text-transform: capitalize;
      text-align: center;
      margin: 0px 0px 20px 0px;
    }
    
    /* From Uiverse.io by gharsh11032000 */
    .radio-button-container {
      display: flex;
      align-items: center;
      gap: 24px;
    }
    
    .radio-button {
      display: inline-block;
      position: relative;
      cursor: pointer;
    }
    
    .radio-button__input {
      position: absolute;
      opacity: 0;
      width: 0;
      height: 0;
    }
    
    .radio-button__label {
      display: inline-block;
      padding-left: 30px;
      margin-bottom: 10px;
      position: relative;
      font-size: 16px;
      color: var(--black);
      font-family: var(--kanit-regular);
      font-weight: 600;
      cursor: pointer;
      text-transform: uppercase;
      transition: all 0.3s ease;
    }
    
    .radio-button__custom {
      position: absolute;
      top: 2px;
      left: 0;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      border: 2px solid #555;
      transition: all 0.3s ease;
    }
    
    .radio-button__input:checked + .radio-button__label .radio-button__custom {
      background-color: var(--main-color);
      border-color: transparent;
      transform: scale(0.8);
      box-shadow: 0 0 20px #dd541f63;
    }
    
    .radio-button__input:checked + .radio-button__label {
      color: var(--main-color);
    }
    
    .radio-button__label:hover .radio-button__custom {
      transform: scale(1.2);
      border-color: #4c8bf5;
      box-shadow: 0 0 20px #4c8bf580;
    }
    
    .radio_btn_flex {
      display: flex;
      flex-direction: column;
    }
    
    .main-form-checkbox-warp p {
      font-family: var(--kanit-regular);
      font-size: 20px;
      color: var(--black);
      margin: 0px 0px 10px 1px;
    }
    .cus_alr .btn-close {
      opacity: 1;
      filter: invert(1) brightness(10);
    }
    .form_btn {
      margin: 40px 0px 0px 0px;
    }
    .service_tab .d-main-acc-content {
      background-color: var(--white);
      padding: 40px;
      height: auto;
    }
    .form_1_first_wrapper {
      padding: 100px 0px;
    }
    
    .form_first_wrapper {
      padding: 100px 0px;
    }
    
    .form_1_wrap {
      width: 70%;
      margin: 0 auto;
    }
    
    .form_1_wrap h6 {
      text-align: center;
      font-size: 24px;
      font-family: var(--futuraCyrillicHeavy);
      color: var(--black);
      margin: 0px 0px 20px 0px;
      text-decoration: underline;
    }
    
    .form_1_wrap h4 {
      font-size: 20px;
      font-family: var(--futuraCyrillicHeavy);
      color: var(--black);
      margin: 0px 0px 20px 0px;
      text-decoration: underline;
    }
    
    .form_1_wrap h3 {
      text-align: center;
      font-size: 20px;
      font-family: var(--futuraCyrillicHeavy);
      color: var(--black);
      margin: 0px 0px 20px 0px;
    }
    
    .form_1_wrap p {
      font-size: 18px;
      font-family: var(--inter-light);
      color: var(--black);
      margin: 0px 0px 15px 0px;
    }
    
    .form_1_wrap p span {
      font-family: var(--futuraCyrillicHeavy);
      font-size: 19px;
    }
    
    .form_1_wrap input {
      width: 70%;
      border: 0;
      border-bottom: 1px solid var(--black);
      font-size: 16px;
      font-family: var(--inter-medium);
    }
    
    .form_1_wrap label {
      font-size: 16px;
      font-family: var(--inter-medium);
      display: block;
      margin: 0px 0px 20px 0px;
    }
    
    .form_1_wrap label span {
      width: 200px;
      display: inline-flex;
    }
    
    .form_first_wrapper {
      padding: 100px 0px;
    }
    
    .form_2_wrap {
      width: 70%;
      margin: 0 auto;
    }
    
    .form_2_wrap h6 {
      text-align: center;
      font-size: 24px;
      font-family: var(--futuraCyrillicHeavy);
      color: var(--black);
      margin: 0px 0px 20px 0px;
      text-decoration: underline;
    }
    
    .form_2_wrap h4 {
      font-size: 20px;
      font-family: var(--futuraCyrillicHeavy);
      color: var(--black);
      margin: 0px 0px 20px 0px;
      text-decoration: underline;
    }
    
    .form_2_wrap h3 {
      text-align: center;
      font-size: 20px;
      font-family: var(--futuraCyrillicHeavy);
      color: var(--black);
      margin: 0px 0px 20px 0px;
    }
    
    .form_2_wrap p {
      font-size: 18px;
      font-family: var(--inter-light);
      color: var(--black);
      margin: 0px 0px 15px 0px;
    }
    
    .form_2_wrap p span {
      font-family: var(--futuraCyrillicHeavy);
      font-size: 19px;
    }
    
    .form_2_wrap input {
      width: 70%;
      border: 0;
      border-bottom: 1px solid var(--black);
      font-size: 16px;
      font-family: var(--inter-medium);
    }
    
    .form_2_wrap label {
      font-size: 16px;
      font-family: var(--inter-medium);
      display: block;
      margin: 0px 0px 20px 0px;
    }
    
    .form_3_wrap {
      width: 70%;
      margin: 0 auto;
    }
    
    .form_3_wrap_text h6 {
      text-align: center;
      font-size: 24px;
      font-family: var(--futuraCyrillicHeavy);
      color: var(--black);
      margin: 0px 0px 20px 0px;
    }
    
    .form_3_wrap_text p {
      font-size: 18px;
      font-family: var(--inter-light);
      color: var(--black);
      margin: 0px 0px 15px 0px;
    }
    
    .form_3_wrap_text p span {
      font-family: var(--futuraCyrillicHeavy);
      font-size: 19px;
    }
    
    .form_3_wrap_text ul li {
      font-size: 18px;
      font-family: var(--inter-light);
      color: var(--black);
      list-style: disc;
    }
    
    .form_3_wrap_text ol li {
      font-size: 18px;
      font-family: var(--inter-light);
      color: var(--black);
      list-style: disc;
    }
    
    .form_3_wrap_text ol li span {
      font-family: var(--futuraCyrillicHeavy);
      font-size: 19px;
    }
    
    .form_3_wrap_text ul li span {
      font-family: var(--futuraCyrillicHeavy);
      font-size: 19px;
    }
    
    .ps-6 {
      padding-left: 4rem !important;
    }
    
    .custom_input {
      width: 200px;
      height: 20px;
      color: var(--black);
      font-family: var(--inter-light);
      border: none;
      border-bottom: 1px solid var(--black);
    }
    
    .list_fix li {
      list-style: none !important;
    }
    
    .form_wrap input {
      width: 70%;
      border: 0;
      border-bottom: 1px solid var(--black);
      font-size: 16px;
      font-family: var(--inter-medium);
    }
    
    .form_wrap label {
      font-size: 16px;
      font-family: var(--inter-medium);
      display: block;
      margin: 0px 0px 20px 0px;
    }
    
    .form_wrap h4 {
      font-size: 20px;
      font-family: var(--futuraCyrillicHeavy);
      color: var(--black);
      margin: 0px 0px 20px 0px;
      text-decoration: underline;
    }
    
    .form_wr {
      display: none;
      opacity: 0;
      transition: opacity 0.5s ease, transform 0.5s ease;
      transform: translateY(10px);
    }
    
    .form_wr.active {
      display: block;
      opacity: 1;
      transform: translateY(0);
    }
    
    .page-link:hover {
      z-index: 2;
      color: var(--black);
    }
    
    .page-item a {
      color: var(--main-color);
      background-color: var(--white);
      user-select: none;
    }
    .google-map {
      text-align: center;
    }
    .blog_comments {
      margin: 0px 0px 20px 0px;
    }
    .blog_comments h6 {
      font-family: var(--inter-bold);
      font-size: 20px;
      color: var(--black);
      margin: 0px 0px 10px 0px;
    }
    .blog_comments h4 {
      font-family: var(--inter-medium);
      font-size: 14px;
      color: var(--black);
      opacity: 0.5;
      margin: 0px 0px 10px 0px;
    }
    .blog_comments h4 i {
      margin: 0px 5px 0px 0px;
    }
    .blog_comments p {
      font-family: var(--inter-regular);
      font-size: 16px;
      color: var(--black);
    }
    .blog_comments_wrap {
      padding: 20px;
      border: 1px solid #0000001f;
      border-radius: 20px;
      background-color: #eee;
    }
    .blog_comments_wrap_text h6 {
      font-size: 30px;
      font-family: var(--kanit-regular);
      color: var(--black);
      text-transform: capitalize;
      margin: 0 0 20px 0;
    }
    .blog_details_main_wrap .sec_two_slider {
      padding: 0px 0px 80px 0px;
    }
    .blog_details_main_wrap .sec_two_slider1 {
      padding: 0px 0px 80px 0px;
    }
    .service_detail_vid {
      width: 100%;
      height: 400px;
    }
    .service_detail_vid video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
.blog_details_wrapper {
        padding: 150px 0px 50px 0px;
        background-image: url(../images/sections_bg.png);
        background-position: center;
        background-size: cover;
    }
    .blog_details_main_wrap {
        width: 80%;
        margin: 0 auto;
    }
    .blog_details_wrap_img {
        height: 600px;
        overflow: hidden;
        margin: 0 0 25px 0;
    }
    .blog_details_wrap_img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.5s all;
    }
    .blog_details_wrap_img:hover img {
        transform: scale(1.1);
    }
    .blog_details_wrap_comment {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 10px;
        margin: 0 0 20px 0;
    }
    .blog_details_wrap_comment p {
        font-size: 20px;
        font-family: var(--inter-regular);
        color: gray;
        text-transform: capitalize;
    }
    .blog_details_wrap_comment a {
        font-size: 20px;
        font-family: var(--inter-medium);
        color: var(--black);
        text-transform: capitalize;
    }
    .blog_details_wrap_comment a span {
        font-size: 18px;
    }
    .blog_details_wrap_ttext h6 {
        font-size: 60px;
        font-family: var(--kanit-regular);
        color: var(--main-color);
        text-transform: capitalize;
        margin: 0 0 30px 0;
    }
    .blog_details_text_wrap {
        margin: 0 0 25px 0;
    }
    .blog_details_text_wrap h6 {
        font-size: 40px;
        font-family: var(--kanit-regular);
        color: var(--black);
        text-transform: capitalize;
        margin: 0 0 10px 0;
    }
    .blog_details_text_wrap p {
        font-size: 18px;
        font-family: var(--kanit-regular);
        color: #000000b8;
        line-height: 24px;
        margin: 0 0 5px 0;
    }
    .blog_details_wrap_form {
        width: 80%;
        margin: 0 auto;
    }
    .blog_details_wrap_form .index_fourth_wrap_form {
        width: 100% !important;
    }
    .blog_details_wrap_form .index_fourth_wrap_form_btn a {
        font-size: 18px !important;
    }
    .blog_details input {
        font-size: 16px;
    }
    .blog_details textarea {
        font-size: 16px;
    }
    .alert-warning {
        color: white;
        background: black;
        border: none;
    }
   .servive_last_btn {
        width: 80%;
        margin: 0 auto;
    }
    .index_fifth_wrap_box_2 {
        max-width: calc(100% - 860px);
    }
    .moble-none {
        display: block;
    }
    .cust-none {
        display:none;
    }
    .index_fourth_wrap_form_text input {
        width: 100%;
        height: 55px;
        border-radius: 60px;
        border: 1px solid rgba(17, 17, 17, 0.16);
        padding: 0px 25px;
        font-size: 14px;
        font-family: var(--inter-light);
        color: var(--black);
        margin: 0px 0px 20px 0px;
    }
    .index_fourth_wrap_form_text select::-webkit-scrollbar {
        width: 5px;
    }
    .index_fourth_wrap_form_text select::-webkit-scrollbar-track {
        background: var(--white);
    }
    .index_fourth_wrap_form_text select::-webkit-scrollbar-thumb {
        background-color: var(--black);
    }
    .form-label-custom {
        font-size: 17px;
        font-family: var(--kanit-regular);
        color: var(--black);
        text-transform: capitalize;
        margin: 0 0 10px 0;
        font-weight: 500;
    }
    .index_fourth_wrap_form_text .minimal1 {
        background-position: calc(100% - 15px) calc(2em + 0px);
    }
.blog_details_wrap_text h2 {
    font-size: 40px;
    font-family: var(--futuraCyrillicHeavy);
    color: var(--black);
}
.blog_details_wrap_text p {
    font-size: 16px;
    font-family: var(--inter-regular);
    background: linear-gradient(92deg, rgba(65, 65, 65, 0.66) 0.26%, rgba(27, 27, 27, 0.66) 104.97%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
a.nav-link img {
    width: 25px;
    margin: 0px 5px 0px 0px !important;
}
.index_first_wrap_mrq{
  padding: 10px 0px;
  background-color: var(--black);
}
.index_first_wrap_mrq_f{
  display: flex;
  align-items: center;
  gap: 10%;
  width: 30vw;
  animation: first_marquee 110s linear infinite;
}
.index_first_wrap_mrq_f h6{
  font-size: 11px;
  font-family: var(--inter-regular);
  color: var(--white);
  text-wrap-mode: nowrap;
  text-transform: uppercase;
}
@keyframes first_marquee {
  0% {
      transform: translateX(0)
  }

  50% {
      transform: translateX(-300vw);
  }

  to {
      transform: translateX(0)
  }
} 
.d-main-acc-main-ptexts {
  margin: 0px 0px 20px 0px;
  position: relative;
}
.d-main-acc-main-ptexts h6 {
  font-family: var(--futuraCyrillicHeavy);
  font-size: 14px;
  color: var(--black);
  margin: 0px 0px 5px 0px;
}
.d-main-acc-main-ptexts p {
  font-family: var(--black);
  font-size: 14px;
  color: var(--main-color);
  font-family: var(--gilroy-light);
}
.d-main-acc-main-p-btn {
  display: flex;
  align-items: center;
  gap: 10px;
}
.d-main-acc-main-ptexts input {
  width: 100%;
  height: 65px;
  border-radius: 60px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  padding: 0px 25px;
  font-size: 14px;
  font-family: var(--inter-light);
  color: var(--black);
  margin: 10px 0px 0px 0px;
}
.d-main-acc-main-ptexts input::placeholder {
  color: #11111180;
}
#servicesColumnLayout .card {
  border: 1px solid #ddd;
  padding: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.cls_btn {
  position: absolute;
  right: 9px;
  top: 10px;
  z-index: 999;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--main-color);
  color: var(--white);
  border-radius: 30px;
  font-size: 20px;
  transition: 0.3s ease;
}
.cls_btn:hover {
  background-color: var(--black);
  color: var(--white);
  transform: scale(0.8);
}
.pro_top_text{
  margin: 0px 0px 20px 0px;
  text-align: center;
}
.pro_top_text h6 {
  font-family: var(--futuraCyrillicHeavy);
  font-size: 40px;
  color: var(--black);
  text-transform: uppercase;
}
.pro_top_img{
  width: 100%;
  height: 360px;
  margin: 0px 0px 20px 0px;
}
.pro_top_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.pro_top_text_box h6 {
  font-family: var(--futuraCyrillicHeavy);
  font-size: 30px;
  color: var(--black);
  margin: 0px 0px 15px 0px;
}
.pro_top_text_box p {
  font-size: 16px;
  font-family: var(--inter-regular);
  background: linear-gradient(92deg, rgba(65, 65, 65, 0.66) 0.26%, rgba(27, 27, 27, 0.66) 104.97%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0px 0px 15px 0px;
}
.modal-dialog-scrollable .modal-body::-webkit-scrollbar {
  width: 5px !important;
}
.modal-dialog-scrollable .modal-body::-webkit-scrollbar-track {
  background: var(--white) !important;
}
.modal-dialog-scrollable .modal-body::-webkit-scrollbar-thumb {
  background-color: var(--black) !important;
}
.pro_desc_modal .modal-content {
  border-radius: 20px;
}
.input_fix input{
  height: 55px !important;
}
.pro_top_text_top h5 {
  font-family: var(--futuraCyrillicHeavy);
  font-size: 30px;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 10px;
}
#servicesColumnLayout .card p span{
  font-family: var(--inter-bold);
}
#servicesColumnLayout .card p{
  font-size: 16px;
  font-family: var(--inter-regular);
  color: #000000;
  margin: 0px 0px 5px 0px;
}
#servicesColumnLayout .card p a{
  color: var(--main-color);
}
.card-body_img {
  width: 100%;
  height: 200px;
  margin: 0px 0px 10px 0px;
}
.card-body_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pro_top_text_top p{
  font-size: 16px;
  font-family: var(--inter-regular);
  color: #000000;
}
.pro_top_text_top_btn button{
  margin: 0 auto;
}
.login_wrap_stripe {
  width: 80%;
  margin: 10px auto 25px auto;
}
.d-main-acc-main-ptexts textarea {
  width: 100%;
  height: 120px;
  border-radius: 10px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  padding: 20px 25px;
  resize: none;
  font-size: 14px;
  font-family: var(--inter-light);
  color: var(--black);
  margin: 10px 0px 0px 0px;
}
.d-main-acc-main-ptexts textarea::placeholder {
  color: #11111180;
}
.unsubscribe_modal .pro_top_text h3 {
  font-size: 16px;
  margin: 0px auto 20px auto;
}
.unsubscribe_modal .pro_top_text h6{
  font-size: 30px;
  margin: 0px auto 20px auto;
  width: 90%;
}
.pro_top_btn_f{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.pro_top_btn_f .common_light_btn {
  width: 220px;
  background-color: var(--black);
  color: var(--white);
}
.pro_top_btn_f .common_dark_btn {
  width: 220px;
  background-color: var(--main-color) !important;
}
.pro_top_btn_f .common_dark_btn::after {
  background-color: var(--black);
}
.unsubscribe_modal .modal-dialog.modal-dialog-centered.modal-lg {
  width: 650px;
}
.dots-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  margin: 0px 0px 30px 0px;
}
.dot {
  height: 15px;
  width: 15px;
  margin-right: 10px;
  border-radius: 10px;
  background-color: var(--main-color);
  animation: pulse 1.5s infinite ease-in-out;
}
.dot:last-child {
  margin-right: 0;
}
.dot:nth-child(1) {
  animation-delay: -0.3s;
}
.dot:nth-child(2) {
  animation-delay: -0.1s;
}
.dot:nth-child(3) {
  animation-delay: 0.1s;
}
.pro_top_text_textarea textarea {
  width: 100%;
  height: 165px;
  border-radius: 20px;
  resize: none;
  border: 1px solid rgba(17, 17, 17, 0.16);
  padding: 25px 25px;
  font-size: 14px;
  font-family: var(--inter-light);
  color: var(--black);
  margin: 0px 0px 40px 0px;
}
.unsubscribe_modal_hide_box {
  height: 290px;
}


.calendar-container {
    padding: 20px;
    text-align: center;
    width: 70%;
    margin: 0 auto;
}
.calendar-container h6 {
    font-size: 25px;
    font-family: var(--futuraCyrillicMedium);
    color: var(--black);
    margin: 0px 0px 15px 0px;
}
#calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}

.calendar-container .header {
  display: contents;
}
.calendar-container .header-day {
  font-weight: bold;
  text-align: center;
  color: #333;
}
.calendar-container .day {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s, color 0.3s;
  border: 1px solid #ddd;
  background-color: #e9e9e9;
}
.calendar-container .day.selected {
  background-color: var(--main-color);
  color: white;
  border-color: var(--main-color);
}
.days_details_box {
  margin-top: 20px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  height: 160px;
  overflow-y: scroll;
  margin-bottom: 20px;
  padding: 7px 0px;
}
.days_details_box::-webkit-scrollbar {
  width: 5px;
  border-radius: 10px;
}
.days_details_box::-webkit-scrollbar-track {
  background: var(--white);
  border-radius: 10px;
}
.days_details_box::-webkit-scrollbar-thumb {
  background-color: var(--black);
  border-radius: 10px;
}
.calender_modal .modal-dialog {
    width: 600px;
}
.day.inactive {
    opacity: 0.5;
    cursor: no-drop;
}
.day.active {
    background-color: #000000;
    color: var(--white);
    border-color: var(--black);
    transition: 0.3s ease;
}
.day.active:hover {
    transform: scale(1.1);
}
.timing-option {
    position: relative;
    width: 45%;
}
.timing-option input{
    opacity: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    cursor: pointer;
}
.timing-option label {
    display: flex;
    align-items: center;
    gap: 5px;
    width: 100%;
    padding: 10px 10px;
    background-color: #f0f0f0;
    color: #000;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 13px;
}
.timing-option input[type="radio"]:checked + label {
    background-color: transparent;
    color: var(--black);
    border-color: var(--main-color);
    transform: scale(1.02);
}
.pro_top_alert_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pro_top_alert_img {max-width: 100px;margin: 0 auto 10px auto;}

.new_alert_btn{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.new_alert_btn button {
    margin: 0;
    width: 170px;
}
.pro_top_text p {
  font-size: 16px;
  font-family: var(--inter-regular);
  color: var(--black);
}

.cus_loader {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    top: 5px;
    left: 250px;
}

.cus_loader div {
  width: 8%;
  height: 24%;
  background: var(--main-color);
  position: absolute;
  left: 50%;
  top: 30%;
  opacity: 0;
  border-radius: 50px;
  box-shadow: 0 0 3px rgba(0,0,0,0.2);
  animation: fade458 1s linear infinite;
}

@keyframes fade458 {
  from {
    opacity: 1;
  }

  to {
    opacity: 0.25;
  }
}

.cus_loader .bar1 {
  transform: rotate(0deg) translate(0, -130%);
  animation-delay: 0s;
}

.cus_loader .bar2 {
  transform: rotate(30deg) translate(0, -130%);
  animation-delay: -1.1s;
}

.cus_loader .bar3 {
  transform: rotate(60deg) translate(0, -130%);
  animation-delay: -1s;
}

.cus_loader .bar4 {
  transform: rotate(90deg) translate(0, -130%);
  animation-delay: -0.9s;
}

.cus_loader .bar5 {
  transform: rotate(120deg) translate(0, -130%);
  animation-delay: -0.8s;
}

.cus_loader .bar6 {
  transform: rotate(150deg) translate(0, -130%);
  animation-delay: -0.7s;
}

.cus_loader .bar7 {
  transform: rotate(180deg) translate(0, -130%);
  animation-delay: -0.6s;
}

.cus_loader .bar8 {
  transform: rotate(210deg) translate(0, -130%);
  animation-delay: -0.5s;
}

.cus_loader .bar9 {
  transform: rotate(240deg) translate(0, -130%);
  animation-delay: -0.4s;
}

.cus_loader .bar10 {
  transform: rotate(270deg) translate(0, -130%);
  animation-delay: -0.3s;
}

.cus_loader .bar11 {
  transform: rotate(300deg) translate(0, -130%);
  animation-delay: -0.2s;
}

.cus_loader .bar12 {
  transform: rotate(330deg) translate(0, -130%);
  animation-delay: -0.1s;
}


@keyframes pulse {
  0% {
    transform: scale(0.8);
    background-color: var(--main-color);
    box-shadow: 0 0 0 0 var(--main-color);
  }

  50% {
    transform: scale(1.2);
    background-color: var(--main-color);
    box-shadow: 0 0 0 10px rgba(178, 212, 252, 0);
  }

  100% {
    transform: scale(0.8);
    background-color: var(--main-color);
    box-shadow: 0 0 0 0 var(--main-color);
  }
}
.dashboard-menu {
    display: none;
}
.new_section_wrapper {
    padding: 100px 0px 0px 0px;
}
.new_section_wrap_box_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--main-color);
    padding: 20px 20px;
    border-left: 1px solid var(--main-color);
    border-right: 1px solid var(--main-color);
}
.new_section_wrap_box_top h6 {
    font-size: 24px;
    font-family: var(--futuraCyrillicHeavy);
    color: var(--white);
}
.new_section_wrap_box_top h3 {
    font-size: 18px;
    font-family: var(--futuraCyrillicMedium);
    color: var(--white);
}
.new_section_wrap_box_flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.new_section_wrap_box_list,
.new_section_wrap_box_flex{
    background-color: transparent;
    padding: 20px 20px;
    border: 1px solid var(--white);
    border-top: 0;
}
.new_section_wrap_box_list ul {
    padding: 0px 0px 0px 20px;
}
.new_section_wrap_box_text{
    text-align: center;
}
.new_section_wrap_box_list ul li,
.new_section_wrap_box_text p {
    font-size: 20px;
    font-family: var(--futuraMediumBT);
    color: var(--white);
    list-style: disc;
}
.calender_modal .index_fourth_wrap_form_input input {
    height: 50px;
    padding: 0px 20px;
    width: 75%;
}