/**
* Template Name: IDCA
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Roboto", sans-serif;
  --nav-font: "Comfortaa", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #424242;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #444F6C;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #1E6F5C;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --btn-bg: #CEC196;
  --btn-text: #FFFFFF;
  --btn-bg-hover: #1E6F5C;
  --btn-text-hover: #FFFFFF;
  --background-color-light: #ccc;
  --background-color-light: #F9F8F5;
  --feight: 18px;
  --fsix: 16px;
  --line-eight: 28.8px;
  --outline-btn-text: #424242;
  --outline-btn-hover: #FFF;
  --primary-color: #CEC196;

}


/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #000000;
  /* The default color of the main navmenu links */
  --nav-hover-color: #CEAB57;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #5f687b;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #CEC196;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */



/* .dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

.accent-background {
  --background-color: #10bc69;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #14eb83;
  --contrast-color: #ffffff;
} */
.primary-color {
  color: var(--primary-color);
}

.pr-100 {
  padding-right: 100px;
}

.f-13 {
  font-size: 13px;
}

.f-16 {
  font-size: var(--fsix);
}

.f-18 {
  font-size: var(--feight);
}

.line-27 {
  line-height: var(--line-eight);
}

.outline-btn {
  color: var(--outline-btn-text);
}

.outline-btn:hover {
  background: var(--btn-bg-hover);
  color: var(--outline-btn-hover);
  border-color: var(--btn-bg-hover) !important;
}

.button-background {
  background: var(--btn-bg);
  color: var(--btn-text);
}

.button-background:hover {
  background: var(--btn-bg-hover);
  color: var(--btn-text-hover);
}

.hero-below-item a:hover {
  background: var(--btn-bg-hover);
  color: var(--btn-text-hover);
}

.light-background {
  background: var(--background-color-light);
  color: var(--default-color);
}

.custom-secondary-background-color {
  background-color: var(--background-color-light) !important;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: "Comfortaa", sans-serif;
  font-style: normal;
  font-weight: 400 !important;
}

a {
  color: var(--default-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: "Marcellus", serif;
  font-style: normal;
  font-weight: 400 !important;
}

/* Main Heading Font Size */
.main-heading {
  font-size: 48px;
  font-weight: bold;
}

.inner-heading-hero {
  text-align: center;
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


/*--------------------------------------------------------------
# common css start
--------------------------------------------------------------*/
.dropdown-item.active,
.dropdown-item:active {
  background-color: transparent;
}

.dropdown-item:focus,
.dropdown-item:hover {

  background-color: transparent;
}

.user-dropdown .dropdown-menu li:hover {
  background-color: #dddddd80;
}

.user-dropdown .dropdown-menu li a svg {
  width: 20px;
  height: 20px;
}

.user-dropdown .dropdown-menu li a i {
  font-size: 20px;
}

.dropdown-item {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.4px;
  text-transform: uppercase !important;
  padding: 8px 10px 8px;
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
  border: 0px !important
}

.form-control:focus,
.form-select:focus {

  border-color: #000;
  outline: 0;
  box-shadow: none;
}

#v-pills-tab .category-btn {
  padding: 30px 10px !important;
  max-width: 275px !important;
  width: 100% !important;
}

.nav-tabs .nav-link {
  color: var(--default-color) !important;
  background-color: var(--background-color);
  /* height:47px; */
  width: 250px;
  font-family: "Comfortaa", sans-serif;
}

.nav-tabs .nav-link:hover {
  background-color: var(--btn-bg-hover) !important;
  color: var(--btn-text) !important;
}

.nav-tabs .nav-link.active {
  background-color: var(--btn-bg) !important;
  color: var(--btn-text) !important;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  color: var(--background-color) !important;
  background-color: var(--btn-bg);
}

/* .nav-pills .nav-link, .nav-pills .nav-link {
  color:var(--background-color)!important;
  background-color: var(--btn-bg);
} */


.gradient-text {
  text-transform: capitalize;
  background: linear-gradient(90deg, #85003A 0%, #D02295 49.43%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h3 {
  font-size: 40px;
  text-transform: capitalize !important;
  line-height: 56px;
}

.accordion-header .accordion-button {
  font-family: Comfortaa;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;

}

.accordion .accordion-item {
  background-color: transparent;
}

.laptop-design {
  background: url('../../frontend/img/vector-image.png');
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.blue_diamond {
  background: url('../../frontend/img/vector-image.png');
  background-size: cover;
  background-position: right;
  background-repeat: repeat;
  background-attachment: fixed;
}

.heading-text {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  margin: 0px;
  /* 30px */
  color: var(--default-color);
}

.company {
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.designation {
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  text-transform: lowercase;
  color: var(--default-color);
}

.text_small {
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}


.custom_heading {
  flex: 0 0 200px;
}

.custom-box-shadow {

  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.10);
}

/* .height-47{
  height: 47px;
} */
.btn-font {
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 23px;
  letter-spacing: 1.2px;
  text-transform: capitalize;
  padding: 11px 24px !important;
}

.btn-font-secondary {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  /* line-height: 32px; */
  padding: 12px 24px !important;
}

.btn-width {
  min-width: 119px;
}

.custom-container {
  max-width: 1390px;
  width: 100%;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.custom-container-2 {
  max-width: 1690px;
  width: 100%;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.custom-heading-text {
  color: var(--default-color);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 25.5px;
  /* 25.5px */
}

.list-group-item {
  color: var(--default-color) !important;
}

/*--------------------------------------------------------------
#common css end
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px;
  transition: all 0.5s;
  z-index: 997;
  position: relative;
}

.header-absolute .header {
    color: var(--default-color);
    background-color: transparent;
    padding: 15px;
    transition: all 0.5s;
    z-index: 997;
    position: absolute;
    width: 100%;
}
.header .user-dropdown .dropdown-caret {
  position: absolute;
  top: 52px;
  right: 25px;
  width: 0;
  /* left: 0; */
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid var(--default-color);
  z-index: 1;
}

.header .user-dropdown .dropdown-menu {
  min-width: 250px;
  width: 100%;
}

.sidebar-box a.dropdown-item {
  white-space: normal !important;
  line-height: 25px !important;
}

.user-dropdown .dropdown-menu li:first-child:hover,
.user-dropdown .dropdown-menu li:last-child:hover {
  border-radius: 5px 0px 0px 5px;
}

.header .user-dropdown .dropdown-toggle::after {
  display: none;
}

.header .logo {
  flex: 0;
}

.header .navmenu {
  flex: 1;
  padding-right: 50px;
}

.header .navmenu ul {
  justify-content: end;
}

/* .header .sidebar-box {
  
  flex: 0;
} */
.header .login_btn .icon-person {
  display: none;
}

.header .login_btn .text_login {
  display: block;
}

#header input[type="text"] {
  min-width: 295px;
  width: 100%;
}

.header-container {
  max-width: 1690px;
  margin: auto;
  width: 100%;
}

.l-diam {
  position: absolute;
  left: 15px;
  top: 5%;
  width: 100%;
  max-width: 308px;
}

.lb-diam {
  position: absolute;
  left: 10%;
  bottom: 10%;
  width: 100%;
  max-width: 281px;
}

.r-diam {
  position: absolute;
  right: 15px;
  top: 6%;
  width: 100%;
  max-width: 350px;
}

.rb-diam {
  position: absolute;
  right: 0;
  bottom: 6%;
  width: 100%;
  max-width: 351px;
}

#header .sidebar-box button {
  border: 0;
}

.user-dropdown ul {
  padding: 15px;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 100px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

/* .header-container .d-flex{gap:50px ;} */
.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
}



.hero-video-m video {
  width: 100%;
  height: 100%;
}

.hero-video-m {
  position: relative;
  width: 100%;
  padding-top: 0;
  overflow: hidden;
}

/* .hero-video-m video {
  position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-m{
  position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
} */

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */

.sidebar-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: end;
}

#member-directory-details .inner-heading-hero .list-group-item:before {
  border-right: 0px solid #000 !important;
}

.sidebar {
  padding-left: 10em;
}

.search-form .form-group {
  position: relative;
}

.search-form .form-group #s {
  padding-right: 50px;
  background: #f7f7f7;
  padding: 15px 15px;
  height: 40px;
}

.search-form .icon {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}


/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}


.footer .footer-newsletter h4 {
  font-size: 24px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  position: relative;
  display: flex;
  gap: 12px;
}

.newsletter-form .btn-width {
  min-width: 87px;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 6px 8px;
  width: 100%;
  border-radius: 50px;
  background-color: var(--surface-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

/* 
.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  font-size: 16px;
  padding: 0 20px;
  margin: 0 0 0 15px;
  transition: 0.3s;
  border-radius: 0;
  background: transparent;
} */

/* .footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color));
} */

.footer .footer-top {
  padding-top: 50px;
}

.footer-contact p.small {
  font-size: 12px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  /* justify-content: center; */
  /* width: 40px;
  height: 40px; */
  /* border-radius: 50%; */
  /* border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%); */
  color: color-mix(in srgb, var(--default-color));
  margin-right: 10px;
  transition: 0.3s;
}


.footer .social-links a:hover i {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: 600 !important;
  position: relative;
  line-height: 24px;
  padding-bottom: 24px;
  color: #000;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul svg {
  margin-right: 10px;
  font-size: 18px;
  line-height: 0;
  color: var(--default-color);
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  /* display: inline-block; */
  color: color-mix(in srgb, var(--default-color));
}

.social-links.footer-links a:hover svg path,
.social-links.footer-links a:hover svg circle {
  fill: url(#SVGID_2_) !important;
}

.social-links.footer-links a svg path,
.social-links.footer-links a svg circle {
  fill: #000 !important;
}

.social-links.footer-links a:hover {
  color: #c53365 !important;
}

.footer .footer-links ul .linkedin a:hover {
  color: #0c73ab !important;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.social-links.footer-links svg {
  width: 18px;
  height: 18px;
}

.social-links.footer-links li.linkedin a:hover path {
  fill: #0673ae !important;
}

.footer .footer-about a {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 25px 0 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

.footer .footer-about a img {
  max-width: 150px;
  width: 100%;
}

.copyright ul li a {
  text-decoration: underline;
}

.social-links a:hover i {
  background: radial-gradient(circle farthest-corner at 35% 90%, #fec564, transparent 50%), radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%), radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 20% -50%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 60% -20%, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent), linear-gradient(#6559ca, #bc318f 30%, #e33f5f 50%, #f77638 70%, #fec66d 100%);
  color: #FFF !important;
  /* border-radius: 5px; */
}

.social-links a:hover i.bi.bi-linkedin {
  color: #0A66C2 !important;
  background: transparent;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  background: url('../../frontend/img/vector-image.png');
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: 0;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  display: none !important;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color));
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  /* overflow: clip; */
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding: 30px 0;
  margin-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}

.section-title span {
  position: absolute;
  top: 4px;
  color: color-mix(in srgb, var(--heading-color), transparent 95%);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 1;
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-title span {
    font-size: 38px;
  }

  .list-group-item {
    text-align: left !important;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  /* min-height: 100vh; */
  position: relative;
  padding: 0px 0 0px 0;
  display: flex;
  align-items: center;
  /* background: url('../../frontend/img/bg-hero.jpg'); */
  background-size: cover;
  overflow: hidden;
  background-position: center center;
  /* background-attachment: fixed; */
  position: relative;
}

.hero .container.d-block {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
}

.carouselExampleIndicators .carousel-inner .carousel-item img {
  min-height: 100vh;
}

/* .carousel-indicators {
  bottom: 115px !important;

} */
.hero .hero-img img {
  z-index: 1;
}

.hero h1 {
  margin: 0;
  color: #ffffff;
  font-size: 350px;
  font-weight: 400;
  line-height: 56px;
  text-align: center;
}

.hero h1 span {
  color: #CEAB57;
}

.hero p {
  color: var(--default-color);
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 12px 28px;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}



/* moveOn */
.left {
  animation: left 15s infinite ease-in-out;

}

@keyframes left {
  0% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
  }

  50% {
    -webkit-transform: translateX(150px);
    transform: translateX(150px);
  }

  100% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
  }
}

.left-bottom {
  animation: left-bottom 15s infinite ease-in-out;
}

@keyframes left-bottom {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }

  50% {
    -webkit-transform: translateX(-150px);
    transform: translateX(-150px);
  }

  100% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }
}

.right {
  animation: right 15s infinite ease-in-out;

}

@keyframes right {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }

  50% {
    -webkit-transform: translateX(-150px);
    transform: translateX(-150px);
  }

  100% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }
}

.right-bottom {
  animation: right-bottom 15s infinite ease-in-out;
}

@keyframes right-bottom {
  0% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
  }

  50% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }

  100% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
  }
}


/* Left Right */
/* .left-right {
  -webkit-animation: left-right 0.5s infinite  alternate;
    animation: left-right 0.5s infinite  alternate;
}

@-webkit-keyframes left-right {
  0% { transform: translateY(0); }
  100% { transform: translateX(20px); }
}
@keyframes left-right {
  0% { transform: translateY(0); }
  100% { transform: translateX(4px); }
} */



/* Up to Down */
/* img.up-down {
  -webkit-animation: up-down 1s infinite  alternate;
  animation: up-down 1s infinite  alternate;
}

@-webkit-keyframes up-down {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}
@keyframes up-down {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
} */

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services {
  --surface-color: color-mix(in srgb, var(--default-color), transparent 96%);
  padding-top: 0;
}

.featured-services .service-item {
  background-color: var(--surface-color);
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  height: 100%;
}

.featured-services .service-item .icon {
  margin-bottom: 10px;
}

.featured-services .service-item .icon i {
  color: var(--accent-color);
  font-size: 36px;
  transition: 0.3s;
}

.featured-services .service-item h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.featured-services .service-item h4 a {
  color: var(--heading-color);
  transition: ease-in-out 0.3s;
}

.featured-services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.featured-services .service-item:hover {
  transform: translateY(-10px);
}

.featured-services .service-item:hover h4 a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 40px;
  font-weight: 700;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}

.about .content ul i {
  color: var(--accent-color);
  margin-right: 0.5rem;
  line-height: 1.2;
  font-size: 1.25rem;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

.insight .border {
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.10);
  border-radius: 10px;
  border: 0 !important;
}

.ab-image {
  width: 161px;
  height: 161px !important;
  margin: 0 auto 10px;
  border-radius: 50%;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  border: 1px solid #cec199
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats {
  padding-top: 0;
}

.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item span {
  font-size: 48px;
  display: block;
  color: var(--accent-color);
  font-weight: 700;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 80px 20px;
  transition: border ease-in-out 0.3s;
  height: 100%;
}

.services .service-item .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: var(--accent-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.services .service-item .icon i {
  color: var(--contrast-color);
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover {
  border-color: var(--accent-color);
}

.services .service-item:hover h3 {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  margin: 0 10px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-item {
  position: relative;
}

.portfolio .portfolio-item .portfolio-info {
  background-color: color-mix(in srgb, var(--surface-color), transparent 10%);
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: var(--default-color);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: var(--default-color);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid var(--background-color);
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 45px;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color));
  margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--background-color);
  opacity: 1;
  border: 1px solid var(--accent-color);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
  position: relative;
}

.team .member .pic {
  overflow: hidden;
  margin-bottom: 50px;
}

.team .member .member-info {
  background-color: var(--surface-color);
  color: color-mix(in srgb, var(--default-color));
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: -50px;
  left: 20px;
  right: 20px;
  padding: 20px 15px;
  overflow: hidden;
  transition: 0.5s;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  position: relative;
  padding-bottom: 10px;
}

.team .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  bottom: 0;
  left: 0;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.team .member .social {
  position: absolute;
  right: 15px;
  bottom: 15px;
}

.team .member .social a {
  transition: color 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.team .member .social a:hover {
  color: var(--accent-color);
}

.team .member .social i {
  font-size: 16px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-wrap {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

#contact-page .icon i {
  font-size: 24px;
}

@media (max-width: 575px) {
  .contact .info-wrap {
    padding: 20px;
  }
}

.contact .info-item {
  margin-bottom: 40px;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .php-email-form {
  background-color: var(--surface-color);
  height: 100%;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: var(--default-color);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color));
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}


/* Below Hero */
#below-hero {
  padding: 100px 0;
}

#below-hero h2 {
  font-size: 56px;
}

#below-hero p {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 33px
}

#below-hero .btn-grp a {
  border-radius: 25px;
}

/* ---------Login Page Css Start---------------- */



.step-container {
  position: relative;
  text-align: center;
  transform: translateY(-43%);
}

.progress,
.progress-stacked {
  --bs-progress-bar-bg: var(--btn-bg-hover);

}

#drop-area input[type="file"] {
  opacity: 1;
  position: absolute;
  width: 100%;
  left: 30%;
  cursor: pointer;
  bottom: 45px;
  /* right: 0; */
  /* text-align: center; */
}

#drop-area {
  height: 300px;
  width: 300px;
  border-radius: 50% !important;
  margin: auto;
  background-color: #f3f3f3;
}

.step.step-2 input[type="file"] {
  opacity: 0 !important;
}

.step-circle.active {
  background: var(--btn-bg-hover);
  border: 1px solid var(--btn-bg-hover);
}

.step-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #d9d9d9;
  border: 1px solid #ccc;
  line-height: 30px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  cursor: pointer;
  /* Added cursor pointer */
}

#login-in .login-wrapper {
  max-width: 615px;
  width: 100%;
  margin: auto;


}

#login-in .multistep-form {
  background-color: #fff;
}

#login-in .step-line {
  position: absolute;
  top: 16px;
  left: 50px;
  width: calc(100% - 100px);
  height: 2px;
  background-color: #000;
  z-index: -1;
}

#login-in #multi-step-form {
  overflow-x: hidden;
}

/* ---------Login Paage Css  End--------------- */

/* ----------------[about page css  start]---------------- */
#Team-Profile .team-profile img.img-fluid {
  width: 100%;
  height: 166px;
  border-radius: 50%;
  margin-bottom: 10px;
  object-fit: cover;
}

.team-profile {
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.10);
  border-radius: 10px;
  border: 0 !important;
}

#about_page_banner {
  max-height: 421px;
  height: 100%;
}

#about-Brief img.img-fluid.rounded {
  border-radius: 20px !important;
}

#member-directory .profile-wrapper .img-fluid {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 10px
}

.featured-member .team-profile {
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.10);
  border-radius: 10px;
  border: 0 !important;
  height: 288px !important;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-member .slick-slide {
  padding-bottom: 24px !important;
}

/* slick slider */
.featured-member .slick-slide {
  margin: 0 15px;
}

/* ----------------[about page css  END]---------------- */

#member-directory-details {
  /* background-image: linear-gradient(to bottom, #F9F8F5 70%, #fff 50%); */
  background-color: #F9F8F5;
}

#member-directory-details .inner-heading-hero .list-group-item:before {
  content: '';
  position: absolute;
  border-right: 2px solid #000;
  top: 0px;
  right: 0;
  height: 30px;
}

#member-directory-details .inner-heading-hero ul li:last-child:before {
  border: none !important;
}

#member-directory-details .custom-box-shadow .list-group .list-group-item

/* #member-directory-details .custom-box-shadow .list-group .list-group-item p*/
  {
  color: var(--default-color);
  text-align: center;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 35.2px;
}

#member-directory-details .custom-box-shadow .inner-heading-hero p {
  color: var(--default-color);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 28.8px;
}

#qrcode img {
  position: absolute;
  bottom: 0;
  right: 0;
  text-align: right;
}

.member-directory-details .removeInput {
  border: 0;
  width: 100%;
  background: transparent;
  max-width: 500px;
  line-height: 22px;
  padding: 0;
}

.member-directory-details .editInput {
  border: 0;
  border-radius: 5px;
  background: #e9e9e9;
  padding: 6px;
}

.social-icon input {
  width: 100%;
}

.member-directory-details .member-profile {
  height: 445px;
  width: 445px;
  object-fit: contain;
  padding: 10px;
}

.member-directory-details .member-desc {
  max-width: 100%;
  width: 100%;
}

.member-photo-grid {
  width: 200px;
  /* fixed or responsive size */
  aspect-ratio: 1 / 1;
  /* keeps it a perfect square */
  background-color: #f0f0f0;
  /* optional: fills the empty space */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 415px;
}

#member-directory-details #editMember {
  position: absolute;
  right: 0;
  top: 0;
}

/* a.btn.btn-primary-outline.border-0.member-msg {
  position: absolute;
  right: 40px;
  top: 0;
  font-size: 28px;
} */
.chat-wish {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  gap: 11px;
}

.chat-wish a,
.chat-wish button {
  font-size: 28px;
  padding: 3px;
  line-height: normal;
}

#member-directory-details #editMember i {
  font-size: 28px;
  color: var(--default-color);
}

.member-photo-grid img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.heading-member {
  display: flex;
  gap: 5px;
  align-items: center;
  margin-bottom: 10px;
}

.heading-member .auto-input {
  padding: 6px 0px;
  font-size: 40px;
  width: auto;
  min-width: 50px;
  max-width: 100%;
  flex: 0 1 auto;
  font-family: "Marcellus", serif !important;
}

/* .heading-member .auto-input.editInput {
  padding: 6px 7px;
} */

#edit-browse .btn-file {
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}

#edit-browse .btn-file__actions {
  margin: 0;
  padding: 0;
}

#edit-browse .btn-file__actions__item {
  padding: 35px;
  font-size: 1.5em;
  color: #d3e0e9;
  cursor: pointer;
  text-decoration: none;
  border-top: 3px dashed #d3e0e9;
  border-left: 3px dashed #d3e0e9;
  border-bottom: 3px dashed #d3e0e9;
}

#edit-browse .btn-file__actions__item:first-child {
  border-top-left-radius: 35px;
  border-bottom-left-radius: 35px;
}

#edit-browse .btn-file__actions__item:last-child {
  border-top-right-radius: 35px;
  border-bottom-right-radius: 35px;
  border-right: 3px dashed #d3e0e9;
}

#edit-browse .btn-file__actions__item:hover,
#edit-browse .btn-file__actions__item:focus {
  color: #636b6f;
  background-color: rgba(211, 224, 233, 0.1);
}

#edit-browse .btn-file__actions__item:hover--shadow,
#edit-browse .btn-file__actions__item:focus--shadow {
  box-shadow: #d3e0e9 0 0 60px 15px;
}

#edit-browse .btn-file__actions__item--shadow {
  display: inline-block;
  position: relative;
  z-index: 1;
}

#edit-browse .btn-file__actions__item--shadow::before {
  content: " ";
  box-shadow: #fff 0 0 60px 40px;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  z-index: -1;
}

#edit-browse .btn-file__preview {
  opacity: 0.5;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: -1;
  border-radius: 35px;
  background-size: cover;
  background-position: center;
}

#edit-browse .form-group label.attachment {
  width: 100%;
  position: relative;
}

#edit-browse .form-group label.attachment .btn-create>a,
#edit-browse .form-group label.attachment .btn-create>div {
  margin-top: 5px;
}

#edit-browse .form-group label.attachment input[type='file'] {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
}

/* #member-directory-details .btn-grey{background:#D9D9D9} */

#member-directory-details .editable-social {
  display: flex;
  gap: 5px;
  align-items: center;
  margin-bottom: 10px;
}

.upload-member .btn-file {
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}

.upload-member .btn-file__actions {
  margin: 0;
  padding: 0;
}

.upload-member .btn-file__actions__item {
  padding: 35px;
  font-size: 1.5em;
  color: #d3e0e9;
  cursor: pointer;
  text-decoration: none;
  border-top: 3px dashed #d3e0e9;
  border-left: 3px dashed #d3e0e9;
  border-bottom: 3px dashed #d3e0e9;
}

.upload-member .btn-file__actions__item:first-child {
  border-top-left-radius: 35px;
  border-bottom-left-radius: 35px;
}

.upload-member .btn-file__actions__item:last-child {
  border-top-right-radius: 35px;
  border-bottom-right-radius: 35px;
  border-right: 3px dashed #d3e0e9;
}

.upload-member .btn-file__actions__item:hover,
.upload-member .btn-file__actions__item:focus {
  color: #636b6f;
  background-color: rgba(211, 224, 233, 0.1);
}

.upload-member .btn-file__actions__item:hover--shadow,
.upload-member .btn-file__actions__item:focus--shadow {
  box-shadow: #d3e0e9 0 0 60px 15px;
}

.upload-member .btn-file__actions__item--shadow {
  display: inline-block;
  position: relative;
  z-index: 1;
}

.upload-member .btn-file__actions__item--shadow::before {
  content: " ";
  box-shadow: #fff 0 0 60px 40px;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  z-index: -1;
}

.upload-member .btn-file__preview {
  opacity: 0.5;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: -1;
  border-radius: 35px;
  background-size: cover;
  background-position: center;
}

.upload-member .form-group label.attachment {
  width: 100%;
  position: relative;
}

.upload-member .form-group label.attachment .btn-create>a,
.upload-member .form-group label.attachment .btn-create>div {
  margin-top: 5px;
}

.upload-member .form-group label.attachment input[type='file'] {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
}

.upload-member button.remove-img-btn {
  width: 30px;
  height: 30px;
  padding: 0;
  top: -6px !important;
}

#member_gallery_img .single-img img {
  height: 250px !important;
  object-fit: cover;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.10);
  width: 100%;
}

#upcoming_events p {
  text-align: left !important;
}

.shadow-box {
  z-index: 1;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
}

.box-count {
  z-index: 1;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
  min-height: 280px;
}

.box-count .card-body {
  flex: 0;
}

.box-count img {
  background-color: var(--accent-color);
}

p.event-head {
  font-size: 22px;
  font-weight: 600;
  line-height: 30px
}

p.event-place {
  font-size: 18px;
  font-weight: 400;
  line-height: 27px
}

.box-count .card-title {
  font-size: 20px !important;
}

.box-count .counter-block h6 {
  color: var(--accent-color);
  font-size: 55px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}

.date-block .date {
  line-height: 58px;
  font-size: 45px;
  font-weight: 600;
}

.date-block .month {
  line-height: 130%;
  font-size: 20px;
  font-weight: 600;
}

.join-the-community .evnt-img img {
  height: 315px;
  object-fit: cover;
}

.join-the-community .evnt-img {
  min-height: 315px;
}

.search-form {
  margin-bottom: 0px;
}

/* -------------------------animation start ---------------------- */
/* ------@idca-------------- */
/* .js-animate-element {
  opacity: 0;
}
 .bottom-animation{
      transform: translateY(150px);
  }
 .insight {
      transform: translateY(0) translateX(0);
      opacity: 1;
      transition: 1s all ease;
  }

  .instructions {
    line-height: 1.5;
  } */

#instafeed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(1, 1fr);
  grid-column-gap: 0.8rem;
  grid-row-gap: 0.8rem;
  /* max-width: 64rem; */
  margin: auto;
}

#instafeed a {
  display: block;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 20px;
  position: relative;
}

#instafeed a:hover:before {
  content: '\F437';
  position: absolute;
  font-family: 'bootstrap-icons';
  color: #FFF;
  z-index: 9;
  text-align: center;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 64px;
  left: 0;
  top: 0;
}

#instafeed a:hover:after {
  background: rgba(0, 0, 0, .3);
  position: absolute;
  content: '';
  top: 0;
  height: 100%;
  width: 100%;
  left: 0;
  border-radius: 20px;
}

#instafeed img {
  display: block;
  width: 100%;
  max-height: 450px;
  object-fit: contain;
}

#instafeed .url {
  display: inline-block;
  background: #DDD;
  padding: 0.5rem;
}

code {
  display: inline-block;
  border-radius: 0.25rem;
  padding: 0.3rem 0.4rem;
  line-height: 1;
  font-family: monospace;
  background: rgba(209, 230, 185, 0.5);
}

#contact-page {
  background-position: left !important;
}

/* #about .join-vibrant{
  width:calc(100% - 10%);
} */
.full-width-img-left {
  margin-left: calc(((100vw - 1200px) /2*-1)) !important;
  flex-grow: 1;
}

.full-width-img-right {
  margin-right: calc(((100vw - 1200px) /2*-1)) !important;
  flex-grow: 1;
}

#community_forum .img-block img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
}

#counters {
  margin-top: -180px;
  position: relative;
  z-index: 2;
  background: transparent;
  height: 330px;
}

/* New Page */
/* #news-list  .related_news {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(1, 1fr);
  grid-column-gap: 0.8rem;
  grid-row-gap: 0.8rem;
  
  margin: auto;
} */



/* #join-the-community #nav-tab button{border-radius: 10px;} */
#join-the-community #nav-tab button:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

#join-the-community button {
  height: 48px;
  border-radius: 0;
}

#join-the-community #nav-tab button:last-child {
  border-top-right-radius: 10px !important;
  border-bottom-right-radius: 10px !important;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.select2-results__option.select2-results__option--highlighted,
.select2-container .select2-results__option[aria-selected]:hover {
  background: var(--btn-bg) !important;
}

/* chat Css Start */
#Chat-row .chat-message {
  max-width: 350px;
  word-break: break-word;
  white-space: pre-wrap;
  min-width: 80px;
}

#Chat-row .hidden-member {
  display: none !important;
}

#Chat-row .count_div {
  text-align: center;
  display: flex;
  justify-content: flex-end;
}

#Chat-row .count_div .unread-count {
  background: green;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  color: rgb(255, 255, 255);
  padding: 2px 4px 0px;
  display: block;
  font-size: 10px;
}

#Chat-row h5 {
  text-align: left;
}

#Chat-row img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

#Chat-row .message {
  color: #7A7A7A;
  font-weight: 300;
  line-height: 19.5px
}

#Chat-row .f-18 {
  color: #7A7A7A;
  font-weight: 300;
  line-height: 19.5px;
  text-align: left;
}

#Chat-row .time p {
  color: #7A7A7A;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  text-align: end;
}

#Chat-row .chat-block .time {
  flex: 1;
}

#Chat-row .chat-list a {
  position: relative;
  margin: 15px 0px 25px 0px;
  text-decoration: none;
}

#Chat-row .chat-list a:after {
  content: '';
  border-bottom: 1px solid #e2e2e2;
  position: absolute;
  bottom: -8px;
  width: 80%;
  left: 25px;
}

#Chat-row .bg-sidebar-white {
  background-color: #EFF3F7;
}

#Chat-row .bg-sidebar-white .chat-block .chat_wrapper:after {
  border: none !important;
}

#Chat-row .bg-sidebar-white .chat-block .chat_wrapper {
  margin: 0px !important;
}

#Chat-row .message-area {
  height: 100vh;
  overflow: hidden;
  padding: 30px 0;
  background: #f5f5f5;
}

#Chat-row .chat-area {
  position: relative;
  width: 100%;
  height: 692px;
  overflow: hidden;
  min-height: calc(100% - 1rem);
  display: flex;
  gap: 20px;
}

#Chat-row .chatlist {
  outline: 0;
  height: 100%;
  overflow: hidden;
  max-width: 446px;
  float: left;
  padding: 15px;
  background-color: #fff;
  width: 100%;
}

#Chat-row .chat-area .modal-content {
  border: none;
  border-radius: 0;
  outline: 0;
  height: 100%;
}

#Chat-row .chat-area .modal-dialog-scrollable {
  height: 100% !important;
}

#Chat-row .chatbox {
  width: 100%;
  overflow: hidden;
  height: 100%;
}

#Chat-row .chatbox .modal-dialog,
.chatlist .modal-dialog {
  max-width: 100%;
  margin: 0;
}

#Chat-row .chat-area .form-control {
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

#Chat-row .chat-area .form-control:focus {
  outline: 0;
  box-shadow: inherit;
}

#Chat-row .msg-head {
  padding: 15px;
  border-bottom: 1px solid #fff;
}

#Chat-row .msg-body {
  overflow: hidden;
}

#Chat-row .msg-body ul li {
  list-style: none;
  margin: 15px 0;
}

#Chat-row .msg-body ul li.sender {
  width: fit-content;
  position: relative;
}

#Chat-row .msg-body ul li.sender:before {
  display: block;
  clear: both;
  content: '';
  position: absolute;
  top: -6px;
  left: -7px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 12px 15px 12px;
  border-color: transparent transparent #E6E6E2;
  -webkit-transform: rotate(-37deg);
  -ms-transform: rotate(-37deg);
  transform: rotate(-37deg);
}

#Chat-row .msg-body ul li.sender p {
  color: var(--default-color);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  padding: 15px;
  background: #E6E6E2;
  display: inline-block;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  margin-bottom: 0;
}

#Chat-row .msg-body ul li.reply {
  display: block;
  width: 100%;
  text-align: right;
  position: relative;
  padding-right: 20px;
}

#Chat-row .msg-body ul li.reply:before {
  display: block;
  clear: both;
  content: '';
  position: absolute;
  bottom: -6px;
  right: 13px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 12px 15px 12px;
  border-color: transparent transparent #E6E6E2 transparent;
  -webkit-transform: rotate(37deg);
  -ms-transform: rotate(37deg);
  transform: rotate(37deg);
}

#Chat-row .msg-body ul li.reply p {
  color: var(--default-color);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  padding: 15px;
  background: #E6E6E2;
  display: inline-block;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  margin-bottom: 0;
}

#Chat-row .msg-body ul li.reply:after {
  display: block;
  content: '';
  clear: both;
}

#Chat-row .msg-body ul li.sender .time {
  display: block;
  color: var(--default-color);
  font-size: 8px;
  line-height: 1.5;
  font-weight: 400;
  position: absolute;
  bottom: 0;
  right: 5px;
}

#Chat-row .msg-body ul li.reply .time {
  display: block;
  color: var(--nav-color);
  font-size: 8px;
  line-height: 1.5;
  font-weight: 400;
  position: absolute;
  bottom: 0;
  right: 0px;
}

#Chat-row li.reply .time {
  margin-right: 25px;
}

#Chat-row .divider {
  position: relative;
  z-index: 1;
  text-align: center;
}

#Chat-row .msg-body h6 {
  text-align: center;
  font-weight: normal;
  font-size: 14px;
  line-height: 1.5;
  color: #222;
  background: #fff;
  display: inline-block;
  padding: 0 5px;
  margin-bottom: 0;
}

#Chat-row .divider:after {
  display: block;
  content: '';
  clear: both;
  position: absolute;
  top: 12px;
  left: 0;
  border-top: 1px solid #EBEBEB;
  width: 100%;
  height: 100%;
  z-index: -1;
}

#Chat-row .send-box {
  padding: 15px;
  border-top: 1px solid #fff;
}

#Chat-row .send-box .form-control {
  display: block;
  width: 85%;
  padding: 0.375rem 0.75rem;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #222;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ccc;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.25rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

#Chat-row .send-box button i {
  font-size: 18px;
}

#Chat-row .send-box button {
  position: absolute;
  right: 0;
  top: 7px;
  border: 0;
}

#Chat-row .send-btns .button-wrapper {
  position: relative;
  float: left;
  margin-top: 12px;
}

#Chat-row .send-btns .button-wrapper span.label {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  cursor: pointer;
  color: #343945;
  font-weight: 400;
  text-transform: capitalize;
  font-size: 13px;
}

#Chat-row #upload {
  display: inline-block;
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
}

#Chat-row .send-btns .button-wrapper span.label i {
  margin-right: 5px;
  font-size: 20px;
}

#Chat-row .chat-icon {
  display: none;
}

#Chat-row .closess i {
  display: none;
}

/* chat css end */

/* news page css start */
.news_wrapper_block .right_wrapper_block img {
  width: 195px;
  height: 176px;
}

.news_wrapper_block .right_wrapper_block button:active {
  border-color: transparent !important;
}

/* news page css end */
#drop-area h4#drag_text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: "Comfortaa", sans-serif;
  margin-top: 0 !important;
  width: 250px;
  line-height: 37px;
}

#drop-area {
  height: 300px;
  width: 300px;
  border-radius: 50% !important;
  margin: auto;
  background-color: #f3f3f3;
  padding: 0 !important;
}

#file-preview {
  text-align: center;
  margin: auto !important;
  display: block;
}

#file-preview img {
  width: 100%;
  height: 100%;
  margin: 0 !important;
  border-radius: 50%;
  display: block;
  padding: 0 !important;
  background-size: cover;
  max-height: 300px !important;
  padding: 2px !important;
}

.CodeMirror-code .CodeMirror-line span {
  color: #444F6C;
  text-align: center;
  font-family: Comfortaa;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 39.36px;
}

.CodeMirror-code .CodeMirror-line {

  text-wrap: auto;
}

.CodeMirror-measure {
  display: none;
}

/* -------------community foreum start-------------------------- */
#community_forum .forum_discription_wrapper i {
  font-size: 40px;
}

#community_forum button {
  position: relative;
}

#community_forum input[type="radio"] {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  top: 0;
  left: 0;
  right: 0;
}

/* -------------community foreum end-------------------------- */


.select2-selection__choice {
  background-color: var(--bs-gray-200);
  border: none !important;
  font-size: 12px;
  font-size: 0.85rem !important;
}

.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__rendered .select2-selection__choice .select2-selection__choice__remove {
  width: 0.75rem;
  height: 0.75rem;
  padding: 0.25em;
  margin-right: 0.25rem;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  /* background: transparent url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23676a6d'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e) 50%/0.75rem auto no-repeat; */
  /* border: 0; */
}

.select2-results__option[aria-selected] {
  background: white;
  cursor: pointer;
  /* color: #fff; */
}

.select2-results__option[aria-selected]:hover {
  background: grey !important;
  cursor: pointer;
  color: #fff !important;
}

#event-highlights .view_full_gallery_wrapper {
  background: var(--surface-color);
  color: var(--default-color);
}

.btn-grey .editInput {
  background: transparent;
}

#member_gallery_img {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 0.8rem;
  grid-row-gap: 0.8rem;
  /* max-width: 64rem; */
  margin: auto;
}

#terms_of_use h4 {
  position: relative;
  display: inline-block;
}

#terms_of_use h4:before {
  position: absolute;
  content: '';
  border: 1px solid var(--heading-color);
  width: 100%;
  bottom: 0;
}

/* EVENTS-DETAILS PAGE -------------------*/
#member-directory-details .inner-heading-hero .list-group {
  color: #000;
  text-align: center !important;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px
}

#member-directory-details .inner-heading-hero .list-group-item {
  text-align: center !important;
}

#category_select .select2-container--bootstrap4 .select2-selection--multiple {
  min-height: auto !important;
}


.modal.fade .modal-dialog {
  transform: translateY(100%);
  transition: transform 0.5s ease-out;
}

.modal.fade.show .modal-dialog {
  transform: translateY(0);
}

/* .modal-backdrop{opacity: 0 !important;display: none !important;} */
.index-page.modal-open {
  overflow-y: scroll !important;
  padding: 0px !important;
}

#member-directory-details .social-icon .editable-social i {
  font-size: 20px;
}

.marque-slider {
  background: #CEAB57;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
}

.marque-slider li {
  color: var(--background-color);
  font-size: 25px;
  margin-right: 30px;
  text-align: center;
}

ul.autoplay.slick-initialized.slick-slider {
  padding: 0;
  margin-bottom: 0;
}

.coming_soon {
  min-height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-card {
  align-items: baseline;
  gap: 20px;
}

.grid-lay {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-column-gap: 0.8rem;
  grid-row-gap: 0.8rem;
  /* max-width: 64rem; */
  margin: auto;
}

#categoryModal:before {
  position: absolute;
  content: '';
  background: rgba(0, 0, 0, .7);
  width: 100%;
  height: 100%;
}

#categoryModal ul {
  padding: 0;
}

#categoryModal li {
  list-style: none;
  margin-bottom: 7px;
  font-size: 15px;
  text-align: left;
  white-space: nowrap;
}

#categoryModal .grid-category h4 {
  text-align: left;
}

/* #selected-tags-container:before {
  content: 'Select Category';
  line-height: 28px;
  margin-bottom: 0 !important;
} */
.grid-main-cat {
  /* display: grid; */
  /* grid-template-columns: repeat(5, 1fr); */
  /* grid-column-gap: 0.8rem; */
  /* grid-row-gap: 0.8rem; */
  /* max-width: 64rem; */
  /* margin: auto; */
  display: flex;
  flex-wrap: wrap;
}

.grid-main-cat .grid-category {
  flex: 0 0 20%;
}

[type=checkbox]:focus,
[type=radio]:focus {
  outline: 0;
}

button,
input,
optgroup,
select,
textarea {
  font-family: "Comfortaa" !important;
}

textarea {
  padding: 10px;
}

a.close-btn {
  position: absolute;
  top: -12px;
  right: -5px;
  font-size: 25px;
  color: var(--primary-color);
}

a.close-btn:hover {
  color: var(--accent-color);
}

#selected-tags-container {
  overflow-y: auto;
}

#member-plan button {
  height: 48px;
}

#selected-tags-container button {
  height: auto;
}

/* .icon-style li:before {
  position: absolute;
  content: '\F270';
  font-size: 20px;
  font-family: 'bootstrap-icons';
  left: -29px;
  top: 0px;
  color: var(--primary-color);
} */
.icon-style li i {
  font-size: 20px;
  color: var(--primary-color) !important;
  padding-right: 5px;
}

.icon-style li {
  display: flex;
}

.icon-style li {
  line-height: 29px;
  position: relative;
  list-style: none;
  margin-bottom: 8px;
  padding-top: 0 !important;
}

ul.icon-style {
  padding-left: 0 !important;
}

.home-event {
  background: #cec196;
  padding: 20px;
  border-radius: 20px;
  position: relative;
  margin-left: -25%;
  margin-top: 30%;
}

.minus-margin {
  margin-top: -400px;
}

body.index-page.scrolled {
  overflow-y: scroll !important;
}

.form-control,
.form-select {
  height: 51px;
  border-radius: 10px;
  border: 0.5px solid #7E7E7E;
}

.log-btn button,
.log-btn a {
  width: 100%;
  margin: 10px 0;
  height: 59px;
}

#categoryModal .custom_width_block_wrapper {
  flex: 0 0 20%;
}

.accordion-button:not(.collapsed) {
  background: var(--btn-bg-hover) !important;
  color: var(--btn-text-hover) !important;
  box-shadow: none !important;
}

.button-background:hover {
  background: var(--btn-bg-hover);
  color: var(--btn-text-hover);
}

.accordion-button:focus {
  box-shadow: none !important;
}

.accordion-button:not(.collapsed)::after {
  background-image: url('../img/down-arrow.png') !important;
}

#event-highlights .view_full_gallery_wrapper {
  width: 123px;
  height: 123px;
  border-radius: 50%;
  border: 1px solid #000;
}

form#join_us_form button {
  padding: 0 !important;
}

form#join_us_form button input {
  display: none;
}

form#join_us_form button label {
  width: 100%;
  height: 100%;
  padding: 14px 16px;
  text-align: center;
}

#member-plan .box-count {
  height: 100% !important;
}

#member-plan .card-body,
#member-plan .list-group-item {
  padding-left: 0;
  padding-right: 0;
}

#member-plan .list-group-item {
  display: flex;
}

#Team-Profile .accordion-body {
  padding: 10px;
}

.chat-head {
  font-size: 14px;
}

.f-sat-lab {
  display: flex;
  /* align-items: center; */
  padding: 10px 10px 0px 10px;
  /* margin-bottom: 10px; */
  flex-direction: column;
  width: 100%;
}

.f-sat-lab label {
  font-size: 16px;
  padding-bottom: 5px;
  width: 100%;
  text-align: left;
}

.f-sat-lab input {
  width: 100%;
  padding: 8px 10px;
  border-radius: 5px;
  border: 1px solid #000;
  background: transparent;
  height: 51px;
}

.f-sat-lab input {
  width: 100%;
  padding: 8px 10px;
  border-radius: 5px;
  border: 1px solid #000;
}

.sec-dia {
  display: flex;
  align-items: center;
  gap: 20px;
}

.f-yn {
  display: flex;
  align-items: center;
  gap: 10px;
}

.an-one p {
  margin: 0;
  margin-left: 15px;
}

.f-content h6 {
  padding: 10px;
  font-size: 20px;
  color: #000;
}

#add_member_submit #submit_btn {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 23px;
  letter-spacing: 1.2px;
  text-transform: capitalize;
  padding: 11px 24px !important;
  background: var(--btn-bg);
  color: var(--btn-text);
  border: 0 !important;
}

.f-content h5 {
  font-size: 25px !important;
  margin-bottom: 28px;
}

.element .team-profile {
  position: relative;
  height: 430px !important;
}

.element .team-profile button {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 149px;
  margin: auto;
  margin-bottom: 14px;
}

.member-sidebar li.list-group-item {
  text-align: left;
  padding-left: 0 !important;
}

.social-icon .editable-social a i {
  display: block;
  margin: auto;
  text-align: center;
}

.memeber-info p {
  margin-bottom: 0;
}

#Team-Profile .accordion {
  background: #FFF;
}

textarea#about_company {
  height: auto !important;
  background: transparent;
}

.initials-circle {
  width: 161px;
  height: 161px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid #cec199;
  color: #cec199;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 60px;
  margin: 0 auto;
}

.ab-image .initials-circle {
  border: 0
}

#idca-insta h3 {
  text-transform: lowercase !important;
}

.join_us_tab_wrapper input.form-control.form-control-lg {
  font-size: 16px;
  line-height: 33px;
}

.c-logo {
  text-align: left;
  position: relative;
  width: 110px;
}

.c-logo img {
  width: 100px !important;
  height: 100px !important;
  object-fit: contain;
  border: 1px solid #CCC;
  margin-top: 10px;
  padding: 3px;
}

.c-logo span {
  position: absolute;
  right: 0;
  background: #cec199;
  border-radius: 3px;
  margin-top: 7px;
  padding: 0px;
  font-size: 15px;
}

.c-logo span button {
  color: #FFF !important;
}

.initials-circles.d-flex.gap-1.align-items-center {
  justify-content: center !important;
}

.mobile-search-modal input#searchInput {
  display: block !important;
}

.grid-category ul li {
  margin-bottom: 11px;
}

.grid-category ul li label {
  padding: 0px !important;
  font-size: 14px;
}

.grid-category ul li input {
  width: auto;
  height: auto;
}

.grid-category ul li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.f-yn {
  display: flex;
  align-items: center;
  gap: 10px;
}

.grid-category ul {
  padding: 0;
}

.grid-category h4 {
  text-align: left;
  margin-top: 10px;
}





section#community_forum div#forumArea {
    overflow-y: scroll;
    max-height: 600px;
    height: 100%;
}


.modal-content .modal-body {
    overflow-y: scroll;
    height: 650px;
}

.modal-footer button.btn.btn-secondary {
    width: 100px;
    border-radius: 50px;
    transition: .2s all ease-in-out;
}
.modal-footer button.btn.btn-secondary:hover {

  border: 2px solid #CEC196;
}

button.btn.btn-sm.btn-warning.btn-edit-reply {
    width: 100px;
    padding: 10px;
    border-radius: 50px;
    background-color: #FEF2E5 !important;
    color: #CD6200;
}
button.btn.btn-sm.btn-warning.btn-edit-question {
    width: 100px;
    padding: 10px;
    border-radius: 50px;
    background-color: #FEF2E5 !important;
    color: #CD6200;
}
button.btn.btn-sm.btn-warning.btn-edit-question:hover {
  background-color: #CD6200;
}

button.btn.btn-sm.btn-danger.btn-delete-question{
   width: 100px;
    padding: 10px;
    border-radius: 50px;
    background-color: #FBE7E8 !important;
    color: #A30D11;
}
button.btn.btn-sm.btn-danger.btn-delete-reply{
   width: 100px;
    padding: 10px;
    border-radius: 50px;
    background-color: #FBE7E8 !important;
    color: #A30D11;
}

button.btn.btn-success.btn-sm {
    padding: 10px 20px;
    border-radius: 50px;
}
button.btn.btn-secondary.btn-sm.btn-cancel-edit-reply{
    padding: 10px 20px;
    border-radius: 50px;
}



button.btn.btn-secondary.btn-sm.btn-cancel-reply{
  padding: 10px 20px;
    border-radius: 50px;
}

.search-form {
    margin-bottom: 0px;
    position: sticky;
    top: 0;
    z-index: 999999;
    background-color: #fff;
    background: #fff;
}

body.index-page.scrolled header#header {
    background-color: #fff;
}
