:root {
  --primary-color-code: #007cc7;
  --primary-background-color-code: #a0dbff47;
  --primary-gray-color-code: #808080;
  --secondary-grey-color-code: #ddd;
  --red-warning-color-code: #FF0000;
}

body {
  position: relative;
  background: #fff;
  overflow-x: hidden !important;
  font-family: "Roboto", sans-serif;
}

p {
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 0px;
}

a,
a:hover,
a:focus {
  color: var(--primary-color-code);
  transition: all 0.3s;
  text-decoration: none;
}

*:focus {
  outline: none;
}

label {
  margin-bottom: 0;
}

.display-nothing {
  display: none !important;
  visibility: hidden !important;
}

.disabled {
  pointer-events: none;
  cursor: default;
}

.link-text {
  font-weight: 500;
  color: var(--primary-color-code);
  text-decoration: none !important;
}

.link-text:hover {
  color: var(--primary-color-code);
}

.label-danger {
  font-family: "Open Sans", sans-serif;
  font-size: 80%;
  color: var(--red-warning-color-code);
}

.blue-text {
  color: var(--primary-color-code);
  font-weight: 600;
}

.expert-user-border {
  border: 2px solid var(--primary-color-code);
}

.default-user-border {
  border: 2px solid var(--primary-gray-color-code);
}

.user-verified-icon {
  height: 20px;
  width: 20px;
}

.verified-icon{
  font-size: 20px;
  color: var(--primary-color-code);
}

#toast-success {
  position: fixed;
  right: 10px;
  top: 300px;
  width: 350px;
  /* background: #d4edda;
  font-weight: 700;
  color: #155724; */
  z-index: 1;
}

#toast-error {
  position: fixed;
  right: 10px;
  top: 300px;
  width: 350px;
  background: #f8d7da;
  font-weight: 700;
  color: #721c24;
  z-index: 1;
}


@media only screen and (max-width: 540px) {
  #toast-success {
    width: 200px;
    font-size: 12px;
    font-weight: 400;
  }

  #toast-error {
    width: 200px;
    font-size: 12px;
    font-weight: 400;
  }
}


/*******start of Navbar************/

.navbar {
  padding: 12px 0px;
  border: none;
  border-radius: 0;
  /* margin-bottom: 40px; */
  transition: all 0.2s linear;
  background: #fff;
  box-shadow: 11px 15px 29px 0 rgb(48 48 48 / 7%);
}

.custom-navbar-color.clearHeader {
  background: transparent;
  box-shadow: none;
}

.custom-navbar-color.darkHeader {
  /* height: 75px; */
  box-shadow: 11px 15px 29px 0 rgb(48 48 48 / 7%);
  background: #fff;
}

.collapse-btn {
  box-shadow: none;
  outline: none !important;
  border: none;
}

.navbar .brand-name {
  margin-left: 45px;
  display: flex;
  align-items: center;
}

.navbar .brand-name .desktop-brand-logo-img {
  display: block;
  height: 30px;
  width: 108px;
}

.navbar .brand-name .mobile-brand-logo-img {
  display: none;
}

.navbar .brand-name h1 {
  color: #000;
  margin-top: 8px;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 900;
}

.navbar .brand-name p {
  text-transform: uppercase;
  color: #000;
  font-weight: 900;
  font-size: 25px;
}

.header-menu {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.header-menu .nav-link {
  display: flex;
  align-items: center;
  color: #2f2c44;
  padding: 10px 20px 12px 20px;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
}

.header-menu .nav-login-link-div{
  display: flex;
  flex-direction: row;
  align-items: center;
}

.header-menu .nav-login-link-div .nav-link{
  padding: 10px 5px;
}

.header-menu .nav-link:hover {
  color: var(--primary-color-code);
}

.header-menu .signup-btn {
  background: var(--primary-color-code);
  padding: 12px 25px !important;
  color: #fff !important;
  border-radius: 5px;
  margin-left: 10px;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 600;
}

.header-menu .signup-btn:hover {
  color: #fff;
  background: var(--primary-color-code);
}

.header-menu .login-btn {
  border: 2px solid #000;
  border-radius: 5px;
  text-align: center;
  padding: 10px 22px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  transition: 0.3s;
}

.header-menu .ask-question-btn {
  border: none;
  border-radius: 5px;
  text-align: center;
  padding: 11px 22px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--primary-color-code);
  margin: 0px 10px;
  transition: 0.3s;
}

.header-menu .ask-question-btn:hover {
  opacity: 0.9;
  color: #fff !important;
}

.header-menu .notification-btn {
  position: relative;
  height: 40px;
  width: 40px;
  margin: 0px 0px;
  border: none;
  outline: none !important;
  box-shadow: none !important;
  background: var(--primary-color-code);
  border-radius: 50%;
}

.header-menu .notification-nav-icon {
  position: relative;
  color: #fff;
  font-size: 22px;
  display: block;
  margin: auto;
}

.header-menu .notification-btn .badge {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -5px;
  right: -5px;
  height: 20px;
  width: 20px;
  font-size: 10px;
  background: var(--red-warning-color-code);
  color: #fff;
  border-radius: 50%;
}

.header-menu .read-btn:focus {
  outline: 0px;
  border: none;
  box-shadow: none;
  color: #000;
}

.header-menu .notification-header {
  z-index: 10;
  background: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  align-content: center;
  border-bottom: 1px solid var(--primary-gray-color-code);
}

.header-menu .notification-menu {
  position: absolute;
  left: -300px;
  height: auto;
  margin-top: 10px;
  min-height: auto;
  max-height: 500px;
  width: 350px;
  max-width: 350px;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  overflow-y: scroll;
  overflow-x: hidden;
  padding: 0px 0px 10px 0px;
}

.notification-menu .notification-title {
  padding: 10px 20px 10px 20px;
  font-size: 20px;
  font-weight: 700;
}

.header-menu .notification-dots-icon {
  font-size: 25px;
  padding: 5px 7px 0px 7px;
  border: none;
  border-radius: 50%;
  margin-right: 20px;
}

.header-menu .notification-dots-icon:hover {
  background: #ebebeb;
}

.header-menu .notification-action-btn-area {
  margin: 8px 8px;
}

.header-menu .dropdown-submenu {
  position: relative;
  width: inherit;
}

.header-menu .dropdown-submenu .dropdown-menu {
  position: absolute;
  top: 40px;
  right: 15%;
  box-shadow: 0 8px 16px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
}

.header-menu .dropdown-submenu .dropdown-menu .dropdown-item {
  display: flex;
}

.header-menu .dropdown-submenu .dropdown-menu .dropdown-item:hover {
  background: rgba(135, 206, 250, 0.2);
}

.header-menu .notification-menu .notification-item {
  color: #000 !important;
  padding: 8px 12px 8px 12px;
  font-size: 14px;
  font-weight: 400;
  white-space: inherit;
  border-bottom: 1px solid #e6e7e9;
}

.header-menu .notification-menu .notification-no-item {
  color: #000 !important;
  padding-left: 20px;
  font-size: 20px;
  font-weight: 400;
  white-space: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-menu .notification-menu .fa-question-circle {
  margin-top: 5px;
  font-size: 20px;
}

.header-menu .notification-menu .notification-item:hover {
  background: #ececec;
}

.notification-menu .notification-icon-img {
  height: 40px;
  width: auto;
}

.notification-menu .notification-message-area {
  display: flex;
}

.notification-menu .notification-message-area span {
  display: block;
  position: relative;
  padding-left: 10px;
  font-size: 12px;
}

.notification-menu .notification-title-text {
  color: var(--primary-color-code);
  padding-left: 13px;
}

.notification-menu .notification-sub-text {
  padding-left: 13px;
}

.navbar .navbar-desktop-search-box-div {
  position: relative;
  margin-right: 10px;
}

.navbar .navbar-desktop-search-box-div .navbar-searh-box {
  height: 45px;
  border: 1px solid #f3f3f4;
  background: #f5f5f5;
  border-radius: 5px;
  width: 200px;
  font-size: 14px;
  padding: 0px 10px 0px 40px;
}

.navbar .navbar-desktop-search-box-div .search-icon {
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  font-weight: 600;
  color: #a0a0a0;
  pointer-events: none;
}


.navbar-search-field-btn {
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  visibility: hidden;
}

.navbar .navbar-mobile-search-box-div {
  display: none;
  background: transparent;
  border-radius: 5px;
  border: 1px solid var(--primary-gray-color-code);
  padding: 8px 8px 5px 8px;
  margin-left: 10px;
}

.navbar .navbar-mobile-search-box-div .search-icon {
  color: var(--primary-gray-color-code);
}


@media only screen and (max-width: 990px) {
  #login-btn {
    display: none;
  }

  #signup-btn {
    display: none;
  }

  .header-menu .ask_question_btn {
    margin-right: 0px !important;
  }
}

@media only screen and (max-width: 769px) {
  .navbar .navbar-desktop-search-box-div {
    display: none;
  }

  .navbar .navbar-mobile-search-box-div {
    display: block;
    margin: 0px 5px;
    padding: 10px 10px 2px 10px;
  }

  .nav-login-link-div{
    display: none !important;
  }
}

@media only screen and (max-width: 540px) {
  .navbar {
    padding: 10px 10px;
  }

  .navbar .container-fluid {
    padding: 0px;
  }

  .header-menu {
    right: 10px;
  }

  .navbar .brand-name .desktop-brand-logo-img {
    display: none;
  }

  .navbar .brand-name .mobile-brand-logo-img {
    display: block;
    height: 35px;
    width: 35px;
  }

  .header-menu .nav-link {
    padding: 11px 10px 11px 10px;
    font-size: 12px;
  }

  .header-menu .signup-btn {
    padding: 10px 12px !important;
    margin-left: 0px;
  }

  .header-menu .login-btn {
    padding: 10px 12px !important;
  }

  .header-menu .nav-link .fa-user {
    display: none;
  }

  .header-menu .notification-btn {
    margin: 0px 0px 0px 5px;
  }

  .notification-menu {
    width: 300px;
    max-width: 300px;
  }

  .notification-menu .notification-item {
    padding: 5px;
    font-size: 12px;
    font-weight: 400;
  }

  .navbar .brand-name {
    margin-left: 40px;
  }

  .notification-icon-img {
    height: 30px;
    width: auto;
  }

  .header-menu .ask-question-btn {
    margin: 0px;
  }

  .navbar .navbar-mobile-search-box-div {
    padding: 8px 10px 0px 10px;
    border: 1px solid #000;
  }
}

@media only screen and (max-width: 400px) {

  .header-menu .notification-menu {
    left: -250px;
    width: 300px;
    max-width: 300px;
  }
}

@media only screen and (max-width: 350px) {
  .navbar .navbar-mobile-search-box-div {
    display: none;
  }
}


/*******End of Navbar************/

/*******start of sidebar************/

.sticky-offset {
  top: 60px;
}

.wrapper {
  display: flex;
  width: 100%;
  align-items: stretch;
  perspective: 1500px;
}

#content .main-content-area {
  padding-top: 20px;
  padding-bottom: 50px;
}

#sidebar {
  position: absolute;
  padding-top: 72px;
  min-width: 250px;
  max-width: 250px;
  min-height: 100%;
  background: #f8f8ff;
  color: #fff;
  transition: all 0.3s cubic-bezier(0.945, 0.02, 0.27, 0.665);
  transform-origin: bottom left;
  z-index: 10000;
  margin-left: -250px;
}

#sidebar.active {
  margin-left: 0px;
}

#sidebar .sidebar-header {
  padding: 20px 10px;
  background: #f8f8ff;
  text-align: center;
}

#sidebar .sidebar-header .sidebar-edit-btn {
  position: absolute;
  right: 65px;
  background: var(--primary-color-code);
  height: 35px;
  width: 35px;
  border-radius: 50%;
}

#sidebar .sidebar-header .sidebar-edit-btn .sidebar-edit-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  color: #fff;
}

#sidebar .list-unstyled .components {
  position: sticky;
  top: 70px;
  border-bottom: 1px solid #47748b;
  padding-bottom: 10px;
}

#sidebar .sidebar-menu-btn {
  padding: 15px 0px 15px 40px;
  color: var(--primary-gray-color-code);
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
}

#sidebar .sidebar-signup-btn {
  text-align: center;
  display: block;
  margin: 20px 10px 0px 10px;
  padding: 10px;
  background: var(--primary-color-code);
  color: #fff;
  border-radius: 5px;
  font-size: 16px;
}

#sidebar .sidebar-signup-btn:hover {
  background: var(--primary-color-code);
}

#sidebar .sidebar-login-btn {
  text-align: center;
  display: block;
  margin: 10px 10px 0px 10px;
  padding: 10px;
  background: transparent;
  color: var(--primary-color-code);
  border-radius: 5px;
  font-size: 18px;
}

#sidebar .active .sidebar-menu-btn {
  color: var(--primary-color-code);
  background: rgba(135, 206, 250, 0.3);
  margin: 0px;
  border-radius: 5px;
}

.sidebar-menu-btn .sidebar-menu-icon {}

.sidebar-menu-btn .sidebar-menu-text {
  padding-left: 22px;
  font-size: 1em;
  font-weight: 700;
}

#sidebar .sidebar-menu-btn:hover {
  color: var(--primary-color-code);
}

a[data-toggle="collapse"] {
  position: relative;
}

.dropdown-toggle::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.sidebar-header .profile_image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 10px;
  box-shadow: 0 0 10px 5px lightvar(--primary-gray-color-code);
}

.sidebar-header .user-main-name {
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  color: #2f2c44;
  text-transform: capitalize;
  word-break: break-word;
}

#sidebarCollapse {
  position: absolute;
  width: 35px;
  height: 35px;
  background: #f5f5f5;
  cursor: pointer;
}

#sidebarCollapse span {
  width: 80%;
  height: 2px;
  margin: 3px auto;
  display: block;
  background: var(--primary-gray-color-code);
  transition: all 0.5s cubic-bezier(0.81, -0.33, 0.345, 1.375);
  transition-delay: 0.2s;
}

#sidebarCollapse.active span {
  width: 80%;
  height: 2px;
  margin: 0px auto;
  display: block;
  background: var(--primary-gray-color-code);
  transition: all 0.5s cubic-bezier(0.81, -0.33, 0.345, 1.375);
  transition-delay: 0.2s;
}

#sidebarCollapse.active span:first-of-type {
  transform: rotate(45deg) translate(2px, 2px);
}

#sidebarCollapse.active span:nth-of-type(2) {
  opacity: 0;
}

#sidebarCollapse.active span:last-of-type {
  transform: rotate(-45deg) translate(1px, -1px);
}

.login-btn-area-border-top {
  border-top: 2px solid var(--secondary-grey-color-code);
}

.logout-btn-area {
  padding-top: 10px;
}

@media only screen and (max-width: 990px) {}

@media (max-width: 768px) {}

/***********End of Sidebar************* */

/********** start of index page style *******/

#content {
  position: relative;
  width: 100%;
  transition: all 0.3s;
  margin-top: 70px;
  background: #f5f6f8;
}

#content-overlay {
  content: "";
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  transition: 0.3s all linear;
}

.inactive-content-overlay {
  display: none;
  transition: 0.3s all linear;
}

.active-content-overlay {
  display: block;
  transition: 0.3s all linear;
}

.page-header-dark {
  color: #fff;
  background-color: #212832;
}

.index-page-area {
  padding: 0px !important;
  margin: 0px !important;
  background: #fff !important;
}

.index-banner-container {
  position: relative;
  background: linear-gradient(-45deg, #99E2FF, #EFFAFF, #76FAC7);
  background-size: 400% 400%;
  animation: gradient 10s ease infinite;
  height: 750px;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}


.index-banner-left-container {
  height: 750px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.index-banner-btn-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  margin-top: 50px;
}

.index-banner-btn-container .index-banner-primary-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color-code);
  color: #fff;
  width: 200px;
  height: 60px;
  border-radius: 5px;
  font-size: 20px;
  font-weight: 500;
  transition: 0.3s;
}

.index-banner-btn-container .index-banner-primary-btn:hover {
  background: var(--primary-color-code);
}

.index-banner-btn-container .index-banner-secondary-btn {
  margin-left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--primary-color-code);
  width: 150px;
  height: 60px;
  border-radius: 5px;
  font-size: 20px;
  font-weight: 500;
  transition: 0.3s;
}

.index-banner-btn-container .index-banner-secondary-btn:hover {
  background: #b3e2ff;
}

.index-banner-btn-container .index-banner-btn-icon {
  font-size: 30px;
  margin-left: 10px;
}

.index-banner-container .index-banner-title-text {
  padding-top: 5%;
  font-size: 65px;
  font-weight: 600;
  color: #000;
}

.index-banner-container .index-banner-info-text {
  color: #333;
}

.index-banner-img {
  width: 100%;
  height: 100%;
}

.index-page-search-box {
  position: relative;
  width: 100%;
  margin-top: 30px;
}

.index-page-search-box .search-icon {
  position: absolute;
  font-size: 60px !important;
  font-weight: 900;
  top: 20px;
  left: 21px;
  color: var(--primary-color-code);
}

.index-page-search-box .search-field {
  padding: 10px 20px 10px 80px;
  font-size: 25px;
  border: 5px solid var(--primary-gray-color-code);
  width: 100%;
  height: 100px;
  border-radius:  5px;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.index-container-title-text {
  font-size: 40px;
  line-height: 46px;
  font-weight: 600;
  margin-bottom: 0px;
  padding: 50px 0px;
}

.custom-bg-dark .index-container-title-text {
  color: #fff;
}

.index-intro-txt-container{
  display: flex; 
  flex-direction: column;
  align-items: start;
}

.index-intro-txt{
  text-align: left;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #474747;
}

.index-intro-img{
  height: 400px;
  width: 100%;
}
.one-index-page-title {
  font-size: 40px;
  font-weight: 600;
  padding: 20px 0px;
}

.three-index-page-title {
  font-size: 25px;
  line-height: 31px;
  font-weight: 600;
  padding: 5px 0px;
}

.index-st-tagline {
  font-size: 18px;
  font-style: italic;
  font-weight: 600;
}

.feedback-user {
  padding: 10px 0px;
}

.feedback-user img {
  height: 100px;
  width: 100px;
  border-radius: 50%;
}

.index-page-section {
  padding: 50px 0px;
  background: #fff;
}

.index-icon-carousel{
  margin: 50px 0px;
  padding: 50px 0px 100px 0px;
}

.index-carousel-container{
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hit-header-content {
  margin-bottom: 80px;
}

.hit-step-container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #fff;
  border-radius:  5px;
  padding: 30px;
  height: 100%;
  box-shadow: 0px 0px 10px 2px var(--secondary-grey-color-code);
  margin: 0px 20px;
}

.hit-step-number {
  display: none !important;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  background: #FAFAFA;
  color: var(--primary-color-code);
  font-size: 25px;
  font-weight: 600;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0px 0px 10px 3px #d0d0d0;
}

.hit-img {
  /* display: none; */
  height: 50px;
  width: 50px;
  margin-bottom: 20px;
}

.hit-title-txt{
  font-size: 25px;
  line-height: 31px;
  font-weight: 600;
  padding: 5px 0px;
  color: #333;
}

.hit-title-info-txt{
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  color: #707070;
  margin-bottom: 0px;
}

.bg-student-testimonial {
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25'%3E%3Cdefs%3E%3ClinearGradient id='a' gradientUnits='userSpaceOnUse' x1='0' x2='0' y1='0' y2='100%25' gradientTransform='rotate(178,768,365)'%3E%3Cstop offset='0' stop-color='%23ffffff'/%3E%3Cstop offset='1' stop-color='%2387cefa'/%3E%3C/linearGradient%3E%3Cpattern patternUnits='userSpaceOnUse' id='b' width='1048' height='873.3' x='0' y='0' viewBox='0 0 1080 900'%3E%3Cg fill-opacity='0.02'%3E%3Cpolygon fill='%23444' points='90 150 0 300 180 300'/%3E%3Cpolygon points='90 150 180 0 0 0'/%3E%3Cpolygon fill='%23AAA' points='270 150 360 0 180 0'/%3E%3Cpolygon fill='%23DDD' points='450 150 360 300 540 300'/%3E%3Cpolygon fill='%23999' points='450 150 540 0 360 0'/%3E%3Cpolygon points='630 150 540 300 720 300'/%3E%3Cpolygon fill='%23DDD' points='630 150 720 0 540 0'/%3E%3Cpolygon fill='%23444' points='810 150 720 300 900 300'/%3E%3Cpolygon fill='%23FFF' points='810 150 900 0 720 0'/%3E%3Cpolygon fill='%23DDD' points='990 150 900 300 1080 300'/%3E%3Cpolygon fill='%23444' points='990 150 1080 0 900 0'/%3E%3Cpolygon fill='%23DDD' points='90 450 0 600 180 600'/%3E%3Cpolygon points='90 450 180 300 0 300'/%3E%3Cpolygon fill='%23666' points='270 450 180 600 360 600'/%3E%3Cpolygon fill='%23AAA' points='270 450 360 300 180 300'/%3E%3Cpolygon fill='%23DDD' points='450 450 360 600 540 600'/%3E%3Cpolygon fill='%23999' points='450 450 540 300 360 300'/%3E%3Cpolygon fill='%23999' points='630 450 540 600 720 600'/%3E%3Cpolygon fill='%23FFF' points='630 450 720 300 540 300'/%3E%3Cpolygon points='810 450 720 600 900 600'/%3E%3Cpolygon fill='%23DDD' points='810 450 900 300 720 300'/%3E%3Cpolygon fill='%23AAA' points='990 450 900 600 1080 600'/%3E%3Cpolygon fill='%23444' points='990 450 1080 300 900 300'/%3E%3Cpolygon fill='%23222' points='90 750 0 900 180 900'/%3E%3Cpolygon points='270 750 180 900 360 900'/%3E%3Cpolygon fill='%23DDD' points='270 750 360 600 180 600'/%3E%3Cpolygon points='450 750 540 600 360 600'/%3E%3Cpolygon points='630 750 540 900 720 900'/%3E%3Cpolygon fill='%23444' points='630 750 720 600 540 600'/%3E%3Cpolygon fill='%23AAA' points='810 750 720 900 900 900'/%3E%3Cpolygon fill='%23666' points='810 750 900 600 720 600'/%3E%3Cpolygon fill='%23999' points='990 750 900 900 1080 900'/%3E%3Cpolygon fill='%23999' points='180 0 90 150 270 150'/%3E%3Cpolygon fill='%23444' points='360 0 270 150 450 150'/%3E%3Cpolygon fill='%23FFF' points='540 0 450 150 630 150'/%3E%3Cpolygon points='900 0 810 150 990 150'/%3E%3Cpolygon fill='%23222' points='0 300 -90 450 90 450'/%3E%3Cpolygon fill='%23FFF' points='0 300 90 150 -90 150'/%3E%3Cpolygon fill='%23FFF' points='180 300 90 450 270 450'/%3E%3Cpolygon fill='%23666' points='180 300 270 150 90 150'/%3E%3Cpolygon fill='%23222' points='360 300 270 450 450 450'/%3E%3Cpolygon fill='%23FFF' points='360 300 450 150 270 150'/%3E%3Cpolygon fill='%23444' points='540 300 450 450 630 450'/%3E%3Cpolygon fill='%23222' points='540 300 630 150 450 150'/%3E%3Cpolygon fill='%23AAA' points='720 300 630 450 810 450'/%3E%3Cpolygon fill='%23666' points='720 300 810 150 630 150'/%3E%3Cpolygon fill='%23FFF' points='900 300 810 450 990 450'/%3E%3Cpolygon fill='%23999' points='900 300 990 150 810 150'/%3E%3Cpolygon points='0 600 -90 750 90 750'/%3E%3Cpolygon fill='%23666' points='0 600 90 450 -90 450'/%3E%3Cpolygon fill='%23AAA' points='180 600 90 750 270 750'/%3E%3Cpolygon fill='%23444' points='180 600 270 450 90 450'/%3E%3Cpolygon fill='%23444' points='360 600 270 750 450 750'/%3E%3Cpolygon fill='%23999' points='360 600 450 450 270 450'/%3E%3Cpolygon fill='%23666' points='540 600 630 450 450 450'/%3E%3Cpolygon fill='%23222' points='720 600 630 750 810 750'/%3E%3Cpolygon fill='%23FFF' points='900 600 810 750 990 750'/%3E%3Cpolygon fill='%23222' points='900 600 990 450 810 450'/%3E%3Cpolygon fill='%23DDD' points='0 900 90 750 -90 750'/%3E%3Cpolygon fill='%23444' points='180 900 270 750 90 750'/%3E%3Cpolygon fill='%23FFF' points='360 900 450 750 270 750'/%3E%3Cpolygon fill='%23AAA' points='540 900 630 750 450 750'/%3E%3Cpolygon fill='%23FFF' points='720 900 810 750 630 750'/%3E%3Cpolygon fill='%23222' points='900 900 990 750 810 750'/%3E%3Cpolygon fill='%23222' points='1080 300 990 450 1170 450'/%3E%3Cpolygon fill='%23FFF' points='1080 300 1170 150 990 150'/%3E%3Cpolygon points='1080 600 990 750 1170 750'/%3E%3Cpolygon fill='%23666' points='1080 600 1170 450 990 450'/%3E%3Cpolygon fill='%23DDD' points='1080 900 1170 750 990 750'/%3E%3C/g%3E%3C/pattern%3E%3C/defs%3E%3Crect x='0' y='0' fill='url(%23a)' width='100%25' height='100%25'/%3E%3Crect x='0' y='0' fill='url(%23b)' width='100%25' height='100%25'/%3E%3C/svg%3E");
  background-attachment: fixed;
  background-size: cover;
  padding: 50px 0px;
  overflow: visible;
}

.testimonial-card {
  padding: 30px;
  margin: 30px;
  border-radius: 5px;
  position: relative;
  background: #fff;
  height: 320px;
  border: 1px solid var(--secondary-grey-color-code);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card-quotes {}

.testimonial-card-quotes img {
  height: 45px !important;
  width: 45px !important;
}

.testimonial-card-user {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}

.testimonial-card-user img {
  height: 70px !important;
  width: 70px !important;
  border-radius: 50%;
}

.testimonial-card-name {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin-left: 20px;
}

.testimonial-card-position {
  font-size: 16px;
  font-weight: 400;
  color: var(--primary-gray-color-code);
  margin-left: 20px;
}

.testimonial-card-quote {
  padding: 10px 0px;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
}

.index-top-user-section {
  padding: 50px 0px;
}

.index-top-user-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  align-content: center;
  flex-direction: row;
  font-size: 25px;
  font-weight: 600;
  text-align: right;
  padding-bottom: 20px;
}

.index-top-user-footer span {
  margin-left: 5px;
}

.custom-bg-light {
  background: var(--primary-background-color-code);
}

.custom-bg-#fff {
  background: #fff;
}

.custom-bg-dark {
  background: var(--primary-color-code);
}

.custom-text-#fff {
  color: #fff;
}

.index-question-banner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0px;
}

.index-question-banner .iqb-title-text {
  font-weight: 900;
  font-size: 28px;
  line-height: 32px;
  padding-bottom: 0px;
  color: #000;
}

.index-question-banner .iqb-left {
  width: 70%;
  margin-right: 5%;
}

.index-question-banner .iqb-info-text {
  font-size: 16px;
  font-weight: 400;
  color: #333333;
}

.index-question-banner .iqb-button {
  border: 3px solid var(--primary-color-code);
  padding: 12px 16px;
  border-radius: 5px;
  color: var(--primary-color-code);
  font-size: 20px;
  font-weight: 500;
}

.index-user-type-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  position: relative;
  padding: 50px 50px 100px 50px;
}

.index-user-type-container .iutc-text-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #fff;
  padding: 40px;
  border-radius:  5px;
  width: 480px;
  height: 100%;
}

.index-user-type-container .iutc-text-area:last-child {
  margin-left: 40px;
}

.index-user-type-container .user-type-img {
  height: 80%;
  width: 80%;
  margin-bottom: 20px;
}

.iutc-text-area .user-type-title-text {
  font-size: 30px;
  font-weight: 600;
  color: #000;
}

.iutc-text-area .user-type-info-text {
  font-size: 18px;
  font-weight: 400;
  color: #707070;
}

.iutc-text-area .user-type-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 50px;
  background: var(--primary-color-code);
  padding-left: 10px;
  border-radius: 5px;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  margin-top: 30px;
  transition: 0.3s;
}

.iutc-text-area .user-type-button:hover {
  background: var(--primary-color-code);
}

.index-user-type-container .user-type-btn-icon {
  margin-left: 10px;
}

.index-img {
  height: 100%;
  width: 100%;
  max-width: 628px;
  max-height: 418px;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;
}

@media only screen and (max-width: 1400px) {
  .index-banner-container .index-banner-title-text {
    font-size: 50px;
    line-height: 56px;
  }
}

@media only screen and (max-width: 996px) {
  .index-banner-container .index-banner-title-text {
    font-size: 65px;
    line-height: 71px;
  }

  .index-banner-img {
    display: none;
  }

  .page-header {
    height: 650px;
  }

  .index-question-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 0px;
  }

  .index-question-banner .iqb-left {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 20px;
  }

  .index-intro-txt-container{
    align-items: center;
  }

  .index-intro-txt{
    text-align: center;
  }
}

@media only screen and (max-width: 768px) {

  .index-banner-container .index-banner-title-text {
    font-size: 50px;
    line-height: 56px;
  }

  .index-banner-container {
    height: 650px;
  }

  .index-banner-left-container {
    height: 0px;
    justify-content: unset;
    margin-top: 120px;
  }

  .index-banner-btn-container {
    flex-direction: column;
  }

  .index-banner-btn-container .index-banner-primary-btn {
    width: 100%;
  }

  .index-banner-btn-container .index-banner-secondary-btn {
    width: 100%;
    margin-left: 0px;
    padding-left: 0px;
  }

  .index-user-type-container {
    flex-direction: column;
    padding: 50px 20px 50px 20px;
  }

  .index-user-type-container .iutc-text-area {
    width: 100%;
    padding: 20px;
  }

  .index-user-type-container .iutc-text-area:last-child {
    margin-left: 0px;
    margin-top: 40px;
  }

  .index-intro-img{
    height: 100%;
    width: 100%;
  }

}

@media only screen and (max-width: 576px) {

  .testimonial-card {
    padding: 20px;
    margin: 0px;
  }

  .testimonial-card-user {
    padding: 10px;
  }

  .testimonial-card {
    box-shadow: none;
  }

  .index-question-banner .iqb-title-text {
    font-size: 22px;
    line-height: 30px;
    padding-bottom: 8px;
  }

  .index-question-banner .iqb-button {
    border: 2px solid var(--primary-color-code);
    padding: 12px 15px;
    border-radius: 5px;
    color: var(--primary-color-code);
    font-size: 18px;
  }

  .index-top-user-footer {
    font-size: 20px;
  }

  .one-index-page-title {
    font-size: 35px;
  }

  .hit-header-content {
    margin-bottom: 50px;
  }

  .index-container-title-text {
    font-size: 30px;
    line-height: 36px;
  }

  .index-intro-txt{
    font-size: 18px;
    line-height: 24px;
  }
}


@media only screen and (max-width: 540px) {
  #content {
    margin-top: 60px;
  }

  .index-top-user-section {
    margin: 0px 10px;
  }

  .hit-step-container {
    margin: 0px 10px;
  }
}

@media only screen and (max-width: 450px) {
  .index-page-search-box .fa-search {
    left: 8%;
  }

  .index-page-search-box .search-field {
    font-size: 20px;
  }
}

@media only screen and (max-width: 350px) {
  .index-banner-container .index-banner-title-text {
    font-size: 35px;
    line-height: 41px;
  }
}


/********** end of index page style ********/

/***** start of question search page *******/
.question-search-area-wrapper {
  position: relative;
}

.total-question-count-area {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.total-question-count-area .total-question-count-text {
  font-size: 14px;
  color: #333333;
}

.total-question-count-title-text {
  font-size: 14px;
  color: #333333;
}

.question-loading-overlay {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: rgba(255, 255, 255, 0.7);
}

.question-overlay-content-area {
  position: absolute;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  color: var(--primary-gray-color-code);
}

.question-search-not-found-div {
  background: #fff;
  padding: 20px;
  border-radius:  5px;
  margin: 50px 0px;
}

/****** end of question search page ******/

/***************** start of all question page ************/

.search-action-main-div {
  position: relative;
  display: inline-flex;
  width: 100%;
  align-items: center;
  align-content: center;
  flex-direction: row;
}

.search-input-box-area {
  position: relative;
  width: 88%;
}

.search-input-box {
  height: 50px;
  width: 100%;
  padding: 5px 80px 5px 25px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  -webkit-box-shadow: 0px 8px 20px rgb(0 0 0 / 6%);
  box-shadow: 0px 8px 20px rgb(0 0 0 / 6%);
  margin-right: 5%;
}

.search-input-box::-webkit-search-cancel-button {
  position: relative;
  left: 5px;
}

.search-input-box::focus {
  outline: 2px solid var(--primary-color-code);
}

.search-input-box::placeholder {
  opacity: 1;
  font-size: 16px;
  padding-left: 0px;
}

.search-form-button {
  position: absolute;
  top: 0px;
  right: 0px;
  font-size: 30px;
  font-weight: 600;
  color: var(--primary-color-code);
  background: none;
  border: none;
  border-left: 1px solid var(--secondary-grey-color-code);
  padding: 0px 15px;
  border-radius: 0px 5px 5px 0px;
  z-index: 100;
  cursor: pointer;
}

.search-form-button:focus {
  outline: var(--primary-color-code);
}

.search-form-button .search-icon {
  font-size: 30px;
  font-weight: 900;
  padding: 10px 0px;
}

.search-question-area {
  border-bottom: 1px solid lightskyblue;
  padding-bottom: 20px;
}

.allquestion-filter-div {
  display: flex;
  width: 100%;
  justify-content: flex-start;
}

.allquestion-filter-div .select-filter-div {
  position: relative;
  margin-right: 20px;
}

.allquestion-filter-div .select-filter-div .filter-title-text {
  position: absolute;
  top: 10px;
  left: 20px;
  color: var(--primary-gray-color-code);
  z-index: 1;
  pointer-events: none;
  font-size: 12px;
}

.allquestion-filter-div .select-filter-div .custom-select {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  width: 200px;
  height: auto;
  border-radius: 5px;
  color: rgb(68, 68, 68);
  padding: 25px 20px 8px 13px;
  -webkit-box-shadow: 0px 8px 20px rgb(0 0 0 / 6%);
  box-shadow: 0px 8px 20px rgb(0 0 0 / 6%);
  border: none;
}

.allquestion-filter-div .select-filter-div .allquestion-down-arrow {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.allquestion-info-area {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}


.filter-btn-area {
  position: relative;
  width: 12%;
  margin-left: 2%;
}

.all-question-filter-btn-area {
  margin-left: 0px;
}

.hide-filter-text {
  display: block;
  visibility: visible;
}

.filter-btn {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: #fff;
  color: rgb(68, 68, 68);
  padding: 12px 0px;
  -webkit-box-shadow: 0px 8px 20px rgb(0 0 0 / 6%);
  box-shadow: 0px 8px 20px rgb(0 0 0 / 6%);
  border: none;
}

.filter-dropdown-menu {
  position: absolute;
  right: 0px;
  top: 40px;
  margin-top: 15px;
  background: #f8f8ff;
  box-shadow: 0 10px 10px 0 rgb(0 0 0 / 20%);
  width: 320px;
  border-radius: 5px !important;
  z-index: 10;
  display: none;
}

.filter-dropdown-area {
  padding: 20px 20px;
  text-align: start;
  background: #fff;
  border-radius: 5px;
}

.filter-title-area p {
  font-size: 18px;
  color: #000;
  font-weight: 600;
  padding: 0px 10px 0px 0px;
}

.filter-category-div {
  margin-bottom: 10px;
}

/* 
.filter-category-div .form-check-label {
  display: flex;
} */

.tagged-filter-title {
  padding-left: 0px;
}

.allquestion-filter-div .tagged-filter-title {
  padding-top: 0px;
}

.tagged-filter-box {
  padding-left: 10px;
}

.tagged-filter-box .form-control {
  border-radius: 5px;
  width: 300px;
  height: 50px;
  max-width: 300px;
}

.filter-action-btn-area {
  padding-left: 10px;
}

.filter-action-btn-area .btn-custom {
  width: 45%;
  font-size: 16px;
  background: var(--primary-color-code);
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  margin-right: 15px;
}

.filter-action-btn-area .btn-custom:hover {
  background: var(--primary-color-code);
  color: #fff;
  opacity: 0.7;
}

.filter-action-btn-area .btn-light {
  width: 45%;
  border: 1px solid var(--secondary-grey-color-code);
}

/* 
.filter-btn-area .arrow-up {
  position: absolute;
  right: 25px;
  top: -10px;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 20px solid #f8f8ff;
} */

.totalQuestionCount {
  padding: 15px;
  font-size: 20px;
  font-weight: 600;
}

.topic-filter-button {
  float: right;
  padding-top: 15px;
}

.more-tag-div-title {
  font-weight: 600;
  padding: 10px 0px;
}

.more-tag-area {
  background: #e8e9eb;
  padding: 15px;
  border-radius:  5px;
  border: 1px solid var(--primary-color-code);
}

.more-tag-btn {
  padding: 0px 15px;
}

.more-tag-btn-cancel {
  position: absolute;
  right: 30px;
}

.result-area hr {
  margin-top: 10px;
  margin-bottom: 0px;
}

.question-info-div {
  font-size: 12px;
  color: var(--primary-gray-color-code);
  padding: 5px 0px;
}

.question-info-div .question-info-text {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.question-info-div .align-center-text {
  display: flex;
  align-items: center;
  justify-content: center;
}

.question-info-div .material-icons-outlined {
  margin-right: 5px;
  font-size: 18px;
}

.question-info-div .align-right-text {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.topic-navbar {
  border-bottom: 1px solid #000;
  margin-bottom: 10px;
}

.quotes-area {
  background: rgba(135, 206, 250, 0.2);
  border-radius:  5px;
}

.quotes-header p {
  padding: 20px 20px;
  font-style: italic;
  font-size: 15px;
}

.quotes-footer {
  background: rgba(0, 124, 199, 0.5);
  position: relative;
  border-bottom-left-radius: 10px !important;
  border-bottom-right-radius: 10px !important;
}

.quotes-double-img-area {
  position: absolute;
  right: 10px;
  top: -30px;
}

.quotes-double-img-area img {
  height: 70%;
  width: 70%;
  padding: 10px;
  background: #fff;
  border-radius: 50%;
  transform: rotate(180deg);
}

.quotes-author-name {
  padding: 10px 0px 10px 10px;
}

.quotes-author-name p {
  font-weight: 600;
  color: #fff;
}

.comment-title-text {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 22px;
}

.comment-title-text .qp-comment-icon {
  margin-right: 5px;
}

.comment-time-text {
  font-size: 12px;
  color: var(--primary-gray-color-code);
}

.add-question-comment-div {
  background: #fff;
  margin-top: 20px;
  padding: 10px 0px 20px 0px;
  border-top: 2px solid var(--secondary-grey-color-code);
}

.result-comment-content-area {
  padding: 0px;
}

.card-title {
  margin: 0;
  color: #999;
}

.card-text {
  color: #000;
  font-size: 13px;
}

/*********** answer editor styling component***************/

.answer-description {
  word-break: break-all;
  margin: 0px 0px 30px 0px;
}

.answer-description p {
  font-size: 16px;
  font-weight: 400;
}

.answer-description pre {
  padding: 10px;
  margin: 10px 0px;
  background: #dcdcdc;
  color: #000;
  height: 400px;
  width: 100%;
  overflow: auto;
}

.answer-description img {
  max-width: 100%;
  max-height: 100%;
  margin: 10px 0px;
}


.answer-description a {
  color: blue;
}

/****************************/

.comment-description {
  display: flex;
  font-size: 15px;
  border-bottom: 1px solid #c7c7c7;
  padding: 5px 0px;
  align-items: center;
  flex-direction: row;
}

.comment-description p {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  word-break: break-word;
}

#comment-user-name {
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  color: var(--primary-color-code);
}

.total-answer-count {
  float: right;
  padding-right: 10px;
}

.total-answer-count i {
  color: var(--primary-gray-color-code);
}

.question-description-footer {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
  margin-top: 20px;
}

.question-user-profile {
  display: flex;
  align-items: center;
  flex-direction: row;
}

.question-user-profile img {
  border-radius: 50%;
  width: 35px;
  height: 35px;
  margin-right: 10px;
}

.question-asked-user-name {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  display: flex;
  flex-direction: row;
  align-items: center;
  color: var(--primary-color-code);
}

.question-asked-user-name .verified-icon{
  font-size: 15px;
  margin-left: 2px;
}

.answer-username-text{
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  display: flex;
  flex-direction: row;
  align-items: center;
  color: var(--primary-color-code);
}

.answer-username-text .verified-icon{
  font-size: 15px;
  margin-left: 2px;
}

.btn-page {
  padding: 5px 8px;
  background: var(--primary-color-code);
  color: #fff;
  border: 5px solid #e1fcfc;
}

.result-content-area {
  background: #fff;
  padding: 10px 25px;
  margin-bottom: 25px;
  border-radius:  5px;
  box-shadow: 0 10px 20px -10px #bebebe;
}

.question-name-text {
  word-break: break-all;
  font-weight: 600;
  font-size: 20px;
  color: var(--primary-color-code);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  height: 30px;
  width: 95%;
}

.question-description {
  word-break: break-all;
  font-size: 14px;
}

.question-tags {
  padding: 5px 0px;
}

.question-tags a {
  background: #e6f7ff;
  color: var(--primary-gray-color-code);
  padding: 8px;
  border-radius:  5px;
  font-size: 12px;
  margin: 0px 5px;
}

.question-tags a:hover {
  background: #cceeff;
}

@media screen and (max-width: 991px) {
  .question-info-div {
    font-size: 10px;
  }

  .question-info-div .question-info-text-title {
    display: none;
    visibility: hidden;
  }

}

@media only screen and (max-width: 540px) {
  .allquestion-filter-div .select-filter-div {
    margin-right: 5px;
  }

  .allquestion-filter-div .select-filter-div .custom-select {
    width: 120px;
    text-align: start;
  }

  .allquestion-filter-div .select-filter-div .filter-title-text {
    position: absolute;
    top: 5px;
    transform: none;
    left: 5px;
    color: var(--primary-gray-color-code);
    z-index: 1;
    pointer-events: none;
    font-size: 12px;
  }

  .allquestion-filter-div .select-filter-div .allquestion-down-arrow {
    right: 5px;
  }

  .add-question-comment-div {
    padding: 5px 0px 10px 0px;
  }

  .filter-dropdown-area {
    padding: 10px;
  }

  .filter-title-area p {
    font-size: 16px;
  }

  .filter-action-btn-area .btn-custom {
    padding: 8px 15px;
    border-radius: 5px;
    margin-right: 15px;
  }
}


@media only screen and (max-width: 426px) {

  .question-name-text {
    font-size: 16px;
    height: 25px;
  }

  .btn-info {
    font-size: 15px;
  }

  .hide-filter-text {
    display: none;
    visibility: hidden;
  }

  .filter-dropdown-menu {
    width: 250px;
  }
}

@media only screen and (max-width: 350px) {

  .allquestion-filter-div .select-filter-div .custom-select {
    width: 100px;
  }
}

/******* end of content area************/

/********* start of pagination css***************/

.pagination_btn_area {
  margin: 20px 0px;
  padding: 5px;
}

.pagination .page-item {
  margin: 0px 3px;
  font-size: 16px;
}

.pagination .page-item .page-link {
  border-radius: 5px;
}


.pagination .page-item.currentpage {
  pointer-events: none;
  cursor: no-drop;
}

/********* end of pagination css***************/

/******** start of Footer *************/

.new_footer_area {
  background: #e9ecef;
}

.new_footer_top {
  padding: 40px 0px;
  position: relative;
  overflow-x: hidden;
}

.new_footer_area .footer_bottom {
  padding-top: 5px;
  padding-bottom: 10px;
}

.footer_bottom {
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  color: #333333;
  padding: 27px 0px;
}

.f-main-title-img {
  height: 35px;
  width: 126px;
  margin-bottom: 10px;
}

.new_footer_top .company_widget p {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  line-height: 28px;
  color: #333333;
  margin-bottom: 40px;
}

.new_footer_top .f_widget.about-widget {
  /* padding-left: 10px; */
}

.new_footer_top .f_widget.about-widget .f_list li {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 11px;
}

.new_footer_top .f_widget.about-widget .f_list li a {
  color: var(--primary-color-code);
}

.new_footer_top .f_widget.about-widget .f_list li a:hover {
  color: #333333;
}

.f_widget.about-widget .f_list li:last-child {
  margin-bottom: 0px;
}

.f_widget.about-widget .f_list li {
  margin-bottom: 15px;
}

.f_widget.about-widget .f_list {
  margin-bottom: 0px;
}

.f_social_icon a {
  padding: 5px;
  display: inline-block;
  text-align: center;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.f_social_icon_btn {
  height: 30px;
  width: 30px;
}

.new_footer_top .f_social_icon a+a {
  margin-left: 4px;
}

.new_footer_top .f-title {
  text-transform: uppercase;
  margin-bottom: 25px;
  font-size: 19px;
  font-weight: 600;
  color: #000;
}

@media only screen and (max-width:768px) {

  .new_footer_top .f-title {
    margin-bottom: 20px;
  }
}


@media only screen and (max-width:540px) {
  .new_footer_top .f_widget.about-widget {
    padding-left: 0px;
    margin-bottom: 30px;
  }

  .new_footer_top .f-title {
    margin-bottom: 10px;
  }

}

/******** end of Footer *************/

/*************Start of question-page css *******/

.report-textarea {
  padding-top: 5px;
}

#question_report_description_other_textbox {
  resize: none;
  overflow: hidden;
}

#question_report_description-error {
  font-family: "Open Sans", sans-serif;
  color: var(--red-warning-color-code);
  font-size: 80%;
  margin: 4px 0px 0px;
}

#question_report_description-error1 {
  font-family: "Open Sans", sans-serif;
  color: var(--red-warning-color-code);
  font-size: 80%;
  margin: 4px 0px 0px;
}

#question_report_description_other_textbox-error {
  font-family: "Open Sans", sans-serif;
  color: var(--red-warning-color-code);
  font-size: 80%;
  margin: 4px 0px 0px;
}

#answer_report_description-error {
  font-family: "Open Sans", sans-serif;
  color: var(--red-warning-color-code);
  font-size: 80%;
  margin: 4px 0px 0px;
}

#answer_report_description-error1 {
  font-family: "Open Sans", sans-serif;
  color: var(--red-warning-color-code);
  font-size: 80%;
  margin: 4px 0px 0px;
}

#answer_report_description_other_textbox-error {
  font-family: "Open Sans", sans-serif;
  color: var(--red-warning-color-code);
  font-size: 80%;
  margin: 4px 0px 0px;
}

.error-404-area {
  margin-top: 50px;
  background: #fff;
  padding: 50px;
  border-radius:  5px;
}

.error-404-area-title {
  padding-top: 10px;
  padding-bottom: 20px;
}

.question_action_btn_area {
  float: right;
}

.question_action_btn {
  display: inline-flex;
  color: #888;
  padding: 10px 10px;
  border-radius: 50%;
  border: 1px solid var(--secondary-grey-color-code);
}

.question_action_btn .material-icons-round {
  font-size: 15px;
}

.question_action_btn:hover {
  color: #fff;
  background: var(--primary-color-code);
  box-shadow: 0px 0px 20px 2px rgb(180, 180, 180);
}

.answer_action_btn {
  background: transparent;
  display: inline-flex;
  color: var(--primary-color-code);
  padding: 10px 10px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  outline: none !important;
  margin: 0px 5px;
}

.answer_action_btn .material-icons-round {
  font-size: 15px;
}

.answer_action_btn:hover {
  color: #fff;
  background: var(--primary-color-code);
  box-shadow: 0px 0px 16px 5px rgba(0, 0, 0, 0.2);
}

.question-content-area {
  background: #fff;
  border-radius:  5px;
  padding: 20px;
}

.title-info-text {
  color: var(--primary-color-code);
  font-size: 18px;
  padding-bottom: 5px;
  font-weight: 600;
}

.question-content-title-text {
  font-size: 30px;
  line-height: 36px;
  font-weight: 600;
  color: #000;
}

.question-info-area {
  display: flex;
  align-items: center;

  padding-top: 5px;
  padding-left: 5px;
  font-size: 11px;
  font-weight: 400;
  color: var(--primary-gray-color-code);
}

.question-view-count {
  display: inline-flex;
  align-items: center;
}

.question-view-count .material-icons-round {
  font-size: 15px;
}

.question-posted-date {
  font-size: 12px;
  line-height: 18px;
  padding-right: 20px;
  font-weight: 500;
}

/********** question editor styling component********************/

.question-content-description {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  padding: 10px;
}

.question-content-description p {
  color: #000;
  word-break: break-all;
}

.question-content-description pre {
  padding: 10px;
  margin: 10px 0px;
  background: #dcdcdc;
  color: #000;
  height: 400px;
  width: 100%;
  overflow: auto;
}

.question-content-description img {
  max-width: 100%;
  max-height: 100%;
  margin: 10px 0px;
}

.question-content-description a {
  color: blue;
}

/***************************/

.question-link {
  color: blue;
}

.tooltip-btn {
  background: none;
  color: var(--primary-color-code);
  cursor: default;
  outline: 0px !important;
  border: none !important;
}

.tooltip-btn:hover {
  background: none;
  border: none;
  color: blue;
}

.tooltip-btn:focus {
  background: none !important;
  outline: 0px !important;
  border: 0px !important;
  box-shadow: none !important;
}

.tooltip-inner {
  font-size: 12px;
}

.add_comment_user {
  background: transparent;
  color: var(--primary-gray-color-code);
  border: none;
}

.result-answer-area:before {
  display: block;
  content: " ";
  margin-top: -200px;
  height: 200px;
  visibility: hidden;
}

.answer-result-content-area {
  background: #deecff;
  padding: 10px 20px;
  border-radius:  5px;
  margin: 20px 0px;
}

.answer-content-info-div {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0px 10px 0px;
}

.answer-title-text {
  font-size: 18px;
  margin-top: 50px;
  padding-bottom: 5px;
  font-weight: 600;
  color: var(--primary-color-code);
}

.add-comment-div-main-area {
  position: relative;
  display: flex;
  width: 100%;
  margin-top: 10px;
}

.add-comment-div-main-area form {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}

.answer_comment_div_main {
  margin-top: 10px;
}

.comment_sub_div_main {
  display: flex;
  flex-direction: column;
  width: 90%;
}

.answer_comment_div_main form {
  width: 100%;
  display: flex;
  flex-direction: row;
}

.answer_comment_div {
  position: relative;
}

.question_page_comment_text_box {
  padding: 5px 10px 5px 10px;
  height: 40px;
  max-height: 200px;
  border-radius: 5px;
  border: 2px solid var(--primary-color-code);
  background: #f6f6f6;
  resize: none;
  overflow: hidden;
  font-size: 16px;
}

.answer_page_comment_text_box {
  padding: 5px 10px;
  height: 40px;
  max-height: 200px;
  border-radius: 5px;
  border: 2px solid var(--primary-color-code);
  background: #f6f6f6;
  resize: none;
  overflow: hidden;
  font-size: 16px;
}

.add_comment_btn {
  display: flex;
  align-items: center;
  height: 40px;
  background: var(--primary-color-code);
  color: #fff;
  font-size: 15px;
  padding: 5px 10px 5px 15px;
  margin-left: 10px;
  border-radius: 5px;
}


.add_comment_btn:hover {
  color: #fff;
}

.post_answer_btn {
  background: #fb8500;
  border: none;
  border-radius: 5px !important;
  font-size: 15px;
  padding: 12px 22px;
  box-shadow: 0px 8px 15px rgb(0 0 0 / 10%);
  transition: all 0.3s ease 0s;
  cursor: pointer;
  outline: none;
  margin-right: 15px;
  color: #fff;
}

.post_answer_btn:hover {
  background: #ff9e30;
  color: #fff;
}

.post-answer-area-info-text {
  margin: 20px 0px;
  font-size: 15px;
  color: #000;
}

.edit_answer_btn {
  background: #fb8500;
  border: none;
  border-radius: 5px !important;
  font-size: 15px;
  padding: 12px 22px;
  box-shadow: 0px 8px 15px rgb(0 0 0 / 10%);
  transition: all 0.3s ease 0s;
  cursor: pointer;
  outline: none;
  margin-right: 15px;
  color: #fff;
}

.edit_answer_btn:hover {
  background: #ff9e30;
  color: #fff;
}


.add_answer_comment_btn_nouser {
  color: blue;
}

.fa-comment-dots {
  color: #474747;
}

.answer-user-profile {
  display: flex;
  align-items: center;
}

.answer-user-profile img {
  border-radius: 50%;
  width: 35px;
  height: 35px;
  margin-right: 10px;
}

.answered-user-name {
  font-size: 15px;
  line-height: 21px;
  color: var(--primary-color-code);
}

.answered-user-name span {
  color: var(--primary-gray-color-code);
}



.posted-time-txt {

  font-size: 10px;
  font-weight: 700;
  color: var(--primary-gray-color-code);
}

.ans_like_btn {
  display: flex;
  align-items: center;
  position: relative;
  background: transparent;
  border: none;
  font-size: 25px;
}

.ans_like_btn .like-ans-heart {
  color: #ff7e7e;
}

.ans_like_btn::focus {
  outline: none;
  border: none;
}

.ans_liked_btn {
  display: flex;
  align-items: center;
  position: relative;
  background: transparent;
  border: none;
  font-size: 25px;
}

.ans_liked_btn .liked-ans-heart {
  color: var(--red-warning-color-code);
}

.tooltiptext {
  visibility: hidden;
  width: 110px;
  background-color: #fff;
  color: #000;
  text-align: center;
  border-radius: 6px;
  padding: 2px 0;
  position: absolute;
  z-index: 1;
  font-size: 10px;
  top: 120%;
  left: 50%;
  margin-left: -60px;
}

.ans_like_btn .tooltiptext::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
}

.ans_liked_btn .tooltiptext::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
}

.ans_like_btn:hover .tooltiptext {
  visibility: visible;
}

.ans_liked_btn:hover .tooltiptext {
  visibility: visible;
}

.action_btn_up {
  position: relative;
}

.action_btn_down {
  position: relative;
}

.action-btn-up-tooltiptext {
  visibility: hidden;
  width: 110px;
  background-color: #000;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 130%;
  left: 50%;
  font-size: 10px;
  margin-left: -60px;
}

.action_btn_up .action-btn-up-tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 54%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #000 transparent transparent transparent;
}

.action_btn_up:hover .action-btn-up-tooltiptext {
  visibility: visible;
}

.action-btn-down-tooltiptext {
  visibility: hidden;
  width: 110px;
  background-color: #000;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  top: 130%;
  left: 50%;
  font-size: 10px;
  margin-left: -60px;
}

.action_btn_down .action-btn-down-tooltiptext::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 54%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #000 transparent;
}

.action_btn_down:hover .action-btn-down-tooltiptext {
  visibility: visible;
}

.answer_action_btn_area {
  float: right;
}

.report_text {
  font-family: "Open Sans", sans-serif;
  color: var(--primary-gray-color-code);
  font-size: 80%;
  margin: 4px 0px 0px;
}


.php-error-msg {
  font-family: "Open Sans", sans-serif;
  color: var(--red-warning-color-code);
  font-size: 80%;
}

#answer_comment_text_box-error {
  display: block;
  font-family: "Open Sans", sans-serif;
  color: var(--red-warning-color-code);
  font-size: 80%;
}

#question_description-error {
  font-family: "Open Sans", sans-serif;
  color: var(--red-warning-color-code);
  font-size: 80%;
  margin: 4px 0px 0px;
}

#question_tags-error {
  font-family: "Open Sans", sans-serif;
  color: var(--red-warning-color-code);
  font-size: 80%;
  margin: 4px 0px 0px;
}

#answer_description-error {
  font-family: "Open Sans", sans-serif;
  color: var(--red-warning-color-code);
  font-size: 80%;
  margin: 4px 0px 0px;
}

#question_comment_text_box-error {
  font-family: "Open Sans", sans-serif;
  color: var(--red-warning-color-code);
  font-size: 80%;
  margin: 4px 0px 0px;
}

@media only screen and (max-width: 540px) {

  .answer-result-content-area {
    padding: 20px 10px;
  }

  .add_question_comment_btn {
    margin-left: 10px;
  }

  .add_answer_comment_btn {
    margin-left: 10px;
  }

  .add_question_comment_btn .qp-send-btn-icon {
    font-size: 18px;
  }

  .answered-user-name span {
    display: none;
  }

  .question-content-title-text {
    font-size: 20px;
    line-height: 26px;
  }

}

@media only screen and (max-width: 426px) {
  /* .answer-user-profile img {
    border-radius: 50%;
    width: 25px;
    height: 25px;
  } */
}

/***********end of question page ******************/

/***********start of post question ******************/

.add-answer-div {
  margin: 20px 0px 50px;
}

.answer-thankyou-text h5 {

  font-weight: 800;
}

.post-answer-info-text {
  font-size: 14px;
  font-weight: 400;
  color: var(--primary-gray-color-code);
}

.action-btn {
  background: #fb8500;
  color: #fff;
  border: none;
  border-radius: 5px !important;
  font-size: 15px;
  padding: 12px 18px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease 0s;
  cursor: pointer;
  outline: none;
  margin-right: 15px;
}

.action-btn:hover {
  background: #ffa138;
  color: #fff;
}

/***********end of post question ******************/

/***********start of  ask a question css******************/

.ask-question-div {
  display: block;
  margin: auto;
  padding-top: 50px;
  padding-bottom: 50px;
}

.ask-question-content-area {
  background: #fff;
  padding: 30px;
  border-radius:  5px;
}

.ask-question-content-area .form-group {
  margin-top: 20px;
}

.ask-question-title {
  font-size: 25px;
  font-weight: 700;
  padding-top: 10px;
  padding-bottom: 10px;
}

.ask-question-input-field {
  border: 1px solid var(--primary-color-code);
  border-radius: 5px;
}

.ask-question-label {
  color: #000080;
  font-weight: 600;
  font-size: 17px;
}

.ask-question-info-text {
  font-size: 80%;
  color: var(--primary-gray-color-code);
}

.ck-editor__editable {
  min-height: 150px !important;
  max-height: 400px !important;
  border: 1px solid var(--primary-color-code) !important;
  background: #fff !important;
}

.tokenize>.tokens-container {
  border: 2px solid var(--primary-color-code) !important;
  background: #f6f6f6 !important;
}

.post_question_btn {
  background: var(--primary-color-code);
  padding: 10px;
  font-weight: 600;
  color: #fff;
  border-radius:  5px;
  animation: all 0.3s;
}

.post_question_btn:hover {
  opacity: 0.8;
  color: #fff;
}

.ask-question-faq .card-header {
  background: lightskyblue;
  font-weight: 600;
  color: #000;
}

.ask-question-faq .card-header:hover {
  text-decoration: none !important;
}

.tox-tinymce{
  border-radius: 5px !important;
}

.select2-container--default .select2-selection--multiple {
  background: #fff;
  border: 1px solid var(--primary-color-code);
  border-radius: 5px;
  cursor: text;
  min-height: 45px;
  position: relative;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: 2px solid var(--primary-color-code);
  outline: 0;
}

.select2-container .select2-search--inline .select2-search__field {
  margin-top: 9px;
  margin-left: 10px;
  padding: 0;
  max-width: 100%;
  resize: none;
  height: 25px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: var(--primary-color-code);
  padding: 0px 20px 5px 8px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  color: #fff;
  font-weight: 600;
  padding-top: 4px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-left: 1px solid #aaa;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  color: #fff;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  padding: 0 4px;
  position: absolute;
  left: unset;
  right: 0 !important;
  top: 0;
  padding-bottom: 5px;
}

.countdown{
  font-size: 25px;
  line-height: 31px;
  padding: 0px 10px;
  font-weight: 900;
  text-align: center;
  color: #000;
}

@media only screen and (max-width: 426px) {
  .ask-question-background {
    position: absolute;
    left: 0;
    height: 200px;
    width: 200px;
    z-index: -1;
  }
}

/***********end of  ask a question css******************/

/*****My account *********/

.inputfile {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.img-container {
  display: block;
  margin: 0 auto;
}

.labels {
  font-size: 14px;
}

.add-experience:hover {
  color: #fff;
  background: var(--primary-color-code);
  border: 1px solid var(--primary-color-code)';

}

.rounded-circle {
  width: 100px;
  height: 100px;
  border-radius: 100px;
  margin-bottom: 10px;
}

/***********end of my account page ******************/

/**************start of edit profile page *******/

.edit_profile_tab .form-group {
  margin-bottom: 15px;
}

.edit-profile-content-area {
  padding: 50px 10%;
  border-radius:  5px;
}

.edit-profile-area {
  padding: 20px 0px 0px 0px;
  background: #fff;
}

.edit-profile-header {
  border-bottom: 1px solid var(--primary-color-code);
}

.edit-profile-header-text {
  font-size: 25px;
  font-weight: 600;
  padding: 20px 40px;
}

.edit-profile-mobile-view {
  display: none;
  margin: 20px 0px 40px 0px;
  text-align: center;
}

.edit-profile-tab-back-btn {
  display: flex;
  align-items: center;
  border: none;
  background: transparent;
  width: 100%;
  text-align: start;
  padding: 20px 0px 20px 0px !important;
}

.edit-profile-mobile-view .epmv-user-profile {
  width: 100px;
  height: auto;
  border-radius: 50%;
  border: 2px solid #2c2f3f;
  padding: 2px;
}

.edit-profile-mobile-view .epmv-user-name {
  text-transform: capitalize;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.25;
  padding: 10px 0px 0px 0px;
  margin-bottom: 0px;
}

.edit-profile-mobile-view .epmv-user-email {
  color: var(--primary-gray-color-code);
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}

.edit-profile-nav-pill-link-area {
  border-right: 1px solid var(--primary-color-code);
  height: 100%;
}

.edit_profile_nav_link {
  display: flex;
  align-items: center;
  position: relative;
  padding: 20px 0px 20px 40px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 0px !important;
  color: #000;
}

.edit_profile_nav_link .material-icons-round {
  margin-right: 20px;
  background: rgb(201, 201, 201);
  border-radius: 5px;
  padding: 7px 8px;
}

.edit_profile_nav_link.active {
  background-color: #f6f6ff !important;
  border-left: 5px solid var(--primary-color-code);
  color: #000 !important;
  margin-right: 2px;
  transition: 0.3s linear all;
}

.edit_profile_nav_link.active:after {
  font-family: "Material Icons";
  content: "\e5cc";
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 25px;
  font-weight: 300;
}

.edit-profile-area .row {
  margin-left: 0px !important;
  margin-right: 0px !important;
}

.edit-profile-area .col-md-12 {
  padding-left: 0px !important;
  padding-right: 0px !important;
}

select#sub-menu {
  width: 100%;
  color: #000;
  margin: 15px 0;
  padding: 13px;
  border: 1px solid #333;
  -webkit-appearance: none;
  appearance: none;
  -moz-appearance: none;
  background: url("../images/icon/drop-arrow.png") right no-repeat;
}

select#sub-menu,
select#sub-menu>option {
  font-size: 1.8rem;
  line-height: 28px;
}

select#sub-menu,
select#sub-menu>option {
  font-size: 1rem;
  line-height: 20px;
}

.select2-container {
  width: 100% !important;
}

.user-info-tab-title {
  margin-bottom: 20px;
  padding-left: 10px;
}

.user-info-tab-title-text {
  font-size: 22px;
  font-weight: 600;
  border-bottom: 2px solid var(--secondary-grey-color-code);
  padding: 10px 0px;
}

.user-info-tab-sub-title-text {
  font-size: 18px;
  font-weight: 600;
  padding: 10px 0px;
  text-decoration: underline;
  text-decoration-color: var(--primary-color-code);
}

.edit-profile-input {
  background: #fff;
  height: 45px;
  border-radius: 0px;
  border: 1px solid var(--primary-color-code);
}

.edit-profile-select {
  height: 45px;
  border-radius: 0px;
  border: 1px solid var(--primary-color-code);
}


.user_about_us {
  height: 100px;
}

.edit-profile-label {
  font-size: 14px;
  font-weight: 700;
  padding: 5px 25px 5px 0px;
}

.edit-profile-btn {
  background: var(--primary-color-code);
  border: none;
  border-radius: 5px !important;
  font-size: 15px;
  padding: 12px 22px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease 0s;
  cursor: pointer;
  outline: none;
  margin-right: 15px;
  color: #fff;
}

.edit-profile-btn:hover {
  opacity: 0.9;
  color: #fff;
}

.password_field {
  position: relative;
}

.password_field #TogglePassword {
  font-size: 20px;
  position: absolute;
  right: 30px;
  top: 45px;
  cursor: pointer;
  color: var(--primary-gray-color-code);
}


.user-info-profile-image-area {
  position: relative;
  margin: 10px 0px 20px 0px;
}

.user-info-profile-image {
  height: 200px;
  width: 200px;
  border-radius: 50%;
}

.user-info-profile-image-area button {
  position: absolute;
  left: 160px;
  top: 10%;
  background: #2f2c44;
  border-radius: 50%;
  border: none;
  padding: 5px;
}

.user-info-profile-image-area button:focus {
  border: none;
  outline: none;
}

.edit-profile-image-pencil {
  height: 40px;
  width: 40px;
  padding: 10px;
  filter: invert(1);
}

.user-info-tab-area {
  padding: 20px 0px 50px 0px;
}

.user-info-edit-area {
  padding: 0px;
}

.edit-profile-content-area .tab-content {
  background: #fff;
  border-radius: 0px;
  padding: 0px 30px;
}

#profileImageModal input[type="file"] {
  padding-bottom: 36px;
}

.change-password-area .btn-group {
  display: inline-flex;
  align-items: center;
}

#user_background_info_form .form-input-info {
  display: block;
}

@media only screen and (max-width: 992px) {
  .user-info-tab-title-text {
    font-size: 30px;
  }

  .edit_profile_container {
    padding: 0px;
  }

  .edit-profile-content-area {
    padding: 0px;
  }

  .user-info-tab-title-text {
    font-size: 23px;
  }

  .edit-profile-content-area .tab-content {
    margin: 0px 100px;
    background: #fff;
    border-radius: 20px;
  }

  .edit-profile-area {
    border-radius: 0px;
    background: transparent;
    padding: 0px;
    margin-bottom: 100px;
  }

  .edit-profile-header {
    border: none;
  }

  .edit-profile-header-text {
    text-align: center;
    font-size: 18px;
    padding: 10px 0px;
  }

  .edit-profile-nav-pill-link-area {
    border: none;
    margin: 0px 100px;
    background: #fff;
    border-radius: 20px;
  }

  .edit-profile-mobile-view {
    display: block;
  }

  .edit_profile_nav_link.active {
    margin-right: 0px;
  }

  .edit_profile_nav_link :after {
    font-family: "Material Icons";
    content: "\e5cc";
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 25px;
    font-weight: 300;
  }

  .user-info-tab-area {
    padding: 10px 0px 50px 0px;
  }

  .user-info-tab-title {
    padding-left: 0px;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 760px) {
  .edit-profile-content-area {
    padding: 50px;
  }

  .user-info-tab-title-text {
    font-size: 25px;
  }

  .edit-profile-nav-pill-link-area {
    border: none;
    margin: 0px 50px;
    background: #fff;
    border-radius: 20px;
  }
}

@media only screen and (max-width: 540px) {
  .edit_profile_container {
    padding: 0px;
  }

  .edit-profile-content-area {
    padding: 0px;
  }

  .user-info-tab-title-text {
    font-size: 23px;
  }

  .edit-profile-content-area .tab-content {
    margin: 0px 10px;
    background: #fff;
    border-radius: 20px;
  }

  .edit-profile-nav-pill-link-area {
    border: none;
    margin: 0px 10px;
    background: #fff;
    border-radius: 20px;
  }

}

/**************end of my account page *******/

/**************start of user page *********/

#user_report_description-error {
  font-family: "Open Sans", sans-serif;
  color: var(--red-warning-color-code);
  font-size: 80%;
  margin: 4px 0px 0px;
}

#user_report_description-error1 {
  font-family: "Open Sans", sans-serif;
  color: var(--red-warning-color-code);
  font-size: 80%;
  margin: 4px 0px 0px;
}

#user_report_description_other_textbox-error {
  font-family: "Open Sans", sans-serif;
  color: var(--red-warning-color-code);
  font-size: 80%;
  margin: 4px 0px 0px;
}

.user_profile_img {
  height: 200px;
  width: 200px;
  border-radius:  5px;
  object-fit: contain;
  display: inline-block;
}

.user-profile-page-headings {
  font-size: 12px;
  font-weight: bold;
  color: var(--primary-gray-color-code);
  padding: 30px 0px 15px 0px;
}

.user-skills ul {
  list-style-type: none;
  padding: 0;
  font-size: 14px;
  font-weight: 600;
}

.user-profile-designation {
  color: blue;
  font-size: 15px;
  font-weight: 600;
  padding-left: 10px;
}

.edit-user-div {
  position: relative;
  float: right;
  right: -20px;
  top: -10px;
  font-size: 15px;
  color: var(--primary-color-code);
  padding: 9px 12px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.edit-user-div .fa-user-cog {
  color: var(--primary-color-code);
  font-size: 15px;
}

.edit-user-div:hover {
  background: var(--primary-color-code);
}

.edit-user-div:hover .fa-user-cog {
  color: #fff;
}

.report-user-div {
  position: relative;
  float: right;
  right: -25px;
  top: -20px;
  font-size: 15px;
  color: var(--primary-color-code);
  padding: 8px 12px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.report-user-div .fa-flag {
  color: var(--primary-color-code);
  font-size: 15px;
}

.report-user-div:hover {
  color: #fff;
  background: var(--primary-color-code);
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.report-user-div:hover .fa-flag {
  color: #fff;
}

.report-body-footer-area {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.custom-report-btn {
  display: flex;
  align-items: center;
}

.custom-report-btn span {
  margin-right: 5px;
}

.error-404-img {
  height: 90%;
  width: 90%;
}

.myfeed-tab-title {
  display: flex;
  align-items: center;
  font-size: 35px;
  font-weight: 600;
  padding-bottom: 15px;
}

.myfeed-tab-title-img {
  height: 40px;
  width: 40px;
  margin-right: 10px;
}

.myfeed-highlight-area {
  margin-top: 20px;
}

.user-about-us {
  font-size: 16px;
  color: #333333;
}


.user-about-us-div {
  padding-top: 20px;
  padding-bottom: 20px;
}

.user-about-us-div-title {
  font-size: 20px;
  font-weight: 600;
}

.user-about-us-tag-div {
  margin: 30px 0px 40px 0px;
}

.user-about-us-div-myskill a {
  background: #e6f7ff;
  color: #000;
  padding: 8px;
  border-radius: 5px;
  font-size: 15px;
  margin: 0px 5px;
}

.user-aboutus-skills {
  font-size: 25px;
  font-weight: 600;
  display: inline-block;
  padding: 5px 15px 5px 15px;
  color: #000080;
}

.question-asked-by-user-div {
  overflow: hidden;
  position: relative;
}

.question-asked-by-user-div p {
  font-weight: 500;
  color: var(--primary-color-code);
  border-bottom: 1px solid var(--secondary-grey-color-code);
  font-size: 16px;
  line-height: 16px;
  word-break: break-word;
  margin-top: 10px;
  padding-bottom: 10px;
}

.question-asked-by-user a {
  height: 16px;
  width: 74%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
}

.question-asked-by-user span {
  color: var(--primary-gray-color-code);
  font-size: 12px;
  float: right;
  font-weight: 300;
}

.answered-question-by-user-div {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.answered-question-by-user-div p {
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
  color: var(--primary-color-code);
  border-bottom: 1px solid var(--secondary-grey-color-code);
  word-break: break-word;
  margin-top: 10px;
  padding-bottom: 10px;
}

.answer-given-by-user a {
  height: 16px;
  width: 74%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
}

.answer-given-by-user span {
  color: var(--primary-gray-color-code);
  font-size: 12px;
  font-weight: 300;
  float: right;
}

.notification-for-user-div {}

.notification-for-user-div p {
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
  color: var(--primary-color-code);
  border-bottom: 1px solid var(--secondary-grey-color-code);
  word-break: break-word;
  margin-top: 10px;
  padding-bottom: 10px;
}

.notification-for-user-div a {
  height: 16px;
  width: 75%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
}

.notification-for-user-div span {
  color: var(--primary-gray-color-code);
  font-size: 12px;
  float: right;
  font-weight: 300;
}

.like-tag-view-container {
  position: relative;
  margin: 20px 0px;
}

.like-tag-view-container .like-tag-sub-div {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--secondary-grey-color-code);
}

.like-tag-view-container .like-tag-sub-div:last-child {
  border-bottom: none;
}

.like-tag-view-container .like-tag-sub-div div {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.like-tag-view-container .ltsd-tag-name {
  background: #e6f7ff;
  color: #000;
  padding: 8px;
  border-radius: 5px;
  font-size: 15px;
  margin: 0px 5px;
}

.like-tag-view-container .ltsd-score-text {
  font-size: 16px;
  color: #000;
  font-weight: 500;
  padding: 0px 15px;
}

.like-tag-view-container .ltsd-score-text:first-child {
  border-right: 1px solid var(--secondary-grey-color-code);
}

.like-tag-view-container .ltsd-score-text span {
  color: var(--primary-gray-color-code);
  font-size: 14px;
  font-weight: 400;
}

@media only screen and (max-width: 540px) {
  .question-asked-by-user a {
    width: 65%;
  }

  .answer-given-by-user a {
    width: 65%;
  }

  .notification-for-user-div a {
    width: 65%;
  }
}

@media only screen and (max-width: 426px) {

  .user_profile_img {
    height: 200px;
    width: 200px;
    border-radius:  5px;
    object-fit: contain;
  }

  .error-404-img {
    height: 100%;
    width: 100%;
  }
}

/**** end of user page*****/

/****** start of users page *****/

.search-user-page {
  background: transparent;
}

.search-user-page-banner-div {
  height: 400px;
  width: 100%;
  background: var(--primary-background-color-code);
  display: flex;
  justify-content: center;
  align-items: center;
}

.search-user-page-banner-div .users-page-title {
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 0px;
  line-height: 50px;
}

.search-user-page-banner-div .users-page-title span {
  background: var(--primary-color-code);
  color: #fff;
}

.search-user-page-banner-div .users-page-info {
  font-size: 18px;
  line-height: 24px;
  color: #333333;
  padding: 20px 15%;
}

.top-users-search-input-containter {
  display: flex;
  flex-direction: row;
  margin: 40px 15% 0px 15%;
}

.users-search-input-containter {
  margin: 40px 15% 0px 15%;
}

.search-user-page-banner-div .users-search-input-div {
  width: 100%;
  position: relative;
}

.users-search-input-div .users-search-input {
  padding: 20px;
  height: 70px;
  border-radius:  5px;
}

.search-user-page-banner-div .top-users-search-input-div {
  width: 80%;
  position: relative;
}

.top-users-search-input-div .users-search-input {
  padding: 20px;
  height: 70px;
  border-radius:  5px;
}

.user-search-btn {
  background: #fff;
  position: absolute;
  top: 5px;
  right: 7px;
  height: 60px;
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none !important;
  border-left: 1px solid #84c1e7;
}

.users-search-input-div .search-icon {
  color: var(--primary-color-code);
  font-size: 35px;
  font-weight: 600;
}

.top-users-search-input-div .search-icon {
  color: var(--primary-color-code);
  font-size: 35px;
  font-weight: 600;
}

.search-user-page-banner-div .users-search-input-info-text {
  text-align: left;
  font-size: 14px;
  margin-left: 15%;
  margin-top: 5px;
}

.search-user-page .user-list-container {
  padding: 50px 0px;
}


.search-user-page .user-list-container .user-list-header {
  margin: -10px 0px 20px 0px;
}

.search-user-page .user-list-container .user-list-header .user-list-user-count-text {
  font-size: 22px;
  font-weight: 600;
  border-bottom: 1px solid var(--secondary-grey-color-code);
  padding-bottom: 10px;
}

.search-user-page .user-list-container .user-info-div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0px 0px 10px 5px var(--secondary-grey-color-code);
  border-radius: 5px;
  transition: all 0.3s ease;
  padding: 0px;
  background: #fff;
  height: 100%;
  width: 100%;
}

.top-user-info-div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0px 0px 10px 5px var(--secondary-grey-color-code);
  border-radius: 5px;
  transition: all 0.3s ease;
  padding: 0px;
  background: #fff;
  height: 100%;
  width: 100%;
}

.search-user-page .user-list-container .user-info-container-div {
  padding: 20px;
}

.top-user-info-div .user-info-container-div {
  padding: 20px;
}

.search-user-page .user-list-container .user-info-div:hover {
  box-shadow: 0px 0px 30px 1px rgba(0, 124, 199, 0.3);
  transform: scale(1.01);
}

.top-user-info-div .top-user-view-profile-btn {
  width: 100%;
  display: block;
  background: var(--primary-color-code);
  color: #fff;
  padding: 10px 0px;
  border-radius: 0px 0px 5px 5px;
  font-weight: 500;
  font-size: 16px;
}

.top-user-info-div .top-user-view-profile-btn:hover {
  background: var(--primary-color-code);
  color: #f1f1f1;
}

.top-user-info-div .top-user-profile-info-div {
  display: flex;
  justify-content: space-around;
  padding: 20px 0px;
  background: #071d2b;
  border-radius: 0px 0px 5px 5px;
}

.top-user-info-div .top-user-profile-info-div .top-user-profile-info-sub-div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.top-user-info-div .top-user-profile-info-div .top-user-profile-info-sub-div div {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.top-user-info-div .top-user-profile-info-img {
  height: 30px;
  width: 30px;
  margin-right: 10px;
}

.top-user-info-div .top-user-profile-icon {
  color: #fff;
  font-size: 20px;
  margin-right: 10px;
}

.top-user-profile-title-text {
  margin-bottom: 0px;
  font-size: 20px;
  line-height: 20px;
  color: #fff;
  font-weight: 600;
}

.top-user-profile-info-text {
  font-size: 18px;
  margin-bottom: 0px;
  font-weight: 400;
  color: var(--primary-color-code);
}

.users-page-user-img {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  box-shadow: 0 13px 26px rgb(0 0 0 / 20%), 0 3px 6px rgb(0 0 0 / 20%);
}

.users-page-fullname {
  font-size: 18px;
  margin-top: 20px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 0px;
  word-break: break-word;
}

.users-page-username {
  color: var(--primary-gray-color-code);
  font-size: 14px;
  margin-bottom: 15px;
  font-weight: 400;
  word-break: break-all;
}

.user-page-view-btn {
  width: 100%;
  display: block;
  background: var(--primary-color-code);
  color: #fff;
  padding: 10px 0px;
  border-radius: 0px 0px 5px 5px;
  font-weight: 500;
  font-size: 16px;
}

.user-page-view-btn:hover {
  background: var(--primary-color-code);
  color: #f1f1f1;
}

.user-page-navigation {
  margin-top: 50px;
}

.top-user-tag-area .select2-selection--single {
  display: flex;
  align-items: center;
  border: 1px solid #d5dae2;
  padding: 15px 15px;
  min-height: 45px;
  font-size: 15px;
  line-height: 15;
  font-weight: normal;
}

.top-user-tag-area .select2-selection--single .select2-selection__arrow {
  right: 10px;
  top: 10px;
}

@media only screen and (max-width: 992px) {
  .search-user-page-banner-div .users-page-info {
    color: #333333;
    padding: 5px 10%;
  }
}


@media only screen and (max-width: 540px) {
  .search-user-page-banner-div .users-page-title {
    font-size: 35px;
  }

  .search-user-page-banner-div .users-page-info {
    color: #333333;
    padding: 5px 5%;
  }

  .search-user-page-banner-div .users-search-input-div {
    width: 100%;
    position: relative;
  }

  .users-search-input-containter {
    margin: 40px 0px 0px 0px;
  }

  .search-user-page-banner-div .users-search-input-info-text {
    margin-left: 0px;
  }

  .search-user-page .user-list-container {
    padding: 20px 10px 50px 10px;
    overflow-x: hidden;
  }

  .search-user-page .user-list-container.top-user-list-container {
    padding: 50px 20px 50px 20px;
  }

  .users-page-user-img {
    height: 50px;
    width: 50px;
  }

  .users-page-fullname {
    margin-top: 10px;
  }

  .users-page-username {
    margin-bottom: 10px;
  }

  .user-list-container .mb-5 {
    margin-bottom: 1rem !important;
  }

  .top-users-search-input-containter {
    margin: 40px 0px 0px 0px;
  }
}

@media only screen and (max-width: 426px) {
  .users-page-title {
    font-size: 25px;
  }

  .users-search-input {
    margin-left: 0%;
    width: 100%;
  }
}

/**** end of users page ****/

/****** start of tags page *****/

.tags-info-div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  padding: 20px 10px;
  box-shadow: 0px 0px 10px 5px var(--secondary-grey-color-code);
  border-radius: 5px;
  transition: all 0.3s ease;
}

.tags-info-div:hover {
  box-shadow: 0px 0px 30px 1px rgb(0 124 199 / 30%);
  transform: scale(1.01);
}

.tag-name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--secondary-grey-color-code);
}

.tag-description {
  font-size: 14px;
  color: var(--primary-gray-color-code);
}

.tag-description-ellipsis {
  white-space: normal;
  text-overflow: ellipsis;
  overflow: hidden;
  height: 95px;
}

.tag-description-read-more-btn {
  cursor: pointer;
  font-size: 14px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--secondary-grey-color-code);
  color: var(--primary-color-code);
}

.tag-description-show-less-btn {
  cursor: pointer;
  font-size: 14px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--secondary-grey-color-code);
  color: var(--primary-color-code);
}


@media only screen and (max-width: 540px) {
  .tags-info-div {
    padding: 20px 5px;
  }
}

/**** end of users page ****/

/**** start of myfeed page ****/

.myfeed-user-profile-main-area {
  padding: 50px 5% 80px 5%;
  border-radius:  5px;
}

.myfeed-navigation ul {
  /* margin-bottom: 1rem; */
}

.myfeed-content {
  padding: 50px;
  background: #fff;
  border-radius: 20px;
}

.myfeed-nav-item {
  display: block;
  padding: 0px;
  width: auto;
}

.myfeed-nav-item .nav-link {
  display: flex;
  align-items: center;
  position: relative;
  background: none;
  color: var(--primary-gray-color-code);
  font-size: 15px;
  justify-content: center;
}

.myfeed-nav-item .nav-link.active {
  background: none;
  font-weight: 600;
  background: var(--primary-color-code);
  color: #fff;
  text-shadow: 0px 0px 1px #000;
}

.myfeed-nav-item .nav-link.active:after {
  content: "";
  position: absolute;
  left: 10px;
  top: 50px;
  width: 0;
  height: 0;
  display: inline-block;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 20px solid #f8f9fa;
}

.user-about-us-div-overview {
  padding-top: 20px;
}

.user-about-overview-btngroup {
  padding: 20px 0px;
  display: inline-block;
}

.overview-btn {
  width: 150px;
  margin: 0px 10px;
  padding: 12px 16px;
  font-weight: 600;
  font-size: 30px;
  border-radius: 5px;
  border: none;
  text-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
  border: 2px solid transparent;
  /* box-shadow: 0 25px 30px rgba(59, 2, 97, 0.2); */
  margin-bottom: 10px;
}

.overview-btn:hover {
  text-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(59, 2, 97, 0.4);
  /* box-shadow: 0 25px 30px rgba(59, 2, 97, 0.4); */
}

.o-q-btn {
  background: #b3e2ff;
}

.o-a-btn {
  /* background: #ffd199; */
  background: #b3e2ff;
}

.o-l-btn {
  /* background: #ffb3b3; */
  background: #b3e2ff;
}

.overview-btngroup-img {
  height: 25px;
  width: 25px;
}

.user-about-us-div-social {
  padding-top: 20px;
}

.user-about-social-btngroup {
  padding-top: 20px;
}

.user-about-social-btngroup ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding-left: 0px;
}

.user-about-social-btngroup ul li {
  margin-bottom: 5px;
}

.user-about-social-btngroup ul li a {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: flex-start;
}

.user-about-social-btn {
  height: auto;
  width: 55px;
  padding: 10px 10px;
}

.user-about-social-link-text {
  padding-top: 10px;
  color: #000;
  font-size: 16px;
}

.user-about-social-link-text:hover {
  color: var(--primary-color-code);
}

.myfeed-tab-content {
  position: relative;
  background: #fbfbfd;
  padding: 20px 30px;
  /* border-radius: 20px; */
  word-break: break-all;
  min-height: 500px;
}

.myfeed-user-profile {
  display: flex;
  flex-direction: column;
}

.myfeed-user-profile-img-area {
  display: flex;
}

.myfeed-user-profile-img {
  height: 200px;
  width: 200px;
  border-radius: 50%;
  padding: 1px;
  float: left;
}

.myfeed-user-list-container {
  float: left;
  padding-top: 10px;
  padding-bottom: 10px;
}

.myfeed-user-list-container p {
  display: flex;
  align-items: center;
  flex-direction: row;
  padding: 0px;
  word-break: break-all;
}

.myfeed-user-profile-name {
  text-transform: capitalize;
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
  padding: 10px 0px 0px 0px;
}

.myfeed-user-profile-username {
  color: var(--primary-gray-color-code);
  font-size: 18px;
  font-weight: 300;
  line-height: 24px;
  padding: 0px 0px 10px 0px;
  overflow: hidden;
  word-break: break-all;
}

.user-profile-highlights {
  font-weight: 600;
  font-size: 20px;
}

.myfeed-edit-profile-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0px;
  font-weight: 500;
  font-size: 18px;
  border: 1px solid #d0d0d0;
  border-radius: 5px;
  margin: 10px 0px 30px 0px;
  width: 100%;
}

.myfeed-edit-profile-btn:hover {
  border: 1px solid #d0d0d0;
}

.user-background-profile-info {
  display: flex;
  align-items: flex-start;
  color: #333333;
  font-size: 15px;
  padding: 5px 0px;
}

.user-background-profile-info span {
  margin-right: 5px;
}

.user-action-login-div {
  background: #fff;
  margin: 50px 0px;
  border-radius:  5px;
}

.user-action-login-content-area {
  padding: 50px;
}

.user-action-login-img {
  height: 100%;
  max-height: 400px;
  width: 100%;
}

.user-action-login-div-title {
  font-size: 45px;
  line-height: 45px;
  font-weight: 600;
  padding-top: 10px;
  padding-bottom: 30px;
}

.myfeed-nav-icon {
  margin-right: 5px;
}

@media only screen and (max-width: 1150px) and (min-width: 991px) {
  .myfeed-user-profile-main-area {
    padding: 30px 30px 50px 30px;
  }

  .myfeed-nav-item .nav-link {
    font-size: 16px;
    padding: 6px 10px;
  }
}

@media only screen and (max-width: 992px) and (min-width: 550px) {
  .myfeed-nav-item .nav-link.active:after {
    top: 55px;
  }
}

@media only screen and (max-width: 991px) {
  .myfeed-navigation {
    margin-top: 20px;
    padding-top: 10px;
  }

  .myfeed-navigation ul {
    max-width: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
    flex-wrap: nowrap;
    padding: 0px;
    margin-bottom: 0px;
  }

  .myfeed-navigation ul::-webkit-scrollbar {
    display: none;
  }
}

@media only screen and (max-width: 778px) {
  .myfeed-user-profile-main-area {
    padding: 50px;
  }

  .myfeed-user-profile-img {
    height: 100px;
    width: 100px;
  }

  .myfeed-content {
    padding: 10px;
  }

  .myfeed-nav-item {
    /* padding: 10px 2px; */
    /* width: 100%; */
  }

  .myfeed-nav-item .nav-link {
    font-size: 15px;
    /* padding-left: 10px;
    padding-right: 10px; */
  }
}

@media only screen and (max-width: 540px) {
  .myfeed-user-profile-main-area {
    padding: 30px 0px 50px 0px;
    border-radius: 0px;
  }

  .myfeed-content {
    padding: 20px 0px;
    border-radius: 0px;
  }

  .myfeed-nav-icon {
    display: none;
  }

  .user-about-us {
    padding-left: 0px;
  }

  .user-about-us-div {
    padding-left: 0px;
  }

  .myfeed-nav-item .nav-link {
    font-size: 12px;
  }

  .myfeed-tab-content {
    padding: 20px 20px;
    min-height: 300px;
  }

  .myfeed-tab-title-img {
    height: 30px;
    width: 30px;
  }

  .myfeed-tab-title {
    font-size: 25px;
    padding-left: 0px;
  }

  .user-about-us-div-title {
    font-size: 18px;
  }

  .question-asked-by-user-div p {
    font-size: 15px;
    line-height: 15px;
    padding-bottom: 10px;
    margin-top: 10px;
  }

  .answered-question-by-user-div p {
    font-size: 15px;
    line-height: 15px;
    padding-bottom: 10px;
    margin-top: 10px;
  }

  .notification-for-user-div p {
    font-size: 14px;
    line-height: 14px;
    padding-bottom: 10px;
    margin-top: 10px;
  }

  .question-asked-by-user-div {
    padding-left: 0px;
  }

  .answered-question-by-user-div {
    padding-left: 0px;
  }

  .notification-for-user-div {
    padding-left: 0px;
  }

  .user-about-social-btn {
    width: 40px;
    height: auto;
  }

  .user-action-login-div {
    background: #fff;
    margin: 20px;
  }

  .user-action-login-div-title {
    font-size: 30px;
    padding-top: 10px;
    padding-bottom: 20px;
  }

  .user-action-login-content-area {
    padding: 20px;
  }

}

/******************************************/

/***************start of contact us, feedback page css *****************/

.custom-form-page-container {
  position: relative;
  padding-bottom: 80px;
  background: #fff;
}

.custom-form-page-container .custom-form-banner-container {
  background: var(--primary-background-color-code);
  height: 500px;
  width: 100%;
}

.custom-form-page-container .custom-form-banner-content-area {
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.custom-form-page-container .custom-form-banner-container .custom-form-page-banner-img-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 100%;
}

.custom-form-page-container .custom-form-banner-container .custom-form-page-banner-img {
  height: auto;
  width: 85%;
}

.custom-form-page-container .custom-form-banner-container .custom-form-page-text-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  width: 50%;
}

.custom-form-page-container .custom-form-banner-container .custom-form-page-banner-muted-text {
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  color: #333333;
  /* margin: 10px 0px; */
  margin-bottom: 20px;
}

.custom-form-page-container .custom-form-banner-container .custom-form-page-banner-title-text {
  font-size: 50px;
  font-weight: 600;
}

.custom-form-page-container .custom-form-banner-container .custom-form-page-banner-title-text span {
  color: #fff;
  background: var(--primary-color-code);
}

.custom-form-page-container .custom-form-banner-container .custom-form-page-banner-btn {
  border: 2px solid #fff;
  padding: 12px 30px;
  border-radius: 5px;
  background: var(--primary-color-code);
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  margin-top: 20px;
}

.custom-form-page-container .custom-form-banner-container .custom-form-page-banner-info-text {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  color: #333333;
}

.custom-form-page-container .custom-form-body-content-area {
  background: #fff;
  margin-top: 80px;
  border-radius:  5px;
  border: 2px solid var(--secondary-grey-color-code);
}

.custom-form-page-container .custom-form-body-content-area .custom-form-body-left-container {
  padding: 30px 40px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}

.custom-form-page-container .custom-form-body-content-area .custom-form-body-right-container {
  background: var(--primary-color-code);
  color: #fff;
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  padding: 20px;
}

.custom-form-page-container .custom-form-body-content-area .cblch-title-text {
  font-size: 30px;
  line-height: 30px;
  margin-bottom: 15px;
  font-weight: 500;
}

.custom-form-page-container .custom-form-body-content-area .cblch-title-text img {
  height: 50px;
  width: auto;
  margin-left: 10px;
}

.custom-form-page-container .custom-form-body-content-area .cbrch-title-text {
  font-size: 30px;
  line-height: 30px;
  margin-bottom: 30px;
  font-weight: 500;
}

.cblc-body-container .form-group {
  margin-top: 20px;
}

.custom-form-control {
  border: 1px solid var(--primary-color-code);
  border-radius: 5px !important;
  padding: 5px 15px;
  min-height: 45px;
  font-size: 15px;
  line-height: 21px;
  font-weight: 400;
}

.custom-form-label {
  color: #333333;
  font-weight: 500;
  margin-bottom: 5px;
}

.custom-form-btn {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fb8500;
  padding: 15px 50px;
  border-radius: 5px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  box-shadow: 0px 8px 15px rgb(0 0 0 / 10%);
  transition: all 0.3s ease 0s;
}

.custom-form-btn:hover {
  background: #ffa138;
  color: #f1f1f1;
}

.custom-form-icon {
  font-size: 30px;
  margin-left: 15px;
}

.cbrcb-custom-form-type-list {
  margin-top: 10px;
}

.cbrcb-custom-form-type-list a {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 20px;
}

.cbrcb-custom-form-type-list a .cbrcb-list-icon {
  margin-right: 20px;
  font-size: 30px;
}

.cbrc-social-links-div {
  margin-top: 50px;
}

.cbrc-info-text {
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 20px;
}

.cbrc-link-txt{
  color: #fff !important;
}

.cbrc-social-links {
  display: flex;
  flex-direction: row;
}

.custom-form_social_icon_btn {
  height: 40px;
  width: auto;
  margin-right: 30px;
}

.custom-star-icon {
  font-size: 50px;
}

.star-container-wrapper {
  position: relative;
}

.rating-wrapper {
  align-self: center;
  display: inline-flex;
  direction: rtl !important;
  padding-top: 10px;
}

.rating-wrapper label {
  color: #e1e6f6;
  cursor: pointer;
  display: inline-flex;
  font-size: 3rem;
  padding: 0px 0.6rem;
  transition: color 0.5s;
}

.rating-wrapper svg {
  -webkit-text-fill-color: transparent;
  -webkit-filter: drop-shadow 4px 1px 6px rgba(198, 206, 237, 1);
  filter: drop-shadow(5px 1px 3px rgba(198, 206, 237, 1));
}

.rating-wrapper input {
  height: 100%;
  width: 100%;
}

.rating-wrapper input {
  display: none;
}

.rating-wrapper label:hover,
.rating-wrapper label:hover~label,
.rating-wrapper input:checked~label {
  color: #FFDF00;
}

.rating-wrapper label:hover,
.rating-wrapper label:hover~label,
.rating-wrapper input:checked~label {
  color: #FFDF00;
}

@media (min-width: 1400px) {
  .custom-container-width {
    max-width: 1140px;
  }
}

@media only screen and (max-width:992px) {
  .custom-form-page-container .custom-form-banner-container {
    height: 100%;
    padding: 50px 0px;
  }

  .custom-form-page-container .custom-form-banner-container .custom-form-page-banner-img-area {
    display: none;
  }

  .custom-form-page-container .custom-form-banner-container .custom-form-page-banner-img {
    display: none;
  }

  .custom-form-page-container .custom-form-banner-container .custom-form-page-text-area {
    width: 100%;
  }

  .custom-form-page-container .custom-form-body-content-area .cblch-title-text {
    font-size: 25px;
    line-height: 25px;
    margin-bottom: 20px;
    font-weight: 600;
  }

  .custom-form-page-container .custom-form-body-content-area .cbrch-title-text {
    font-size: 25px;
    line-height: 25px;
    margin-bottom: 20px;
    font-weight: 600;
  }

  .custom-form-page-container .custom-form-body-content-area .cblch-title-text img {
    height: 40px;
    width: auto;
    margin-left: 10px;
  }

  .custom-star-icon {
    font-size: 40px;
  }
}

@media only screen and (max-width:768px) {
  .custom-form-page-container .custom-form-body-content-area .custom-form-body-left-container {
    border-radius:  5px 10px 0px 0px;
  }

  .custom-form-page-container .custom-form-body-content-area .custom-form-body-right-container {
    border-radius: 0px 0px 10px 10px;
  }
}

@media only screen and (max-width:540px) {

  .custom-form-page-container .custom-form-banner-container .custom-form-page-banner-title-text {
    font-size: 35px;
  }

  .custom-form-page-container .custom-form-banner-container .custom-form-page-banner-info-text {
    font-size: 18px;
    line-height: 25px;
  }

  .custom-form-page-container .custom-form-body-content-area {
    margin-top: 0px !important;
    border-radius: 0px;
  }

  .custom-form-page-container .custom-form-body-content-area .custom-form-body-left-container {
    border-radius: 0px;
    padding: 30px 20px;
  }

  .custom-form-page-container .custom-form-body-content-area .custom-form-body-right-container {
    border-radius: 0px;
  }

  .custom-form_social_icon_btn {
    height: 30px;
    width: auto;
    margin-right: 30px;
  }

  .custom-star-icon {
    font-size: 50px;
  }

  .rating-wrapper label {
    padding: 5px;
  }
}

/**************end of contact us, feedback page css *****************/


/*======================
    404 page
=======================*/

.page-404 {
  position: relative;
  padding: 0px;
  background: #fff;
  height: 100%;
  width: 100%;
}

.page-404-container-div {
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}


.four-zero-four-img {
  height: 350px;
  width: auto;
}

.four_zero_four_bg h1 {
  font-size: 80px;
}

.four-zero-four-bg h3 {
  font-size: 80px;
}

.link-404-home-btn {
  color: #fff !important;
  padding: 15px 35px;
  background: var(--primary-color-code);
  margin: 20px 0px;
  display: inline-block;
  border-radius: 5px;
}

.contant-box-404 {

  text-align: center;
  margin-top: 20px;
}

@media only screen and (max-width:540px) {
  .four-zero-four-img {
    height: 100%;
    width: 100%;
  }

  .page-404-container-div {
    width: 90%;
  }
}

/*======================
    terms of services page
=======================*/

.terms-of-services-page-container {
  background: #fff;
  margin-top: -20px;
}

.terms-of-services-page-main {
  padding: 60px 0px;
}

.terms-of-services-page-main p {
  color: var(--primary-gray-color-code)555;
}

.terms-of-services-page-main .tosp-title-area {
  margin-bottom: 50px;
}

.terms-of-services-page-main .tosp-title-area .tosp-title-text {
  font-size: 50px;
  margin-bottom: 0px;
  font-weight: 600;
}

.terms-of-services-page-main .term-menu-links-div {
  margin: 50px 0px;
  padding-left: 0px;
}

.terms-of-services-page-main .term-menu-links-div li {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  transition: all 0.5s linear;
}

.terms-of-services-page-main .term-menu-links-div li::before {
  font-family: 'Material Icons Round';
  content: "\e5cc";
  font-size: 24px;
  color: var(--primary-color-code);
  transition: all 0.5s linear;
}

.terms-of-services-page-main .term-menu-links-div li:hover:before {
  font-family: 'Material Icons Round';
  content: "\e5c8";
  font-size: 24px;
  color: var(--primary-color-code);
  color: var(--primary-color-code);
}

.terms-of-services-page-main .term-menu-links {
  color: var(--primary-color-code);
}

.terms-of-services-page-main .term-menu-links:hover {
  color: var(--primary-color-code);
}

.terms-of-services-page-main .terms-links-title {
  font-size: 22px;
  font-weight: 500;
  text-transform: uppercase;
}

.terms-of-services-page-main .term-container {
  margin: 50px 0px;
}

.terms-of-services-page-main .term-container li {
  color: var(--primary-gray-color-code)555;
}

.terms-of-services-page-main .term-container:before {
  display: block;
  content: " ";
  margin-top: -200px;
  height: 200px;
  visibility: hidden;
}

.terms-of-services-page-main .terms-paragraph {
  margin-bottom: 10px;
}

@media only screen and (max-width:540px) {
  .terms-of-services-page-main .tosp-title-area .tosp-title-text {
    margin-bottom: 0px;
    font-size: 35px;
    font-weight: 600;
  }
}

/*======================
    privacy & policy page
=======================*/

.privacy-policy-page-container {
  background: #fff;
  margin-top: -20px;
}

.privacy-policy-page-main {
  padding: 60px 0px;
}

.privacy-policy-page-main p {
  color: var(--primary-gray-color-code)555;
}

.privacy-policy-page-main .papp-title-area {
  margin-bottom: 50px;
}

.privacy-policy-page-main .papp-title-area .papp-title-text {
  margin-bottom: 0px;
  font-size: 50px;
}

.privacy-policy-page-main .privacy-menu-links-div {
  margin: 30px 0px 50px 0px;
  padding-left: 0px;
}

.privacy-policy-page-main .privacy-menu-links-div li {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  transition: all 0.5s linear;
}

.privacy-policy-page-main .privacy-menu-links-div li::before {
  font-family: 'Material Icons Round';
  content: "\e5cc";
  font-size: 24px;
  color: var(--primary-color-code);
  transition: all 0.5s linear;
}

.privacy-policy-page-main .privacy-menu-links-div li:hover:before {
  font-family: 'Material Icons Round';
  content: "\e5c8";
  font-size: 24px;
  color: var(--primary-color-code);
  color: var(--primary-color-code);
}

.privacy-policy-page-main .privacy-menu-links {
  color: var(--primary-color-code);
}

.privacy-policy-page-main .privacy-menu-links:hover {
  color: var(--primary-color-code);
}

.privacy-policy-page-main .privacy-links-title {
  font-size: 22px;
  font-weight: 500;
  text-transform: uppercase;
}

.privacy-policy-page-main .privacy-container {
  margin: 50px 0px;
}

.privacy-policy-page-main .privacy-container li {
  color: var(--primary-gray-color-code)555;
}


.privacy-policy-page-main .privacy-container:before {
  display: block;
  content: " ";
  margin-top: -200px;
  height: 200px;
  visibility: hidden;
}

.privacy-policy-page-main .privacy-paragraph {
  margin-bottom: 10px;
}

@media only screen and (max-width:540px) {
  .privacy-policy-page-main .papp-title-area .papp-title-text {
    margin-bottom: 0px;
    font-size: 35px;
    font-weight: 600;
  }
}

/*********** editor css *************/
figure.image {
  display: inline-block;
  border: 1px solid var(--primary-gray-color-code);
  margin: 0 2px 0 1px;
  background: #f5f2f0;
}

figure.align-left {
  float: left;
}

figure.align-right {
  float: right;
}

figure.image img {
  margin: 8px 8px 0 8px;
}

figure.image figcaption {
  margin: 6px 8px 6px 8px;
  text-align: center;
}

/*
 Alignment using classes rather than inline styles
 check out the "formats" option
*/

img.align-left {
  float: left;
}

img.align-right {
  float: right;
}

/* Basic styles for Table of Contents plugin (toc) */
.mce-toc {
  border: 1px solid var(--primary-gray-color-code);
}

.mce-toc h2 {
  margin: 4px;
}

.mce-toc li {
  list-style-type: none;
}

/******* end of editor css ***********/

/********* request tag page css *********/

.center-form-container {
  position: relative;
  display: block;
  margin: auto;
  padding-top: 50px;
  padding-bottom: 50px;
}

.center-form-content-area {
  background: #fff;
  padding: 30px;
  border-radius:  5px;
}

.center-form-area {
  margin-top: 40px;
}

.center-form-area .custom-form-label {
  margin-bottom: 0px;
  margin-top: 20px;
  color: #000080;
}

.form-page-title-info-text {
  font-size: 16px;
  color: #333333;
}

.custom-info-small-text {
  font-size: 80%;
  color: var(--primary-gray-color-code);
}

.custom-btn-secondary {
  background: #fb8500;
  color: #fff;
  border: none;
  border-radius: 5px !important;
  font-size: 15px;
  padding: 12px 50px;
  box-shadow: 0px 8px 15px rgb(0 0 0 / 10%);
  transition: all 0.3s ease 0s;
  cursor: pointer;
  outline: none;
  margin-top: 20px;
}

.custom-btn-secondary:hover {
  background: #ffa138;
  color: #f1f1f1;
}

/********* end request tag page css *********/

/********* about page css *********/

.about-us-page {
  position: relative;
}

.about-main-banner-container {
  position: relative;
  background: var(--primary-background-color-code);
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.about-main-banner-container .col-lg-6 {
  z-index: 1;
}

.about-main-banner-container p {
  color: #333333 !important;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
}

.about-main-banner-container .lead-text-muted {
  margin-bottom: 20px;
}

.about-main-banner-container h1 {
  color: #000 !important;
  font-weight: 600;
  margin-bottom: 20px;
}

.about-main-banner-container h1 span {
  background: var(--primary-color-code);
  color: #fff;
}

.about-banner-img {
  height: 100%;
  width: 100%;
}

.about-title-two-text {
  position: relative;
  font-size: 35px;
  font-weight: 600;
}

.about-section-img-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px;
  box-shadow: 0px 0px 20px 3px var(--secondary-grey-color-code);
  padding: 20px;
  border-radius:  5px;
}

.about-section-img {
  height: 80%;
  width: 80%;
}

.about-title-three-text {
  font-weight: 600;
}

.about-us-page .social-link img {
  height: 20px;
  width: 20px;
}

.about-us-page .our-team-container {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25'%3E%3Cdefs%3E%3ClinearGradient id='a' gradientUnits='userSpaceOnUse' x1='0' x2='0' y1='0' y2='100%25' gradientTransform='rotate(178,768,365)'%3E%3Cstop offset='0' stop-color='%23ffffff'/%3E%3Cstop offset='1' stop-color='%2387cefa'/%3E%3C/linearGradient%3E%3Cpattern patternUnits='userSpaceOnUse' id='b' width='1048' height='873.3' x='0' y='0' viewBox='0 0 1080 900'%3E%3Cg fill-opacity='0.02'%3E%3Cpolygon fill='%23444' points='90 150 0 300 180 300'/%3E%3Cpolygon points='90 150 180 0 0 0'/%3E%3Cpolygon fill='%23AAA' points='270 150 360 0 180 0'/%3E%3Cpolygon fill='%23DDD' points='450 150 360 300 540 300'/%3E%3Cpolygon fill='%23999' points='450 150 540 0 360 0'/%3E%3Cpolygon points='630 150 540 300 720 300'/%3E%3Cpolygon fill='%23DDD' points='630 150 720 0 540 0'/%3E%3Cpolygon fill='%23444' points='810 150 720 300 900 300'/%3E%3Cpolygon fill='%23FFF' points='810 150 900 0 720 0'/%3E%3Cpolygon fill='%23DDD' points='990 150 900 300 1080 300'/%3E%3Cpolygon fill='%23444' points='990 150 1080 0 900 0'/%3E%3Cpolygon fill='%23DDD' points='90 450 0 600 180 600'/%3E%3Cpolygon points='90 450 180 300 0 300'/%3E%3Cpolygon fill='%23666' points='270 450 180 600 360 600'/%3E%3Cpolygon fill='%23AAA' points='270 450 360 300 180 300'/%3E%3Cpolygon fill='%23DDD' points='450 450 360 600 540 600'/%3E%3Cpolygon fill='%23999' points='450 450 540 300 360 300'/%3E%3Cpolygon fill='%23999' points='630 450 540 600 720 600'/%3E%3Cpolygon fill='%23FFF' points='630 450 720 300 540 300'/%3E%3Cpolygon points='810 450 720 600 900 600'/%3E%3Cpolygon fill='%23DDD' points='810 450 900 300 720 300'/%3E%3Cpolygon fill='%23AAA' points='990 450 900 600 1080 600'/%3E%3Cpolygon fill='%23444' points='990 450 1080 300 900 300'/%3E%3Cpolygon fill='%23222' points='90 750 0 900 180 900'/%3E%3Cpolygon points='270 750 180 900 360 900'/%3E%3Cpolygon fill='%23DDD' points='270 750 360 600 180 600'/%3E%3Cpolygon points='450 750 540 600 360 600'/%3E%3Cpolygon points='630 750 540 900 720 900'/%3E%3Cpolygon fill='%23444' points='630 750 720 600 540 600'/%3E%3Cpolygon fill='%23AAA' points='810 750 720 900 900 900'/%3E%3Cpolygon fill='%23666' points='810 750 900 600 720 600'/%3E%3Cpolygon fill='%23999' points='990 750 900 900 1080 900'/%3E%3Cpolygon fill='%23999' points='180 0 90 150 270 150'/%3E%3Cpolygon fill='%23444' points='360 0 270 150 450 150'/%3E%3Cpolygon fill='%23FFF' points='540 0 450 150 630 150'/%3E%3Cpolygon points='900 0 810 150 990 150'/%3E%3Cpolygon fill='%23222' points='0 300 -90 450 90 450'/%3E%3Cpolygon fill='%23FFF' points='0 300 90 150 -90 150'/%3E%3Cpolygon fill='%23FFF' points='180 300 90 450 270 450'/%3E%3Cpolygon fill='%23666' points='180 300 270 150 90 150'/%3E%3Cpolygon fill='%23222' points='360 300 270 450 450 450'/%3E%3Cpolygon fill='%23FFF' points='360 300 450 150 270 150'/%3E%3Cpolygon fill='%23444' points='540 300 450 450 630 450'/%3E%3Cpolygon fill='%23222' points='540 300 630 150 450 150'/%3E%3Cpolygon fill='%23AAA' points='720 300 630 450 810 450'/%3E%3Cpolygon fill='%23666' points='720 300 810 150 630 150'/%3E%3Cpolygon fill='%23FFF' points='900 300 810 450 990 450'/%3E%3Cpolygon fill='%23999' points='900 300 990 150 810 150'/%3E%3Cpolygon points='0 600 -90 750 90 750'/%3E%3Cpolygon fill='%23666' points='0 600 90 450 -90 450'/%3E%3Cpolygon fill='%23AAA' points='180 600 90 750 270 750'/%3E%3Cpolygon fill='%23444' points='180 600 270 450 90 450'/%3E%3Cpolygon fill='%23444' points='360 600 270 750 450 750'/%3E%3Cpolygon fill='%23999' points='360 600 450 450 270 450'/%3E%3Cpolygon fill='%23666' points='540 600 630 450 450 450'/%3E%3Cpolygon fill='%23222' points='720 600 630 750 810 750'/%3E%3Cpolygon fill='%23FFF' points='900 600 810 750 990 750'/%3E%3Cpolygon fill='%23222' points='900 600 990 450 810 450'/%3E%3Cpolygon fill='%23DDD' points='0 900 90 750 -90 750'/%3E%3Cpolygon fill='%23444' points='180 900 270 750 90 750'/%3E%3Cpolygon fill='%23FFF' points='360 900 450 750 270 750'/%3E%3Cpolygon fill='%23AAA' points='540 900 630 750 450 750'/%3E%3Cpolygon fill='%23FFF' points='720 900 810 750 630 750'/%3E%3Cpolygon fill='%23222' points='900 900 990 750 810 750'/%3E%3Cpolygon fill='%23222' points='1080 300 990 450 1170 450'/%3E%3Cpolygon fill='%23FFF' points='1080 300 1170 150 990 150'/%3E%3Cpolygon points='1080 600 990 750 1170 750'/%3E%3Cpolygon fill='%23666' points='1080 600 1170 450 990 450'/%3E%3Cpolygon fill='%23DDD' points='1080 900 1170 750 990 750'/%3E%3C/g%3E%3C/pattern%3E%3C/defs%3E%3Crect x='0' y='0' fill='url(%23a)' width='100%25' height='100%25'/%3E%3Crect x='0' y='0' fill='url(%23b)' width='100%25' height='100%25'/%3E%3C/svg%3E");
  background-attachment: fixed;
  background-size: cover;
}

@media only screen and (max-width: 992px) {
  .about-main-banner-container {
    height: 100%;
  }

  .about-section-img-container {
    margin: 20px 0px;
    padding: 20px;
  }
}

@media only screen and (max-width: 768px) {
  .about-section-img {
    height: 100%;
    width: 100%;
  }
}

/********* end about page css *********/

/********* become expert page css *********/

.become-expert-page-section {
  position: relative;
}

.beps-sub-container {
  margin: 50px 0px;
  padding: 50px;
}

/* .beps-number-container {
  padding: 0px 50px;
} */

.beps-intro-contianer {
  text-align: center;
}

.beps-custom-bg {
  background: var(--primary-background-color-code);
}

.beps-second-title-text {
  font-size: 30px;
  font-weight: 600;
}

.beps-third-title-text {
  width: 80%;
  font-size: 55px;
  font-weight: 600;
  text-transform: capitalize;
}

.beps-info-text {
  font-size: 18px;
  color: #333333;
  line-height: 24px;
}

.beps-img {
  max-height: 400px;
  width: 100%;
}

.beps-link-btn {
  display: inline-block;
  margin-top: 30px;
  border: 2px solid #fff;
  padding: 12px 30px;
  border-radius: 5px;
  background: var(--primary-color-code);
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}

.become-expert-main-signup-page {
  background: #fff;
  text-align: center;
  padding: 100px 0px 0px 0px;
}

.become-expert-main-signup-page .bemsp-title-text {
  font-size: 50px;
  font-weight: 600;
}

.become-expert-main-signup-page .bemsp-title-text span {
  color: #fff;
  background: var(--primary-color-code);
}

.become-expert-main-signup-page .bemsp-info-text {
  padding: 0px 20%;
}

.beps-card-container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #fff;
  border-radius:  5px;
  padding: 30px;
  height: 100%;
  box-shadow: 0px 0px 10px 2px var(--secondary-grey-color-code);
  margin: 0px 20px;
}

.beps-card-number {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  background: #FAFAFA;
  color: var(--primary-color-code);
  font-size: 25px;
  font-weight: 600;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0px 0px 10px 3px #d0d0d0;
}

.beps-card-title-text {
  font-size: 25px;
  line-height: 31px;
  font-weight: 600;
  padding: 5px 0px;
  letter-spacing: .33px;
  color: var(--primary-color-code);
  text-align: center;
}

.beps-card-info-text {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  color: #333333;
  text-align: center;
}


@media only screen and (max-width:992px) {
  .beps-img {
    height: 100%;
    width: 100%;
    margin: 20px 0px;
  }

  .beps-sub-container {
    text-align: center;
  }
}

@media only screen and (max-width:768px) {
  .beps-third-title-text {
    width: 100%;
    font-size: 35px;
  }

  .become-expert-main-signup-page .bemsp-title-text {
    font-size: 35px;
  }

  .become-expert-main-signup-page .bemsp-info-text {
    padding: 0px 0px;
  }

  .beps-card-container{
    margin: 0px 10px;
  }
}


@media only screen and (max-width:540px) {
  .beps-sub-container {
    margin: 50px 0px;
    padding: 10px;
  }

  .become-expert-main-signup-page {
    padding: 50px 10px 50px 10px;
  }
}